Loading...
1/*
2 * This is the Fusion MPT base driver providing common API layer interface
3 * for access to MPT (Message Passing Technology) firmware.
4 *
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)
8 *
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.
13 *
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.
18 *
19 * NO WARRANTY
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.
29
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
38
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,
42 * USA.
43 */
44
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>
59#include <linux/io.h>
60#include <linux/time.h>
61#include <linux/aer.h>
62
63#include "mpt2sas_base.h"
64
65static MPT_CALLBACK mpt_callbacks[MPT_MAX_CALLBACKS];
66
67#define FAULT_POLLING_INTERVAL 1000 /* in milliseconds */
68
69static int max_queue_depth = -1;
70module_param(max_queue_depth, int, 0);
71MODULE_PARM_DESC(max_queue_depth, " max controller queue depth ");
72
73static int max_sgl_entries = -1;
74module_param(max_sgl_entries, int, 0);
75MODULE_PARM_DESC(max_sgl_entries, " max sg entries ");
76
77static int msix_disable = -1;
78module_param(msix_disable, int, 0);
79MODULE_PARM_DESC(msix_disable, " disable msix routed interrupts (default=0)");
80
81static int missing_delay[2] = {-1, -1};
82module_param_array(missing_delay, int, NULL, 0);
83MODULE_PARM_DESC(missing_delay, " device missing delay , io missing delay");
84
85/* diag_buffer_enable is bitwise
86 * bit 0 set = TRACE
87 * bit 1 set = SNAPSHOT
88 * bit 2 set = EXTENDED
89 *
90 * Either bit can be set, or both
91 */
92static int diag_buffer_enable;
93module_param(diag_buffer_enable, int, 0);
94MODULE_PARM_DESC(diag_buffer_enable, " post diag buffers "
95 "(TRACE=1/SNAPSHOT=2/EXTENDED=4/default=0)");
96
97static int mpt2sas_fwfault_debug;
98MODULE_PARM_DESC(mpt2sas_fwfault_debug, " enable detection of firmware fault "
99 "and halt firmware - (default=0)");
100
101static int disable_discovery = -1;
102module_param(disable_discovery, int, 0);
103MODULE_PARM_DESC(disable_discovery, " disable discovery ");
104
105/**
106 * _scsih_set_fwfault_debug - global setting of ioc->fwfault_debug.
107 *
108 */
109static int
110_scsih_set_fwfault_debug(const char *val, struct kernel_param *kp)
111{
112 int ret = param_set_int(val, kp);
113 struct MPT2SAS_ADAPTER *ioc;
114
115 if (ret)
116 return ret;
117
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;
121 return 0;
122}
123module_param_call(mpt2sas_fwfault_debug, _scsih_set_fwfault_debug,
124 param_get_int, &mpt2sas_fwfault_debug, 0644);
125
126/**
127 * _base_fault_reset_work - workq handling ioc fault conditions
128 * @work: input argument, used to derive ioc
129 * Context: sleep.
130 *
131 * Return nothing.
132 */
133static void
134_base_fault_reset_work(struct work_struct *work)
135{
136 struct MPT2SAS_ADAPTER *ioc =
137 container_of(work, struct MPT2SAS_ADAPTER, fault_reset_work.work);
138 unsigned long flags;
139 u32 doorbell;
140 int rc;
141
142 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
143 if (ioc->shost_recovery)
144 goto rearm_timer;
145 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock, flags);
146
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,
150 FORCE_BIG_HAMMER);
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);
157 }
158
159 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
160 rearm_timer:
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);
166}
167
168/**
169 * mpt2sas_base_start_watchdog - start the fault_reset_work_q
170 * @ioc: per adapter object
171 * Context: sleep.
172 *
173 * Return nothing.
174 */
175void
176mpt2sas_base_start_watchdog(struct MPT2SAS_ADAPTER *ioc)
177{
178 unsigned long flags;
179
180 if (ioc->fault_reset_work_q)
181 return;
182
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__);
192 return;
193 }
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);
200}
201
202/**
203 * mpt2sas_base_stop_watchdog - stop the fault_reset_work_q
204 * @ioc: per adapter object
205 * Context: sleep.
206 *
207 * Return nothing.
208 */
209void
210mpt2sas_base_stop_watchdog(struct MPT2SAS_ADAPTER *ioc)
211{
212 unsigned long flags;
213 struct workqueue_struct *wq;
214
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);
219 if (wq) {
220 if (!cancel_delayed_work(&ioc->fault_reset_work))
221 flush_workqueue(wq);
222 destroy_workqueue(wq);
223 }
224}
225
226/**
227 * mpt2sas_base_fault_info - verbose translation of firmware FAULT code
228 * @ioc: per adapter object
229 * @fault_code: fault code
230 *
231 * Return nothing.
232 */
233void
234mpt2sas_base_fault_info(struct MPT2SAS_ADAPTER *ioc , u16 fault_code)
235{
236 printk(MPT2SAS_ERR_FMT "fault_state(0x%04x)!\n",
237 ioc->name, fault_code);
238}
239
240/**
241 * mpt2sas_halt_firmware - halt's mpt controller firmware
242 * @ioc: per adapter object
243 *
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.
248 */
249void
250mpt2sas_halt_firmware(struct MPT2SAS_ADAPTER *ioc)
251{
252 u32 doorbell;
253
254 if (!ioc->fwfault_debug)
255 return;
256
257 dump_stack();
258
259 doorbell = readl(&ioc->chip->Doorbell);
260 if ((doorbell & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT)
261 mpt2sas_base_fault_info(ioc , doorbell);
262 else {
263 writel(0xC0FFEE00, &ioc->chip->Doorbell);
264 printk(MPT2SAS_ERR_FMT "Firmware is halted due to command "
265 "timeout\n", ioc->name);
266 }
267
268 panic("panic in %s\n", __func__);
269}
270
271#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
272/**
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
277 *
278 * Return nothing.
279 */
280static void
281_base_sas_ioc_info(struct MPT2SAS_ADAPTER *ioc, MPI2DefaultReply_t *mpi_reply,
282 MPI2RequestHeader_t *request_hdr)
283{
284 u16 ioc_status = le16_to_cpu(mpi_reply->IOCStatus) &
285 MPI2_IOCSTATUS_MASK;
286 char *desc = NULL;
287 u16 frame_sz;
288 char *func_str = NULL;
289
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)
294 return;
295
296 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
297 return;
298
299 switch (ioc_status) {
300
301/****************************************************************************
302* Common IOCStatus values for all replies
303****************************************************************************/
304
305 case MPI2_IOCSTATUS_INVALID_FUNCTION:
306 desc = "invalid function";
307 break;
308 case MPI2_IOCSTATUS_BUSY:
309 desc = "busy";
310 break;
311 case MPI2_IOCSTATUS_INVALID_SGL:
312 desc = "invalid sgl";
313 break;
314 case MPI2_IOCSTATUS_INTERNAL_ERROR:
315 desc = "internal error";
316 break;
317 case MPI2_IOCSTATUS_INVALID_VPID:
318 desc = "invalid vpid";
319 break;
320 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES:
321 desc = "insufficient resources";
322 break;
323 case MPI2_IOCSTATUS_INVALID_FIELD:
324 desc = "invalid field";
325 break;
326 case MPI2_IOCSTATUS_INVALID_STATE:
327 desc = "invalid state";
328 break;
329 case MPI2_IOCSTATUS_OP_STATE_NOT_SUPPORTED:
330 desc = "op state not supported";
331 break;
332
333/****************************************************************************
334* Config IOCStatus values
335****************************************************************************/
336
337 case MPI2_IOCSTATUS_CONFIG_INVALID_ACTION:
338 desc = "config invalid action";
339 break;
340 case MPI2_IOCSTATUS_CONFIG_INVALID_TYPE:
341 desc = "config invalid type";
342 break;
343 case MPI2_IOCSTATUS_CONFIG_INVALID_PAGE:
344 desc = "config invalid page";
345 break;
346 case MPI2_IOCSTATUS_CONFIG_INVALID_DATA:
347 desc = "config invalid data";
348 break;
349 case MPI2_IOCSTATUS_CONFIG_NO_DEFAULTS:
350 desc = "config no defaults";
351 break;
352 case MPI2_IOCSTATUS_CONFIG_CANT_COMMIT:
353 desc = "config cant commit";
354 break;
355
356/****************************************************************************
357* SCSI IO Reply
358****************************************************************************/
359
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:
372 break;
373
374/****************************************************************************
375* For use by SCSI Initiator and SCSI Target end-to-end data protection
376****************************************************************************/
377
378 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
379 desc = "eedp guard error";
380 break;
381 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
382 desc = "eedp ref tag error";
383 break;
384 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
385 desc = "eedp app tag error";
386 break;
387
388/****************************************************************************
389* SCSI Target values
390****************************************************************************/
391
392 case MPI2_IOCSTATUS_TARGET_INVALID_IO_INDEX:
393 desc = "target invalid io index";
394 break;
395 case MPI2_IOCSTATUS_TARGET_ABORTED:
396 desc = "target aborted";
397 break;
398 case MPI2_IOCSTATUS_TARGET_NO_CONN_RETRYABLE:
399 desc = "target no conn retryable";
400 break;
401 case MPI2_IOCSTATUS_TARGET_NO_CONNECTION:
402 desc = "target no connection";
403 break;
404 case MPI2_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH:
405 desc = "target xfer count mismatch";
406 break;
407 case MPI2_IOCSTATUS_TARGET_DATA_OFFSET_ERROR:
408 desc = "target data offset error";
409 break;
410 case MPI2_IOCSTATUS_TARGET_TOO_MUCH_WRITE_DATA:
411 desc = "target too much write data";
412 break;
413 case MPI2_IOCSTATUS_TARGET_IU_TOO_SHORT:
414 desc = "target iu too short";
415 break;
416 case MPI2_IOCSTATUS_TARGET_ACK_NAK_TIMEOUT:
417 desc = "target ack nak timeout";
418 break;
419 case MPI2_IOCSTATUS_TARGET_NAK_RECEIVED:
420 desc = "target nak received";
421 break;
422
423/****************************************************************************
424* Serial Attached SCSI values
425****************************************************************************/
426
427 case MPI2_IOCSTATUS_SAS_SMP_REQUEST_FAILED:
428 desc = "smp request failed";
429 break;
430 case MPI2_IOCSTATUS_SAS_SMP_DATA_OVERRUN:
431 desc = "smp data overrun";
432 break;
433
434/****************************************************************************
435* Diagnostic Buffer Post / Diagnostic Release values
436****************************************************************************/
437
438 case MPI2_IOCSTATUS_DIAGNOSTIC_RELEASED:
439 desc = "diagnostic released";
440 break;
441 default:
442 break;
443 }
444
445 if (!desc)
446 return;
447
448 switch (request_hdr->Function) {
449 case MPI2_FUNCTION_CONFIG:
450 frame_sz = sizeof(Mpi2ConfigRequest_t) + ioc->sge_size;
451 func_str = "config_page";
452 break;
453 case MPI2_FUNCTION_SCSI_TASK_MGMT:
454 frame_sz = sizeof(Mpi2SCSITaskManagementRequest_t);
455 func_str = "task_mgmt";
456 break;
457 case MPI2_FUNCTION_SAS_IO_UNIT_CONTROL:
458 frame_sz = sizeof(Mpi2SasIoUnitControlRequest_t);
459 func_str = "sas_iounit_ctl";
460 break;
461 case MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR:
462 frame_sz = sizeof(Mpi2SepRequest_t);
463 func_str = "enclosure";
464 break;
465 case MPI2_FUNCTION_IOC_INIT:
466 frame_sz = sizeof(Mpi2IOCInitRequest_t);
467 func_str = "ioc_init";
468 break;
469 case MPI2_FUNCTION_PORT_ENABLE:
470 frame_sz = sizeof(Mpi2PortEnableRequest_t);
471 func_str = "port_enable";
472 break;
473 case MPI2_FUNCTION_SMP_PASSTHROUGH:
474 frame_sz = sizeof(Mpi2SmpPassthroughRequest_t) + ioc->sge_size;
475 func_str = "smp_passthru";
476 break;
477 default:
478 frame_sz = 32;
479 func_str = "unknown";
480 break;
481 }
482
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);
485
486 _debug_dump_mf(request_hdr, frame_sz/4);
487}
488
489/**
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
493 *
494 * Return nothing.
495 */
496static void
497_base_display_event_data(struct MPT2SAS_ADAPTER *ioc,
498 Mpi2EventNotificationReply_t *mpi_reply)
499{
500 char *desc = NULL;
501 u16 event;
502
503 if (!(ioc->logging_level & MPT_DEBUG_EVENTS))
504 return;
505
506 event = le16_to_cpu(mpi_reply->Event);
507
508 switch (event) {
509 case MPI2_EVENT_LOG_DATA:
510 desc = "Log Data";
511 break;
512 case MPI2_EVENT_STATE_CHANGE:
513 desc = "Status Change";
514 break;
515 case MPI2_EVENT_HARD_RESET_RECEIVED:
516 desc = "Hard Reset Received";
517 break;
518 case MPI2_EVENT_EVENT_CHANGE:
519 desc = "Event Change";
520 break;
521 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
522 desc = "Device Status Change";
523 break;
524 case MPI2_EVENT_IR_OPERATION_STATUS:
525 if (!ioc->hide_ir_msg)
526 desc = "IR Operation Status";
527 break;
528 case MPI2_EVENT_SAS_DISCOVERY:
529 {
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) ?
534 "start" : "stop");
535 if (event_data->DiscoveryStatus)
536 printk("discovery_status(0x%08x)",
537 le32_to_cpu(event_data->DiscoveryStatus));
538 printk("\n");
539 return;
540 }
541 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
542 desc = "SAS Broadcast Primitive";
543 break;
544 case MPI2_EVENT_SAS_INIT_DEVICE_STATUS_CHANGE:
545 desc = "SAS Init Device Status Change";
546 break;
547 case MPI2_EVENT_SAS_INIT_TABLE_OVERFLOW:
548 desc = "SAS Init Table Overflow";
549 break;
550 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
551 desc = "SAS Topology Change List";
552 break;
553 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
554 desc = "SAS Enclosure Device Status Change";
555 break;
556 case MPI2_EVENT_IR_VOLUME:
557 if (!ioc->hide_ir_msg)
558 desc = "IR Volume";
559 break;
560 case MPI2_EVENT_IR_PHYSICAL_DISK:
561 if (!ioc->hide_ir_msg)
562 desc = "IR Physical Disk";
563 break;
564 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
565 if (!ioc->hide_ir_msg)
566 desc = "IR Configuration Change List";
567 break;
568 case MPI2_EVENT_LOG_ENTRY_ADDED:
569 if (!ioc->hide_ir_msg)
570 desc = "Log Entry Added";
571 break;
572 }
573
574 if (!desc)
575 return;
576
577 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name, desc);
578}
579#endif
580
581/**
582 * _base_sas_log_info - verbose translation of firmware log info
583 * @ioc: per adapter object
584 * @log_info: log info
585 *
586 * Return nothing.
587 */
588static void
589_base_sas_log_info(struct MPT2SAS_ADAPTER *ioc , u32 log_info)
590{
591 union loginfo_type {
592 u32 loginfo;
593 struct {
594 u32 subcode:16;
595 u32 code:8;
596 u32 originator:4;
597 u32 bus_type:4;
598 } dw;
599 };
600 union loginfo_type sas_loginfo;
601 char *originator_str = NULL;
602
603 sas_loginfo.loginfo = log_info;
604 if (sas_loginfo.dw.bus_type != 3 /*SAS*/)
605 return;
606
607 /* each nexus loss loginfo */
608 if (log_info == 0x31170000)
609 return;
610
611 /* eat the loginfos associated with task aborts */
612 if (ioc->ignore_loginfos && (log_info == 30050000 || log_info ==
613 0x31140000 || log_info == 0x31130000))
614 return;
615
616 switch (sas_loginfo.dw.originator) {
617 case 0:
618 originator_str = "IOP";
619 break;
620 case 1:
621 originator_str = "PL";
622 break;
623 case 2:
624 if (!ioc->hide_ir_msg)
625 originator_str = "IR";
626 else
627 originator_str = "WarpDrive";
628 break;
629 }
630
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);
635}
636
637/**
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)
643 *
644 * Return nothing.
645 */
646static void
647_base_display_reply_info(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
648 u32 reply)
649{
650 MPI2DefaultReply_t *mpi_reply;
651 u16 ioc_status;
652
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));
660 }
661#endif
662 if (ioc_status & MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE)
663 _base_sas_log_info(ioc, le32_to_cpu(mpi_reply->IOCLogInfo));
664}
665
666/**
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)
672 *
673 * Return 1 meaning mf should be freed from _base_interrupt
674 * 0 means the mf is freed from this function.
675 */
676u8
677mpt2sas_base_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
678 u32 reply)
679{
680 MPI2DefaultReply_t *mpi_reply;
681
682 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
683 if (mpi_reply && mpi_reply->Function == MPI2_FUNCTION_EVENT_ACK)
684 return 1;
685
686 if (ioc->base_cmds.status == MPT2_CMD_NOT_USED)
687 return 1;
688
689 ioc->base_cmds.status |= MPT2_CMD_COMPLETE;
690 if (mpi_reply) {
691 ioc->base_cmds.status |= MPT2_CMD_REPLY_VALID;
692 memcpy(ioc->base_cmds.reply, mpi_reply, mpi_reply->MsgLength*4);
693 }
694 ioc->base_cmds.status &= ~MPT2_CMD_PENDING;
695 complete(&ioc->base_cmds.done);
696 return 1;
697}
698
699/**
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)
704 *
705 * Return 1 meaning mf should be freed from _base_interrupt
706 * 0 means the mf is freed from this function.
707 */
708static u8
709_base_async_event(struct MPT2SAS_ADAPTER *ioc, u8 msix_index, u32 reply)
710{
711 Mpi2EventNotificationReply_t *mpi_reply;
712 Mpi2EventAckRequest_t *ack_request;
713 u16 smid;
714
715 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
716 if (!mpi_reply)
717 return 1;
718 if (mpi_reply->Function != MPI2_FUNCTION_EVENT_NOTIFICATION)
719 return 1;
720#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
721 _base_display_event_data(ioc, mpi_reply);
722#endif
723 if (!(mpi_reply->AckRequired & MPI2_EVENT_NOTIFICATION_ACK_REQUIRED))
724 goto out;
725 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
726 if (!smid) {
727 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
728 ioc->name, __func__);
729 goto out;
730 }
731
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);
740
741 out:
742
743 /* scsih callback handler */
744 mpt2sas_scsih_event_callback(ioc, msix_index, reply);
745
746 /* ctl callback handler */
747 mpt2sas_ctl_event_callback(ioc, msix_index, reply);
748
749 return 1;
750}
751
752/**
753 * _base_get_cb_idx - obtain the callback index
754 * @ioc: per adapter object
755 * @smid: system request message index
756 *
757 * Return callback index.
758 */
759static u8
760_base_get_cb_idx(struct MPT2SAS_ADAPTER *ioc, u16 smid)
761{
762 int i;
763 u8 cb_idx;
764
765 if (smid < ioc->hi_priority_smid) {
766 i = smid - 1;
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;
774 } else
775 cb_idx = 0xFF;
776 return cb_idx;
777}
778
779/**
780 * _base_mask_interrupts - disable interrupts
781 * @ioc: per adapter object
782 *
783 * Disabling ResetIRQ, Reply and Doorbell Interrupts
784 *
785 * Return nothing.
786 */
787static void
788_base_mask_interrupts(struct MPT2SAS_ADAPTER *ioc)
789{
790 u32 him_register;
791
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);
797}
798
799/**
800 * _base_unmask_interrupts - enable interrupts
801 * @ioc: per adapter object
802 *
803 * Enabling only Reply Interrupts
804 *
805 * Return nothing.
806 */
807static void
808_base_unmask_interrupts(struct MPT2SAS_ADAPTER *ioc)
809{
810 u32 him_register;
811
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;
816}
817
818union reply_descriptor {
819 u64 word;
820 struct {
821 u32 low;
822 u32 high;
823 } u;
824};
825
826/**
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)
831 *
832 * Return IRQ_HANDLE if processed, else IRQ_NONE.
833 */
834static irqreturn_t
835_base_interrupt(int irq, void *bus_id)
836{
837 union reply_descriptor rd;
838 u32 completed_cmds;
839 u8 request_desript_type;
840 u16 smid;
841 u8 cb_idx;
842 u32 reply;
843 u8 msix_index;
844 struct MPT2SAS_ADAPTER *ioc = bus_id;
845 Mpi2ReplyDescriptorsUnion_t *rpf;
846 u8 rc;
847
848 if (ioc->mask_interrupts)
849 return IRQ_NONE;
850
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)
855 return IRQ_NONE;
856
857 completed_cmds = 0;
858 cb_idx = 0xFF;
859 do {
860 rd.word = le64_to_cpu(rpf->Words);
861 if (rd.u.low == UINT_MAX || rd.u.high == UINT_MAX)
862 goto out;
863 reply = 0;
864 cb_idx = 0xFF;
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) {
869 reply = le32_to_cpu
870 (rpf->AddressReply.ReplyFrameAddress);
871 if (reply > ioc->reply_dma_max_address ||
872 reply < ioc->reply_dma_min_address)
873 reply = 0;
874 } else if (request_desript_type ==
875 MPI2_RPY_DESCRIPT_FLAGS_TARGET_COMMAND_BUFFER)
876 goto next;
877 else if (request_desript_type ==
878 MPI2_RPY_DESCRIPT_FLAGS_TARGETASSIST_SUCCESS)
879 goto next;
880 if (smid)
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,
884 reply);
885 if (reply)
886 _base_display_reply_info(ioc, smid, msix_index,
887 reply);
888 if (rc)
889 mpt2sas_base_free_smid(ioc, smid);
890 }
891 if (!smid)
892 _base_async_event(ioc, msix_index, reply);
893
894 /* reply free queue handling */
895 if (reply) {
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] =
901 cpu_to_le32(reply);
902 wmb();
903 writel(ioc->reply_free_host_index,
904 &ioc->chip->ReplyFreeHostIndex);
905 }
906
907 next:
908
909 rpf->Words = cpu_to_le64(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;
916 completed_cmds++;
917 if (request_desript_type == MPI2_RPY_DESCRIPT_FLAGS_UNUSED)
918 goto out;
919 if (!ioc->reply_post_host_index)
920 rpf = ioc->reply_post_free;
921 else
922 rpf++;
923 } while (1);
924
925 out:
926
927 if (!completed_cmds)
928 return IRQ_NONE;
929
930 wmb();
931 writel(ioc->reply_post_host_index, &ioc->chip->ReplyPostHostIndex);
932 return IRQ_HANDLED;
933}
934
935/**
936 * mpt2sas_base_release_callback_handler - clear interrupt callback handler
937 * @cb_idx: callback index
938 *
939 * Return nothing.
940 */
941void
942mpt2sas_base_release_callback_handler(u8 cb_idx)
943{
944 mpt_callbacks[cb_idx] = NULL;
945}
946
947/**
948 * mpt2sas_base_register_callback_handler - obtain index for the interrupt callback handler
949 * @cb_func: callback function
950 *
951 * Returns cb_func.
952 */
953u8
954mpt2sas_base_register_callback_handler(MPT_CALLBACK cb_func)
955{
956 u8 cb_idx;
957
958 for (cb_idx = MPT_MAX_CALLBACKS-1; cb_idx; cb_idx--)
959 if (mpt_callbacks[cb_idx] == NULL)
960 break;
961
962 mpt_callbacks[cb_idx] = cb_func;
963 return cb_idx;
964}
965
966/**
967 * mpt2sas_base_initialize_callback_handler - initialize the interrupt callback handler
968 *
969 * Return nothing.
970 */
971void
972mpt2sas_base_initialize_callback_handler(void)
973{
974 u8 cb_idx;
975
976 for (cb_idx = 0; cb_idx < MPT_MAX_CALLBACKS; cb_idx++)
977 mpt2sas_base_release_callback_handler(cb_idx);
978}
979
980/**
981 * mpt2sas_base_build_zero_len_sge - build zero length sg entry
982 * @ioc: per adapter object
983 * @paddr: virtual address for SGE
984 *
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.
988 *
989 * Return nothing.
990 */
991void
992mpt2sas_base_build_zero_len_sge(struct MPT2SAS_ADAPTER *ioc, void *paddr)
993{
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);
999}
1000
1001/**
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
1006 *
1007 * Return nothing.
1008 */
1009static void
1010_base_add_sg_single_32(void *paddr, u32 flags_length, dma_addr_t dma_addr)
1011{
1012 Mpi2SGESimple32_t *sgel = paddr;
1013
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);
1018}
1019
1020
1021/**
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
1026 *
1027 * Return nothing.
1028 */
1029static void
1030_base_add_sg_single_64(void *paddr, u32 flags_length, dma_addr_t dma_addr)
1031{
1032 Mpi2SGESimple64_t *sgel = paddr;
1033
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);
1038}
1039
1040#define convert_to_kb(x) ((x) << (PAGE_SHIFT - 10))
1041
1042/**
1043 * _base_config_dma_addressing - set dma addressing
1044 * @ioc: per adapter object
1045 * @pdev: PCI device struct
1046 *
1047 * Returns 0 for success, non-zero for failure.
1048 */
1049static int
1050_base_config_dma_addressing(struct MPT2SAS_ADAPTER *ioc, struct pci_dev *pdev)
1051{
1052 struct sysinfo s;
1053 char *desc = NULL;
1054
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);
1063 desc = "64";
1064 goto out;
1065 }
1066 }
1067
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);
1072 desc = "32";
1073 } else
1074 return -ENODEV;
1075
1076 out:
1077 si_meminfo(&s);
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));
1080
1081 return 0;
1082}
1083
1084/**
1085 * _base_save_msix_table - backup msix vector table
1086 * @ioc: per adapter object
1087 *
1088 * This address an errata where diag reset clears out the table
1089 */
1090static void
1091_base_save_msix_table(struct MPT2SAS_ADAPTER *ioc)
1092{
1093 int i;
1094
1095 if (!ioc->msix_enable || ioc->msix_table_backup == NULL)
1096 return;
1097
1098 for (i = 0; i < ioc->msix_vector_count; i++)
1099 ioc->msix_table_backup[i] = ioc->msix_table[i];
1100}
1101
1102/**
1103 * _base_restore_msix_table - this restores the msix vector table
1104 * @ioc: per adapter object
1105 *
1106 */
1107static void
1108_base_restore_msix_table(struct MPT2SAS_ADAPTER *ioc)
1109{
1110 int i;
1111
1112 if (!ioc->msix_enable || ioc->msix_table_backup == NULL)
1113 return;
1114
1115 for (i = 0; i < ioc->msix_vector_count; i++)
1116 ioc->msix_table[i] = ioc->msix_table_backup[i];
1117}
1118
1119/**
1120 * _base_check_enable_msix - checks MSIX capabable.
1121 * @ioc: per adapter object
1122 *
1123 * Check to see if card is capable of MSIX, and set number
1124 * of available msix vectors
1125 */
1126static int
1127_base_check_enable_msix(struct MPT2SAS_ADAPTER *ioc)
1128{
1129 int base;
1130 u16 message_control;
1131 u32 msix_table_offset;
1132
1133 base = pci_find_capability(ioc->pdev, PCI_CAP_ID_MSIX);
1134 if (!base) {
1135 dfailprintk(ioc, printk(MPT2SAS_INFO_FMT "msix not "
1136 "supported\n", ioc->name));
1137 return -EINVAL;
1138 }
1139
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;
1143
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);
1148
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));
1152 return 0;
1153}
1154
1155/**
1156 * _base_disable_msix - disables msix
1157 * @ioc: per adapter object
1158 *
1159 */
1160static void
1161_base_disable_msix(struct MPT2SAS_ADAPTER *ioc)
1162{
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;
1168 }
1169}
1170
1171/**
1172 * _base_enable_msix - enables msix, failback to io_apic
1173 * @ioc: per adapter object
1174 *
1175 */
1176static int
1177_base_enable_msix(struct MPT2SAS_ADAPTER *ioc)
1178{
1179 struct msix_entry entries;
1180 int r;
1181 u8 try_msix = 0;
1182
1183 if (msix_disable == -1 || msix_disable == 0)
1184 try_msix = 1;
1185
1186 if (!try_msix)
1187 goto try_ioapic;
1188
1189 if (_base_check_enable_msix(ioc) != 0)
1190 goto try_ioapic;
1191
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));
1197 goto try_ioapic;
1198 }
1199
1200 memset(&entries, 0, sizeof(struct msix_entry));
1201 r = pci_enable_msix(ioc->pdev, &entries, 1);
1202 if (r) {
1203 dfailprintk(ioc, printk(MPT2SAS_INFO_FMT "pci_enable_msix "
1204 "failed (r=%d) !!!\n", ioc->name, r));
1205 goto try_ioapic;
1206 }
1207
1208 r = request_irq(entries.vector, _base_interrupt, IRQF_SHARED,
1209 ioc->name, ioc);
1210 if (r) {
1211 dfailprintk(ioc, printk(MPT2SAS_INFO_FMT "unable to allocate "
1212 "interrupt %d !!!\n", ioc->name, entries.vector));
1213 pci_disable_msix(ioc->pdev);
1214 goto try_ioapic;
1215 }
1216
1217 ioc->pci_irq = entries.vector;
1218 ioc->msix_enable = 1;
1219 return 0;
1220
1221/* failback to io_apic interrupt routing */
1222 try_ioapic:
1223
1224 r = request_irq(ioc->pdev->irq, _base_interrupt, IRQF_SHARED,
1225 ioc->name, ioc);
1226 if (r) {
1227 printk(MPT2SAS_ERR_FMT "unable to allocate interrupt %d!\n",
1228 ioc->name, ioc->pdev->irq);
1229 r = -EBUSY;
1230 goto out_fail;
1231 }
1232
1233 ioc->pci_irq = ioc->pdev->irq;
1234 return 0;
1235
1236 out_fail:
1237 return r;
1238}
1239
1240/**
1241 * mpt2sas_base_map_resources - map in controller resources (io/irq/memap)
1242 * @ioc: per adapter object
1243 *
1244 * Returns 0 for success, non-zero for failure.
1245 */
1246int
1247mpt2sas_base_map_resources(struct MPT2SAS_ADAPTER *ioc)
1248{
1249 struct pci_dev *pdev = ioc->pdev;
1250 u32 memap_sz;
1251 u32 pio_sz;
1252 int i, r = 0;
1253 u64 pio_chip = 0;
1254 u64 chip_phys = 0;
1255
1256 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n",
1257 ioc->name, __func__));
1258
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);
1263 return -ENODEV;
1264 }
1265
1266
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);
1271 r = -ENODEV;
1272 goto out_fail;
1273 }
1274
1275 /* AER (Advanced Error Reporting) hooks */
1276 pci_enable_pcie_error_reporting(pdev);
1277
1278 pci_set_master(pdev);
1279
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));
1283 r = -ENODEV;
1284 goto out_fail;
1285 }
1286
1287 for (i = 0, memap_sz = 0, pio_sz = 0 ; i < DEVICE_COUNT_RESOURCE; i++) {
1288 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
1289 if (pio_sz)
1290 continue;
1291 pio_chip = (u64)pci_resource_start(pdev, i);
1292 pio_sz = pci_resource_len(pdev, i);
1293 } else {
1294 if (memap_sz)
1295 continue;
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);
1305 r = -EINVAL;
1306 goto out_fail;
1307 }
1308 }
1309 }
1310 }
1311
1312 _base_mask_interrupts(ioc);
1313 r = _base_enable_msix(ioc);
1314 if (r)
1315 goto out_fail;
1316
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);
1324
1325 /* Save PCI configuration state for recovery from PCI AER/EEH errors */
1326 pci_save_state(pdev);
1327
1328 return 0;
1329
1330 out_fail:
1331 if (ioc->chip_phys)
1332 iounmap(ioc->chip);
1333 ioc->chip_phys = 0;
1334 ioc->pci_irq = -1;
1335 pci_release_selected_regions(ioc->pdev, ioc->bars);
1336 pci_disable_pcie_error_reporting(pdev);
1337 pci_disable_device(pdev);
1338 return r;
1339}
1340
1341/**
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)
1345 *
1346 * Returns virt pointer to message frame.
1347 */
1348void *
1349mpt2sas_base_get_msg_frame(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1350{
1351 return (void *)(ioc->request + (smid * ioc->request_sz));
1352}
1353
1354/**
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
1358 *
1359 * Returns virt pointer to sense buffer.
1360 */
1361void *
1362mpt2sas_base_get_sense_buffer(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1363{
1364 return (void *)(ioc->sense + ((smid - 1) * SCSI_SENSE_BUFFERSIZE));
1365}
1366
1367/**
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
1371 *
1372 * Returns phys pointer to the low 32bit address of the sense buffer.
1373 */
1374__le32
1375mpt2sas_base_get_sense_buffer_dma(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1376{
1377 return cpu_to_le32(ioc->sense_dma +
1378 ((smid - 1) * SCSI_SENSE_BUFFERSIZE));
1379}
1380
1381/**
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
1385 *
1386 * Converts 32bit lower physical addr into a virt address.
1387 */
1388void *
1389mpt2sas_base_get_reply_virt_addr(struct MPT2SAS_ADAPTER *ioc, u32 phys_addr)
1390{
1391 if (!phys_addr)
1392 return NULL;
1393 return ioc->reply + (phys_addr - (u32)ioc->reply_dma);
1394}
1395
1396/**
1397 * mpt2sas_base_get_smid - obtain a free smid from internal queue
1398 * @ioc: per adapter object
1399 * @cb_idx: callback index
1400 *
1401 * Returns smid (zero is invalid)
1402 */
1403u16
1404mpt2sas_base_get_smid(struct MPT2SAS_ADAPTER *ioc, u8 cb_idx)
1405{
1406 unsigned long flags;
1407 struct request_tracker *request;
1408 u16 smid;
1409
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__);
1415 return 0;
1416 }
1417
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);
1424 return smid;
1425}
1426
1427/**
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
1432 *
1433 * Returns smid (zero is invalid)
1434 */
1435u16
1436mpt2sas_base_get_smid_scsiio(struct MPT2SAS_ADAPTER *ioc, u8 cb_idx,
1437 struct scsi_cmnd *scmd)
1438{
1439 unsigned long flags;
1440 struct scsiio_tracker *request;
1441 u16 smid;
1442
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__);
1448 return 0;
1449 }
1450
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);
1458 return smid;
1459}
1460
1461/**
1462 * mpt2sas_base_get_smid_hpr - obtain a free smid from hi-priority queue
1463 * @ioc: per adapter object
1464 * @cb_idx: callback index
1465 *
1466 * Returns smid (zero is invalid)
1467 */
1468u16
1469mpt2sas_base_get_smid_hpr(struct MPT2SAS_ADAPTER *ioc, u8 cb_idx)
1470{
1471 unsigned long flags;
1472 struct request_tracker *request;
1473 u16 smid;
1474
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);
1478 return 0;
1479 }
1480
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);
1487 return smid;
1488}
1489
1490
1491/**
1492 * mpt2sas_base_free_smid - put smid back on free_list
1493 * @ioc: per adapter object
1494 * @smid: system request message index
1495 *
1496 * Return nothing.
1497 */
1498void
1499mpt2sas_base_free_smid(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1500{
1501 unsigned long flags;
1502 int i;
1503 struct chain_tracker *chain_req, *next;
1504
1505 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1506 if (smid < ioc->hi_priority_smid) {
1507 /* scsiio queue */
1508 i = smid - 1;
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);
1515 }
1516 }
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,
1521 &ioc->free_list);
1522 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1523
1524 /*
1525 * See _wait_for_commands_to_complete() call with regards
1526 * to this code.
1527 */
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--;
1532 }
1533 return;
1534 } else if (smid < ioc->internal_smid) {
1535 /* hi-priority */
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);
1546 }
1547 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1548}
1549
1550/**
1551 * _base_writeq - 64 bit write to MMIO
1552 * @ioc: per adapter object
1553 * @b: data payload
1554 * @addr: address in MMIO space
1555 * @writeq_lock: spin lock
1556 *
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
1559 * in one transfer.
1560 */
1561#ifndef writeq
1562static inline void _base_writeq(__u64 b, volatile void __iomem *addr,
1563 spinlock_t *writeq_lock)
1564{
1565 unsigned long flags;
1566 __u64 data_out = cpu_to_le64(b);
1567
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);
1572}
1573#else
1574static inline void _base_writeq(__u64 b, volatile void __iomem *addr,
1575 spinlock_t *writeq_lock)
1576{
1577 writeq(cpu_to_le64(b), addr);
1578}
1579#endif
1580
1581/**
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
1586 *
1587 * Return nothing.
1588 */
1589void
1590mpt2sas_base_put_smid_scsi_io(struct MPT2SAS_ADAPTER *ioc, u16 smid, u16 handle)
1591{
1592 Mpi2RequestDescriptorUnion_t descriptor;
1593 u64 *request = (u64 *)&descriptor;
1594
1595
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);
1603}
1604
1605
1606/**
1607 * mpt2sas_base_put_smid_hi_priority - send Task Management request to firmware
1608 * @ioc: per adapter object
1609 * @smid: system request message index
1610 *
1611 * Return nothing.
1612 */
1613void
1614mpt2sas_base_put_smid_hi_priority(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1615{
1616 Mpi2RequestDescriptorUnion_t descriptor;
1617 u64 *request = (u64 *)&descriptor;
1618
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);
1627}
1628
1629/**
1630 * mpt2sas_base_put_smid_default - Default, primarily used for config pages
1631 * @ioc: per adapter object
1632 * @smid: system request message index
1633 *
1634 * Return nothing.
1635 */
1636void
1637mpt2sas_base_put_smid_default(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1638{
1639 Mpi2RequestDescriptorUnion_t descriptor;
1640 u64 *request = (u64 *)&descriptor;
1641
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);
1649}
1650
1651/**
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
1656 *
1657 * Return nothing.
1658 */
1659void
1660mpt2sas_base_put_smid_target_assist(struct MPT2SAS_ADAPTER *ioc, u16 smid,
1661 u16 io_index)
1662{
1663 Mpi2RequestDescriptorUnion_t descriptor;
1664 u64 *request = (u64 *)&descriptor;
1665
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);
1674}
1675
1676/**
1677 * _base_display_dell_branding - Disply branding string
1678 * @ioc: per adapter object
1679 *
1680 * Return nothing.
1681 */
1682static void
1683_base_display_dell_branding(struct MPT2SAS_ADAPTER *ioc)
1684{
1685 char dell_branding[MPT2SAS_DELL_BRANDING_SIZE];
1686
1687 if (ioc->pdev->subsystem_vendor != PCI_VENDOR_ID_DELL)
1688 return;
1689
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);
1695 break;
1696 case MPT2SAS_DELL_PERC_H200_ADAPTER_SSDID:
1697 strncpy(dell_branding, MPT2SAS_DELL_PERC_H200_ADAPTER_BRANDING,
1698 MPT2SAS_DELL_BRANDING_SIZE - 1);
1699 break;
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);
1704 break;
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);
1709 break;
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);
1714 break;
1715 case MPT2SAS_DELL_PERC_H200_SSDID:
1716 strncpy(dell_branding, MPT2SAS_DELL_PERC_H200_BRANDING,
1717 MPT2SAS_DELL_BRANDING_SIZE - 1);
1718 break;
1719 case MPT2SAS_DELL_6GBPS_SAS_SSDID:
1720 strncpy(dell_branding, MPT2SAS_DELL_6GBPS_SAS_BRANDING,
1721 MPT2SAS_DELL_BRANDING_SIZE - 1);
1722 break;
1723 default:
1724 sprintf(dell_branding, "0x%4X", ioc->pdev->subsystem_device);
1725 break;
1726 }
1727
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);
1732}
1733
1734/**
1735 * _base_display_intel_branding - Display branding string
1736 * @ioc: per adapter object
1737 *
1738 * Return nothing.
1739 */
1740static void
1741_base_display_intel_branding(struct MPT2SAS_ADAPTER *ioc)
1742{
1743 if (ioc->pdev->subsystem_vendor != PCI_VENDOR_ID_INTEL)
1744 return;
1745
1746 switch (ioc->pdev->device) {
1747 case MPI2_MFGPAGE_DEVID_SAS2008:
1748 switch (ioc->pdev->subsystem_device) {
1749 case MPT2SAS_INTEL_RMS2LL080_SSDID:
1750 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1751 MPT2SAS_INTEL_RMS2LL080_BRANDING);
1752 break;
1753 case MPT2SAS_INTEL_RMS2LL040_SSDID:
1754 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1755 MPT2SAS_INTEL_RMS2LL040_BRANDING);
1756 break;
1757 default:
1758 break;
1759 }
1760 case MPI2_MFGPAGE_DEVID_SAS2308_2:
1761 switch (ioc->pdev->subsystem_device) {
1762 case MPT2SAS_INTEL_RS25GB008_SSDID:
1763 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1764 MPT2SAS_INTEL_RS25GB008_BRANDING);
1765 break;
1766 default:
1767 break;
1768 }
1769 default:
1770 break;
1771 }
1772}
1773
1774/**
1775 * _base_display_hp_branding - Display branding string
1776 * @ioc: per adapter object
1777 *
1778 * Return nothing.
1779 */
1780static void
1781_base_display_hp_branding(struct MPT2SAS_ADAPTER *ioc)
1782{
1783 if (ioc->pdev->subsystem_vendor != MPT2SAS_HP_3PAR_SSVID)
1784 return;
1785
1786 switch (ioc->pdev->device) {
1787 case MPI2_MFGPAGE_DEVID_SAS2004:
1788 switch (ioc->pdev->subsystem_device) {
1789 case MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_SSDID:
1790 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1791 MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_BRANDING);
1792 break;
1793 default:
1794 break;
1795 }
1796 case MPI2_MFGPAGE_DEVID_SAS2308_2:
1797 switch (ioc->pdev->subsystem_device) {
1798 case MPT2SAS_HP_2_4_INTERNAL_SSDID:
1799 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1800 MPT2SAS_HP_2_4_INTERNAL_BRANDING);
1801 break;
1802 case MPT2SAS_HP_2_4_EXTERNAL_SSDID:
1803 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1804 MPT2SAS_HP_2_4_EXTERNAL_BRANDING);
1805 break;
1806 case MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_SSDID:
1807 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1808 MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_BRANDING);
1809 break;
1810 case MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_SSDID:
1811 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1812 MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_BRANDING);
1813 break;
1814 default:
1815 break;
1816 }
1817 default:
1818 break;
1819 }
1820}
1821
1822/**
1823 * _base_display_ioc_capabilities - Disply IOC's capabilities.
1824 * @ioc: per adapter object
1825 *
1826 * Return nothing.
1827 */
1828static void
1829_base_display_ioc_capabilities(struct MPT2SAS_ADAPTER *ioc)
1830{
1831 int i = 0;
1832 char desc[16];
1833 u8 revision;
1834 u32 iounit_pg1_flags;
1835 u32 bios_version;
1836
1837 bios_version = le32_to_cpu(ioc->bios_pg3.BiosVersion);
1838 pci_read_config_byte(ioc->pdev, PCI_CLASS_REVISION, &revision);
1839 strncpy(desc, ioc->manu_pg0.ChipName, 16);
1840 printk(MPT2SAS_INFO_FMT "%s: FWVersion(%02d.%02d.%02d.%02d), "
1841 "ChipRevision(0x%02x), BiosVersion(%02d.%02d.%02d.%02d)\n",
1842 ioc->name, desc,
1843 (ioc->facts.FWVersion.Word & 0xFF000000) >> 24,
1844 (ioc->facts.FWVersion.Word & 0x00FF0000) >> 16,
1845 (ioc->facts.FWVersion.Word & 0x0000FF00) >> 8,
1846 ioc->facts.FWVersion.Word & 0x000000FF,
1847 revision,
1848 (bios_version & 0xFF000000) >> 24,
1849 (bios_version & 0x00FF0000) >> 16,
1850 (bios_version & 0x0000FF00) >> 8,
1851 bios_version & 0x000000FF);
1852
1853 _base_display_dell_branding(ioc);
1854 _base_display_intel_branding(ioc);
1855 _base_display_hp_branding(ioc);
1856
1857 printk(MPT2SAS_INFO_FMT "Protocol=(", ioc->name);
1858
1859 if (ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR) {
1860 printk("Initiator");
1861 i++;
1862 }
1863
1864 if (ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_TARGET) {
1865 printk("%sTarget", i ? "," : "");
1866 i++;
1867 }
1868
1869 i = 0;
1870 printk("), ");
1871 printk("Capabilities=(");
1872
1873 if (!ioc->hide_ir_msg) {
1874 if (ioc->facts.IOCCapabilities &
1875 MPI2_IOCFACTS_CAPABILITY_INTEGRATED_RAID) {
1876 printk("Raid");
1877 i++;
1878 }
1879 }
1880
1881 if (ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_TLR) {
1882 printk("%sTLR", i ? "," : "");
1883 i++;
1884 }
1885
1886 if (ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_MULTICAST) {
1887 printk("%sMulticast", i ? "," : "");
1888 i++;
1889 }
1890
1891 if (ioc->facts.IOCCapabilities &
1892 MPI2_IOCFACTS_CAPABILITY_BIDIRECTIONAL_TARGET) {
1893 printk("%sBIDI Target", i ? "," : "");
1894 i++;
1895 }
1896
1897 if (ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_EEDP) {
1898 printk("%sEEDP", i ? "," : "");
1899 i++;
1900 }
1901
1902 if (ioc->facts.IOCCapabilities &
1903 MPI2_IOCFACTS_CAPABILITY_SNAPSHOT_BUFFER) {
1904 printk("%sSnapshot Buffer", i ? "," : "");
1905 i++;
1906 }
1907
1908 if (ioc->facts.IOCCapabilities &
1909 MPI2_IOCFACTS_CAPABILITY_DIAG_TRACE_BUFFER) {
1910 printk("%sDiag Trace Buffer", i ? "," : "");
1911 i++;
1912 }
1913
1914 if (ioc->facts.IOCCapabilities &
1915 MPI2_IOCFACTS_CAPABILITY_EXTENDED_BUFFER) {
1916 printk(KERN_INFO "%sDiag Extended Buffer", i ? "," : "");
1917 i++;
1918 }
1919
1920 if (ioc->facts.IOCCapabilities &
1921 MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING) {
1922 printk("%sTask Set Full", i ? "," : "");
1923 i++;
1924 }
1925
1926 iounit_pg1_flags = le32_to_cpu(ioc->iounit_pg1.Flags);
1927 if (!(iounit_pg1_flags & MPI2_IOUNITPAGE1_NATIVE_COMMAND_Q_DISABLE)) {
1928 printk("%sNCQ", i ? "," : "");
1929 i++;
1930 }
1931
1932 printk(")\n");
1933}
1934
1935/**
1936 * _base_update_missing_delay - change the missing delay timers
1937 * @ioc: per adapter object
1938 * @device_missing_delay: amount of time till device is reported missing
1939 * @io_missing_delay: interval IO is returned when there is a missing device
1940 *
1941 * Return nothing.
1942 *
1943 * Passed on the command line, this function will modify the device missing
1944 * delay, as well as the io missing delay. This should be called at driver
1945 * load time.
1946 */
1947static void
1948_base_update_missing_delay(struct MPT2SAS_ADAPTER *ioc,
1949 u16 device_missing_delay, u8 io_missing_delay)
1950{
1951 u16 dmd, dmd_new, dmd_orignal;
1952 u8 io_missing_delay_original;
1953 u16 sz;
1954 Mpi2SasIOUnitPage1_t *sas_iounit_pg1 = NULL;
1955 Mpi2ConfigReply_t mpi_reply;
1956 u8 num_phys = 0;
1957 u16 ioc_status;
1958
1959 mpt2sas_config_get_number_hba_phys(ioc, &num_phys);
1960 if (!num_phys)
1961 return;
1962
1963 sz = offsetof(Mpi2SasIOUnitPage1_t, PhyData) + (num_phys *
1964 sizeof(Mpi2SasIOUnit1PhyData_t));
1965 sas_iounit_pg1 = kzalloc(sz, GFP_KERNEL);
1966 if (!sas_iounit_pg1) {
1967 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1968 ioc->name, __FILE__, __LINE__, __func__);
1969 goto out;
1970 }
1971 if ((mpt2sas_config_get_sas_iounit_pg1(ioc, &mpi_reply,
1972 sas_iounit_pg1, sz))) {
1973 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1974 ioc->name, __FILE__, __LINE__, __func__);
1975 goto out;
1976 }
1977 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1978 MPI2_IOCSTATUS_MASK;
1979 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
1980 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1981 ioc->name, __FILE__, __LINE__, __func__);
1982 goto out;
1983 }
1984
1985 /* device missing delay */
1986 dmd = sas_iounit_pg1->ReportDeviceMissingDelay;
1987 if (dmd & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
1988 dmd = (dmd & MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
1989 else
1990 dmd = dmd & MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
1991 dmd_orignal = dmd;
1992 if (device_missing_delay > 0x7F) {
1993 dmd = (device_missing_delay > 0x7F0) ? 0x7F0 :
1994 device_missing_delay;
1995 dmd = dmd / 16;
1996 dmd |= MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16;
1997 } else
1998 dmd = device_missing_delay;
1999 sas_iounit_pg1->ReportDeviceMissingDelay = dmd;
2000
2001 /* io missing delay */
2002 io_missing_delay_original = sas_iounit_pg1->IODeviceMissingDelay;
2003 sas_iounit_pg1->IODeviceMissingDelay = io_missing_delay;
2004
2005 if (!mpt2sas_config_set_sas_iounit_pg1(ioc, &mpi_reply, sas_iounit_pg1,
2006 sz)) {
2007 if (dmd & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
2008 dmd_new = (dmd &
2009 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
2010 else
2011 dmd_new =
2012 dmd & MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
2013 printk(MPT2SAS_INFO_FMT "device_missing_delay: old(%d), "
2014 "new(%d)\n", ioc->name, dmd_orignal, dmd_new);
2015 printk(MPT2SAS_INFO_FMT "ioc_missing_delay: old(%d), "
2016 "new(%d)\n", ioc->name, io_missing_delay_original,
2017 io_missing_delay);
2018 ioc->device_missing_delay = dmd_new;
2019 ioc->io_missing_delay = io_missing_delay;
2020 }
2021
2022out:
2023 kfree(sas_iounit_pg1);
2024}
2025
2026/**
2027 * _base_static_config_pages - static start of day config pages
2028 * @ioc: per adapter object
2029 *
2030 * Return nothing.
2031 */
2032static void
2033_base_static_config_pages(struct MPT2SAS_ADAPTER *ioc)
2034{
2035 Mpi2ConfigReply_t mpi_reply;
2036 u32 iounit_pg1_flags;
2037
2038 mpt2sas_config_get_manufacturing_pg0(ioc, &mpi_reply, &ioc->manu_pg0);
2039 if (ioc->ir_firmware)
2040 mpt2sas_config_get_manufacturing_pg10(ioc, &mpi_reply,
2041 &ioc->manu_pg10);
2042 mpt2sas_config_get_bios_pg2(ioc, &mpi_reply, &ioc->bios_pg2);
2043 mpt2sas_config_get_bios_pg3(ioc, &mpi_reply, &ioc->bios_pg3);
2044 mpt2sas_config_get_ioc_pg8(ioc, &mpi_reply, &ioc->ioc_pg8);
2045 mpt2sas_config_get_iounit_pg0(ioc, &mpi_reply, &ioc->iounit_pg0);
2046 mpt2sas_config_get_iounit_pg1(ioc, &mpi_reply, &ioc->iounit_pg1);
2047 _base_display_ioc_capabilities(ioc);
2048
2049 /*
2050 * Enable task_set_full handling in iounit_pg1 when the
2051 * facts capabilities indicate that its supported.
2052 */
2053 iounit_pg1_flags = le32_to_cpu(ioc->iounit_pg1.Flags);
2054 if ((ioc->facts.IOCCapabilities &
2055 MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING))
2056 iounit_pg1_flags &=
2057 ~MPI2_IOUNITPAGE1_DISABLE_TASK_SET_FULL_HANDLING;
2058 else
2059 iounit_pg1_flags |=
2060 MPI2_IOUNITPAGE1_DISABLE_TASK_SET_FULL_HANDLING;
2061 ioc->iounit_pg1.Flags = cpu_to_le32(iounit_pg1_flags);
2062 mpt2sas_config_set_iounit_pg1(ioc, &mpi_reply, &ioc->iounit_pg1);
2063
2064}
2065
2066/**
2067 * _base_release_memory_pools - release memory
2068 * @ioc: per adapter object
2069 *
2070 * Free memory allocated from _base_allocate_memory_pools.
2071 *
2072 * Return nothing.
2073 */
2074static void
2075_base_release_memory_pools(struct MPT2SAS_ADAPTER *ioc)
2076{
2077 int i;
2078
2079 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2080 __func__));
2081
2082 if (ioc->request) {
2083 pci_free_consistent(ioc->pdev, ioc->request_dma_sz,
2084 ioc->request, ioc->request_dma);
2085 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "request_pool(0x%p)"
2086 ": free\n", ioc->name, ioc->request));
2087 ioc->request = NULL;
2088 }
2089
2090 if (ioc->sense) {
2091 pci_pool_free(ioc->sense_dma_pool, ioc->sense, ioc->sense_dma);
2092 if (ioc->sense_dma_pool)
2093 pci_pool_destroy(ioc->sense_dma_pool);
2094 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "sense_pool(0x%p)"
2095 ": free\n", ioc->name, ioc->sense));
2096 ioc->sense = NULL;
2097 }
2098
2099 if (ioc->reply) {
2100 pci_pool_free(ioc->reply_dma_pool, ioc->reply, ioc->reply_dma);
2101 if (ioc->reply_dma_pool)
2102 pci_pool_destroy(ioc->reply_dma_pool);
2103 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_pool(0x%p)"
2104 ": free\n", ioc->name, ioc->reply));
2105 ioc->reply = NULL;
2106 }
2107
2108 if (ioc->reply_free) {
2109 pci_pool_free(ioc->reply_free_dma_pool, ioc->reply_free,
2110 ioc->reply_free_dma);
2111 if (ioc->reply_free_dma_pool)
2112 pci_pool_destroy(ioc->reply_free_dma_pool);
2113 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_free_pool"
2114 "(0x%p): free\n", ioc->name, ioc->reply_free));
2115 ioc->reply_free = NULL;
2116 }
2117
2118 if (ioc->reply_post_free) {
2119 pci_pool_free(ioc->reply_post_free_dma_pool,
2120 ioc->reply_post_free, ioc->reply_post_free_dma);
2121 if (ioc->reply_post_free_dma_pool)
2122 pci_pool_destroy(ioc->reply_post_free_dma_pool);
2123 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT
2124 "reply_post_free_pool(0x%p): free\n", ioc->name,
2125 ioc->reply_post_free));
2126 ioc->reply_post_free = NULL;
2127 }
2128
2129 if (ioc->config_page) {
2130 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT
2131 "config_page(0x%p): free\n", ioc->name,
2132 ioc->config_page));
2133 pci_free_consistent(ioc->pdev, ioc->config_page_sz,
2134 ioc->config_page, ioc->config_page_dma);
2135 }
2136
2137 if (ioc->scsi_lookup) {
2138 free_pages((ulong)ioc->scsi_lookup, ioc->scsi_lookup_pages);
2139 ioc->scsi_lookup = NULL;
2140 }
2141 kfree(ioc->hpr_lookup);
2142 kfree(ioc->internal_lookup);
2143 if (ioc->chain_lookup) {
2144 for (i = 0; i < ioc->chain_depth; i++) {
2145 if (ioc->chain_lookup[i].chain_buffer)
2146 pci_pool_free(ioc->chain_dma_pool,
2147 ioc->chain_lookup[i].chain_buffer,
2148 ioc->chain_lookup[i].chain_buffer_dma);
2149 }
2150 if (ioc->chain_dma_pool)
2151 pci_pool_destroy(ioc->chain_dma_pool);
2152 }
2153 if (ioc->chain_lookup) {
2154 free_pages((ulong)ioc->chain_lookup, ioc->chain_pages);
2155 ioc->chain_lookup = NULL;
2156 }
2157}
2158
2159
2160/**
2161 * _base_allocate_memory_pools - allocate start of day memory pools
2162 * @ioc: per adapter object
2163 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2164 *
2165 * Returns 0 success, anything else error
2166 */
2167static int
2168_base_allocate_memory_pools(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
2169{
2170 struct mpt2sas_facts *facts;
2171 u32 queue_size, queue_diff;
2172 u16 max_sge_elements;
2173 u16 num_of_reply_frames;
2174 u16 chains_needed_per_io;
2175 u32 sz, total_sz;
2176 u32 retry_sz;
2177 u16 max_request_credit;
2178 int i;
2179
2180 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2181 __func__));
2182
2183 retry_sz = 0;
2184 facts = &ioc->facts;
2185
2186 /* command line tunables for max sgl entries */
2187 if (max_sgl_entries != -1) {
2188 ioc->shost->sg_tablesize = (max_sgl_entries <
2189 MPT2SAS_SG_DEPTH) ? max_sgl_entries :
2190 MPT2SAS_SG_DEPTH;
2191 } else {
2192 ioc->shost->sg_tablesize = MPT2SAS_SG_DEPTH;
2193 }
2194
2195 /* command line tunables for max controller queue depth */
2196 if (max_queue_depth != -1)
2197 max_request_credit = (max_queue_depth < facts->RequestCredit)
2198 ? max_queue_depth : facts->RequestCredit;
2199 else
2200 max_request_credit = facts->RequestCredit;
2201
2202 ioc->hba_queue_depth = max_request_credit;
2203 ioc->hi_priority_depth = facts->HighPriorityCredit;
2204 ioc->internal_depth = ioc->hi_priority_depth + 5;
2205
2206 /* request frame size */
2207 ioc->request_sz = facts->IOCRequestFrameSize * 4;
2208
2209 /* reply frame size */
2210 ioc->reply_sz = facts->ReplyFrameSize * 4;
2211
2212 retry_allocation:
2213 total_sz = 0;
2214 /* calculate number of sg elements left over in the 1st frame */
2215 max_sge_elements = ioc->request_sz - ((sizeof(Mpi2SCSIIORequest_t) -
2216 sizeof(Mpi2SGEIOUnion_t)) + ioc->sge_size);
2217 ioc->max_sges_in_main_message = max_sge_elements/ioc->sge_size;
2218
2219 /* now do the same for a chain buffer */
2220 max_sge_elements = ioc->request_sz - ioc->sge_size;
2221 ioc->max_sges_in_chain_message = max_sge_elements/ioc->sge_size;
2222
2223 ioc->chain_offset_value_for_main_message =
2224 ((sizeof(Mpi2SCSIIORequest_t) - sizeof(Mpi2SGEIOUnion_t)) +
2225 (ioc->max_sges_in_chain_message * ioc->sge_size)) / 4;
2226
2227 /*
2228 * MPT2SAS_SG_DEPTH = CONFIG_FUSION_MAX_SGE
2229 */
2230 chains_needed_per_io = ((ioc->shost->sg_tablesize -
2231 ioc->max_sges_in_main_message)/ioc->max_sges_in_chain_message)
2232 + 1;
2233 if (chains_needed_per_io > facts->MaxChainDepth) {
2234 chains_needed_per_io = facts->MaxChainDepth;
2235 ioc->shost->sg_tablesize = min_t(u16,
2236 ioc->max_sges_in_main_message + (ioc->max_sges_in_chain_message
2237 * chains_needed_per_io), ioc->shost->sg_tablesize);
2238 }
2239 ioc->chains_needed_per_io = chains_needed_per_io;
2240
2241 /* reply free queue sizing - taking into account for events */
2242 num_of_reply_frames = ioc->hba_queue_depth + 32;
2243
2244 /* number of replies frames can't be a multiple of 16 */
2245 /* decrease number of reply frames by 1 */
2246 if (!(num_of_reply_frames % 16))
2247 num_of_reply_frames--;
2248
2249 /* calculate number of reply free queue entries
2250 * (must be multiple of 16)
2251 */
2252
2253 /* (we know reply_free_queue_depth is not a multiple of 16) */
2254 queue_size = num_of_reply_frames;
2255 queue_size += 16 - (queue_size % 16);
2256 ioc->reply_free_queue_depth = queue_size;
2257
2258 /* reply descriptor post queue sizing */
2259 /* this size should be the number of request frames + number of reply
2260 * frames
2261 */
2262
2263 queue_size = ioc->hba_queue_depth + num_of_reply_frames + 1;
2264 /* round up to 16 byte boundary */
2265 if (queue_size % 16)
2266 queue_size += 16 - (queue_size % 16);
2267
2268 /* check against IOC maximum reply post queue depth */
2269 if (queue_size > facts->MaxReplyDescriptorPostQueueDepth) {
2270 queue_diff = queue_size -
2271 facts->MaxReplyDescriptorPostQueueDepth;
2272
2273 /* round queue_diff up to multiple of 16 */
2274 if (queue_diff % 16)
2275 queue_diff += 16 - (queue_diff % 16);
2276
2277 /* adjust hba_queue_depth, reply_free_queue_depth,
2278 * and queue_size
2279 */
2280 ioc->hba_queue_depth -= (queue_diff / 2);
2281 ioc->reply_free_queue_depth -= (queue_diff / 2);
2282 queue_size = facts->MaxReplyDescriptorPostQueueDepth;
2283 }
2284 ioc->reply_post_queue_depth = queue_size;
2285
2286 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scatter gather: "
2287 "sge_in_main_msg(%d), sge_per_chain(%d), sge_per_io(%d), "
2288 "chains_per_io(%d)\n", ioc->name, ioc->max_sges_in_main_message,
2289 ioc->max_sges_in_chain_message, ioc->shost->sg_tablesize,
2290 ioc->chains_needed_per_io));
2291
2292 ioc->scsiio_depth = ioc->hba_queue_depth -
2293 ioc->hi_priority_depth - ioc->internal_depth;
2294
2295 /* set the scsi host can_queue depth
2296 * with some internal commands that could be outstanding
2297 */
2298 ioc->shost->can_queue = ioc->scsiio_depth - (2);
2299 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scsi host: "
2300 "can_queue depth (%d)\n", ioc->name, ioc->shost->can_queue));
2301
2302 /* contiguous pool for request and chains, 16 byte align, one extra "
2303 * "frame for smid=0
2304 */
2305 ioc->chain_depth = ioc->chains_needed_per_io * ioc->scsiio_depth;
2306 sz = ((ioc->scsiio_depth + 1) * ioc->request_sz);
2307
2308 /* hi-priority queue */
2309 sz += (ioc->hi_priority_depth * ioc->request_sz);
2310
2311 /* internal queue */
2312 sz += (ioc->internal_depth * ioc->request_sz);
2313
2314 ioc->request_dma_sz = sz;
2315 ioc->request = pci_alloc_consistent(ioc->pdev, sz, &ioc->request_dma);
2316 if (!ioc->request) {
2317 printk(MPT2SAS_ERR_FMT "request pool: pci_alloc_consistent "
2318 "failed: hba_depth(%d), chains_per_io(%d), frame_sz(%d), "
2319 "total(%d kB)\n", ioc->name, ioc->hba_queue_depth,
2320 ioc->chains_needed_per_io, ioc->request_sz, sz/1024);
2321 if (ioc->scsiio_depth < MPT2SAS_SAS_QUEUE_DEPTH)
2322 goto out;
2323 retry_sz += 64;
2324 ioc->hba_queue_depth = max_request_credit - retry_sz;
2325 goto retry_allocation;
2326 }
2327
2328 if (retry_sz)
2329 printk(MPT2SAS_ERR_FMT "request pool: pci_alloc_consistent "
2330 "succeed: hba_depth(%d), chains_per_io(%d), frame_sz(%d), "
2331 "total(%d kb)\n", ioc->name, ioc->hba_queue_depth,
2332 ioc->chains_needed_per_io, ioc->request_sz, sz/1024);
2333
2334
2335 /* hi-priority queue */
2336 ioc->hi_priority = ioc->request + ((ioc->scsiio_depth + 1) *
2337 ioc->request_sz);
2338 ioc->hi_priority_dma = ioc->request_dma + ((ioc->scsiio_depth + 1) *
2339 ioc->request_sz);
2340
2341 /* internal queue */
2342 ioc->internal = ioc->hi_priority + (ioc->hi_priority_depth *
2343 ioc->request_sz);
2344 ioc->internal_dma = ioc->hi_priority_dma + (ioc->hi_priority_depth *
2345 ioc->request_sz);
2346
2347
2348 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "request pool(0x%p): "
2349 "depth(%d), frame_size(%d), pool_size(%d kB)\n", ioc->name,
2350 ioc->request, ioc->hba_queue_depth, ioc->request_sz,
2351 (ioc->hba_queue_depth * ioc->request_sz)/1024));
2352 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "request pool: dma(0x%llx)\n",
2353 ioc->name, (unsigned long long) ioc->request_dma));
2354 total_sz += sz;
2355
2356 sz = ioc->scsiio_depth * sizeof(struct scsiio_tracker);
2357 ioc->scsi_lookup_pages = get_order(sz);
2358 ioc->scsi_lookup = (struct scsiio_tracker *)__get_free_pages(
2359 GFP_KERNEL, ioc->scsi_lookup_pages);
2360 if (!ioc->scsi_lookup) {
2361 printk(MPT2SAS_ERR_FMT "scsi_lookup: get_free_pages failed, "
2362 "sz(%d)\n", ioc->name, (int)sz);
2363 goto out;
2364 }
2365
2366 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scsiio(0x%p): "
2367 "depth(%d)\n", ioc->name, ioc->request,
2368 ioc->scsiio_depth));
2369
2370 /* loop till the allocation succeeds */
2371 do {
2372 sz = ioc->chain_depth * sizeof(struct chain_tracker);
2373 ioc->chain_pages = get_order(sz);
2374 ioc->chain_lookup = (struct chain_tracker *)__get_free_pages(
2375 GFP_KERNEL, ioc->chain_pages);
2376 if (ioc->chain_lookup == NULL)
2377 ioc->chain_depth -= 100;
2378 } while (ioc->chain_lookup == NULL);
2379 ioc->chain_dma_pool = pci_pool_create("chain pool", ioc->pdev,
2380 ioc->request_sz, 16, 0);
2381 if (!ioc->chain_dma_pool) {
2382 printk(MPT2SAS_ERR_FMT "chain_dma_pool: pci_pool_create "
2383 "failed\n", ioc->name);
2384 goto out;
2385 }
2386 for (i = 0; i < ioc->chain_depth; i++) {
2387 ioc->chain_lookup[i].chain_buffer = pci_pool_alloc(
2388 ioc->chain_dma_pool , GFP_KERNEL,
2389 &ioc->chain_lookup[i].chain_buffer_dma);
2390 if (!ioc->chain_lookup[i].chain_buffer) {
2391 ioc->chain_depth = i;
2392 goto chain_done;
2393 }
2394 total_sz += ioc->request_sz;
2395 }
2396chain_done:
2397 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "chain pool depth"
2398 "(%d), frame_size(%d), pool_size(%d kB)\n", ioc->name,
2399 ioc->chain_depth, ioc->request_sz, ((ioc->chain_depth *
2400 ioc->request_sz))/1024));
2401
2402 /* initialize hi-priority queue smid's */
2403 ioc->hpr_lookup = kcalloc(ioc->hi_priority_depth,
2404 sizeof(struct request_tracker), GFP_KERNEL);
2405 if (!ioc->hpr_lookup) {
2406 printk(MPT2SAS_ERR_FMT "hpr_lookup: kcalloc failed\n",
2407 ioc->name);
2408 goto out;
2409 }
2410 ioc->hi_priority_smid = ioc->scsiio_depth + 1;
2411 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "hi_priority(0x%p): "
2412 "depth(%d), start smid(%d)\n", ioc->name, ioc->hi_priority,
2413 ioc->hi_priority_depth, ioc->hi_priority_smid));
2414
2415 /* initialize internal queue smid's */
2416 ioc->internal_lookup = kcalloc(ioc->internal_depth,
2417 sizeof(struct request_tracker), GFP_KERNEL);
2418 if (!ioc->internal_lookup) {
2419 printk(MPT2SAS_ERR_FMT "internal_lookup: kcalloc failed\n",
2420 ioc->name);
2421 goto out;
2422 }
2423 ioc->internal_smid = ioc->hi_priority_smid + ioc->hi_priority_depth;
2424 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "internal(0x%p): "
2425 "depth(%d), start smid(%d)\n", ioc->name, ioc->internal,
2426 ioc->internal_depth, ioc->internal_smid));
2427
2428 /* sense buffers, 4 byte align */
2429 sz = ioc->scsiio_depth * SCSI_SENSE_BUFFERSIZE;
2430 ioc->sense_dma_pool = pci_pool_create("sense pool", ioc->pdev, sz, 4,
2431 0);
2432 if (!ioc->sense_dma_pool) {
2433 printk(MPT2SAS_ERR_FMT "sense pool: pci_pool_create failed\n",
2434 ioc->name);
2435 goto out;
2436 }
2437 ioc->sense = pci_pool_alloc(ioc->sense_dma_pool , GFP_KERNEL,
2438 &ioc->sense_dma);
2439 if (!ioc->sense) {
2440 printk(MPT2SAS_ERR_FMT "sense pool: pci_pool_alloc failed\n",
2441 ioc->name);
2442 goto out;
2443 }
2444 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT
2445 "sense pool(0x%p): depth(%d), element_size(%d), pool_size"
2446 "(%d kB)\n", ioc->name, ioc->sense, ioc->scsiio_depth,
2447 SCSI_SENSE_BUFFERSIZE, sz/1024));
2448 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "sense_dma(0x%llx)\n",
2449 ioc->name, (unsigned long long)ioc->sense_dma));
2450 total_sz += sz;
2451
2452 /* reply pool, 4 byte align */
2453 sz = ioc->reply_free_queue_depth * ioc->reply_sz;
2454 ioc->reply_dma_pool = pci_pool_create("reply pool", ioc->pdev, sz, 4,
2455 0);
2456 if (!ioc->reply_dma_pool) {
2457 printk(MPT2SAS_ERR_FMT "reply pool: pci_pool_create failed\n",
2458 ioc->name);
2459 goto out;
2460 }
2461 ioc->reply = pci_pool_alloc(ioc->reply_dma_pool , GFP_KERNEL,
2462 &ioc->reply_dma);
2463 if (!ioc->reply) {
2464 printk(MPT2SAS_ERR_FMT "reply pool: pci_pool_alloc failed\n",
2465 ioc->name);
2466 goto out;
2467 }
2468 ioc->reply_dma_min_address = (u32)(ioc->reply_dma);
2469 ioc->reply_dma_max_address = (u32)(ioc->reply_dma) + sz;
2470 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply pool(0x%p): depth"
2471 "(%d), frame_size(%d), pool_size(%d kB)\n", ioc->name, ioc->reply,
2472 ioc->reply_free_queue_depth, ioc->reply_sz, sz/1024));
2473 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_dma(0x%llx)\n",
2474 ioc->name, (unsigned long long)ioc->reply_dma));
2475 total_sz += sz;
2476
2477 /* reply free queue, 16 byte align */
2478 sz = ioc->reply_free_queue_depth * 4;
2479 ioc->reply_free_dma_pool = pci_pool_create("reply_free pool",
2480 ioc->pdev, sz, 16, 0);
2481 if (!ioc->reply_free_dma_pool) {
2482 printk(MPT2SAS_ERR_FMT "reply_free pool: pci_pool_create "
2483 "failed\n", ioc->name);
2484 goto out;
2485 }
2486 ioc->reply_free = pci_pool_alloc(ioc->reply_free_dma_pool , GFP_KERNEL,
2487 &ioc->reply_free_dma);
2488 if (!ioc->reply_free) {
2489 printk(MPT2SAS_ERR_FMT "reply_free pool: pci_pool_alloc "
2490 "failed\n", ioc->name);
2491 goto out;
2492 }
2493 memset(ioc->reply_free, 0, sz);
2494 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_free pool(0x%p): "
2495 "depth(%d), element_size(%d), pool_size(%d kB)\n", ioc->name,
2496 ioc->reply_free, ioc->reply_free_queue_depth, 4, sz/1024));
2497 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_free_dma"
2498 "(0x%llx)\n", ioc->name, (unsigned long long)ioc->reply_free_dma));
2499 total_sz += sz;
2500
2501 /* reply post queue, 16 byte align */
2502 sz = ioc->reply_post_queue_depth * sizeof(Mpi2DefaultReplyDescriptor_t);
2503 ioc->reply_post_free_dma_pool = pci_pool_create("reply_post_free pool",
2504 ioc->pdev, sz, 16, 0);
2505 if (!ioc->reply_post_free_dma_pool) {
2506 printk(MPT2SAS_ERR_FMT "reply_post_free pool: pci_pool_create "
2507 "failed\n", ioc->name);
2508 goto out;
2509 }
2510 ioc->reply_post_free = pci_pool_alloc(ioc->reply_post_free_dma_pool ,
2511 GFP_KERNEL, &ioc->reply_post_free_dma);
2512 if (!ioc->reply_post_free) {
2513 printk(MPT2SAS_ERR_FMT "reply_post_free pool: pci_pool_alloc "
2514 "failed\n", ioc->name);
2515 goto out;
2516 }
2517 memset(ioc->reply_post_free, 0, sz);
2518 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply post free pool"
2519 "(0x%p): depth(%d), element_size(%d), pool_size(%d kB)\n",
2520 ioc->name, ioc->reply_post_free, ioc->reply_post_queue_depth, 8,
2521 sz/1024));
2522 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_post_free_dma = "
2523 "(0x%llx)\n", ioc->name, (unsigned long long)
2524 ioc->reply_post_free_dma));
2525 total_sz += sz;
2526
2527 ioc->config_page_sz = 512;
2528 ioc->config_page = pci_alloc_consistent(ioc->pdev,
2529 ioc->config_page_sz, &ioc->config_page_dma);
2530 if (!ioc->config_page) {
2531 printk(MPT2SAS_ERR_FMT "config page: pci_pool_alloc "
2532 "failed\n", ioc->name);
2533 goto out;
2534 }
2535 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "config page(0x%p): size"
2536 "(%d)\n", ioc->name, ioc->config_page, ioc->config_page_sz));
2537 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "config_page_dma"
2538 "(0x%llx)\n", ioc->name, (unsigned long long)ioc->config_page_dma));
2539 total_sz += ioc->config_page_sz;
2540
2541 printk(MPT2SAS_INFO_FMT "Allocated physical memory: size(%d kB)\n",
2542 ioc->name, total_sz/1024);
2543 printk(MPT2SAS_INFO_FMT "Current Controller Queue Depth(%d), "
2544 "Max Controller Queue Depth(%d)\n",
2545 ioc->name, ioc->shost->can_queue, facts->RequestCredit);
2546 printk(MPT2SAS_INFO_FMT "Scatter Gather Elements per IO(%d)\n",
2547 ioc->name, ioc->shost->sg_tablesize);
2548 return 0;
2549
2550 out:
2551 return -ENOMEM;
2552}
2553
2554
2555/**
2556 * mpt2sas_base_get_iocstate - Get the current state of a MPT adapter.
2557 * @ioc: Pointer to MPT_ADAPTER structure
2558 * @cooked: Request raw or cooked IOC state
2559 *
2560 * Returns all IOC Doorbell register bits if cooked==0, else just the
2561 * Doorbell bits in MPI_IOC_STATE_MASK.
2562 */
2563u32
2564mpt2sas_base_get_iocstate(struct MPT2SAS_ADAPTER *ioc, int cooked)
2565{
2566 u32 s, sc;
2567
2568 s = readl(&ioc->chip->Doorbell);
2569 sc = s & MPI2_IOC_STATE_MASK;
2570 return cooked ? sc : s;
2571}
2572
2573/**
2574 * _base_wait_on_iocstate - waiting on a particular ioc state
2575 * @ioc_state: controller state { READY, OPERATIONAL, or RESET }
2576 * @timeout: timeout in second
2577 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2578 *
2579 * Returns 0 for success, non-zero for failure.
2580 */
2581static int
2582_base_wait_on_iocstate(struct MPT2SAS_ADAPTER *ioc, u32 ioc_state, int timeout,
2583 int sleep_flag)
2584{
2585 u32 count, cntdn;
2586 u32 current_state;
2587
2588 count = 0;
2589 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2590 do {
2591 current_state = mpt2sas_base_get_iocstate(ioc, 1);
2592 if (current_state == ioc_state)
2593 return 0;
2594 if (count && current_state == MPI2_IOC_STATE_FAULT)
2595 break;
2596 if (sleep_flag == CAN_SLEEP)
2597 msleep(1);
2598 else
2599 udelay(500);
2600 count++;
2601 } while (--cntdn);
2602
2603 return current_state;
2604}
2605
2606/**
2607 * _base_wait_for_doorbell_int - waiting for controller interrupt(generated by
2608 * a write to the doorbell)
2609 * @ioc: per adapter object
2610 * @timeout: timeout in second
2611 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2612 *
2613 * Returns 0 for success, non-zero for failure.
2614 *
2615 * Notes: MPI2_HIS_IOC2SYS_DB_STATUS - set to one when IOC writes to doorbell.
2616 */
2617static int
2618_base_wait_for_doorbell_int(struct MPT2SAS_ADAPTER *ioc, int timeout,
2619 int sleep_flag)
2620{
2621 u32 cntdn, count;
2622 u32 int_status;
2623
2624 count = 0;
2625 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2626 do {
2627 int_status = readl(&ioc->chip->HostInterruptStatus);
2628 if (int_status & MPI2_HIS_IOC2SYS_DB_STATUS) {
2629 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
2630 "successful count(%d), timeout(%d)\n", ioc->name,
2631 __func__, count, timeout));
2632 return 0;
2633 }
2634 if (sleep_flag == CAN_SLEEP)
2635 msleep(1);
2636 else
2637 udelay(500);
2638 count++;
2639 } while (--cntdn);
2640
2641 printk(MPT2SAS_ERR_FMT "%s: failed due to timeout count(%d), "
2642 "int_status(%x)!\n", ioc->name, __func__, count, int_status);
2643 return -EFAULT;
2644}
2645
2646/**
2647 * _base_wait_for_doorbell_ack - waiting for controller to read the doorbell.
2648 * @ioc: per adapter object
2649 * @timeout: timeout in second
2650 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2651 *
2652 * Returns 0 for success, non-zero for failure.
2653 *
2654 * Notes: MPI2_HIS_SYS2IOC_DB_STATUS - set to one when host writes to
2655 * doorbell.
2656 */
2657static int
2658_base_wait_for_doorbell_ack(struct MPT2SAS_ADAPTER *ioc, int timeout,
2659 int sleep_flag)
2660{
2661 u32 cntdn, count;
2662 u32 int_status;
2663 u32 doorbell;
2664
2665 count = 0;
2666 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2667 do {
2668 int_status = readl(&ioc->chip->HostInterruptStatus);
2669 if (!(int_status & MPI2_HIS_SYS2IOC_DB_STATUS)) {
2670 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
2671 "successful count(%d), timeout(%d)\n", ioc->name,
2672 __func__, count, timeout));
2673 return 0;
2674 } else if (int_status & MPI2_HIS_IOC2SYS_DB_STATUS) {
2675 doorbell = readl(&ioc->chip->Doorbell);
2676 if ((doorbell & MPI2_IOC_STATE_MASK) ==
2677 MPI2_IOC_STATE_FAULT) {
2678 mpt2sas_base_fault_info(ioc , doorbell);
2679 return -EFAULT;
2680 }
2681 } else if (int_status == 0xFFFFFFFF)
2682 goto out;
2683
2684 if (sleep_flag == CAN_SLEEP)
2685 msleep(1);
2686 else
2687 udelay(500);
2688 count++;
2689 } while (--cntdn);
2690
2691 out:
2692 printk(MPT2SAS_ERR_FMT "%s: failed due to timeout count(%d), "
2693 "int_status(%x)!\n", ioc->name, __func__, count, int_status);
2694 return -EFAULT;
2695}
2696
2697/**
2698 * _base_wait_for_doorbell_not_used - waiting for doorbell to not be in use
2699 * @ioc: per adapter object
2700 * @timeout: timeout in second
2701 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2702 *
2703 * Returns 0 for success, non-zero for failure.
2704 *
2705 */
2706static int
2707_base_wait_for_doorbell_not_used(struct MPT2SAS_ADAPTER *ioc, int timeout,
2708 int sleep_flag)
2709{
2710 u32 cntdn, count;
2711 u32 doorbell_reg;
2712
2713 count = 0;
2714 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2715 do {
2716 doorbell_reg = readl(&ioc->chip->Doorbell);
2717 if (!(doorbell_reg & MPI2_DOORBELL_USED)) {
2718 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
2719 "successful count(%d), timeout(%d)\n", ioc->name,
2720 __func__, count, timeout));
2721 return 0;
2722 }
2723 if (sleep_flag == CAN_SLEEP)
2724 msleep(1);
2725 else
2726 udelay(500);
2727 count++;
2728 } while (--cntdn);
2729
2730 printk(MPT2SAS_ERR_FMT "%s: failed due to timeout count(%d), "
2731 "doorbell_reg(%x)!\n", ioc->name, __func__, count, doorbell_reg);
2732 return -EFAULT;
2733}
2734
2735/**
2736 * _base_send_ioc_reset - send doorbell reset
2737 * @ioc: per adapter object
2738 * @reset_type: currently only supports: MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET
2739 * @timeout: timeout in second
2740 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2741 *
2742 * Returns 0 for success, non-zero for failure.
2743 */
2744static int
2745_base_send_ioc_reset(struct MPT2SAS_ADAPTER *ioc, u8 reset_type, int timeout,
2746 int sleep_flag)
2747{
2748 u32 ioc_state;
2749 int r = 0;
2750
2751 if (reset_type != MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET) {
2752 printk(MPT2SAS_ERR_FMT "%s: unknown reset_type\n",
2753 ioc->name, __func__);
2754 return -EFAULT;
2755 }
2756
2757 if (!(ioc->facts.IOCCapabilities &
2758 MPI2_IOCFACTS_CAPABILITY_EVENT_REPLAY))
2759 return -EFAULT;
2760
2761 printk(MPT2SAS_INFO_FMT "sending message unit reset !!\n", ioc->name);
2762
2763 writel(reset_type << MPI2_DOORBELL_FUNCTION_SHIFT,
2764 &ioc->chip->Doorbell);
2765 if ((_base_wait_for_doorbell_ack(ioc, 15, sleep_flag))) {
2766 r = -EFAULT;
2767 goto out;
2768 }
2769 ioc_state = _base_wait_on_iocstate(ioc, MPI2_IOC_STATE_READY,
2770 timeout, sleep_flag);
2771 if (ioc_state) {
2772 printk(MPT2SAS_ERR_FMT "%s: failed going to ready state "
2773 " (ioc_state=0x%x)\n", ioc->name, __func__, ioc_state);
2774 r = -EFAULT;
2775 goto out;
2776 }
2777 out:
2778 printk(MPT2SAS_INFO_FMT "message unit reset: %s\n",
2779 ioc->name, ((r == 0) ? "SUCCESS" : "FAILED"));
2780 return r;
2781}
2782
2783/**
2784 * _base_handshake_req_reply_wait - send request thru doorbell interface
2785 * @ioc: per adapter object
2786 * @request_bytes: request length
2787 * @request: pointer having request payload
2788 * @reply_bytes: reply length
2789 * @reply: pointer to reply payload
2790 * @timeout: timeout in second
2791 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2792 *
2793 * Returns 0 for success, non-zero for failure.
2794 */
2795static int
2796_base_handshake_req_reply_wait(struct MPT2SAS_ADAPTER *ioc, int request_bytes,
2797 u32 *request, int reply_bytes, u16 *reply, int timeout, int sleep_flag)
2798{
2799 MPI2DefaultReply_t *default_reply = (MPI2DefaultReply_t *)reply;
2800 int i;
2801 u8 failed;
2802 u16 dummy;
2803 __le32 *mfp;
2804
2805 /* make sure doorbell is not in use */
2806 if ((readl(&ioc->chip->Doorbell) & MPI2_DOORBELL_USED)) {
2807 printk(MPT2SAS_ERR_FMT "doorbell is in use "
2808 " (line=%d)\n", ioc->name, __LINE__);
2809 return -EFAULT;
2810 }
2811
2812 /* clear pending doorbell interrupts from previous state changes */
2813 if (readl(&ioc->chip->HostInterruptStatus) &
2814 MPI2_HIS_IOC2SYS_DB_STATUS)
2815 writel(0, &ioc->chip->HostInterruptStatus);
2816
2817 /* send message to ioc */
2818 writel(((MPI2_FUNCTION_HANDSHAKE<<MPI2_DOORBELL_FUNCTION_SHIFT) |
2819 ((request_bytes/4)<<MPI2_DOORBELL_ADD_DWORDS_SHIFT)),
2820 &ioc->chip->Doorbell);
2821
2822 if ((_base_wait_for_doorbell_int(ioc, 5, NO_SLEEP))) {
2823 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2824 "int failed (line=%d)\n", ioc->name, __LINE__);
2825 return -EFAULT;
2826 }
2827 writel(0, &ioc->chip->HostInterruptStatus);
2828
2829 if ((_base_wait_for_doorbell_ack(ioc, 5, sleep_flag))) {
2830 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2831 "ack failed (line=%d)\n", ioc->name, __LINE__);
2832 return -EFAULT;
2833 }
2834
2835 /* send message 32-bits at a time */
2836 for (i = 0, failed = 0; i < request_bytes/4 && !failed; i++) {
2837 writel(cpu_to_le32(request[i]), &ioc->chip->Doorbell);
2838 if ((_base_wait_for_doorbell_ack(ioc, 5, sleep_flag)))
2839 failed = 1;
2840 }
2841
2842 if (failed) {
2843 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2844 "sending request failed (line=%d)\n", ioc->name, __LINE__);
2845 return -EFAULT;
2846 }
2847
2848 /* now wait for the reply */
2849 if ((_base_wait_for_doorbell_int(ioc, timeout, sleep_flag))) {
2850 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2851 "int failed (line=%d)\n", ioc->name, __LINE__);
2852 return -EFAULT;
2853 }
2854
2855 /* read the first two 16-bits, it gives the total length of the reply */
2856 reply[0] = le16_to_cpu(readl(&ioc->chip->Doorbell)
2857 & MPI2_DOORBELL_DATA_MASK);
2858 writel(0, &ioc->chip->HostInterruptStatus);
2859 if ((_base_wait_for_doorbell_int(ioc, 5, sleep_flag))) {
2860 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2861 "int failed (line=%d)\n", ioc->name, __LINE__);
2862 return -EFAULT;
2863 }
2864 reply[1] = le16_to_cpu(readl(&ioc->chip->Doorbell)
2865 & MPI2_DOORBELL_DATA_MASK);
2866 writel(0, &ioc->chip->HostInterruptStatus);
2867
2868 for (i = 2; i < default_reply->MsgLength * 2; i++) {
2869 if ((_base_wait_for_doorbell_int(ioc, 5, sleep_flag))) {
2870 printk(MPT2SAS_ERR_FMT "doorbell "
2871 "handshake int failed (line=%d)\n", ioc->name,
2872 __LINE__);
2873 return -EFAULT;
2874 }
2875 if (i >= reply_bytes/2) /* overflow case */
2876 dummy = readl(&ioc->chip->Doorbell);
2877 else
2878 reply[i] = le16_to_cpu(readl(&ioc->chip->Doorbell)
2879 & MPI2_DOORBELL_DATA_MASK);
2880 writel(0, &ioc->chip->HostInterruptStatus);
2881 }
2882
2883 _base_wait_for_doorbell_int(ioc, 5, sleep_flag);
2884 if (_base_wait_for_doorbell_not_used(ioc, 5, sleep_flag) != 0) {
2885 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "doorbell is in use "
2886 " (line=%d)\n", ioc->name, __LINE__));
2887 }
2888 writel(0, &ioc->chip->HostInterruptStatus);
2889
2890 if (ioc->logging_level & MPT_DEBUG_INIT) {
2891 mfp = (__le32 *)reply;
2892 printk(KERN_INFO "\toffset:data\n");
2893 for (i = 0; i < reply_bytes/4; i++)
2894 printk(KERN_INFO "\t[0x%02x]:%08x\n", i*4,
2895 le32_to_cpu(mfp[i]));
2896 }
2897 return 0;
2898}
2899
2900/**
2901 * mpt2sas_base_sas_iounit_control - send sas iounit control to FW
2902 * @ioc: per adapter object
2903 * @mpi_reply: the reply payload from FW
2904 * @mpi_request: the request payload sent to FW
2905 *
2906 * The SAS IO Unit Control Request message allows the host to perform low-level
2907 * operations, such as resets on the PHYs of the IO Unit, also allows the host
2908 * to obtain the IOC assigned device handles for a device if it has other
2909 * identifying information about the device, in addition allows the host to
2910 * remove IOC resources associated with the device.
2911 *
2912 * Returns 0 for success, non-zero for failure.
2913 */
2914int
2915mpt2sas_base_sas_iounit_control(struct MPT2SAS_ADAPTER *ioc,
2916 Mpi2SasIoUnitControlReply_t *mpi_reply,
2917 Mpi2SasIoUnitControlRequest_t *mpi_request)
2918{
2919 u16 smid;
2920 u32 ioc_state;
2921 unsigned long timeleft;
2922 u8 issue_reset;
2923 int rc;
2924 void *request;
2925 u16 wait_state_count;
2926
2927 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2928 __func__));
2929
2930 mutex_lock(&ioc->base_cmds.mutex);
2931
2932 if (ioc->base_cmds.status != MPT2_CMD_NOT_USED) {
2933 printk(MPT2SAS_ERR_FMT "%s: base_cmd in use\n",
2934 ioc->name, __func__);
2935 rc = -EAGAIN;
2936 goto out;
2937 }
2938
2939 wait_state_count = 0;
2940 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
2941 while (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
2942 if (wait_state_count++ == 10) {
2943 printk(MPT2SAS_ERR_FMT
2944 "%s: failed due to ioc not operational\n",
2945 ioc->name, __func__);
2946 rc = -EFAULT;
2947 goto out;
2948 }
2949 ssleep(1);
2950 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
2951 printk(MPT2SAS_INFO_FMT "%s: waiting for "
2952 "operational state(count=%d)\n", ioc->name,
2953 __func__, wait_state_count);
2954 }
2955
2956 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
2957 if (!smid) {
2958 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
2959 ioc->name, __func__);
2960 rc = -EAGAIN;
2961 goto out;
2962 }
2963
2964 rc = 0;
2965 ioc->base_cmds.status = MPT2_CMD_PENDING;
2966 request = mpt2sas_base_get_msg_frame(ioc, smid);
2967 ioc->base_cmds.smid = smid;
2968 memcpy(request, mpi_request, sizeof(Mpi2SasIoUnitControlRequest_t));
2969 if (mpi_request->Operation == MPI2_SAS_OP_PHY_HARD_RESET ||
2970 mpi_request->Operation == MPI2_SAS_OP_PHY_LINK_RESET)
2971 ioc->ioc_link_reset_in_progress = 1;
2972 mpt2sas_base_put_smid_default(ioc, smid);
2973 init_completion(&ioc->base_cmds.done);
2974 timeleft = wait_for_completion_timeout(&ioc->base_cmds.done,
2975 msecs_to_jiffies(10000));
2976 if ((mpi_request->Operation == MPI2_SAS_OP_PHY_HARD_RESET ||
2977 mpi_request->Operation == MPI2_SAS_OP_PHY_LINK_RESET) &&
2978 ioc->ioc_link_reset_in_progress)
2979 ioc->ioc_link_reset_in_progress = 0;
2980 if (!(ioc->base_cmds.status & MPT2_CMD_COMPLETE)) {
2981 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
2982 ioc->name, __func__);
2983 _debug_dump_mf(mpi_request,
2984 sizeof(Mpi2SasIoUnitControlRequest_t)/4);
2985 if (!(ioc->base_cmds.status & MPT2_CMD_RESET))
2986 issue_reset = 1;
2987 goto issue_host_reset;
2988 }
2989 if (ioc->base_cmds.status & MPT2_CMD_REPLY_VALID)
2990 memcpy(mpi_reply, ioc->base_cmds.reply,
2991 sizeof(Mpi2SasIoUnitControlReply_t));
2992 else
2993 memset(mpi_reply, 0, sizeof(Mpi2SasIoUnitControlReply_t));
2994 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
2995 goto out;
2996
2997 issue_host_reset:
2998 if (issue_reset)
2999 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
3000 FORCE_BIG_HAMMER);
3001 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3002 rc = -EFAULT;
3003 out:
3004 mutex_unlock(&ioc->base_cmds.mutex);
3005 return rc;
3006}
3007
3008
3009/**
3010 * mpt2sas_base_scsi_enclosure_processor - sending request to sep device
3011 * @ioc: per adapter object
3012 * @mpi_reply: the reply payload from FW
3013 * @mpi_request: the request payload sent to FW
3014 *
3015 * The SCSI Enclosure Processor request message causes the IOC to
3016 * communicate with SES devices to control LED status signals.
3017 *
3018 * Returns 0 for success, non-zero for failure.
3019 */
3020int
3021mpt2sas_base_scsi_enclosure_processor(struct MPT2SAS_ADAPTER *ioc,
3022 Mpi2SepReply_t *mpi_reply, Mpi2SepRequest_t *mpi_request)
3023{
3024 u16 smid;
3025 u32 ioc_state;
3026 unsigned long timeleft;
3027 u8 issue_reset;
3028 int rc;
3029 void *request;
3030 u16 wait_state_count;
3031
3032 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3033 __func__));
3034
3035 mutex_lock(&ioc->base_cmds.mutex);
3036
3037 if (ioc->base_cmds.status != MPT2_CMD_NOT_USED) {
3038 printk(MPT2SAS_ERR_FMT "%s: base_cmd in use\n",
3039 ioc->name, __func__);
3040 rc = -EAGAIN;
3041 goto out;
3042 }
3043
3044 wait_state_count = 0;
3045 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3046 while (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
3047 if (wait_state_count++ == 10) {
3048 printk(MPT2SAS_ERR_FMT
3049 "%s: failed due to ioc not operational\n",
3050 ioc->name, __func__);
3051 rc = -EFAULT;
3052 goto out;
3053 }
3054 ssleep(1);
3055 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3056 printk(MPT2SAS_INFO_FMT "%s: waiting for "
3057 "operational state(count=%d)\n", ioc->name,
3058 __func__, wait_state_count);
3059 }
3060
3061 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
3062 if (!smid) {
3063 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3064 ioc->name, __func__);
3065 rc = -EAGAIN;
3066 goto out;
3067 }
3068
3069 rc = 0;
3070 ioc->base_cmds.status = MPT2_CMD_PENDING;
3071 request = mpt2sas_base_get_msg_frame(ioc, smid);
3072 ioc->base_cmds.smid = smid;
3073 memcpy(request, mpi_request, sizeof(Mpi2SepReply_t));
3074 mpt2sas_base_put_smid_default(ioc, smid);
3075 init_completion(&ioc->base_cmds.done);
3076 timeleft = wait_for_completion_timeout(&ioc->base_cmds.done,
3077 msecs_to_jiffies(10000));
3078 if (!(ioc->base_cmds.status & MPT2_CMD_COMPLETE)) {
3079 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
3080 ioc->name, __func__);
3081 _debug_dump_mf(mpi_request,
3082 sizeof(Mpi2SepRequest_t)/4);
3083 if (!(ioc->base_cmds.status & MPT2_CMD_RESET))
3084 issue_reset = 1;
3085 goto issue_host_reset;
3086 }
3087 if (ioc->base_cmds.status & MPT2_CMD_REPLY_VALID)
3088 memcpy(mpi_reply, ioc->base_cmds.reply,
3089 sizeof(Mpi2SepReply_t));
3090 else
3091 memset(mpi_reply, 0, sizeof(Mpi2SepReply_t));
3092 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3093 goto out;
3094
3095 issue_host_reset:
3096 if (issue_reset)
3097 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
3098 FORCE_BIG_HAMMER);
3099 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3100 rc = -EFAULT;
3101 out:
3102 mutex_unlock(&ioc->base_cmds.mutex);
3103 return rc;
3104}
3105
3106/**
3107 * _base_get_port_facts - obtain port facts reply and save in ioc
3108 * @ioc: per adapter object
3109 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3110 *
3111 * Returns 0 for success, non-zero for failure.
3112 */
3113static int
3114_base_get_port_facts(struct MPT2SAS_ADAPTER *ioc, int port, int sleep_flag)
3115{
3116 Mpi2PortFactsRequest_t mpi_request;
3117 Mpi2PortFactsReply_t mpi_reply;
3118 struct mpt2sas_port_facts *pfacts;
3119 int mpi_reply_sz, mpi_request_sz, r;
3120
3121 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3122 __func__));
3123
3124 mpi_reply_sz = sizeof(Mpi2PortFactsReply_t);
3125 mpi_request_sz = sizeof(Mpi2PortFactsRequest_t);
3126 memset(&mpi_request, 0, mpi_request_sz);
3127 mpi_request.Function = MPI2_FUNCTION_PORT_FACTS;
3128 mpi_request.PortNumber = port;
3129 r = _base_handshake_req_reply_wait(ioc, mpi_request_sz,
3130 (u32 *)&mpi_request, mpi_reply_sz, (u16 *)&mpi_reply, 5, CAN_SLEEP);
3131
3132 if (r != 0) {
3133 printk(MPT2SAS_ERR_FMT "%s: handshake failed (r=%d)\n",
3134 ioc->name, __func__, r);
3135 return r;
3136 }
3137
3138 pfacts = &ioc->pfacts[port];
3139 memset(pfacts, 0, sizeof(Mpi2PortFactsReply_t));
3140 pfacts->PortNumber = mpi_reply.PortNumber;
3141 pfacts->VP_ID = mpi_reply.VP_ID;
3142 pfacts->VF_ID = mpi_reply.VF_ID;
3143 pfacts->MaxPostedCmdBuffers =
3144 le16_to_cpu(mpi_reply.MaxPostedCmdBuffers);
3145
3146 return 0;
3147}
3148
3149/**
3150 * _base_get_ioc_facts - obtain ioc facts reply and save in ioc
3151 * @ioc: per adapter object
3152 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3153 *
3154 * Returns 0 for success, non-zero for failure.
3155 */
3156static int
3157_base_get_ioc_facts(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3158{
3159 Mpi2IOCFactsRequest_t mpi_request;
3160 Mpi2IOCFactsReply_t mpi_reply;
3161 struct mpt2sas_facts *facts;
3162 int mpi_reply_sz, mpi_request_sz, r;
3163
3164 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3165 __func__));
3166
3167 mpi_reply_sz = sizeof(Mpi2IOCFactsReply_t);
3168 mpi_request_sz = sizeof(Mpi2IOCFactsRequest_t);
3169 memset(&mpi_request, 0, mpi_request_sz);
3170 mpi_request.Function = MPI2_FUNCTION_IOC_FACTS;
3171 r = _base_handshake_req_reply_wait(ioc, mpi_request_sz,
3172 (u32 *)&mpi_request, mpi_reply_sz, (u16 *)&mpi_reply, 5, CAN_SLEEP);
3173
3174 if (r != 0) {
3175 printk(MPT2SAS_ERR_FMT "%s: handshake failed (r=%d)\n",
3176 ioc->name, __func__, r);
3177 return r;
3178 }
3179
3180 facts = &ioc->facts;
3181 memset(facts, 0, sizeof(Mpi2IOCFactsReply_t));
3182 facts->MsgVersion = le16_to_cpu(mpi_reply.MsgVersion);
3183 facts->HeaderVersion = le16_to_cpu(mpi_reply.HeaderVersion);
3184 facts->VP_ID = mpi_reply.VP_ID;
3185 facts->VF_ID = mpi_reply.VF_ID;
3186 facts->IOCExceptions = le16_to_cpu(mpi_reply.IOCExceptions);
3187 facts->MaxChainDepth = mpi_reply.MaxChainDepth;
3188 facts->WhoInit = mpi_reply.WhoInit;
3189 facts->NumberOfPorts = mpi_reply.NumberOfPorts;
3190 facts->RequestCredit = le16_to_cpu(mpi_reply.RequestCredit);
3191 facts->MaxReplyDescriptorPostQueueDepth =
3192 le16_to_cpu(mpi_reply.MaxReplyDescriptorPostQueueDepth);
3193 facts->ProductID = le16_to_cpu(mpi_reply.ProductID);
3194 facts->IOCCapabilities = le32_to_cpu(mpi_reply.IOCCapabilities);
3195 if ((facts->IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_INTEGRATED_RAID))
3196 ioc->ir_firmware = 1;
3197 facts->FWVersion.Word = le32_to_cpu(mpi_reply.FWVersion.Word);
3198 facts->IOCRequestFrameSize =
3199 le16_to_cpu(mpi_reply.IOCRequestFrameSize);
3200 facts->MaxInitiators = le16_to_cpu(mpi_reply.MaxInitiators);
3201 facts->MaxTargets = le16_to_cpu(mpi_reply.MaxTargets);
3202 ioc->shost->max_id = -1;
3203 facts->MaxSasExpanders = le16_to_cpu(mpi_reply.MaxSasExpanders);
3204 facts->MaxEnclosures = le16_to_cpu(mpi_reply.MaxEnclosures);
3205 facts->ProtocolFlags = le16_to_cpu(mpi_reply.ProtocolFlags);
3206 facts->HighPriorityCredit =
3207 le16_to_cpu(mpi_reply.HighPriorityCredit);
3208 facts->ReplyFrameSize = mpi_reply.ReplyFrameSize;
3209 facts->MaxDevHandle = le16_to_cpu(mpi_reply.MaxDevHandle);
3210
3211 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "hba queue depth(%d), "
3212 "max chains per io(%d)\n", ioc->name, facts->RequestCredit,
3213 facts->MaxChainDepth));
3214 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "request frame size(%d), "
3215 "reply frame size(%d)\n", ioc->name,
3216 facts->IOCRequestFrameSize * 4, facts->ReplyFrameSize * 4));
3217 return 0;
3218}
3219
3220/**
3221 * _base_send_ioc_init - send ioc_init to firmware
3222 * @ioc: per adapter object
3223 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3224 *
3225 * Returns 0 for success, non-zero for failure.
3226 */
3227static int
3228_base_send_ioc_init(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3229{
3230 Mpi2IOCInitRequest_t mpi_request;
3231 Mpi2IOCInitReply_t mpi_reply;
3232 int r;
3233 struct timeval current_time;
3234 u16 ioc_status;
3235
3236 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3237 __func__));
3238
3239 memset(&mpi_request, 0, sizeof(Mpi2IOCInitRequest_t));
3240 mpi_request.Function = MPI2_FUNCTION_IOC_INIT;
3241 mpi_request.WhoInit = MPI2_WHOINIT_HOST_DRIVER;
3242 mpi_request.VF_ID = 0; /* TODO */
3243 mpi_request.VP_ID = 0;
3244 mpi_request.MsgVersion = cpu_to_le16(MPI2_VERSION);
3245 mpi_request.HeaderVersion = cpu_to_le16(MPI2_HEADER_VERSION);
3246
3247
3248 mpi_request.SystemRequestFrameSize = cpu_to_le16(ioc->request_sz/4);
3249 mpi_request.ReplyDescriptorPostQueueDepth =
3250 cpu_to_le16(ioc->reply_post_queue_depth);
3251 mpi_request.ReplyFreeQueueDepth =
3252 cpu_to_le16(ioc->reply_free_queue_depth);
3253
3254 mpi_request.SenseBufferAddressHigh =
3255 cpu_to_le32((u64)ioc->sense_dma >> 32);
3256 mpi_request.SystemReplyAddressHigh =
3257 cpu_to_le32((u64)ioc->reply_dma >> 32);
3258 mpi_request.SystemRequestFrameBaseAddress =
3259 cpu_to_le64((u64)ioc->request_dma);
3260 mpi_request.ReplyFreeQueueAddress =
3261 cpu_to_le64((u64)ioc->reply_free_dma);
3262 mpi_request.ReplyDescriptorPostQueueAddress =
3263 cpu_to_le64((u64)ioc->reply_post_free_dma);
3264
3265
3266 /* This time stamp specifies number of milliseconds
3267 * since epoch ~ midnight January 1, 1970.
3268 */
3269 do_gettimeofday(¤t_time);
3270 mpi_request.TimeStamp = cpu_to_le64((u64)current_time.tv_sec * 1000 +
3271 (current_time.tv_usec / 1000));
3272
3273 if (ioc->logging_level & MPT_DEBUG_INIT) {
3274 __le32 *mfp;
3275 int i;
3276
3277 mfp = (__le32 *)&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]));
3282 }
3283
3284 r = _base_handshake_req_reply_wait(ioc,
3285 sizeof(Mpi2IOCInitRequest_t), (u32 *)&mpi_request,
3286 sizeof(Mpi2IOCInitReply_t), (u16 *)&mpi_reply, 10,
3287 sleep_flag);
3288
3289 if (r != 0) {
3290 printk(MPT2SAS_ERR_FMT "%s: handshake failed (r=%d)\n",
3291 ioc->name, __func__, r);
3292 return r;
3293 }
3294
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__);
3299 r = -EIO;
3300 }
3301
3302 return 0;
3303}
3304
3305/**
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
3309 *
3310 * Returns 0 for success, non-zero for failure.
3311 */
3312static int
3313_base_send_port_enable(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3314{
3315 Mpi2PortEnableRequest_t *mpi_request;
3316 u32 ioc_state;
3317 unsigned long timeleft;
3318 int r = 0;
3319 u16 smid;
3320
3321 printk(MPT2SAS_INFO_FMT "sending port enable !!\n", ioc->name);
3322
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__);
3326 return -EAGAIN;
3327 }
3328
3329 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
3330 if (!smid) {
3331 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3332 ioc->name, __func__);
3333 return -EAGAIN;
3334 }
3335
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;
3343
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,
3347 300*HZ);
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)
3354 r = -EFAULT;
3355 else
3356 r = -ETIME;
3357 goto out;
3358 } else
3359 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: complete\n",
3360 ioc->name, __func__));
3361
3362 ioc_state = _base_wait_on_iocstate(ioc, MPI2_IOC_STATE_OPERATIONAL,
3363 60, sleep_flag);
3364 if (ioc_state) {
3365 printk(MPT2SAS_ERR_FMT "%s: failed going to operational state "
3366 " (ioc_state=0x%x)\n", ioc->name, __func__, ioc_state);
3367 r = -EFAULT;
3368 }
3369 out:
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"));
3373 return r;
3374}
3375
3376/**
3377 * _base_unmask_events - turn on notification for this event
3378 * @ioc: per adapter object
3379 * @event: firmware event
3380 *
3381 * The mask is stored in ioc->event_masks.
3382 */
3383static void
3384_base_unmask_events(struct MPT2SAS_ADAPTER *ioc, u16 event)
3385{
3386 u32 desired_event;
3387
3388 if (event >= 128)
3389 return;
3390
3391 desired_event = (1 << (event % 32));
3392
3393 if (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;
3401}
3402
3403/**
3404 * _base_event_notification - send event notification
3405 * @ioc: per adapter object
3406 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3407 *
3408 * Returns 0 for success, non-zero for failure.
3409 */
3410static int
3411_base_event_notification(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3412{
3413 Mpi2EventNotificationRequest_t *mpi_request;
3414 unsigned long timeleft;
3415 u16 smid;
3416 int r = 0;
3417 int i;
3418
3419 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3420 __func__));
3421
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__);
3425 return -EAGAIN;
3426 }
3427
3428 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
3429 if (!smid) {
3430 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3431 ioc->name, __func__);
3432 return -EAGAIN;
3433 }
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)
3453 r = -EFAULT;
3454 else
3455 r = -ETIME;
3456 } else
3457 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: complete\n",
3458 ioc->name, __func__));
3459 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3460 return r;
3461}
3462
3463/**
3464 * mpt2sas_base_validate_event_type - validating event types
3465 * @ioc: per adapter object
3466 * @event: firmware event
3467 *
3468 * This will turn on firmware event notification when application
3469 * ask for that event. We don't mask events that are already enabled.
3470 */
3471void
3472mpt2sas_base_validate_event_type(struct MPT2SAS_ADAPTER *ioc, u32 *event_type)
3473{
3474 int i, j;
3475 u32 event_mask, desired_event;
3476 u8 send_update_to_fw;
3477
3478 for (i = 0, send_update_to_fw = 0; i <
3479 MPI2_EVENT_NOTIFY_EVENTMASK_WORDS; i++) {
3480 event_mask = ~event_type[i];
3481 desired_event = 1;
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;
3487 }
3488 desired_event = (desired_event << 1);
3489 }
3490 }
3491
3492 if (!send_update_to_fw)
3493 return;
3494
3495 mutex_lock(&ioc->base_cmds.mutex);
3496 _base_event_notification(ioc, CAN_SLEEP);
3497 mutex_unlock(&ioc->base_cmds.mutex);
3498}
3499
3500/**
3501 * _base_diag_reset - the "big hammer" start of day reset
3502 * @ioc: per adapter object
3503 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3504 *
3505 * Returns 0 for success, non-zero for failure.
3506 */
3507static int
3508_base_diag_reset(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3509{
3510 u32 host_diagnostic;
3511 u32 ioc_state;
3512 u32 count;
3513 u32 hcb_size;
3514
3515 printk(MPT2SAS_INFO_FMT "sending diag reset !!\n", ioc->name);
3516
3517 _base_save_msix_table(ioc);
3518
3519 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "clear interrupts\n",
3520 ioc->name));
3521
3522 count = 0;
3523 do {
3524 /* Write magic sequence to WriteSequence register
3525 * Loop until in diagnostic mode
3526 */
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);
3536
3537 /* wait 100 msec */
3538 if (sleep_flag == CAN_SLEEP)
3539 msleep(100);
3540 else
3541 mdelay(100);
3542
3543 if (count++ > 20)
3544 goto out;
3545
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));
3550
3551 } while ((host_diagnostic & MPI2_DIAG_DIAG_WRITE_ENABLE) == 0);
3552
3553 hcb_size = readl(&ioc->chip->HCBSize);
3554
3555 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "diag reset: issued\n",
3556 ioc->name));
3557 writel(host_diagnostic | MPI2_DIAG_RESET_ADAPTER,
3558 &ioc->chip->HostDiagnostic);
3559
3560 /* don't access any registers for 50 milliseconds */
3561 msleep(50);
3562
3563 /* 300 second max wait */
3564 for (count = 0; count < 3000000 ; count++) {
3565
3566 host_diagnostic = readl(&ioc->chip->HostDiagnostic);
3567
3568 if (host_diagnostic == 0xFFFFFFFF)
3569 goto out;
3570 if (!(host_diagnostic & MPI2_DIAG_RESET_ADAPTER))
3571 break;
3572
3573 /* wait 100 msec */
3574 if (sleep_flag == CAN_SLEEP)
3575 msleep(1);
3576 else
3577 mdelay(1);
3578 }
3579
3580 if (host_diagnostic & MPI2_DIAG_HCB_MODE) {
3581
3582 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "restart the adapter "
3583 "assuming the HCB Address points to good F/W\n",
3584 ioc->name));
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);
3588
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);
3593 }
3594
3595 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "restart the adapter\n",
3596 ioc->name));
3597 writel(host_diagnostic & ~MPI2_DIAG_HOLD_IOC_RESET,
3598 &ioc->chip->HostDiagnostic);
3599
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);
3603
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,
3607 sleep_flag);
3608 if (ioc_state) {
3609 printk(MPT2SAS_ERR_FMT "%s: failed going to ready state "
3610 " (ioc_state=0x%x)\n", ioc->name, __func__, ioc_state);
3611 goto out;
3612 }
3613
3614 _base_restore_msix_table(ioc);
3615 printk(MPT2SAS_INFO_FMT "diag reset: SUCCESS\n", ioc->name);
3616 return 0;
3617
3618 out:
3619 printk(MPT2SAS_ERR_FMT "diag reset: FAILED\n", ioc->name);
3620 return -EFAULT;
3621}
3622
3623/**
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
3628 *
3629 * Returns 0 for success, non-zero for failure.
3630 */
3631static int
3632_base_make_ioc_ready(struct MPT2SAS_ADAPTER *ioc, int sleep_flag,
3633 enum reset_type type)
3634{
3635 u32 ioc_state;
3636 int rc;
3637
3638 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3639 __func__));
3640
3641 if (ioc->pci_error_recovery)
3642 return 0;
3643
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));
3647
3648 if ((ioc_state & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_READY)
3649 return 0;
3650
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;
3655 }
3656
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;
3661 }
3662
3663 if (type == FORCE_BIG_HAMMER)
3664 goto issue_diag_reset;
3665
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++;
3670 return 0;
3671 }
3672
3673 issue_diag_reset:
3674 rc = _base_diag_reset(ioc, CAN_SLEEP);
3675 ioc->ioc_reset_count++;
3676 return rc;
3677}
3678
3679/**
3680 * _base_make_ioc_operational - put controller in OPERATIONAL state
3681 * @ioc: per adapter object
3682 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3683 *
3684 * Returns 0 for success, non-zero for failure.
3685 */
3686static int
3687_base_make_ioc_operational(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3688{
3689 int r, i;
3690 unsigned long flags;
3691 u32 reply_address;
3692 u16 smid;
3693 struct _tr_list *delayed_tr, *delayed_tr_next;
3694 u8 hide_flag;
3695
3696 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3697 __func__));
3698
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);
3703 kfree(delayed_tr);
3704 }
3705
3706 list_for_each_entry_safe(delayed_tr, delayed_tr_next,
3707 &ioc->delayed_tr_volume_list, list) {
3708 list_del(&delayed_tr->list);
3709 kfree(delayed_tr);
3710 }
3711
3712 /* initialize the scsi lookup free list */
3713 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
3714 INIT_LIST_HEAD(&ioc->free_list);
3715 smid = 1;
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,
3723 &ioc->free_list);
3724 }
3725
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);
3734 }
3735
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);
3744 }
3745
3746 /* chain pool */
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);
3751
3752 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
3753
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 +=
3757 ioc->reply_sz)
3758 ioc->reply_free[i] = cpu_to_le32(reply_address);
3759
3760 /* initialize Reply Post Free Queue */
3761 for (i = 0; i < ioc->reply_post_queue_depth; i++)
3762 ioc->reply_post_free[i].Words = cpu_to_le64(ULLONG_MAX);
3763
3764 r = _base_send_ioc_init(ioc, sleep_flag);
3765 if (r)
3766 return r;
3767
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);
3773
3774 _base_unmask_interrupts(ioc);
3775 r = _base_event_notification(ioc, sleep_flag);
3776 if (r)
3777 return r;
3778
3779 if (sleep_flag == CAN_SLEEP)
3780 _base_static_config_pages(ioc);
3781
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;
3788 }
3789 }
3790
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)
3795 return r;
3796 }
3797
3798 r = _base_send_port_enable(ioc, sleep_flag);
3799 if (r)
3800 return r;
3801
3802 return r;
3803}
3804
3805/**
3806 * mpt2sas_base_free_resources - free resources controller resources (io/irq/memap)
3807 * @ioc: per adapter object
3808 *
3809 * Return nothing.
3810 */
3811void
3812mpt2sas_base_free_resources(struct MPT2SAS_ADAPTER *ioc)
3813{
3814 struct pci_dev *pdev = ioc->pdev;
3815
3816 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3817 __func__));
3818
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;
3823 if (ioc->pci_irq) {
3824 synchronize_irq(pdev->irq);
3825 free_irq(ioc->pci_irq, ioc);
3826 }
3827 _base_disable_msix(ioc);
3828 if (ioc->chip_phys)
3829 iounmap(ioc->chip);
3830 ioc->pci_irq = -1;
3831 ioc->chip_phys = 0;
3832 pci_release_selected_regions(ioc->pdev, ioc->bars);
3833 pci_disable_pcie_error_reporting(pdev);
3834 pci_disable_device(pdev);
3835 return;
3836}
3837
3838/**
3839 * mpt2sas_base_attach - attach controller instance
3840 * @ioc: per adapter object
3841 *
3842 * Returns 0 for success, non-zero for failure.
3843 */
3844int
3845mpt2sas_base_attach(struct MPT2SAS_ADAPTER *ioc)
3846{
3847 int r, i;
3848
3849 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3850 __func__));
3851
3852 r = mpt2sas_base_map_resources(ioc);
3853 if (r)
3854 return r;
3855
3856 pci_set_drvdata(ioc->pdev, ioc->shost);
3857 r = _base_get_ioc_facts(ioc, CAN_SLEEP);
3858 if (r)
3859 goto out_free_resources;
3860
3861 r = _base_make_ioc_ready(ioc, CAN_SLEEP, SOFT_RESET);
3862 if (r)
3863 goto out_free_resources;
3864
3865 ioc->pfacts = kcalloc(ioc->facts.NumberOfPorts,
3866 sizeof(Mpi2PortFactsReply_t), GFP_KERNEL);
3867 if (!ioc->pfacts) {
3868 r = -ENOMEM;
3869 goto out_free_resources;
3870 }
3871
3872 for (i = 0 ; i < ioc->facts.NumberOfPorts; i++) {
3873 r = _base_get_port_facts(ioc, i, CAN_SLEEP);
3874 if (r)
3875 goto out_free_resources;
3876 }
3877
3878 r = _base_allocate_memory_pools(ioc, CAN_SLEEP);
3879 if (r)
3880 goto out_free_resources;
3881
3882 init_waitqueue_head(&ioc->reset_wq);
3883
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,
3889 GFP_KERNEL);
3890 if (!ioc->pd_handles) {
3891 r = -ENOMEM;
3892 goto out_free_resources;
3893 }
3894
3895 ioc->fwfault_debug = mpt2sas_fwfault_debug;
3896
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;
3901
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);
3906
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);
3911
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);
3916
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);
3921
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);
3927
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) {
3932 r = -ENOMEM;
3933 goto out_free_resources;
3934 }
3935
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) {
3939 r = -ENOMEM;
3940 goto out_free_resources;
3941 }
3942
3943 init_completion(&ioc->shost_recovery_done);
3944
3945 for (i = 0; i < MPI2_EVENT_NOTIFY_EVENTMASK_WORDS; i++)
3946 ioc->event_masks[i] = -1;
3947
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);
3960 if (r)
3961 goto out_free_resources;
3962
3963 if (missing_delay[0] != -1 && missing_delay[1] != -1)
3964 _base_update_missing_delay(ioc, missing_delay[0],
3965 missing_delay[1]);
3966
3967 mpt2sas_base_start_watchdog(ioc);
3968 return 0;
3969
3970 out_free_resources:
3971
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);
3984 kfree(ioc->pfacts);
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;
3991 ioc->pfacts = NULL;
3992 return r;
3993}
3994
3995
3996/**
3997 * mpt2sas_base_detach - remove controller instance
3998 * @ioc: per adapter object
3999 *
4000 * Return nothing.
4001 */
4002void
4003mpt2sas_base_detach(struct MPT2SAS_ADAPTER *ioc)
4004{
4005
4006 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
4007 __func__));
4008
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);
4014 kfree(ioc->pfacts);
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);
4022}
4023
4024/**
4025 * _base_reset_handler - reset callback handler (for base)
4026 * @ioc: per adapter object
4027 * @reset_phase: phase
4028 *
4029 * The handler for doing any required cleanup or initialization.
4030 *
4031 * The reset phase can be MPT2_IOC_PRE_RESET, MPT2_IOC_AFTER_RESET,
4032 * MPT2_IOC_DONE_RESET
4033 *
4034 * Return nothing.
4035 */
4036static void
4037_base_reset_handler(struct MPT2SAS_ADAPTER *ioc, int reset_phase)
4038{
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__));
4045 break;
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);
4053 }
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);
4058 }
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);
4064 }
4065 break;
4066 case MPT2_IOC_DONE_RESET:
4067 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
4068 "MPT2_IOC_DONE_RESET\n", ioc->name, __func__));
4069 break;
4070 }
4071}
4072
4073/**
4074 * _wait_for_commands_to_complete - reset controller
4075 * @ioc: Pointer to MPT_ADAPTER structure
4076 * @sleep_flag: CAN_SLEEP or NO_SLEEP
4077 *
4078 * This function waiting(3s) for all pending commands to complete
4079 * prior to putting controller in reset.
4080 */
4081static void
4082_wait_for_commands_to_complete(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
4083{
4084 u32 ioc_state;
4085 unsigned long flags;
4086 u16 i;
4087
4088 ioc->pending_io_count = 0;
4089 if (sleep_flag != CAN_SLEEP)
4090 return;
4091
4092 ioc_state = mpt2sas_base_get_iocstate(ioc, 0);
4093 if ((ioc_state & MPI2_IOC_STATE_MASK) != MPI2_IOC_STATE_OPERATIONAL)
4094 return;
4095
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);
4102
4103 if (!ioc->pending_io_count)
4104 return;
4105
4106 /* wait for pending commands to complete */
4107 wait_event_timeout(ioc->reset_wq, ioc->pending_io_count == 0, 10 * HZ);
4108}
4109
4110/**
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
4115 *
4116 * Returns 0 for success, non-zero for failure.
4117 */
4118int
4119mpt2sas_base_hard_reset_handler(struct MPT2SAS_ADAPTER *ioc, int sleep_flag,
4120 enum reset_type type)
4121{
4122 int r;
4123 unsigned long flags;
4124 u8 pe_complete = ioc->wait_for_port_enable_to_complete;
4125
4126 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: enter\n", ioc->name,
4127 __func__));
4128
4129 if (ioc->pci_error_recovery) {
4130 printk(MPT2SAS_ERR_FMT "%s: pci error recovery reset\n",
4131 ioc->name, __func__);
4132 r = 0;
4133 goto out;
4134 }
4135
4136 if (mpt2sas_fwfault_debug)
4137 mpt2sas_halt_firmware(ioc);
4138
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.
4143 */
4144 BUG_ON(sleep_flag == NO_SLEEP);
4145
4146 /* wait for an active reset in progress to complete */
4147 if (!mutex_trylock(&ioc->reset_in_progress_mutex)) {
4148 do {
4149 ssleep(1);
4150 } while (ioc->shost_recovery == 1);
4151 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit\n", ioc->name,
4152 __func__));
4153 return ioc->ioc_reset_in_progress_status;
4154 }
4155
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);
4159
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);
4164 if (r)
4165 goto out;
4166 _base_reset_handler(ioc, MPT2_IOC_AFTER_RESET);
4167
4168 /* If this hard reset is called while port enable is active, then
4169 * there is no reason to call make_ioc_operational
4170 */
4171 if (pe_complete) {
4172 r = -EFAULT;
4173 goto out;
4174 }
4175 r = _base_make_ioc_operational(ioc, sleep_flag);
4176 if (!r)
4177 _base_reset_handler(ioc, MPT2_IOC_DONE_RESET);
4178 out:
4179 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: %s\n",
4180 ioc->name, __func__, ((r == 0) ? "SUCCESS" : "FAILED")));
4181
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);
4188
4189 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit\n", ioc->name,
4190 __func__));
4191 return r;
4192}
1/*
2 * This is the Fusion MPT base driver providing common API layer interface
3 * for access to MPT (Message Passing Technology) firmware.
4 *
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)
8 *
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.
13 *
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.
18 *
19 * NO WARRANTY
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.
29
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
38
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,
42 * USA.
43 */
44
45#include <linux/kernel.h>
46#include <linux/module.h>
47#include <linux/errno.h>
48#include <linux/init.h>
49#include <linux/slab.h>
50#include <linux/types.h>
51#include <linux/pci.h>
52#include <linux/kdev_t.h>
53#include <linux/blkdev.h>
54#include <linux/delay.h>
55#include <linux/interrupt.h>
56#include <linux/dma-mapping.h>
57#include <linux/sort.h>
58#include <linux/io.h>
59#include <linux/time.h>
60#include <linux/kthread.h>
61#include <linux/aer.h>
62
63#include "mpt2sas_base.h"
64
65static MPT_CALLBACK mpt_callbacks[MPT_MAX_CALLBACKS];
66
67#define FAULT_POLLING_INTERVAL 1000 /* in milliseconds */
68
69#define MAX_HBA_QUEUE_DEPTH 30000
70#define MAX_CHAIN_DEPTH 100000
71static int max_queue_depth = -1;
72module_param(max_queue_depth, int, 0);
73MODULE_PARM_DESC(max_queue_depth, " max controller queue depth ");
74
75static int max_sgl_entries = -1;
76module_param(max_sgl_entries, int, 0);
77MODULE_PARM_DESC(max_sgl_entries, " max sg entries ");
78
79static int msix_disable = -1;
80module_param(msix_disable, int, 0);
81MODULE_PARM_DESC(msix_disable, " disable msix routed interrupts (default=0)");
82
83static int missing_delay[2] = {-1, -1};
84module_param_array(missing_delay, int, NULL, 0);
85MODULE_PARM_DESC(missing_delay, " device missing delay , io missing delay");
86
87static int mpt2sas_fwfault_debug;
88MODULE_PARM_DESC(mpt2sas_fwfault_debug, " enable detection of firmware fault "
89 "and halt firmware - (default=0)");
90
91static int disable_discovery = -1;
92module_param(disable_discovery, int, 0);
93MODULE_PARM_DESC(disable_discovery, " disable discovery ");
94
95/**
96 * _scsih_set_fwfault_debug - global setting of ioc->fwfault_debug.
97 *
98 */
99static int
100_scsih_set_fwfault_debug(const char *val, struct kernel_param *kp)
101{
102 int ret = param_set_int(val, kp);
103 struct MPT2SAS_ADAPTER *ioc;
104
105 if (ret)
106 return ret;
107
108 printk(KERN_INFO "setting fwfault_debug(%d)\n", mpt2sas_fwfault_debug);
109 list_for_each_entry(ioc, &mpt2sas_ioc_list, list)
110 ioc->fwfault_debug = mpt2sas_fwfault_debug;
111 return 0;
112}
113
114module_param_call(mpt2sas_fwfault_debug, _scsih_set_fwfault_debug,
115 param_get_int, &mpt2sas_fwfault_debug, 0644);
116
117/**
118 * mpt2sas_remove_dead_ioc_func - kthread context to remove dead ioc
119 * @arg: input argument, used to derive ioc
120 *
121 * Return 0 if controller is removed from pci subsystem.
122 * Return -1 for other case.
123 */
124static int mpt2sas_remove_dead_ioc_func(void *arg)
125{
126 struct MPT2SAS_ADAPTER *ioc = (struct MPT2SAS_ADAPTER *)arg;
127 struct pci_dev *pdev;
128
129 if ((ioc == NULL))
130 return -1;
131
132 pdev = ioc->pdev;
133 if ((pdev == NULL))
134 return -1;
135 pci_stop_and_remove_bus_device(pdev);
136 return 0;
137}
138
139
140/**
141 * _base_fault_reset_work - workq handling ioc fault conditions
142 * @work: input argument, used to derive ioc
143 * Context: sleep.
144 *
145 * Return nothing.
146 */
147static void
148_base_fault_reset_work(struct work_struct *work)
149{
150 struct MPT2SAS_ADAPTER *ioc =
151 container_of(work, struct MPT2SAS_ADAPTER, fault_reset_work.work);
152 unsigned long flags;
153 u32 doorbell;
154 int rc;
155 struct task_struct *p;
156
157 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
158 if (ioc->shost_recovery)
159 goto rearm_timer;
160 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock, flags);
161
162 doorbell = mpt2sas_base_get_iocstate(ioc, 0);
163 if ((doorbell & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_MASK) {
164 printk(MPT2SAS_INFO_FMT "%s : SAS host is non-operational !!!!\n",
165 ioc->name, __func__);
166
167 /*
168 * Call _scsih_flush_pending_cmds callback so that we flush all
169 * pending commands back to OS. This call is required to aovid
170 * deadlock at block layer. Dead IOC will fail to do diag reset,
171 * and this call is safe since dead ioc will never return any
172 * command back from HW.
173 */
174 ioc->schedule_dead_ioc_flush_running_cmds(ioc);
175 /*
176 * Set remove_host flag early since kernel thread will
177 * take some time to execute.
178 */
179 ioc->remove_host = 1;
180 /*Remove the Dead Host */
181 p = kthread_run(mpt2sas_remove_dead_ioc_func, ioc,
182 "mpt2sas_dead_ioc_%d", ioc->id);
183 if (IS_ERR(p)) {
184 printk(MPT2SAS_ERR_FMT
185 "%s: Running mpt2sas_dead_ioc thread failed !!!!\n",
186 ioc->name, __func__);
187 } else {
188 printk(MPT2SAS_ERR_FMT
189 "%s: Running mpt2sas_dead_ioc thread success !!!!\n",
190 ioc->name, __func__);
191 }
192
193 return; /* don't rearm timer */
194 }
195
196 if ((doorbell & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) {
197 rc = mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
198 FORCE_BIG_HAMMER);
199 printk(MPT2SAS_WARN_FMT "%s: hard reset: %s\n", ioc->name,
200 __func__, (rc == 0) ? "success" : "failed");
201 doorbell = mpt2sas_base_get_iocstate(ioc, 0);
202 if ((doorbell & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT)
203 mpt2sas_base_fault_info(ioc, doorbell &
204 MPI2_DOORBELL_DATA_MASK);
205 }
206
207 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
208 rearm_timer:
209 if (ioc->fault_reset_work_q)
210 queue_delayed_work(ioc->fault_reset_work_q,
211 &ioc->fault_reset_work,
212 msecs_to_jiffies(FAULT_POLLING_INTERVAL));
213 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock, flags);
214}
215
216/**
217 * mpt2sas_base_start_watchdog - start the fault_reset_work_q
218 * @ioc: per adapter object
219 * Context: sleep.
220 *
221 * Return nothing.
222 */
223void
224mpt2sas_base_start_watchdog(struct MPT2SAS_ADAPTER *ioc)
225{
226 unsigned long flags;
227
228 if (ioc->fault_reset_work_q)
229 return;
230
231 /* initialize fault polling */
232 INIT_DELAYED_WORK(&ioc->fault_reset_work, _base_fault_reset_work);
233 snprintf(ioc->fault_reset_work_q_name,
234 sizeof(ioc->fault_reset_work_q_name), "poll_%d_status", ioc->id);
235 ioc->fault_reset_work_q =
236 create_singlethread_workqueue(ioc->fault_reset_work_q_name);
237 if (!ioc->fault_reset_work_q) {
238 printk(MPT2SAS_ERR_FMT "%s: failed (line=%d)\n",
239 ioc->name, __func__, __LINE__);
240 return;
241 }
242 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
243 if (ioc->fault_reset_work_q)
244 queue_delayed_work(ioc->fault_reset_work_q,
245 &ioc->fault_reset_work,
246 msecs_to_jiffies(FAULT_POLLING_INTERVAL));
247 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock, flags);
248}
249
250/**
251 * mpt2sas_base_stop_watchdog - stop the fault_reset_work_q
252 * @ioc: per adapter object
253 * Context: sleep.
254 *
255 * Return nothing.
256 */
257void
258mpt2sas_base_stop_watchdog(struct MPT2SAS_ADAPTER *ioc)
259{
260 unsigned long flags;
261 struct workqueue_struct *wq;
262
263 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
264 wq = ioc->fault_reset_work_q;
265 ioc->fault_reset_work_q = NULL;
266 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock, flags);
267 if (wq) {
268 if (!cancel_delayed_work(&ioc->fault_reset_work))
269 flush_workqueue(wq);
270 destroy_workqueue(wq);
271 }
272}
273
274/**
275 * mpt2sas_base_fault_info - verbose translation of firmware FAULT code
276 * @ioc: per adapter object
277 * @fault_code: fault code
278 *
279 * Return nothing.
280 */
281void
282mpt2sas_base_fault_info(struct MPT2SAS_ADAPTER *ioc , u16 fault_code)
283{
284 printk(MPT2SAS_ERR_FMT "fault_state(0x%04x)!\n",
285 ioc->name, fault_code);
286}
287
288/**
289 * mpt2sas_halt_firmware - halt's mpt controller firmware
290 * @ioc: per adapter object
291 *
292 * For debugging timeout related issues. Writing 0xCOFFEE00
293 * to the doorbell register will halt controller firmware. With
294 * the purpose to stop both driver and firmware, the enduser can
295 * obtain a ring buffer from controller UART.
296 */
297void
298mpt2sas_halt_firmware(struct MPT2SAS_ADAPTER *ioc)
299{
300 u32 doorbell;
301
302 if (!ioc->fwfault_debug)
303 return;
304
305 dump_stack();
306
307 doorbell = readl(&ioc->chip->Doorbell);
308 if ((doorbell & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT)
309 mpt2sas_base_fault_info(ioc , doorbell);
310 else {
311 writel(0xC0FFEE00, &ioc->chip->Doorbell);
312 printk(MPT2SAS_ERR_FMT "Firmware is halted due to command "
313 "timeout\n", ioc->name);
314 }
315
316 panic("panic in %s\n", __func__);
317}
318
319#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
320/**
321 * _base_sas_ioc_info - verbose translation of the ioc status
322 * @ioc: per adapter object
323 * @mpi_reply: reply mf payload returned from firmware
324 * @request_hdr: request mf
325 *
326 * Return nothing.
327 */
328static void
329_base_sas_ioc_info(struct MPT2SAS_ADAPTER *ioc, MPI2DefaultReply_t *mpi_reply,
330 MPI2RequestHeader_t *request_hdr)
331{
332 u16 ioc_status = le16_to_cpu(mpi_reply->IOCStatus) &
333 MPI2_IOCSTATUS_MASK;
334 char *desc = NULL;
335 u16 frame_sz;
336 char *func_str = NULL;
337
338 /* SCSI_IO, RAID_PASS are handled from _scsih_scsi_ioc_info */
339 if (request_hdr->Function == MPI2_FUNCTION_SCSI_IO_REQUEST ||
340 request_hdr->Function == MPI2_FUNCTION_RAID_SCSI_IO_PASSTHROUGH ||
341 request_hdr->Function == MPI2_FUNCTION_EVENT_NOTIFICATION)
342 return;
343
344 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
345 return;
346
347 switch (ioc_status) {
348
349/****************************************************************************
350* Common IOCStatus values for all replies
351****************************************************************************/
352
353 case MPI2_IOCSTATUS_INVALID_FUNCTION:
354 desc = "invalid function";
355 break;
356 case MPI2_IOCSTATUS_BUSY:
357 desc = "busy";
358 break;
359 case MPI2_IOCSTATUS_INVALID_SGL:
360 desc = "invalid sgl";
361 break;
362 case MPI2_IOCSTATUS_INTERNAL_ERROR:
363 desc = "internal error";
364 break;
365 case MPI2_IOCSTATUS_INVALID_VPID:
366 desc = "invalid vpid";
367 break;
368 case MPI2_IOCSTATUS_INSUFFICIENT_RESOURCES:
369 desc = "insufficient resources";
370 break;
371 case MPI2_IOCSTATUS_INVALID_FIELD:
372 desc = "invalid field";
373 break;
374 case MPI2_IOCSTATUS_INVALID_STATE:
375 desc = "invalid state";
376 break;
377 case MPI2_IOCSTATUS_OP_STATE_NOT_SUPPORTED:
378 desc = "op state not supported";
379 break;
380
381/****************************************************************************
382* Config IOCStatus values
383****************************************************************************/
384
385 case MPI2_IOCSTATUS_CONFIG_INVALID_ACTION:
386 desc = "config invalid action";
387 break;
388 case MPI2_IOCSTATUS_CONFIG_INVALID_TYPE:
389 desc = "config invalid type";
390 break;
391 case MPI2_IOCSTATUS_CONFIG_INVALID_PAGE:
392 desc = "config invalid page";
393 break;
394 case MPI2_IOCSTATUS_CONFIG_INVALID_DATA:
395 desc = "config invalid data";
396 break;
397 case MPI2_IOCSTATUS_CONFIG_NO_DEFAULTS:
398 desc = "config no defaults";
399 break;
400 case MPI2_IOCSTATUS_CONFIG_CANT_COMMIT:
401 desc = "config cant commit";
402 break;
403
404/****************************************************************************
405* SCSI IO Reply
406****************************************************************************/
407
408 case MPI2_IOCSTATUS_SCSI_RECOVERED_ERROR:
409 case MPI2_IOCSTATUS_SCSI_INVALID_DEVHANDLE:
410 case MPI2_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
411 case MPI2_IOCSTATUS_SCSI_DATA_OVERRUN:
412 case MPI2_IOCSTATUS_SCSI_DATA_UNDERRUN:
413 case MPI2_IOCSTATUS_SCSI_IO_DATA_ERROR:
414 case MPI2_IOCSTATUS_SCSI_PROTOCOL_ERROR:
415 case MPI2_IOCSTATUS_SCSI_TASK_TERMINATED:
416 case MPI2_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
417 case MPI2_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
418 case MPI2_IOCSTATUS_SCSI_IOC_TERMINATED:
419 case MPI2_IOCSTATUS_SCSI_EXT_TERMINATED:
420 break;
421
422/****************************************************************************
423* For use by SCSI Initiator and SCSI Target end-to-end data protection
424****************************************************************************/
425
426 case MPI2_IOCSTATUS_EEDP_GUARD_ERROR:
427 desc = "eedp guard error";
428 break;
429 case MPI2_IOCSTATUS_EEDP_REF_TAG_ERROR:
430 desc = "eedp ref tag error";
431 break;
432 case MPI2_IOCSTATUS_EEDP_APP_TAG_ERROR:
433 desc = "eedp app tag error";
434 break;
435
436/****************************************************************************
437* SCSI Target values
438****************************************************************************/
439
440 case MPI2_IOCSTATUS_TARGET_INVALID_IO_INDEX:
441 desc = "target invalid io index";
442 break;
443 case MPI2_IOCSTATUS_TARGET_ABORTED:
444 desc = "target aborted";
445 break;
446 case MPI2_IOCSTATUS_TARGET_NO_CONN_RETRYABLE:
447 desc = "target no conn retryable";
448 break;
449 case MPI2_IOCSTATUS_TARGET_NO_CONNECTION:
450 desc = "target no connection";
451 break;
452 case MPI2_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH:
453 desc = "target xfer count mismatch";
454 break;
455 case MPI2_IOCSTATUS_TARGET_DATA_OFFSET_ERROR:
456 desc = "target data offset error";
457 break;
458 case MPI2_IOCSTATUS_TARGET_TOO_MUCH_WRITE_DATA:
459 desc = "target too much write data";
460 break;
461 case MPI2_IOCSTATUS_TARGET_IU_TOO_SHORT:
462 desc = "target iu too short";
463 break;
464 case MPI2_IOCSTATUS_TARGET_ACK_NAK_TIMEOUT:
465 desc = "target ack nak timeout";
466 break;
467 case MPI2_IOCSTATUS_TARGET_NAK_RECEIVED:
468 desc = "target nak received";
469 break;
470
471/****************************************************************************
472* Serial Attached SCSI values
473****************************************************************************/
474
475 case MPI2_IOCSTATUS_SAS_SMP_REQUEST_FAILED:
476 desc = "smp request failed";
477 break;
478 case MPI2_IOCSTATUS_SAS_SMP_DATA_OVERRUN:
479 desc = "smp data overrun";
480 break;
481
482/****************************************************************************
483* Diagnostic Buffer Post / Diagnostic Release values
484****************************************************************************/
485
486 case MPI2_IOCSTATUS_DIAGNOSTIC_RELEASED:
487 desc = "diagnostic released";
488 break;
489 default:
490 break;
491 }
492
493 if (!desc)
494 return;
495
496 switch (request_hdr->Function) {
497 case MPI2_FUNCTION_CONFIG:
498 frame_sz = sizeof(Mpi2ConfigRequest_t) + ioc->sge_size;
499 func_str = "config_page";
500 break;
501 case MPI2_FUNCTION_SCSI_TASK_MGMT:
502 frame_sz = sizeof(Mpi2SCSITaskManagementRequest_t);
503 func_str = "task_mgmt";
504 break;
505 case MPI2_FUNCTION_SAS_IO_UNIT_CONTROL:
506 frame_sz = sizeof(Mpi2SasIoUnitControlRequest_t);
507 func_str = "sas_iounit_ctl";
508 break;
509 case MPI2_FUNCTION_SCSI_ENCLOSURE_PROCESSOR:
510 frame_sz = sizeof(Mpi2SepRequest_t);
511 func_str = "enclosure";
512 break;
513 case MPI2_FUNCTION_IOC_INIT:
514 frame_sz = sizeof(Mpi2IOCInitRequest_t);
515 func_str = "ioc_init";
516 break;
517 case MPI2_FUNCTION_PORT_ENABLE:
518 frame_sz = sizeof(Mpi2PortEnableRequest_t);
519 func_str = "port_enable";
520 break;
521 case MPI2_FUNCTION_SMP_PASSTHROUGH:
522 frame_sz = sizeof(Mpi2SmpPassthroughRequest_t) + ioc->sge_size;
523 func_str = "smp_passthru";
524 break;
525 default:
526 frame_sz = 32;
527 func_str = "unknown";
528 break;
529 }
530
531 printk(MPT2SAS_WARN_FMT "ioc_status: %s(0x%04x), request(0x%p),"
532 " (%s)\n", ioc->name, desc, ioc_status, request_hdr, func_str);
533
534 _debug_dump_mf(request_hdr, frame_sz/4);
535}
536
537/**
538 * _base_display_event_data - verbose translation of firmware asyn events
539 * @ioc: per adapter object
540 * @mpi_reply: reply mf payload returned from firmware
541 *
542 * Return nothing.
543 */
544static void
545_base_display_event_data(struct MPT2SAS_ADAPTER *ioc,
546 Mpi2EventNotificationReply_t *mpi_reply)
547{
548 char *desc = NULL;
549 u16 event;
550
551 if (!(ioc->logging_level & MPT_DEBUG_EVENTS))
552 return;
553
554 event = le16_to_cpu(mpi_reply->Event);
555
556 switch (event) {
557 case MPI2_EVENT_LOG_DATA:
558 desc = "Log Data";
559 break;
560 case MPI2_EVENT_STATE_CHANGE:
561 desc = "Status Change";
562 break;
563 case MPI2_EVENT_HARD_RESET_RECEIVED:
564 desc = "Hard Reset Received";
565 break;
566 case MPI2_EVENT_EVENT_CHANGE:
567 desc = "Event Change";
568 break;
569 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
570 desc = "Device Status Change";
571 break;
572 case MPI2_EVENT_IR_OPERATION_STATUS:
573 if (!ioc->hide_ir_msg)
574 desc = "IR Operation Status";
575 break;
576 case MPI2_EVENT_SAS_DISCOVERY:
577 {
578 Mpi2EventDataSasDiscovery_t *event_data =
579 (Mpi2EventDataSasDiscovery_t *)mpi_reply->EventData;
580 printk(MPT2SAS_INFO_FMT "Discovery: (%s)", ioc->name,
581 (event_data->ReasonCode == MPI2_EVENT_SAS_DISC_RC_STARTED) ?
582 "start" : "stop");
583 if (event_data->DiscoveryStatus)
584 printk("discovery_status(0x%08x)",
585 le32_to_cpu(event_data->DiscoveryStatus));
586 printk("\n");
587 return;
588 }
589 case MPI2_EVENT_SAS_BROADCAST_PRIMITIVE:
590 desc = "SAS Broadcast Primitive";
591 break;
592 case MPI2_EVENT_SAS_INIT_DEVICE_STATUS_CHANGE:
593 desc = "SAS Init Device Status Change";
594 break;
595 case MPI2_EVENT_SAS_INIT_TABLE_OVERFLOW:
596 desc = "SAS Init Table Overflow";
597 break;
598 case MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST:
599 desc = "SAS Topology Change List";
600 break;
601 case MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE:
602 desc = "SAS Enclosure Device Status Change";
603 break;
604 case MPI2_EVENT_IR_VOLUME:
605 if (!ioc->hide_ir_msg)
606 desc = "IR Volume";
607 break;
608 case MPI2_EVENT_IR_PHYSICAL_DISK:
609 if (!ioc->hide_ir_msg)
610 desc = "IR Physical Disk";
611 break;
612 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
613 if (!ioc->hide_ir_msg)
614 desc = "IR Configuration Change List";
615 break;
616 case MPI2_EVENT_LOG_ENTRY_ADDED:
617 if (!ioc->hide_ir_msg)
618 desc = "Log Entry Added";
619 break;
620 }
621
622 if (!desc)
623 return;
624
625 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name, desc);
626}
627#endif
628
629/**
630 * _base_sas_log_info - verbose translation of firmware log info
631 * @ioc: per adapter object
632 * @log_info: log info
633 *
634 * Return nothing.
635 */
636static void
637_base_sas_log_info(struct MPT2SAS_ADAPTER *ioc , u32 log_info)
638{
639 union loginfo_type {
640 u32 loginfo;
641 struct {
642 u32 subcode:16;
643 u32 code:8;
644 u32 originator:4;
645 u32 bus_type:4;
646 } dw;
647 };
648 union loginfo_type sas_loginfo;
649 char *originator_str = NULL;
650
651 sas_loginfo.loginfo = log_info;
652 if (sas_loginfo.dw.bus_type != 3 /*SAS*/)
653 return;
654
655 /* each nexus loss loginfo */
656 if (log_info == 0x31170000)
657 return;
658
659 /* eat the loginfos associated with task aborts */
660 if (ioc->ignore_loginfos && (log_info == 0x30050000 || log_info ==
661 0x31140000 || log_info == 0x31130000))
662 return;
663
664 switch (sas_loginfo.dw.originator) {
665 case 0:
666 originator_str = "IOP";
667 break;
668 case 1:
669 originator_str = "PL";
670 break;
671 case 2:
672 if (!ioc->hide_ir_msg)
673 originator_str = "IR";
674 else
675 originator_str = "WarpDrive";
676 break;
677 }
678
679 printk(MPT2SAS_WARN_FMT "log_info(0x%08x): originator(%s), "
680 "code(0x%02x), sub_code(0x%04x)\n", ioc->name, log_info,
681 originator_str, sas_loginfo.dw.code,
682 sas_loginfo.dw.subcode);
683}
684
685/**
686 * _base_display_reply_info -
687 * @ioc: per adapter object
688 * @smid: system request message index
689 * @msix_index: MSIX table index supplied by the OS
690 * @reply: reply message frame(lower 32bit addr)
691 *
692 * Return nothing.
693 */
694static void
695_base_display_reply_info(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
696 u32 reply)
697{
698 MPI2DefaultReply_t *mpi_reply;
699 u16 ioc_status;
700
701 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
702 if (unlikely(!mpi_reply)) {
703 printk(MPT2SAS_ERR_FMT "mpi_reply not valid at %s:%d/%s()!\n",
704 ioc->name, __FILE__, __LINE__, __func__);
705 return;
706 }
707 ioc_status = le16_to_cpu(mpi_reply->IOCStatus);
708#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
709 if ((ioc_status & MPI2_IOCSTATUS_MASK) &&
710 (ioc->logging_level & MPT_DEBUG_REPLY)) {
711 _base_sas_ioc_info(ioc , mpi_reply,
712 mpt2sas_base_get_msg_frame(ioc, smid));
713 }
714#endif
715 if (ioc_status & MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE)
716 _base_sas_log_info(ioc, le32_to_cpu(mpi_reply->IOCLogInfo));
717}
718
719/**
720 * mpt2sas_base_done - base internal command completion routine
721 * @ioc: per adapter object
722 * @smid: system request message index
723 * @msix_index: MSIX table index supplied by the OS
724 * @reply: reply message frame(lower 32bit addr)
725 *
726 * Return 1 meaning mf should be freed from _base_interrupt
727 * 0 means the mf is freed from this function.
728 */
729u8
730mpt2sas_base_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
731 u32 reply)
732{
733 MPI2DefaultReply_t *mpi_reply;
734
735 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
736 if (mpi_reply && mpi_reply->Function == MPI2_FUNCTION_EVENT_ACK)
737 return 1;
738
739 if (ioc->base_cmds.status == MPT2_CMD_NOT_USED)
740 return 1;
741
742 ioc->base_cmds.status |= MPT2_CMD_COMPLETE;
743 if (mpi_reply) {
744 ioc->base_cmds.status |= MPT2_CMD_REPLY_VALID;
745 memcpy(ioc->base_cmds.reply, mpi_reply, mpi_reply->MsgLength*4);
746 }
747 ioc->base_cmds.status &= ~MPT2_CMD_PENDING;
748
749 complete(&ioc->base_cmds.done);
750 return 1;
751}
752
753/**
754 * _base_async_event - main callback handler for firmware asyn events
755 * @ioc: per adapter object
756 * @msix_index: MSIX table index supplied by the OS
757 * @reply: reply message frame(lower 32bit addr)
758 *
759 * Return 1 meaning mf should be freed from _base_interrupt
760 * 0 means the mf is freed from this function.
761 */
762static u8
763_base_async_event(struct MPT2SAS_ADAPTER *ioc, u8 msix_index, u32 reply)
764{
765 Mpi2EventNotificationReply_t *mpi_reply;
766 Mpi2EventAckRequest_t *ack_request;
767 u16 smid;
768
769 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
770 if (!mpi_reply)
771 return 1;
772 if (mpi_reply->Function != MPI2_FUNCTION_EVENT_NOTIFICATION)
773 return 1;
774#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
775 _base_display_event_data(ioc, mpi_reply);
776#endif
777 if (!(mpi_reply->AckRequired & MPI2_EVENT_NOTIFICATION_ACK_REQUIRED))
778 goto out;
779 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
780 if (!smid) {
781 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
782 ioc->name, __func__);
783 goto out;
784 }
785
786 ack_request = mpt2sas_base_get_msg_frame(ioc, smid);
787 memset(ack_request, 0, sizeof(Mpi2EventAckRequest_t));
788 ack_request->Function = MPI2_FUNCTION_EVENT_ACK;
789 ack_request->Event = mpi_reply->Event;
790 ack_request->EventContext = mpi_reply->EventContext;
791 ack_request->VF_ID = 0; /* TODO */
792 ack_request->VP_ID = 0;
793 mpt2sas_base_put_smid_default(ioc, smid);
794
795 out:
796
797 /* scsih callback handler */
798 mpt2sas_scsih_event_callback(ioc, msix_index, reply);
799
800 /* ctl callback handler */
801 mpt2sas_ctl_event_callback(ioc, msix_index, reply);
802
803 return 1;
804}
805
806/**
807 * _base_get_cb_idx - obtain the callback index
808 * @ioc: per adapter object
809 * @smid: system request message index
810 *
811 * Return callback index.
812 */
813static u8
814_base_get_cb_idx(struct MPT2SAS_ADAPTER *ioc, u16 smid)
815{
816 int i;
817 u8 cb_idx;
818
819 if (smid < ioc->hi_priority_smid) {
820 i = smid - 1;
821 cb_idx = ioc->scsi_lookup[i].cb_idx;
822 } else if (smid < ioc->internal_smid) {
823 i = smid - ioc->hi_priority_smid;
824 cb_idx = ioc->hpr_lookup[i].cb_idx;
825 } else if (smid <= ioc->hba_queue_depth) {
826 i = smid - ioc->internal_smid;
827 cb_idx = ioc->internal_lookup[i].cb_idx;
828 } else
829 cb_idx = 0xFF;
830 return cb_idx;
831}
832
833/**
834 * _base_mask_interrupts - disable interrupts
835 * @ioc: per adapter object
836 *
837 * Disabling ResetIRQ, Reply and Doorbell Interrupts
838 *
839 * Return nothing.
840 */
841static void
842_base_mask_interrupts(struct MPT2SAS_ADAPTER *ioc)
843{
844 u32 him_register;
845
846 ioc->mask_interrupts = 1;
847 him_register = readl(&ioc->chip->HostInterruptMask);
848 him_register |= MPI2_HIM_DIM + MPI2_HIM_RIM + MPI2_HIM_RESET_IRQ_MASK;
849 writel(him_register, &ioc->chip->HostInterruptMask);
850 readl(&ioc->chip->HostInterruptMask);
851}
852
853/**
854 * _base_unmask_interrupts - enable interrupts
855 * @ioc: per adapter object
856 *
857 * Enabling only Reply Interrupts
858 *
859 * Return nothing.
860 */
861static void
862_base_unmask_interrupts(struct MPT2SAS_ADAPTER *ioc)
863{
864 u32 him_register;
865
866 him_register = readl(&ioc->chip->HostInterruptMask);
867 him_register &= ~MPI2_HIM_RIM;
868 writel(him_register, &ioc->chip->HostInterruptMask);
869 ioc->mask_interrupts = 0;
870}
871
872union reply_descriptor {
873 u64 word;
874 struct {
875 u32 low;
876 u32 high;
877 } u;
878};
879
880/**
881 * _base_interrupt - MPT adapter (IOC) specific interrupt handler.
882 * @irq: irq number (not used)
883 * @bus_id: bus identifier cookie == pointer to MPT_ADAPTER structure
884 * @r: pt_regs pointer (not used)
885 *
886 * Return IRQ_HANDLE if processed, else IRQ_NONE.
887 */
888static irqreturn_t
889_base_interrupt(int irq, void *bus_id)
890{
891 struct adapter_reply_queue *reply_q = bus_id;
892 union reply_descriptor rd;
893 u32 completed_cmds;
894 u8 request_desript_type;
895 u16 smid;
896 u8 cb_idx;
897 u32 reply;
898 u8 msix_index = reply_q->msix_index;
899 struct MPT2SAS_ADAPTER *ioc = reply_q->ioc;
900 Mpi2ReplyDescriptorsUnion_t *rpf;
901 u8 rc;
902
903 if (ioc->mask_interrupts)
904 return IRQ_NONE;
905
906 if (!atomic_add_unless(&reply_q->busy, 1, 1))
907 return IRQ_NONE;
908
909 rpf = &reply_q->reply_post_free[reply_q->reply_post_host_index];
910 request_desript_type = rpf->Default.ReplyFlags
911 & MPI2_RPY_DESCRIPT_FLAGS_TYPE_MASK;
912 if (request_desript_type == MPI2_RPY_DESCRIPT_FLAGS_UNUSED) {
913 atomic_dec(&reply_q->busy);
914 return IRQ_NONE;
915 }
916
917 completed_cmds = 0;
918 cb_idx = 0xFF;
919 do {
920 rd.word = le64_to_cpu(rpf->Words);
921 if (rd.u.low == UINT_MAX || rd.u.high == UINT_MAX)
922 goto out;
923 reply = 0;
924 smid = le16_to_cpu(rpf->Default.DescriptorTypeDependent1);
925 if (request_desript_type ==
926 MPI2_RPY_DESCRIPT_FLAGS_ADDRESS_REPLY) {
927 reply = le32_to_cpu
928 (rpf->AddressReply.ReplyFrameAddress);
929 if (reply > ioc->reply_dma_max_address ||
930 reply < ioc->reply_dma_min_address)
931 reply = 0;
932 } else if (request_desript_type ==
933 MPI2_RPY_DESCRIPT_FLAGS_TARGET_COMMAND_BUFFER)
934 goto next;
935 else if (request_desript_type ==
936 MPI2_RPY_DESCRIPT_FLAGS_TARGETASSIST_SUCCESS)
937 goto next;
938 if (smid) {
939 cb_idx = _base_get_cb_idx(ioc, smid);
940 if ((likely(cb_idx < MPT_MAX_CALLBACKS))
941 && (likely(mpt_callbacks[cb_idx] != NULL))) {
942 rc = mpt_callbacks[cb_idx](ioc, smid,
943 msix_index, reply);
944 if (reply)
945 _base_display_reply_info(ioc, smid,
946 msix_index, reply);
947 if (rc)
948 mpt2sas_base_free_smid(ioc, smid);
949 }
950 }
951 if (!smid)
952 _base_async_event(ioc, msix_index, reply);
953
954 /* reply free queue handling */
955 if (reply) {
956 ioc->reply_free_host_index =
957 (ioc->reply_free_host_index ==
958 (ioc->reply_free_queue_depth - 1)) ?
959 0 : ioc->reply_free_host_index + 1;
960 ioc->reply_free[ioc->reply_free_host_index] =
961 cpu_to_le32(reply);
962 wmb();
963 writel(ioc->reply_free_host_index,
964 &ioc->chip->ReplyFreeHostIndex);
965 }
966
967 next:
968
969 rpf->Words = cpu_to_le64(ULLONG_MAX);
970 reply_q->reply_post_host_index =
971 (reply_q->reply_post_host_index ==
972 (ioc->reply_post_queue_depth - 1)) ? 0 :
973 reply_q->reply_post_host_index + 1;
974 request_desript_type =
975 reply_q->reply_post_free[reply_q->reply_post_host_index].
976 Default.ReplyFlags & MPI2_RPY_DESCRIPT_FLAGS_TYPE_MASK;
977 completed_cmds++;
978 if (request_desript_type == MPI2_RPY_DESCRIPT_FLAGS_UNUSED)
979 goto out;
980 if (!reply_q->reply_post_host_index)
981 rpf = reply_q->reply_post_free;
982 else
983 rpf++;
984 } while (1);
985
986 out:
987
988 if (!completed_cmds) {
989 atomic_dec(&reply_q->busy);
990 return IRQ_NONE;
991 }
992 wmb();
993 if (ioc->is_warpdrive) {
994 writel(reply_q->reply_post_host_index,
995 ioc->reply_post_host_index[msix_index]);
996 atomic_dec(&reply_q->busy);
997 return IRQ_HANDLED;
998 }
999 writel(reply_q->reply_post_host_index | (msix_index <<
1000 MPI2_RPHI_MSIX_INDEX_SHIFT), &ioc->chip->ReplyPostHostIndex);
1001 atomic_dec(&reply_q->busy);
1002 return IRQ_HANDLED;
1003}
1004
1005/**
1006 * _base_is_controller_msix_enabled - is controller support muli-reply queues
1007 * @ioc: per adapter object
1008 *
1009 */
1010static inline int
1011_base_is_controller_msix_enabled(struct MPT2SAS_ADAPTER *ioc)
1012{
1013 return (ioc->facts.IOCCapabilities &
1014 MPI2_IOCFACTS_CAPABILITY_MSI_X_INDEX) && ioc->msix_enable;
1015}
1016
1017/**
1018 * mpt2sas_base_flush_reply_queues - flushing the MSIX reply queues
1019 * @ioc: per adapter object
1020 * Context: ISR conext
1021 *
1022 * Called when a Task Management request has completed. We want
1023 * to flush the other reply queues so all the outstanding IO has been
1024 * completed back to OS before we process the TM completetion.
1025 *
1026 * Return nothing.
1027 */
1028void
1029mpt2sas_base_flush_reply_queues(struct MPT2SAS_ADAPTER *ioc)
1030{
1031 struct adapter_reply_queue *reply_q;
1032
1033 /* If MSIX capability is turned off
1034 * then multi-queues are not enabled
1035 */
1036 if (!_base_is_controller_msix_enabled(ioc))
1037 return;
1038
1039 list_for_each_entry(reply_q, &ioc->reply_queue_list, list) {
1040 if (ioc->shost_recovery)
1041 return;
1042 /* TMs are on msix_index == 0 */
1043 if (reply_q->msix_index == 0)
1044 continue;
1045 _base_interrupt(reply_q->vector, (void *)reply_q);
1046 }
1047}
1048
1049/**
1050 * mpt2sas_base_release_callback_handler - clear interrupt callback handler
1051 * @cb_idx: callback index
1052 *
1053 * Return nothing.
1054 */
1055void
1056mpt2sas_base_release_callback_handler(u8 cb_idx)
1057{
1058 mpt_callbacks[cb_idx] = NULL;
1059}
1060
1061/**
1062 * mpt2sas_base_register_callback_handler - obtain index for the interrupt callback handler
1063 * @cb_func: callback function
1064 *
1065 * Returns cb_func.
1066 */
1067u8
1068mpt2sas_base_register_callback_handler(MPT_CALLBACK cb_func)
1069{
1070 u8 cb_idx;
1071
1072 for (cb_idx = MPT_MAX_CALLBACKS-1; cb_idx; cb_idx--)
1073 if (mpt_callbacks[cb_idx] == NULL)
1074 break;
1075
1076 mpt_callbacks[cb_idx] = cb_func;
1077 return cb_idx;
1078}
1079
1080/**
1081 * mpt2sas_base_initialize_callback_handler - initialize the interrupt callback handler
1082 *
1083 * Return nothing.
1084 */
1085void
1086mpt2sas_base_initialize_callback_handler(void)
1087{
1088 u8 cb_idx;
1089
1090 for (cb_idx = 0; cb_idx < MPT_MAX_CALLBACKS; cb_idx++)
1091 mpt2sas_base_release_callback_handler(cb_idx);
1092}
1093
1094/**
1095 * mpt2sas_base_build_zero_len_sge - build zero length sg entry
1096 * @ioc: per adapter object
1097 * @paddr: virtual address for SGE
1098 *
1099 * Create a zero length scatter gather entry to insure the IOCs hardware has
1100 * something to use if the target device goes brain dead and tries
1101 * to send data even when none is asked for.
1102 *
1103 * Return nothing.
1104 */
1105void
1106mpt2sas_base_build_zero_len_sge(struct MPT2SAS_ADAPTER *ioc, void *paddr)
1107{
1108 u32 flags_length = (u32)((MPI2_SGE_FLAGS_LAST_ELEMENT |
1109 MPI2_SGE_FLAGS_END_OF_BUFFER | MPI2_SGE_FLAGS_END_OF_LIST |
1110 MPI2_SGE_FLAGS_SIMPLE_ELEMENT) <<
1111 MPI2_SGE_FLAGS_SHIFT);
1112 ioc->base_add_sg_single(paddr, flags_length, -1);
1113}
1114
1115/**
1116 * _base_add_sg_single_32 - Place a simple 32 bit SGE at address pAddr.
1117 * @paddr: virtual address for SGE
1118 * @flags_length: SGE flags and data transfer length
1119 * @dma_addr: Physical address
1120 *
1121 * Return nothing.
1122 */
1123static void
1124_base_add_sg_single_32(void *paddr, u32 flags_length, dma_addr_t dma_addr)
1125{
1126 Mpi2SGESimple32_t *sgel = paddr;
1127
1128 flags_length |= (MPI2_SGE_FLAGS_32_BIT_ADDRESSING |
1129 MPI2_SGE_FLAGS_SYSTEM_ADDRESS) << MPI2_SGE_FLAGS_SHIFT;
1130 sgel->FlagsLength = cpu_to_le32(flags_length);
1131 sgel->Address = cpu_to_le32(dma_addr);
1132}
1133
1134
1135/**
1136 * _base_add_sg_single_64 - Place a simple 64 bit SGE at address pAddr.
1137 * @paddr: virtual address for SGE
1138 * @flags_length: SGE flags and data transfer length
1139 * @dma_addr: Physical address
1140 *
1141 * Return nothing.
1142 */
1143static void
1144_base_add_sg_single_64(void *paddr, u32 flags_length, dma_addr_t dma_addr)
1145{
1146 Mpi2SGESimple64_t *sgel = paddr;
1147
1148 flags_length |= (MPI2_SGE_FLAGS_64_BIT_ADDRESSING |
1149 MPI2_SGE_FLAGS_SYSTEM_ADDRESS) << MPI2_SGE_FLAGS_SHIFT;
1150 sgel->FlagsLength = cpu_to_le32(flags_length);
1151 sgel->Address = cpu_to_le64(dma_addr);
1152}
1153
1154#define convert_to_kb(x) ((x) << (PAGE_SHIFT - 10))
1155
1156/**
1157 * _base_config_dma_addressing - set dma addressing
1158 * @ioc: per adapter object
1159 * @pdev: PCI device struct
1160 *
1161 * Returns 0 for success, non-zero for failure.
1162 */
1163static int
1164_base_config_dma_addressing(struct MPT2SAS_ADAPTER *ioc, struct pci_dev *pdev)
1165{
1166 struct sysinfo s;
1167 char *desc = NULL;
1168
1169 if (sizeof(dma_addr_t) > 4) {
1170 const uint64_t required_mask =
1171 dma_get_required_mask(&pdev->dev);
1172 if ((required_mask > DMA_BIT_MASK(32)) && !pci_set_dma_mask(pdev,
1173 DMA_BIT_MASK(64)) && !pci_set_consistent_dma_mask(pdev,
1174 DMA_BIT_MASK(64))) {
1175 ioc->base_add_sg_single = &_base_add_sg_single_64;
1176 ioc->sge_size = sizeof(Mpi2SGESimple64_t);
1177 desc = "64";
1178 goto out;
1179 }
1180 }
1181
1182 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))
1183 && !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) {
1184 ioc->base_add_sg_single = &_base_add_sg_single_32;
1185 ioc->sge_size = sizeof(Mpi2SGESimple32_t);
1186 desc = "32";
1187 } else
1188 return -ENODEV;
1189
1190 out:
1191 si_meminfo(&s);
1192 printk(MPT2SAS_INFO_FMT "%s BIT PCI BUS DMA ADDRESSING SUPPORTED, "
1193 "total mem (%ld kB)\n", ioc->name, desc, convert_to_kb(s.totalram));
1194
1195 return 0;
1196}
1197
1198/**
1199 * _base_check_enable_msix - checks MSIX capabable.
1200 * @ioc: per adapter object
1201 *
1202 * Check to see if card is capable of MSIX, and set number
1203 * of available msix vectors
1204 */
1205static int
1206_base_check_enable_msix(struct MPT2SAS_ADAPTER *ioc)
1207{
1208 int base;
1209 u16 message_control;
1210
1211
1212 /* Check whether controller SAS2008 B0 controller,
1213 if it is SAS2008 B0 controller use IO-APIC instead of MSIX */
1214 if (ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2008 &&
1215 ioc->pdev->revision == 0x01) {
1216 return -EINVAL;
1217 }
1218
1219 base = pci_find_capability(ioc->pdev, PCI_CAP_ID_MSIX);
1220 if (!base) {
1221 dfailprintk(ioc, printk(MPT2SAS_INFO_FMT "msix not "
1222 "supported\n", ioc->name));
1223 return -EINVAL;
1224 }
1225
1226 /* get msix vector count */
1227 /* NUMA_IO not supported for older controllers */
1228 if (ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2004 ||
1229 ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2008 ||
1230 ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2108_1 ||
1231 ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2108_2 ||
1232 ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2108_3 ||
1233 ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2116_1 ||
1234 ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2116_2)
1235 ioc->msix_vector_count = 1;
1236 else {
1237 pci_read_config_word(ioc->pdev, base + 2, &message_control);
1238 ioc->msix_vector_count = (message_control & 0x3FF) + 1;
1239 }
1240 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "msix is supported, "
1241 "vector_count(%d)\n", ioc->name, ioc->msix_vector_count));
1242
1243 return 0;
1244}
1245
1246/**
1247 * _base_free_irq - free irq
1248 * @ioc: per adapter object
1249 *
1250 * Freeing respective reply_queue from the list.
1251 */
1252static void
1253_base_free_irq(struct MPT2SAS_ADAPTER *ioc)
1254{
1255 struct adapter_reply_queue *reply_q, *next;
1256
1257 if (list_empty(&ioc->reply_queue_list))
1258 return;
1259
1260 list_for_each_entry_safe(reply_q, next, &ioc->reply_queue_list, list) {
1261 list_del(&reply_q->list);
1262 synchronize_irq(reply_q->vector);
1263 free_irq(reply_q->vector, reply_q);
1264 kfree(reply_q);
1265 }
1266}
1267
1268/**
1269 * _base_request_irq - request irq
1270 * @ioc: per adapter object
1271 * @index: msix index into vector table
1272 * @vector: irq vector
1273 *
1274 * Inserting respective reply_queue into the list.
1275 */
1276static int
1277_base_request_irq(struct MPT2SAS_ADAPTER *ioc, u8 index, u32 vector)
1278{
1279 struct adapter_reply_queue *reply_q;
1280 int r;
1281
1282 reply_q = kzalloc(sizeof(struct adapter_reply_queue), GFP_KERNEL);
1283 if (!reply_q) {
1284 printk(MPT2SAS_ERR_FMT "unable to allocate memory %d!\n",
1285 ioc->name, (int)sizeof(struct adapter_reply_queue));
1286 return -ENOMEM;
1287 }
1288 reply_q->ioc = ioc;
1289 reply_q->msix_index = index;
1290 reply_q->vector = vector;
1291 atomic_set(&reply_q->busy, 0);
1292 if (ioc->msix_enable)
1293 snprintf(reply_q->name, MPT_NAME_LENGTH, "%s%d-msix%d",
1294 MPT2SAS_DRIVER_NAME, ioc->id, index);
1295 else
1296 snprintf(reply_q->name, MPT_NAME_LENGTH, "%s%d",
1297 MPT2SAS_DRIVER_NAME, ioc->id);
1298 r = request_irq(vector, _base_interrupt, IRQF_SHARED, reply_q->name,
1299 reply_q);
1300 if (r) {
1301 printk(MPT2SAS_ERR_FMT "unable to allocate interrupt %d!\n",
1302 reply_q->name, vector);
1303 kfree(reply_q);
1304 return -EBUSY;
1305 }
1306
1307 INIT_LIST_HEAD(&reply_q->list);
1308 list_add_tail(&reply_q->list, &ioc->reply_queue_list);
1309 return 0;
1310}
1311
1312/**
1313 * _base_assign_reply_queues - assigning msix index for each cpu
1314 * @ioc: per adapter object
1315 *
1316 * The enduser would need to set the affinity via /proc/irq/#/smp_affinity
1317 *
1318 * It would nice if we could call irq_set_affinity, however it is not
1319 * an exported symbol
1320 */
1321static void
1322_base_assign_reply_queues(struct MPT2SAS_ADAPTER *ioc)
1323{
1324 struct adapter_reply_queue *reply_q;
1325 int cpu_id;
1326 int cpu_grouping, loop, grouping, grouping_mod;
1327
1328 if (!_base_is_controller_msix_enabled(ioc))
1329 return;
1330
1331 memset(ioc->cpu_msix_table, 0, ioc->cpu_msix_table_sz);
1332 /* when there are more cpus than available msix vectors,
1333 * then group cpus togeather on same irq
1334 */
1335 if (ioc->cpu_count > ioc->msix_vector_count) {
1336 grouping = ioc->cpu_count / ioc->msix_vector_count;
1337 grouping_mod = ioc->cpu_count % ioc->msix_vector_count;
1338 if (grouping < 2 || (grouping == 2 && !grouping_mod))
1339 cpu_grouping = 2;
1340 else if (grouping < 4 || (grouping == 4 && !grouping_mod))
1341 cpu_grouping = 4;
1342 else if (grouping < 8 || (grouping == 8 && !grouping_mod))
1343 cpu_grouping = 8;
1344 else
1345 cpu_grouping = 16;
1346 } else
1347 cpu_grouping = 0;
1348
1349 loop = 0;
1350 reply_q = list_entry(ioc->reply_queue_list.next,
1351 struct adapter_reply_queue, list);
1352 for_each_online_cpu(cpu_id) {
1353 if (!cpu_grouping) {
1354 ioc->cpu_msix_table[cpu_id] = reply_q->msix_index;
1355 reply_q = list_entry(reply_q->list.next,
1356 struct adapter_reply_queue, list);
1357 } else {
1358 if (loop < cpu_grouping) {
1359 ioc->cpu_msix_table[cpu_id] =
1360 reply_q->msix_index;
1361 loop++;
1362 } else {
1363 reply_q = list_entry(reply_q->list.next,
1364 struct adapter_reply_queue, list);
1365 ioc->cpu_msix_table[cpu_id] =
1366 reply_q->msix_index;
1367 loop = 1;
1368 }
1369 }
1370 }
1371}
1372
1373/**
1374 * _base_disable_msix - disables msix
1375 * @ioc: per adapter object
1376 *
1377 */
1378static void
1379_base_disable_msix(struct MPT2SAS_ADAPTER *ioc)
1380{
1381 if (ioc->msix_enable) {
1382 pci_disable_msix(ioc->pdev);
1383 ioc->msix_enable = 0;
1384 }
1385}
1386
1387/**
1388 * _base_enable_msix - enables msix, failback to io_apic
1389 * @ioc: per adapter object
1390 *
1391 */
1392static int
1393_base_enable_msix(struct MPT2SAS_ADAPTER *ioc)
1394{
1395 struct msix_entry *entries, *a;
1396 int r;
1397 int i;
1398 u8 try_msix = 0;
1399
1400 INIT_LIST_HEAD(&ioc->reply_queue_list);
1401
1402 if (msix_disable == -1 || msix_disable == 0)
1403 try_msix = 1;
1404
1405 if (!try_msix)
1406 goto try_ioapic;
1407
1408 if (_base_check_enable_msix(ioc) != 0)
1409 goto try_ioapic;
1410
1411 ioc->reply_queue_count = min_t(int, ioc->cpu_count,
1412 ioc->msix_vector_count);
1413
1414 entries = kcalloc(ioc->reply_queue_count, sizeof(struct msix_entry),
1415 GFP_KERNEL);
1416 if (!entries) {
1417 dfailprintk(ioc, printk(MPT2SAS_INFO_FMT "kcalloc "
1418 "failed @ at %s:%d/%s() !!!\n", ioc->name, __FILE__,
1419 __LINE__, __func__));
1420 goto try_ioapic;
1421 }
1422
1423 for (i = 0, a = entries; i < ioc->reply_queue_count; i++, a++)
1424 a->entry = i;
1425
1426 r = pci_enable_msix(ioc->pdev, entries, ioc->reply_queue_count);
1427 if (r) {
1428 dfailprintk(ioc, printk(MPT2SAS_INFO_FMT "pci_enable_msix "
1429 "failed (r=%d) !!!\n", ioc->name, r));
1430 kfree(entries);
1431 goto try_ioapic;
1432 }
1433
1434 ioc->msix_enable = 1;
1435 for (i = 0, a = entries; i < ioc->reply_queue_count; i++, a++) {
1436 r = _base_request_irq(ioc, i, a->vector);
1437 if (r) {
1438 _base_free_irq(ioc);
1439 _base_disable_msix(ioc);
1440 kfree(entries);
1441 goto try_ioapic;
1442 }
1443 }
1444
1445 kfree(entries);
1446 return 0;
1447
1448/* failback to io_apic interrupt routing */
1449 try_ioapic:
1450
1451 r = _base_request_irq(ioc, 0, ioc->pdev->irq);
1452
1453 return r;
1454}
1455
1456/**
1457 * mpt2sas_base_map_resources - map in controller resources (io/irq/memap)
1458 * @ioc: per adapter object
1459 *
1460 * Returns 0 for success, non-zero for failure.
1461 */
1462int
1463mpt2sas_base_map_resources(struct MPT2SAS_ADAPTER *ioc)
1464{
1465 struct pci_dev *pdev = ioc->pdev;
1466 u32 memap_sz;
1467 u32 pio_sz;
1468 int i, r = 0;
1469 u64 pio_chip = 0;
1470 u64 chip_phys = 0;
1471 struct adapter_reply_queue *reply_q;
1472
1473 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n",
1474 ioc->name, __func__));
1475
1476 ioc->bars = pci_select_bars(pdev, IORESOURCE_MEM);
1477 if (pci_enable_device_mem(pdev)) {
1478 printk(MPT2SAS_WARN_FMT "pci_enable_device_mem: "
1479 "failed\n", ioc->name);
1480 return -ENODEV;
1481 }
1482
1483
1484 if (pci_request_selected_regions(pdev, ioc->bars,
1485 MPT2SAS_DRIVER_NAME)) {
1486 printk(MPT2SAS_WARN_FMT "pci_request_selected_regions: "
1487 "failed\n", ioc->name);
1488 r = -ENODEV;
1489 goto out_fail;
1490 }
1491
1492 /* AER (Advanced Error Reporting) hooks */
1493 pci_enable_pcie_error_reporting(pdev);
1494
1495 pci_set_master(pdev);
1496
1497 if (_base_config_dma_addressing(ioc, pdev) != 0) {
1498 printk(MPT2SAS_WARN_FMT "no suitable DMA mask for %s\n",
1499 ioc->name, pci_name(pdev));
1500 r = -ENODEV;
1501 goto out_fail;
1502 }
1503
1504 for (i = 0, memap_sz = 0, pio_sz = 0 ; i < DEVICE_COUNT_RESOURCE; i++) {
1505 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
1506 if (pio_sz)
1507 continue;
1508 pio_chip = (u64)pci_resource_start(pdev, i);
1509 pio_sz = pci_resource_len(pdev, i);
1510 } else {
1511 if (memap_sz)
1512 continue;
1513 /* verify memory resource is valid before using */
1514 if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
1515 ioc->chip_phys = pci_resource_start(pdev, i);
1516 chip_phys = (u64)ioc->chip_phys;
1517 memap_sz = pci_resource_len(pdev, i);
1518 ioc->chip = ioremap(ioc->chip_phys, memap_sz);
1519 if (ioc->chip == NULL) {
1520 printk(MPT2SAS_ERR_FMT "unable to map "
1521 "adapter memory!\n", ioc->name);
1522 r = -EINVAL;
1523 goto out_fail;
1524 }
1525 }
1526 }
1527 }
1528
1529 _base_mask_interrupts(ioc);
1530 r = _base_enable_msix(ioc);
1531 if (r)
1532 goto out_fail;
1533
1534 list_for_each_entry(reply_q, &ioc->reply_queue_list, list)
1535 printk(MPT2SAS_INFO_FMT "%s: IRQ %d\n",
1536 reply_q->name, ((ioc->msix_enable) ? "PCI-MSI-X enabled" :
1537 "IO-APIC enabled"), reply_q->vector);
1538
1539 printk(MPT2SAS_INFO_FMT "iomem(0x%016llx), mapped(0x%p), size(%d)\n",
1540 ioc->name, (unsigned long long)chip_phys, ioc->chip, memap_sz);
1541 printk(MPT2SAS_INFO_FMT "ioport(0x%016llx), size(%d)\n",
1542 ioc->name, (unsigned long long)pio_chip, pio_sz);
1543
1544 /* Save PCI configuration state for recovery from PCI AER/EEH errors */
1545 pci_save_state(pdev);
1546
1547 return 0;
1548
1549 out_fail:
1550 if (ioc->chip_phys)
1551 iounmap(ioc->chip);
1552 ioc->chip_phys = 0;
1553 pci_release_selected_regions(ioc->pdev, ioc->bars);
1554 pci_disable_pcie_error_reporting(pdev);
1555 pci_disable_device(pdev);
1556 return r;
1557}
1558
1559/**
1560 * mpt2sas_base_get_msg_frame - obtain request mf pointer
1561 * @ioc: per adapter object
1562 * @smid: system request message index(smid zero is invalid)
1563 *
1564 * Returns virt pointer to message frame.
1565 */
1566void *
1567mpt2sas_base_get_msg_frame(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1568{
1569 return (void *)(ioc->request + (smid * ioc->request_sz));
1570}
1571
1572/**
1573 * mpt2sas_base_get_sense_buffer - obtain a sense buffer assigned to a mf request
1574 * @ioc: per adapter object
1575 * @smid: system request message index
1576 *
1577 * Returns virt pointer to sense buffer.
1578 */
1579void *
1580mpt2sas_base_get_sense_buffer(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1581{
1582 return (void *)(ioc->sense + ((smid - 1) * SCSI_SENSE_BUFFERSIZE));
1583}
1584
1585/**
1586 * mpt2sas_base_get_sense_buffer_dma - obtain a sense buffer assigned to a mf request
1587 * @ioc: per adapter object
1588 * @smid: system request message index
1589 *
1590 * Returns phys pointer to the low 32bit address of the sense buffer.
1591 */
1592__le32
1593mpt2sas_base_get_sense_buffer_dma(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1594{
1595 return cpu_to_le32(ioc->sense_dma +
1596 ((smid - 1) * SCSI_SENSE_BUFFERSIZE));
1597}
1598
1599/**
1600 * mpt2sas_base_get_reply_virt_addr - obtain reply frames virt address
1601 * @ioc: per adapter object
1602 * @phys_addr: lower 32 physical addr of the reply
1603 *
1604 * Converts 32bit lower physical addr into a virt address.
1605 */
1606void *
1607mpt2sas_base_get_reply_virt_addr(struct MPT2SAS_ADAPTER *ioc, u32 phys_addr)
1608{
1609 if (!phys_addr)
1610 return NULL;
1611 return ioc->reply + (phys_addr - (u32)ioc->reply_dma);
1612}
1613
1614/**
1615 * mpt2sas_base_get_smid - obtain a free smid from internal queue
1616 * @ioc: per adapter object
1617 * @cb_idx: callback index
1618 *
1619 * Returns smid (zero is invalid)
1620 */
1621u16
1622mpt2sas_base_get_smid(struct MPT2SAS_ADAPTER *ioc, u8 cb_idx)
1623{
1624 unsigned long flags;
1625 struct request_tracker *request;
1626 u16 smid;
1627
1628 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1629 if (list_empty(&ioc->internal_free_list)) {
1630 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1631 printk(MPT2SAS_ERR_FMT "%s: smid not available\n",
1632 ioc->name, __func__);
1633 return 0;
1634 }
1635
1636 request = list_entry(ioc->internal_free_list.next,
1637 struct request_tracker, tracker_list);
1638 request->cb_idx = cb_idx;
1639 smid = request->smid;
1640 list_del(&request->tracker_list);
1641 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1642 return smid;
1643}
1644
1645/**
1646 * mpt2sas_base_get_smid_scsiio - obtain a free smid from scsiio queue
1647 * @ioc: per adapter object
1648 * @cb_idx: callback index
1649 * @scmd: pointer to scsi command object
1650 *
1651 * Returns smid (zero is invalid)
1652 */
1653u16
1654mpt2sas_base_get_smid_scsiio(struct MPT2SAS_ADAPTER *ioc, u8 cb_idx,
1655 struct scsi_cmnd *scmd)
1656{
1657 unsigned long flags;
1658 struct scsiio_tracker *request;
1659 u16 smid;
1660
1661 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1662 if (list_empty(&ioc->free_list)) {
1663 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1664 printk(MPT2SAS_ERR_FMT "%s: smid not available\n",
1665 ioc->name, __func__);
1666 return 0;
1667 }
1668
1669 request = list_entry(ioc->free_list.next,
1670 struct scsiio_tracker, tracker_list);
1671 request->scmd = scmd;
1672 request->cb_idx = cb_idx;
1673 smid = request->smid;
1674 list_del(&request->tracker_list);
1675 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1676 return smid;
1677}
1678
1679/**
1680 * mpt2sas_base_get_smid_hpr - obtain a free smid from hi-priority queue
1681 * @ioc: per adapter object
1682 * @cb_idx: callback index
1683 *
1684 * Returns smid (zero is invalid)
1685 */
1686u16
1687mpt2sas_base_get_smid_hpr(struct MPT2SAS_ADAPTER *ioc, u8 cb_idx)
1688{
1689 unsigned long flags;
1690 struct request_tracker *request;
1691 u16 smid;
1692
1693 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1694 if (list_empty(&ioc->hpr_free_list)) {
1695 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1696 return 0;
1697 }
1698
1699 request = list_entry(ioc->hpr_free_list.next,
1700 struct request_tracker, tracker_list);
1701 request->cb_idx = cb_idx;
1702 smid = request->smid;
1703 list_del(&request->tracker_list);
1704 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1705 return smid;
1706}
1707
1708
1709/**
1710 * mpt2sas_base_free_smid - put smid back on free_list
1711 * @ioc: per adapter object
1712 * @smid: system request message index
1713 *
1714 * Return nothing.
1715 */
1716void
1717mpt2sas_base_free_smid(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1718{
1719 unsigned long flags;
1720 int i;
1721 struct chain_tracker *chain_req, *next;
1722
1723 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
1724 if (smid < ioc->hi_priority_smid) {
1725 /* scsiio queue */
1726 i = smid - 1;
1727 if (!list_empty(&ioc->scsi_lookup[i].chain_list)) {
1728 list_for_each_entry_safe(chain_req, next,
1729 &ioc->scsi_lookup[i].chain_list, tracker_list) {
1730 list_del_init(&chain_req->tracker_list);
1731 list_add_tail(&chain_req->tracker_list,
1732 &ioc->free_chain_list);
1733 }
1734 }
1735 ioc->scsi_lookup[i].cb_idx = 0xFF;
1736 ioc->scsi_lookup[i].scmd = NULL;
1737 ioc->scsi_lookup[i].direct_io = 0;
1738 list_add_tail(&ioc->scsi_lookup[i].tracker_list,
1739 &ioc->free_list);
1740 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1741
1742 /*
1743 * See _wait_for_commands_to_complete() call with regards
1744 * to this code.
1745 */
1746 if (ioc->shost_recovery && ioc->pending_io_count) {
1747 if (ioc->pending_io_count == 1)
1748 wake_up(&ioc->reset_wq);
1749 ioc->pending_io_count--;
1750 }
1751 return;
1752 } else if (smid < ioc->internal_smid) {
1753 /* hi-priority */
1754 i = smid - ioc->hi_priority_smid;
1755 ioc->hpr_lookup[i].cb_idx = 0xFF;
1756 list_add_tail(&ioc->hpr_lookup[i].tracker_list,
1757 &ioc->hpr_free_list);
1758 } else if (smid <= ioc->hba_queue_depth) {
1759 /* internal queue */
1760 i = smid - ioc->internal_smid;
1761 ioc->internal_lookup[i].cb_idx = 0xFF;
1762 list_add_tail(&ioc->internal_lookup[i].tracker_list,
1763 &ioc->internal_free_list);
1764 }
1765 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
1766}
1767
1768/**
1769 * _base_writeq - 64 bit write to MMIO
1770 * @ioc: per adapter object
1771 * @b: data payload
1772 * @addr: address in MMIO space
1773 * @writeq_lock: spin lock
1774 *
1775 * Glue for handling an atomic 64 bit word to MMIO. This special handling takes
1776 * care of 32 bit environment where its not quarenteed to send the entire word
1777 * in one transfer.
1778 */
1779#ifndef writeq
1780static inline void _base_writeq(__u64 b, volatile void __iomem *addr,
1781 spinlock_t *writeq_lock)
1782{
1783 unsigned long flags;
1784 __u64 data_out = cpu_to_le64(b);
1785
1786 spin_lock_irqsave(writeq_lock, flags);
1787 writel((u32)(data_out), addr);
1788 writel((u32)(data_out >> 32), (addr + 4));
1789 spin_unlock_irqrestore(writeq_lock, flags);
1790}
1791#else
1792static inline void _base_writeq(__u64 b, volatile void __iomem *addr,
1793 spinlock_t *writeq_lock)
1794{
1795 writeq(cpu_to_le64(b), addr);
1796}
1797#endif
1798
1799static inline u8
1800_base_get_msix_index(struct MPT2SAS_ADAPTER *ioc)
1801{
1802 return ioc->cpu_msix_table[raw_smp_processor_id()];
1803}
1804
1805/**
1806 * mpt2sas_base_put_smid_scsi_io - send SCSI_IO request to firmware
1807 * @ioc: per adapter object
1808 * @smid: system request message index
1809 * @handle: device handle
1810 *
1811 * Return nothing.
1812 */
1813void
1814mpt2sas_base_put_smid_scsi_io(struct MPT2SAS_ADAPTER *ioc, u16 smid, u16 handle)
1815{
1816 Mpi2RequestDescriptorUnion_t descriptor;
1817 u64 *request = (u64 *)&descriptor;
1818
1819
1820 descriptor.SCSIIO.RequestFlags = MPI2_REQ_DESCRIPT_FLAGS_SCSI_IO;
1821 descriptor.SCSIIO.MSIxIndex = _base_get_msix_index(ioc);
1822 descriptor.SCSIIO.SMID = cpu_to_le16(smid);
1823 descriptor.SCSIIO.DevHandle = cpu_to_le16(handle);
1824 descriptor.SCSIIO.LMID = 0;
1825 _base_writeq(*request, &ioc->chip->RequestDescriptorPostLow,
1826 &ioc->scsi_lookup_lock);
1827}
1828
1829
1830/**
1831 * mpt2sas_base_put_smid_hi_priority - send Task Management request to firmware
1832 * @ioc: per adapter object
1833 * @smid: system request message index
1834 *
1835 * Return nothing.
1836 */
1837void
1838mpt2sas_base_put_smid_hi_priority(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1839{
1840 Mpi2RequestDescriptorUnion_t descriptor;
1841 u64 *request = (u64 *)&descriptor;
1842
1843 descriptor.HighPriority.RequestFlags =
1844 MPI2_REQ_DESCRIPT_FLAGS_HIGH_PRIORITY;
1845 descriptor.HighPriority.MSIxIndex = 0;
1846 descriptor.HighPriority.SMID = cpu_to_le16(smid);
1847 descriptor.HighPriority.LMID = 0;
1848 descriptor.HighPriority.Reserved1 = 0;
1849 _base_writeq(*request, &ioc->chip->RequestDescriptorPostLow,
1850 &ioc->scsi_lookup_lock);
1851}
1852
1853/**
1854 * mpt2sas_base_put_smid_default - Default, primarily used for config pages
1855 * @ioc: per adapter object
1856 * @smid: system request message index
1857 *
1858 * Return nothing.
1859 */
1860void
1861mpt2sas_base_put_smid_default(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1862{
1863 Mpi2RequestDescriptorUnion_t descriptor;
1864 u64 *request = (u64 *)&descriptor;
1865
1866 descriptor.Default.RequestFlags = MPI2_REQ_DESCRIPT_FLAGS_DEFAULT_TYPE;
1867 descriptor.Default.MSIxIndex = _base_get_msix_index(ioc);
1868 descriptor.Default.SMID = cpu_to_le16(smid);
1869 descriptor.Default.LMID = 0;
1870 descriptor.Default.DescriptorTypeDependent = 0;
1871 _base_writeq(*request, &ioc->chip->RequestDescriptorPostLow,
1872 &ioc->scsi_lookup_lock);
1873}
1874
1875/**
1876 * mpt2sas_base_put_smid_target_assist - send Target Assist/Status to firmware
1877 * @ioc: per adapter object
1878 * @smid: system request message index
1879 * @io_index: value used to track the IO
1880 *
1881 * Return nothing.
1882 */
1883void
1884mpt2sas_base_put_smid_target_assist(struct MPT2SAS_ADAPTER *ioc, u16 smid,
1885 u16 io_index)
1886{
1887 Mpi2RequestDescriptorUnion_t descriptor;
1888 u64 *request = (u64 *)&descriptor;
1889
1890 descriptor.SCSITarget.RequestFlags =
1891 MPI2_REQ_DESCRIPT_FLAGS_SCSI_TARGET;
1892 descriptor.SCSITarget.MSIxIndex = _base_get_msix_index(ioc);
1893 descriptor.SCSITarget.SMID = cpu_to_le16(smid);
1894 descriptor.SCSITarget.LMID = 0;
1895 descriptor.SCSITarget.IoIndex = cpu_to_le16(io_index);
1896 _base_writeq(*request, &ioc->chip->RequestDescriptorPostLow,
1897 &ioc->scsi_lookup_lock);
1898}
1899
1900/**
1901 * _base_display_dell_branding - Disply branding string
1902 * @ioc: per adapter object
1903 *
1904 * Return nothing.
1905 */
1906static void
1907_base_display_dell_branding(struct MPT2SAS_ADAPTER *ioc)
1908{
1909 char dell_branding[MPT2SAS_DELL_BRANDING_SIZE];
1910
1911 if (ioc->pdev->subsystem_vendor != PCI_VENDOR_ID_DELL)
1912 return;
1913
1914 memset(dell_branding, 0, MPT2SAS_DELL_BRANDING_SIZE);
1915 switch (ioc->pdev->subsystem_device) {
1916 case MPT2SAS_DELL_6GBPS_SAS_HBA_SSDID:
1917 strncpy(dell_branding, MPT2SAS_DELL_6GBPS_SAS_HBA_BRANDING,
1918 MPT2SAS_DELL_BRANDING_SIZE - 1);
1919 break;
1920 case MPT2SAS_DELL_PERC_H200_ADAPTER_SSDID:
1921 strncpy(dell_branding, MPT2SAS_DELL_PERC_H200_ADAPTER_BRANDING,
1922 MPT2SAS_DELL_BRANDING_SIZE - 1);
1923 break;
1924 case MPT2SAS_DELL_PERC_H200_INTEGRATED_SSDID:
1925 strncpy(dell_branding,
1926 MPT2SAS_DELL_PERC_H200_INTEGRATED_BRANDING,
1927 MPT2SAS_DELL_BRANDING_SIZE - 1);
1928 break;
1929 case MPT2SAS_DELL_PERC_H200_MODULAR_SSDID:
1930 strncpy(dell_branding,
1931 MPT2SAS_DELL_PERC_H200_MODULAR_BRANDING,
1932 MPT2SAS_DELL_BRANDING_SIZE - 1);
1933 break;
1934 case MPT2SAS_DELL_PERC_H200_EMBEDDED_SSDID:
1935 strncpy(dell_branding,
1936 MPT2SAS_DELL_PERC_H200_EMBEDDED_BRANDING,
1937 MPT2SAS_DELL_BRANDING_SIZE - 1);
1938 break;
1939 case MPT2SAS_DELL_PERC_H200_SSDID:
1940 strncpy(dell_branding, MPT2SAS_DELL_PERC_H200_BRANDING,
1941 MPT2SAS_DELL_BRANDING_SIZE - 1);
1942 break;
1943 case MPT2SAS_DELL_6GBPS_SAS_SSDID:
1944 strncpy(dell_branding, MPT2SAS_DELL_6GBPS_SAS_BRANDING,
1945 MPT2SAS_DELL_BRANDING_SIZE - 1);
1946 break;
1947 default:
1948 sprintf(dell_branding, "0x%4X", ioc->pdev->subsystem_device);
1949 break;
1950 }
1951
1952 printk(MPT2SAS_INFO_FMT "%s: Vendor(0x%04X), Device(0x%04X),"
1953 " SSVID(0x%04X), SSDID(0x%04X)\n", ioc->name, dell_branding,
1954 ioc->pdev->vendor, ioc->pdev->device, ioc->pdev->subsystem_vendor,
1955 ioc->pdev->subsystem_device);
1956}
1957
1958/**
1959 * _base_display_intel_branding - Display branding string
1960 * @ioc: per adapter object
1961 *
1962 * Return nothing.
1963 */
1964static void
1965_base_display_intel_branding(struct MPT2SAS_ADAPTER *ioc)
1966{
1967 if (ioc->pdev->subsystem_vendor != PCI_VENDOR_ID_INTEL)
1968 return;
1969
1970 switch (ioc->pdev->device) {
1971 case MPI2_MFGPAGE_DEVID_SAS2008:
1972 switch (ioc->pdev->subsystem_device) {
1973 case MPT2SAS_INTEL_RMS2LL080_SSDID:
1974 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1975 MPT2SAS_INTEL_RMS2LL080_BRANDING);
1976 break;
1977 case MPT2SAS_INTEL_RMS2LL040_SSDID:
1978 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1979 MPT2SAS_INTEL_RMS2LL040_BRANDING);
1980 break;
1981 case MPT2SAS_INTEL_RAMSDALE_SSDID:
1982 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1983 MPT2SAS_INTEL_RAMSDALE_BRANDING);
1984 break;
1985 default:
1986 break;
1987 }
1988 case MPI2_MFGPAGE_DEVID_SAS2308_2:
1989 switch (ioc->pdev->subsystem_device) {
1990 case MPT2SAS_INTEL_RS25GB008_SSDID:
1991 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1992 MPT2SAS_INTEL_RS25GB008_BRANDING);
1993 break;
1994 case MPT2SAS_INTEL_RMS25JB080_SSDID:
1995 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1996 MPT2SAS_INTEL_RMS25JB080_BRANDING);
1997 break;
1998 case MPT2SAS_INTEL_RMS25JB040_SSDID:
1999 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2000 MPT2SAS_INTEL_RMS25JB040_BRANDING);
2001 break;
2002 case MPT2SAS_INTEL_RMS25KB080_SSDID:
2003 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2004 MPT2SAS_INTEL_RMS25KB080_BRANDING);
2005 break;
2006 case MPT2SAS_INTEL_RMS25KB040_SSDID:
2007 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2008 MPT2SAS_INTEL_RMS25KB040_BRANDING);
2009 break;
2010 default:
2011 break;
2012 }
2013 default:
2014 break;
2015 }
2016}
2017
2018/**
2019 * _base_display_hp_branding - Display branding string
2020 * @ioc: per adapter object
2021 *
2022 * Return nothing.
2023 */
2024static void
2025_base_display_hp_branding(struct MPT2SAS_ADAPTER *ioc)
2026{
2027 if (ioc->pdev->subsystem_vendor != MPT2SAS_HP_3PAR_SSVID)
2028 return;
2029
2030 switch (ioc->pdev->device) {
2031 case MPI2_MFGPAGE_DEVID_SAS2004:
2032 switch (ioc->pdev->subsystem_device) {
2033 case MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_SSDID:
2034 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2035 MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_BRANDING);
2036 break;
2037 default:
2038 break;
2039 }
2040 case MPI2_MFGPAGE_DEVID_SAS2308_2:
2041 switch (ioc->pdev->subsystem_device) {
2042 case MPT2SAS_HP_2_4_INTERNAL_SSDID:
2043 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2044 MPT2SAS_HP_2_4_INTERNAL_BRANDING);
2045 break;
2046 case MPT2SAS_HP_2_4_EXTERNAL_SSDID:
2047 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2048 MPT2SAS_HP_2_4_EXTERNAL_BRANDING);
2049 break;
2050 case MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_SSDID:
2051 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2052 MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_BRANDING);
2053 break;
2054 case MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_SSDID:
2055 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2056 MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_BRANDING);
2057 break;
2058 default:
2059 break;
2060 }
2061 default:
2062 break;
2063 }
2064}
2065
2066/**
2067 * _base_display_ioc_capabilities - Disply IOC's capabilities.
2068 * @ioc: per adapter object
2069 *
2070 * Return nothing.
2071 */
2072static void
2073_base_display_ioc_capabilities(struct MPT2SAS_ADAPTER *ioc)
2074{
2075 int i = 0;
2076 char desc[16];
2077 u32 iounit_pg1_flags;
2078 u32 bios_version;
2079
2080 bios_version = le32_to_cpu(ioc->bios_pg3.BiosVersion);
2081 strncpy(desc, ioc->manu_pg0.ChipName, 16);
2082 printk(MPT2SAS_INFO_FMT "%s: FWVersion(%02d.%02d.%02d.%02d), "
2083 "ChipRevision(0x%02x), BiosVersion(%02d.%02d.%02d.%02d)\n",
2084 ioc->name, desc,
2085 (ioc->facts.FWVersion.Word & 0xFF000000) >> 24,
2086 (ioc->facts.FWVersion.Word & 0x00FF0000) >> 16,
2087 (ioc->facts.FWVersion.Word & 0x0000FF00) >> 8,
2088 ioc->facts.FWVersion.Word & 0x000000FF,
2089 ioc->pdev->revision,
2090 (bios_version & 0xFF000000) >> 24,
2091 (bios_version & 0x00FF0000) >> 16,
2092 (bios_version & 0x0000FF00) >> 8,
2093 bios_version & 0x000000FF);
2094
2095 _base_display_dell_branding(ioc);
2096 _base_display_intel_branding(ioc);
2097 _base_display_hp_branding(ioc);
2098
2099 printk(MPT2SAS_INFO_FMT "Protocol=(", ioc->name);
2100
2101 if (ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR) {
2102 printk("Initiator");
2103 i++;
2104 }
2105
2106 if (ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_TARGET) {
2107 printk("%sTarget", i ? "," : "");
2108 i++;
2109 }
2110
2111 i = 0;
2112 printk("), ");
2113 printk("Capabilities=(");
2114
2115 if (!ioc->hide_ir_msg) {
2116 if (ioc->facts.IOCCapabilities &
2117 MPI2_IOCFACTS_CAPABILITY_INTEGRATED_RAID) {
2118 printk("Raid");
2119 i++;
2120 }
2121 }
2122
2123 if (ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_TLR) {
2124 printk("%sTLR", i ? "," : "");
2125 i++;
2126 }
2127
2128 if (ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_MULTICAST) {
2129 printk("%sMulticast", i ? "," : "");
2130 i++;
2131 }
2132
2133 if (ioc->facts.IOCCapabilities &
2134 MPI2_IOCFACTS_CAPABILITY_BIDIRECTIONAL_TARGET) {
2135 printk("%sBIDI Target", i ? "," : "");
2136 i++;
2137 }
2138
2139 if (ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_EEDP) {
2140 printk("%sEEDP", i ? "," : "");
2141 i++;
2142 }
2143
2144 if (ioc->facts.IOCCapabilities &
2145 MPI2_IOCFACTS_CAPABILITY_SNAPSHOT_BUFFER) {
2146 printk("%sSnapshot Buffer", i ? "," : "");
2147 i++;
2148 }
2149
2150 if (ioc->facts.IOCCapabilities &
2151 MPI2_IOCFACTS_CAPABILITY_DIAG_TRACE_BUFFER) {
2152 printk("%sDiag Trace Buffer", i ? "," : "");
2153 i++;
2154 }
2155
2156 if (ioc->facts.IOCCapabilities &
2157 MPI2_IOCFACTS_CAPABILITY_EXTENDED_BUFFER) {
2158 printk(KERN_INFO "%sDiag Extended Buffer", i ? "," : "");
2159 i++;
2160 }
2161
2162 if (ioc->facts.IOCCapabilities &
2163 MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING) {
2164 printk("%sTask Set Full", i ? "," : "");
2165 i++;
2166 }
2167
2168 iounit_pg1_flags = le32_to_cpu(ioc->iounit_pg1.Flags);
2169 if (!(iounit_pg1_flags & MPI2_IOUNITPAGE1_NATIVE_COMMAND_Q_DISABLE)) {
2170 printk("%sNCQ", i ? "," : "");
2171 i++;
2172 }
2173
2174 printk(")\n");
2175}
2176
2177/**
2178 * _base_update_missing_delay - change the missing delay timers
2179 * @ioc: per adapter object
2180 * @device_missing_delay: amount of time till device is reported missing
2181 * @io_missing_delay: interval IO is returned when there is a missing device
2182 *
2183 * Return nothing.
2184 *
2185 * Passed on the command line, this function will modify the device missing
2186 * delay, as well as the io missing delay. This should be called at driver
2187 * load time.
2188 */
2189static void
2190_base_update_missing_delay(struct MPT2SAS_ADAPTER *ioc,
2191 u16 device_missing_delay, u8 io_missing_delay)
2192{
2193 u16 dmd, dmd_new, dmd_orignal;
2194 u8 io_missing_delay_original;
2195 u16 sz;
2196 Mpi2SasIOUnitPage1_t *sas_iounit_pg1 = NULL;
2197 Mpi2ConfigReply_t mpi_reply;
2198 u8 num_phys = 0;
2199 u16 ioc_status;
2200
2201 mpt2sas_config_get_number_hba_phys(ioc, &num_phys);
2202 if (!num_phys)
2203 return;
2204
2205 sz = offsetof(Mpi2SasIOUnitPage1_t, PhyData) + (num_phys *
2206 sizeof(Mpi2SasIOUnit1PhyData_t));
2207 sas_iounit_pg1 = kzalloc(sz, GFP_KERNEL);
2208 if (!sas_iounit_pg1) {
2209 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
2210 ioc->name, __FILE__, __LINE__, __func__);
2211 goto out;
2212 }
2213 if ((mpt2sas_config_get_sas_iounit_pg1(ioc, &mpi_reply,
2214 sas_iounit_pg1, sz))) {
2215 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
2216 ioc->name, __FILE__, __LINE__, __func__);
2217 goto out;
2218 }
2219 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
2220 MPI2_IOCSTATUS_MASK;
2221 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
2222 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
2223 ioc->name, __FILE__, __LINE__, __func__);
2224 goto out;
2225 }
2226
2227 /* device missing delay */
2228 dmd = sas_iounit_pg1->ReportDeviceMissingDelay;
2229 if (dmd & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
2230 dmd = (dmd & MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
2231 else
2232 dmd = dmd & MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
2233 dmd_orignal = dmd;
2234 if (device_missing_delay > 0x7F) {
2235 dmd = (device_missing_delay > 0x7F0) ? 0x7F0 :
2236 device_missing_delay;
2237 dmd = dmd / 16;
2238 dmd |= MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16;
2239 } else
2240 dmd = device_missing_delay;
2241 sas_iounit_pg1->ReportDeviceMissingDelay = dmd;
2242
2243 /* io missing delay */
2244 io_missing_delay_original = sas_iounit_pg1->IODeviceMissingDelay;
2245 sas_iounit_pg1->IODeviceMissingDelay = io_missing_delay;
2246
2247 if (!mpt2sas_config_set_sas_iounit_pg1(ioc, &mpi_reply, sas_iounit_pg1,
2248 sz)) {
2249 if (dmd & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
2250 dmd_new = (dmd &
2251 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
2252 else
2253 dmd_new =
2254 dmd & MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
2255 printk(MPT2SAS_INFO_FMT "device_missing_delay: old(%d), "
2256 "new(%d)\n", ioc->name, dmd_orignal, dmd_new);
2257 printk(MPT2SAS_INFO_FMT "ioc_missing_delay: old(%d), "
2258 "new(%d)\n", ioc->name, io_missing_delay_original,
2259 io_missing_delay);
2260 ioc->device_missing_delay = dmd_new;
2261 ioc->io_missing_delay = io_missing_delay;
2262 }
2263
2264out:
2265 kfree(sas_iounit_pg1);
2266}
2267
2268/**
2269 * _base_static_config_pages - static start of day config pages
2270 * @ioc: per adapter object
2271 *
2272 * Return nothing.
2273 */
2274static void
2275_base_static_config_pages(struct MPT2SAS_ADAPTER *ioc)
2276{
2277 Mpi2ConfigReply_t mpi_reply;
2278 u32 iounit_pg1_flags;
2279
2280 mpt2sas_config_get_manufacturing_pg0(ioc, &mpi_reply, &ioc->manu_pg0);
2281 if (ioc->ir_firmware)
2282 mpt2sas_config_get_manufacturing_pg10(ioc, &mpi_reply,
2283 &ioc->manu_pg10);
2284 mpt2sas_config_get_bios_pg2(ioc, &mpi_reply, &ioc->bios_pg2);
2285 mpt2sas_config_get_bios_pg3(ioc, &mpi_reply, &ioc->bios_pg3);
2286 mpt2sas_config_get_ioc_pg8(ioc, &mpi_reply, &ioc->ioc_pg8);
2287 mpt2sas_config_get_iounit_pg0(ioc, &mpi_reply, &ioc->iounit_pg0);
2288 mpt2sas_config_get_iounit_pg1(ioc, &mpi_reply, &ioc->iounit_pg1);
2289 _base_display_ioc_capabilities(ioc);
2290
2291 /*
2292 * Enable task_set_full handling in iounit_pg1 when the
2293 * facts capabilities indicate that its supported.
2294 */
2295 iounit_pg1_flags = le32_to_cpu(ioc->iounit_pg1.Flags);
2296 if ((ioc->facts.IOCCapabilities &
2297 MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING))
2298 iounit_pg1_flags &=
2299 ~MPI2_IOUNITPAGE1_DISABLE_TASK_SET_FULL_HANDLING;
2300 else
2301 iounit_pg1_flags |=
2302 MPI2_IOUNITPAGE1_DISABLE_TASK_SET_FULL_HANDLING;
2303 ioc->iounit_pg1.Flags = cpu_to_le32(iounit_pg1_flags);
2304 mpt2sas_config_set_iounit_pg1(ioc, &mpi_reply, &ioc->iounit_pg1);
2305
2306}
2307
2308/**
2309 * _base_release_memory_pools - release memory
2310 * @ioc: per adapter object
2311 *
2312 * Free memory allocated from _base_allocate_memory_pools.
2313 *
2314 * Return nothing.
2315 */
2316static void
2317_base_release_memory_pools(struct MPT2SAS_ADAPTER *ioc)
2318{
2319 int i;
2320
2321 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2322 __func__));
2323
2324 if (ioc->request) {
2325 pci_free_consistent(ioc->pdev, ioc->request_dma_sz,
2326 ioc->request, ioc->request_dma);
2327 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "request_pool(0x%p)"
2328 ": free\n", ioc->name, ioc->request));
2329 ioc->request = NULL;
2330 }
2331
2332 if (ioc->sense) {
2333 pci_pool_free(ioc->sense_dma_pool, ioc->sense, ioc->sense_dma);
2334 if (ioc->sense_dma_pool)
2335 pci_pool_destroy(ioc->sense_dma_pool);
2336 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "sense_pool(0x%p)"
2337 ": free\n", ioc->name, ioc->sense));
2338 ioc->sense = NULL;
2339 }
2340
2341 if (ioc->reply) {
2342 pci_pool_free(ioc->reply_dma_pool, ioc->reply, ioc->reply_dma);
2343 if (ioc->reply_dma_pool)
2344 pci_pool_destroy(ioc->reply_dma_pool);
2345 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_pool(0x%p)"
2346 ": free\n", ioc->name, ioc->reply));
2347 ioc->reply = NULL;
2348 }
2349
2350 if (ioc->reply_free) {
2351 pci_pool_free(ioc->reply_free_dma_pool, ioc->reply_free,
2352 ioc->reply_free_dma);
2353 if (ioc->reply_free_dma_pool)
2354 pci_pool_destroy(ioc->reply_free_dma_pool);
2355 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_free_pool"
2356 "(0x%p): free\n", ioc->name, ioc->reply_free));
2357 ioc->reply_free = NULL;
2358 }
2359
2360 if (ioc->reply_post_free) {
2361 pci_pool_free(ioc->reply_post_free_dma_pool,
2362 ioc->reply_post_free, ioc->reply_post_free_dma);
2363 if (ioc->reply_post_free_dma_pool)
2364 pci_pool_destroy(ioc->reply_post_free_dma_pool);
2365 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT
2366 "reply_post_free_pool(0x%p): free\n", ioc->name,
2367 ioc->reply_post_free));
2368 ioc->reply_post_free = NULL;
2369 }
2370
2371 if (ioc->config_page) {
2372 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT
2373 "config_page(0x%p): free\n", ioc->name,
2374 ioc->config_page));
2375 pci_free_consistent(ioc->pdev, ioc->config_page_sz,
2376 ioc->config_page, ioc->config_page_dma);
2377 }
2378
2379 if (ioc->scsi_lookup) {
2380 free_pages((ulong)ioc->scsi_lookup, ioc->scsi_lookup_pages);
2381 ioc->scsi_lookup = NULL;
2382 }
2383 kfree(ioc->hpr_lookup);
2384 kfree(ioc->internal_lookup);
2385 if (ioc->chain_lookup) {
2386 for (i = 0; i < ioc->chain_depth; i++) {
2387 if (ioc->chain_lookup[i].chain_buffer)
2388 pci_pool_free(ioc->chain_dma_pool,
2389 ioc->chain_lookup[i].chain_buffer,
2390 ioc->chain_lookup[i].chain_buffer_dma);
2391 }
2392 if (ioc->chain_dma_pool)
2393 pci_pool_destroy(ioc->chain_dma_pool);
2394 free_pages((ulong)ioc->chain_lookup, ioc->chain_pages);
2395 ioc->chain_lookup = NULL;
2396 }
2397}
2398
2399
2400/**
2401 * _base_allocate_memory_pools - allocate start of day memory pools
2402 * @ioc: per adapter object
2403 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2404 *
2405 * Returns 0 success, anything else error
2406 */
2407static int
2408_base_allocate_memory_pools(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
2409{
2410 struct mpt2sas_facts *facts;
2411 u16 max_sge_elements;
2412 u16 chains_needed_per_io;
2413 u32 sz, total_sz, reply_post_free_sz;
2414 u32 retry_sz;
2415 u16 max_request_credit;
2416 int i;
2417
2418 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
2419 __func__));
2420
2421 retry_sz = 0;
2422 facts = &ioc->facts;
2423
2424 /* command line tunables for max sgl entries */
2425 if (max_sgl_entries != -1) {
2426 ioc->shost->sg_tablesize = (max_sgl_entries <
2427 MPT2SAS_SG_DEPTH) ? max_sgl_entries :
2428 MPT2SAS_SG_DEPTH;
2429 } else {
2430 ioc->shost->sg_tablesize = MPT2SAS_SG_DEPTH;
2431 }
2432
2433 /* command line tunables for max controller queue depth */
2434 if (max_queue_depth != -1 && max_queue_depth != 0) {
2435 max_request_credit = min_t(u16, max_queue_depth +
2436 ioc->hi_priority_depth + ioc->internal_depth,
2437 facts->RequestCredit);
2438 if (max_request_credit > MAX_HBA_QUEUE_DEPTH)
2439 max_request_credit = MAX_HBA_QUEUE_DEPTH;
2440 } else
2441 max_request_credit = min_t(u16, facts->RequestCredit,
2442 MAX_HBA_QUEUE_DEPTH);
2443
2444 ioc->hba_queue_depth = max_request_credit;
2445 ioc->hi_priority_depth = facts->HighPriorityCredit;
2446 ioc->internal_depth = ioc->hi_priority_depth + 5;
2447
2448 /* request frame size */
2449 ioc->request_sz = facts->IOCRequestFrameSize * 4;
2450
2451 /* reply frame size */
2452 ioc->reply_sz = facts->ReplyFrameSize * 4;
2453
2454 retry_allocation:
2455 total_sz = 0;
2456 /* calculate number of sg elements left over in the 1st frame */
2457 max_sge_elements = ioc->request_sz - ((sizeof(Mpi2SCSIIORequest_t) -
2458 sizeof(Mpi2SGEIOUnion_t)) + ioc->sge_size);
2459 ioc->max_sges_in_main_message = max_sge_elements/ioc->sge_size;
2460
2461 /* now do the same for a chain buffer */
2462 max_sge_elements = ioc->request_sz - ioc->sge_size;
2463 ioc->max_sges_in_chain_message = max_sge_elements/ioc->sge_size;
2464
2465 ioc->chain_offset_value_for_main_message =
2466 ((sizeof(Mpi2SCSIIORequest_t) - sizeof(Mpi2SGEIOUnion_t)) +
2467 (ioc->max_sges_in_chain_message * ioc->sge_size)) / 4;
2468
2469 /*
2470 * MPT2SAS_SG_DEPTH = CONFIG_FUSION_MAX_SGE
2471 */
2472 chains_needed_per_io = ((ioc->shost->sg_tablesize -
2473 ioc->max_sges_in_main_message)/ioc->max_sges_in_chain_message)
2474 + 1;
2475 if (chains_needed_per_io > facts->MaxChainDepth) {
2476 chains_needed_per_io = facts->MaxChainDepth;
2477 ioc->shost->sg_tablesize = min_t(u16,
2478 ioc->max_sges_in_main_message + (ioc->max_sges_in_chain_message
2479 * chains_needed_per_io), ioc->shost->sg_tablesize);
2480 }
2481 ioc->chains_needed_per_io = chains_needed_per_io;
2482
2483 /* reply free queue sizing - taking into account for 64 FW events */
2484 ioc->reply_free_queue_depth = ioc->hba_queue_depth + 64;
2485
2486 /* align the reply post queue on the next 16 count boundary */
2487 if (!ioc->reply_free_queue_depth % 16)
2488 ioc->reply_post_queue_depth = ioc->reply_free_queue_depth + 16;
2489 else
2490 ioc->reply_post_queue_depth = ioc->reply_free_queue_depth +
2491 32 - (ioc->reply_free_queue_depth % 16);
2492 if (ioc->reply_post_queue_depth >
2493 facts->MaxReplyDescriptorPostQueueDepth) {
2494 ioc->reply_post_queue_depth = min_t(u16,
2495 (facts->MaxReplyDescriptorPostQueueDepth -
2496 (facts->MaxReplyDescriptorPostQueueDepth % 16)),
2497 (ioc->hba_queue_depth - (ioc->hba_queue_depth % 16)));
2498 ioc->reply_free_queue_depth = ioc->reply_post_queue_depth - 16;
2499 ioc->hba_queue_depth = ioc->reply_free_queue_depth - 64;
2500 }
2501
2502
2503 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scatter gather: "
2504 "sge_in_main_msg(%d), sge_per_chain(%d), sge_per_io(%d), "
2505 "chains_per_io(%d)\n", ioc->name, ioc->max_sges_in_main_message,
2506 ioc->max_sges_in_chain_message, ioc->shost->sg_tablesize,
2507 ioc->chains_needed_per_io));
2508
2509 ioc->scsiio_depth = ioc->hba_queue_depth -
2510 ioc->hi_priority_depth - ioc->internal_depth;
2511
2512 /* set the scsi host can_queue depth
2513 * with some internal commands that could be outstanding
2514 */
2515 ioc->shost->can_queue = ioc->scsiio_depth;
2516 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scsi host: "
2517 "can_queue depth (%d)\n", ioc->name, ioc->shost->can_queue));
2518
2519 /* contiguous pool for request and chains, 16 byte align, one extra "
2520 * "frame for smid=0
2521 */
2522 ioc->chain_depth = ioc->chains_needed_per_io * ioc->scsiio_depth;
2523 sz = ((ioc->scsiio_depth + 1) * ioc->request_sz);
2524
2525 /* hi-priority queue */
2526 sz += (ioc->hi_priority_depth * ioc->request_sz);
2527
2528 /* internal queue */
2529 sz += (ioc->internal_depth * ioc->request_sz);
2530
2531 ioc->request_dma_sz = sz;
2532 ioc->request = pci_alloc_consistent(ioc->pdev, sz, &ioc->request_dma);
2533 if (!ioc->request) {
2534 printk(MPT2SAS_ERR_FMT "request pool: pci_alloc_consistent "
2535 "failed: hba_depth(%d), chains_per_io(%d), frame_sz(%d), "
2536 "total(%d kB)\n", ioc->name, ioc->hba_queue_depth,
2537 ioc->chains_needed_per_io, ioc->request_sz, sz/1024);
2538 if (ioc->scsiio_depth < MPT2SAS_SAS_QUEUE_DEPTH)
2539 goto out;
2540 retry_sz += 64;
2541 ioc->hba_queue_depth = max_request_credit - retry_sz;
2542 goto retry_allocation;
2543 }
2544
2545 if (retry_sz)
2546 printk(MPT2SAS_ERR_FMT "request pool: pci_alloc_consistent "
2547 "succeed: hba_depth(%d), chains_per_io(%d), frame_sz(%d), "
2548 "total(%d kb)\n", ioc->name, ioc->hba_queue_depth,
2549 ioc->chains_needed_per_io, ioc->request_sz, sz/1024);
2550
2551
2552 /* hi-priority queue */
2553 ioc->hi_priority = ioc->request + ((ioc->scsiio_depth + 1) *
2554 ioc->request_sz);
2555 ioc->hi_priority_dma = ioc->request_dma + ((ioc->scsiio_depth + 1) *
2556 ioc->request_sz);
2557
2558 /* internal queue */
2559 ioc->internal = ioc->hi_priority + (ioc->hi_priority_depth *
2560 ioc->request_sz);
2561 ioc->internal_dma = ioc->hi_priority_dma + (ioc->hi_priority_depth *
2562 ioc->request_sz);
2563
2564
2565 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "request pool(0x%p): "
2566 "depth(%d), frame_size(%d), pool_size(%d kB)\n", ioc->name,
2567 ioc->request, ioc->hba_queue_depth, ioc->request_sz,
2568 (ioc->hba_queue_depth * ioc->request_sz)/1024));
2569 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "request pool: dma(0x%llx)\n",
2570 ioc->name, (unsigned long long) ioc->request_dma));
2571 total_sz += sz;
2572
2573 sz = ioc->scsiio_depth * sizeof(struct scsiio_tracker);
2574 ioc->scsi_lookup_pages = get_order(sz);
2575 ioc->scsi_lookup = (struct scsiio_tracker *)__get_free_pages(
2576 GFP_KERNEL, ioc->scsi_lookup_pages);
2577 if (!ioc->scsi_lookup) {
2578 printk(MPT2SAS_ERR_FMT "scsi_lookup: get_free_pages failed, "
2579 "sz(%d)\n", ioc->name, (int)sz);
2580 goto out;
2581 }
2582
2583 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scsiio(0x%p): "
2584 "depth(%d)\n", ioc->name, ioc->request,
2585 ioc->scsiio_depth));
2586
2587 ioc->chain_depth = min_t(u32, ioc->chain_depth, MAX_CHAIN_DEPTH);
2588 sz = ioc->chain_depth * sizeof(struct chain_tracker);
2589 ioc->chain_pages = get_order(sz);
2590
2591 ioc->chain_lookup = (struct chain_tracker *)__get_free_pages(
2592 GFP_KERNEL, ioc->chain_pages);
2593 if (!ioc->chain_lookup) {
2594 printk(MPT2SAS_ERR_FMT "chain_lookup: get_free_pages failed, "
2595 "sz(%d)\n", ioc->name, (int)sz);
2596 goto out;
2597 }
2598 ioc->chain_dma_pool = pci_pool_create("chain pool", ioc->pdev,
2599 ioc->request_sz, 16, 0);
2600 if (!ioc->chain_dma_pool) {
2601 printk(MPT2SAS_ERR_FMT "chain_dma_pool: pci_pool_create "
2602 "failed\n", ioc->name);
2603 goto out;
2604 }
2605 for (i = 0; i < ioc->chain_depth; i++) {
2606 ioc->chain_lookup[i].chain_buffer = pci_pool_alloc(
2607 ioc->chain_dma_pool , GFP_KERNEL,
2608 &ioc->chain_lookup[i].chain_buffer_dma);
2609 if (!ioc->chain_lookup[i].chain_buffer) {
2610 ioc->chain_depth = i;
2611 goto chain_done;
2612 }
2613 total_sz += ioc->request_sz;
2614 }
2615chain_done:
2616 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "chain pool depth"
2617 "(%d), frame_size(%d), pool_size(%d kB)\n", ioc->name,
2618 ioc->chain_depth, ioc->request_sz, ((ioc->chain_depth *
2619 ioc->request_sz))/1024));
2620
2621 /* initialize hi-priority queue smid's */
2622 ioc->hpr_lookup = kcalloc(ioc->hi_priority_depth,
2623 sizeof(struct request_tracker), GFP_KERNEL);
2624 if (!ioc->hpr_lookup) {
2625 printk(MPT2SAS_ERR_FMT "hpr_lookup: kcalloc failed\n",
2626 ioc->name);
2627 goto out;
2628 }
2629 ioc->hi_priority_smid = ioc->scsiio_depth + 1;
2630 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "hi_priority(0x%p): "
2631 "depth(%d), start smid(%d)\n", ioc->name, ioc->hi_priority,
2632 ioc->hi_priority_depth, ioc->hi_priority_smid));
2633
2634 /* initialize internal queue smid's */
2635 ioc->internal_lookup = kcalloc(ioc->internal_depth,
2636 sizeof(struct request_tracker), GFP_KERNEL);
2637 if (!ioc->internal_lookup) {
2638 printk(MPT2SAS_ERR_FMT "internal_lookup: kcalloc failed\n",
2639 ioc->name);
2640 goto out;
2641 }
2642 ioc->internal_smid = ioc->hi_priority_smid + ioc->hi_priority_depth;
2643 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "internal(0x%p): "
2644 "depth(%d), start smid(%d)\n", ioc->name, ioc->internal,
2645 ioc->internal_depth, ioc->internal_smid));
2646
2647 /* sense buffers, 4 byte align */
2648 sz = ioc->scsiio_depth * SCSI_SENSE_BUFFERSIZE;
2649 ioc->sense_dma_pool = pci_pool_create("sense pool", ioc->pdev, sz, 4,
2650 0);
2651 if (!ioc->sense_dma_pool) {
2652 printk(MPT2SAS_ERR_FMT "sense pool: pci_pool_create failed\n",
2653 ioc->name);
2654 goto out;
2655 }
2656 ioc->sense = pci_pool_alloc(ioc->sense_dma_pool , GFP_KERNEL,
2657 &ioc->sense_dma);
2658 if (!ioc->sense) {
2659 printk(MPT2SAS_ERR_FMT "sense pool: pci_pool_alloc failed\n",
2660 ioc->name);
2661 goto out;
2662 }
2663 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT
2664 "sense pool(0x%p): depth(%d), element_size(%d), pool_size"
2665 "(%d kB)\n", ioc->name, ioc->sense, ioc->scsiio_depth,
2666 SCSI_SENSE_BUFFERSIZE, sz/1024));
2667 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "sense_dma(0x%llx)\n",
2668 ioc->name, (unsigned long long)ioc->sense_dma));
2669 total_sz += sz;
2670
2671 /* reply pool, 4 byte align */
2672 sz = ioc->reply_free_queue_depth * ioc->reply_sz;
2673 ioc->reply_dma_pool = pci_pool_create("reply pool", ioc->pdev, sz, 4,
2674 0);
2675 if (!ioc->reply_dma_pool) {
2676 printk(MPT2SAS_ERR_FMT "reply pool: pci_pool_create failed\n",
2677 ioc->name);
2678 goto out;
2679 }
2680 ioc->reply = pci_pool_alloc(ioc->reply_dma_pool , GFP_KERNEL,
2681 &ioc->reply_dma);
2682 if (!ioc->reply) {
2683 printk(MPT2SAS_ERR_FMT "reply pool: pci_pool_alloc failed\n",
2684 ioc->name);
2685 goto out;
2686 }
2687 ioc->reply_dma_min_address = (u32)(ioc->reply_dma);
2688 ioc->reply_dma_max_address = (u32)(ioc->reply_dma) + sz;
2689 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply pool(0x%p): depth"
2690 "(%d), frame_size(%d), pool_size(%d kB)\n", ioc->name, ioc->reply,
2691 ioc->reply_free_queue_depth, ioc->reply_sz, sz/1024));
2692 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_dma(0x%llx)\n",
2693 ioc->name, (unsigned long long)ioc->reply_dma));
2694 total_sz += sz;
2695
2696 /* reply free queue, 16 byte align */
2697 sz = ioc->reply_free_queue_depth * 4;
2698 ioc->reply_free_dma_pool = pci_pool_create("reply_free pool",
2699 ioc->pdev, sz, 16, 0);
2700 if (!ioc->reply_free_dma_pool) {
2701 printk(MPT2SAS_ERR_FMT "reply_free pool: pci_pool_create "
2702 "failed\n", ioc->name);
2703 goto out;
2704 }
2705 ioc->reply_free = pci_pool_alloc(ioc->reply_free_dma_pool , GFP_KERNEL,
2706 &ioc->reply_free_dma);
2707 if (!ioc->reply_free) {
2708 printk(MPT2SAS_ERR_FMT "reply_free pool: pci_pool_alloc "
2709 "failed\n", ioc->name);
2710 goto out;
2711 }
2712 memset(ioc->reply_free, 0, sz);
2713 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_free pool(0x%p): "
2714 "depth(%d), element_size(%d), pool_size(%d kB)\n", ioc->name,
2715 ioc->reply_free, ioc->reply_free_queue_depth, 4, sz/1024));
2716 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_free_dma"
2717 "(0x%llx)\n", ioc->name, (unsigned long long)ioc->reply_free_dma));
2718 total_sz += sz;
2719
2720 /* reply post queue, 16 byte align */
2721 reply_post_free_sz = ioc->reply_post_queue_depth *
2722 sizeof(Mpi2DefaultReplyDescriptor_t);
2723 if (_base_is_controller_msix_enabled(ioc))
2724 sz = reply_post_free_sz * ioc->reply_queue_count;
2725 else
2726 sz = reply_post_free_sz;
2727 ioc->reply_post_free_dma_pool = pci_pool_create("reply_post_free pool",
2728 ioc->pdev, sz, 16, 0);
2729 if (!ioc->reply_post_free_dma_pool) {
2730 printk(MPT2SAS_ERR_FMT "reply_post_free pool: pci_pool_create "
2731 "failed\n", ioc->name);
2732 goto out;
2733 }
2734 ioc->reply_post_free = pci_pool_alloc(ioc->reply_post_free_dma_pool ,
2735 GFP_KERNEL, &ioc->reply_post_free_dma);
2736 if (!ioc->reply_post_free) {
2737 printk(MPT2SAS_ERR_FMT "reply_post_free pool: pci_pool_alloc "
2738 "failed\n", ioc->name);
2739 goto out;
2740 }
2741 memset(ioc->reply_post_free, 0, sz);
2742 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply post free pool"
2743 "(0x%p): depth(%d), element_size(%d), pool_size(%d kB)\n",
2744 ioc->name, ioc->reply_post_free, ioc->reply_post_queue_depth, 8,
2745 sz/1024));
2746 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_post_free_dma = "
2747 "(0x%llx)\n", ioc->name, (unsigned long long)
2748 ioc->reply_post_free_dma));
2749 total_sz += sz;
2750
2751 ioc->config_page_sz = 512;
2752 ioc->config_page = pci_alloc_consistent(ioc->pdev,
2753 ioc->config_page_sz, &ioc->config_page_dma);
2754 if (!ioc->config_page) {
2755 printk(MPT2SAS_ERR_FMT "config page: pci_pool_alloc "
2756 "failed\n", ioc->name);
2757 goto out;
2758 }
2759 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "config page(0x%p): size"
2760 "(%d)\n", ioc->name, ioc->config_page, ioc->config_page_sz));
2761 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "config_page_dma"
2762 "(0x%llx)\n", ioc->name, (unsigned long long)ioc->config_page_dma));
2763 total_sz += ioc->config_page_sz;
2764
2765 printk(MPT2SAS_INFO_FMT "Allocated physical memory: size(%d kB)\n",
2766 ioc->name, total_sz/1024);
2767 printk(MPT2SAS_INFO_FMT "Current Controller Queue Depth(%d), "
2768 "Max Controller Queue Depth(%d)\n",
2769 ioc->name, ioc->shost->can_queue, facts->RequestCredit);
2770 printk(MPT2SAS_INFO_FMT "Scatter Gather Elements per IO(%d)\n",
2771 ioc->name, ioc->shost->sg_tablesize);
2772 return 0;
2773
2774 out:
2775 return -ENOMEM;
2776}
2777
2778
2779/**
2780 * mpt2sas_base_get_iocstate - Get the current state of a MPT adapter.
2781 * @ioc: Pointer to MPT_ADAPTER structure
2782 * @cooked: Request raw or cooked IOC state
2783 *
2784 * Returns all IOC Doorbell register bits if cooked==0, else just the
2785 * Doorbell bits in MPI_IOC_STATE_MASK.
2786 */
2787u32
2788mpt2sas_base_get_iocstate(struct MPT2SAS_ADAPTER *ioc, int cooked)
2789{
2790 u32 s, sc;
2791
2792 s = readl(&ioc->chip->Doorbell);
2793 sc = s & MPI2_IOC_STATE_MASK;
2794 return cooked ? sc : s;
2795}
2796
2797/**
2798 * _base_wait_on_iocstate - waiting on a particular ioc state
2799 * @ioc_state: controller state { READY, OPERATIONAL, or RESET }
2800 * @timeout: timeout in second
2801 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2802 *
2803 * Returns 0 for success, non-zero for failure.
2804 */
2805static int
2806_base_wait_on_iocstate(struct MPT2SAS_ADAPTER *ioc, u32 ioc_state, int timeout,
2807 int sleep_flag)
2808{
2809 u32 count, cntdn;
2810 u32 current_state;
2811
2812 count = 0;
2813 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2814 do {
2815 current_state = mpt2sas_base_get_iocstate(ioc, 1);
2816 if (current_state == ioc_state)
2817 return 0;
2818 if (count && current_state == MPI2_IOC_STATE_FAULT)
2819 break;
2820 if (sleep_flag == CAN_SLEEP)
2821 msleep(1);
2822 else
2823 udelay(500);
2824 count++;
2825 } while (--cntdn);
2826
2827 return current_state;
2828}
2829
2830/**
2831 * _base_wait_for_doorbell_int - waiting for controller interrupt(generated by
2832 * a write to the doorbell)
2833 * @ioc: per adapter object
2834 * @timeout: timeout in second
2835 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2836 *
2837 * Returns 0 for success, non-zero for failure.
2838 *
2839 * Notes: MPI2_HIS_IOC2SYS_DB_STATUS - set to one when IOC writes to doorbell.
2840 */
2841static int
2842_base_wait_for_doorbell_int(struct MPT2SAS_ADAPTER *ioc, int timeout,
2843 int sleep_flag)
2844{
2845 u32 cntdn, count;
2846 u32 int_status;
2847
2848 count = 0;
2849 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2850 do {
2851 int_status = readl(&ioc->chip->HostInterruptStatus);
2852 if (int_status & MPI2_HIS_IOC2SYS_DB_STATUS) {
2853 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
2854 "successful count(%d), timeout(%d)\n", ioc->name,
2855 __func__, count, timeout));
2856 return 0;
2857 }
2858 if (sleep_flag == CAN_SLEEP)
2859 msleep(1);
2860 else
2861 udelay(500);
2862 count++;
2863 } while (--cntdn);
2864
2865 printk(MPT2SAS_ERR_FMT "%s: failed due to timeout count(%d), "
2866 "int_status(%x)!\n", ioc->name, __func__, count, int_status);
2867 return -EFAULT;
2868}
2869
2870/**
2871 * _base_wait_for_doorbell_ack - waiting for controller to read the doorbell.
2872 * @ioc: per adapter object
2873 * @timeout: timeout in second
2874 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2875 *
2876 * Returns 0 for success, non-zero for failure.
2877 *
2878 * Notes: MPI2_HIS_SYS2IOC_DB_STATUS - set to one when host writes to
2879 * doorbell.
2880 */
2881static int
2882_base_wait_for_doorbell_ack(struct MPT2SAS_ADAPTER *ioc, int timeout,
2883 int sleep_flag)
2884{
2885 u32 cntdn, count;
2886 u32 int_status;
2887 u32 doorbell;
2888
2889 count = 0;
2890 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2891 do {
2892 int_status = readl(&ioc->chip->HostInterruptStatus);
2893 if (!(int_status & MPI2_HIS_SYS2IOC_DB_STATUS)) {
2894 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
2895 "successful count(%d), timeout(%d)\n", ioc->name,
2896 __func__, count, timeout));
2897 return 0;
2898 } else if (int_status & MPI2_HIS_IOC2SYS_DB_STATUS) {
2899 doorbell = readl(&ioc->chip->Doorbell);
2900 if ((doorbell & MPI2_IOC_STATE_MASK) ==
2901 MPI2_IOC_STATE_FAULT) {
2902 mpt2sas_base_fault_info(ioc , doorbell);
2903 return -EFAULT;
2904 }
2905 } else if (int_status == 0xFFFFFFFF)
2906 goto out;
2907
2908 if (sleep_flag == CAN_SLEEP)
2909 msleep(1);
2910 else
2911 udelay(500);
2912 count++;
2913 } while (--cntdn);
2914
2915 out:
2916 printk(MPT2SAS_ERR_FMT "%s: failed due to timeout count(%d), "
2917 "int_status(%x)!\n", ioc->name, __func__, count, int_status);
2918 return -EFAULT;
2919}
2920
2921/**
2922 * _base_wait_for_doorbell_not_used - waiting for doorbell to not be in use
2923 * @ioc: per adapter object
2924 * @timeout: timeout in second
2925 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2926 *
2927 * Returns 0 for success, non-zero for failure.
2928 *
2929 */
2930static int
2931_base_wait_for_doorbell_not_used(struct MPT2SAS_ADAPTER *ioc, int timeout,
2932 int sleep_flag)
2933{
2934 u32 cntdn, count;
2935 u32 doorbell_reg;
2936
2937 count = 0;
2938 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2939 do {
2940 doorbell_reg = readl(&ioc->chip->Doorbell);
2941 if (!(doorbell_reg & MPI2_DOORBELL_USED)) {
2942 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
2943 "successful count(%d), timeout(%d)\n", ioc->name,
2944 __func__, count, timeout));
2945 return 0;
2946 }
2947 if (sleep_flag == CAN_SLEEP)
2948 msleep(1);
2949 else
2950 udelay(500);
2951 count++;
2952 } while (--cntdn);
2953
2954 printk(MPT2SAS_ERR_FMT "%s: failed due to timeout count(%d), "
2955 "doorbell_reg(%x)!\n", ioc->name, __func__, count, doorbell_reg);
2956 return -EFAULT;
2957}
2958
2959/**
2960 * _base_send_ioc_reset - send doorbell reset
2961 * @ioc: per adapter object
2962 * @reset_type: currently only supports: MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET
2963 * @timeout: timeout in second
2964 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2965 *
2966 * Returns 0 for success, non-zero for failure.
2967 */
2968static int
2969_base_send_ioc_reset(struct MPT2SAS_ADAPTER *ioc, u8 reset_type, int timeout,
2970 int sleep_flag)
2971{
2972 u32 ioc_state;
2973 int r = 0;
2974
2975 if (reset_type != MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET) {
2976 printk(MPT2SAS_ERR_FMT "%s: unknown reset_type\n",
2977 ioc->name, __func__);
2978 return -EFAULT;
2979 }
2980
2981 if (!(ioc->facts.IOCCapabilities &
2982 MPI2_IOCFACTS_CAPABILITY_EVENT_REPLAY))
2983 return -EFAULT;
2984
2985 printk(MPT2SAS_INFO_FMT "sending message unit reset !!\n", ioc->name);
2986
2987 writel(reset_type << MPI2_DOORBELL_FUNCTION_SHIFT,
2988 &ioc->chip->Doorbell);
2989 if ((_base_wait_for_doorbell_ack(ioc, 15, sleep_flag))) {
2990 r = -EFAULT;
2991 goto out;
2992 }
2993 ioc_state = _base_wait_on_iocstate(ioc, MPI2_IOC_STATE_READY,
2994 timeout, sleep_flag);
2995 if (ioc_state) {
2996 printk(MPT2SAS_ERR_FMT "%s: failed going to ready state "
2997 " (ioc_state=0x%x)\n", ioc->name, __func__, ioc_state);
2998 r = -EFAULT;
2999 goto out;
3000 }
3001 out:
3002 printk(MPT2SAS_INFO_FMT "message unit reset: %s\n",
3003 ioc->name, ((r == 0) ? "SUCCESS" : "FAILED"));
3004 return r;
3005}
3006
3007/**
3008 * _base_handshake_req_reply_wait - send request thru doorbell interface
3009 * @ioc: per adapter object
3010 * @request_bytes: request length
3011 * @request: pointer having request payload
3012 * @reply_bytes: reply length
3013 * @reply: pointer to reply payload
3014 * @timeout: timeout in second
3015 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3016 *
3017 * Returns 0 for success, non-zero for failure.
3018 */
3019static int
3020_base_handshake_req_reply_wait(struct MPT2SAS_ADAPTER *ioc, int request_bytes,
3021 u32 *request, int reply_bytes, u16 *reply, int timeout, int sleep_flag)
3022{
3023 MPI2DefaultReply_t *default_reply = (MPI2DefaultReply_t *)reply;
3024 int i;
3025 u8 failed;
3026 u16 dummy;
3027 __le32 *mfp;
3028
3029 /* make sure doorbell is not in use */
3030 if ((readl(&ioc->chip->Doorbell) & MPI2_DOORBELL_USED)) {
3031 printk(MPT2SAS_ERR_FMT "doorbell is in use "
3032 " (line=%d)\n", ioc->name, __LINE__);
3033 return -EFAULT;
3034 }
3035
3036 /* clear pending doorbell interrupts from previous state changes */
3037 if (readl(&ioc->chip->HostInterruptStatus) &
3038 MPI2_HIS_IOC2SYS_DB_STATUS)
3039 writel(0, &ioc->chip->HostInterruptStatus);
3040
3041 /* send message to ioc */
3042 writel(((MPI2_FUNCTION_HANDSHAKE<<MPI2_DOORBELL_FUNCTION_SHIFT) |
3043 ((request_bytes/4)<<MPI2_DOORBELL_ADD_DWORDS_SHIFT)),
3044 &ioc->chip->Doorbell);
3045
3046 if ((_base_wait_for_doorbell_int(ioc, 5, NO_SLEEP))) {
3047 printk(MPT2SAS_ERR_FMT "doorbell handshake "
3048 "int failed (line=%d)\n", ioc->name, __LINE__);
3049 return -EFAULT;
3050 }
3051 writel(0, &ioc->chip->HostInterruptStatus);
3052
3053 if ((_base_wait_for_doorbell_ack(ioc, 5, sleep_flag))) {
3054 printk(MPT2SAS_ERR_FMT "doorbell handshake "
3055 "ack failed (line=%d)\n", ioc->name, __LINE__);
3056 return -EFAULT;
3057 }
3058
3059 /* send message 32-bits at a time */
3060 for (i = 0, failed = 0; i < request_bytes/4 && !failed; i++) {
3061 writel(cpu_to_le32(request[i]), &ioc->chip->Doorbell);
3062 if ((_base_wait_for_doorbell_ack(ioc, 5, sleep_flag)))
3063 failed = 1;
3064 }
3065
3066 if (failed) {
3067 printk(MPT2SAS_ERR_FMT "doorbell handshake "
3068 "sending request failed (line=%d)\n", ioc->name, __LINE__);
3069 return -EFAULT;
3070 }
3071
3072 /* now wait for the reply */
3073 if ((_base_wait_for_doorbell_int(ioc, timeout, sleep_flag))) {
3074 printk(MPT2SAS_ERR_FMT "doorbell handshake "
3075 "int failed (line=%d)\n", ioc->name, __LINE__);
3076 return -EFAULT;
3077 }
3078
3079 /* read the first two 16-bits, it gives the total length of the reply */
3080 reply[0] = le16_to_cpu(readl(&ioc->chip->Doorbell)
3081 & MPI2_DOORBELL_DATA_MASK);
3082 writel(0, &ioc->chip->HostInterruptStatus);
3083 if ((_base_wait_for_doorbell_int(ioc, 5, sleep_flag))) {
3084 printk(MPT2SAS_ERR_FMT "doorbell handshake "
3085 "int failed (line=%d)\n", ioc->name, __LINE__);
3086 return -EFAULT;
3087 }
3088 reply[1] = le16_to_cpu(readl(&ioc->chip->Doorbell)
3089 & MPI2_DOORBELL_DATA_MASK);
3090 writel(0, &ioc->chip->HostInterruptStatus);
3091
3092 for (i = 2; i < default_reply->MsgLength * 2; i++) {
3093 if ((_base_wait_for_doorbell_int(ioc, 5, sleep_flag))) {
3094 printk(MPT2SAS_ERR_FMT "doorbell "
3095 "handshake int failed (line=%d)\n", ioc->name,
3096 __LINE__);
3097 return -EFAULT;
3098 }
3099 if (i >= reply_bytes/2) /* overflow case */
3100 dummy = readl(&ioc->chip->Doorbell);
3101 else
3102 reply[i] = le16_to_cpu(readl(&ioc->chip->Doorbell)
3103 & MPI2_DOORBELL_DATA_MASK);
3104 writel(0, &ioc->chip->HostInterruptStatus);
3105 }
3106
3107 _base_wait_for_doorbell_int(ioc, 5, sleep_flag);
3108 if (_base_wait_for_doorbell_not_used(ioc, 5, sleep_flag) != 0) {
3109 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "doorbell is in use "
3110 " (line=%d)\n", ioc->name, __LINE__));
3111 }
3112 writel(0, &ioc->chip->HostInterruptStatus);
3113
3114 if (ioc->logging_level & MPT_DEBUG_INIT) {
3115 mfp = (__le32 *)reply;
3116 printk(KERN_INFO "\toffset:data\n");
3117 for (i = 0; i < reply_bytes/4; i++)
3118 printk(KERN_INFO "\t[0x%02x]:%08x\n", i*4,
3119 le32_to_cpu(mfp[i]));
3120 }
3121 return 0;
3122}
3123
3124/**
3125 * mpt2sas_base_sas_iounit_control - send sas iounit control to FW
3126 * @ioc: per adapter object
3127 * @mpi_reply: the reply payload from FW
3128 * @mpi_request: the request payload sent to FW
3129 *
3130 * The SAS IO Unit Control Request message allows the host to perform low-level
3131 * operations, such as resets on the PHYs of the IO Unit, also allows the host
3132 * to obtain the IOC assigned device handles for a device if it has other
3133 * identifying information about the device, in addition allows the host to
3134 * remove IOC resources associated with the device.
3135 *
3136 * Returns 0 for success, non-zero for failure.
3137 */
3138int
3139mpt2sas_base_sas_iounit_control(struct MPT2SAS_ADAPTER *ioc,
3140 Mpi2SasIoUnitControlReply_t *mpi_reply,
3141 Mpi2SasIoUnitControlRequest_t *mpi_request)
3142{
3143 u16 smid;
3144 u32 ioc_state;
3145 unsigned long timeleft;
3146 u8 issue_reset;
3147 int rc;
3148 void *request;
3149 u16 wait_state_count;
3150
3151 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3152 __func__));
3153
3154 mutex_lock(&ioc->base_cmds.mutex);
3155
3156 if (ioc->base_cmds.status != MPT2_CMD_NOT_USED) {
3157 printk(MPT2SAS_ERR_FMT "%s: base_cmd in use\n",
3158 ioc->name, __func__);
3159 rc = -EAGAIN;
3160 goto out;
3161 }
3162
3163 wait_state_count = 0;
3164 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3165 while (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
3166 if (wait_state_count++ == 10) {
3167 printk(MPT2SAS_ERR_FMT
3168 "%s: failed due to ioc not operational\n",
3169 ioc->name, __func__);
3170 rc = -EFAULT;
3171 goto out;
3172 }
3173 ssleep(1);
3174 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3175 printk(MPT2SAS_INFO_FMT "%s: waiting for "
3176 "operational state(count=%d)\n", ioc->name,
3177 __func__, wait_state_count);
3178 }
3179
3180 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
3181 if (!smid) {
3182 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3183 ioc->name, __func__);
3184 rc = -EAGAIN;
3185 goto out;
3186 }
3187
3188 rc = 0;
3189 ioc->base_cmds.status = MPT2_CMD_PENDING;
3190 request = mpt2sas_base_get_msg_frame(ioc, smid);
3191 ioc->base_cmds.smid = smid;
3192 memcpy(request, mpi_request, sizeof(Mpi2SasIoUnitControlRequest_t));
3193 if (mpi_request->Operation == MPI2_SAS_OP_PHY_HARD_RESET ||
3194 mpi_request->Operation == MPI2_SAS_OP_PHY_LINK_RESET)
3195 ioc->ioc_link_reset_in_progress = 1;
3196 init_completion(&ioc->base_cmds.done);
3197 mpt2sas_base_put_smid_default(ioc, smid);
3198 timeleft = wait_for_completion_timeout(&ioc->base_cmds.done,
3199 msecs_to_jiffies(10000));
3200 if ((mpi_request->Operation == MPI2_SAS_OP_PHY_HARD_RESET ||
3201 mpi_request->Operation == MPI2_SAS_OP_PHY_LINK_RESET) &&
3202 ioc->ioc_link_reset_in_progress)
3203 ioc->ioc_link_reset_in_progress = 0;
3204 if (!(ioc->base_cmds.status & MPT2_CMD_COMPLETE)) {
3205 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
3206 ioc->name, __func__);
3207 _debug_dump_mf(mpi_request,
3208 sizeof(Mpi2SasIoUnitControlRequest_t)/4);
3209 if (!(ioc->base_cmds.status & MPT2_CMD_RESET))
3210 issue_reset = 1;
3211 goto issue_host_reset;
3212 }
3213 if (ioc->base_cmds.status & MPT2_CMD_REPLY_VALID)
3214 memcpy(mpi_reply, ioc->base_cmds.reply,
3215 sizeof(Mpi2SasIoUnitControlReply_t));
3216 else
3217 memset(mpi_reply, 0, sizeof(Mpi2SasIoUnitControlReply_t));
3218 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3219 goto out;
3220
3221 issue_host_reset:
3222 if (issue_reset)
3223 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
3224 FORCE_BIG_HAMMER);
3225 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3226 rc = -EFAULT;
3227 out:
3228 mutex_unlock(&ioc->base_cmds.mutex);
3229 return rc;
3230}
3231
3232
3233/**
3234 * mpt2sas_base_scsi_enclosure_processor - sending request to sep device
3235 * @ioc: per adapter object
3236 * @mpi_reply: the reply payload from FW
3237 * @mpi_request: the request payload sent to FW
3238 *
3239 * The SCSI Enclosure Processor request message causes the IOC to
3240 * communicate with SES devices to control LED status signals.
3241 *
3242 * Returns 0 for success, non-zero for failure.
3243 */
3244int
3245mpt2sas_base_scsi_enclosure_processor(struct MPT2SAS_ADAPTER *ioc,
3246 Mpi2SepReply_t *mpi_reply, Mpi2SepRequest_t *mpi_request)
3247{
3248 u16 smid;
3249 u32 ioc_state;
3250 unsigned long timeleft;
3251 u8 issue_reset;
3252 int rc;
3253 void *request;
3254 u16 wait_state_count;
3255
3256 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3257 __func__));
3258
3259 mutex_lock(&ioc->base_cmds.mutex);
3260
3261 if (ioc->base_cmds.status != MPT2_CMD_NOT_USED) {
3262 printk(MPT2SAS_ERR_FMT "%s: base_cmd in use\n",
3263 ioc->name, __func__);
3264 rc = -EAGAIN;
3265 goto out;
3266 }
3267
3268 wait_state_count = 0;
3269 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3270 while (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
3271 if (wait_state_count++ == 10) {
3272 printk(MPT2SAS_ERR_FMT
3273 "%s: failed due to ioc not operational\n",
3274 ioc->name, __func__);
3275 rc = -EFAULT;
3276 goto out;
3277 }
3278 ssleep(1);
3279 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3280 printk(MPT2SAS_INFO_FMT "%s: waiting for "
3281 "operational state(count=%d)\n", ioc->name,
3282 __func__, wait_state_count);
3283 }
3284
3285 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
3286 if (!smid) {
3287 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3288 ioc->name, __func__);
3289 rc = -EAGAIN;
3290 goto out;
3291 }
3292
3293 rc = 0;
3294 ioc->base_cmds.status = MPT2_CMD_PENDING;
3295 request = mpt2sas_base_get_msg_frame(ioc, smid);
3296 ioc->base_cmds.smid = smid;
3297 memcpy(request, mpi_request, sizeof(Mpi2SepReply_t));
3298 init_completion(&ioc->base_cmds.done);
3299 mpt2sas_base_put_smid_default(ioc, smid);
3300 timeleft = wait_for_completion_timeout(&ioc->base_cmds.done,
3301 msecs_to_jiffies(10000));
3302 if (!(ioc->base_cmds.status & MPT2_CMD_COMPLETE)) {
3303 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
3304 ioc->name, __func__);
3305 _debug_dump_mf(mpi_request,
3306 sizeof(Mpi2SepRequest_t)/4);
3307 if (!(ioc->base_cmds.status & MPT2_CMD_RESET))
3308 issue_reset = 1;
3309 goto issue_host_reset;
3310 }
3311 if (ioc->base_cmds.status & MPT2_CMD_REPLY_VALID)
3312 memcpy(mpi_reply, ioc->base_cmds.reply,
3313 sizeof(Mpi2SepReply_t));
3314 else
3315 memset(mpi_reply, 0, sizeof(Mpi2SepReply_t));
3316 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3317 goto out;
3318
3319 issue_host_reset:
3320 if (issue_reset)
3321 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
3322 FORCE_BIG_HAMMER);
3323 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3324 rc = -EFAULT;
3325 out:
3326 mutex_unlock(&ioc->base_cmds.mutex);
3327 return rc;
3328}
3329
3330/**
3331 * _base_get_port_facts - obtain port facts reply and save in ioc
3332 * @ioc: per adapter object
3333 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3334 *
3335 * Returns 0 for success, non-zero for failure.
3336 */
3337static int
3338_base_get_port_facts(struct MPT2SAS_ADAPTER *ioc, int port, int sleep_flag)
3339{
3340 Mpi2PortFactsRequest_t mpi_request;
3341 Mpi2PortFactsReply_t mpi_reply;
3342 struct mpt2sas_port_facts *pfacts;
3343 int mpi_reply_sz, mpi_request_sz, r;
3344
3345 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3346 __func__));
3347
3348 mpi_reply_sz = sizeof(Mpi2PortFactsReply_t);
3349 mpi_request_sz = sizeof(Mpi2PortFactsRequest_t);
3350 memset(&mpi_request, 0, mpi_request_sz);
3351 mpi_request.Function = MPI2_FUNCTION_PORT_FACTS;
3352 mpi_request.PortNumber = port;
3353 r = _base_handshake_req_reply_wait(ioc, mpi_request_sz,
3354 (u32 *)&mpi_request, mpi_reply_sz, (u16 *)&mpi_reply, 5, CAN_SLEEP);
3355
3356 if (r != 0) {
3357 printk(MPT2SAS_ERR_FMT "%s: handshake failed (r=%d)\n",
3358 ioc->name, __func__, r);
3359 return r;
3360 }
3361
3362 pfacts = &ioc->pfacts[port];
3363 memset(pfacts, 0, sizeof(struct mpt2sas_port_facts));
3364 pfacts->PortNumber = mpi_reply.PortNumber;
3365 pfacts->VP_ID = mpi_reply.VP_ID;
3366 pfacts->VF_ID = mpi_reply.VF_ID;
3367 pfacts->MaxPostedCmdBuffers =
3368 le16_to_cpu(mpi_reply.MaxPostedCmdBuffers);
3369
3370 return 0;
3371}
3372
3373/**
3374 * _base_get_ioc_facts - obtain ioc facts reply and save in ioc
3375 * @ioc: per adapter object
3376 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3377 *
3378 * Returns 0 for success, non-zero for failure.
3379 */
3380static int
3381_base_get_ioc_facts(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3382{
3383 Mpi2IOCFactsRequest_t mpi_request;
3384 Mpi2IOCFactsReply_t mpi_reply;
3385 struct mpt2sas_facts *facts;
3386 int mpi_reply_sz, mpi_request_sz, r;
3387
3388 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3389 __func__));
3390
3391 mpi_reply_sz = sizeof(Mpi2IOCFactsReply_t);
3392 mpi_request_sz = sizeof(Mpi2IOCFactsRequest_t);
3393 memset(&mpi_request, 0, mpi_request_sz);
3394 mpi_request.Function = MPI2_FUNCTION_IOC_FACTS;
3395 r = _base_handshake_req_reply_wait(ioc, mpi_request_sz,
3396 (u32 *)&mpi_request, mpi_reply_sz, (u16 *)&mpi_reply, 5, CAN_SLEEP);
3397
3398 if (r != 0) {
3399 printk(MPT2SAS_ERR_FMT "%s: handshake failed (r=%d)\n",
3400 ioc->name, __func__, r);
3401 return r;
3402 }
3403
3404 facts = &ioc->facts;
3405 memset(facts, 0, sizeof(struct mpt2sas_facts));
3406 facts->MsgVersion = le16_to_cpu(mpi_reply.MsgVersion);
3407 facts->HeaderVersion = le16_to_cpu(mpi_reply.HeaderVersion);
3408 facts->VP_ID = mpi_reply.VP_ID;
3409 facts->VF_ID = mpi_reply.VF_ID;
3410 facts->IOCExceptions = le16_to_cpu(mpi_reply.IOCExceptions);
3411 facts->MaxChainDepth = mpi_reply.MaxChainDepth;
3412 facts->WhoInit = mpi_reply.WhoInit;
3413 facts->NumberOfPorts = mpi_reply.NumberOfPorts;
3414 facts->MaxMSIxVectors = mpi_reply.MaxMSIxVectors;
3415 facts->RequestCredit = le16_to_cpu(mpi_reply.RequestCredit);
3416 facts->MaxReplyDescriptorPostQueueDepth =
3417 le16_to_cpu(mpi_reply.MaxReplyDescriptorPostQueueDepth);
3418 facts->ProductID = le16_to_cpu(mpi_reply.ProductID);
3419 facts->IOCCapabilities = le32_to_cpu(mpi_reply.IOCCapabilities);
3420 if ((facts->IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_INTEGRATED_RAID))
3421 ioc->ir_firmware = 1;
3422 facts->FWVersion.Word = le32_to_cpu(mpi_reply.FWVersion.Word);
3423 facts->IOCRequestFrameSize =
3424 le16_to_cpu(mpi_reply.IOCRequestFrameSize);
3425 facts->MaxInitiators = le16_to_cpu(mpi_reply.MaxInitiators);
3426 facts->MaxTargets = le16_to_cpu(mpi_reply.MaxTargets);
3427 ioc->shost->max_id = -1;
3428 facts->MaxSasExpanders = le16_to_cpu(mpi_reply.MaxSasExpanders);
3429 facts->MaxEnclosures = le16_to_cpu(mpi_reply.MaxEnclosures);
3430 facts->ProtocolFlags = le16_to_cpu(mpi_reply.ProtocolFlags);
3431 facts->HighPriorityCredit =
3432 le16_to_cpu(mpi_reply.HighPriorityCredit);
3433 facts->ReplyFrameSize = mpi_reply.ReplyFrameSize;
3434 facts->MaxDevHandle = le16_to_cpu(mpi_reply.MaxDevHandle);
3435
3436 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "hba queue depth(%d), "
3437 "max chains per io(%d)\n", ioc->name, facts->RequestCredit,
3438 facts->MaxChainDepth));
3439 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "request frame size(%d), "
3440 "reply frame size(%d)\n", ioc->name,
3441 facts->IOCRequestFrameSize * 4, facts->ReplyFrameSize * 4));
3442 return 0;
3443}
3444
3445/**
3446 * _base_send_ioc_init - send ioc_init to firmware
3447 * @ioc: per adapter object
3448 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3449 *
3450 * Returns 0 for success, non-zero for failure.
3451 */
3452static int
3453_base_send_ioc_init(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3454{
3455 Mpi2IOCInitRequest_t mpi_request;
3456 Mpi2IOCInitReply_t mpi_reply;
3457 int r;
3458 struct timeval current_time;
3459 u16 ioc_status;
3460
3461 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3462 __func__));
3463
3464 memset(&mpi_request, 0, sizeof(Mpi2IOCInitRequest_t));
3465 mpi_request.Function = MPI2_FUNCTION_IOC_INIT;
3466 mpi_request.WhoInit = MPI2_WHOINIT_HOST_DRIVER;
3467 mpi_request.VF_ID = 0; /* TODO */
3468 mpi_request.VP_ID = 0;
3469 mpi_request.MsgVersion = cpu_to_le16(MPI2_VERSION);
3470 mpi_request.HeaderVersion = cpu_to_le16(MPI2_HEADER_VERSION);
3471
3472 if (_base_is_controller_msix_enabled(ioc))
3473 mpi_request.HostMSIxVectors = ioc->reply_queue_count;
3474 mpi_request.SystemRequestFrameSize = cpu_to_le16(ioc->request_sz/4);
3475 mpi_request.ReplyDescriptorPostQueueDepth =
3476 cpu_to_le16(ioc->reply_post_queue_depth);
3477 mpi_request.ReplyFreeQueueDepth =
3478 cpu_to_le16(ioc->reply_free_queue_depth);
3479
3480 mpi_request.SenseBufferAddressHigh =
3481 cpu_to_le32((u64)ioc->sense_dma >> 32);
3482 mpi_request.SystemReplyAddressHigh =
3483 cpu_to_le32((u64)ioc->reply_dma >> 32);
3484 mpi_request.SystemRequestFrameBaseAddress =
3485 cpu_to_le64((u64)ioc->request_dma);
3486 mpi_request.ReplyFreeQueueAddress =
3487 cpu_to_le64((u64)ioc->reply_free_dma);
3488 mpi_request.ReplyDescriptorPostQueueAddress =
3489 cpu_to_le64((u64)ioc->reply_post_free_dma);
3490
3491
3492 /* This time stamp specifies number of milliseconds
3493 * since epoch ~ midnight January 1, 1970.
3494 */
3495 do_gettimeofday(¤t_time);
3496 mpi_request.TimeStamp = cpu_to_le64((u64)current_time.tv_sec * 1000 +
3497 (current_time.tv_usec / 1000));
3498
3499 if (ioc->logging_level & MPT_DEBUG_INIT) {
3500 __le32 *mfp;
3501 int i;
3502
3503 mfp = (__le32 *)&mpi_request;
3504 printk(KERN_INFO "\toffset:data\n");
3505 for (i = 0; i < sizeof(Mpi2IOCInitRequest_t)/4; i++)
3506 printk(KERN_INFO "\t[0x%02x]:%08x\n", i*4,
3507 le32_to_cpu(mfp[i]));
3508 }
3509
3510 r = _base_handshake_req_reply_wait(ioc,
3511 sizeof(Mpi2IOCInitRequest_t), (u32 *)&mpi_request,
3512 sizeof(Mpi2IOCInitReply_t), (u16 *)&mpi_reply, 10,
3513 sleep_flag);
3514
3515 if (r != 0) {
3516 printk(MPT2SAS_ERR_FMT "%s: handshake failed (r=%d)\n",
3517 ioc->name, __func__, r);
3518 return r;
3519 }
3520
3521 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
3522 if (ioc_status != MPI2_IOCSTATUS_SUCCESS ||
3523 mpi_reply.IOCLogInfo) {
3524 printk(MPT2SAS_ERR_FMT "%s: failed\n", ioc->name, __func__);
3525 r = -EIO;
3526 }
3527
3528 return 0;
3529}
3530
3531/**
3532 * mpt2sas_port_enable_done - command completion routine for port enable
3533 * @ioc: per adapter object
3534 * @smid: system request message index
3535 * @msix_index: MSIX table index supplied by the OS
3536 * @reply: reply message frame(lower 32bit addr)
3537 *
3538 * Return 1 meaning mf should be freed from _base_interrupt
3539 * 0 means the mf is freed from this function.
3540 */
3541u8
3542mpt2sas_port_enable_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
3543 u32 reply)
3544{
3545 MPI2DefaultReply_t *mpi_reply;
3546 u16 ioc_status;
3547
3548 mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply);
3549 if (mpi_reply && mpi_reply->Function == MPI2_FUNCTION_EVENT_ACK)
3550 return 1;
3551
3552 if (ioc->port_enable_cmds.status == MPT2_CMD_NOT_USED)
3553 return 1;
3554
3555 ioc->port_enable_cmds.status |= MPT2_CMD_COMPLETE;
3556 if (mpi_reply) {
3557 ioc->port_enable_cmds.status |= MPT2_CMD_REPLY_VALID;
3558 memcpy(ioc->port_enable_cmds.reply, mpi_reply,
3559 mpi_reply->MsgLength*4);
3560 }
3561 ioc->port_enable_cmds.status &= ~MPT2_CMD_PENDING;
3562
3563 ioc_status = le16_to_cpu(mpi_reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
3564
3565 if (ioc_status != MPI2_IOCSTATUS_SUCCESS)
3566 ioc->port_enable_failed = 1;
3567
3568 if (ioc->is_driver_loading) {
3569 if (ioc_status == MPI2_IOCSTATUS_SUCCESS) {
3570 mpt2sas_port_enable_complete(ioc);
3571 return 1;
3572 } else {
3573 ioc->start_scan_failed = ioc_status;
3574 ioc->start_scan = 0;
3575 return 1;
3576 }
3577 }
3578 complete(&ioc->port_enable_cmds.done);
3579 return 1;
3580}
3581
3582
3583/**
3584 * _base_send_port_enable - send port_enable(discovery stuff) to firmware
3585 * @ioc: per adapter object
3586 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3587 *
3588 * Returns 0 for success, non-zero for failure.
3589 */
3590static int
3591_base_send_port_enable(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3592{
3593 Mpi2PortEnableRequest_t *mpi_request;
3594 Mpi2PortEnableReply_t *mpi_reply;
3595 unsigned long timeleft;
3596 int r = 0;
3597 u16 smid;
3598 u16 ioc_status;
3599
3600 printk(MPT2SAS_INFO_FMT "sending port enable !!\n", ioc->name);
3601
3602 if (ioc->port_enable_cmds.status & MPT2_CMD_PENDING) {
3603 printk(MPT2SAS_ERR_FMT "%s: internal command already in use\n",
3604 ioc->name, __func__);
3605 return -EAGAIN;
3606 }
3607
3608 smid = mpt2sas_base_get_smid(ioc, ioc->port_enable_cb_idx);
3609 if (!smid) {
3610 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3611 ioc->name, __func__);
3612 return -EAGAIN;
3613 }
3614
3615 ioc->port_enable_cmds.status = MPT2_CMD_PENDING;
3616 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3617 ioc->port_enable_cmds.smid = smid;
3618 memset(mpi_request, 0, sizeof(Mpi2PortEnableRequest_t));
3619 mpi_request->Function = MPI2_FUNCTION_PORT_ENABLE;
3620
3621 init_completion(&ioc->port_enable_cmds.done);
3622 mpt2sas_base_put_smid_default(ioc, smid);
3623 timeleft = wait_for_completion_timeout(&ioc->port_enable_cmds.done,
3624 300*HZ);
3625 if (!(ioc->port_enable_cmds.status & MPT2_CMD_COMPLETE)) {
3626 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
3627 ioc->name, __func__);
3628 _debug_dump_mf(mpi_request,
3629 sizeof(Mpi2PortEnableRequest_t)/4);
3630 if (ioc->port_enable_cmds.status & MPT2_CMD_RESET)
3631 r = -EFAULT;
3632 else
3633 r = -ETIME;
3634 goto out;
3635 }
3636 mpi_reply = ioc->port_enable_cmds.reply;
3637
3638 ioc_status = le16_to_cpu(mpi_reply->IOCStatus) & MPI2_IOCSTATUS_MASK;
3639 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
3640 printk(MPT2SAS_ERR_FMT "%s: failed with (ioc_status=0x%08x)\n",
3641 ioc->name, __func__, ioc_status);
3642 r = -EFAULT;
3643 goto out;
3644 }
3645 out:
3646 ioc->port_enable_cmds.status = MPT2_CMD_NOT_USED;
3647 printk(MPT2SAS_INFO_FMT "port enable: %s\n", ioc->name, ((r == 0) ?
3648 "SUCCESS" : "FAILED"));
3649 return r;
3650}
3651
3652/**
3653 * mpt2sas_port_enable - initiate firmware discovery (don't wait for reply)
3654 * @ioc: per adapter object
3655 *
3656 * Returns 0 for success, non-zero for failure.
3657 */
3658int
3659mpt2sas_port_enable(struct MPT2SAS_ADAPTER *ioc)
3660{
3661 Mpi2PortEnableRequest_t *mpi_request;
3662 u16 smid;
3663
3664 printk(MPT2SAS_INFO_FMT "sending port enable !!\n", ioc->name);
3665
3666 if (ioc->port_enable_cmds.status & MPT2_CMD_PENDING) {
3667 printk(MPT2SAS_ERR_FMT "%s: internal command already in use\n",
3668 ioc->name, __func__);
3669 return -EAGAIN;
3670 }
3671
3672 smid = mpt2sas_base_get_smid(ioc, ioc->port_enable_cb_idx);
3673 if (!smid) {
3674 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3675 ioc->name, __func__);
3676 return -EAGAIN;
3677 }
3678
3679 ioc->port_enable_cmds.status = MPT2_CMD_PENDING;
3680 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3681 ioc->port_enable_cmds.smid = smid;
3682 memset(mpi_request, 0, sizeof(Mpi2PortEnableRequest_t));
3683 mpi_request->Function = MPI2_FUNCTION_PORT_ENABLE;
3684
3685 mpt2sas_base_put_smid_default(ioc, smid);
3686 return 0;
3687}
3688
3689/**
3690 * _base_determine_wait_on_discovery - desposition
3691 * @ioc: per adapter object
3692 *
3693 * Decide whether to wait on discovery to complete. Used to either
3694 * locate boot device, or report volumes ahead of physical devices.
3695 *
3696 * Returns 1 for wait, 0 for don't wait
3697 */
3698static int
3699_base_determine_wait_on_discovery(struct MPT2SAS_ADAPTER *ioc)
3700{
3701 /* We wait for discovery to complete if IR firmware is loaded.
3702 * The sas topology events arrive before PD events, so we need time to
3703 * turn on the bit in ioc->pd_handles to indicate PD
3704 * Also, it maybe required to report Volumes ahead of physical
3705 * devices when MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING is set.
3706 */
3707 if (ioc->ir_firmware)
3708 return 1;
3709
3710 /* if no Bios, then we don't need to wait */
3711 if (!ioc->bios_pg3.BiosVersion)
3712 return 0;
3713
3714 /* Bios is present, then we drop down here.
3715 *
3716 * If there any entries in the Bios Page 2, then we wait
3717 * for discovery to complete.
3718 */
3719
3720 /* Current Boot Device */
3721 if ((ioc->bios_pg2.CurrentBootDeviceForm &
3722 MPI2_BIOSPAGE2_FORM_MASK) ==
3723 MPI2_BIOSPAGE2_FORM_NO_DEVICE_SPECIFIED &&
3724 /* Request Boot Device */
3725 (ioc->bios_pg2.ReqBootDeviceForm &
3726 MPI2_BIOSPAGE2_FORM_MASK) ==
3727 MPI2_BIOSPAGE2_FORM_NO_DEVICE_SPECIFIED &&
3728 /* Alternate Request Boot Device */
3729 (ioc->bios_pg2.ReqAltBootDeviceForm &
3730 MPI2_BIOSPAGE2_FORM_MASK) ==
3731 MPI2_BIOSPAGE2_FORM_NO_DEVICE_SPECIFIED)
3732 return 0;
3733
3734 return 1;
3735}
3736
3737
3738/**
3739 * _base_unmask_events - turn on notification for this event
3740 * @ioc: per adapter object
3741 * @event: firmware event
3742 *
3743 * The mask is stored in ioc->event_masks.
3744 */
3745static void
3746_base_unmask_events(struct MPT2SAS_ADAPTER *ioc, u16 event)
3747{
3748 u32 desired_event;
3749
3750 if (event >= 128)
3751 return;
3752
3753 desired_event = (1 << (event % 32));
3754
3755 if (event < 32)
3756 ioc->event_masks[0] &= ~desired_event;
3757 else if (event < 64)
3758 ioc->event_masks[1] &= ~desired_event;
3759 else if (event < 96)
3760 ioc->event_masks[2] &= ~desired_event;
3761 else if (event < 128)
3762 ioc->event_masks[3] &= ~desired_event;
3763}
3764
3765/**
3766 * _base_event_notification - send event notification
3767 * @ioc: per adapter object
3768 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3769 *
3770 * Returns 0 for success, non-zero for failure.
3771 */
3772static int
3773_base_event_notification(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3774{
3775 Mpi2EventNotificationRequest_t *mpi_request;
3776 unsigned long timeleft;
3777 u16 smid;
3778 int r = 0;
3779 int i;
3780
3781 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3782 __func__));
3783
3784 if (ioc->base_cmds.status & MPT2_CMD_PENDING) {
3785 printk(MPT2SAS_ERR_FMT "%s: internal command already in use\n",
3786 ioc->name, __func__);
3787 return -EAGAIN;
3788 }
3789
3790 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
3791 if (!smid) {
3792 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3793 ioc->name, __func__);
3794 return -EAGAIN;
3795 }
3796 ioc->base_cmds.status = MPT2_CMD_PENDING;
3797 mpi_request = mpt2sas_base_get_msg_frame(ioc, smid);
3798 ioc->base_cmds.smid = smid;
3799 memset(mpi_request, 0, sizeof(Mpi2EventNotificationRequest_t));
3800 mpi_request->Function = MPI2_FUNCTION_EVENT_NOTIFICATION;
3801 mpi_request->VF_ID = 0; /* TODO */
3802 mpi_request->VP_ID = 0;
3803 for (i = 0; i < MPI2_EVENT_NOTIFY_EVENTMASK_WORDS; i++)
3804 mpi_request->EventMasks[i] =
3805 cpu_to_le32(ioc->event_masks[i]);
3806 init_completion(&ioc->base_cmds.done);
3807 mpt2sas_base_put_smid_default(ioc, smid);
3808 timeleft = wait_for_completion_timeout(&ioc->base_cmds.done, 30*HZ);
3809 if (!(ioc->base_cmds.status & MPT2_CMD_COMPLETE)) {
3810 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
3811 ioc->name, __func__);
3812 _debug_dump_mf(mpi_request,
3813 sizeof(Mpi2EventNotificationRequest_t)/4);
3814 if (ioc->base_cmds.status & MPT2_CMD_RESET)
3815 r = -EFAULT;
3816 else
3817 r = -ETIME;
3818 } else
3819 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: complete\n",
3820 ioc->name, __func__));
3821 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3822 return r;
3823}
3824
3825/**
3826 * mpt2sas_base_validate_event_type - validating event types
3827 * @ioc: per adapter object
3828 * @event: firmware event
3829 *
3830 * This will turn on firmware event notification when application
3831 * ask for that event. We don't mask events that are already enabled.
3832 */
3833void
3834mpt2sas_base_validate_event_type(struct MPT2SAS_ADAPTER *ioc, u32 *event_type)
3835{
3836 int i, j;
3837 u32 event_mask, desired_event;
3838 u8 send_update_to_fw;
3839
3840 for (i = 0, send_update_to_fw = 0; i <
3841 MPI2_EVENT_NOTIFY_EVENTMASK_WORDS; i++) {
3842 event_mask = ~event_type[i];
3843 desired_event = 1;
3844 for (j = 0; j < 32; j++) {
3845 if (!(event_mask & desired_event) &&
3846 (ioc->event_masks[i] & desired_event)) {
3847 ioc->event_masks[i] &= ~desired_event;
3848 send_update_to_fw = 1;
3849 }
3850 desired_event = (desired_event << 1);
3851 }
3852 }
3853
3854 if (!send_update_to_fw)
3855 return;
3856
3857 mutex_lock(&ioc->base_cmds.mutex);
3858 _base_event_notification(ioc, CAN_SLEEP);
3859 mutex_unlock(&ioc->base_cmds.mutex);
3860}
3861
3862/**
3863 * _base_diag_reset - the "big hammer" start of day reset
3864 * @ioc: per adapter object
3865 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3866 *
3867 * Returns 0 for success, non-zero for failure.
3868 */
3869static int
3870_base_diag_reset(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3871{
3872 u32 host_diagnostic;
3873 u32 ioc_state;
3874 u32 count;
3875 u32 hcb_size;
3876
3877 printk(MPT2SAS_INFO_FMT "sending diag reset !!\n", ioc->name);
3878 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "clear interrupts\n",
3879 ioc->name));
3880
3881 count = 0;
3882 do {
3883 /* Write magic sequence to WriteSequence register
3884 * Loop until in diagnostic mode
3885 */
3886 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "write magic "
3887 "sequence\n", ioc->name));
3888 writel(MPI2_WRSEQ_FLUSH_KEY_VALUE, &ioc->chip->WriteSequence);
3889 writel(MPI2_WRSEQ_1ST_KEY_VALUE, &ioc->chip->WriteSequence);
3890 writel(MPI2_WRSEQ_2ND_KEY_VALUE, &ioc->chip->WriteSequence);
3891 writel(MPI2_WRSEQ_3RD_KEY_VALUE, &ioc->chip->WriteSequence);
3892 writel(MPI2_WRSEQ_4TH_KEY_VALUE, &ioc->chip->WriteSequence);
3893 writel(MPI2_WRSEQ_5TH_KEY_VALUE, &ioc->chip->WriteSequence);
3894 writel(MPI2_WRSEQ_6TH_KEY_VALUE, &ioc->chip->WriteSequence);
3895
3896 /* wait 100 msec */
3897 if (sleep_flag == CAN_SLEEP)
3898 msleep(100);
3899 else
3900 mdelay(100);
3901
3902 if (count++ > 20)
3903 goto out;
3904
3905 host_diagnostic = readl(&ioc->chip->HostDiagnostic);
3906 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "wrote magic "
3907 "sequence: count(%d), host_diagnostic(0x%08x)\n",
3908 ioc->name, count, host_diagnostic));
3909
3910 } while ((host_diagnostic & MPI2_DIAG_DIAG_WRITE_ENABLE) == 0);
3911
3912 hcb_size = readl(&ioc->chip->HCBSize);
3913
3914 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "diag reset: issued\n",
3915 ioc->name));
3916 writel(host_diagnostic | MPI2_DIAG_RESET_ADAPTER,
3917 &ioc->chip->HostDiagnostic);
3918
3919 /* don't access any registers for 50 milliseconds */
3920 msleep(50);
3921
3922 /* 300 second max wait */
3923 for (count = 0; count < 3000000 ; count++) {
3924
3925 host_diagnostic = readl(&ioc->chip->HostDiagnostic);
3926
3927 if (host_diagnostic == 0xFFFFFFFF)
3928 goto out;
3929 if (!(host_diagnostic & MPI2_DIAG_RESET_ADAPTER))
3930 break;
3931
3932 /* wait 100 msec */
3933 if (sleep_flag == CAN_SLEEP)
3934 msleep(1);
3935 else
3936 mdelay(1);
3937 }
3938
3939 if (host_diagnostic & MPI2_DIAG_HCB_MODE) {
3940
3941 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "restart the adapter "
3942 "assuming the HCB Address points to good F/W\n",
3943 ioc->name));
3944 host_diagnostic &= ~MPI2_DIAG_BOOT_DEVICE_SELECT_MASK;
3945 host_diagnostic |= MPI2_DIAG_BOOT_DEVICE_SELECT_HCDW;
3946 writel(host_diagnostic, &ioc->chip->HostDiagnostic);
3947
3948 drsprintk(ioc, printk(MPT2SAS_INFO_FMT
3949 "re-enable the HCDW\n", ioc->name));
3950 writel(hcb_size | MPI2_HCB_SIZE_HCB_ENABLE,
3951 &ioc->chip->HCBSize);
3952 }
3953
3954 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "restart the adapter\n",
3955 ioc->name));
3956 writel(host_diagnostic & ~MPI2_DIAG_HOLD_IOC_RESET,
3957 &ioc->chip->HostDiagnostic);
3958
3959 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "disable writes to the "
3960 "diagnostic register\n", ioc->name));
3961 writel(MPI2_WRSEQ_FLUSH_KEY_VALUE, &ioc->chip->WriteSequence);
3962
3963 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "Wait for FW to go to the "
3964 "READY state\n", ioc->name));
3965 ioc_state = _base_wait_on_iocstate(ioc, MPI2_IOC_STATE_READY, 20,
3966 sleep_flag);
3967 if (ioc_state) {
3968 printk(MPT2SAS_ERR_FMT "%s: failed going to ready state "
3969 " (ioc_state=0x%x)\n", ioc->name, __func__, ioc_state);
3970 goto out;
3971 }
3972
3973 printk(MPT2SAS_INFO_FMT "diag reset: SUCCESS\n", ioc->name);
3974 return 0;
3975
3976 out:
3977 printk(MPT2SAS_ERR_FMT "diag reset: FAILED\n", ioc->name);
3978 return -EFAULT;
3979}
3980
3981/**
3982 * _base_make_ioc_ready - put controller in READY state
3983 * @ioc: per adapter object
3984 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3985 * @type: FORCE_BIG_HAMMER or SOFT_RESET
3986 *
3987 * Returns 0 for success, non-zero for failure.
3988 */
3989static int
3990_base_make_ioc_ready(struct MPT2SAS_ADAPTER *ioc, int sleep_flag,
3991 enum reset_type type)
3992{
3993 u32 ioc_state;
3994 int rc;
3995
3996 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
3997 __func__));
3998
3999 if (ioc->pci_error_recovery)
4000 return 0;
4001
4002 ioc_state = mpt2sas_base_get_iocstate(ioc, 0);
4003 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: ioc_state(0x%08x)\n",
4004 ioc->name, __func__, ioc_state));
4005
4006 if ((ioc_state & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_READY)
4007 return 0;
4008
4009 if (ioc_state & MPI2_DOORBELL_USED) {
4010 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "unexpected doorbell "
4011 "active!\n", ioc->name));
4012 goto issue_diag_reset;
4013 }
4014
4015 if ((ioc_state & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) {
4016 mpt2sas_base_fault_info(ioc, ioc_state &
4017 MPI2_DOORBELL_DATA_MASK);
4018 goto issue_diag_reset;
4019 }
4020
4021 if (type == FORCE_BIG_HAMMER)
4022 goto issue_diag_reset;
4023
4024 if ((ioc_state & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_OPERATIONAL)
4025 if (!(_base_send_ioc_reset(ioc,
4026 MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET, 15, CAN_SLEEP))) {
4027 ioc->ioc_reset_count++;
4028 return 0;
4029 }
4030
4031 issue_diag_reset:
4032 rc = _base_diag_reset(ioc, CAN_SLEEP);
4033 ioc->ioc_reset_count++;
4034 return rc;
4035}
4036
4037/**
4038 * _base_make_ioc_operational - put controller in OPERATIONAL state
4039 * @ioc: per adapter object
4040 * @sleep_flag: CAN_SLEEP or NO_SLEEP
4041 *
4042 * Returns 0 for success, non-zero for failure.
4043 */
4044static int
4045_base_make_ioc_operational(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
4046{
4047 int r, i;
4048 unsigned long flags;
4049 u32 reply_address;
4050 u16 smid;
4051 struct _tr_list *delayed_tr, *delayed_tr_next;
4052 u8 hide_flag;
4053 struct adapter_reply_queue *reply_q;
4054 long reply_post_free;
4055 u32 reply_post_free_sz;
4056
4057 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
4058 __func__));
4059
4060 /* clean the delayed target reset list */
4061 list_for_each_entry_safe(delayed_tr, delayed_tr_next,
4062 &ioc->delayed_tr_list, list) {
4063 list_del(&delayed_tr->list);
4064 kfree(delayed_tr);
4065 }
4066
4067 list_for_each_entry_safe(delayed_tr, delayed_tr_next,
4068 &ioc->delayed_tr_volume_list, list) {
4069 list_del(&delayed_tr->list);
4070 kfree(delayed_tr);
4071 }
4072
4073 /* initialize the scsi lookup free list */
4074 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
4075 INIT_LIST_HEAD(&ioc->free_list);
4076 smid = 1;
4077 for (i = 0; i < ioc->scsiio_depth; i++, smid++) {
4078 INIT_LIST_HEAD(&ioc->scsi_lookup[i].chain_list);
4079 ioc->scsi_lookup[i].cb_idx = 0xFF;
4080 ioc->scsi_lookup[i].smid = smid;
4081 ioc->scsi_lookup[i].scmd = NULL;
4082 ioc->scsi_lookup[i].direct_io = 0;
4083 list_add_tail(&ioc->scsi_lookup[i].tracker_list,
4084 &ioc->free_list);
4085 }
4086
4087 /* hi-priority queue */
4088 INIT_LIST_HEAD(&ioc->hpr_free_list);
4089 smid = ioc->hi_priority_smid;
4090 for (i = 0; i < ioc->hi_priority_depth; i++, smid++) {
4091 ioc->hpr_lookup[i].cb_idx = 0xFF;
4092 ioc->hpr_lookup[i].smid = smid;
4093 list_add_tail(&ioc->hpr_lookup[i].tracker_list,
4094 &ioc->hpr_free_list);
4095 }
4096
4097 /* internal queue */
4098 INIT_LIST_HEAD(&ioc->internal_free_list);
4099 smid = ioc->internal_smid;
4100 for (i = 0; i < ioc->internal_depth; i++, smid++) {
4101 ioc->internal_lookup[i].cb_idx = 0xFF;
4102 ioc->internal_lookup[i].smid = smid;
4103 list_add_tail(&ioc->internal_lookup[i].tracker_list,
4104 &ioc->internal_free_list);
4105 }
4106
4107 /* chain pool */
4108 INIT_LIST_HEAD(&ioc->free_chain_list);
4109 for (i = 0; i < ioc->chain_depth; i++)
4110 list_add_tail(&ioc->chain_lookup[i].tracker_list,
4111 &ioc->free_chain_list);
4112
4113 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
4114
4115 /* initialize Reply Free Queue */
4116 for (i = 0, reply_address = (u32)ioc->reply_dma ;
4117 i < ioc->reply_free_queue_depth ; i++, reply_address +=
4118 ioc->reply_sz)
4119 ioc->reply_free[i] = cpu_to_le32(reply_address);
4120
4121 /* initialize reply queues */
4122 if (ioc->is_driver_loading)
4123 _base_assign_reply_queues(ioc);
4124
4125 /* initialize Reply Post Free Queue */
4126 reply_post_free = (long)ioc->reply_post_free;
4127 reply_post_free_sz = ioc->reply_post_queue_depth *
4128 sizeof(Mpi2DefaultReplyDescriptor_t);
4129 list_for_each_entry(reply_q, &ioc->reply_queue_list, list) {
4130 reply_q->reply_post_host_index = 0;
4131 reply_q->reply_post_free = (Mpi2ReplyDescriptorsUnion_t *)
4132 reply_post_free;
4133 for (i = 0; i < ioc->reply_post_queue_depth; i++)
4134 reply_q->reply_post_free[i].Words =
4135 cpu_to_le64(ULLONG_MAX);
4136 if (!_base_is_controller_msix_enabled(ioc))
4137 goto skip_init_reply_post_free_queue;
4138 reply_post_free += reply_post_free_sz;
4139 }
4140 skip_init_reply_post_free_queue:
4141
4142 r = _base_send_ioc_init(ioc, sleep_flag);
4143 if (r)
4144 return r;
4145
4146 /* initialize reply free host index */
4147 ioc->reply_free_host_index = ioc->reply_free_queue_depth - 1;
4148 writel(ioc->reply_free_host_index, &ioc->chip->ReplyFreeHostIndex);
4149
4150 /* initialize reply post host index */
4151 list_for_each_entry(reply_q, &ioc->reply_queue_list, list) {
4152 writel(reply_q->msix_index << MPI2_RPHI_MSIX_INDEX_SHIFT,
4153 &ioc->chip->ReplyPostHostIndex);
4154 if (!_base_is_controller_msix_enabled(ioc))
4155 goto skip_init_reply_post_host_index;
4156 }
4157
4158 skip_init_reply_post_host_index:
4159
4160 _base_unmask_interrupts(ioc);
4161
4162 r = _base_event_notification(ioc, sleep_flag);
4163 if (r)
4164 return r;
4165
4166 if (sleep_flag == CAN_SLEEP)
4167 _base_static_config_pages(ioc);
4168
4169
4170 if (ioc->is_driver_loading) {
4171 if (ioc->is_warpdrive && ioc->manu_pg10.OEMIdentifier
4172 == 0x80) {
4173 hide_flag = (u8) (
4174 le32_to_cpu(ioc->manu_pg10.OEMSpecificFlags0) &
4175 MFG_PAGE10_HIDE_SSDS_MASK);
4176 if (hide_flag != MFG_PAGE10_HIDE_SSDS_MASK)
4177 ioc->mfg_pg10_hide_flag = hide_flag;
4178 }
4179 ioc->wait_for_discovery_to_complete =
4180 _base_determine_wait_on_discovery(ioc);
4181 return r; /* scan_start and scan_finished support */
4182 }
4183 r = _base_send_port_enable(ioc, sleep_flag);
4184 if (r)
4185 return r;
4186
4187 return r;
4188}
4189
4190/**
4191 * mpt2sas_base_free_resources - free resources controller resources (io/irq/memap)
4192 * @ioc: per adapter object
4193 *
4194 * Return nothing.
4195 */
4196void
4197mpt2sas_base_free_resources(struct MPT2SAS_ADAPTER *ioc)
4198{
4199 struct pci_dev *pdev = ioc->pdev;
4200
4201 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
4202 __func__));
4203
4204 _base_mask_interrupts(ioc);
4205 ioc->shost_recovery = 1;
4206 _base_make_ioc_ready(ioc, CAN_SLEEP, SOFT_RESET);
4207 ioc->shost_recovery = 0;
4208 _base_free_irq(ioc);
4209 _base_disable_msix(ioc);
4210 if (ioc->chip_phys)
4211 iounmap(ioc->chip);
4212 ioc->chip_phys = 0;
4213 pci_release_selected_regions(ioc->pdev, ioc->bars);
4214 pci_disable_pcie_error_reporting(pdev);
4215 pci_disable_device(pdev);
4216 return;
4217}
4218
4219/**
4220 * mpt2sas_base_attach - attach controller instance
4221 * @ioc: per adapter object
4222 *
4223 * Returns 0 for success, non-zero for failure.
4224 */
4225int
4226mpt2sas_base_attach(struct MPT2SAS_ADAPTER *ioc)
4227{
4228 int r, i;
4229 int cpu_id, last_cpu_id = 0;
4230
4231 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
4232 __func__));
4233
4234 /* setup cpu_msix_table */
4235 ioc->cpu_count = num_online_cpus();
4236 for_each_online_cpu(cpu_id)
4237 last_cpu_id = cpu_id;
4238 ioc->cpu_msix_table_sz = last_cpu_id + 1;
4239 ioc->cpu_msix_table = kzalloc(ioc->cpu_msix_table_sz, GFP_KERNEL);
4240 ioc->reply_queue_count = 1;
4241 if (!ioc->cpu_msix_table) {
4242 dfailprintk(ioc, printk(MPT2SAS_INFO_FMT "allocation for "
4243 "cpu_msix_table failed!!!\n", ioc->name));
4244 r = -ENOMEM;
4245 goto out_free_resources;
4246 }
4247
4248 if (ioc->is_warpdrive) {
4249 ioc->reply_post_host_index = kcalloc(ioc->cpu_msix_table_sz,
4250 sizeof(resource_size_t *), GFP_KERNEL);
4251 if (!ioc->reply_post_host_index) {
4252 dfailprintk(ioc, printk(MPT2SAS_INFO_FMT "allocation "
4253 "for cpu_msix_table failed!!!\n", ioc->name));
4254 r = -ENOMEM;
4255 goto out_free_resources;
4256 }
4257 }
4258
4259 r = mpt2sas_base_map_resources(ioc);
4260 if (r)
4261 goto out_free_resources;
4262
4263 if (ioc->is_warpdrive) {
4264 ioc->reply_post_host_index[0] =
4265 (resource_size_t *)&ioc->chip->ReplyPostHostIndex;
4266
4267 for (i = 1; i < ioc->cpu_msix_table_sz; i++)
4268 ioc->reply_post_host_index[i] = (resource_size_t *)
4269 ((u8 *)&ioc->chip->Doorbell + (0x4000 + ((i - 1)
4270 * 4)));
4271 }
4272
4273 pci_set_drvdata(ioc->pdev, ioc->shost);
4274 r = _base_get_ioc_facts(ioc, CAN_SLEEP);
4275 if (r)
4276 goto out_free_resources;
4277
4278 r = _base_make_ioc_ready(ioc, CAN_SLEEP, SOFT_RESET);
4279 if (r)
4280 goto out_free_resources;
4281
4282 ioc->pfacts = kcalloc(ioc->facts.NumberOfPorts,
4283 sizeof(struct mpt2sas_port_facts), GFP_KERNEL);
4284 if (!ioc->pfacts) {
4285 r = -ENOMEM;
4286 goto out_free_resources;
4287 }
4288
4289 for (i = 0 ; i < ioc->facts.NumberOfPorts; i++) {
4290 r = _base_get_port_facts(ioc, i, CAN_SLEEP);
4291 if (r)
4292 goto out_free_resources;
4293 }
4294
4295 r = _base_allocate_memory_pools(ioc, CAN_SLEEP);
4296 if (r)
4297 goto out_free_resources;
4298
4299 init_waitqueue_head(&ioc->reset_wq);
4300 /* allocate memory pd handle bitmask list */
4301 ioc->pd_handles_sz = (ioc->facts.MaxDevHandle / 8);
4302 if (ioc->facts.MaxDevHandle % 8)
4303 ioc->pd_handles_sz++;
4304 ioc->pd_handles = kzalloc(ioc->pd_handles_sz,
4305 GFP_KERNEL);
4306 if (!ioc->pd_handles) {
4307 r = -ENOMEM;
4308 goto out_free_resources;
4309 }
4310 ioc->blocking_handles = kzalloc(ioc->pd_handles_sz,
4311 GFP_KERNEL);
4312 if (!ioc->blocking_handles) {
4313 r = -ENOMEM;
4314 goto out_free_resources;
4315 }
4316 ioc->fwfault_debug = mpt2sas_fwfault_debug;
4317
4318 /* base internal command bits */
4319 mutex_init(&ioc->base_cmds.mutex);
4320 ioc->base_cmds.reply = kzalloc(ioc->reply_sz, GFP_KERNEL);
4321 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
4322
4323 /* port_enable command bits */
4324 ioc->port_enable_cmds.reply = kzalloc(ioc->reply_sz, GFP_KERNEL);
4325 ioc->port_enable_cmds.status = MPT2_CMD_NOT_USED;
4326
4327 /* transport internal command bits */
4328 ioc->transport_cmds.reply = kzalloc(ioc->reply_sz, GFP_KERNEL);
4329 ioc->transport_cmds.status = MPT2_CMD_NOT_USED;
4330 mutex_init(&ioc->transport_cmds.mutex);
4331
4332 /* scsih internal command bits */
4333 ioc->scsih_cmds.reply = kzalloc(ioc->reply_sz, GFP_KERNEL);
4334 ioc->scsih_cmds.status = MPT2_CMD_NOT_USED;
4335 mutex_init(&ioc->scsih_cmds.mutex);
4336
4337 /* task management internal command bits */
4338 ioc->tm_cmds.reply = kzalloc(ioc->reply_sz, GFP_KERNEL);
4339 ioc->tm_cmds.status = MPT2_CMD_NOT_USED;
4340 mutex_init(&ioc->tm_cmds.mutex);
4341
4342 /* config page internal command bits */
4343 ioc->config_cmds.reply = kzalloc(ioc->reply_sz, GFP_KERNEL);
4344 ioc->config_cmds.status = MPT2_CMD_NOT_USED;
4345 mutex_init(&ioc->config_cmds.mutex);
4346
4347 /* ctl module internal command bits */
4348 ioc->ctl_cmds.reply = kzalloc(ioc->reply_sz, GFP_KERNEL);
4349 ioc->ctl_cmds.sense = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_KERNEL);
4350 ioc->ctl_cmds.status = MPT2_CMD_NOT_USED;
4351 mutex_init(&ioc->ctl_cmds.mutex);
4352
4353 if (!ioc->base_cmds.reply || !ioc->transport_cmds.reply ||
4354 !ioc->scsih_cmds.reply || !ioc->tm_cmds.reply ||
4355 !ioc->config_cmds.reply || !ioc->ctl_cmds.reply ||
4356 !ioc->ctl_cmds.sense) {
4357 r = -ENOMEM;
4358 goto out_free_resources;
4359 }
4360
4361 if (!ioc->base_cmds.reply || !ioc->transport_cmds.reply ||
4362 !ioc->scsih_cmds.reply || !ioc->tm_cmds.reply ||
4363 !ioc->config_cmds.reply || !ioc->ctl_cmds.reply) {
4364 r = -ENOMEM;
4365 goto out_free_resources;
4366 }
4367
4368 for (i = 0; i < MPI2_EVENT_NOTIFY_EVENTMASK_WORDS; i++)
4369 ioc->event_masks[i] = -1;
4370
4371 /* here we enable the events we care about */
4372 _base_unmask_events(ioc, MPI2_EVENT_SAS_DISCOVERY);
4373 _base_unmask_events(ioc, MPI2_EVENT_SAS_BROADCAST_PRIMITIVE);
4374 _base_unmask_events(ioc, MPI2_EVENT_SAS_TOPOLOGY_CHANGE_LIST);
4375 _base_unmask_events(ioc, MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE);
4376 _base_unmask_events(ioc, MPI2_EVENT_SAS_ENCL_DEVICE_STATUS_CHANGE);
4377 _base_unmask_events(ioc, MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST);
4378 _base_unmask_events(ioc, MPI2_EVENT_IR_VOLUME);
4379 _base_unmask_events(ioc, MPI2_EVENT_IR_PHYSICAL_DISK);
4380 _base_unmask_events(ioc, MPI2_EVENT_IR_OPERATION_STATUS);
4381 _base_unmask_events(ioc, MPI2_EVENT_LOG_ENTRY_ADDED);
4382 r = _base_make_ioc_operational(ioc, CAN_SLEEP);
4383 if (r)
4384 goto out_free_resources;
4385
4386 if (missing_delay[0] != -1 && missing_delay[1] != -1)
4387 _base_update_missing_delay(ioc, missing_delay[0],
4388 missing_delay[1]);
4389
4390 return 0;
4391
4392 out_free_resources:
4393
4394 ioc->remove_host = 1;
4395 mpt2sas_base_free_resources(ioc);
4396 _base_release_memory_pools(ioc);
4397 pci_set_drvdata(ioc->pdev, NULL);
4398 kfree(ioc->cpu_msix_table);
4399 if (ioc->is_warpdrive)
4400 kfree(ioc->reply_post_host_index);
4401 kfree(ioc->pd_handles);
4402 kfree(ioc->blocking_handles);
4403 kfree(ioc->tm_cmds.reply);
4404 kfree(ioc->transport_cmds.reply);
4405 kfree(ioc->scsih_cmds.reply);
4406 kfree(ioc->config_cmds.reply);
4407 kfree(ioc->base_cmds.reply);
4408 kfree(ioc->port_enable_cmds.reply);
4409 kfree(ioc->ctl_cmds.reply);
4410 kfree(ioc->ctl_cmds.sense);
4411 kfree(ioc->pfacts);
4412 ioc->ctl_cmds.reply = NULL;
4413 ioc->base_cmds.reply = NULL;
4414 ioc->tm_cmds.reply = NULL;
4415 ioc->scsih_cmds.reply = NULL;
4416 ioc->transport_cmds.reply = NULL;
4417 ioc->config_cmds.reply = NULL;
4418 ioc->pfacts = NULL;
4419 return r;
4420}
4421
4422
4423/**
4424 * mpt2sas_base_detach - remove controller instance
4425 * @ioc: per adapter object
4426 *
4427 * Return nothing.
4428 */
4429void
4430mpt2sas_base_detach(struct MPT2SAS_ADAPTER *ioc)
4431{
4432
4433 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
4434 __func__));
4435
4436 mpt2sas_base_stop_watchdog(ioc);
4437 mpt2sas_base_free_resources(ioc);
4438 _base_release_memory_pools(ioc);
4439 pci_set_drvdata(ioc->pdev, NULL);
4440 kfree(ioc->cpu_msix_table);
4441 if (ioc->is_warpdrive)
4442 kfree(ioc->reply_post_host_index);
4443 kfree(ioc->pd_handles);
4444 kfree(ioc->blocking_handles);
4445 kfree(ioc->pfacts);
4446 kfree(ioc->ctl_cmds.reply);
4447 kfree(ioc->ctl_cmds.sense);
4448 kfree(ioc->base_cmds.reply);
4449 kfree(ioc->port_enable_cmds.reply);
4450 kfree(ioc->tm_cmds.reply);
4451 kfree(ioc->transport_cmds.reply);
4452 kfree(ioc->scsih_cmds.reply);
4453 kfree(ioc->config_cmds.reply);
4454}
4455
4456/**
4457 * _base_reset_handler - reset callback handler (for base)
4458 * @ioc: per adapter object
4459 * @reset_phase: phase
4460 *
4461 * The handler for doing any required cleanup or initialization.
4462 *
4463 * The reset phase can be MPT2_IOC_PRE_RESET, MPT2_IOC_AFTER_RESET,
4464 * MPT2_IOC_DONE_RESET
4465 *
4466 * Return nothing.
4467 */
4468static void
4469_base_reset_handler(struct MPT2SAS_ADAPTER *ioc, int reset_phase)
4470{
4471 mpt2sas_scsih_reset_handler(ioc, reset_phase);
4472 mpt2sas_ctl_reset_handler(ioc, reset_phase);
4473 switch (reset_phase) {
4474 case MPT2_IOC_PRE_RESET:
4475 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
4476 "MPT2_IOC_PRE_RESET\n", ioc->name, __func__));
4477 break;
4478 case MPT2_IOC_AFTER_RESET:
4479 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
4480 "MPT2_IOC_AFTER_RESET\n", ioc->name, __func__));
4481 if (ioc->transport_cmds.status & MPT2_CMD_PENDING) {
4482 ioc->transport_cmds.status |= MPT2_CMD_RESET;
4483 mpt2sas_base_free_smid(ioc, ioc->transport_cmds.smid);
4484 complete(&ioc->transport_cmds.done);
4485 }
4486 if (ioc->base_cmds.status & MPT2_CMD_PENDING) {
4487 ioc->base_cmds.status |= MPT2_CMD_RESET;
4488 mpt2sas_base_free_smid(ioc, ioc->base_cmds.smid);
4489 complete(&ioc->base_cmds.done);
4490 }
4491 if (ioc->port_enable_cmds.status & MPT2_CMD_PENDING) {
4492 ioc->port_enable_failed = 1;
4493 ioc->port_enable_cmds.status |= MPT2_CMD_RESET;
4494 mpt2sas_base_free_smid(ioc, ioc->port_enable_cmds.smid);
4495 if (ioc->is_driver_loading) {
4496 ioc->start_scan_failed =
4497 MPI2_IOCSTATUS_INTERNAL_ERROR;
4498 ioc->start_scan = 0;
4499 ioc->port_enable_cmds.status =
4500 MPT2_CMD_NOT_USED;
4501 } else
4502 complete(&ioc->port_enable_cmds.done);
4503
4504 }
4505 if (ioc->config_cmds.status & MPT2_CMD_PENDING) {
4506 ioc->config_cmds.status |= MPT2_CMD_RESET;
4507 mpt2sas_base_free_smid(ioc, ioc->config_cmds.smid);
4508 ioc->config_cmds.smid = USHRT_MAX;
4509 complete(&ioc->config_cmds.done);
4510 }
4511 break;
4512 case MPT2_IOC_DONE_RESET:
4513 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
4514 "MPT2_IOC_DONE_RESET\n", ioc->name, __func__));
4515 break;
4516 }
4517}
4518
4519/**
4520 * _wait_for_commands_to_complete - reset controller
4521 * @ioc: Pointer to MPT_ADAPTER structure
4522 * @sleep_flag: CAN_SLEEP or NO_SLEEP
4523 *
4524 * This function waiting(3s) for all pending commands to complete
4525 * prior to putting controller in reset.
4526 */
4527static void
4528_wait_for_commands_to_complete(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
4529{
4530 u32 ioc_state;
4531 unsigned long flags;
4532 u16 i;
4533
4534 ioc->pending_io_count = 0;
4535 if (sleep_flag != CAN_SLEEP)
4536 return;
4537
4538 ioc_state = mpt2sas_base_get_iocstate(ioc, 0);
4539 if ((ioc_state & MPI2_IOC_STATE_MASK) != MPI2_IOC_STATE_OPERATIONAL)
4540 return;
4541
4542 /* pending command count */
4543 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
4544 for (i = 0; i < ioc->scsiio_depth; i++)
4545 if (ioc->scsi_lookup[i].cb_idx != 0xFF)
4546 ioc->pending_io_count++;
4547 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
4548
4549 if (!ioc->pending_io_count)
4550 return;
4551
4552 /* wait for pending commands to complete */
4553 wait_event_timeout(ioc->reset_wq, ioc->pending_io_count == 0, 10 * HZ);
4554}
4555
4556/**
4557 * mpt2sas_base_hard_reset_handler - reset controller
4558 * @ioc: Pointer to MPT_ADAPTER structure
4559 * @sleep_flag: CAN_SLEEP or NO_SLEEP
4560 * @type: FORCE_BIG_HAMMER or SOFT_RESET
4561 *
4562 * Returns 0 for success, non-zero for failure.
4563 */
4564int
4565mpt2sas_base_hard_reset_handler(struct MPT2SAS_ADAPTER *ioc, int sleep_flag,
4566 enum reset_type type)
4567{
4568 int r;
4569 unsigned long flags;
4570
4571 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: enter\n", ioc->name,
4572 __func__));
4573
4574 if (ioc->pci_error_recovery) {
4575 printk(MPT2SAS_ERR_FMT "%s: pci error recovery reset\n",
4576 ioc->name, __func__);
4577 r = 0;
4578 goto out_unlocked;
4579 }
4580
4581 if (mpt2sas_fwfault_debug)
4582 mpt2sas_halt_firmware(ioc);
4583
4584 /* TODO - What we really should be doing is pulling
4585 * out all the code associated with NO_SLEEP; its never used.
4586 * That is legacy code from mpt fusion driver, ported over.
4587 * I will leave this BUG_ON here for now till its been resolved.
4588 */
4589 BUG_ON(sleep_flag == NO_SLEEP);
4590
4591 /* wait for an active reset in progress to complete */
4592 if (!mutex_trylock(&ioc->reset_in_progress_mutex)) {
4593 do {
4594 ssleep(1);
4595 } while (ioc->shost_recovery == 1);
4596 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit\n", ioc->name,
4597 __func__));
4598 return ioc->ioc_reset_in_progress_status;
4599 }
4600
4601 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
4602 ioc->shost_recovery = 1;
4603 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock, flags);
4604
4605 _base_reset_handler(ioc, MPT2_IOC_PRE_RESET);
4606 _wait_for_commands_to_complete(ioc, sleep_flag);
4607 _base_mask_interrupts(ioc);
4608 r = _base_make_ioc_ready(ioc, sleep_flag, type);
4609 if (r)
4610 goto out;
4611 _base_reset_handler(ioc, MPT2_IOC_AFTER_RESET);
4612
4613 /* If this hard reset is called while port enable is active, then
4614 * there is no reason to call make_ioc_operational
4615 */
4616 if (ioc->is_driver_loading && ioc->port_enable_failed) {
4617 ioc->remove_host = 1;
4618 r = -EFAULT;
4619 goto out;
4620 }
4621 r = _base_make_ioc_operational(ioc, sleep_flag);
4622 if (!r)
4623 _base_reset_handler(ioc, MPT2_IOC_DONE_RESET);
4624 out:
4625 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: %s\n",
4626 ioc->name, __func__, ((r == 0) ? "SUCCESS" : "FAILED")));
4627
4628 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
4629 ioc->ioc_reset_in_progress_status = r;
4630 ioc->shost_recovery = 0;
4631 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock, flags);
4632 mutex_unlock(&ioc->reset_in_progress_mutex);
4633
4634 out_unlocked:
4635 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit\n", ioc->name,
4636 __func__));
4637 return r;
4638}