Linux Audio

Check our new training course

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