blob: efa0255491c2edf29cc2653a1a732c328df0e1b9 [file] [log] [blame]
Eric Moore635374e2009-03-09 01:21:12 -06001/*
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
Kashyap, Desai31b7f2e2010-03-17 16:28:04 +05306 * Copyright (C) 2007-2010 LSI Corporation
Eric Moore635374e2009-03-09 01:21:12 -06007 * (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>
Kashyap, Desaia8ebd762009-09-23 17:29:29 +053060#include <linux/time.h>
Kashyap, Desaief7c80c2010-04-05 14:20:07 +053061#include <linux/aer.h>
Eric Moore635374e2009-03-09 01:21:12 -060062
63#include "mpt2sas_base.h"
64
65static MPT_CALLBACK mpt_callbacks[MPT_MAX_CALLBACKS];
66
67#define FAULT_POLLING_INTERVAL 1000 /* in milliseconds */
Eric Moore635374e2009-03-09 01:21:12 -060068
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
Kashyap, Desai6cb8ef52010-11-13 04:32:18 +053081static 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
Kashyap, Desai32e0eb52009-09-23 17:28:09 +053085/* diag_buffer_enable is bitwise
Kashyap, Desai1b01fe32009-09-23 17:28:59 +053086 * bit 0 set = TRACE
87 * bit 1 set = SNAPSHOT
88 * bit 2 set = EXTENDED
Kashyap, Desai32e0eb52009-09-23 17:28:09 +053089 *
90 * Either bit can be set, or both
91 */
92static int diag_buffer_enable;
93module_param(diag_buffer_enable, int, 0);
Kashyap, Desai1b01fe32009-09-23 17:28:59 +053094MODULE_PARM_DESC(diag_buffer_enable, " post diag buffers "
95 "(TRACE=1/SNAPSHOT=2/EXTENDED=4/default=0)");
Kashyap, Desai32e0eb52009-09-23 17:28:09 +053096
Kashyap, Desaifa7f3162009-09-23 17:26:58 +053097int mpt2sas_fwfault_debug;
98MODULE_PARM_DESC(mpt2sas_fwfault_debug, " enable detection of firmware fault "
99 "and halt firmware - (default=0)");
100
Kashyap, Desaidd5fd332010-06-17 13:31:17 +0530101static int disable_discovery = -1;
102module_param(disable_discovery, int, 0);
103MODULE_PARM_DESC(disable_discovery, " disable discovery ");
104
Kashyap, Desaifa7f3162009-09-23 17:26:58 +0530105/**
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
Kashyap, Desaie75b9b62009-12-16 18:52:39 +0530118 printk(KERN_INFO "setting fwfault_debug(%d)\n", mpt2sas_fwfault_debug);
Kashyap, Desaifa7f3162009-09-23 17:26:58 +0530119 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
Eric Moore635374e2009-03-09 01:21:12 -0600126/**
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);
Kashyap, Desai155dd4c2009-08-20 13:22:00 +0530143 if (ioc->shost_recovery)
Eric Moore635374e2009-03-09 01:21:12 -0600144 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
Kashyap, Desaie4750c92009-08-07 19:37:59 +0530168/**
169 * mpt2sas_base_start_watchdog - start the fault_reset_work_q
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530170 * @ioc: per adapter object
Kashyap, Desaie4750c92009-08-07 19:37:59 +0530171 * 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
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530204 * @ioc: per adapter object
Kashyap, Desaie4750c92009-08-07 19:37:59 +0530205 * 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
Kashyap, Desaifa7f3162009-09-23 17:26:58 +0530226/**
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
Eric Moore635374e2009-03-09 01:21:12 -0600271#ifdef CONFIG_SCSI_MPT2SAS_LOGGING
272/**
273 * _base_sas_ioc_info - verbose translation of the ioc status
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530274 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -0600275 * @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
Kashyap, Desaie94f6742010-03-17 16:24:52 +0530296 if (ioc_status == MPI2_IOCSTATUS_CONFIG_INVALID_PAGE)
297 return;
298
Eric Moore635374e2009-03-09 01:21:12 -0600299 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
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530491 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -0600492 * @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;
Eric Moore635374e2009-03-09 01:21:12 -0600521 case MPI2_EVENT_SAS_DEVICE_STATUS_CHANGE:
522 desc = "Device Status Change";
523 break;
524 case MPI2_EVENT_IR_OPERATION_STATUS:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530525 if (!ioc->hide_ir_msg)
526 desc = "IR Operation Status";
Eric Moore635374e2009-03-09 01:21:12 -0600527 break;
528 case MPI2_EVENT_SAS_DISCOVERY:
Kashyap, Desaie94f6742010-03-17 16:24:52 +0530529 {
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));
Julia Lawall7968f192010-08-05 22:19:36 +0200538 printk("\n");
Kashyap, Desaie94f6742010-03-17 16:24:52 +0530539 return;
540 }
Eric Moore635374e2009-03-09 01:21:12 -0600541 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:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530557 if (!ioc->hide_ir_msg)
558 desc = "IR Volume";
Eric Moore635374e2009-03-09 01:21:12 -0600559 break;
560 case MPI2_EVENT_IR_PHYSICAL_DISK:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530561 if (!ioc->hide_ir_msg)
562 desc = "IR Physical Disk";
Eric Moore635374e2009-03-09 01:21:12 -0600563 break;
564 case MPI2_EVENT_IR_CONFIGURATION_CHANGE_LIST:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530565 if (!ioc->hide_ir_msg)
566 desc = "IR Configuration Change List";
Eric Moore635374e2009-03-09 01:21:12 -0600567 break;
568 case MPI2_EVENT_LOG_ENTRY_ADDED:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530569 if (!ioc->hide_ir_msg)
570 desc = "Log Entry Added";
Eric Moore635374e2009-03-09 01:21:12 -0600571 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
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530583 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -0600584 * @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
Kashyap, Desaibe9e8cd72009-08-07 19:36:43 +0530607 /* each nexus loss loginfo */
608 if (log_info == 0x31170000)
609 return;
610
Eric Moore635374e2009-03-09 01:21:12 -0600611 /* 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:
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530624 if (!ioc->hide_ir_msg)
625 originator_str = "IR";
626 else
627 originator_str = "WarpDrive";
Eric Moore635374e2009-03-09 01:21:12 -0600628 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/**
Eric Moore635374e2009-03-09 01:21:12 -0600638 * _base_display_reply_info -
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530639 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -0600640 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530641 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -0600642 * @reply: reply message frame(lower 32bit addr)
643 *
644 * Return nothing.
645 */
646static void
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530647_base_display_reply_info(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
Eric Moore635374e2009-03-09 01:21:12 -0600648 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
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530668 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -0600669 * @smid: system request message index
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530670 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -0600671 * @reply: reply message frame(lower 32bit addr)
672 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530673 * Return 1 meaning mf should be freed from _base_interrupt
674 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -0600675 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530676u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530677mpt2sas_base_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
678 u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -0600679{
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)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530684 return 1;
Eric Moore635374e2009-03-09 01:21:12 -0600685
686 if (ioc->base_cmds.status == MPT2_CMD_NOT_USED)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530687 return 1;
Eric Moore635374e2009-03-09 01:21:12 -0600688
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);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530696 return 1;
Eric Moore635374e2009-03-09 01:21:12 -0600697}
698
699/**
700 * _base_async_event - main callback handler for firmware asyn events
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530701 * @ioc: per adapter object
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530702 * @msix_index: MSIX table index supplied by the OS
Eric Moore635374e2009-03-09 01:21:12 -0600703 * @reply: reply message frame(lower 32bit addr)
704 *
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530705 * Return 1 meaning mf should be freed from _base_interrupt
706 * 0 means the mf is freed from this function.
Eric Moore635374e2009-03-09 01:21:12 -0600707 */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530708static u8
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530709_base_async_event(struct MPT2SAS_ADAPTER *ioc, u8 msix_index, u32 reply)
Eric Moore635374e2009-03-09 01:21:12 -0600710{
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)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530717 return 1;
Eric Moore635374e2009-03-09 01:21:12 -0600718 if (mpi_reply->Function != MPI2_FUNCTION_EVENT_NOTIFICATION)
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530719 return 1;
Eric Moore635374e2009-03-09 01:21:12 -0600720#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;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530737 ack_request->VF_ID = 0; /* TODO */
738 ack_request->VP_ID = 0;
739 mpt2sas_base_put_smid_default(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -0600740
741 out:
742
743 /* scsih callback handler */
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530744 mpt2sas_scsih_event_callback(ioc, msix_index, reply);
Eric Moore635374e2009-03-09 01:21:12 -0600745
746 /* ctl callback handler */
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530747 mpt2sas_ctl_event_callback(ioc, msix_index, reply);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530748
749 return 1;
Eric Moore635374e2009-03-09 01:21:12 -0600750}
751
752/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530753 * _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;
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +0530763 u8 cb_idx;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530764
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +0530765 if (smid < ioc->hi_priority_smid) {
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530766 i = smid - 1;
767 cb_idx = ioc->scsi_lookup[i].cb_idx;
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +0530768 } 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;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530776 return cb_idx;
777}
778
779/**
Eric Moore635374e2009-03-09 01:21:12 -0600780 * _base_mask_interrupts - disable interrupts
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530781 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -0600782 *
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
Kashyap, Desaicef7a122009-09-23 17:27:41 +0530801 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -0600802 *
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
Eric Moore635374e2009-03-09 01:21:12 -0600812 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
Kashyap, Desai5b768582009-08-20 13:24:31 +0530818union reply_descriptor {
819 u64 word;
820 struct {
821 u32 low;
822 u32 high;
823 } u;
824};
825
Eric Moore635374e2009-03-09 01:21:12 -0600826/**
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{
Eric Moore03ea1112009-04-21 15:37:57 -0600837 union reply_descriptor rd;
Kashyap, Desai5b768582009-08-20 13:24:31 +0530838 u32 completed_cmds;
Eric Moore635374e2009-03-09 01:21:12 -0600839 u8 request_desript_type;
840 u16 smid;
841 u8 cb_idx;
842 u32 reply;
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530843 u8 msix_index;
Eric Moore635374e2009-03-09 01:21:12 -0600844 struct MPT2SAS_ADAPTER *ioc = bus_id;
Kashyap, Desai5b768582009-08-20 13:24:31 +0530845 Mpi2ReplyDescriptorsUnion_t *rpf;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530846 u8 rc;
Eric Moore635374e2009-03-09 01:21:12 -0600847
848 if (ioc->mask_interrupts)
849 return IRQ_NONE;
850
Kashyap, Desai5b768582009-08-20 13:24:31 +0530851 rpf = &ioc->reply_post_free[ioc->reply_post_host_index];
852 request_desript_type = rpf->Default.ReplyFlags
853 & MPI2_RPY_DESCRIPT_FLAGS_TYPE_MASK;
Eric Moore635374e2009-03-09 01:21:12 -0600854 if (request_desript_type == MPI2_RPY_DESCRIPT_FLAGS_UNUSED)
855 return IRQ_NONE;
856
857 completed_cmds = 0;
Kashyap, Desaidd3741d2010-11-13 04:31:14 +0530858 cb_idx = 0xFF;
Eric Moore635374e2009-03-09 01:21:12 -0600859 do {
Kashyap, Desai5b768582009-08-20 13:24:31 +0530860 rd.word = rpf->Words;
Eric Moore03ea1112009-04-21 15:37:57 -0600861 if (rd.u.low == UINT_MAX || rd.u.high == UINT_MAX)
Eric Moore635374e2009-03-09 01:21:12 -0600862 goto out;
863 reply = 0;
864 cb_idx = 0xFF;
Kashyap, Desai5b768582009-08-20 13:24:31 +0530865 smid = le16_to_cpu(rpf->Default.DescriptorTypeDependent1);
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530866 msix_index = rpf->Default.MSIxIndex;
Eric Moore635374e2009-03-09 01:21:12 -0600867 if (request_desript_type ==
868 MPI2_RPY_DESCRIPT_FLAGS_ADDRESS_REPLY) {
Kashyap, Desai5b768582009-08-20 13:24:31 +0530869 reply = le32_to_cpu
870 (rpf->AddressReply.ReplyFrameAddress);
Kashyap, Desaidd3741d2010-11-13 04:31:14 +0530871 if (reply > ioc->reply_dma_max_address ||
872 reply < ioc->reply_dma_min_address)
873 reply = 0;
Eric Moore635374e2009-03-09 01:21:12 -0600874 } 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)
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530881 cb_idx = _base_get_cb_idx(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -0600882 if (smid && cb_idx != 0xFF) {
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530883 rc = mpt_callbacks[cb_idx](ioc, smid, msix_index,
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530884 reply);
Eric Moore635374e2009-03-09 01:21:12 -0600885 if (reply)
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530886 _base_display_reply_info(ioc, smid, msix_index,
Eric Moore635374e2009-03-09 01:21:12 -0600887 reply);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530888 if (rc)
889 mpt2sas_base_free_smid(ioc, smid);
Eric Moore635374e2009-03-09 01:21:12 -0600890 }
891 if (!smid)
Kashyap, Desai7b936b02009-09-25 11:44:41 +0530892 _base_async_event(ioc, msix_index, reply);
Eric Moore635374e2009-03-09 01:21:12 -0600893
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);
Kashyap, Desai5b768582009-08-20 13:24:31 +0530902 wmb();
Eric Moore635374e2009-03-09 01:21:12 -0600903 writel(ioc->reply_free_host_index,
904 &ioc->chip->ReplyFreeHostIndex);
Eric Moore635374e2009-03-09 01:21:12 -0600905 }
906
907 next:
Kashyap, Desai5b768582009-08-20 13:24:31 +0530908
909 rpf->Words = ULLONG_MAX;
910 ioc->reply_post_host_index = (ioc->reply_post_host_index ==
911 (ioc->reply_post_queue_depth - 1)) ? 0 :
912 ioc->reply_post_host_index + 1;
Eric Moore635374e2009-03-09 01:21:12 -0600913 request_desript_type =
Kashyap, Desai5b768582009-08-20 13:24:31 +0530914 ioc->reply_post_free[ioc->reply_post_host_index].Default.
915 ReplyFlags & MPI2_RPY_DESCRIPT_FLAGS_TYPE_MASK;
Eric Moore635374e2009-03-09 01:21:12 -0600916 completed_cmds++;
917 if (request_desript_type == MPI2_RPY_DESCRIPT_FLAGS_UNUSED)
918 goto out;
Kashyap, Desai5b768582009-08-20 13:24:31 +0530919 if (!ioc->reply_post_host_index)
920 rpf = ioc->reply_post_free;
921 else
922 rpf++;
Eric Moore635374e2009-03-09 01:21:12 -0600923 } while (1);
924
925 out:
926
927 if (!completed_cmds)
928 return IRQ_NONE;
929
Eric Moore635374e2009-03-09 01:21:12 -0600930 wmb();
Kashyap, Desai5b768582009-08-20 13:24:31 +0530931 writel(ioc->reply_post_host_index, &ioc->chip->ReplyPostHostIndex);
Eric Moore635374e2009-03-09 01:21:12 -0600932 return IRQ_HANDLED;
933}
934
935/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300936 * mpt2sas_base_release_callback_handler - clear interrupt callback handler
Eric Moore635374e2009-03-09 01:21:12 -0600937 * @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);
Yang Hongyange9304382009-04-13 14:40:14 -07001058 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))) {
Eric Moore635374e2009-03-09 01:21:12 -06001061 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
Yang Hongyange9304382009-04-13 14:40:14 -07001068 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))
1069 && !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32))) {
Eric Moore635374e2009-03-09 01:21:12 -06001070 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
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001124 * of available msix vectors
Eric Moore635374e2009-03-09 01:21:12 -06001125 */
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;
Kashyap, Desai6846e752009-12-16 18:51:45 +05301253 u64 pio_chip = 0;
1254 u64 chip_phys = 0;
Eric Moore635374e2009-03-09 01:21:12 -06001255
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05301256 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n",
Eric Moore635374e2009-03-09 01:21:12 -06001257 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
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05301275 /* AER (Advanced Error Reporting) hooks */
1276 pci_enable_pcie_error_reporting(pdev);
1277
Eric Moore635374e2009-03-09 01:21:12 -06001278 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++) {
Richard A Laryfc193172010-03-12 15:27:06 -08001288 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
Eric Moore635374e2009-03-09 01:21:12 -06001289 if (pio_sz)
1290 continue;
Kashyap, Desai6846e752009-12-16 18:51:45 +05301291 pio_chip = (u64)pci_resource_start(pdev, i);
Eric Moore635374e2009-03-09 01:21:12 -06001292 pio_sz = pci_resource_len(pdev, i);
1293 } else {
1294 if (memap_sz)
1295 continue;
Richard A Laryfc193172010-03-12 15:27:06 -08001296 /* 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 }
Eric Moore635374e2009-03-09 01:21:12 -06001308 }
1309 }
1310 }
1311
Eric Moore635374e2009-03-09 01:21:12 -06001312 _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);
Kashyap, Desai6846e752009-12-16 18:51:45 +05301320 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);
Eric Moore635374e2009-03-09 01:21:12 -06001324
Eric Moore3cb54692010-07-08 14:44:34 -06001325 /* Save PCI configuration state for recovery from PCI AER/EEH errors */
1326 pci_save_state(pdev);
1327
Eric Moore635374e2009-03-09 01:21:12 -06001328 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);
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05301336 pci_disable_pcie_error_reporting(pdev);
Eric Moore635374e2009-03-09 01:21:12 -06001337 pci_disable_device(pdev);
Eric Moore635374e2009-03-09 01:21:12 -06001338 return r;
1339}
1340
1341/**
Eric Moore635374e2009-03-09 01:21:12 -06001342 * 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 *
Kashyap, Desaiec9472c2009-09-23 17:34:13 +05301372 * Returns phys pointer to the low 32bit address of the sense buffer.
Eric Moore635374e2009-03-09 01:21:12 -06001373 */
Kashyap, Desaiec9472c2009-09-23 17:34:13 +05301374__le32
Eric Moore635374e2009-03-09 01:21:12 -06001375mpt2sas_base_get_sense_buffer_dma(struct MPT2SAS_ADAPTER *ioc, u16 smid)
1376{
Kashyap, Desaiec9472c2009-09-23 17:34:13 +05301377 return cpu_to_le32(ioc->sense_dma +
1378 ((smid - 1) * SCSI_SENSE_BUFFERSIZE));
Eric Moore635374e2009-03-09 01:21:12 -06001379}
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/**
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301397 * mpt2sas_base_get_smid - obtain a free smid from internal queue
Eric Moore635374e2009-03-09 01:21:12 -06001398 * @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);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301411 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;
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +05301440 struct scsiio_tracker *request;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301441 u16 smid;
1442
1443 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06001444 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,
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +05301452 struct scsiio_tracker, tracker_list);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301453 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);
Eric Moore635374e2009-03-09 01:21:12 -06001483 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;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301502 int i;
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301503 struct chain_tracker *chain_req, *next;
Eric Moore635374e2009-03-09 01:21:12 -06001504
1505 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +05301506 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 }
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301516 }
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +05301517 ioc->scsi_lookup[i].cb_idx = 0xFF;
1518 ioc->scsi_lookup[i].scmd = NULL;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301519 ioc->scsi_lookup[i].direct_io = 0;
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +05301520 list_add_tail(&ioc->scsi_lookup[i].tracker_list,
1521 &ioc->free_list);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301522 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301523
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +05301524 /*
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--;
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301532 }
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +05301533 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);
Kashyap, Desai35f805b2010-11-13 04:34:06 +05301546 }
Eric Moore635374e2009-03-09 01:21:12 -06001547 spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06001548}
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
Eric Moore635374e2009-03-09 01:21:12 -06001585 * @handle: device handle
1586 *
1587 * Return nothing.
1588 */
1589void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301590mpt2sas_base_put_smid_scsi_io(struct MPT2SAS_ADAPTER *ioc, u16 smid, u16 handle)
Eric Moore635374e2009-03-09 01:21:12 -06001591{
1592 Mpi2RequestDescriptorUnion_t descriptor;
1593 u64 *request = (u64 *)&descriptor;
1594
1595
1596 descriptor.SCSIIO.RequestFlags = MPI2_REQ_DESCRIPT_FLAGS_SCSI_IO;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301597 descriptor.SCSIIO.MSIxIndex = 0; /* TODO */
Eric Moore635374e2009-03-09 01:21:12 -06001598 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/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001607 * mpt2sas_base_put_smid_hi_priority - send Task Management request to firmware
Eric Moore635374e2009-03-09 01:21:12 -06001608 * @ioc: per adapter object
1609 * @smid: system request message index
Eric Moore635374e2009-03-09 01:21:12 -06001610 *
1611 * Return nothing.
1612 */
1613void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301614mpt2sas_base_put_smid_hi_priority(struct MPT2SAS_ADAPTER *ioc, u16 smid)
Eric Moore635374e2009-03-09 01:21:12 -06001615{
1616 Mpi2RequestDescriptorUnion_t descriptor;
1617 u64 *request = (u64 *)&descriptor;
1618
1619 descriptor.HighPriority.RequestFlags =
1620 MPI2_REQ_DESCRIPT_FLAGS_HIGH_PRIORITY;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301621 descriptor.HighPriority.MSIxIndex = 0; /* TODO */
Eric Moore635374e2009-03-09 01:21:12 -06001622 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
Eric Moore635374e2009-03-09 01:21:12 -06001633 *
1634 * Return nothing.
1635 */
1636void
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301637mpt2sas_base_put_smid_default(struct MPT2SAS_ADAPTER *ioc, u16 smid)
Eric Moore635374e2009-03-09 01:21:12 -06001638{
1639 Mpi2RequestDescriptorUnion_t descriptor;
1640 u64 *request = (u64 *)&descriptor;
1641
1642 descriptor.Default.RequestFlags = MPI2_REQ_DESCRIPT_FLAGS_DEFAULT_TYPE;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301643 descriptor.Default.MSIxIndex = 0; /* TODO */
Eric Moore635374e2009-03-09 01:21:12 -06001644 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
Eric Moore635374e2009-03-09 01:21:12 -06001655 * @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,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301661 u16 io_index)
Eric Moore635374e2009-03-09 01:21:12 -06001662{
1663 Mpi2RequestDescriptorUnion_t descriptor;
1664 u64 *request = (u64 *)&descriptor;
1665
1666 descriptor.SCSITarget.RequestFlags =
1667 MPI2_REQ_DESCRIPT_FLAGS_SCSI_TARGET;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301668 descriptor.SCSITarget.MSIxIndex = 0; /* TODO */
Eric Moore635374e2009-03-09 01:21:12 -06001669 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/**
Eric Mooref0f9cc12009-04-21 15:40:48 -06001677 * _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/**
Kashyap, Desaifb396be2011-01-04 11:36:37 +05301735 * _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 ioc->pdev->device == MPI2_MFGPAGE_DEVID_SAS2008) {
1745
1746 switch (ioc->pdev->subsystem_device) {
1747 case MPT2SAS_INTEL_RMS2LL080_SSDID:
1748 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1749 MPT2SAS_INTEL_RMS2LL080_BRANDING);
1750 break;
1751 case MPT2SAS_INTEL_RMS2LL040_SSDID:
1752 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1753 MPT2SAS_INTEL_RMS2LL040_BRANDING);
1754 break;
1755 }
1756 }
1757}
1758
1759/**
Kashyap, Desai0a2385c2011-03-15 20:04:26 +05301760 * _base_display_hp_branding - Display branding string
1761 * @ioc: per adapter object
1762 *
1763 * Return nothing.
1764 */
1765static void
1766_base_display_hp_branding(struct MPT2SAS_ADAPTER *ioc)
1767{
1768 if (ioc->pdev->subsystem_vendor != MPT2SAS_HP_3PAR_SSVID)
1769 return;
1770
1771 switch (ioc->pdev->device) {
1772 case MPI2_MFGPAGE_DEVID_SAS2004:
1773 switch (ioc->pdev->subsystem_device) {
1774 case MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_SSDID:
1775 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1776 MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_BRANDING);
1777 break;
1778 default:
1779 break;
1780 }
1781 case MPI2_MFGPAGE_DEVID_SAS2308_2:
1782 switch (ioc->pdev->subsystem_device) {
1783 case MPT2SAS_HP_2_4_INTERNAL_SSDID:
1784 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1785 MPT2SAS_HP_2_4_INTERNAL_BRANDING);
1786 break;
1787 case MPT2SAS_HP_2_4_EXTERNAL_SSDID:
1788 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1789 MPT2SAS_HP_2_4_EXTERNAL_BRANDING);
1790 break;
1791 case MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_SSDID:
1792 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1793 MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_BRANDING);
1794 break;
1795 case MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_SSDID:
1796 printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
1797 MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_BRANDING);
1798 break;
1799 default:
1800 break;
1801 }
1802 default:
1803 break;
1804 }
1805}
1806
1807/**
Eric Moore635374e2009-03-09 01:21:12 -06001808 * _base_display_ioc_capabilities - Disply IOC's capabilities.
1809 * @ioc: per adapter object
1810 *
1811 * Return nothing.
1812 */
1813static void
1814_base_display_ioc_capabilities(struct MPT2SAS_ADAPTER *ioc)
1815{
1816 int i = 0;
1817 char desc[16];
1818 u8 revision;
1819 u32 iounit_pg1_flags;
1820
1821 pci_read_config_byte(ioc->pdev, PCI_CLASS_REVISION, &revision);
1822 strncpy(desc, ioc->manu_pg0.ChipName, 16);
1823 printk(MPT2SAS_INFO_FMT "%s: FWVersion(%02d.%02d.%02d.%02d), "
1824 "ChipRevision(0x%02x), BiosVersion(%02d.%02d.%02d.%02d)\n",
1825 ioc->name, desc,
1826 (ioc->facts.FWVersion.Word & 0xFF000000) >> 24,
1827 (ioc->facts.FWVersion.Word & 0x00FF0000) >> 16,
1828 (ioc->facts.FWVersion.Word & 0x0000FF00) >> 8,
1829 ioc->facts.FWVersion.Word & 0x000000FF,
1830 revision,
1831 (ioc->bios_pg3.BiosVersion & 0xFF000000) >> 24,
1832 (ioc->bios_pg3.BiosVersion & 0x00FF0000) >> 16,
1833 (ioc->bios_pg3.BiosVersion & 0x0000FF00) >> 8,
1834 ioc->bios_pg3.BiosVersion & 0x000000FF);
1835
Kashyap, Desaied79f122009-08-20 13:23:49 +05301836 _base_display_dell_branding(ioc);
Kashyap, Desaifb396be2011-01-04 11:36:37 +05301837 _base_display_intel_branding(ioc);
Kashyap, Desai0a2385c2011-03-15 20:04:26 +05301838 _base_display_hp_branding(ioc);
Kashyap, Desaied79f122009-08-20 13:23:49 +05301839
Eric Moore635374e2009-03-09 01:21:12 -06001840 printk(MPT2SAS_INFO_FMT "Protocol=(", ioc->name);
1841
1842 if (ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_INITIATOR) {
1843 printk("Initiator");
1844 i++;
1845 }
1846
1847 if (ioc->facts.ProtocolFlags & MPI2_IOCFACTS_PROTOCOL_SCSI_TARGET) {
1848 printk("%sTarget", i ? "," : "");
1849 i++;
1850 }
1851
1852 i = 0;
1853 printk("), ");
1854 printk("Capabilities=(");
1855
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05301856 if (!ioc->hide_ir_msg) {
1857 if (ioc->facts.IOCCapabilities &
1858 MPI2_IOCFACTS_CAPABILITY_INTEGRATED_RAID) {
1859 printk("Raid");
1860 i++;
1861 }
Eric Moore635374e2009-03-09 01:21:12 -06001862 }
1863
1864 if (ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_TLR) {
1865 printk("%sTLR", i ? "," : "");
1866 i++;
1867 }
1868
1869 if (ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_MULTICAST) {
1870 printk("%sMulticast", i ? "," : "");
1871 i++;
1872 }
1873
1874 if (ioc->facts.IOCCapabilities &
1875 MPI2_IOCFACTS_CAPABILITY_BIDIRECTIONAL_TARGET) {
1876 printk("%sBIDI Target", i ? "," : "");
1877 i++;
1878 }
1879
1880 if (ioc->facts.IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_EEDP) {
1881 printk("%sEEDP", i ? "," : "");
1882 i++;
1883 }
1884
1885 if (ioc->facts.IOCCapabilities &
1886 MPI2_IOCFACTS_CAPABILITY_SNAPSHOT_BUFFER) {
1887 printk("%sSnapshot Buffer", i ? "," : "");
1888 i++;
1889 }
1890
1891 if (ioc->facts.IOCCapabilities &
1892 MPI2_IOCFACTS_CAPABILITY_DIAG_TRACE_BUFFER) {
1893 printk("%sDiag Trace Buffer", i ? "," : "");
1894 i++;
1895 }
1896
1897 if (ioc->facts.IOCCapabilities &
Kashyap, Desai1b01fe32009-09-23 17:28:59 +05301898 MPI2_IOCFACTS_CAPABILITY_EXTENDED_BUFFER) {
1899 printk(KERN_INFO "%sDiag Extended Buffer", i ? "," : "");
1900 i++;
1901 }
1902
1903 if (ioc->facts.IOCCapabilities &
Eric Moore635374e2009-03-09 01:21:12 -06001904 MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING) {
1905 printk("%sTask Set Full", i ? "," : "");
1906 i++;
1907 }
1908
1909 iounit_pg1_flags = le32_to_cpu(ioc->iounit_pg1.Flags);
1910 if (!(iounit_pg1_flags & MPI2_IOUNITPAGE1_NATIVE_COMMAND_Q_DISABLE)) {
1911 printk("%sNCQ", i ? "," : "");
1912 i++;
1913 }
1914
1915 printk(")\n");
1916}
1917
1918/**
Kashyap, Desai6cb8ef52010-11-13 04:32:18 +05301919 * _base_update_missing_delay - change the missing delay timers
1920 * @ioc: per adapter object
1921 * @device_missing_delay: amount of time till device is reported missing
1922 * @io_missing_delay: interval IO is returned when there is a missing device
1923 *
1924 * Return nothing.
1925 *
1926 * Passed on the command line, this function will modify the device missing
1927 * delay, as well as the io missing delay. This should be called at driver
1928 * load time.
1929 */
1930static void
1931_base_update_missing_delay(struct MPT2SAS_ADAPTER *ioc,
1932 u16 device_missing_delay, u8 io_missing_delay)
1933{
1934 u16 dmd, dmd_new, dmd_orignal;
1935 u8 io_missing_delay_original;
1936 u16 sz;
1937 Mpi2SasIOUnitPage1_t *sas_iounit_pg1 = NULL;
1938 Mpi2ConfigReply_t mpi_reply;
1939 u8 num_phys = 0;
1940 u16 ioc_status;
1941
1942 mpt2sas_config_get_number_hba_phys(ioc, &num_phys);
1943 if (!num_phys)
1944 return;
1945
1946 sz = offsetof(Mpi2SasIOUnitPage1_t, PhyData) + (num_phys *
1947 sizeof(Mpi2SasIOUnit1PhyData_t));
1948 sas_iounit_pg1 = kzalloc(sz, GFP_KERNEL);
1949 if (!sas_iounit_pg1) {
1950 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1951 ioc->name, __FILE__, __LINE__, __func__);
1952 goto out;
1953 }
1954 if ((mpt2sas_config_get_sas_iounit_pg1(ioc, &mpi_reply,
1955 sas_iounit_pg1, sz))) {
1956 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1957 ioc->name, __FILE__, __LINE__, __func__);
1958 goto out;
1959 }
1960 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) &
1961 MPI2_IOCSTATUS_MASK;
1962 if (ioc_status != MPI2_IOCSTATUS_SUCCESS) {
1963 printk(MPT2SAS_ERR_FMT "failure at %s:%d/%s()!\n",
1964 ioc->name, __FILE__, __LINE__, __func__);
1965 goto out;
1966 }
1967
1968 /* device missing delay */
1969 dmd = sas_iounit_pg1->ReportDeviceMissingDelay;
1970 if (dmd & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
1971 dmd = (dmd & MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
1972 else
1973 dmd = dmd & MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
1974 dmd_orignal = dmd;
1975 if (device_missing_delay > 0x7F) {
1976 dmd = (device_missing_delay > 0x7F0) ? 0x7F0 :
1977 device_missing_delay;
1978 dmd = dmd / 16;
1979 dmd |= MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16;
1980 } else
1981 dmd = device_missing_delay;
1982 sas_iounit_pg1->ReportDeviceMissingDelay = dmd;
1983
1984 /* io missing delay */
1985 io_missing_delay_original = sas_iounit_pg1->IODeviceMissingDelay;
1986 sas_iounit_pg1->IODeviceMissingDelay = io_missing_delay;
1987
1988 if (!mpt2sas_config_set_sas_iounit_pg1(ioc, &mpi_reply, sas_iounit_pg1,
1989 sz)) {
1990 if (dmd & MPI2_SASIOUNIT1_REPORT_MISSING_UNIT_16)
1991 dmd_new = (dmd &
1992 MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK) * 16;
1993 else
1994 dmd_new =
1995 dmd & MPI2_SASIOUNIT1_REPORT_MISSING_TIMEOUT_MASK;
1996 printk(MPT2SAS_INFO_FMT "device_missing_delay: old(%d), "
1997 "new(%d)\n", ioc->name, dmd_orignal, dmd_new);
1998 printk(MPT2SAS_INFO_FMT "ioc_missing_delay: old(%d), "
1999 "new(%d)\n", ioc->name, io_missing_delay_original,
2000 io_missing_delay);
2001 ioc->device_missing_delay = dmd_new;
2002 ioc->io_missing_delay = io_missing_delay;
2003 }
2004
2005out:
2006 kfree(sas_iounit_pg1);
2007}
2008
2009/**
Eric Moore635374e2009-03-09 01:21:12 -06002010 * _base_static_config_pages - static start of day config pages
2011 * @ioc: per adapter object
2012 *
2013 * Return nothing.
2014 */
2015static void
2016_base_static_config_pages(struct MPT2SAS_ADAPTER *ioc)
2017{
2018 Mpi2ConfigReply_t mpi_reply;
2019 u32 iounit_pg1_flags;
2020
2021 mpt2sas_config_get_manufacturing_pg0(ioc, &mpi_reply, &ioc->manu_pg0);
Kashyap, Desaied79f122009-08-20 13:23:49 +05302022 if (ioc->ir_firmware)
2023 mpt2sas_config_get_manufacturing_pg10(ioc, &mpi_reply,
2024 &ioc->manu_pg10);
Eric Moore635374e2009-03-09 01:21:12 -06002025 mpt2sas_config_get_bios_pg2(ioc, &mpi_reply, &ioc->bios_pg2);
2026 mpt2sas_config_get_bios_pg3(ioc, &mpi_reply, &ioc->bios_pg3);
2027 mpt2sas_config_get_ioc_pg8(ioc, &mpi_reply, &ioc->ioc_pg8);
2028 mpt2sas_config_get_iounit_pg0(ioc, &mpi_reply, &ioc->iounit_pg0);
2029 mpt2sas_config_get_iounit_pg1(ioc, &mpi_reply, &ioc->iounit_pg1);
2030 _base_display_ioc_capabilities(ioc);
2031
2032 /*
2033 * Enable task_set_full handling in iounit_pg1 when the
2034 * facts capabilities indicate that its supported.
2035 */
2036 iounit_pg1_flags = le32_to_cpu(ioc->iounit_pg1.Flags);
2037 if ((ioc->facts.IOCCapabilities &
2038 MPI2_IOCFACTS_CAPABILITY_TASK_SET_FULL_HANDLING))
2039 iounit_pg1_flags &=
2040 ~MPI2_IOUNITPAGE1_DISABLE_TASK_SET_FULL_HANDLING;
2041 else
2042 iounit_pg1_flags |=
2043 MPI2_IOUNITPAGE1_DISABLE_TASK_SET_FULL_HANDLING;
2044 ioc->iounit_pg1.Flags = cpu_to_le32(iounit_pg1_flags);
Kashyap, Desai5b768582009-08-20 13:24:31 +05302045 mpt2sas_config_set_iounit_pg1(ioc, &mpi_reply, &ioc->iounit_pg1);
Kashyap, Desai6cb8ef52010-11-13 04:32:18 +05302046
Eric Moore635374e2009-03-09 01:21:12 -06002047}
2048
2049/**
2050 * _base_release_memory_pools - release memory
2051 * @ioc: per adapter object
2052 *
2053 * Free memory allocated from _base_allocate_memory_pools.
2054 *
2055 * Return nothing.
2056 */
2057static void
2058_base_release_memory_pools(struct MPT2SAS_ADAPTER *ioc)
2059{
Kashyap, Desai35f805b2010-11-13 04:34:06 +05302060 int i;
2061
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302062 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06002063 __func__));
2064
2065 if (ioc->request) {
2066 pci_free_consistent(ioc->pdev, ioc->request_dma_sz,
2067 ioc->request, ioc->request_dma);
2068 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "request_pool(0x%p)"
2069 ": free\n", ioc->name, ioc->request));
2070 ioc->request = NULL;
2071 }
2072
2073 if (ioc->sense) {
2074 pci_pool_free(ioc->sense_dma_pool, ioc->sense, ioc->sense_dma);
2075 if (ioc->sense_dma_pool)
2076 pci_pool_destroy(ioc->sense_dma_pool);
2077 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "sense_pool(0x%p)"
2078 ": free\n", ioc->name, ioc->sense));
2079 ioc->sense = NULL;
2080 }
2081
2082 if (ioc->reply) {
2083 pci_pool_free(ioc->reply_dma_pool, ioc->reply, ioc->reply_dma);
2084 if (ioc->reply_dma_pool)
2085 pci_pool_destroy(ioc->reply_dma_pool);
2086 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_pool(0x%p)"
2087 ": free\n", ioc->name, ioc->reply));
2088 ioc->reply = NULL;
2089 }
2090
2091 if (ioc->reply_free) {
2092 pci_pool_free(ioc->reply_free_dma_pool, ioc->reply_free,
2093 ioc->reply_free_dma);
2094 if (ioc->reply_free_dma_pool)
2095 pci_pool_destroy(ioc->reply_free_dma_pool);
2096 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_free_pool"
2097 "(0x%p): free\n", ioc->name, ioc->reply_free));
2098 ioc->reply_free = NULL;
2099 }
2100
2101 if (ioc->reply_post_free) {
2102 pci_pool_free(ioc->reply_post_free_dma_pool,
2103 ioc->reply_post_free, ioc->reply_post_free_dma);
2104 if (ioc->reply_post_free_dma_pool)
2105 pci_pool_destroy(ioc->reply_post_free_dma_pool);
2106 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT
2107 "reply_post_free_pool(0x%p): free\n", ioc->name,
2108 ioc->reply_post_free));
2109 ioc->reply_post_free = NULL;
2110 }
2111
2112 if (ioc->config_page) {
2113 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT
2114 "config_page(0x%p): free\n", ioc->name,
2115 ioc->config_page));
2116 pci_free_consistent(ioc->pdev, ioc->config_page_sz,
2117 ioc->config_page, ioc->config_page_dma);
2118 }
2119
Kashyap, Desai66a67932010-04-05 14:21:07 +05302120 if (ioc->scsi_lookup) {
2121 free_pages((ulong)ioc->scsi_lookup, ioc->scsi_lookup_pages);
2122 ioc->scsi_lookup = NULL;
2123 }
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302124 kfree(ioc->hpr_lookup);
2125 kfree(ioc->internal_lookup);
Kashyap, Desai35f805b2010-11-13 04:34:06 +05302126 if (ioc->chain_lookup) {
2127 for (i = 0; i < ioc->chain_depth; i++) {
2128 if (ioc->chain_lookup[i].chain_buffer)
2129 pci_pool_free(ioc->chain_dma_pool,
2130 ioc->chain_lookup[i].chain_buffer,
2131 ioc->chain_lookup[i].chain_buffer_dma);
2132 }
2133 if (ioc->chain_dma_pool)
2134 pci_pool_destroy(ioc->chain_dma_pool);
2135 }
2136 if (ioc->chain_lookup) {
2137 free_pages((ulong)ioc->chain_lookup, ioc->chain_pages);
2138 ioc->chain_lookup = NULL;
2139 }
Eric Moore635374e2009-03-09 01:21:12 -06002140}
2141
2142
2143/**
2144 * _base_allocate_memory_pools - allocate start of day memory pools
2145 * @ioc: per adapter object
2146 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2147 *
2148 * Returns 0 success, anything else error
2149 */
2150static int
2151_base_allocate_memory_pools(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
2152{
2153 Mpi2IOCFactsReply_t *facts;
2154 u32 queue_size, queue_diff;
2155 u16 max_sge_elements;
2156 u16 num_of_reply_frames;
2157 u16 chains_needed_per_io;
2158 u32 sz, total_sz;
Eric Moore635374e2009-03-09 01:21:12 -06002159 u32 retry_sz;
2160 u16 max_request_credit;
Kashyap, Desai35f805b2010-11-13 04:34:06 +05302161 int i;
Eric Moore635374e2009-03-09 01:21:12 -06002162
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302163 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06002164 __func__));
2165
2166 retry_sz = 0;
2167 facts = &ioc->facts;
2168
2169 /* command line tunables for max sgl entries */
2170 if (max_sgl_entries != -1) {
2171 ioc->shost->sg_tablesize = (max_sgl_entries <
2172 MPT2SAS_SG_DEPTH) ? max_sgl_entries :
2173 MPT2SAS_SG_DEPTH;
2174 } else {
2175 ioc->shost->sg_tablesize = MPT2SAS_SG_DEPTH;
2176 }
2177
2178 /* command line tunables for max controller queue depth */
Kashyap, Desai35f805b2010-11-13 04:34:06 +05302179 if (max_queue_depth != -1)
Eric Moore635374e2009-03-09 01:21:12 -06002180 max_request_credit = (max_queue_depth < facts->RequestCredit)
2181 ? max_queue_depth : facts->RequestCredit;
Kashyap, Desai35f805b2010-11-13 04:34:06 +05302182 else
2183 max_request_credit = facts->RequestCredit;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302184
2185 ioc->hba_queue_depth = max_request_credit;
2186 ioc->hi_priority_depth = facts->HighPriorityCredit;
2187 ioc->internal_depth = ioc->hi_priority_depth + 5;
Eric Moore635374e2009-03-09 01:21:12 -06002188
2189 /* request frame size */
2190 ioc->request_sz = facts->IOCRequestFrameSize * 4;
2191
2192 /* reply frame size */
2193 ioc->reply_sz = facts->ReplyFrameSize * 4;
2194
2195 retry_allocation:
2196 total_sz = 0;
2197 /* calculate number of sg elements left over in the 1st frame */
2198 max_sge_elements = ioc->request_sz - ((sizeof(Mpi2SCSIIORequest_t) -
2199 sizeof(Mpi2SGEIOUnion_t)) + ioc->sge_size);
2200 ioc->max_sges_in_main_message = max_sge_elements/ioc->sge_size;
2201
2202 /* now do the same for a chain buffer */
2203 max_sge_elements = ioc->request_sz - ioc->sge_size;
2204 ioc->max_sges_in_chain_message = max_sge_elements/ioc->sge_size;
2205
2206 ioc->chain_offset_value_for_main_message =
2207 ((sizeof(Mpi2SCSIIORequest_t) - sizeof(Mpi2SGEIOUnion_t)) +
2208 (ioc->max_sges_in_chain_message * ioc->sge_size)) / 4;
2209
2210 /*
2211 * MPT2SAS_SG_DEPTH = CONFIG_FUSION_MAX_SGE
2212 */
2213 chains_needed_per_io = ((ioc->shost->sg_tablesize -
2214 ioc->max_sges_in_main_message)/ioc->max_sges_in_chain_message)
2215 + 1;
2216 if (chains_needed_per_io > facts->MaxChainDepth) {
2217 chains_needed_per_io = facts->MaxChainDepth;
2218 ioc->shost->sg_tablesize = min_t(u16,
2219 ioc->max_sges_in_main_message + (ioc->max_sges_in_chain_message
2220 * chains_needed_per_io), ioc->shost->sg_tablesize);
2221 }
2222 ioc->chains_needed_per_io = chains_needed_per_io;
2223
2224 /* reply free queue sizing - taking into account for events */
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302225 num_of_reply_frames = ioc->hba_queue_depth + 32;
Eric Moore635374e2009-03-09 01:21:12 -06002226
2227 /* number of replies frames can't be a multiple of 16 */
2228 /* decrease number of reply frames by 1 */
2229 if (!(num_of_reply_frames % 16))
2230 num_of_reply_frames--;
2231
2232 /* calculate number of reply free queue entries
2233 * (must be multiple of 16)
2234 */
2235
2236 /* (we know reply_free_queue_depth is not a multiple of 16) */
2237 queue_size = num_of_reply_frames;
2238 queue_size += 16 - (queue_size % 16);
2239 ioc->reply_free_queue_depth = queue_size;
2240
2241 /* reply descriptor post queue sizing */
2242 /* this size should be the number of request frames + number of reply
2243 * frames
2244 */
2245
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302246 queue_size = ioc->hba_queue_depth + num_of_reply_frames + 1;
Eric Moore635374e2009-03-09 01:21:12 -06002247 /* round up to 16 byte boundary */
2248 if (queue_size % 16)
2249 queue_size += 16 - (queue_size % 16);
2250
2251 /* check against IOC maximum reply post queue depth */
2252 if (queue_size > facts->MaxReplyDescriptorPostQueueDepth) {
2253 queue_diff = queue_size -
2254 facts->MaxReplyDescriptorPostQueueDepth;
2255
2256 /* round queue_diff up to multiple of 16 */
2257 if (queue_diff % 16)
2258 queue_diff += 16 - (queue_diff % 16);
2259
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302260 /* adjust hba_queue_depth, reply_free_queue_depth,
Eric Moore635374e2009-03-09 01:21:12 -06002261 * and queue_size
2262 */
Kashyap, Desai11e1b962011-01-04 11:34:57 +05302263 ioc->hba_queue_depth -= (queue_diff / 2);
2264 ioc->reply_free_queue_depth -= (queue_diff / 2);
2265 queue_size = facts->MaxReplyDescriptorPostQueueDepth;
Eric Moore635374e2009-03-09 01:21:12 -06002266 }
2267 ioc->reply_post_queue_depth = queue_size;
2268
Eric Moore635374e2009-03-09 01:21:12 -06002269 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scatter gather: "
2270 "sge_in_main_msg(%d), sge_per_chain(%d), sge_per_io(%d), "
2271 "chains_per_io(%d)\n", ioc->name, ioc->max_sges_in_main_message,
2272 ioc->max_sges_in_chain_message, ioc->shost->sg_tablesize,
2273 ioc->chains_needed_per_io));
2274
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302275 ioc->scsiio_depth = ioc->hba_queue_depth -
2276 ioc->hi_priority_depth - ioc->internal_depth;
2277
2278 /* set the scsi host can_queue depth
2279 * with some internal commands that could be outstanding
2280 */
2281 ioc->shost->can_queue = ioc->scsiio_depth - (2);
2282 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scsi host: "
2283 "can_queue depth (%d)\n", ioc->name, ioc->shost->can_queue));
2284
Eric Moore635374e2009-03-09 01:21:12 -06002285 /* contiguous pool for request and chains, 16 byte align, one extra "
2286 * "frame for smid=0
2287 */
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302288 ioc->chain_depth = ioc->chains_needed_per_io * ioc->scsiio_depth;
Kashyap, Desai35f805b2010-11-13 04:34:06 +05302289 sz = ((ioc->scsiio_depth + 1) * ioc->request_sz);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302290
2291 /* hi-priority queue */
2292 sz += (ioc->hi_priority_depth * ioc->request_sz);
2293
2294 /* internal queue */
2295 sz += (ioc->internal_depth * ioc->request_sz);
Eric Moore635374e2009-03-09 01:21:12 -06002296
2297 ioc->request_dma_sz = sz;
2298 ioc->request = pci_alloc_consistent(ioc->pdev, sz, &ioc->request_dma);
2299 if (!ioc->request) {
2300 printk(MPT2SAS_ERR_FMT "request pool: pci_alloc_consistent "
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302301 "failed: hba_depth(%d), chains_per_io(%d), frame_sz(%d), "
2302 "total(%d kB)\n", ioc->name, ioc->hba_queue_depth,
Eric Moore635374e2009-03-09 01:21:12 -06002303 ioc->chains_needed_per_io, ioc->request_sz, sz/1024);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302304 if (ioc->scsiio_depth < MPT2SAS_SAS_QUEUE_DEPTH)
Eric Moore635374e2009-03-09 01:21:12 -06002305 goto out;
2306 retry_sz += 64;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302307 ioc->hba_queue_depth = max_request_credit - retry_sz;
Eric Moore635374e2009-03-09 01:21:12 -06002308 goto retry_allocation;
2309 }
2310
2311 if (retry_sz)
2312 printk(MPT2SAS_ERR_FMT "request pool: pci_alloc_consistent "
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302313 "succeed: hba_depth(%d), chains_per_io(%d), frame_sz(%d), "
2314 "total(%d kb)\n", ioc->name, ioc->hba_queue_depth,
Eric Moore635374e2009-03-09 01:21:12 -06002315 ioc->chains_needed_per_io, ioc->request_sz, sz/1024);
2316
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302317
2318 /* hi-priority queue */
2319 ioc->hi_priority = ioc->request + ((ioc->scsiio_depth + 1) *
Eric Moore635374e2009-03-09 01:21:12 -06002320 ioc->request_sz);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302321 ioc->hi_priority_dma = ioc->request_dma + ((ioc->scsiio_depth + 1) *
Eric Moore635374e2009-03-09 01:21:12 -06002322 ioc->request_sz);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302323
2324 /* internal queue */
2325 ioc->internal = ioc->hi_priority + (ioc->hi_priority_depth *
2326 ioc->request_sz);
2327 ioc->internal_dma = ioc->hi_priority_dma + (ioc->hi_priority_depth *
2328 ioc->request_sz);
2329
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302330
Eric Moore635374e2009-03-09 01:21:12 -06002331 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "request pool(0x%p): "
2332 "depth(%d), frame_size(%d), pool_size(%d kB)\n", ioc->name,
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302333 ioc->request, ioc->hba_queue_depth, ioc->request_sz,
2334 (ioc->hba_queue_depth * ioc->request_sz)/1024));
Eric Moore635374e2009-03-09 01:21:12 -06002335 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "request pool: dma(0x%llx)\n",
2336 ioc->name, (unsigned long long) ioc->request_dma));
2337 total_sz += sz;
2338
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +05302339 sz = ioc->scsiio_depth * sizeof(struct scsiio_tracker);
Kashyap, Desai89009fb2010-03-17 16:22:52 +05302340 ioc->scsi_lookup_pages = get_order(sz);
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +05302341 ioc->scsi_lookup = (struct scsiio_tracker *)__get_free_pages(
Kashyap, Desai89009fb2010-03-17 16:22:52 +05302342 GFP_KERNEL, ioc->scsi_lookup_pages);
Eric Moore635374e2009-03-09 01:21:12 -06002343 if (!ioc->scsi_lookup) {
Kashyap, Desai89009fb2010-03-17 16:22:52 +05302344 printk(MPT2SAS_ERR_FMT "scsi_lookup: get_free_pages failed, "
2345 "sz(%d)\n", ioc->name, (int)sz);
Eric Moore635374e2009-03-09 01:21:12 -06002346 goto out;
2347 }
2348
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302349 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scsiio(0x%p): "
2350 "depth(%d)\n", ioc->name, ioc->request,
2351 ioc->scsiio_depth));
2352
Kashyap, Desai35f805b2010-11-13 04:34:06 +05302353 /* loop till the allocation succeeds */
2354 do {
2355 sz = ioc->chain_depth * sizeof(struct chain_tracker);
2356 ioc->chain_pages = get_order(sz);
2357 ioc->chain_lookup = (struct chain_tracker *)__get_free_pages(
2358 GFP_KERNEL, ioc->chain_pages);
2359 if (ioc->chain_lookup == NULL)
2360 ioc->chain_depth -= 100;
2361 } while (ioc->chain_lookup == NULL);
2362 ioc->chain_dma_pool = pci_pool_create("chain pool", ioc->pdev,
2363 ioc->request_sz, 16, 0);
2364 if (!ioc->chain_dma_pool) {
2365 printk(MPT2SAS_ERR_FMT "chain_dma_pool: pci_pool_create "
2366 "failed\n", ioc->name);
2367 goto out;
2368 }
2369 for (i = 0; i < ioc->chain_depth; i++) {
2370 ioc->chain_lookup[i].chain_buffer = pci_pool_alloc(
2371 ioc->chain_dma_pool , GFP_KERNEL,
2372 &ioc->chain_lookup[i].chain_buffer_dma);
2373 if (!ioc->chain_lookup[i].chain_buffer) {
2374 ioc->chain_depth = i;
2375 goto chain_done;
2376 }
2377 total_sz += ioc->request_sz;
2378 }
2379chain_done:
2380 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "chain pool depth"
2381 "(%d), frame_size(%d), pool_size(%d kB)\n", ioc->name,
2382 ioc->chain_depth, ioc->request_sz, ((ioc->chain_depth *
2383 ioc->request_sz))/1024));
2384
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302385 /* initialize hi-priority queue smid's */
2386 ioc->hpr_lookup = kcalloc(ioc->hi_priority_depth,
2387 sizeof(struct request_tracker), GFP_KERNEL);
2388 if (!ioc->hpr_lookup) {
2389 printk(MPT2SAS_ERR_FMT "hpr_lookup: kcalloc failed\n",
2390 ioc->name);
2391 goto out;
2392 }
2393 ioc->hi_priority_smid = ioc->scsiio_depth + 1;
2394 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "hi_priority(0x%p): "
2395 "depth(%d), start smid(%d)\n", ioc->name, ioc->hi_priority,
2396 ioc->hi_priority_depth, ioc->hi_priority_smid));
2397
2398 /* initialize internal queue smid's */
2399 ioc->internal_lookup = kcalloc(ioc->internal_depth,
2400 sizeof(struct request_tracker), GFP_KERNEL);
2401 if (!ioc->internal_lookup) {
2402 printk(MPT2SAS_ERR_FMT "internal_lookup: kcalloc failed\n",
2403 ioc->name);
2404 goto out;
2405 }
2406 ioc->internal_smid = ioc->hi_priority_smid + ioc->hi_priority_depth;
2407 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "internal(0x%p): "
2408 "depth(%d), start smid(%d)\n", ioc->name, ioc->internal,
2409 ioc->internal_depth, ioc->internal_smid));
Eric Moore635374e2009-03-09 01:21:12 -06002410
2411 /* sense buffers, 4 byte align */
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302412 sz = ioc->scsiio_depth * SCSI_SENSE_BUFFERSIZE;
Eric Moore635374e2009-03-09 01:21:12 -06002413 ioc->sense_dma_pool = pci_pool_create("sense pool", ioc->pdev, sz, 4,
2414 0);
2415 if (!ioc->sense_dma_pool) {
2416 printk(MPT2SAS_ERR_FMT "sense pool: pci_pool_create failed\n",
2417 ioc->name);
2418 goto out;
2419 }
2420 ioc->sense = pci_pool_alloc(ioc->sense_dma_pool , GFP_KERNEL,
2421 &ioc->sense_dma);
2422 if (!ioc->sense) {
2423 printk(MPT2SAS_ERR_FMT "sense pool: pci_pool_alloc failed\n",
2424 ioc->name);
2425 goto out;
2426 }
2427 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT
2428 "sense pool(0x%p): depth(%d), element_size(%d), pool_size"
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05302429 "(%d kB)\n", ioc->name, ioc->sense, ioc->scsiio_depth,
Eric Moore635374e2009-03-09 01:21:12 -06002430 SCSI_SENSE_BUFFERSIZE, sz/1024));
2431 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "sense_dma(0x%llx)\n",
2432 ioc->name, (unsigned long long)ioc->sense_dma));
2433 total_sz += sz;
2434
2435 /* reply pool, 4 byte align */
2436 sz = ioc->reply_free_queue_depth * ioc->reply_sz;
2437 ioc->reply_dma_pool = pci_pool_create("reply pool", ioc->pdev, sz, 4,
2438 0);
2439 if (!ioc->reply_dma_pool) {
2440 printk(MPT2SAS_ERR_FMT "reply pool: pci_pool_create failed\n",
2441 ioc->name);
2442 goto out;
2443 }
2444 ioc->reply = pci_pool_alloc(ioc->reply_dma_pool , GFP_KERNEL,
2445 &ioc->reply_dma);
2446 if (!ioc->reply) {
2447 printk(MPT2SAS_ERR_FMT "reply pool: pci_pool_alloc failed\n",
2448 ioc->name);
2449 goto out;
2450 }
Kashyap, Desaidd3741d2010-11-13 04:31:14 +05302451 ioc->reply_dma_min_address = (u32)(ioc->reply_dma);
2452 ioc->reply_dma_max_address = (u32)(ioc->reply_dma) + sz;
Eric Moore635374e2009-03-09 01:21:12 -06002453 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply pool(0x%p): depth"
2454 "(%d), frame_size(%d), pool_size(%d kB)\n", ioc->name, ioc->reply,
2455 ioc->reply_free_queue_depth, ioc->reply_sz, sz/1024));
2456 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_dma(0x%llx)\n",
2457 ioc->name, (unsigned long long)ioc->reply_dma));
2458 total_sz += sz;
2459
2460 /* reply free queue, 16 byte align */
2461 sz = ioc->reply_free_queue_depth * 4;
2462 ioc->reply_free_dma_pool = pci_pool_create("reply_free pool",
2463 ioc->pdev, sz, 16, 0);
2464 if (!ioc->reply_free_dma_pool) {
2465 printk(MPT2SAS_ERR_FMT "reply_free pool: pci_pool_create "
2466 "failed\n", ioc->name);
2467 goto out;
2468 }
2469 ioc->reply_free = pci_pool_alloc(ioc->reply_free_dma_pool , GFP_KERNEL,
2470 &ioc->reply_free_dma);
2471 if (!ioc->reply_free) {
2472 printk(MPT2SAS_ERR_FMT "reply_free pool: pci_pool_alloc "
2473 "failed\n", ioc->name);
2474 goto out;
2475 }
2476 memset(ioc->reply_free, 0, sz);
2477 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_free pool(0x%p): "
2478 "depth(%d), element_size(%d), pool_size(%d kB)\n", ioc->name,
2479 ioc->reply_free, ioc->reply_free_queue_depth, 4, sz/1024));
2480 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_free_dma"
2481 "(0x%llx)\n", ioc->name, (unsigned long long)ioc->reply_free_dma));
2482 total_sz += sz;
2483
2484 /* reply post queue, 16 byte align */
2485 sz = ioc->reply_post_queue_depth * sizeof(Mpi2DefaultReplyDescriptor_t);
2486 ioc->reply_post_free_dma_pool = pci_pool_create("reply_post_free pool",
2487 ioc->pdev, sz, 16, 0);
2488 if (!ioc->reply_post_free_dma_pool) {
2489 printk(MPT2SAS_ERR_FMT "reply_post_free pool: pci_pool_create "
2490 "failed\n", ioc->name);
2491 goto out;
2492 }
2493 ioc->reply_post_free = pci_pool_alloc(ioc->reply_post_free_dma_pool ,
2494 GFP_KERNEL, &ioc->reply_post_free_dma);
2495 if (!ioc->reply_post_free) {
2496 printk(MPT2SAS_ERR_FMT "reply_post_free pool: pci_pool_alloc "
2497 "failed\n", ioc->name);
2498 goto out;
2499 }
2500 memset(ioc->reply_post_free, 0, sz);
2501 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply post free pool"
2502 "(0x%p): depth(%d), element_size(%d), pool_size(%d kB)\n",
2503 ioc->name, ioc->reply_post_free, ioc->reply_post_queue_depth, 8,
2504 sz/1024));
2505 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "reply_post_free_dma = "
2506 "(0x%llx)\n", ioc->name, (unsigned long long)
2507 ioc->reply_post_free_dma));
2508 total_sz += sz;
2509
2510 ioc->config_page_sz = 512;
2511 ioc->config_page = pci_alloc_consistent(ioc->pdev,
2512 ioc->config_page_sz, &ioc->config_page_dma);
2513 if (!ioc->config_page) {
2514 printk(MPT2SAS_ERR_FMT "config page: pci_pool_alloc "
2515 "failed\n", ioc->name);
2516 goto out;
2517 }
2518 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "config page(0x%p): size"
2519 "(%d)\n", ioc->name, ioc->config_page, ioc->config_page_sz));
2520 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "config_page_dma"
2521 "(0x%llx)\n", ioc->name, (unsigned long long)ioc->config_page_dma));
2522 total_sz += ioc->config_page_sz;
2523
2524 printk(MPT2SAS_INFO_FMT "Allocated physical memory: size(%d kB)\n",
2525 ioc->name, total_sz/1024);
2526 printk(MPT2SAS_INFO_FMT "Current Controller Queue Depth(%d), "
2527 "Max Controller Queue Depth(%d)\n",
2528 ioc->name, ioc->shost->can_queue, facts->RequestCredit);
2529 printk(MPT2SAS_INFO_FMT "Scatter Gather Elements per IO(%d)\n",
2530 ioc->name, ioc->shost->sg_tablesize);
2531 return 0;
2532
2533 out:
Eric Moore635374e2009-03-09 01:21:12 -06002534 return -ENOMEM;
2535}
2536
2537
2538/**
2539 * mpt2sas_base_get_iocstate - Get the current state of a MPT adapter.
2540 * @ioc: Pointer to MPT_ADAPTER structure
2541 * @cooked: Request raw or cooked IOC state
2542 *
2543 * Returns all IOC Doorbell register bits if cooked==0, else just the
2544 * Doorbell bits in MPI_IOC_STATE_MASK.
2545 */
2546u32
2547mpt2sas_base_get_iocstate(struct MPT2SAS_ADAPTER *ioc, int cooked)
2548{
2549 u32 s, sc;
2550
2551 s = readl(&ioc->chip->Doorbell);
2552 sc = s & MPI2_IOC_STATE_MASK;
2553 return cooked ? sc : s;
2554}
2555
2556/**
2557 * _base_wait_on_iocstate - waiting on a particular ioc state
2558 * @ioc_state: controller state { READY, OPERATIONAL, or RESET }
2559 * @timeout: timeout in second
2560 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2561 *
2562 * Returns 0 for success, non-zero for failure.
2563 */
2564static int
2565_base_wait_on_iocstate(struct MPT2SAS_ADAPTER *ioc, u32 ioc_state, int timeout,
2566 int sleep_flag)
2567{
2568 u32 count, cntdn;
2569 u32 current_state;
2570
2571 count = 0;
2572 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2573 do {
2574 current_state = mpt2sas_base_get_iocstate(ioc, 1);
2575 if (current_state == ioc_state)
2576 return 0;
2577 if (count && current_state == MPI2_IOC_STATE_FAULT)
2578 break;
2579 if (sleep_flag == CAN_SLEEP)
2580 msleep(1);
2581 else
2582 udelay(500);
2583 count++;
2584 } while (--cntdn);
2585
2586 return current_state;
2587}
2588
2589/**
2590 * _base_wait_for_doorbell_int - waiting for controller interrupt(generated by
2591 * a write to the doorbell)
2592 * @ioc: per adapter object
2593 * @timeout: timeout in second
2594 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2595 *
2596 * Returns 0 for success, non-zero for failure.
2597 *
2598 * Notes: MPI2_HIS_IOC2SYS_DB_STATUS - set to one when IOC writes to doorbell.
2599 */
2600static int
2601_base_wait_for_doorbell_int(struct MPT2SAS_ADAPTER *ioc, int timeout,
2602 int sleep_flag)
2603{
2604 u32 cntdn, count;
2605 u32 int_status;
2606
2607 count = 0;
2608 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2609 do {
2610 int_status = readl(&ioc->chip->HostInterruptStatus);
2611 if (int_status & MPI2_HIS_IOC2SYS_DB_STATUS) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302612 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002613 "successful count(%d), timeout(%d)\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06002614 __func__, count, timeout));
2615 return 0;
2616 }
2617 if (sleep_flag == CAN_SLEEP)
2618 msleep(1);
2619 else
2620 udelay(500);
2621 count++;
2622 } while (--cntdn);
2623
2624 printk(MPT2SAS_ERR_FMT "%s: failed due to timeout count(%d), "
2625 "int_status(%x)!\n", ioc->name, __func__, count, int_status);
2626 return -EFAULT;
2627}
2628
2629/**
2630 * _base_wait_for_doorbell_ack - waiting for controller to read the doorbell.
2631 * @ioc: per adapter object
2632 * @timeout: timeout in second
2633 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2634 *
2635 * Returns 0 for success, non-zero for failure.
2636 *
2637 * Notes: MPI2_HIS_SYS2IOC_DB_STATUS - set to one when host writes to
2638 * doorbell.
2639 */
2640static int
2641_base_wait_for_doorbell_ack(struct MPT2SAS_ADAPTER *ioc, int timeout,
2642 int sleep_flag)
2643{
2644 u32 cntdn, count;
2645 u32 int_status;
2646 u32 doorbell;
2647
2648 count = 0;
2649 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2650 do {
2651 int_status = readl(&ioc->chip->HostInterruptStatus);
2652 if (!(int_status & MPI2_HIS_SYS2IOC_DB_STATUS)) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302653 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002654 "successful count(%d), timeout(%d)\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06002655 __func__, count, timeout));
2656 return 0;
2657 } else if (int_status & MPI2_HIS_IOC2SYS_DB_STATUS) {
2658 doorbell = readl(&ioc->chip->Doorbell);
2659 if ((doorbell & MPI2_IOC_STATE_MASK) ==
2660 MPI2_IOC_STATE_FAULT) {
2661 mpt2sas_base_fault_info(ioc , doorbell);
2662 return -EFAULT;
2663 }
2664 } else if (int_status == 0xFFFFFFFF)
2665 goto out;
2666
2667 if (sleep_flag == CAN_SLEEP)
2668 msleep(1);
2669 else
2670 udelay(500);
2671 count++;
2672 } while (--cntdn);
2673
2674 out:
2675 printk(MPT2SAS_ERR_FMT "%s: failed due to timeout count(%d), "
2676 "int_status(%x)!\n", ioc->name, __func__, count, int_status);
2677 return -EFAULT;
2678}
2679
2680/**
2681 * _base_wait_for_doorbell_not_used - waiting for doorbell to not be in use
2682 * @ioc: per adapter object
2683 * @timeout: timeout in second
2684 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2685 *
2686 * Returns 0 for success, non-zero for failure.
2687 *
2688 */
2689static int
2690_base_wait_for_doorbell_not_used(struct MPT2SAS_ADAPTER *ioc, int timeout,
2691 int sleep_flag)
2692{
2693 u32 cntdn, count;
2694 u32 doorbell_reg;
2695
2696 count = 0;
2697 cntdn = (sleep_flag == CAN_SLEEP) ? 1000*timeout : 2000*timeout;
2698 do {
2699 doorbell_reg = readl(&ioc->chip->Doorbell);
2700 if (!(doorbell_reg & MPI2_DOORBELL_USED)) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302701 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002702 "successful count(%d), timeout(%d)\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06002703 __func__, count, timeout));
2704 return 0;
2705 }
2706 if (sleep_flag == CAN_SLEEP)
2707 msleep(1);
2708 else
2709 udelay(500);
2710 count++;
2711 } while (--cntdn);
2712
2713 printk(MPT2SAS_ERR_FMT "%s: failed due to timeout count(%d), "
2714 "doorbell_reg(%x)!\n", ioc->name, __func__, count, doorbell_reg);
2715 return -EFAULT;
2716}
2717
2718/**
2719 * _base_send_ioc_reset - send doorbell reset
2720 * @ioc: per adapter object
2721 * @reset_type: currently only supports: MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET
2722 * @timeout: timeout in second
2723 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2724 *
2725 * Returns 0 for success, non-zero for failure.
2726 */
2727static int
2728_base_send_ioc_reset(struct MPT2SAS_ADAPTER *ioc, u8 reset_type, int timeout,
2729 int sleep_flag)
2730{
2731 u32 ioc_state;
2732 int r = 0;
2733
2734 if (reset_type != MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET) {
2735 printk(MPT2SAS_ERR_FMT "%s: unknown reset_type\n",
2736 ioc->name, __func__);
2737 return -EFAULT;
2738 }
2739
2740 if (!(ioc->facts.IOCCapabilities &
2741 MPI2_IOCFACTS_CAPABILITY_EVENT_REPLAY))
2742 return -EFAULT;
2743
2744 printk(MPT2SAS_INFO_FMT "sending message unit reset !!\n", ioc->name);
2745
2746 writel(reset_type << MPI2_DOORBELL_FUNCTION_SHIFT,
2747 &ioc->chip->Doorbell);
2748 if ((_base_wait_for_doorbell_ack(ioc, 15, sleep_flag))) {
2749 r = -EFAULT;
2750 goto out;
2751 }
2752 ioc_state = _base_wait_on_iocstate(ioc, MPI2_IOC_STATE_READY,
2753 timeout, sleep_flag);
2754 if (ioc_state) {
2755 printk(MPT2SAS_ERR_FMT "%s: failed going to ready state "
2756 " (ioc_state=0x%x)\n", ioc->name, __func__, ioc_state);
2757 r = -EFAULT;
2758 goto out;
2759 }
2760 out:
2761 printk(MPT2SAS_INFO_FMT "message unit reset: %s\n",
2762 ioc->name, ((r == 0) ? "SUCCESS" : "FAILED"));
2763 return r;
2764}
2765
2766/**
2767 * _base_handshake_req_reply_wait - send request thru doorbell interface
2768 * @ioc: per adapter object
2769 * @request_bytes: request length
2770 * @request: pointer having request payload
2771 * @reply_bytes: reply length
2772 * @reply: pointer to reply payload
2773 * @timeout: timeout in second
2774 * @sleep_flag: CAN_SLEEP or NO_SLEEP
2775 *
2776 * Returns 0 for success, non-zero for failure.
2777 */
2778static int
2779_base_handshake_req_reply_wait(struct MPT2SAS_ADAPTER *ioc, int request_bytes,
2780 u32 *request, int reply_bytes, u16 *reply, int timeout, int sleep_flag)
2781{
2782 MPI2DefaultReply_t *default_reply = (MPI2DefaultReply_t *)reply;
2783 int i;
2784 u8 failed;
2785 u16 dummy;
2786 u32 *mfp;
2787
2788 /* make sure doorbell is not in use */
2789 if ((readl(&ioc->chip->Doorbell) & MPI2_DOORBELL_USED)) {
2790 printk(MPT2SAS_ERR_FMT "doorbell is in use "
2791 " (line=%d)\n", ioc->name, __LINE__);
2792 return -EFAULT;
2793 }
2794
2795 /* clear pending doorbell interrupts from previous state changes */
2796 if (readl(&ioc->chip->HostInterruptStatus) &
2797 MPI2_HIS_IOC2SYS_DB_STATUS)
2798 writel(0, &ioc->chip->HostInterruptStatus);
2799
2800 /* send message to ioc */
2801 writel(((MPI2_FUNCTION_HANDSHAKE<<MPI2_DOORBELL_FUNCTION_SHIFT) |
2802 ((request_bytes/4)<<MPI2_DOORBELL_ADD_DWORDS_SHIFT)),
2803 &ioc->chip->Doorbell);
2804
Kashyap, Desai29786e12009-09-14 11:06:21 +05302805 if ((_base_wait_for_doorbell_int(ioc, 5, NO_SLEEP))) {
Eric Moore635374e2009-03-09 01:21:12 -06002806 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2807 "int failed (line=%d)\n", ioc->name, __LINE__);
2808 return -EFAULT;
2809 }
2810 writel(0, &ioc->chip->HostInterruptStatus);
2811
2812 if ((_base_wait_for_doorbell_ack(ioc, 5, sleep_flag))) {
2813 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2814 "ack failed (line=%d)\n", ioc->name, __LINE__);
2815 return -EFAULT;
2816 }
2817
2818 /* send message 32-bits at a time */
2819 for (i = 0, failed = 0; i < request_bytes/4 && !failed; i++) {
2820 writel(cpu_to_le32(request[i]), &ioc->chip->Doorbell);
2821 if ((_base_wait_for_doorbell_ack(ioc, 5, sleep_flag)))
2822 failed = 1;
2823 }
2824
2825 if (failed) {
2826 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2827 "sending request failed (line=%d)\n", ioc->name, __LINE__);
2828 return -EFAULT;
2829 }
2830
2831 /* now wait for the reply */
2832 if ((_base_wait_for_doorbell_int(ioc, timeout, sleep_flag))) {
2833 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2834 "int failed (line=%d)\n", ioc->name, __LINE__);
2835 return -EFAULT;
2836 }
2837
2838 /* read the first two 16-bits, it gives the total length of the reply */
2839 reply[0] = le16_to_cpu(readl(&ioc->chip->Doorbell)
2840 & MPI2_DOORBELL_DATA_MASK);
2841 writel(0, &ioc->chip->HostInterruptStatus);
2842 if ((_base_wait_for_doorbell_int(ioc, 5, sleep_flag))) {
2843 printk(MPT2SAS_ERR_FMT "doorbell handshake "
2844 "int failed (line=%d)\n", ioc->name, __LINE__);
2845 return -EFAULT;
2846 }
2847 reply[1] = le16_to_cpu(readl(&ioc->chip->Doorbell)
2848 & MPI2_DOORBELL_DATA_MASK);
2849 writel(0, &ioc->chip->HostInterruptStatus);
2850
2851 for (i = 2; i < default_reply->MsgLength * 2; i++) {
2852 if ((_base_wait_for_doorbell_int(ioc, 5, sleep_flag))) {
2853 printk(MPT2SAS_ERR_FMT "doorbell "
2854 "handshake int failed (line=%d)\n", ioc->name,
2855 __LINE__);
2856 return -EFAULT;
2857 }
2858 if (i >= reply_bytes/2) /* overflow case */
2859 dummy = readl(&ioc->chip->Doorbell);
2860 else
2861 reply[i] = le16_to_cpu(readl(&ioc->chip->Doorbell)
2862 & MPI2_DOORBELL_DATA_MASK);
2863 writel(0, &ioc->chip->HostInterruptStatus);
2864 }
2865
2866 _base_wait_for_doorbell_int(ioc, 5, sleep_flag);
2867 if (_base_wait_for_doorbell_not_used(ioc, 5, sleep_flag) != 0) {
2868 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "doorbell is in use "
2869 " (line=%d)\n", ioc->name, __LINE__));
2870 }
2871 writel(0, &ioc->chip->HostInterruptStatus);
2872
2873 if (ioc->logging_level & MPT_DEBUG_INIT) {
2874 mfp = (u32 *)reply;
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302875 printk(KERN_INFO "\toffset:data\n");
Eric Moore635374e2009-03-09 01:21:12 -06002876 for (i = 0; i < reply_bytes/4; i++)
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302877 printk(KERN_INFO "\t[0x%02x]:%08x\n", i*4,
Eric Moore635374e2009-03-09 01:21:12 -06002878 le32_to_cpu(mfp[i]));
2879 }
2880 return 0;
2881}
2882
2883/**
2884 * mpt2sas_base_sas_iounit_control - send sas iounit control to FW
2885 * @ioc: per adapter object
2886 * @mpi_reply: the reply payload from FW
2887 * @mpi_request: the request payload sent to FW
2888 *
2889 * The SAS IO Unit Control Request message allows the host to perform low-level
2890 * operations, such as resets on the PHYs of the IO Unit, also allows the host
2891 * to obtain the IOC assigned device handles for a device if it has other
2892 * identifying information about the device, in addition allows the host to
2893 * remove IOC resources associated with the device.
2894 *
2895 * Returns 0 for success, non-zero for failure.
2896 */
2897int
2898mpt2sas_base_sas_iounit_control(struct MPT2SAS_ADAPTER *ioc,
2899 Mpi2SasIoUnitControlReply_t *mpi_reply,
2900 Mpi2SasIoUnitControlRequest_t *mpi_request)
2901{
2902 u16 smid;
2903 u32 ioc_state;
2904 unsigned long timeleft;
2905 u8 issue_reset;
2906 int rc;
2907 void *request;
2908 u16 wait_state_count;
2909
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05302910 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06002911 __func__));
2912
2913 mutex_lock(&ioc->base_cmds.mutex);
2914
2915 if (ioc->base_cmds.status != MPT2_CMD_NOT_USED) {
2916 printk(MPT2SAS_ERR_FMT "%s: base_cmd in use\n",
2917 ioc->name, __func__);
2918 rc = -EAGAIN;
2919 goto out;
2920 }
2921
2922 wait_state_count = 0;
2923 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
2924 while (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
2925 if (wait_state_count++ == 10) {
2926 printk(MPT2SAS_ERR_FMT
2927 "%s: failed due to ioc not operational\n",
2928 ioc->name, __func__);
2929 rc = -EFAULT;
2930 goto out;
2931 }
2932 ssleep(1);
2933 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
2934 printk(MPT2SAS_INFO_FMT "%s: waiting for "
2935 "operational state(count=%d)\n", ioc->name,
2936 __func__, wait_state_count);
2937 }
2938
2939 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
2940 if (!smid) {
2941 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
2942 ioc->name, __func__);
2943 rc = -EAGAIN;
2944 goto out;
2945 }
2946
2947 rc = 0;
2948 ioc->base_cmds.status = MPT2_CMD_PENDING;
2949 request = mpt2sas_base_get_msg_frame(ioc, smid);
2950 ioc->base_cmds.smid = smid;
2951 memcpy(request, mpi_request, sizeof(Mpi2SasIoUnitControlRequest_t));
2952 if (mpi_request->Operation == MPI2_SAS_OP_PHY_HARD_RESET ||
2953 mpi_request->Operation == MPI2_SAS_OP_PHY_LINK_RESET)
2954 ioc->ioc_link_reset_in_progress = 1;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05302955 mpt2sas_base_put_smid_default(ioc, smid);
Kashyap, Desaibcfb6e62009-09-14 11:05:24 +05302956 init_completion(&ioc->base_cmds.done);
Eric Moore635374e2009-03-09 01:21:12 -06002957 timeleft = wait_for_completion_timeout(&ioc->base_cmds.done,
2958 msecs_to_jiffies(10000));
2959 if ((mpi_request->Operation == MPI2_SAS_OP_PHY_HARD_RESET ||
2960 mpi_request->Operation == MPI2_SAS_OP_PHY_LINK_RESET) &&
2961 ioc->ioc_link_reset_in_progress)
2962 ioc->ioc_link_reset_in_progress = 0;
2963 if (!(ioc->base_cmds.status & MPT2_CMD_COMPLETE)) {
2964 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
2965 ioc->name, __func__);
2966 _debug_dump_mf(mpi_request,
2967 sizeof(Mpi2SasIoUnitControlRequest_t)/4);
2968 if (!(ioc->base_cmds.status & MPT2_CMD_RESET))
2969 issue_reset = 1;
2970 goto issue_host_reset;
2971 }
2972 if (ioc->base_cmds.status & MPT2_CMD_REPLY_VALID)
2973 memcpy(mpi_reply, ioc->base_cmds.reply,
2974 sizeof(Mpi2SasIoUnitControlReply_t));
2975 else
2976 memset(mpi_reply, 0, sizeof(Mpi2SasIoUnitControlReply_t));
2977 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
2978 goto out;
2979
2980 issue_host_reset:
2981 if (issue_reset)
2982 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
2983 FORCE_BIG_HAMMER);
2984 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
2985 rc = -EFAULT;
2986 out:
2987 mutex_unlock(&ioc->base_cmds.mutex);
2988 return rc;
2989}
2990
2991
2992/**
2993 * mpt2sas_base_scsi_enclosure_processor - sending request to sep device
2994 * @ioc: per adapter object
2995 * @mpi_reply: the reply payload from FW
2996 * @mpi_request: the request payload sent to FW
2997 *
2998 * The SCSI Enclosure Processor request message causes the IOC to
2999 * communicate with SES devices to control LED status signals.
3000 *
3001 * Returns 0 for success, non-zero for failure.
3002 */
3003int
3004mpt2sas_base_scsi_enclosure_processor(struct MPT2SAS_ADAPTER *ioc,
3005 Mpi2SepReply_t *mpi_reply, Mpi2SepRequest_t *mpi_request)
3006{
3007 u16 smid;
3008 u32 ioc_state;
3009 unsigned long timeleft;
3010 u8 issue_reset;
3011 int rc;
3012 void *request;
3013 u16 wait_state_count;
3014
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303015 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06003016 __func__));
3017
3018 mutex_lock(&ioc->base_cmds.mutex);
3019
3020 if (ioc->base_cmds.status != MPT2_CMD_NOT_USED) {
3021 printk(MPT2SAS_ERR_FMT "%s: base_cmd in use\n",
3022 ioc->name, __func__);
3023 rc = -EAGAIN;
3024 goto out;
3025 }
3026
3027 wait_state_count = 0;
3028 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3029 while (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
3030 if (wait_state_count++ == 10) {
3031 printk(MPT2SAS_ERR_FMT
3032 "%s: failed due to ioc not operational\n",
3033 ioc->name, __func__);
3034 rc = -EFAULT;
3035 goto out;
3036 }
3037 ssleep(1);
3038 ioc_state = mpt2sas_base_get_iocstate(ioc, 1);
3039 printk(MPT2SAS_INFO_FMT "%s: waiting for "
3040 "operational state(count=%d)\n", ioc->name,
3041 __func__, wait_state_count);
3042 }
3043
3044 smid = mpt2sas_base_get_smid(ioc, ioc->base_cb_idx);
3045 if (!smid) {
3046 printk(MPT2SAS_ERR_FMT "%s: failed obtaining a smid\n",
3047 ioc->name, __func__);
3048 rc = -EAGAIN;
3049 goto out;
3050 }
3051
3052 rc = 0;
3053 ioc->base_cmds.status = MPT2_CMD_PENDING;
3054 request = mpt2sas_base_get_msg_frame(ioc, smid);
3055 ioc->base_cmds.smid = smid;
3056 memcpy(request, mpi_request, sizeof(Mpi2SepReply_t));
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303057 mpt2sas_base_put_smid_default(ioc, smid);
Kashyap, Desaibcfb6e62009-09-14 11:05:24 +05303058 init_completion(&ioc->base_cmds.done);
Eric Moore635374e2009-03-09 01:21:12 -06003059 timeleft = wait_for_completion_timeout(&ioc->base_cmds.done,
3060 msecs_to_jiffies(10000));
3061 if (!(ioc->base_cmds.status & MPT2_CMD_COMPLETE)) {
3062 printk(MPT2SAS_ERR_FMT "%s: timeout\n",
3063 ioc->name, __func__);
3064 _debug_dump_mf(mpi_request,
3065 sizeof(Mpi2SepRequest_t)/4);
3066 if (!(ioc->base_cmds.status & MPT2_CMD_RESET))
3067 issue_reset = 1;
3068 goto issue_host_reset;
3069 }
3070 if (ioc->base_cmds.status & MPT2_CMD_REPLY_VALID)
3071 memcpy(mpi_reply, ioc->base_cmds.reply,
3072 sizeof(Mpi2SepReply_t));
3073 else
3074 memset(mpi_reply, 0, sizeof(Mpi2SepReply_t));
3075 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3076 goto out;
3077
3078 issue_host_reset:
3079 if (issue_reset)
3080 mpt2sas_base_hard_reset_handler(ioc, CAN_SLEEP,
3081 FORCE_BIG_HAMMER);
3082 ioc->base_cmds.status = MPT2_CMD_NOT_USED;
3083 rc = -EFAULT;
3084 out:
3085 mutex_unlock(&ioc->base_cmds.mutex);
3086 return rc;
3087}
3088
3089/**
3090 * _base_get_port_facts - obtain port facts reply and save in ioc
3091 * @ioc: per adapter object
3092 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3093 *
3094 * Returns 0 for success, non-zero for failure.
3095 */
3096static int
3097_base_get_port_facts(struct MPT2SAS_ADAPTER *ioc, int port, int sleep_flag)
3098{
3099 Mpi2PortFactsRequest_t mpi_request;
3100 Mpi2PortFactsReply_t mpi_reply, *pfacts;
3101 int mpi_reply_sz, mpi_request_sz, r;
3102
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303103 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06003104 __func__));
3105
3106 mpi_reply_sz = sizeof(Mpi2PortFactsReply_t);
3107 mpi_request_sz = sizeof(Mpi2PortFactsRequest_t);
3108 memset(&mpi_request, 0, mpi_request_sz);
3109 mpi_request.Function = MPI2_FUNCTION_PORT_FACTS;
3110 mpi_request.PortNumber = port;
3111 r = _base_handshake_req_reply_wait(ioc, mpi_request_sz,
3112 (u32 *)&mpi_request, mpi_reply_sz, (u16 *)&mpi_reply, 5, CAN_SLEEP);
3113
3114 if (r != 0) {
3115 printk(MPT2SAS_ERR_FMT "%s: handshake failed (r=%d)\n",
3116 ioc->name, __func__, r);
3117 return r;
3118 }
3119
3120 pfacts = &ioc->pfacts[port];
3121 memset(pfacts, 0, sizeof(Mpi2PortFactsReply_t));
3122 pfacts->PortNumber = mpi_reply.PortNumber;
3123 pfacts->VP_ID = mpi_reply.VP_ID;
3124 pfacts->VF_ID = mpi_reply.VF_ID;
3125 pfacts->MaxPostedCmdBuffers =
3126 le16_to_cpu(mpi_reply.MaxPostedCmdBuffers);
3127
3128 return 0;
3129}
3130
3131/**
3132 * _base_get_ioc_facts - obtain ioc facts reply and save in ioc
3133 * @ioc: per adapter object
3134 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3135 *
3136 * Returns 0 for success, non-zero for failure.
3137 */
3138static int
3139_base_get_ioc_facts(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
3140{
3141 Mpi2IOCFactsRequest_t mpi_request;
3142 Mpi2IOCFactsReply_t mpi_reply, *facts;
3143 int mpi_reply_sz, mpi_request_sz, r;
3144
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303145 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06003146 __func__));
3147
3148 mpi_reply_sz = sizeof(Mpi2IOCFactsReply_t);
3149 mpi_request_sz = sizeof(Mpi2IOCFactsRequest_t);
3150 memset(&mpi_request, 0, mpi_request_sz);
3151 mpi_request.Function = MPI2_FUNCTION_IOC_FACTS;
3152 r = _base_handshake_req_reply_wait(ioc, mpi_request_sz,
3153 (u32 *)&mpi_request, mpi_reply_sz, (u16 *)&mpi_reply, 5, CAN_SLEEP);
3154
3155 if (r != 0) {
3156 printk(MPT2SAS_ERR_FMT "%s: handshake failed (r=%d)\n",
3157 ioc->name, __func__, r);
3158 return r;
3159 }
3160
3161 facts = &ioc->facts;
3162 memset(facts, 0, sizeof(Mpi2IOCFactsReply_t));
3163 facts->MsgVersion = le16_to_cpu(mpi_reply.MsgVersion);
3164 facts->HeaderVersion = le16_to_cpu(mpi_reply.HeaderVersion);
3165 facts->VP_ID = mpi_reply.VP_ID;
3166 facts->VF_ID = mpi_reply.VF_ID;
3167 facts->IOCExceptions = le16_to_cpu(mpi_reply.IOCExceptions);
3168 facts->MaxChainDepth = mpi_reply.MaxChainDepth;
3169 facts->WhoInit = mpi_reply.WhoInit;
3170 facts->NumberOfPorts = mpi_reply.NumberOfPorts;
3171 facts->RequestCredit = le16_to_cpu(mpi_reply.RequestCredit);
3172 facts->MaxReplyDescriptorPostQueueDepth =
3173 le16_to_cpu(mpi_reply.MaxReplyDescriptorPostQueueDepth);
3174 facts->ProductID = le16_to_cpu(mpi_reply.ProductID);
3175 facts->IOCCapabilities = le32_to_cpu(mpi_reply.IOCCapabilities);
3176 if ((facts->IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_INTEGRATED_RAID))
3177 ioc->ir_firmware = 1;
3178 facts->FWVersion.Word = le32_to_cpu(mpi_reply.FWVersion.Word);
3179 facts->IOCRequestFrameSize =
3180 le16_to_cpu(mpi_reply.IOCRequestFrameSize);
3181 facts->MaxInitiators = le16_to_cpu(mpi_reply.MaxInitiators);
3182 facts->MaxTargets = le16_to_cpu(mpi_reply.MaxTargets);
3183 ioc->shost->max_id = -1;
3184 facts->MaxSasExpanders = le16_to_cpu(mpi_reply.MaxSasExpanders);
3185 facts->MaxEnclosures = le16_to_cpu(mpi_reply.MaxEnclosures);
3186 facts->ProtocolFlags = le16_to_cpu(mpi_reply.ProtocolFlags);
3187 facts->HighPriorityCredit =
3188 le16_to_cpu(mpi_reply.HighPriorityCredit);
3189 facts->ReplyFrameSize = mpi_reply.ReplyFrameSize;
3190 facts->MaxDevHandle = le16_to_cpu(mpi_reply.MaxDevHandle);
3191
3192 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "hba queue depth(%d), "
3193 "max chains per io(%d)\n", ioc->name, facts->RequestCredit,
3194 facts->MaxChainDepth));
3195 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "request frame size(%d), "
3196 "reply frame size(%d)\n", ioc->name,
3197 facts->IOCRequestFrameSize * 4, facts->ReplyFrameSize * 4));
3198 return 0;
3199}
3200
3201/**
3202 * _base_send_ioc_init - send ioc_init to firmware
3203 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -06003204 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3205 *
3206 * Returns 0 for success, non-zero for failure.
3207 */
3208static int
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303209_base_send_ioc_init(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
Eric Moore635374e2009-03-09 01:21:12 -06003210{
3211 Mpi2IOCInitRequest_t mpi_request;
3212 Mpi2IOCInitReply_t mpi_reply;
3213 int r;
Kashyap, Desaia8ebd762009-09-23 17:29:29 +05303214 struct timeval current_time;
Kashyap, Desai463217b2009-10-05 15:53:06 +05303215 u16 ioc_status;
Eric Moore635374e2009-03-09 01:21:12 -06003216
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303217 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06003218 __func__));
3219
3220 memset(&mpi_request, 0, sizeof(Mpi2IOCInitRequest_t));
3221 mpi_request.Function = MPI2_FUNCTION_IOC_INIT;
3222 mpi_request.WhoInit = MPI2_WHOINIT_HOST_DRIVER;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303223 mpi_request.VF_ID = 0; /* TODO */
3224 mpi_request.VP_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003225 mpi_request.MsgVersion = cpu_to_le16(MPI2_VERSION);
3226 mpi_request.HeaderVersion = cpu_to_le16(MPI2_HEADER_VERSION);
3227
3228 /* In MPI Revision I (0xA), the SystemReplyFrameSize(offset 0x18) was
3229 * removed and made reserved. For those with older firmware will need
3230 * this fix. It was decided that the Reply and Request frame sizes are
3231 * the same.
3232 */
3233 if ((ioc->facts.HeaderVersion >> 8) < 0xA) {
3234 mpi_request.Reserved7 = cpu_to_le16(ioc->reply_sz);
3235/* mpi_request.SystemReplyFrameSize =
3236 * cpu_to_le16(ioc->reply_sz);
3237 */
3238 }
3239
3240 mpi_request.SystemRequestFrameSize = cpu_to_le16(ioc->request_sz/4);
3241 mpi_request.ReplyDescriptorPostQueueDepth =
3242 cpu_to_le16(ioc->reply_post_queue_depth);
3243 mpi_request.ReplyFreeQueueDepth =
3244 cpu_to_le16(ioc->reply_free_queue_depth);
3245
3246#if BITS_PER_LONG > 32
3247 mpi_request.SenseBufferAddressHigh =
3248 cpu_to_le32(ioc->sense_dma >> 32);
3249 mpi_request.SystemReplyAddressHigh =
3250 cpu_to_le32(ioc->reply_dma >> 32);
3251 mpi_request.SystemRequestFrameBaseAddress =
3252 cpu_to_le64(ioc->request_dma);
3253 mpi_request.ReplyFreeQueueAddress =
3254 cpu_to_le64(ioc->reply_free_dma);
3255 mpi_request.ReplyDescriptorPostQueueAddress =
3256 cpu_to_le64(ioc->reply_post_free_dma);
3257#else
3258 mpi_request.SystemRequestFrameBaseAddress =
3259 cpu_to_le32(ioc->request_dma);
3260 mpi_request.ReplyFreeQueueAddress =
3261 cpu_to_le32(ioc->reply_free_dma);
3262 mpi_request.ReplyDescriptorPostQueueAddress =
3263 cpu_to_le32(ioc->reply_post_free_dma);
3264#endif
3265
Kashyap, Desaia8ebd762009-09-23 17:29:29 +05303266 /* This time stamp specifies number of milliseconds
3267 * since epoch ~ midnight January 1, 1970.
3268 */
3269 do_gettimeofday(&current_time);
Kashyap, Desai7921b35c2010-03-17 16:21:33 +05303270 mpi_request.TimeStamp = cpu_to_le64((u64)current_time.tv_sec * 1000 +
3271 (current_time.tv_usec / 1000));
Kashyap, Desaia8ebd762009-09-23 17:29:29 +05303272
Eric Moore635374e2009-03-09 01:21:12 -06003273 if (ioc->logging_level & MPT_DEBUG_INIT) {
3274 u32 *mfp;
3275 int i;
3276
3277 mfp = (u32 *)&mpi_request;
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303278 printk(KERN_INFO "\toffset:data\n");
Eric Moore635374e2009-03-09 01:21:12 -06003279 for (i = 0; i < sizeof(Mpi2IOCInitRequest_t)/4; i++)
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303280 printk(KERN_INFO "\t[0x%02x]:%08x\n", i*4,
Eric Moore635374e2009-03-09 01:21:12 -06003281 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
Kashyap, Desai463217b2009-10-05 15:53:06 +05303295 ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & MPI2_IOCSTATUS_MASK;
3296 if (ioc_status != MPI2_IOCSTATUS_SUCCESS ||
Eric Moore635374e2009-03-09 01:21:12 -06003297 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
Eric Moore635374e2009-03-09 01:21:12 -06003308 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3309 *
3310 * Returns 0 for success, non-zero for failure.
3311 */
3312static int
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303313_base_send_port_enable(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
Eric Moore635374e2009-03-09 01:21:12 -06003314{
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;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303341 mpi_request->VF_ID = 0; /* TODO */
3342 mpi_request->VP_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003343
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303344 mpt2sas_base_put_smid_default(ioc, smid);
Kashyap, Desaibcfb6e62009-09-14 11:05:24 +05303345 init_completion(&ioc->base_cmds.done);
Eric Moore635374e2009-03-09 01:21:12 -06003346 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
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303359 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: complete\n",
Eric Moore635374e2009-03-09 01:21:12 -06003360 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
Eric Moore635374e2009-03-09 01:21:12 -06003406 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3407 *
3408 * Returns 0 for success, non-zero for failure.
3409 */
3410static int
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303411_base_event_notification(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
Eric Moore635374e2009-03-09 01:21:12 -06003412{
3413 Mpi2EventNotificationRequest_t *mpi_request;
3414 unsigned long timeleft;
3415 u16 smid;
3416 int r = 0;
3417 int i;
3418
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303419 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06003420 __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;
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303439 mpi_request->VF_ID = 0; /* TODO */
3440 mpi_request->VP_ID = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003441 for (i = 0; i < MPI2_EVENT_NOTIFY_EVENTMASK_WORDS; i++)
3442 mpi_request->EventMasks[i] =
Kashyap, Desaie94f6742010-03-17 16:24:52 +05303443 cpu_to_le32(ioc->event_masks[i]);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303444 mpt2sas_base_put_smid_default(ioc, smid);
Kashyap, Desaibcfb6e62009-09-14 11:05:24 +05303445 init_completion(&ioc->base_cmds.done);
Eric Moore635374e2009-03-09 01:21:12 -06003446 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
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303457 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: complete\n",
Eric Moore635374e2009-03-09 01:21:12 -06003458 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);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303496 _base_event_notification(ioc, CAN_SLEEP);
Eric Moore635374e2009-03-09 01:21:12 -06003497 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
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303519 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "clear interrupts\n",
Eric Moore635374e2009-03-09 01:21:12 -06003520 ioc->name));
Eric Moore635374e2009-03-09 01:21:12 -06003521
3522 count = 0;
3523 do {
3524 /* Write magic sequence to WriteSequence register
3525 * Loop until in diagnostic mode
3526 */
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303527 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "write magic "
Eric Moore635374e2009-03-09 01:21:12 -06003528 "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);
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303547 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "wrote magic "
Eric Moore635374e2009-03-09 01:21:12 -06003548 "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
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303555 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "diag reset: issued\n",
Eric Moore635374e2009-03-09 01:21:12 -06003556 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
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303582 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "restart the adapter "
Eric Moore635374e2009-03-09 01:21:12 -06003583 "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
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303589 drsprintk(ioc, printk(MPT2SAS_INFO_FMT
Eric Moore635374e2009-03-09 01:21:12 -06003590 "re-enable the HCDW\n", ioc->name));
3591 writel(hcb_size | MPI2_HCB_SIZE_HCB_ENABLE,
3592 &ioc->chip->HCBSize);
3593 }
3594
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303595 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "restart the adapter\n",
Eric Moore635374e2009-03-09 01:21:12 -06003596 ioc->name));
3597 writel(host_diagnostic & ~MPI2_DIAG_HOLD_IOC_RESET,
3598 &ioc->chip->HostDiagnostic);
3599
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303600 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "disable writes to the "
Eric Moore635374e2009-03-09 01:21:12 -06003601 "diagnostic register\n", ioc->name));
3602 writel(MPI2_WRSEQ_FLUSH_KEY_VALUE, &ioc->chip->WriteSequence);
3603
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303604 drsprintk(ioc, printk(MPT2SAS_INFO_FMT "Wait for FW to go to the "
Eric Moore635374e2009-03-09 01:21:12 -06003605 "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;
Kashyap, Desaid32a8c12010-06-17 13:36:53 +05303636 int rc;
Eric Moore635374e2009-03-09 01:21:12 -06003637
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303638 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06003639 __func__));
3640
Eric Moore3cb54692010-07-08 14:44:34 -06003641 if (ioc->pci_error_recovery)
3642 return 0;
3643
Eric Moore635374e2009-03-09 01:21:12 -06003644 ioc_state = mpt2sas_base_get_iocstate(ioc, 0);
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303645 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: ioc_state(0x%08x)\n",
Eric Moore635374e2009-03-09 01:21:12 -06003646 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) {
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303652 dhsprintk(ioc, printk(MPT2SAS_INFO_FMT "unexpected doorbell "
Eric Moore635374e2009-03-09 01:21:12 -06003653 "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,
Kashyap, Desaid32a8c12010-06-17 13:36:53 +05303668 MPI2_FUNCTION_IOC_MESSAGE_UNIT_RESET, 15, CAN_SLEEP))) {
3669 ioc->ioc_reset_count++;
Eric Moore635374e2009-03-09 01:21:12 -06003670 return 0;
Kashyap, Desaid32a8c12010-06-17 13:36:53 +05303671 }
Eric Moore635374e2009-03-09 01:21:12 -06003672
3673 issue_diag_reset:
Kashyap, Desaid32a8c12010-06-17 13:36:53 +05303674 rc = _base_diag_reset(ioc, CAN_SLEEP);
3675 ioc->ioc_reset_count++;
3676 return rc;
Eric Moore635374e2009-03-09 01:21:12 -06003677}
3678
3679/**
3680 * _base_make_ioc_operational - put controller in OPERATIONAL state
3681 * @ioc: per adapter object
Eric Moore635374e2009-03-09 01:21:12 -06003682 * @sleep_flag: CAN_SLEEP or NO_SLEEP
3683 *
3684 * Returns 0 for success, non-zero for failure.
3685 */
3686static int
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303687_base_make_ioc_operational(struct MPT2SAS_ADAPTER *ioc, int sleep_flag)
Eric Moore635374e2009-03-09 01:21:12 -06003688{
3689 int r, i;
3690 unsigned long flags;
3691 u32 reply_address;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303692 u16 smid;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303693 struct _tr_list *delayed_tr, *delayed_tr_next;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303694 u8 hide_flag;
Eric Moore635374e2009-03-09 01:21:12 -06003695
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303696 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06003697 __func__));
3698
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05303699 /* 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
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303706 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
Eric Moore635374e2009-03-09 01:21:12 -06003712 /* initialize the scsi lookup free list */
3713 spin_lock_irqsave(&ioc->scsi_lookup_lock, flags);
3714 INIT_LIST_HEAD(&ioc->free_list);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303715 smid = 1;
3716 for (i = 0; i < ioc->scsiio_depth; i++, smid++) {
Kashyap, Desai35f805b2010-11-13 04:34:06 +05303717 INIT_LIST_HEAD(&ioc->scsi_lookup[i].chain_list);
Eric Moore635374e2009-03-09 01:21:12 -06003718 ioc->scsi_lookup[i].cb_idx = 0xFF;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303719 ioc->scsi_lookup[i].smid = smid;
3720 ioc->scsi_lookup[i].scmd = NULL;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303721 ioc->scsi_lookup[i].direct_io = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003722 list_add_tail(&ioc->scsi_lookup[i].tracker_list,
3723 &ioc->free_list);
3724 }
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303725
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 }
Kashyap, Desai35f805b2010-11-13 04:34:06 +05303745
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
Eric Moore635374e2009-03-09 01:21:12 -06003752 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++)
Eric Moore03ea1112009-04-21 15:37:57 -06003762 ioc->reply_post_free[i].Words = ULLONG_MAX;
Eric Moore635374e2009-03-09 01:21:12 -06003763
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303764 r = _base_send_ioc_init(ioc, sleep_flag);
Eric Moore635374e2009-03-09 01:21:12 -06003765 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);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303775 r = _base_event_notification(ioc, sleep_flag);
Eric Moore635374e2009-03-09 01:21:12 -06003776 if (r)
3777 return r;
3778
3779 if (sleep_flag == CAN_SLEEP)
3780 _base_static_config_pages(ioc);
3781
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +05303782 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
Kashyap, Desai570c67a2010-06-17 13:43:17 +05303791 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 }
Kashyap, Desaidd5fd332010-06-17 13:31:17 +05303797
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303798 r = _base_send_port_enable(ioc, sleep_flag);
Eric Moore635374e2009-03-09 01:21:12 -06003799 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
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303816 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06003817 __func__));
3818
3819 _base_mask_interrupts(ioc);
Kashyap, Desai6558bbb2010-03-17 16:23:36 +05303820 ioc->shost_recovery = 1;
Eric Moore635374e2009-03-09 01:21:12 -06003821 _base_make_ioc_ready(ioc, CAN_SLEEP, SOFT_RESET);
Kashyap, Desai6558bbb2010-03-17 16:23:36 +05303822 ioc->shost_recovery = 0;
Eric Moore635374e2009-03-09 01:21:12 -06003823 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);
Kashyap, Desaief7c80c2010-04-05 14:20:07 +05303833 pci_disable_pcie_error_reporting(pdev);
Eric Moore635374e2009-03-09 01:21:12 -06003834 pci_disable_device(pdev);
Eric Moore635374e2009-03-09 01:21:12 -06003835 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;
Eric Moore635374e2009-03-09 01:21:12 -06003848
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05303849 dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06003850 __func__));
3851
3852 r = mpt2sas_base_map_resources(ioc);
3853 if (r)
3854 return r;
3855
Kashyap, Desaifcfe6392009-08-07 19:38:48 +05303856 pci_set_drvdata(ioc->pdev, ioc->shost);
Kashyap, Desai96b681c2009-09-23 17:32:06 +05303857 r = _base_get_ioc_facts(ioc, CAN_SLEEP);
Eric Moore635374e2009-03-09 01:21:12 -06003858 if (r)
3859 goto out_free_resources;
3860
Kashyap, Desai96b681c2009-09-23 17:32:06 +05303861 r = _base_make_ioc_ready(ioc, CAN_SLEEP, SOFT_RESET);
Eric Moore635374e2009-03-09 01:21:12 -06003862 if (r)
3863 goto out_free_resources;
3864
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303865 ioc->pfacts = kcalloc(ioc->facts.NumberOfPorts,
3866 sizeof(Mpi2PortFactsReply_t), GFP_KERNEL);
Kashyap, Desaif6aee7b2010-03-17 16:26:48 +05303867 if (!ioc->pfacts) {
3868 r = -ENOMEM;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303869 goto out_free_resources;
Kashyap, Desaif6aee7b2010-03-17 16:26:48 +05303870 }
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05303871
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
Eric Moore635374e2009-03-09 01:21:12 -06003878 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
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303884 /* 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);
Kashyap, Desai3e2e8332010-06-17 13:47:29 +05303890 if (!ioc->pd_handles) {
3891 r = -ENOMEM;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303892 goto out_free_resources;
Kashyap, Desai3e2e8332010-06-17 13:47:29 +05303893 }
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303894
Kashyap, Desaie75b9b62009-12-16 18:52:39 +05303895 ioc->fwfault_debug = mpt2sas_fwfault_debug;
3896
Eric Moore635374e2009-03-09 01:21:12 -06003897 /* base internal command bits */
3898 mutex_init(&ioc->base_cmds.mutex);
Eric Moore635374e2009-03-09 01:21:12 -06003899 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);
Eric Moore635374e2009-03-09 01:21:12 -06003906
Kashyap, Desaid685c262009-11-17 13:16:37 +05303907 /* 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
Eric Moore635374e2009-03-09 01:21:12 -06003912 /* 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);
Eric Moore635374e2009-03-09 01:21:12 -06003916
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);
Eric Moore635374e2009-03-09 01:21:12 -06003921
3922 /* ctl module internal command bits */
3923 ioc->ctl_cmds.reply = kzalloc(ioc->reply_sz, GFP_KERNEL);
Kashyap, Desai769578f2010-06-17 13:49:28 +05303924 ioc->ctl_cmds.sense = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_KERNEL);
Eric Moore635374e2009-03-09 01:21:12 -06003925 ioc->ctl_cmds.status = MPT2_CMD_NOT_USED;
3926 mutex_init(&ioc->ctl_cmds.mutex);
Eric Moore635374e2009-03-09 01:21:12 -06003927
Kashyap, Desaif6aee7b2010-03-17 16:26:48 +05303928 if (!ioc->base_cmds.reply || !ioc->transport_cmds.reply ||
3929 !ioc->scsih_cmds.reply || !ioc->tm_cmds.reply ||
Kashyap, Desai769578f2010-06-17 13:49:28 +05303930 !ioc->config_cmds.reply || !ioc->ctl_cmds.reply ||
3931 !ioc->ctl_cmds.sense) {
Kashyap, Desaif6aee7b2010-03-17 16:26:48 +05303932 r = -ENOMEM;
3933 goto out_free_resources;
3934 }
3935
Kashyap, Desai3e2e8332010-06-17 13:47:29 +05303936 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
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05303943 init_completion(&ioc->shost_recovery_done);
3944
Eric Moore635374e2009-03-09 01:21:12 -06003945 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);
Eric Moore635374e2009-03-09 01:21:12 -06003958 _base_unmask_events(ioc, MPI2_EVENT_LOG_ENTRY_ADDED);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05303959 r = _base_make_ioc_operational(ioc, CAN_SLEEP);
Eric Moore635374e2009-03-09 01:21:12 -06003960 if (r)
3961 goto out_free_resources;
3962
Kashyap, Desai6cb8ef52010-11-13 04:32:18 +05303963 if (missing_delay[0] != -1 && missing_delay[1] != -1)
3964 _base_update_missing_delay(ioc, missing_delay[0],
3965 missing_delay[1]);
3966
Kashyap, Desaie4750c92009-08-07 19:37:59 +05303967 mpt2sas_base_start_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06003968 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);
Kashyap, Desaifcfe6392009-08-07 19:38:48 +05303975 pci_set_drvdata(ioc->pdev, NULL);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05303976 kfree(ioc->pd_handles);
Eric Moore635374e2009-03-09 01:21:12 -06003977 kfree(ioc->tm_cmds.reply);
3978 kfree(ioc->transport_cmds.reply);
Kashyap, Desaie94f6742010-03-17 16:24:52 +05303979 kfree(ioc->scsih_cmds.reply);
Eric Moore635374e2009-03-09 01:21:12 -06003980 kfree(ioc->config_cmds.reply);
3981 kfree(ioc->base_cmds.reply);
3982 kfree(ioc->ctl_cmds.reply);
Kashyap, Desai769578f2010-06-17 13:49:28 +05303983 kfree(ioc->ctl_cmds.sense);
Eric Moore635374e2009-03-09 01:21:12 -06003984 kfree(ioc->pfacts);
3985 ioc->ctl_cmds.reply = NULL;
3986 ioc->base_cmds.reply = NULL;
3987 ioc->tm_cmds.reply = NULL;
Kashyap, Desaie94f6742010-03-17 16:24:52 +05303988 ioc->scsih_cmds.reply = NULL;
Eric Moore635374e2009-03-09 01:21:12 -06003989 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{
Eric Moore635374e2009-03-09 01:21:12 -06004005
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05304006 dexitprintk(ioc, printk(MPT2SAS_INFO_FMT "%s\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06004007 __func__));
4008
Kashyap, Desaie4750c92009-08-07 19:37:59 +05304009 mpt2sas_base_stop_watchdog(ioc);
Eric Moore635374e2009-03-09 01:21:12 -06004010 mpt2sas_base_free_resources(ioc);
4011 _base_release_memory_pools(ioc);
Kashyap, Desaifcfe6392009-08-07 19:38:48 +05304012 pci_set_drvdata(ioc->pdev, NULL);
Kashyap, Desaif3eedd62010-06-17 13:46:13 +05304013 kfree(ioc->pd_handles);
Eric Moore635374e2009-03-09 01:21:12 -06004014 kfree(ioc->pfacts);
4015 kfree(ioc->ctl_cmds.reply);
Kashyap, Desai769578f2010-06-17 13:49:28 +05304016 kfree(ioc->ctl_cmds.sense);
Eric Moore635374e2009-03-09 01:21:12 -06004017 kfree(ioc->base_cmds.reply);
4018 kfree(ioc->tm_cmds.reply);
4019 kfree(ioc->transport_cmds.reply);
Kashyap, Desaie94f6742010-03-17 16:24:52 +05304020 kfree(ioc->scsih_cmds.reply);
Eric Moore635374e2009-03-09 01:21:12 -06004021 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{
Kashyap, Desai42244892011-01-04 11:38:39 +05304039 mpt2sas_scsih_reset_handler(ioc, reset_phase);
4040 mpt2sas_ctl_reset_handler(ioc, reset_phase);
Eric Moore635374e2009-03-09 01:21:12 -06004041 switch (reset_phase) {
4042 case MPT2_IOC_PRE_RESET:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05304043 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Eric Moore635374e2009-03-09 01:21:12 -06004044 "MPT2_IOC_PRE_RESET\n", ioc->name, __func__));
4045 break;
4046 case MPT2_IOC_AFTER_RESET:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05304047 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Eric Moore635374e2009-03-09 01:21:12 -06004048 "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);
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07004062 ioc->config_cmds.smid = USHRT_MAX;
Eric Moore635374e2009-03-09 01:21:12 -06004063 complete(&ioc->config_cmds.done);
4064 }
4065 break;
4066 case MPT2_IOC_DONE_RESET:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05304067 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: "
Eric Moore635374e2009-03-09 01:21:12 -06004068 "MPT2_IOC_DONE_RESET\n", ioc->name, __func__));
4069 break;
4070 }
Eric Moore635374e2009-03-09 01:21:12 -06004071}
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);
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05304098 for (i = 0; i < ioc->scsiio_depth; i++)
Eric Moore635374e2009-03-09 01:21:12 -06004099 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 */
Kashyap, Desaid2742132010-06-17 13:28:55 +05304107 wait_event_timeout(ioc->reset_wq, ioc->pending_io_count == 0, 10 * HZ);
Eric Moore635374e2009-03-09 01:21:12 -06004108}
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{
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304122 int r;
Eric Moore635374e2009-03-09 01:21:12 -06004123 unsigned long flags;
Kashyap, Desai42244892011-01-04 11:38:39 +05304124 u8 pe_complete = ioc->wait_for_port_enable_to_complete;
Eric Moore635374e2009-03-09 01:21:12 -06004125
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05304126 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: enter\n", ioc->name,
Eric Moore635374e2009-03-09 01:21:12 -06004127 __func__));
4128
Eric Moore3cb54692010-07-08 14:44:34 -06004129 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
Kashyap, Desaifa7f3162009-09-23 17:26:58 +05304136 if (mpt2sas_fwfault_debug)
4137 mpt2sas_halt_firmware(ioc);
4138
Kashyap, Desaid2742132010-06-17 13:28:55 +05304139 /* 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);
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05304151 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit\n", ioc->name,
Kashyap, Desaid2742132010-06-17 13:28:55 +05304152 __func__));
4153 return ioc->ioc_reset_in_progress_status;
Eric Moore635374e2009-03-09 01:21:12 -06004154 }
Kashyap, Desaid2742132010-06-17 13:28:55 +05304155
4156 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
Eric Moore635374e2009-03-09 01:21:12 -06004157 ioc->shost_recovery = 1;
Eric Moore635374e2009-03-09 01:21:12 -06004158 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);
Kashyap, Desai42244892011-01-04 11:38:39 +05304167
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 }
Kashyap, Desai7b936b02009-09-25 11:44:41 +05304175 r = _base_make_ioc_operational(ioc, sleep_flag);
Eric Moore635374e2009-03-09 01:21:12 -06004176 if (!r)
4177 _base_reset_handler(ioc, MPT2_IOC_DONE_RESET);
4178 out:
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05304179 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: %s\n",
Eric Moore635374e2009-03-09 01:21:12 -06004180 ioc->name, __func__, ((r == 0) ? "SUCCESS" : "FAILED")));
4181
4182 spin_lock_irqsave(&ioc->ioc_reset_in_progress_lock, flags);
Kashyap, Desaid2742132010-06-17 13:28:55 +05304183 ioc->ioc_reset_in_progress_status = r;
Kashyap, Desai155dd4c2009-08-20 13:22:00 +05304184 ioc->shost_recovery = 0;
Kashyap, Desaif1c35e62010-03-09 16:31:43 +05304185 complete(&ioc->shost_recovery_done);
Eric Moore635374e2009-03-09 01:21:12 -06004186 spin_unlock_irqrestore(&ioc->ioc_reset_in_progress_lock, flags);
Kashyap, Desaid2742132010-06-17 13:28:55 +05304187 mutex_unlock(&ioc->reset_in_progress_mutex);
Kashyap, Desaicd4e12e2009-08-20 13:20:54 +05304188
Kashyap, Desaieabb08a2010-06-17 13:43:57 +05304189 dtmprintk(ioc, printk(MPT2SAS_INFO_FMT "%s: exit\n", ioc->name,
Kashyap, Desaid2742132010-06-17 13:28:55 +05304190 __func__));
Eric Moore635374e2009-03-09 01:21:12 -06004191 return r;
4192}