blob: 35cbd36f8d3b16494879f1ced261bdf8e3abd40e [file] [log] [blame]
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001/*
adam radford3f1530c2010-12-14 18:51:48 -08002 * Linux MegaRAID driver for SAS based RAID controllers
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003 *
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05304 * Copyright (c) 2003-2013 LSI Corporation
5 * Copyright (c) 2013-2014 Avago Technologies
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006 *
adam radford3f1530c2010-12-14 18:51:48 -08007 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040011 *
adam radford3f1530c2010-12-14 18:51:48 -080012 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040016 *
adam radford3f1530c2010-12-14 18:51:48 -080017 * You should have received a copy of the GNU General Public License
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +053018 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040019 *
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +053020 * Authors: Avago Technologies
adam radford3f1530c2010-12-14 18:51:48 -080021 * Sreenivas Bagalkote
22 * Sumant Patro
23 * Bo Yang
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +053024 * Adam Radford
25 * Kashyap Desai <kashyap.desai@avagotech.com>
26 * Sumit Saxena <sumit.saxena@avagotech.com>
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040027 *
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +053028 * Send feedback to: megaraidlinux.pdl@avagotech.com
adam radford3f1530c2010-12-14 18:51:48 -080029 *
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +053030 * Mail to: Avago Technologies, 350 West Trimble Road, Building 90,
31 * San Jose, California 95131
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040032 */
33
34#include <linux/kernel.h>
35#include <linux/types.h>
36#include <linux/pci.h>
37#include <linux/list.h>
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040038#include <linux/moduleparam.h>
39#include <linux/module.h>
40#include <linux/spinlock.h>
41#include <linux/interrupt.h>
42#include <linux/delay.h>
43#include <linux/uio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040045#include <asm/uaccess.h>
Al Viro43399232005-10-04 17:36:04 +010046#include <linux/fs.h>
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040047#include <linux/compat.h>
Sumant Patrocf62a0a2007-02-14 12:41:55 -080048#include <linux/blkdev.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010049#include <linux/mutex.h>
Yang, Boc3518832009-10-06 14:18:02 -060050#include <linux/poll.h>
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040051
52#include <scsi/scsi.h>
53#include <scsi/scsi_cmnd.h>
54#include <scsi/scsi_device.h>
55#include <scsi/scsi_host.h>
adam radford4bcde502011-07-26 15:42:52 -070056#include <scsi/scsi_tcq.h>
adam radford9c915a82010-12-21 13:34:31 -080057#include "megaraid_sas_fusion.h"
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040058#include "megaraid_sas.h"
59
bo yangad84db22007-11-09 04:40:16 -050060/*
Yang, Bo1fd10682010-10-12 07:18:50 -060061 * Number of sectors per IO command
62 * Will be set in megasas_init_mfi if user does not provide
63 */
64static unsigned int max_sectors;
65module_param_named(max_sectors, max_sectors, int, 0);
66MODULE_PARM_DESC(max_sectors,
67 "Maximum number of sectors per IO command");
68
adam radford80d9da92010-12-21 10:17:40 -080069static int msix_disable;
70module_param(msix_disable, int, S_IRUGO);
71MODULE_PARM_DESC(msix_disable, "Disable MSI-X interrupt handling. Default: 0");
72
adam radford079eadd2012-10-01 19:26:59 -070073static unsigned int msix_vectors;
74module_param(msix_vectors, int, S_IRUGO);
75MODULE_PARM_DESC(msix_vectors, "MSI-X max vector count. Default: Set by FW");
76
adam radford229fe472014-03-10 02:51:56 -070077static int allow_vf_ioctls;
78module_param(allow_vf_ioctls, int, S_IRUGO);
79MODULE_PARM_DESC(allow_vf_ioctls, "Allow ioctls in SR-IOV VF mode. Default: 0");
80
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +053081static unsigned int throttlequeuedepth = MEGASAS_THROTTLE_QUEUE_DEPTH;
adam radfordc5daa6a2012-07-17 18:20:03 -070082module_param(throttlequeuedepth, int, S_IRUGO);
83MODULE_PARM_DESC(throttlequeuedepth,
84 "Adapter queue depth when throttled due to I/O timeout. Default: 16");
85
Sumit Saxenae3d178c2016-01-28 21:04:34 +053086unsigned int resetwaittime = MEGASAS_RESET_WAIT_TIME;
adam radfordc007b8b2012-07-17 18:20:24 -070087module_param(resetwaittime, int, S_IRUGO);
88MODULE_PARM_DESC(resetwaittime, "Wait time in seconds after I/O timeout "
89 "before resetting adapter. Default: 180");
90
Sumit.Saxena@avagotech.comac951362014-09-12 18:57:48 +053091int smp_affinity_enable = 1;
92module_param(smp_affinity_enable, int, S_IRUGO);
93MODULE_PARM_DESC(smp_affinity_enable, "SMP affinity feature enable/disbale Default: enable(1)");
94
Sumit Saxena179ac142016-01-28 21:04:28 +053095int rdpq_enable = 1;
96module_param(rdpq_enable, int, S_IRUGO);
97MODULE_PARM_DESC(rdpq_enable, " Allocate reply queue in chunks for large queue depth enable/disable Default: disable(0)");
98
Sumit Saxena308ec452016-01-28 21:04:30 +053099unsigned int dual_qdepth_disable;
100module_param(dual_qdepth_disable, int, S_IRUGO);
101MODULE_PARM_DESC(dual_qdepth_disable, "Disable dual queue depth feature. Default: 0");
102
Sumit Saxenae3d178c2016-01-28 21:04:34 +0530103unsigned int scmd_timeout = MEGASAS_DEFAULT_CMD_TIMEOUT;
104module_param(scmd_timeout, int, S_IRUGO);
105MODULE_PARM_DESC(scmd_timeout, "scsi command timeout (10-90s), default 90s. See megasas_reset_timer.");
106
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400107MODULE_LICENSE("GPL");
108MODULE_VERSION(MEGASAS_VERSION);
Sumit.Saxena@avagotech.com43cd7fe2015-04-23 16:31:39 +0530109MODULE_AUTHOR("megaraidlinux.pdl@avagotech.com");
110MODULE_DESCRIPTION("Avago MegaRAID SAS Driver");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400111
adam radford058a8fa2011-10-08 18:14:27 -0700112int megasas_transition_to_ready(struct megasas_instance *instance, int ocr);
bo yang39a98552010-09-22 22:36:29 -0400113static int megasas_get_pd_list(struct megasas_instance *instance);
adam radford21c9e162013-09-06 15:27:14 -0700114static int megasas_ld_list_query(struct megasas_instance *instance,
115 u8 query_type);
bo yang39a98552010-09-22 22:36:29 -0400116static int megasas_issue_init_mfi(struct megasas_instance *instance);
117static int megasas_register_aen(struct megasas_instance *instance,
118 u32 seq_num, u32 class_locale_word);
Sumit Saxena2216c302016-01-28 21:04:26 +0530119static int
120megasas_get_pd_info(struct megasas_instance *instance, u16 device_id);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400121/*
122 * PCI ID table for all supported controllers
123 */
124static struct pci_device_id megasas_pci_table[] = {
125
Henrik Kretzschmarf3d72712006-08-15 11:17:21 +0200126 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1064R)},
127 /* xscale IOP */
128 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078R)},
129 /* ppc IOP */
bo yangaf7a5642008-03-17 04:13:07 -0400130 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078DE)},
131 /* ppc IOP */
Yang, Bo6610a6b2008-08-10 12:42:38 -0700132 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078GEN2)},
133 /* gen2*/
134 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0079GEN2)},
135 /* gen2*/
Yang, Bo87911122009-10-06 14:31:54 -0600136 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0073SKINNY)},
137 /* skinny*/
138 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0071SKINNY)},
139 /* skinny*/
Henrik Kretzschmarf3d72712006-08-15 11:17:21 +0200140 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_VERDE_ZCR)},
141 /* xscale IOP, vega */
142 {PCI_DEVICE(PCI_VENDOR_ID_DELL, PCI_DEVICE_ID_DELL_PERC5)},
143 /* xscale IOP */
adam radford9c915a82010-12-21 13:34:31 -0800144 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FUSION)},
145 /* Fusion */
adam radford229fe472014-03-10 02:51:56 -0700146 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_PLASMA)},
147 /* Plasma */
adam radford36807e62011-10-08 18:15:06 -0700148 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_INVADER)},
149 /* Invader */
Sumit.Saxena@lsi.com21d3c712013-05-22 12:31:43 +0530150 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FURY)},
151 /* Fury */
sumit.saxena@avagotech.com90c204b2015-10-15 13:39:44 +0530152 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_INTRUDER)},
153 /* Intruder */
154 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_INTRUDER_24)},
155 /* Intruder 24 port*/
sumit.saxena@avagotech.com7364d342015-10-15 13:39:54 +0530156 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_CUTLASS_52)},
157 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_CUTLASS_53)},
Henrik Kretzschmarf3d72712006-08-15 11:17:21 +0200158 {}
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400159};
160
161MODULE_DEVICE_TABLE(pci, megasas_pci_table);
162
163static int megasas_mgmt_majorno;
adam radford229fe472014-03-10 02:51:56 -0700164struct megasas_mgmt_info megasas_mgmt_info;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400165static struct fasync_struct *megasas_async_queue;
Arjan van de Ven0b950672006-01-11 13:16:10 +0100166static DEFINE_MUTEX(megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400167
Yang, Boc3518832009-10-06 14:18:02 -0600168static int megasas_poll_wait_aen;
169static DECLARE_WAIT_QUEUE_HEAD(megasas_poll_wait);
Yang, Bo72c4fd32009-10-06 14:20:59 -0600170static u32 support_poll_for_event;
adam radford9c915a82010-12-21 13:34:31 -0800171u32 megasas_dbg_lvl;
Yang, Bo837f5fe2010-10-11 06:59:20 -0600172static u32 support_device_change;
Sumant Patro658dced2006-10-03 13:09:14 -0700173
Yang, Boc3518832009-10-06 14:18:02 -0600174/* define lock for aen poll */
175spinlock_t poll_aen_lock;
176
adam radford9c915a82010-12-21 13:34:31 -0800177void
bo yang7343eb62007-11-09 04:35:44 -0500178megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd,
179 u8 alt_status);
adam radfordebf054b2011-02-24 20:57:15 -0800180static u32
181megasas_read_fw_status_reg_gen2(struct megasas_register_set __iomem *regs);
182static int
183megasas_adp_reset_gen2(struct megasas_instance *instance,
184 struct megasas_register_set __iomem *reg_set);
adam radfordcd50ba82010-12-21 10:23:23 -0800185static irqreturn_t megasas_isr(int irq, void *devp);
186static u32
187megasas_init_adapter_mfi(struct megasas_instance *instance);
188u32
189megasas_build_and_issue_cmd(struct megasas_instance *instance,
190 struct scsi_cmnd *scmd);
191static void megasas_complete_cmd_dpc(unsigned long instance_addr);
adam radford9c915a82010-12-21 13:34:31 -0800192int
adam radford229fe472014-03-10 02:51:56 -0700193wait_and_poll(struct megasas_instance *instance, struct megasas_cmd *cmd,
194 int seconds);
adam radford9c915a82010-12-21 13:34:31 -0800195void megasas_fusion_ocr_wq(struct work_struct *work);
adam radford229fe472014-03-10 02:51:56 -0700196static int megasas_get_ld_vf_affiliation(struct megasas_instance *instance,
197 int initial);
adam radfordcd50ba82010-12-21 10:23:23 -0800198
Sumit Saxena6d40afb2016-01-28 21:04:23 +0530199int
adam radfordcd50ba82010-12-21 10:23:23 -0800200megasas_issue_dcmd(struct megasas_instance *instance, struct megasas_cmd *cmd)
201{
202 instance->instancet->fire_cmd(instance,
203 cmd->frame_phys_addr, 0, instance->reg_set);
Sumit Saxena6d40afb2016-01-28 21:04:23 +0530204 return 0;
adam radfordcd50ba82010-12-21 10:23:23 -0800205}
bo yang7343eb62007-11-09 04:35:44 -0500206
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400207/**
208 * megasas_get_cmd - Get a command from the free pool
209 * @instance: Adapter soft state
210 *
211 * Returns a free command from the pool
212 */
adam radford9c915a82010-12-21 13:34:31 -0800213struct megasas_cmd *megasas_get_cmd(struct megasas_instance
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400214 *instance)
215{
216 unsigned long flags;
217 struct megasas_cmd *cmd = NULL;
218
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +0530219 spin_lock_irqsave(&instance->mfi_pool_lock, flags);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400220
221 if (!list_empty(&instance->cmd_pool)) {
222 cmd = list_entry((&instance->cmd_pool)->next,
223 struct megasas_cmd, list);
224 list_del_init(&cmd->list);
225 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -0500226 dev_err(&instance->pdev->dev, "Command pool empty!\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400227 }
228
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +0530229 spin_unlock_irqrestore(&instance->mfi_pool_lock, flags);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400230 return cmd;
231}
232
233/**
234 * megasas_return_cmd - Return a cmd to free command pool
235 * @instance: Adapter soft state
236 * @cmd: Command packet to be returned to free command pool
237 */
adam radford9c915a82010-12-21 13:34:31 -0800238inline void
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400239megasas_return_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd)
240{
241 unsigned long flags;
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +0530242 u32 blk_tags;
243 struct megasas_cmd_fusion *cmd_fusion;
244 struct fusion_context *fusion = instance->ctrl_context;
245
246 /* This flag is used only for fusion adapter.
247 * Wait for Interrupt for Polled mode DCMD
248 */
249 if (cmd->flags & DRV_DCMD_POLLED_MODE)
250 return;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400251
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +0530252 spin_lock_irqsave(&instance->mfi_pool_lock, flags);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400253
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +0530254 if (fusion) {
255 blk_tags = instance->max_scsi_cmds + cmd->index;
256 cmd_fusion = fusion->cmd_list[blk_tags];
257 megasas_return_cmd_fusion(instance, cmd_fusion);
258 }
259 cmd->scmd = NULL;
260 cmd->frame_count = 0;
261 cmd->flags = 0;
262 if (!fusion && reset_devices)
263 cmd->frame->hdr.cmd = MFI_CMD_INVALID;
264 list_add(&cmd->list, (&instance->cmd_pool)->next);
265
266 spin_unlock_irqrestore(&instance->mfi_pool_lock, flags);
267
268}
Sumant Patro1341c932006-01-25 12:02:40 -0800269
sumit.saxena@avagotech.com714f5172015-08-31 17:23:51 +0530270static const char *
271format_timestamp(uint32_t timestamp)
272{
273 static char buffer[32];
274
275 if ((timestamp & 0xff000000) == 0xff000000)
276 snprintf(buffer, sizeof(buffer), "boot + %us", timestamp &
277 0x00ffffff);
278 else
279 snprintf(buffer, sizeof(buffer), "%us", timestamp);
280 return buffer;
281}
282
283static const char *
284format_class(int8_t class)
285{
286 static char buffer[6];
287
288 switch (class) {
289 case MFI_EVT_CLASS_DEBUG:
290 return "debug";
291 case MFI_EVT_CLASS_PROGRESS:
292 return "progress";
293 case MFI_EVT_CLASS_INFO:
294 return "info";
295 case MFI_EVT_CLASS_WARNING:
296 return "WARN";
297 case MFI_EVT_CLASS_CRITICAL:
298 return "CRIT";
299 case MFI_EVT_CLASS_FATAL:
300 return "FATAL";
301 case MFI_EVT_CLASS_DEAD:
302 return "DEAD";
303 default:
304 snprintf(buffer, sizeof(buffer), "%d", class);
305 return buffer;
306 }
307}
308
309/**
310 * megasas_decode_evt: Decode FW AEN event and print critical event
311 * for information.
312 * @instance: Adapter soft state
313 */
314static void
315megasas_decode_evt(struct megasas_instance *instance)
316{
317 struct megasas_evt_detail *evt_detail = instance->evt_detail;
318 union megasas_evt_class_locale class_locale;
319 class_locale.word = le32_to_cpu(evt_detail->cl.word);
320
321 if (class_locale.members.class >= MFI_EVT_CLASS_CRITICAL)
322 dev_info(&instance->pdev->dev, "%d (%s/0x%04x/%s) - %s\n",
323 le32_to_cpu(evt_detail->seq_num),
324 format_timestamp(le32_to_cpu(evt_detail->time_stamp)),
325 (class_locale.members.locale),
326 format_class(class_locale.members.class),
327 evt_detail->description);
328}
329
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400330/**
adam radford0d490162010-12-14 19:17:17 -0800331* The following functions are defined for xscale
Sumant Patro1341c932006-01-25 12:02:40 -0800332* (deviceid : 1064R, PERC5) controllers
333*/
334
335/**
336 * megasas_enable_intr_xscale - Enables interrupts
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400337 * @regs: MFI register set
338 */
339static inline void
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530340megasas_enable_intr_xscale(struct megasas_instance *instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400341{
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530342 struct megasas_register_set __iomem *regs;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500343
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530344 regs = instance->reg_set;
bo yang39a98552010-09-22 22:36:29 -0400345 writel(0, &(regs)->outbound_intr_mask);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400346
347 /* Dummy readl to force pci flush */
348 readl(&regs->outbound_intr_mask);
349}
350
351/**
Sumant Patrob274cab2006-10-03 12:52:12 -0700352 * megasas_disable_intr_xscale -Disables interrupt
353 * @regs: MFI register set
354 */
355static inline void
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530356megasas_disable_intr_xscale(struct megasas_instance *instance)
Sumant Patrob274cab2006-10-03 12:52:12 -0700357{
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530358 struct megasas_register_set __iomem *regs;
Sumant Patrob274cab2006-10-03 12:52:12 -0700359 u32 mask = 0x1f;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500360
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530361 regs = instance->reg_set;
Sumant Patrob274cab2006-10-03 12:52:12 -0700362 writel(mask, &regs->outbound_intr_mask);
363 /* Dummy readl to force pci flush */
364 readl(&regs->outbound_intr_mask);
365}
366
367/**
Sumant Patro1341c932006-01-25 12:02:40 -0800368 * megasas_read_fw_status_reg_xscale - returns the current FW status value
369 * @regs: MFI register set
370 */
371static u32
372megasas_read_fw_status_reg_xscale(struct megasas_register_set __iomem * regs)
373{
374 return readl(&(regs)->outbound_msg_0);
375}
376/**
377 * megasas_clear_interrupt_xscale - Check & clear interrupt
378 * @regs: MFI register set
379 */
adam radford0d490162010-12-14 19:17:17 -0800380static int
Sumant Patro1341c932006-01-25 12:02:40 -0800381megasas_clear_intr_xscale(struct megasas_register_set __iomem * regs)
382{
383 u32 status;
bo yang39a98552010-09-22 22:36:29 -0400384 u32 mfiStatus = 0;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500385
Sumant Patro1341c932006-01-25 12:02:40 -0800386 /*
387 * Check if it is our interrupt
388 */
389 status = readl(&regs->outbound_intr_status);
390
bo yang39a98552010-09-22 22:36:29 -0400391 if (status & MFI_OB_INTR_STATUS_MASK)
392 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
393 if (status & MFI_XSCALE_OMR0_CHANGE_INTERRUPT)
394 mfiStatus |= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
Sumant Patro1341c932006-01-25 12:02:40 -0800395
396 /*
397 * Clear the interrupt by writing back the same value
398 */
bo yang39a98552010-09-22 22:36:29 -0400399 if (mfiStatus)
400 writel(status, &regs->outbound_intr_status);
Sumant Patro1341c932006-01-25 12:02:40 -0800401
Yang, Bo06f579d2008-08-10 12:42:37 -0700402 /* Dummy readl to force pci flush */
403 readl(&regs->outbound_intr_status);
404
bo yang39a98552010-09-22 22:36:29 -0400405 return mfiStatus;
Sumant Patro1341c932006-01-25 12:02:40 -0800406}
407
408/**
409 * megasas_fire_cmd_xscale - Sends command to the FW
410 * @frame_phys_addr : Physical address of cmd
411 * @frame_count : Number of frames for the command
412 * @regs : MFI register set
413 */
adam radford0d490162010-12-14 19:17:17 -0800414static inline void
Yang, Bo0c79e682009-10-06 14:47:35 -0600415megasas_fire_cmd_xscale(struct megasas_instance *instance,
416 dma_addr_t frame_phys_addr,
417 u32 frame_count,
418 struct megasas_register_set __iomem *regs)
Sumant Patro1341c932006-01-25 12:02:40 -0800419{
bo yang39a98552010-09-22 22:36:29 -0400420 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500421
bo yang39a98552010-09-22 22:36:29 -0400422 spin_lock_irqsave(&instance->hba_lock, flags);
Sumant Patro1341c932006-01-25 12:02:40 -0800423 writel((frame_phys_addr >> 3)|(frame_count),
424 &(regs)->inbound_queue_port);
bo yang39a98552010-09-22 22:36:29 -0400425 spin_unlock_irqrestore(&instance->hba_lock, flags);
426}
427
428/**
429 * megasas_adp_reset_xscale - For controller reset
430 * @regs: MFI register set
431 */
432static int
433megasas_adp_reset_xscale(struct megasas_instance *instance,
434 struct megasas_register_set __iomem *regs)
435{
436 u32 i;
437 u32 pcidata;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500438
bo yang39a98552010-09-22 22:36:29 -0400439 writel(MFI_ADP_RESET, &regs->inbound_doorbell);
440
441 for (i = 0; i < 3; i++)
442 msleep(1000); /* sleep for 3 secs */
443 pcidata = 0;
444 pci_read_config_dword(instance->pdev, MFI_1068_PCSR_OFFSET, &pcidata);
Bjorn Helgaas1be18252015-07-07 15:52:34 -0500445 dev_notice(&instance->pdev->dev, "pcidata = %x\n", pcidata);
bo yang39a98552010-09-22 22:36:29 -0400446 if (pcidata & 0x2) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -0500447 dev_notice(&instance->pdev->dev, "mfi 1068 offset read=%x\n", pcidata);
bo yang39a98552010-09-22 22:36:29 -0400448 pcidata &= ~0x2;
449 pci_write_config_dword(instance->pdev,
450 MFI_1068_PCSR_OFFSET, pcidata);
451
452 for (i = 0; i < 2; i++)
453 msleep(1000); /* need to wait 2 secs again */
454
455 pcidata = 0;
456 pci_read_config_dword(instance->pdev,
457 MFI_1068_FW_HANDSHAKE_OFFSET, &pcidata);
Bjorn Helgaas1be18252015-07-07 15:52:34 -0500458 dev_notice(&instance->pdev->dev, "1068 offset handshake read=%x\n", pcidata);
bo yang39a98552010-09-22 22:36:29 -0400459 if ((pcidata & 0xffff0000) == MFI_1068_FW_READY) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -0500460 dev_notice(&instance->pdev->dev, "1068 offset pcidt=%x\n", pcidata);
bo yang39a98552010-09-22 22:36:29 -0400461 pcidata = 0;
462 pci_write_config_dword(instance->pdev,
463 MFI_1068_FW_HANDSHAKE_OFFSET, pcidata);
464 }
465 }
466 return 0;
467}
468
469/**
470 * megasas_check_reset_xscale - For controller reset check
471 * @regs: MFI register set
472 */
473static int
474megasas_check_reset_xscale(struct megasas_instance *instance,
475 struct megasas_register_set __iomem *regs)
476{
Sumit Saxena8a01a412016-01-28 21:04:32 +0530477 if ((atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) &&
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +0530478 (le32_to_cpu(*instance->consumer) ==
479 MEGASAS_ADPRESET_INPROG_SIGN))
bo yang39a98552010-09-22 22:36:29 -0400480 return 1;
bo yang39a98552010-09-22 22:36:29 -0400481 return 0;
Sumant Patro1341c932006-01-25 12:02:40 -0800482}
483
484static struct megasas_instance_template megasas_instance_template_xscale = {
485
486 .fire_cmd = megasas_fire_cmd_xscale,
487 .enable_intr = megasas_enable_intr_xscale,
Sumant Patrob274cab2006-10-03 12:52:12 -0700488 .disable_intr = megasas_disable_intr_xscale,
Sumant Patro1341c932006-01-25 12:02:40 -0800489 .clear_intr = megasas_clear_intr_xscale,
490 .read_fw_status_reg = megasas_read_fw_status_reg_xscale,
bo yang39a98552010-09-22 22:36:29 -0400491 .adp_reset = megasas_adp_reset_xscale,
492 .check_reset = megasas_check_reset_xscale,
adam radfordcd50ba82010-12-21 10:23:23 -0800493 .service_isr = megasas_isr,
494 .tasklet = megasas_complete_cmd_dpc,
495 .init_adapter = megasas_init_adapter_mfi,
496 .build_and_issue_cmd = megasas_build_and_issue_cmd,
497 .issue_dcmd = megasas_issue_dcmd,
Sumant Patro1341c932006-01-25 12:02:40 -0800498};
499
500/**
adam radford0d490162010-12-14 19:17:17 -0800501* This is the end of set of functions & definitions specific
Sumant Patro1341c932006-01-25 12:02:40 -0800502* to xscale (deviceid : 1064R, PERC5) controllers
503*/
504
505/**
adam radford0d490162010-12-14 19:17:17 -0800506* The following functions are defined for ppc (deviceid : 0x60)
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500507* controllers
Sumant Patrof9876f02006-02-03 15:34:35 -0800508*/
509
510/**
511 * megasas_enable_intr_ppc - Enables interrupts
512 * @regs: MFI register set
513 */
514static inline void
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530515megasas_enable_intr_ppc(struct megasas_instance *instance)
Sumant Patrof9876f02006-02-03 15:34:35 -0800516{
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530517 struct megasas_register_set __iomem *regs;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500518
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530519 regs = instance->reg_set;
Sumant Patrof9876f02006-02-03 15:34:35 -0800520 writel(0xFFFFFFFF, &(regs)->outbound_doorbell_clear);
adam radford0d490162010-12-14 19:17:17 -0800521
bo yang39a98552010-09-22 22:36:29 -0400522 writel(~0x80000000, &(regs)->outbound_intr_mask);
Sumant Patrof9876f02006-02-03 15:34:35 -0800523
524 /* Dummy readl to force pci flush */
525 readl(&regs->outbound_intr_mask);
526}
527
528/**
Sumant Patrob274cab2006-10-03 12:52:12 -0700529 * megasas_disable_intr_ppc - Disable interrupt
530 * @regs: MFI register set
531 */
532static inline void
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530533megasas_disable_intr_ppc(struct megasas_instance *instance)
Sumant Patrob274cab2006-10-03 12:52:12 -0700534{
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530535 struct megasas_register_set __iomem *regs;
Sumant Patrob274cab2006-10-03 12:52:12 -0700536 u32 mask = 0xFFFFFFFF;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500537
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530538 regs = instance->reg_set;
Sumant Patrob274cab2006-10-03 12:52:12 -0700539 writel(mask, &regs->outbound_intr_mask);
540 /* Dummy readl to force pci flush */
541 readl(&regs->outbound_intr_mask);
542}
543
544/**
Sumant Patrof9876f02006-02-03 15:34:35 -0800545 * megasas_read_fw_status_reg_ppc - returns the current FW status value
546 * @regs: MFI register set
547 */
548static u32
549megasas_read_fw_status_reg_ppc(struct megasas_register_set __iomem * regs)
550{
551 return readl(&(regs)->outbound_scratch_pad);
552}
553
554/**
555 * megasas_clear_interrupt_ppc - Check & clear interrupt
556 * @regs: MFI register set
557 */
adam radford0d490162010-12-14 19:17:17 -0800558static int
Sumant Patrof9876f02006-02-03 15:34:35 -0800559megasas_clear_intr_ppc(struct megasas_register_set __iomem * regs)
560{
adam radford3cc6851f92011-05-11 18:34:52 -0700561 u32 status, mfiStatus = 0;
562
Sumant Patrof9876f02006-02-03 15:34:35 -0800563 /*
564 * Check if it is our interrupt
565 */
566 status = readl(&regs->outbound_intr_status);
567
adam radford3cc6851f92011-05-11 18:34:52 -0700568 if (status & MFI_REPLY_1078_MESSAGE_INTERRUPT)
569 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
570
571 if (status & MFI_G2_OUTBOUND_DOORBELL_CHANGE_INTERRUPT)
572 mfiStatus |= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
Sumant Patrof9876f02006-02-03 15:34:35 -0800573
574 /*
575 * Clear the interrupt by writing back the same value
576 */
577 writel(status, &regs->outbound_doorbell_clear);
578
Yang, Bo06f579d2008-08-10 12:42:37 -0700579 /* Dummy readl to force pci flush */
580 readl(&regs->outbound_doorbell_clear);
581
adam radford3cc6851f92011-05-11 18:34:52 -0700582 return mfiStatus;
Sumant Patrof9876f02006-02-03 15:34:35 -0800583}
adam radford3cc6851f92011-05-11 18:34:52 -0700584
Sumant Patrof9876f02006-02-03 15:34:35 -0800585/**
586 * megasas_fire_cmd_ppc - Sends command to the FW
587 * @frame_phys_addr : Physical address of cmd
588 * @frame_count : Number of frames for the command
589 * @regs : MFI register set
590 */
adam radford0d490162010-12-14 19:17:17 -0800591static inline void
Yang, Bo0c79e682009-10-06 14:47:35 -0600592megasas_fire_cmd_ppc(struct megasas_instance *instance,
593 dma_addr_t frame_phys_addr,
594 u32 frame_count,
595 struct megasas_register_set __iomem *regs)
Sumant Patrof9876f02006-02-03 15:34:35 -0800596{
bo yang39a98552010-09-22 22:36:29 -0400597 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500598
bo yang39a98552010-09-22 22:36:29 -0400599 spin_lock_irqsave(&instance->hba_lock, flags);
adam radford0d490162010-12-14 19:17:17 -0800600 writel((frame_phys_addr | (frame_count<<1))|1,
Sumant Patrof9876f02006-02-03 15:34:35 -0800601 &(regs)->inbound_queue_port);
bo yang39a98552010-09-22 22:36:29 -0400602 spin_unlock_irqrestore(&instance->hba_lock, flags);
Sumant Patrof9876f02006-02-03 15:34:35 -0800603}
604
bo yang39a98552010-09-22 22:36:29 -0400605/**
bo yang39a98552010-09-22 22:36:29 -0400606 * megasas_check_reset_ppc - For controller reset check
607 * @regs: MFI register set
608 */
609static int
610megasas_check_reset_ppc(struct megasas_instance *instance,
611 struct megasas_register_set __iomem *regs)
612{
Sumit Saxena8a01a412016-01-28 21:04:32 +0530613 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL)
adam radford3cc6851f92011-05-11 18:34:52 -0700614 return 1;
615
bo yang39a98552010-09-22 22:36:29 -0400616 return 0;
617}
adam radford3cc6851f92011-05-11 18:34:52 -0700618
Sumant Patrof9876f02006-02-03 15:34:35 -0800619static struct megasas_instance_template megasas_instance_template_ppc = {
adam radford0d490162010-12-14 19:17:17 -0800620
Sumant Patrof9876f02006-02-03 15:34:35 -0800621 .fire_cmd = megasas_fire_cmd_ppc,
622 .enable_intr = megasas_enable_intr_ppc,
Sumant Patrob274cab2006-10-03 12:52:12 -0700623 .disable_intr = megasas_disable_intr_ppc,
Sumant Patrof9876f02006-02-03 15:34:35 -0800624 .clear_intr = megasas_clear_intr_ppc,
625 .read_fw_status_reg = megasas_read_fw_status_reg_ppc,
adam radford3cc6851f92011-05-11 18:34:52 -0700626 .adp_reset = megasas_adp_reset_xscale,
bo yang39a98552010-09-22 22:36:29 -0400627 .check_reset = megasas_check_reset_ppc,
adam radfordcd50ba82010-12-21 10:23:23 -0800628 .service_isr = megasas_isr,
629 .tasklet = megasas_complete_cmd_dpc,
630 .init_adapter = megasas_init_adapter_mfi,
631 .build_and_issue_cmd = megasas_build_and_issue_cmd,
632 .issue_dcmd = megasas_issue_dcmd,
Sumant Patrof9876f02006-02-03 15:34:35 -0800633};
634
635/**
Yang, Bo87911122009-10-06 14:31:54 -0600636 * megasas_enable_intr_skinny - Enables interrupts
637 * @regs: MFI register set
638 */
639static inline void
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530640megasas_enable_intr_skinny(struct megasas_instance *instance)
Yang, Bo87911122009-10-06 14:31:54 -0600641{
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530642 struct megasas_register_set __iomem *regs;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500643
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530644 regs = instance->reg_set;
Yang, Bo87911122009-10-06 14:31:54 -0600645 writel(0xFFFFFFFF, &(regs)->outbound_intr_mask);
646
647 writel(~MFI_SKINNY_ENABLE_INTERRUPT_MASK, &(regs)->outbound_intr_mask);
648
649 /* Dummy readl to force pci flush */
650 readl(&regs->outbound_intr_mask);
651}
652
653/**
654 * megasas_disable_intr_skinny - Disables interrupt
655 * @regs: MFI register set
656 */
657static inline void
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530658megasas_disable_intr_skinny(struct megasas_instance *instance)
Yang, Bo87911122009-10-06 14:31:54 -0600659{
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530660 struct megasas_register_set __iomem *regs;
Yang, Bo87911122009-10-06 14:31:54 -0600661 u32 mask = 0xFFFFFFFF;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500662
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530663 regs = instance->reg_set;
Yang, Bo87911122009-10-06 14:31:54 -0600664 writel(mask, &regs->outbound_intr_mask);
665 /* Dummy readl to force pci flush */
666 readl(&regs->outbound_intr_mask);
667}
668
669/**
670 * megasas_read_fw_status_reg_skinny - returns the current FW status value
671 * @regs: MFI register set
672 */
673static u32
674megasas_read_fw_status_reg_skinny(struct megasas_register_set __iomem *regs)
675{
676 return readl(&(regs)->outbound_scratch_pad);
677}
678
679/**
680 * megasas_clear_interrupt_skinny - Check & clear interrupt
681 * @regs: MFI register set
682 */
683static int
684megasas_clear_intr_skinny(struct megasas_register_set __iomem *regs)
685{
686 u32 status;
adam radfordebf054b2011-02-24 20:57:15 -0800687 u32 mfiStatus = 0;
688
Yang, Bo87911122009-10-06 14:31:54 -0600689 /*
690 * Check if it is our interrupt
691 */
692 status = readl(&regs->outbound_intr_status);
693
694 if (!(status & MFI_SKINNY_ENABLE_INTERRUPT_MASK)) {
bo yang39a98552010-09-22 22:36:29 -0400695 return 0;
Yang, Bo87911122009-10-06 14:31:54 -0600696 }
697
698 /*
adam radfordebf054b2011-02-24 20:57:15 -0800699 * Check if it is our interrupt
700 */
James Georgasa3fda7d2013-06-26 12:03:19 -0600701 if ((megasas_read_fw_status_reg_skinny(regs) & MFI_STATE_MASK) ==
adam radfordebf054b2011-02-24 20:57:15 -0800702 MFI_STATE_FAULT) {
703 mfiStatus = MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
704 } else
705 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
706
707 /*
Yang, Bo87911122009-10-06 14:31:54 -0600708 * Clear the interrupt by writing back the same value
709 */
710 writel(status, &regs->outbound_intr_status);
711
712 /*
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500713 * dummy read to flush PCI
714 */
Yang, Bo87911122009-10-06 14:31:54 -0600715 readl(&regs->outbound_intr_status);
716
adam radfordebf054b2011-02-24 20:57:15 -0800717 return mfiStatus;
Yang, Bo87911122009-10-06 14:31:54 -0600718}
719
720/**
721 * megasas_fire_cmd_skinny - Sends command to the FW
722 * @frame_phys_addr : Physical address of cmd
723 * @frame_count : Number of frames for the command
724 * @regs : MFI register set
725 */
726static inline void
Yang, Bo0c79e682009-10-06 14:47:35 -0600727megasas_fire_cmd_skinny(struct megasas_instance *instance,
728 dma_addr_t frame_phys_addr,
729 u32 frame_count,
Yang, Bo87911122009-10-06 14:31:54 -0600730 struct megasas_register_set __iomem *regs)
731{
Yang, Bo0c79e682009-10-06 14:47:35 -0600732 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500733
bo yang39a98552010-09-22 22:36:29 -0400734 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +0530735 writel(upper_32_bits(frame_phys_addr),
736 &(regs)->inbound_high_queue_port);
737 writel((lower_32_bits(frame_phys_addr) | (frame_count<<1))|1,
738 &(regs)->inbound_low_queue_port);
Tomas Henzlb99dbe52016-02-01 15:12:04 +0100739 mmiowb();
bo yang39a98552010-09-22 22:36:29 -0400740 spin_unlock_irqrestore(&instance->hba_lock, flags);
741}
742
743/**
bo yang39a98552010-09-22 22:36:29 -0400744 * megasas_check_reset_skinny - For controller reset check
745 * @regs: MFI register set
746 */
747static int
748megasas_check_reset_skinny(struct megasas_instance *instance,
749 struct megasas_register_set __iomem *regs)
750{
Sumit Saxena8a01a412016-01-28 21:04:32 +0530751 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL)
adam radford3cc6851f92011-05-11 18:34:52 -0700752 return 1;
753
bo yang39a98552010-09-22 22:36:29 -0400754 return 0;
Yang, Bo87911122009-10-06 14:31:54 -0600755}
756
757static struct megasas_instance_template megasas_instance_template_skinny = {
758
759 .fire_cmd = megasas_fire_cmd_skinny,
760 .enable_intr = megasas_enable_intr_skinny,
761 .disable_intr = megasas_disable_intr_skinny,
762 .clear_intr = megasas_clear_intr_skinny,
763 .read_fw_status_reg = megasas_read_fw_status_reg_skinny,
adam radfordebf054b2011-02-24 20:57:15 -0800764 .adp_reset = megasas_adp_reset_gen2,
bo yang39a98552010-09-22 22:36:29 -0400765 .check_reset = megasas_check_reset_skinny,
adam radfordcd50ba82010-12-21 10:23:23 -0800766 .service_isr = megasas_isr,
767 .tasklet = megasas_complete_cmd_dpc,
768 .init_adapter = megasas_init_adapter_mfi,
769 .build_and_issue_cmd = megasas_build_and_issue_cmd,
770 .issue_dcmd = megasas_issue_dcmd,
Yang, Bo87911122009-10-06 14:31:54 -0600771};
772
773
774/**
Yang, Bo6610a6b2008-08-10 12:42:38 -0700775* The following functions are defined for gen2 (deviceid : 0x78 0x79)
776* controllers
777*/
778
779/**
780 * megasas_enable_intr_gen2 - Enables interrupts
781 * @regs: MFI register set
782 */
783static inline void
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530784megasas_enable_intr_gen2(struct megasas_instance *instance)
Yang, Bo6610a6b2008-08-10 12:42:38 -0700785{
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530786 struct megasas_register_set __iomem *regs;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500787
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530788 regs = instance->reg_set;
Yang, Bo6610a6b2008-08-10 12:42:38 -0700789 writel(0xFFFFFFFF, &(regs)->outbound_doorbell_clear);
790
791 /* write ~0x00000005 (4 & 1) to the intr mask*/
792 writel(~MFI_GEN2_ENABLE_INTERRUPT_MASK, &(regs)->outbound_intr_mask);
793
794 /* Dummy readl to force pci flush */
795 readl(&regs->outbound_intr_mask);
796}
797
798/**
799 * megasas_disable_intr_gen2 - Disables interrupt
800 * @regs: MFI register set
801 */
802static inline void
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530803megasas_disable_intr_gen2(struct megasas_instance *instance)
Yang, Bo6610a6b2008-08-10 12:42:38 -0700804{
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530805 struct megasas_register_set __iomem *regs;
Yang, Bo6610a6b2008-08-10 12:42:38 -0700806 u32 mask = 0xFFFFFFFF;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500807
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +0530808 regs = instance->reg_set;
Yang, Bo6610a6b2008-08-10 12:42:38 -0700809 writel(mask, &regs->outbound_intr_mask);
810 /* Dummy readl to force pci flush */
811 readl(&regs->outbound_intr_mask);
812}
813
814/**
815 * megasas_read_fw_status_reg_gen2 - returns the current FW status value
816 * @regs: MFI register set
817 */
818static u32
819megasas_read_fw_status_reg_gen2(struct megasas_register_set __iomem *regs)
820{
821 return readl(&(regs)->outbound_scratch_pad);
822}
823
824/**
825 * megasas_clear_interrupt_gen2 - Check & clear interrupt
826 * @regs: MFI register set
827 */
828static int
829megasas_clear_intr_gen2(struct megasas_register_set __iomem *regs)
830{
831 u32 status;
bo yang39a98552010-09-22 22:36:29 -0400832 u32 mfiStatus = 0;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500833
Yang, Bo6610a6b2008-08-10 12:42:38 -0700834 /*
835 * Check if it is our interrupt
836 */
837 status = readl(&regs->outbound_intr_status);
838
Sumit.Saxena@lsi.comb5bccad2013-05-22 12:29:54 +0530839 if (status & MFI_INTR_FLAG_REPLY_MESSAGE) {
bo yang39a98552010-09-22 22:36:29 -0400840 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
841 }
842 if (status & MFI_G2_OUTBOUND_DOORBELL_CHANGE_INTERRUPT) {
843 mfiStatus |= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
844 }
Yang, Bo6610a6b2008-08-10 12:42:38 -0700845
846 /*
847 * Clear the interrupt by writing back the same value
848 */
bo yang39a98552010-09-22 22:36:29 -0400849 if (mfiStatus)
850 writel(status, &regs->outbound_doorbell_clear);
Yang, Bo6610a6b2008-08-10 12:42:38 -0700851
852 /* Dummy readl to force pci flush */
853 readl(&regs->outbound_intr_status);
854
bo yang39a98552010-09-22 22:36:29 -0400855 return mfiStatus;
Yang, Bo6610a6b2008-08-10 12:42:38 -0700856}
857/**
858 * megasas_fire_cmd_gen2 - Sends command to the FW
859 * @frame_phys_addr : Physical address of cmd
860 * @frame_count : Number of frames for the command
861 * @regs : MFI register set
862 */
863static inline void
Yang, Bo0c79e682009-10-06 14:47:35 -0600864megasas_fire_cmd_gen2(struct megasas_instance *instance,
865 dma_addr_t frame_phys_addr,
866 u32 frame_count,
Yang, Bo6610a6b2008-08-10 12:42:38 -0700867 struct megasas_register_set __iomem *regs)
868{
bo yang39a98552010-09-22 22:36:29 -0400869 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500870
bo yang39a98552010-09-22 22:36:29 -0400871 spin_lock_irqsave(&instance->hba_lock, flags);
Yang, Bo6610a6b2008-08-10 12:42:38 -0700872 writel((frame_phys_addr | (frame_count<<1))|1,
873 &(regs)->inbound_queue_port);
bo yang39a98552010-09-22 22:36:29 -0400874 spin_unlock_irqrestore(&instance->hba_lock, flags);
875}
876
877/**
878 * megasas_adp_reset_gen2 - For controller reset
879 * @regs: MFI register set
880 */
881static int
882megasas_adp_reset_gen2(struct megasas_instance *instance,
883 struct megasas_register_set __iomem *reg_set)
884{
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500885 u32 retry = 0 ;
886 u32 HostDiag;
887 u32 __iomem *seq_offset = &reg_set->seq_offset;
888 u32 __iomem *hostdiag_offset = &reg_set->host_diag;
bo yang39a98552010-09-22 22:36:29 -0400889
adam radfordebf054b2011-02-24 20:57:15 -0800890 if (instance->instancet == &megasas_instance_template_skinny) {
891 seq_offset = &reg_set->fusion_seq_offset;
892 hostdiag_offset = &reg_set->fusion_host_diag;
893 }
894
895 writel(0, seq_offset);
896 writel(4, seq_offset);
897 writel(0xb, seq_offset);
898 writel(2, seq_offset);
899 writel(7, seq_offset);
900 writel(0xd, seq_offset);
901
bo yang39a98552010-09-22 22:36:29 -0400902 msleep(1000);
903
adam radfordebf054b2011-02-24 20:57:15 -0800904 HostDiag = (u32)readl(hostdiag_offset);
bo yang39a98552010-09-22 22:36:29 -0400905
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500906 while (!(HostDiag & DIAG_WRITE_ENABLE)) {
bo yang39a98552010-09-22 22:36:29 -0400907 msleep(100);
adam radfordebf054b2011-02-24 20:57:15 -0800908 HostDiag = (u32)readl(hostdiag_offset);
Bjorn Helgaas1be18252015-07-07 15:52:34 -0500909 dev_notice(&instance->pdev->dev, "RESETGEN2: retry=%x, hostdiag=%x\n",
bo yang39a98552010-09-22 22:36:29 -0400910 retry, HostDiag);
911
912 if (retry++ >= 100)
913 return 1;
914
915 }
916
Bjorn Helgaas1be18252015-07-07 15:52:34 -0500917 dev_notice(&instance->pdev->dev, "ADP_RESET_GEN2: HostDiag=%x\n", HostDiag);
bo yang39a98552010-09-22 22:36:29 -0400918
adam radfordebf054b2011-02-24 20:57:15 -0800919 writel((HostDiag | DIAG_RESET_ADAPTER), hostdiag_offset);
bo yang39a98552010-09-22 22:36:29 -0400920
921 ssleep(10);
922
adam radfordebf054b2011-02-24 20:57:15 -0800923 HostDiag = (u32)readl(hostdiag_offset);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -0500924 while (HostDiag & DIAG_RESET_ADAPTER) {
bo yang39a98552010-09-22 22:36:29 -0400925 msleep(100);
adam radfordebf054b2011-02-24 20:57:15 -0800926 HostDiag = (u32)readl(hostdiag_offset);
Bjorn Helgaas1be18252015-07-07 15:52:34 -0500927 dev_notice(&instance->pdev->dev, "RESET_GEN2: retry=%x, hostdiag=%x\n",
bo yang39a98552010-09-22 22:36:29 -0400928 retry, HostDiag);
929
930 if (retry++ >= 1000)
931 return 1;
932
933 }
934 return 0;
935}
936
937/**
938 * megasas_check_reset_gen2 - For controller reset check
939 * @regs: MFI register set
940 */
941static int
942megasas_check_reset_gen2(struct megasas_instance *instance,
943 struct megasas_register_set __iomem *regs)
944{
Sumit Saxena8a01a412016-01-28 21:04:32 +0530945 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL)
Yang, Bo707e09b2010-10-12 07:20:27 -0600946 return 1;
Yang, Bo707e09b2010-10-12 07:20:27 -0600947
bo yang39a98552010-09-22 22:36:29 -0400948 return 0;
Yang, Bo6610a6b2008-08-10 12:42:38 -0700949}
950
951static struct megasas_instance_template megasas_instance_template_gen2 = {
952
953 .fire_cmd = megasas_fire_cmd_gen2,
954 .enable_intr = megasas_enable_intr_gen2,
955 .disable_intr = megasas_disable_intr_gen2,
956 .clear_intr = megasas_clear_intr_gen2,
957 .read_fw_status_reg = megasas_read_fw_status_reg_gen2,
bo yang39a98552010-09-22 22:36:29 -0400958 .adp_reset = megasas_adp_reset_gen2,
959 .check_reset = megasas_check_reset_gen2,
adam radfordcd50ba82010-12-21 10:23:23 -0800960 .service_isr = megasas_isr,
961 .tasklet = megasas_complete_cmd_dpc,
962 .init_adapter = megasas_init_adapter_mfi,
963 .build_and_issue_cmd = megasas_build_and_issue_cmd,
964 .issue_dcmd = megasas_issue_dcmd,
Yang, Bo6610a6b2008-08-10 12:42:38 -0700965};
966
967/**
Sumant Patrof9876f02006-02-03 15:34:35 -0800968* This is the end of set of functions & definitions
bo yang39a98552010-09-22 22:36:29 -0400969* specific to gen2 (deviceid : 0x78, 0x79) controllers
Sumant Patrof9876f02006-02-03 15:34:35 -0800970*/
971
adam radford9c915a82010-12-21 13:34:31 -0800972/*
973 * Template added for TB (Fusion)
974 */
975extern struct megasas_instance_template megasas_instance_template_fusion;
976
Sumant Patrof9876f02006-02-03 15:34:35 -0800977/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400978 * megasas_issue_polled - Issues a polling command
979 * @instance: Adapter soft state
adam radford0d490162010-12-14 19:17:17 -0800980 * @cmd: Command packet to be issued
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400981 *
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +0530982 * For polling, MFI requires the cmd_status to be set to MFI_STAT_INVALID_STATUS before posting.
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400983 */
adam radford9c915a82010-12-21 13:34:31 -0800984int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400985megasas_issue_polled(struct megasas_instance *instance, struct megasas_cmd *cmd)
986{
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400987 struct megasas_header *frame_hdr = &cmd->frame->hdr;
988
Sumit Saxena6d40afb2016-01-28 21:04:23 +0530989 frame_hdr->cmd_status = MFI_STAT_INVALID_STATUS;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +0530990 frame_hdr->flags |= cpu_to_le16(MFI_FRAME_DONT_POST_IN_REPLY_QUEUE);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400991
Sumit Saxena8a01a412016-01-28 21:04:32 +0530992 if ((atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) ||
Sumit Saxena6d40afb2016-01-28 21:04:23 +0530993 (instance->instancet->issue_dcmd(instance, cmd))) {
994 dev_err(&instance->pdev->dev, "Failed from %s %d\n",
995 __func__, __LINE__);
996 return DCMD_NOT_FIRED;
997 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400998
Sumit Saxena6d40afb2016-01-28 21:04:23 +0530999 return wait_and_poll(instance, cmd, instance->requestorId ?
1000 MEGASAS_ROUTINE_WAIT_TIME_VF : MFI_IO_TIMEOUT_SECS);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001001}
1002
1003/**
1004 * megasas_issue_blocked_cmd - Synchronous wrapper around regular FW cmds
1005 * @instance: Adapter soft state
1006 * @cmd: Command to be issued
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301007 * @timeout: Timeout in seconds
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001008 *
1009 * This function waits on an event for the command to be returned from ISR.
Sumant Patro2a3681e2006-10-03 13:19:21 -07001010 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001011 * Used to issue ioctl commands.
1012 */
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05301013int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001014megasas_issue_blocked_cmd(struct megasas_instance *instance,
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301015 struct megasas_cmd *cmd, int timeout)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001016{
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301017 int ret = 0;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05301018 cmd->cmd_status_drv = MFI_STAT_INVALID_STATUS;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001019
Sumit Saxena8a01a412016-01-28 21:04:32 +05301020 if ((atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) ||
Sumit Saxena6d40afb2016-01-28 21:04:23 +05301021 (instance->instancet->issue_dcmd(instance, cmd))) {
1022 dev_err(&instance->pdev->dev, "Failed from %s %d\n",
1023 __func__, __LINE__);
1024 return DCMD_NOT_FIRED;
1025 }
1026
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301027 if (timeout) {
1028 ret = wait_event_timeout(instance->int_cmd_wait_q,
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05301029 cmd->cmd_status_drv != MFI_STAT_INVALID_STATUS, timeout * HZ);
Sumit Saxena6d40afb2016-01-28 21:04:23 +05301030 if (!ret) {
1031 dev_err(&instance->pdev->dev, "Failed from %s %d DCMD Timed out\n",
1032 __func__, __LINE__);
1033 return DCMD_TIMEOUT;
1034 }
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301035 } else
1036 wait_event(instance->int_cmd_wait_q,
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05301037 cmd->cmd_status_drv != MFI_STAT_INVALID_STATUS);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001038
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05301039 return (cmd->cmd_status_drv == MFI_STAT_OK) ?
Sumit Saxena6d40afb2016-01-28 21:04:23 +05301040 DCMD_SUCCESS : DCMD_FAILED;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001041}
1042
1043/**
1044 * megasas_issue_blocked_abort_cmd - Aborts previously issued cmd
1045 * @instance: Adapter soft state
1046 * @cmd_to_abort: Previously issued cmd to be aborted
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301047 * @timeout: Timeout in seconds
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001048 *
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301049 * MFI firmware can abort previously issued AEN comamnd (automatic event
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001050 * notification). The megasas_issue_blocked_abort_cmd() issues such abort
Sumant Patro2a3681e2006-10-03 13:19:21 -07001051 * cmd and waits for return status.
1052 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001053 */
1054static int
1055megasas_issue_blocked_abort_cmd(struct megasas_instance *instance,
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301056 struct megasas_cmd *cmd_to_abort, int timeout)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001057{
1058 struct megasas_cmd *cmd;
1059 struct megasas_abort_frame *abort_fr;
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301060 int ret = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001061
1062 cmd = megasas_get_cmd(instance);
1063
1064 if (!cmd)
1065 return -1;
1066
1067 abort_fr = &cmd->frame->abort;
1068
1069 /*
1070 * Prepare and issue the abort frame
1071 */
1072 abort_fr->cmd = MFI_CMD_ABORT;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05301073 abort_fr->cmd_status = MFI_STAT_INVALID_STATUS;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301074 abort_fr->flags = cpu_to_le16(0);
1075 abort_fr->abort_context = cpu_to_le32(cmd_to_abort->index);
1076 abort_fr->abort_mfi_phys_addr_lo =
1077 cpu_to_le32(lower_32_bits(cmd_to_abort->frame_phys_addr));
1078 abort_fr->abort_mfi_phys_addr_hi =
1079 cpu_to_le32(upper_32_bits(cmd_to_abort->frame_phys_addr));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001080
1081 cmd->sync_cmd = 1;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05301082 cmd->cmd_status_drv = MFI_STAT_INVALID_STATUS;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001083
Sumit Saxena8a01a412016-01-28 21:04:32 +05301084 if ((atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) ||
Sumit Saxena6d40afb2016-01-28 21:04:23 +05301085 (instance->instancet->issue_dcmd(instance, cmd))) {
1086 dev_err(&instance->pdev->dev, "Failed from %s %d\n",
1087 __func__, __LINE__);
1088 return DCMD_NOT_FIRED;
1089 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001090
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301091 if (timeout) {
1092 ret = wait_event_timeout(instance->abort_cmd_wait_q,
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05301093 cmd->cmd_status_drv != MFI_STAT_INVALID_STATUS, timeout * HZ);
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301094 if (!ret) {
Sumit Saxena6d40afb2016-01-28 21:04:23 +05301095 dev_err(&instance->pdev->dev, "Failed from %s %d Abort Timed out\n",
1096 __func__, __LINE__);
1097 return DCMD_TIMEOUT;
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301098 }
1099 } else
1100 wait_event(instance->abort_cmd_wait_q,
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05301101 cmd->cmd_status_drv != MFI_STAT_INVALID_STATUS);
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05301102
bo yang39a98552010-09-22 22:36:29 -04001103 cmd->sync_cmd = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001104
1105 megasas_return_cmd(instance, cmd);
Sumit Saxena6d40afb2016-01-28 21:04:23 +05301106 return (cmd->cmd_status_drv == MFI_STAT_OK) ?
1107 DCMD_SUCCESS : DCMD_FAILED;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001108}
1109
1110/**
1111 * megasas_make_sgl32 - Prepares 32-bit SGL
1112 * @instance: Adapter soft state
1113 * @scp: SCSI command from the mid-layer
1114 * @mfi_sgl: SGL to be filled in
1115 *
1116 * If successful, this function returns the number of SG elements. Otherwise,
1117 * it returnes -1.
1118 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001119static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001120megasas_make_sgl32(struct megasas_instance *instance, struct scsi_cmnd *scp,
1121 union megasas_sgl *mfi_sgl)
1122{
1123 int i;
1124 int sge_count;
1125 struct scatterlist *os_sgl;
1126
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09001127 sge_count = scsi_dma_map(scp);
1128 BUG_ON(sge_count < 0);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001129
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09001130 if (sge_count) {
1131 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301132 mfi_sgl->sge32[i].length = cpu_to_le32(sg_dma_len(os_sgl));
1133 mfi_sgl->sge32[i].phys_addr = cpu_to_le32(sg_dma_address(os_sgl));
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09001134 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001135 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001136 return sge_count;
1137}
1138
1139/**
1140 * megasas_make_sgl64 - Prepares 64-bit SGL
1141 * @instance: Adapter soft state
1142 * @scp: SCSI command from the mid-layer
1143 * @mfi_sgl: SGL to be filled in
1144 *
1145 * If successful, this function returns the number of SG elements. Otherwise,
1146 * it returnes -1.
1147 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001148static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001149megasas_make_sgl64(struct megasas_instance *instance, struct scsi_cmnd *scp,
1150 union megasas_sgl *mfi_sgl)
1151{
1152 int i;
1153 int sge_count;
1154 struct scatterlist *os_sgl;
1155
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09001156 sge_count = scsi_dma_map(scp);
1157 BUG_ON(sge_count < 0);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001158
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09001159 if (sge_count) {
1160 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301161 mfi_sgl->sge64[i].length = cpu_to_le32(sg_dma_len(os_sgl));
1162 mfi_sgl->sge64[i].phys_addr = cpu_to_le64(sg_dma_address(os_sgl));
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09001163 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001164 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001165 return sge_count;
1166}
1167
Yang, Bof4c9a132009-10-06 14:43:28 -06001168/**
1169 * megasas_make_sgl_skinny - Prepares IEEE SGL
1170 * @instance: Adapter soft state
1171 * @scp: SCSI command from the mid-layer
1172 * @mfi_sgl: SGL to be filled in
1173 *
1174 * If successful, this function returns the number of SG elements. Otherwise,
1175 * it returnes -1.
1176 */
1177static int
1178megasas_make_sgl_skinny(struct megasas_instance *instance,
1179 struct scsi_cmnd *scp, union megasas_sgl *mfi_sgl)
1180{
1181 int i;
1182 int sge_count;
1183 struct scatterlist *os_sgl;
1184
1185 sge_count = scsi_dma_map(scp);
1186
1187 if (sge_count) {
1188 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301189 mfi_sgl->sge_skinny[i].length =
1190 cpu_to_le32(sg_dma_len(os_sgl));
Yang, Bof4c9a132009-10-06 14:43:28 -06001191 mfi_sgl->sge_skinny[i].phys_addr =
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301192 cpu_to_le64(sg_dma_address(os_sgl));
1193 mfi_sgl->sge_skinny[i].flag = cpu_to_le32(0);
Yang, Bof4c9a132009-10-06 14:43:28 -06001194 }
1195 }
1196 return sge_count;
1197}
1198
Sumant Patrob1df99d2006-10-03 12:40:47 -07001199 /**
1200 * megasas_get_frame_count - Computes the number of frames
bo yangd532dbe2008-03-17 03:36:43 -04001201 * @frame_type : type of frame- io or pthru frame
Sumant Patrob1df99d2006-10-03 12:40:47 -07001202 * @sge_count : number of sg elements
1203 *
1204 * Returns the number of frames required for numnber of sge's (sge_count)
1205 */
1206
Yang, Bof4c9a132009-10-06 14:43:28 -06001207static u32 megasas_get_frame_count(struct megasas_instance *instance,
1208 u8 sge_count, u8 frame_type)
Sumant Patrob1df99d2006-10-03 12:40:47 -07001209{
1210 int num_cnt;
1211 int sge_bytes;
1212 u32 sge_sz;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001213 u32 frame_count = 0;
Sumant Patrob1df99d2006-10-03 12:40:47 -07001214
1215 sge_sz = (IS_DMA64) ? sizeof(struct megasas_sge64) :
1216 sizeof(struct megasas_sge32);
1217
Yang, Bof4c9a132009-10-06 14:43:28 -06001218 if (instance->flag_ieee) {
1219 sge_sz = sizeof(struct megasas_sge_skinny);
1220 }
1221
Sumant Patrob1df99d2006-10-03 12:40:47 -07001222 /*
bo yangd532dbe2008-03-17 03:36:43 -04001223 * Main frame can contain 2 SGEs for 64-bit SGLs and
1224 * 3 SGEs for 32-bit SGLs for ldio &
1225 * 1 SGEs for 64-bit SGLs and
1226 * 2 SGEs for 32-bit SGLs for pthru frame
1227 */
1228 if (unlikely(frame_type == PTHRU_FRAME)) {
Yang, Bof4c9a132009-10-06 14:43:28 -06001229 if (instance->flag_ieee == 1) {
1230 num_cnt = sge_count - 1;
1231 } else if (IS_DMA64)
bo yangd532dbe2008-03-17 03:36:43 -04001232 num_cnt = sge_count - 1;
1233 else
1234 num_cnt = sge_count - 2;
1235 } else {
Yang, Bof4c9a132009-10-06 14:43:28 -06001236 if (instance->flag_ieee == 1) {
1237 num_cnt = sge_count - 1;
1238 } else if (IS_DMA64)
bo yangd532dbe2008-03-17 03:36:43 -04001239 num_cnt = sge_count - 2;
1240 else
1241 num_cnt = sge_count - 3;
1242 }
Sumant Patrob1df99d2006-10-03 12:40:47 -07001243
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001244 if (num_cnt > 0) {
Sumant Patrob1df99d2006-10-03 12:40:47 -07001245 sge_bytes = sge_sz * num_cnt;
1246
1247 frame_count = (sge_bytes / MEGAMFI_FRAME_SIZE) +
1248 ((sge_bytes % MEGAMFI_FRAME_SIZE) ? 1 : 0) ;
1249 }
1250 /* Main frame */
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001251 frame_count += 1;
Sumant Patrob1df99d2006-10-03 12:40:47 -07001252
1253 if (frame_count > 7)
1254 frame_count = 8;
1255 return frame_count;
1256}
1257
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001258/**
1259 * megasas_build_dcdb - Prepares a direct cdb (DCDB) command
1260 * @instance: Adapter soft state
1261 * @scp: SCSI command
1262 * @cmd: Command to be prepared in
1263 *
1264 * This function prepares CDB commands. These are typcially pass-through
1265 * commands to the devices.
1266 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001267static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001268megasas_build_dcdb(struct megasas_instance *instance, struct scsi_cmnd *scp,
1269 struct megasas_cmd *cmd)
1270{
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001271 u32 is_logical;
1272 u32 device_id;
1273 u16 flags = 0;
1274 struct megasas_pthru_frame *pthru;
1275
1276 is_logical = MEGASAS_IS_LOGICAL(scp);
Sumit.Saxena@avagotech.com4a5c8142015-04-23 16:30:39 +05301277 device_id = MEGASAS_DEV_INDEX(scp);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001278 pthru = (struct megasas_pthru_frame *)cmd->frame;
1279
1280 if (scp->sc_data_direction == PCI_DMA_TODEVICE)
1281 flags = MFI_FRAME_DIR_WRITE;
1282 else if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
1283 flags = MFI_FRAME_DIR_READ;
1284 else if (scp->sc_data_direction == PCI_DMA_NONE)
1285 flags = MFI_FRAME_DIR_NONE;
1286
Yang, Bof4c9a132009-10-06 14:43:28 -06001287 if (instance->flag_ieee == 1) {
1288 flags |= MFI_FRAME_IEEE;
1289 }
1290
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001291 /*
1292 * Prepare the DCDB frame
1293 */
1294 pthru->cmd = (is_logical) ? MFI_CMD_LD_SCSI_IO : MFI_CMD_PD_SCSI_IO;
1295 pthru->cmd_status = 0x0;
1296 pthru->scsi_status = 0x0;
1297 pthru->target_id = device_id;
1298 pthru->lun = scp->device->lun;
1299 pthru->cdb_len = scp->cmd_len;
1300 pthru->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07001301 pthru->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301302 pthru->flags = cpu_to_le16(flags);
1303 pthru->data_xfer_len = cpu_to_le32(scsi_bufflen(scp));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001304
1305 memcpy(pthru->cdb, scp->cmnd, scp->cmd_len);
1306
1307 /*
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001308 * If the command is for the tape device, set the
1309 * pthru timeout to the os layer timeout value.
1310 */
Yang, Bo8d568252009-10-06 14:12:21 -06001311 if (scp->device->type == TYPE_TAPE) {
1312 if ((scp->request->timeout / HZ) > 0xFFFF)
Christoph Hellwigc6f5bf82015-04-23 16:33:09 +05301313 pthru->timeout = cpu_to_le16(0xFFFF);
Yang, Bo8d568252009-10-06 14:12:21 -06001314 else
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301315 pthru->timeout = cpu_to_le16(scp->request->timeout / HZ);
Yang, Bo8d568252009-10-06 14:12:21 -06001316 }
1317
1318 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001319 * Construct SGL
1320 */
Yang, Bof4c9a132009-10-06 14:43:28 -06001321 if (instance->flag_ieee == 1) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301322 pthru->flags |= cpu_to_le16(MFI_FRAME_SGL64);
Yang, Bof4c9a132009-10-06 14:43:28 -06001323 pthru->sge_count = megasas_make_sgl_skinny(instance, scp,
1324 &pthru->sgl);
1325 } else if (IS_DMA64) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301326 pthru->flags |= cpu_to_le16(MFI_FRAME_SGL64);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001327 pthru->sge_count = megasas_make_sgl64(instance, scp,
1328 &pthru->sgl);
1329 } else
1330 pthru->sge_count = megasas_make_sgl32(instance, scp,
1331 &pthru->sgl);
1332
Yang, Bobdc6fb82009-12-06 08:30:19 -07001333 if (pthru->sge_count > instance->max_num_sge) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001334 dev_err(&instance->pdev->dev, "DCDB too many SGE NUM=%x\n",
Yang, Bobdc6fb82009-12-06 08:30:19 -07001335 pthru->sge_count);
1336 return 0;
1337 }
1338
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001339 /*
1340 * Sense info specific
1341 */
1342 pthru->sense_len = SCSI_SENSE_BUFFERSIZE;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301343 pthru->sense_buf_phys_addr_hi =
1344 cpu_to_le32(upper_32_bits(cmd->sense_phys_addr));
1345 pthru->sense_buf_phys_addr_lo =
1346 cpu_to_le32(lower_32_bits(cmd->sense_phys_addr));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001347
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001348 /*
1349 * Compute the total number of frames this command consumes. FW uses
1350 * this number to pull sufficient number of frames from host memory.
1351 */
Yang, Bof4c9a132009-10-06 14:43:28 -06001352 cmd->frame_count = megasas_get_frame_count(instance, pthru->sge_count,
bo yangd532dbe2008-03-17 03:36:43 -04001353 PTHRU_FRAME);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001354
1355 return cmd->frame_count;
1356}
1357
1358/**
1359 * megasas_build_ldio - Prepares IOs to logical devices
1360 * @instance: Adapter soft state
1361 * @scp: SCSI command
Anand Gadiyarfd589a82009-07-16 17:13:03 +02001362 * @cmd: Command to be prepared
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001363 *
1364 * Frames (and accompanying SGLs) for regular SCSI IOs use this function.
1365 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001366static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001367megasas_build_ldio(struct megasas_instance *instance, struct scsi_cmnd *scp,
1368 struct megasas_cmd *cmd)
1369{
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001370 u32 device_id;
1371 u8 sc = scp->cmnd[0];
1372 u16 flags = 0;
1373 struct megasas_io_frame *ldio;
1374
Sumit.Saxena@avagotech.com4a5c8142015-04-23 16:30:39 +05301375 device_id = MEGASAS_DEV_INDEX(scp);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001376 ldio = (struct megasas_io_frame *)cmd->frame;
1377
1378 if (scp->sc_data_direction == PCI_DMA_TODEVICE)
1379 flags = MFI_FRAME_DIR_WRITE;
1380 else if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
1381 flags = MFI_FRAME_DIR_READ;
1382
Yang, Bof4c9a132009-10-06 14:43:28 -06001383 if (instance->flag_ieee == 1) {
1384 flags |= MFI_FRAME_IEEE;
1385 }
1386
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001387 /*
Sumant Patrob1df99d2006-10-03 12:40:47 -07001388 * Prepare the Logical IO frame: 2nd bit is zero for all read cmds
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001389 */
1390 ldio->cmd = (sc & 0x02) ? MFI_CMD_LD_WRITE : MFI_CMD_LD_READ;
1391 ldio->cmd_status = 0x0;
1392 ldio->scsi_status = 0x0;
1393 ldio->target_id = device_id;
1394 ldio->timeout = 0;
1395 ldio->reserved_0 = 0;
1396 ldio->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301397 ldio->flags = cpu_to_le16(flags);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001398 ldio->start_lba_hi = 0;
1399 ldio->access_byte = (scp->cmd_len != 6) ? scp->cmnd[1] : 0;
1400
1401 /*
1402 * 6-byte READ(0x08) or WRITE(0x0A) cdb
1403 */
1404 if (scp->cmd_len == 6) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301405 ldio->lba_count = cpu_to_le32((u32) scp->cmnd[4]);
1406 ldio->start_lba_lo = cpu_to_le32(((u32) scp->cmnd[1] << 16) |
1407 ((u32) scp->cmnd[2] << 8) |
1408 (u32) scp->cmnd[3]);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001409
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301410 ldio->start_lba_lo &= cpu_to_le32(0x1FFFFF);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001411 }
1412
1413 /*
1414 * 10-byte READ(0x28) or WRITE(0x2A) cdb
1415 */
1416 else if (scp->cmd_len == 10) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301417 ldio->lba_count = cpu_to_le32((u32) scp->cmnd[8] |
1418 ((u32) scp->cmnd[7] << 8));
1419 ldio->start_lba_lo = cpu_to_le32(((u32) scp->cmnd[2] << 24) |
1420 ((u32) scp->cmnd[3] << 16) |
1421 ((u32) scp->cmnd[4] << 8) |
1422 (u32) scp->cmnd[5]);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001423 }
1424
1425 /*
1426 * 12-byte READ(0xA8) or WRITE(0xAA) cdb
1427 */
1428 else if (scp->cmd_len == 12) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301429 ldio->lba_count = cpu_to_le32(((u32) scp->cmnd[6] << 24) |
1430 ((u32) scp->cmnd[7] << 16) |
1431 ((u32) scp->cmnd[8] << 8) |
1432 (u32) scp->cmnd[9]);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001433
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301434 ldio->start_lba_lo = cpu_to_le32(((u32) scp->cmnd[2] << 24) |
1435 ((u32) scp->cmnd[3] << 16) |
1436 ((u32) scp->cmnd[4] << 8) |
1437 (u32) scp->cmnd[5]);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001438 }
1439
1440 /*
1441 * 16-byte READ(0x88) or WRITE(0x8A) cdb
1442 */
1443 else if (scp->cmd_len == 16) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301444 ldio->lba_count = cpu_to_le32(((u32) scp->cmnd[10] << 24) |
1445 ((u32) scp->cmnd[11] << 16) |
1446 ((u32) scp->cmnd[12] << 8) |
1447 (u32) scp->cmnd[13]);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001448
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301449 ldio->start_lba_lo = cpu_to_le32(((u32) scp->cmnd[6] << 24) |
1450 ((u32) scp->cmnd[7] << 16) |
1451 ((u32) scp->cmnd[8] << 8) |
1452 (u32) scp->cmnd[9]);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001453
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301454 ldio->start_lba_hi = cpu_to_le32(((u32) scp->cmnd[2] << 24) |
1455 ((u32) scp->cmnd[3] << 16) |
1456 ((u32) scp->cmnd[4] << 8) |
1457 (u32) scp->cmnd[5]);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001458
1459 }
1460
1461 /*
1462 * Construct SGL
1463 */
Yang, Bof4c9a132009-10-06 14:43:28 -06001464 if (instance->flag_ieee) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301465 ldio->flags |= cpu_to_le16(MFI_FRAME_SGL64);
Yang, Bof4c9a132009-10-06 14:43:28 -06001466 ldio->sge_count = megasas_make_sgl_skinny(instance, scp,
1467 &ldio->sgl);
1468 } else if (IS_DMA64) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301469 ldio->flags |= cpu_to_le16(MFI_FRAME_SGL64);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001470 ldio->sge_count = megasas_make_sgl64(instance, scp, &ldio->sgl);
1471 } else
1472 ldio->sge_count = megasas_make_sgl32(instance, scp, &ldio->sgl);
1473
Yang, Bobdc6fb82009-12-06 08:30:19 -07001474 if (ldio->sge_count > instance->max_num_sge) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001475 dev_err(&instance->pdev->dev, "build_ld_io: sge_count = %x\n",
Yang, Bobdc6fb82009-12-06 08:30:19 -07001476 ldio->sge_count);
1477 return 0;
1478 }
1479
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001480 /*
1481 * Sense info specific
1482 */
1483 ldio->sense_len = SCSI_SENSE_BUFFERSIZE;
1484 ldio->sense_buf_phys_addr_hi = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301485 ldio->sense_buf_phys_addr_lo = cpu_to_le32(cmd->sense_phys_addr);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001486
Sumant Patrob1df99d2006-10-03 12:40:47 -07001487 /*
1488 * Compute the total number of frames this command consumes. FW uses
1489 * this number to pull sufficient number of frames from host memory.
1490 */
Yang, Bof4c9a132009-10-06 14:43:28 -06001491 cmd->frame_count = megasas_get_frame_count(instance,
1492 ldio->sge_count, IO_FRAME);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001493
1494 return cmd->frame_count;
1495}
1496
1497/**
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05301498 * megasas_cmd_type - Checks if the cmd is for logical drive/sysPD
1499 * and whether it's RW or non RW
Sumant Patrocb59aa62006-01-25 11:53:25 -08001500 * @scmd: SCSI command
adam radford0d490162010-12-14 19:17:17 -08001501 *
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001502 */
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05301503inline int megasas_cmd_type(struct scsi_cmnd *cmd)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001504{
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05301505 int ret;
1506
Sumant Patrocb59aa62006-01-25 11:53:25 -08001507 switch (cmd->cmnd[0]) {
1508 case READ_10:
1509 case WRITE_10:
1510 case READ_12:
1511 case WRITE_12:
1512 case READ_6:
1513 case WRITE_6:
1514 case READ_16:
1515 case WRITE_16:
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05301516 ret = (MEGASAS_IS_LOGICAL(cmd)) ?
1517 READ_WRITE_LDIO : READ_WRITE_SYSPDIO;
1518 break;
Sumant Patrocb59aa62006-01-25 11:53:25 -08001519 default:
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05301520 ret = (MEGASAS_IS_LOGICAL(cmd)) ?
1521 NON_READ_WRITE_LDIO : NON_READ_WRITE_SYSPDIO;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001522 }
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05301523 return ret;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001524}
1525
Sumant Patro658dced2006-10-03 13:09:14 -07001526 /**
1527 * megasas_dump_pending_frames - Dumps the frame address of all pending cmds
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001528 * in FW
Sumant Patro658dced2006-10-03 13:09:14 -07001529 * @instance: Adapter soft state
1530 */
1531static inline void
1532megasas_dump_pending_frames(struct megasas_instance *instance)
1533{
1534 struct megasas_cmd *cmd;
1535 int i,n;
1536 union megasas_sgl *mfi_sgl;
1537 struct megasas_io_frame *ldio;
1538 struct megasas_pthru_frame *pthru;
1539 u32 sgcount;
1540 u32 max_cmd = instance->max_fw_cmds;
1541
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001542 dev_err(&instance->pdev->dev, "[%d]: Dumping Frame Phys Address of all pending cmds in FW\n",instance->host->host_no);
1543 dev_err(&instance->pdev->dev, "[%d]: Total OS Pending cmds : %d\n",instance->host->host_no,atomic_read(&instance->fw_outstanding));
Sumant Patro658dced2006-10-03 13:09:14 -07001544 if (IS_DMA64)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001545 dev_err(&instance->pdev->dev, "[%d]: 64 bit SGLs were sent to FW\n",instance->host->host_no);
Sumant Patro658dced2006-10-03 13:09:14 -07001546 else
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001547 dev_err(&instance->pdev->dev, "[%d]: 32 bit SGLs were sent to FW\n",instance->host->host_no);
Sumant Patro658dced2006-10-03 13:09:14 -07001548
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001549 dev_err(&instance->pdev->dev, "[%d]: Pending OS cmds in FW : \n",instance->host->host_no);
Sumant Patro658dced2006-10-03 13:09:14 -07001550 for (i = 0; i < max_cmd; i++) {
1551 cmd = instance->cmd_list[i];
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001552 if (!cmd->scmd)
Sumant Patro658dced2006-10-03 13:09:14 -07001553 continue;
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001554 dev_err(&instance->pdev->dev, "[%d]: Frame addr :0x%08lx : ",instance->host->host_no,(unsigned long)cmd->frame_phys_addr);
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05301555 if (megasas_cmd_type(cmd->scmd) == READ_WRITE_LDIO) {
Sumant Patro658dced2006-10-03 13:09:14 -07001556 ldio = (struct megasas_io_frame *)cmd->frame;
1557 mfi_sgl = &ldio->sgl;
1558 sgcount = ldio->sge_count;
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001559 dev_err(&instance->pdev->dev, "[%d]: frame count : 0x%x, Cmd : 0x%x, Tgt id : 0x%x,"
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301560 " lba lo : 0x%x, lba_hi : 0x%x, sense_buf addr : 0x%x,sge count : 0x%x\n",
1561 instance->host->host_no, cmd->frame_count, ldio->cmd, ldio->target_id,
1562 le32_to_cpu(ldio->start_lba_lo), le32_to_cpu(ldio->start_lba_hi),
1563 le32_to_cpu(ldio->sense_buf_phys_addr_lo), sgcount);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001564 } else {
Sumant Patro658dced2006-10-03 13:09:14 -07001565 pthru = (struct megasas_pthru_frame *) cmd->frame;
1566 mfi_sgl = &pthru->sgl;
1567 sgcount = pthru->sge_count;
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001568 dev_err(&instance->pdev->dev, "[%d]: frame count : 0x%x, Cmd : 0x%x, Tgt id : 0x%x, "
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301569 "lun : 0x%x, cdb_len : 0x%x, data xfer len : 0x%x, sense_buf addr : 0x%x,sge count : 0x%x\n",
1570 instance->host->host_no, cmd->frame_count, pthru->cmd, pthru->target_id,
1571 pthru->lun, pthru->cdb_len, le32_to_cpu(pthru->data_xfer_len),
1572 le32_to_cpu(pthru->sense_buf_phys_addr_lo), sgcount);
Sumant Patro658dced2006-10-03 13:09:14 -07001573 }
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001574 if (megasas_dbg_lvl & MEGASAS_DBG_LVL) {
1575 for (n = 0; n < sgcount; n++) {
1576 if (IS_DMA64)
1577 dev_err(&instance->pdev->dev, "sgl len : 0x%x, sgl addr : 0x%llx\n",
1578 le32_to_cpu(mfi_sgl->sge64[n].length),
1579 le64_to_cpu(mfi_sgl->sge64[n].phys_addr));
1580 else
1581 dev_err(&instance->pdev->dev, "sgl len : 0x%x, sgl addr : 0x%x\n",
1582 le32_to_cpu(mfi_sgl->sge32[n].length),
1583 le32_to_cpu(mfi_sgl->sge32[n].phys_addr));
Sumant Patro658dced2006-10-03 13:09:14 -07001584 }
1585 }
Sumant Patro658dced2006-10-03 13:09:14 -07001586 } /*for max_cmd*/
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001587 dev_err(&instance->pdev->dev, "[%d]: Pending Internal cmds in FW : \n",instance->host->host_no);
Sumant Patro658dced2006-10-03 13:09:14 -07001588 for (i = 0; i < max_cmd; i++) {
1589
1590 cmd = instance->cmd_list[i];
1591
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001592 if (cmd->sync_cmd == 1)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001593 dev_err(&instance->pdev->dev, "0x%08lx : ", (unsigned long)cmd->frame_phys_addr);
Sumant Patro658dced2006-10-03 13:09:14 -07001594 }
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001595 dev_err(&instance->pdev->dev, "[%d]: Dumping Done\n\n",instance->host->host_no);
Sumant Patro658dced2006-10-03 13:09:14 -07001596}
1597
adam radfordcd50ba82010-12-21 10:23:23 -08001598u32
1599megasas_build_and_issue_cmd(struct megasas_instance *instance,
1600 struct scsi_cmnd *scmd)
1601{
1602 struct megasas_cmd *cmd;
1603 u32 frame_count;
1604
1605 cmd = megasas_get_cmd(instance);
1606 if (!cmd)
1607 return SCSI_MLQUEUE_HOST_BUSY;
1608
1609 /*
1610 * Logical drive command
1611 */
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05301612 if (megasas_cmd_type(scmd) == READ_WRITE_LDIO)
adam radfordcd50ba82010-12-21 10:23:23 -08001613 frame_count = megasas_build_ldio(instance, scmd, cmd);
1614 else
1615 frame_count = megasas_build_dcdb(instance, scmd, cmd);
1616
1617 if (!frame_count)
1618 goto out_return_cmd;
1619
1620 cmd->scmd = scmd;
1621 scmd->SCp.ptr = (char *)cmd;
1622
1623 /*
1624 * Issue the command to the FW
1625 */
1626 atomic_inc(&instance->fw_outstanding);
1627
1628 instance->instancet->fire_cmd(instance, cmd->frame_phys_addr,
1629 cmd->frame_count-1, instance->reg_set);
adam radfordcd50ba82010-12-21 10:23:23 -08001630
1631 return 0;
1632out_return_cmd:
1633 megasas_return_cmd(instance, cmd);
Sumit Saxenaf9a9dee2016-01-28 21:04:29 +05301634 return SCSI_MLQUEUE_HOST_BUSY;
adam radfordcd50ba82010-12-21 10:23:23 -08001635}
1636
1637
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001638/**
1639 * megasas_queue_command - Queue entry point
1640 * @scmd: SCSI command to be queued
1641 * @done: Callback entry point
1642 */
1643static int
Sumit.Saxena@avagotech.comfb1a24f2014-09-12 18:57:38 +05301644megasas_queue_command(struct Scsi_Host *shost, struct scsi_cmnd *scmd)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001645{
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001646 struct megasas_instance *instance;
Sumit Saxena18365b12016-01-28 21:04:25 +05301647 struct MR_PRIV_DEVICE *mr_device_priv_data;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001648
1649 instance = (struct megasas_instance *)
1650 scmd->device->host->hostdata;
Sumant Patroaf37acf2007-02-14 12:34:46 -08001651
Sumit.Saxena@avagotech.comaa008322014-11-17 15:24:08 +05301652 if (instance->unload == 1) {
1653 scmd->result = DID_NO_CONNECT << 16;
1654 scmd->scsi_done(scmd);
1655 return 0;
1656 }
1657
bo yang39a98552010-09-22 22:36:29 -04001658 if (instance->issuepend_done == 0)
Sumant Patroaf37acf2007-02-14 12:34:46 -08001659 return SCSI_MLQUEUE_HOST_BUSY;
1660
Sumit.Saxena@lsi.comb09e66d2013-05-22 12:29:28 +05301661
adam radford229fe472014-03-10 02:51:56 -07001662 /* Check for an mpio path and adjust behavior */
Sumit Saxena8a01a412016-01-28 21:04:32 +05301663 if (atomic_read(&instance->adprecovery) == MEGASAS_ADPRESET_SM_INFAULT) {
adam radford229fe472014-03-10 02:51:56 -07001664 if (megasas_check_mpio_paths(instance, scmd) ==
1665 (DID_RESET << 16)) {
adam radford229fe472014-03-10 02:51:56 -07001666 return SCSI_MLQUEUE_HOST_BUSY;
1667 } else {
adam radford229fe472014-03-10 02:51:56 -07001668 scmd->result = DID_NO_CONNECT << 16;
Sumit.Saxena@avagotech.comfb1a24f2014-09-12 18:57:38 +05301669 scmd->scsi_done(scmd);
adam radford229fe472014-03-10 02:51:56 -07001670 return 0;
1671 }
1672 }
1673
Sumit Saxena8a01a412016-01-28 21:04:32 +05301674 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
adam radford229fe472014-03-10 02:51:56 -07001675 scmd->result = DID_NO_CONNECT << 16;
Sumit.Saxena@avagotech.comfb1a24f2014-09-12 18:57:38 +05301676 scmd->scsi_done(scmd);
Sumit.Saxena@lsi.comb09e66d2013-05-22 12:29:28 +05301677 return 0;
1678 }
1679
Sumit Saxena18365b12016-01-28 21:04:25 +05301680 mr_device_priv_data = scmd->device->hostdata;
1681 if (!mr_device_priv_data) {
Sumit Saxena18365b12016-01-28 21:04:25 +05301682 scmd->result = DID_NO_CONNECT << 16;
1683 scmd->scsi_done(scmd);
1684 return 0;
1685 }
1686
Sumit Saxena8a01a412016-01-28 21:04:32 +05301687 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL)
bo yang39a98552010-09-22 22:36:29 -04001688 return SCSI_MLQUEUE_HOST_BUSY;
bo yang39a98552010-09-22 22:36:29 -04001689
Sumit Saxena8a01a412016-01-28 21:04:32 +05301690 if (mr_device_priv_data->tm_busy)
Sumit Saxena18365b12016-01-28 21:04:25 +05301691 return SCSI_MLQUEUE_DEVICE_BUSY;
Sumit Saxena18365b12016-01-28 21:04:25 +05301692
bo yang39a98552010-09-22 22:36:29 -04001693
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001694 scmd->result = 0;
1695
Sumant Patrocb59aa62006-01-25 11:53:25 -08001696 if (MEGASAS_IS_LOGICAL(scmd) &&
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05301697 (scmd->device->id >= instance->fw_supported_vd_count ||
1698 scmd->device->lun)) {
Sumant Patrocb59aa62006-01-25 11:53:25 -08001699 scmd->result = DID_BAD_TARGET << 16;
1700 goto out_done;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001701 }
1702
Kashyap Desai1e793f62016-10-21 06:33:32 -07001703 /*
1704 * FW takes care of flush cache on its own for Virtual Disk.
1705 * No need to send it down for VD. For JBOD send SYNCHRONIZE_CACHE to FW.
1706 */
1707 if ((scmd->cmnd[0] == SYNCHRONIZE_CACHE) && MEGASAS_IS_LOGICAL(scmd)) {
Sumant Patro02b01e02007-02-14 13:00:55 -08001708 scmd->result = DID_OK << 16;
1709 goto out_done;
Sumant Patro02b01e02007-02-14 13:00:55 -08001710 }
1711
Sumit Saxenaf9a9dee2016-01-28 21:04:29 +05301712 return instance->instancet->build_and_issue_cmd(instance, scmd);
Sumant Patrocb59aa62006-01-25 11:53:25 -08001713
Sumant Patrocb59aa62006-01-25 11:53:25 -08001714 out_done:
Sumit.Saxena@avagotech.comfb1a24f2014-09-12 18:57:38 +05301715 scmd->scsi_done(scmd);
Sumant Patrocb59aa62006-01-25 11:53:25 -08001716 return 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001717}
1718
Yang, Bo044833b2009-10-06 14:33:06 -06001719static struct megasas_instance *megasas_lookup_instance(u16 host_no)
1720{
1721 int i;
1722
1723 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
1724
1725 if ((megasas_mgmt_info.instance[i]) &&
1726 (megasas_mgmt_info.instance[i]->host->host_no == host_no))
1727 return megasas_mgmt_info.instance[i];
1728 }
1729
1730 return NULL;
1731}
1732
sumit.saxena@avagotech.com0b48d122015-10-15 13:40:44 +05301733/*
Sumit Saxena18365b12016-01-28 21:04:25 +05301734* megasas_update_sdev_properties - Update sdev structure based on controller's FW capabilities
sumit.saxena@avagotech.com0b48d122015-10-15 13:40:44 +05301735*
1736* @sdev: OS provided scsi device
1737*
1738* Returns void
1739*/
Sumit Saxena18365b12016-01-28 21:04:25 +05301740void megasas_update_sdev_properties(struct scsi_device *sdev)
sumit.saxena@avagotech.com0b48d122015-10-15 13:40:44 +05301741{
Sumit Saxena18365b12016-01-28 21:04:25 +05301742 u16 pd_index = 0;
sumit.saxena@avagotech.com0b48d122015-10-15 13:40:44 +05301743 u32 device_id, ld;
1744 struct megasas_instance *instance;
1745 struct fusion_context *fusion;
Sumit Saxena18365b12016-01-28 21:04:25 +05301746 struct MR_PRIV_DEVICE *mr_device_priv_data;
1747 struct MR_PD_CFG_SEQ_NUM_SYNC *pd_sync;
sumit.saxena@avagotech.com0b48d122015-10-15 13:40:44 +05301748 struct MR_LD_RAID *raid;
1749 struct MR_DRV_RAID_MAP_ALL *local_map_ptr;
1750
1751 instance = megasas_lookup_instance(sdev->host->host_no);
1752 fusion = instance->ctrl_context;
Sumit Saxena18365b12016-01-28 21:04:25 +05301753 mr_device_priv_data = sdev->hostdata;
sumit.saxena@avagotech.com0b48d122015-10-15 13:40:44 +05301754
1755 if (!fusion)
1756 return;
1757
Sumit Saxena18365b12016-01-28 21:04:25 +05301758 if (sdev->channel < MEGASAS_MAX_PD_CHANNELS &&
1759 instance->use_seqnum_jbod_fp) {
1760 pd_index = (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) +
1761 sdev->id;
1762 pd_sync = (void *)fusion->pd_seq_sync
1763 [(instance->pd_seq_map_id - 1) & 1];
1764 mr_device_priv_data->is_tm_capable =
1765 pd_sync->seq[pd_index].capability.tmCapable;
1766 } else {
sumit.saxena@avagotech.com0b48d122015-10-15 13:40:44 +05301767 device_id = ((sdev->channel % 2) * MEGASAS_MAX_DEV_PER_CHANNEL)
1768 + sdev->id;
1769 local_map_ptr = fusion->ld_drv_map[(instance->map_id & 1)];
1770 ld = MR_TargetIdToLdGet(device_id, local_map_ptr);
1771 raid = MR_LdRaidGet(ld, local_map_ptr);
1772
1773 if (raid->capability.ldPiMode == MR_PROT_INFO_TYPE_CONTROLLER)
Sumit Saxena18365b12016-01-28 21:04:25 +05301774 blk_queue_update_dma_alignment(sdev->request_queue, 0x7);
1775 mr_device_priv_data->is_tm_capable =
1776 raid->capability.tmCapable;
sumit.saxena@avagotech.com0b48d122015-10-15 13:40:44 +05301777 }
1778}
1779
Sumit Saxena2216c302016-01-28 21:04:26 +05301780static void megasas_set_device_queue_depth(struct scsi_device *sdev)
1781{
1782 u16 pd_index = 0;
1783 int ret = DCMD_FAILED;
1784 struct megasas_instance *instance;
1785
1786 instance = megasas_lookup_instance(sdev->host->host_no);
1787
1788 if (sdev->channel < MEGASAS_MAX_PD_CHANNELS) {
1789 pd_index = (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) + sdev->id;
1790
1791 if (instance->pd_info) {
1792 mutex_lock(&instance->hba_mutex);
1793 ret = megasas_get_pd_info(instance, pd_index);
1794 mutex_unlock(&instance->hba_mutex);
1795 }
1796
1797 if (ret != DCMD_SUCCESS)
1798 return;
1799
1800 if (instance->pd_list[pd_index].driveState == MR_PD_STATE_SYSTEM) {
1801
1802 switch (instance->pd_list[pd_index].interface) {
1803 case SAS_PD:
1804 scsi_change_queue_depth(sdev, MEGASAS_SAS_QD);
1805 break;
1806
1807 case SATA_PD:
1808 scsi_change_queue_depth(sdev, MEGASAS_SATA_QD);
1809 break;
1810
1811 default:
1812 scsi_change_queue_depth(sdev, MEGASAS_DEFAULT_PD_QD);
1813 }
1814 }
1815 }
1816}
1817
Sumit Saxena18365b12016-01-28 21:04:25 +05301818
Christoph Hellwig147aab62006-02-17 12:13:48 +01001819static int megasas_slave_configure(struct scsi_device *sdev)
1820{
Sumit Saxenaaed335e2015-11-05 21:17:37 +05301821 u16 pd_index = 0;
1822 struct megasas_instance *instance;
1823
1824 instance = megasas_lookup_instance(sdev->host->host_no);
Sumit Saxena30845582016-03-10 02:14:37 -08001825 if (instance->pd_list_not_supported) {
Sumit Saxenaaed335e2015-11-05 21:17:37 +05301826 if (sdev->channel < MEGASAS_MAX_PD_CHANNELS &&
1827 sdev->type == TYPE_DISK) {
1828 pd_index = (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) +
1829 sdev->id;
1830 if (instance->pd_list[pd_index].driveState !=
1831 MR_PD_STATE_SYSTEM)
1832 return -ENXIO;
1833 }
1834 }
Sumit Saxena2216c302016-01-28 21:04:26 +05301835 megasas_set_device_queue_depth(sdev);
Sumit Saxena18365b12016-01-28 21:04:25 +05301836 megasas_update_sdev_properties(sdev);
1837
Yang, Bo044833b2009-10-06 14:33:06 -06001838 /*
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001839 * The RAID firmware may require extended timeouts.
1840 */
Yang, Bo044833b2009-10-06 14:33:06 -06001841 blk_queue_rq_timeout(sdev->request_queue,
Sumit Saxenae3d178c2016-01-28 21:04:34 +05301842 scmd_timeout * HZ);
Sumit.Saxena@avagotech.com07e38d92014-09-12 18:57:13 +05301843
Yang, Bo044833b2009-10-06 14:33:06 -06001844 return 0;
1845}
1846
1847static int megasas_slave_alloc(struct scsi_device *sdev)
1848{
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001849 u16 pd_index = 0;
Yang, Bo044833b2009-10-06 14:33:06 -06001850 struct megasas_instance *instance ;
Sumit Saxena18365b12016-01-28 21:04:25 +05301851 struct MR_PRIV_DEVICE *mr_device_priv_data;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001852
Yang, Bo044833b2009-10-06 14:33:06 -06001853 instance = megasas_lookup_instance(sdev->host->host_no);
Sumit.Saxena@avagotech.com07e38d92014-09-12 18:57:13 +05301854 if (sdev->channel < MEGASAS_MAX_PD_CHANNELS) {
Yang, Bo044833b2009-10-06 14:33:06 -06001855 /*
1856 * Open the OS scan to the SYSTEM PD
1857 */
1858 pd_index =
1859 (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) +
1860 sdev->id;
Sumit Saxena30845582016-03-10 02:14:37 -08001861 if ((instance->pd_list_not_supported ||
1862 instance->pd_list[pd_index].driveState ==
Sumit Saxenaaed335e2015-11-05 21:17:37 +05301863 MR_PD_STATE_SYSTEM)) {
Sumit Saxena18365b12016-01-28 21:04:25 +05301864 goto scan_target;
Yang, Bo044833b2009-10-06 14:33:06 -06001865 }
1866 return -ENXIO;
1867 }
Sumit Saxena18365b12016-01-28 21:04:25 +05301868
1869scan_target:
1870 mr_device_priv_data = kzalloc(sizeof(*mr_device_priv_data),
1871 GFP_KERNEL);
1872 if (!mr_device_priv_data)
1873 return -ENOMEM;
1874 sdev->hostdata = mr_device_priv_data;
Christoph Hellwig147aab62006-02-17 12:13:48 +01001875 return 0;
1876}
1877
Sumit Saxena18365b12016-01-28 21:04:25 +05301878static void megasas_slave_destroy(struct scsi_device *sdev)
1879{
1880 kfree(sdev->hostdata);
1881 sdev->hostdata = NULL;
1882}
1883
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301884/*
1885* megasas_complete_outstanding_ioctls - Complete outstanding ioctls after a
1886* kill adapter
1887* @instance: Adapter soft state
1888*
1889*/
kbuild test robot6a6981f2015-04-23 16:33:23 +05301890static void megasas_complete_outstanding_ioctls(struct megasas_instance *instance)
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301891{
1892 int i;
1893 struct megasas_cmd *cmd_mfi;
1894 struct megasas_cmd_fusion *cmd_fusion;
1895 struct fusion_context *fusion = instance->ctrl_context;
1896
1897 /* Find all outstanding ioctls */
1898 if (fusion) {
1899 for (i = 0; i < instance->max_fw_cmds; i++) {
1900 cmd_fusion = fusion->cmd_list[i];
1901 if (cmd_fusion->sync_cmd_idx != (u32)ULONG_MAX) {
1902 cmd_mfi = instance->cmd_list[cmd_fusion->sync_cmd_idx];
1903 if (cmd_mfi->sync_cmd &&
Shivasharan Sd8817f52017-08-23 04:47:04 -07001904 (cmd_mfi->frame->hdr.cmd != MFI_CMD_ABORT)) {
1905 cmd_mfi->frame->hdr.cmd_status =
1906 MFI_STAT_WRONG_STATE;
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301907 megasas_complete_cmd(instance,
1908 cmd_mfi, DID_OK);
Shivasharan Sd8817f52017-08-23 04:47:04 -07001909 }
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301910 }
1911 }
1912 } else {
1913 for (i = 0; i < instance->max_fw_cmds; i++) {
1914 cmd_mfi = instance->cmd_list[i];
1915 if (cmd_mfi->sync_cmd && cmd_mfi->frame->hdr.cmd !=
1916 MFI_CMD_ABORT)
1917 megasas_complete_cmd(instance, cmd_mfi, DID_OK);
1918 }
1919 }
1920}
1921
1922
adam radford9c915a82010-12-21 13:34:31 -08001923void megaraid_sas_kill_hba(struct megasas_instance *instance)
bo yang39a98552010-09-22 22:36:29 -04001924{
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301925 /* Set critical error to block I/O & ioctls in case caller didn't */
Sumit Saxena8a01a412016-01-28 21:04:32 +05301926 atomic_set(&instance->adprecovery, MEGASAS_HW_CRITICAL_ERROR);
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301927 /* Wait 1 second to ensure IO or ioctls in build have posted */
1928 msleep(1000);
bo yang39a98552010-09-22 22:36:29 -04001929 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301930 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05301931 (instance->ctrl_context)) {
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001932 writel(MFI_STOP_ADP, &instance->reg_set->doorbell);
adam radford229fe472014-03-10 02:51:56 -07001933 /* Flush */
1934 readl(&instance->reg_set->doorbell);
Sumit Saxena8f67c8c2016-01-28 21:14:25 +05301935 if (instance->requestorId && instance->peerIsPresent)
adam radford229fe472014-03-10 02:51:56 -07001936 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
bo yang39a98552010-09-22 22:36:29 -04001937 } else {
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301938 writel(MFI_STOP_ADP,
1939 &instance->reg_set->inbound_doorbell);
adam radford9c915a82010-12-21 13:34:31 -08001940 }
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301941 /* Complete outstanding ioctls when adapter is killed */
1942 megasas_complete_outstanding_ioctls(instance);
adam radford9c915a82010-12-21 13:34:31 -08001943}
1944
1945 /**
1946 * megasas_check_and_restore_queue_depth - Check if queue depth needs to be
1947 * restored to max value
1948 * @instance: Adapter soft state
1949 *
1950 */
1951void
1952megasas_check_and_restore_queue_depth(struct megasas_instance *instance)
1953{
1954 unsigned long flags;
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05301955
adam radford9c915a82010-12-21 13:34:31 -08001956 if (instance->flag & MEGASAS_FW_BUSY
adam radfordc5daa6a2012-07-17 18:20:03 -07001957 && time_after(jiffies, instance->last_time + 5 * HZ)
1958 && atomic_read(&instance->fw_outstanding) <
1959 instance->throttlequeuedepth + 1) {
adam radford9c915a82010-12-21 13:34:31 -08001960
1961 spin_lock_irqsave(instance->host->host_lock, flags);
1962 instance->flag &= ~MEGASAS_FW_BUSY;
adam radford9c915a82010-12-21 13:34:31 -08001963
Sumit Saxena308ec452016-01-28 21:04:30 +05301964 instance->host->can_queue = instance->cur_can_queue;
adam radford9c915a82010-12-21 13:34:31 -08001965 spin_unlock_irqrestore(instance->host->host_lock, flags);
bo yang39a98552010-09-22 22:36:29 -04001966 }
1967}
1968
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001969/**
bo yang7343eb62007-11-09 04:35:44 -05001970 * megasas_complete_cmd_dpc - Returns FW's controller structure
1971 * @instance_addr: Address of adapter soft state
1972 *
1973 * Tasklet to complete cmds
1974 */
1975static void megasas_complete_cmd_dpc(unsigned long instance_addr)
1976{
1977 u32 producer;
1978 u32 consumer;
1979 u32 context;
1980 struct megasas_cmd *cmd;
1981 struct megasas_instance *instance =
1982 (struct megasas_instance *)instance_addr;
1983 unsigned long flags;
1984
1985 /* If we have already declared adapter dead, donot complete cmds */
Sumit Saxena8a01a412016-01-28 21:04:32 +05301986 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR)
bo yang7343eb62007-11-09 04:35:44 -05001987 return;
1988
1989 spin_lock_irqsave(&instance->completion_lock, flags);
1990
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301991 producer = le32_to_cpu(*instance->producer);
1992 consumer = le32_to_cpu(*instance->consumer);
bo yang7343eb62007-11-09 04:35:44 -05001993
1994 while (consumer != producer) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301995 context = le32_to_cpu(instance->reply_queue[consumer]);
bo yang39a98552010-09-22 22:36:29 -04001996 if (context >= instance->max_fw_cmds) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001997 dev_err(&instance->pdev->dev, "Unexpected context value %x\n",
bo yang39a98552010-09-22 22:36:29 -04001998 context);
1999 BUG();
2000 }
bo yang7343eb62007-11-09 04:35:44 -05002001
2002 cmd = instance->cmd_list[context];
2003
2004 megasas_complete_cmd(instance, cmd, DID_OK);
2005
2006 consumer++;
2007 if (consumer == (instance->max_fw_cmds + 1)) {
2008 consumer = 0;
2009 }
2010 }
2011
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05302012 *instance->consumer = cpu_to_le32(producer);
bo yang7343eb62007-11-09 04:35:44 -05002013
2014 spin_unlock_irqrestore(&instance->completion_lock, flags);
2015
2016 /*
2017 * Check if we can restore can_queue
2018 */
adam radford9c915a82010-12-21 13:34:31 -08002019 megasas_check_and_restore_queue_depth(instance);
bo yang7343eb62007-11-09 04:35:44 -05002020}
2021
adam radford229fe472014-03-10 02:51:56 -07002022/**
2023 * megasas_start_timer - Initializes a timer object
2024 * @instance: Adapter soft state
2025 * @timer: timer object to be initialized
2026 * @fn: timer function
2027 * @interval: time interval between timer function call
2028 *
2029 */
2030void megasas_start_timer(struct megasas_instance *instance,
2031 struct timer_list *timer,
2032 void *fn, unsigned long interval)
2033{
2034 init_timer(timer);
2035 timer->expires = jiffies + interval;
2036 timer->data = (unsigned long)instance;
2037 timer->function = fn;
2038 add_timer(timer);
2039}
2040
Yang, Bo707e09b2010-10-12 07:20:27 -06002041static void
2042megasas_internal_reset_defer_cmds(struct megasas_instance *instance);
2043
2044static void
2045process_fw_state_change_wq(struct work_struct *work);
2046
2047void megasas_do_ocr(struct megasas_instance *instance)
2048{
2049 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1064R) ||
2050 (instance->pdev->device == PCI_DEVICE_ID_DELL_PERC5) ||
2051 (instance->pdev->device == PCI_DEVICE_ID_LSI_VERDE_ZCR)) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05302052 *instance->consumer = cpu_to_le32(MEGASAS_ADPRESET_INPROG_SIGN);
Yang, Bo707e09b2010-10-12 07:20:27 -06002053 }
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05302054 instance->instancet->disable_intr(instance);
Sumit Saxena8a01a412016-01-28 21:04:32 +05302055 atomic_set(&instance->adprecovery, MEGASAS_ADPRESET_SM_INFAULT);
Yang, Bo707e09b2010-10-12 07:20:27 -06002056 instance->issuepend_done = 0;
2057
2058 atomic_set(&instance->fw_outstanding, 0);
2059 megasas_internal_reset_defer_cmds(instance);
2060 process_fw_state_change_wq(&instance->work_init);
2061}
2062
Adam Radford4cbfea82014-07-09 15:17:56 -07002063static int megasas_get_ld_vf_affiliation_111(struct megasas_instance *instance,
2064 int initial)
adam radford229fe472014-03-10 02:51:56 -07002065{
2066 struct megasas_cmd *cmd;
2067 struct megasas_dcmd_frame *dcmd;
adam radford229fe472014-03-10 02:51:56 -07002068 struct MR_LD_VF_AFFILIATION_111 *new_affiliation_111 = NULL;
adam radford229fe472014-03-10 02:51:56 -07002069 dma_addr_t new_affiliation_111_h;
2070 int ld, retval = 0;
2071 u8 thisVf;
2072
2073 cmd = megasas_get_cmd(instance);
2074
2075 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002076 dev_printk(KERN_DEBUG, &instance->pdev->dev, "megasas_get_ld_vf_affiliation_111:"
2077 "Failed to get cmd for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002078 instance->host->host_no);
2079 return -ENOMEM;
2080 }
2081
2082 dcmd = &cmd->frame->dcmd;
2083
Adam Radford4cbfea82014-07-09 15:17:56 -07002084 if (!instance->vf_affiliation_111) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002085 dev_warn(&instance->pdev->dev, "SR-IOV: Couldn't get LD/VF "
2086 "affiliation for scsi%d\n", instance->host->host_no);
adam radford229fe472014-03-10 02:51:56 -07002087 megasas_return_cmd(instance, cmd);
2088 return -ENOMEM;
2089 }
2090
2091 if (initial)
adam radford229fe472014-03-10 02:51:56 -07002092 memset(instance->vf_affiliation_111, 0,
2093 sizeof(struct MR_LD_VF_AFFILIATION_111));
adam radford229fe472014-03-10 02:51:56 -07002094 else {
Adam Radford4cbfea82014-07-09 15:17:56 -07002095 new_affiliation_111 =
2096 pci_alloc_consistent(instance->pdev,
2097 sizeof(struct MR_LD_VF_AFFILIATION_111),
2098 &new_affiliation_111_h);
2099 if (!new_affiliation_111) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002100 dev_printk(KERN_DEBUG, &instance->pdev->dev, "SR-IOV: Couldn't allocate "
2101 "memory for new affiliation for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002102 instance->host->host_no);
adam radford229fe472014-03-10 02:51:56 -07002103 megasas_return_cmd(instance, cmd);
2104 return -ENOMEM;
2105 }
Adam Radford4cbfea82014-07-09 15:17:56 -07002106 memset(new_affiliation_111, 0,
2107 sizeof(struct MR_LD_VF_AFFILIATION_111));
adam radford229fe472014-03-10 02:51:56 -07002108 }
2109
2110 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2111
2112 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302113 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
adam radford229fe472014-03-10 02:51:56 -07002114 dcmd->sge_count = 1;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302115 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_BOTH);
adam radford229fe472014-03-10 02:51:56 -07002116 dcmd->timeout = 0;
2117 dcmd->pad_0 = 0;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302118 dcmd->data_xfer_len =
2119 cpu_to_le32(sizeof(struct MR_LD_VF_AFFILIATION_111));
2120 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_VF_MAP_GET_ALL_LDS_111);
adam radford229fe472014-03-10 02:51:56 -07002121
Adam Radford4cbfea82014-07-09 15:17:56 -07002122 if (initial)
2123 dcmd->sgl.sge32[0].phys_addr =
Christoph Hellwig2213a462015-04-23 16:33:54 +05302124 cpu_to_le32(instance->vf_affiliation_111_h);
adam radford229fe472014-03-10 02:51:56 -07002125 else
Christoph Hellwig2213a462015-04-23 16:33:54 +05302126 dcmd->sgl.sge32[0].phys_addr =
2127 cpu_to_le32(new_affiliation_111_h);
Adam Radford4cbfea82014-07-09 15:17:56 -07002128
Christoph Hellwig2213a462015-04-23 16:33:54 +05302129 dcmd->sgl.sge32[0].length = cpu_to_le32(
2130 sizeof(struct MR_LD_VF_AFFILIATION_111));
adam radford229fe472014-03-10 02:51:56 -07002131
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002132 dev_warn(&instance->pdev->dev, "SR-IOV: Getting LD/VF affiliation for "
adam radford229fe472014-03-10 02:51:56 -07002133 "scsi%d\n", instance->host->host_no);
2134
Sumit Saxena6d40afb2016-01-28 21:04:23 +05302135 if (megasas_issue_blocked_cmd(instance, cmd, 0) != DCMD_SUCCESS) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002136 dev_warn(&instance->pdev->dev, "SR-IOV: LD/VF affiliation DCMD"
2137 " failed with status 0x%x for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002138 dcmd->cmd_status, instance->host->host_no);
2139 retval = 1; /* Do a scan if we couldn't get affiliation */
2140 goto out;
2141 }
2142
2143 if (!initial) {
Adam Radford4cbfea82014-07-09 15:17:56 -07002144 thisVf = new_affiliation_111->thisVf;
2145 for (ld = 0 ; ld < new_affiliation_111->vdCount; ld++)
2146 if (instance->vf_affiliation_111->map[ld].policy[thisVf] !=
2147 new_affiliation_111->map[ld].policy[thisVf]) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002148 dev_warn(&instance->pdev->dev, "SR-IOV: "
2149 "Got new LD/VF affiliation for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002150 instance->host->host_no);
Adam Radford4cbfea82014-07-09 15:17:56 -07002151 memcpy(instance->vf_affiliation_111,
2152 new_affiliation_111,
2153 sizeof(struct MR_LD_VF_AFFILIATION_111));
adam radford229fe472014-03-10 02:51:56 -07002154 retval = 1;
2155 goto out;
2156 }
Adam Radford4cbfea82014-07-09 15:17:56 -07002157 }
2158out:
2159 if (new_affiliation_111) {
2160 pci_free_consistent(instance->pdev,
2161 sizeof(struct MR_LD_VF_AFFILIATION_111),
2162 new_affiliation_111,
2163 new_affiliation_111_h);
2164 }
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05302165
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302166 megasas_return_cmd(instance, cmd);
Adam Radford4cbfea82014-07-09 15:17:56 -07002167
2168 return retval;
2169}
2170
2171static int megasas_get_ld_vf_affiliation_12(struct megasas_instance *instance,
2172 int initial)
2173{
2174 struct megasas_cmd *cmd;
2175 struct megasas_dcmd_frame *dcmd;
2176 struct MR_LD_VF_AFFILIATION *new_affiliation = NULL;
2177 struct MR_LD_VF_MAP *newmap = NULL, *savedmap = NULL;
2178 dma_addr_t new_affiliation_h;
2179 int i, j, retval = 0, found = 0, doscan = 0;
2180 u8 thisVf;
2181
2182 cmd = megasas_get_cmd(instance);
2183
2184 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002185 dev_printk(KERN_DEBUG, &instance->pdev->dev, "megasas_get_ld_vf_affiliation12: "
2186 "Failed to get cmd for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002187 instance->host->host_no);
2188 return -ENOMEM;
2189 }
2190
2191 dcmd = &cmd->frame->dcmd;
2192
2193 if (!instance->vf_affiliation) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002194 dev_warn(&instance->pdev->dev, "SR-IOV: Couldn't get LD/VF "
2195 "affiliation for scsi%d\n", instance->host->host_no);
Adam Radford4cbfea82014-07-09 15:17:56 -07002196 megasas_return_cmd(instance, cmd);
2197 return -ENOMEM;
2198 }
2199
2200 if (initial)
2201 memset(instance->vf_affiliation, 0, (MAX_LOGICAL_DRIVES + 1) *
2202 sizeof(struct MR_LD_VF_AFFILIATION));
2203 else {
2204 new_affiliation =
2205 pci_alloc_consistent(instance->pdev,
2206 (MAX_LOGICAL_DRIVES + 1) *
2207 sizeof(struct MR_LD_VF_AFFILIATION),
2208 &new_affiliation_h);
2209 if (!new_affiliation) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002210 dev_printk(KERN_DEBUG, &instance->pdev->dev, "SR-IOV: Couldn't allocate "
2211 "memory for new affiliation for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002212 instance->host->host_no);
2213 megasas_return_cmd(instance, cmd);
2214 return -ENOMEM;
2215 }
2216 memset(new_affiliation, 0, (MAX_LOGICAL_DRIVES + 1) *
2217 sizeof(struct MR_LD_VF_AFFILIATION));
2218 }
2219
2220 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2221
2222 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302223 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Adam Radford4cbfea82014-07-09 15:17:56 -07002224 dcmd->sge_count = 1;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302225 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_BOTH);
Adam Radford4cbfea82014-07-09 15:17:56 -07002226 dcmd->timeout = 0;
2227 dcmd->pad_0 = 0;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302228 dcmd->data_xfer_len = cpu_to_le32((MAX_LOGICAL_DRIVES + 1) *
2229 sizeof(struct MR_LD_VF_AFFILIATION));
2230 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_VF_MAP_GET_ALL_LDS);
Adam Radford4cbfea82014-07-09 15:17:56 -07002231
2232 if (initial)
Christoph Hellwig2213a462015-04-23 16:33:54 +05302233 dcmd->sgl.sge32[0].phys_addr =
2234 cpu_to_le32(instance->vf_affiliation_h);
Adam Radford4cbfea82014-07-09 15:17:56 -07002235 else
Christoph Hellwig2213a462015-04-23 16:33:54 +05302236 dcmd->sgl.sge32[0].phys_addr =
2237 cpu_to_le32(new_affiliation_h);
Adam Radford4cbfea82014-07-09 15:17:56 -07002238
Christoph Hellwig2213a462015-04-23 16:33:54 +05302239 dcmd->sgl.sge32[0].length = cpu_to_le32((MAX_LOGICAL_DRIVES + 1) *
2240 sizeof(struct MR_LD_VF_AFFILIATION));
Adam Radford4cbfea82014-07-09 15:17:56 -07002241
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002242 dev_warn(&instance->pdev->dev, "SR-IOV: Getting LD/VF affiliation for "
Adam Radford4cbfea82014-07-09 15:17:56 -07002243 "scsi%d\n", instance->host->host_no);
2244
Adam Radford4cbfea82014-07-09 15:17:56 -07002245
Sumit Saxena6d40afb2016-01-28 21:04:23 +05302246 if (megasas_issue_blocked_cmd(instance, cmd, 0) != DCMD_SUCCESS) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002247 dev_warn(&instance->pdev->dev, "SR-IOV: LD/VF affiliation DCMD"
2248 " failed with status 0x%x for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002249 dcmd->cmd_status, instance->host->host_no);
2250 retval = 1; /* Do a scan if we couldn't get affiliation */
2251 goto out;
2252 }
2253
2254 if (!initial) {
2255 if (!new_affiliation->ldCount) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002256 dev_warn(&instance->pdev->dev, "SR-IOV: Got new LD/VF "
2257 "affiliation for passive path for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002258 instance->host->host_no);
2259 retval = 1;
2260 goto out;
2261 }
2262 newmap = new_affiliation->map;
2263 savedmap = instance->vf_affiliation->map;
2264 thisVf = new_affiliation->thisVf;
2265 for (i = 0 ; i < new_affiliation->ldCount; i++) {
2266 found = 0;
2267 for (j = 0; j < instance->vf_affiliation->ldCount;
2268 j++) {
2269 if (newmap->ref.targetId ==
2270 savedmap->ref.targetId) {
2271 found = 1;
2272 if (newmap->policy[thisVf] !=
2273 savedmap->policy[thisVf]) {
2274 doscan = 1;
2275 goto out;
2276 }
adam radford229fe472014-03-10 02:51:56 -07002277 }
2278 savedmap = (struct MR_LD_VF_MAP *)
2279 ((unsigned char *)savedmap +
2280 savedmap->size);
Adam Radford4cbfea82014-07-09 15:17:56 -07002281 }
2282 if (!found && newmap->policy[thisVf] !=
2283 MR_LD_ACCESS_HIDDEN) {
2284 doscan = 1;
2285 goto out;
2286 }
2287 newmap = (struct MR_LD_VF_MAP *)
2288 ((unsigned char *)newmap + newmap->size);
2289 }
2290
2291 newmap = new_affiliation->map;
2292 savedmap = instance->vf_affiliation->map;
2293
2294 for (i = 0 ; i < instance->vf_affiliation->ldCount; i++) {
2295 found = 0;
2296 for (j = 0 ; j < new_affiliation->ldCount; j++) {
2297 if (savedmap->ref.targetId ==
2298 newmap->ref.targetId) {
2299 found = 1;
2300 if (savedmap->policy[thisVf] !=
2301 newmap->policy[thisVf]) {
2302 doscan = 1;
2303 goto out;
2304 }
2305 }
adam radford229fe472014-03-10 02:51:56 -07002306 newmap = (struct MR_LD_VF_MAP *)
2307 ((unsigned char *)newmap +
2308 newmap->size);
2309 }
Adam Radford4cbfea82014-07-09 15:17:56 -07002310 if (!found && savedmap->policy[thisVf] !=
2311 MR_LD_ACCESS_HIDDEN) {
2312 doscan = 1;
2313 goto out;
2314 }
2315 savedmap = (struct MR_LD_VF_MAP *)
2316 ((unsigned char *)savedmap +
2317 savedmap->size);
adam radford229fe472014-03-10 02:51:56 -07002318 }
2319 }
2320out:
Adam Radford4cbfea82014-07-09 15:17:56 -07002321 if (doscan) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002322 dev_warn(&instance->pdev->dev, "SR-IOV: Got new LD/VF "
2323 "affiliation for scsi%d\n", instance->host->host_no);
Adam Radford4cbfea82014-07-09 15:17:56 -07002324 memcpy(instance->vf_affiliation, new_affiliation,
2325 new_affiliation->size);
2326 retval = 1;
adam radford229fe472014-03-10 02:51:56 -07002327 }
Adam Radford4cbfea82014-07-09 15:17:56 -07002328
2329 if (new_affiliation)
2330 pci_free_consistent(instance->pdev,
2331 (MAX_LOGICAL_DRIVES + 1) *
2332 sizeof(struct MR_LD_VF_AFFILIATION),
2333 new_affiliation, new_affiliation_h);
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302334 megasas_return_cmd(instance, cmd);
adam radford229fe472014-03-10 02:51:56 -07002335
2336 return retval;
2337}
2338
Adam Radford4cbfea82014-07-09 15:17:56 -07002339/* This function will get the current SR-IOV LD/VF affiliation */
2340static int megasas_get_ld_vf_affiliation(struct megasas_instance *instance,
2341 int initial)
2342{
2343 int retval;
2344
2345 if (instance->PlasmaFW111)
2346 retval = megasas_get_ld_vf_affiliation_111(instance, initial);
2347 else
2348 retval = megasas_get_ld_vf_affiliation_12(instance, initial);
2349 return retval;
2350}
2351
adam radford229fe472014-03-10 02:51:56 -07002352/* This function will tell FW to start the SR-IOV heartbeat */
2353int megasas_sriov_start_heartbeat(struct megasas_instance *instance,
2354 int initial)
2355{
2356 struct megasas_cmd *cmd;
2357 struct megasas_dcmd_frame *dcmd;
2358 int retval = 0;
2359
2360 cmd = megasas_get_cmd(instance);
2361
2362 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002363 dev_printk(KERN_DEBUG, &instance->pdev->dev, "megasas_sriov_start_heartbeat: "
2364 "Failed to get cmd for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002365 instance->host->host_no);
2366 return -ENOMEM;
2367 }
2368
2369 dcmd = &cmd->frame->dcmd;
2370
2371 if (initial) {
2372 instance->hb_host_mem =
Joe Perches7c845eb2014-08-08 14:24:46 -07002373 pci_zalloc_consistent(instance->pdev,
2374 sizeof(struct MR_CTRL_HB_HOST_MEM),
2375 &instance->hb_host_mem_h);
adam radford229fe472014-03-10 02:51:56 -07002376 if (!instance->hb_host_mem) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002377 dev_printk(KERN_DEBUG, &instance->pdev->dev, "SR-IOV: Couldn't allocate"
2378 " memory for heartbeat host memory for scsi%d\n",
2379 instance->host->host_no);
adam radford229fe472014-03-10 02:51:56 -07002380 retval = -ENOMEM;
2381 goto out;
2382 }
adam radford229fe472014-03-10 02:51:56 -07002383 }
2384
2385 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2386
Christoph Hellwig2213a462015-04-23 16:33:54 +05302387 dcmd->mbox.s[0] = cpu_to_le16(sizeof(struct MR_CTRL_HB_HOST_MEM));
adam radford229fe472014-03-10 02:51:56 -07002388 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302389 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
adam radford229fe472014-03-10 02:51:56 -07002390 dcmd->sge_count = 1;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302391 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_BOTH);
adam radford229fe472014-03-10 02:51:56 -07002392 dcmd->timeout = 0;
2393 dcmd->pad_0 = 0;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302394 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct MR_CTRL_HB_HOST_MEM));
2395 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_SHARED_HOST_MEM_ALLOC);
2396 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(instance->hb_host_mem_h);
2397 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct MR_CTRL_HB_HOST_MEM));
adam radford229fe472014-03-10 02:51:56 -07002398
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002399 dev_warn(&instance->pdev->dev, "SR-IOV: Starting heartbeat for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002400 instance->host->host_no);
2401
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302402 if (instance->ctrl_context && !instance->mask_interrupts)
2403 retval = megasas_issue_blocked_cmd(instance, cmd,
2404 MEGASAS_ROUTINE_WAIT_TIME_VF);
2405 else
2406 retval = megasas_issue_polled(instance, cmd);
adam radford229fe472014-03-10 02:51:56 -07002407
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302408 if (retval) {
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302409 dev_warn(&instance->pdev->dev, "SR-IOV: MR_DCMD_CTRL_SHARED_HOST"
2410 "_MEM_ALLOC DCMD %s for scsi%d\n",
2411 (dcmd->cmd_status == MFI_STAT_INVALID_STATUS) ?
2412 "timed out" : "failed", instance->host->host_no);
adam radford229fe472014-03-10 02:51:56 -07002413 retval = 1;
adam radford229fe472014-03-10 02:51:56 -07002414 }
2415
2416out:
2417 megasas_return_cmd(instance, cmd);
2418
2419 return retval;
2420}
2421
2422/* Handler for SR-IOV heartbeat */
2423void megasas_sriov_heartbeat_handler(unsigned long instance_addr)
2424{
2425 struct megasas_instance *instance =
2426 (struct megasas_instance *)instance_addr;
2427
2428 if (instance->hb_host_mem->HB.fwCounter !=
2429 instance->hb_host_mem->HB.driverCounter) {
2430 instance->hb_host_mem->HB.driverCounter =
2431 instance->hb_host_mem->HB.fwCounter;
2432 mod_timer(&instance->sriov_heartbeat_timer,
2433 jiffies + MEGASAS_SRIOV_HEARTBEAT_INTERVAL_VF);
2434 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002435 dev_warn(&instance->pdev->dev, "SR-IOV: Heartbeat never "
adam radford229fe472014-03-10 02:51:56 -07002436 "completed for scsi%d\n", instance->host->host_no);
2437 schedule_work(&instance->work_init);
2438 }
2439}
2440
bo yang7343eb62007-11-09 04:35:44 -05002441/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002442 * megasas_wait_for_outstanding - Wait for all outstanding cmds
2443 * @instance: Adapter soft state
2444 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002445 * This function waits for up to MEGASAS_RESET_WAIT_TIME seconds for FW to
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002446 * complete all its outstanding commands. Returns error if one or more IOs
2447 * are pending after this time period. It also marks the controller dead.
2448 */
2449static int megasas_wait_for_outstanding(struct megasas_instance *instance)
2450{
Sumit Saxenaccc75072016-01-28 21:04:33 +05302451 int i, sl, outstanding;
bo yang39a98552010-09-22 22:36:29 -04002452 u32 reset_index;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002453 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
bo yang39a98552010-09-22 22:36:29 -04002454 unsigned long flags;
2455 struct list_head clist_local;
2456 struct megasas_cmd *reset_cmd;
Yang, Bo707e09b2010-10-12 07:20:27 -06002457 u32 fw_state;
bo yang39a98552010-09-22 22:36:29 -04002458
Sumit Saxenaccc75072016-01-28 21:04:33 +05302459 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
2460 dev_info(&instance->pdev->dev, "%s:%d HBA is killed.\n",
2461 __func__, __LINE__);
2462 return FAILED;
2463 }
bo yang39a98552010-09-22 22:36:29 -04002464
Sumit Saxena8a01a412016-01-28 21:04:32 +05302465 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04002466
2467 INIT_LIST_HEAD(&clist_local);
2468 spin_lock_irqsave(&instance->hba_lock, flags);
2469 list_splice_init(&instance->internal_reset_pending_q,
2470 &clist_local);
2471 spin_unlock_irqrestore(&instance->hba_lock, flags);
2472
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002473 dev_notice(&instance->pdev->dev, "HBA reset wait ...\n");
bo yang39a98552010-09-22 22:36:29 -04002474 for (i = 0; i < wait_time; i++) {
2475 msleep(1000);
Sumit Saxena8a01a412016-01-28 21:04:32 +05302476 if (atomic_read(&instance->adprecovery) == MEGASAS_HBA_OPERATIONAL)
bo yang39a98552010-09-22 22:36:29 -04002477 break;
2478 }
2479
Sumit Saxena8a01a412016-01-28 21:04:32 +05302480 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002481 dev_notice(&instance->pdev->dev, "reset: Stopping HBA.\n");
Sumit Saxena8a01a412016-01-28 21:04:32 +05302482 atomic_set(&instance->adprecovery, MEGASAS_HW_CRITICAL_ERROR);
bo yang39a98552010-09-22 22:36:29 -04002483 return FAILED;
2484 }
2485
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002486 reset_index = 0;
bo yang39a98552010-09-22 22:36:29 -04002487 while (!list_empty(&clist_local)) {
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002488 reset_cmd = list_entry((&clist_local)->next,
bo yang39a98552010-09-22 22:36:29 -04002489 struct megasas_cmd, list);
2490 list_del_init(&reset_cmd->list);
2491 if (reset_cmd->scmd) {
2492 reset_cmd->scmd->result = DID_RESET << 16;
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002493 dev_notice(&instance->pdev->dev, "%d:%p reset [%02x]\n",
bo yang39a98552010-09-22 22:36:29 -04002494 reset_index, reset_cmd,
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04002495 reset_cmd->scmd->cmnd[0]);
bo yang39a98552010-09-22 22:36:29 -04002496
2497 reset_cmd->scmd->scsi_done(reset_cmd->scmd);
2498 megasas_return_cmd(instance, reset_cmd);
2499 } else if (reset_cmd->sync_cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002500 dev_notice(&instance->pdev->dev, "%p synch cmds"
bo yang39a98552010-09-22 22:36:29 -04002501 "reset queue\n",
2502 reset_cmd);
2503
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302504 reset_cmd->cmd_status_drv = MFI_STAT_INVALID_STATUS;
bo yang39a98552010-09-22 22:36:29 -04002505 instance->instancet->fire_cmd(instance,
2506 reset_cmd->frame_phys_addr,
2507 0, instance->reg_set);
2508 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002509 dev_notice(&instance->pdev->dev, "%p unexpected"
bo yang39a98552010-09-22 22:36:29 -04002510 "cmds lst\n",
2511 reset_cmd);
2512 }
2513 reset_index++;
2514 }
2515
2516 return SUCCESS;
2517 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002518
adam radfordc007b8b2012-07-17 18:20:24 -07002519 for (i = 0; i < resetwaittime; i++) {
Sumit Saxenaccc75072016-01-28 21:04:33 +05302520 outstanding = atomic_read(&instance->fw_outstanding);
Sumant Patroe4a082c2006-05-30 12:03:37 -07002521
2522 if (!outstanding)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002523 break;
2524
2525 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002526 dev_notice(&instance->pdev->dev, "[%2d]waiting for %d "
Sumant Patroe4a082c2006-05-30 12:03:37 -07002527 "commands to complete\n",i,outstanding);
bo yang7343eb62007-11-09 04:35:44 -05002528 /*
2529 * Call cmd completion routine. Cmd to be
2530 * be completed directly without depending on isr.
2531 */
2532 megasas_complete_cmd_dpc((unsigned long)instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002533 }
2534
2535 msleep(1000);
2536 }
2537
Yang, Bo707e09b2010-10-12 07:20:27 -06002538 i = 0;
Sumit Saxenaccc75072016-01-28 21:04:33 +05302539 outstanding = atomic_read(&instance->fw_outstanding);
2540 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) & MFI_STATE_MASK;
Yang, Bo707e09b2010-10-12 07:20:27 -06002541
Sumit Saxenaccc75072016-01-28 21:04:33 +05302542 if ((!outstanding && (fw_state == MFI_STATE_OPERATIONAL)))
2543 goto no_outstanding;
2544
2545 if (instance->disableOnlineCtrlReset)
2546 goto kill_hba_and_failed;
2547 do {
2548 if ((fw_state == MFI_STATE_FAULT) || atomic_read(&instance->fw_outstanding)) {
2549 dev_info(&instance->pdev->dev,
2550 "%s:%d waiting_for_outstanding: before issue OCR. FW state = 0x%x, oustanding 0x%x\n",
2551 __func__, __LINE__, fw_state, atomic_read(&instance->fw_outstanding));
2552 if (i == 3)
2553 goto kill_hba_and_failed;
2554 megasas_do_ocr(instance);
2555
2556 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
2557 dev_info(&instance->pdev->dev, "%s:%d OCR failed and HBA is killed.\n",
2558 __func__, __LINE__);
2559 return FAILED;
2560 }
2561 dev_info(&instance->pdev->dev, "%s:%d waiting_for_outstanding: after issue OCR.\n",
2562 __func__, __LINE__);
2563
2564 for (sl = 0; sl < 10; sl++)
2565 msleep(500);
2566
2567 outstanding = atomic_read(&instance->fw_outstanding);
2568
2569 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) & MFI_STATE_MASK;
2570 if ((!outstanding && (fw_state == MFI_STATE_OPERATIONAL)))
2571 goto no_outstanding;
Yang, Bo707e09b2010-10-12 07:20:27 -06002572 }
2573 i++;
2574 } while (i <= 3);
2575
Sumit Saxenaccc75072016-01-28 21:04:33 +05302576no_outstanding:
Yang, Bo707e09b2010-10-12 07:20:27 -06002577
Sumit Saxenaccc75072016-01-28 21:04:33 +05302578 dev_info(&instance->pdev->dev, "%s:%d no more pending commands remain after reset handling.\n",
2579 __func__, __LINE__);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002580 return SUCCESS;
Sumit Saxenaccc75072016-01-28 21:04:33 +05302581
2582kill_hba_and_failed:
2583
2584 /* Reset not supported, kill adapter */
2585 dev_info(&instance->pdev->dev, "%s:%d killing adapter scsi%d"
2586 " disableOnlineCtrlReset %d fw_outstanding %d \n",
2587 __func__, __LINE__, instance->host->host_no, instance->disableOnlineCtrlReset,
2588 atomic_read(&instance->fw_outstanding));
2589 megasas_dump_pending_frames(instance);
2590 megaraid_sas_kill_hba(instance);
2591
2592 return FAILED;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002593}
2594
2595/**
2596 * megasas_generic_reset - Generic reset routine
2597 * @scmd: Mid-layer SCSI command
2598 *
2599 * This routine implements a generic reset handler for device, bus and host
2600 * reset requests. Device, bus and host specific reset handlers can use this
2601 * function after they do their specific tasks.
2602 */
2603static int megasas_generic_reset(struct scsi_cmnd *scmd)
2604{
2605 int ret_val;
2606 struct megasas_instance *instance;
2607
2608 instance = (struct megasas_instance *)scmd->device->host->hostdata;
2609
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04002610 scmd_printk(KERN_NOTICE, scmd, "megasas: RESET cmd=%x retries=%x\n",
2611 scmd->cmnd[0], scmd->retries);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002612
Sumit Saxena8a01a412016-01-28 21:04:32 +05302613 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002614 dev_err(&instance->pdev->dev, "cannot recover from previous reset failures\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002615 return FAILED;
2616 }
2617
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002618 ret_val = megasas_wait_for_outstanding(instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002619 if (ret_val == SUCCESS)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002620 dev_notice(&instance->pdev->dev, "reset successful\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002621 else
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002622 dev_err(&instance->pdev->dev, "failed to do reset\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002623
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002624 return ret_val;
2625}
2626
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002627/**
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002628 * megasas_reset_timer - quiesce the adapter if required
2629 * @scmd: scsi cmnd
2630 *
2631 * Sets the FW busy flag and reduces the host->can_queue if the
2632 * cmd has not been completed within the timeout period.
2633 */
2634static enum
Jens Axboe242f9dc2008-09-14 05:55:09 -07002635blk_eh_timer_return megasas_reset_timer(struct scsi_cmnd *scmd)
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002636{
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002637 struct megasas_instance *instance;
2638 unsigned long flags;
2639
2640 if (time_after(jiffies, scmd->jiffies_at_alloc +
Sumit Saxenae3d178c2016-01-28 21:04:34 +05302641 (scmd_timeout * 2) * HZ)) {
Jens Axboe242f9dc2008-09-14 05:55:09 -07002642 return BLK_EH_NOT_HANDLED;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002643 }
2644
adam radfordf575c5d2011-10-13 16:01:12 -07002645 instance = (struct megasas_instance *)scmd->device->host->hostdata;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002646 if (!(instance->flag & MEGASAS_FW_BUSY)) {
2647 /* FW is busy, throttle IO */
2648 spin_lock_irqsave(instance->host->host_lock, flags);
2649
adam radfordc5daa6a2012-07-17 18:20:03 -07002650 instance->host->can_queue = instance->throttlequeuedepth;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002651 instance->last_time = jiffies;
2652 instance->flag |= MEGASAS_FW_BUSY;
2653
2654 spin_unlock_irqrestore(instance->host->host_lock, flags);
2655 }
Jens Axboe242f9dc2008-09-14 05:55:09 -07002656 return BLK_EH_RESET_TIMER;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002657}
2658
2659/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002660 * megasas_reset_bus_host - Bus & host reset handler entry point
2661 */
2662static int megasas_reset_bus_host(struct scsi_cmnd *scmd)
2663{
2664 int ret;
adam radford9c915a82010-12-21 13:34:31 -08002665 struct megasas_instance *instance;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002666
adam radford9c915a82010-12-21 13:34:31 -08002667 instance = (struct megasas_instance *)scmd->device->host->hostdata;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002668
2669 /*
Uwe Zeisberger80682fa2006-03-22 00:21:33 +01002670 * First wait for all commands to complete
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002671 */
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05302672 if (instance->ctrl_context)
adam radford229fe472014-03-10 02:51:56 -07002673 ret = megasas_reset_fusion(scmd->device->host, 1);
adam radford9c915a82010-12-21 13:34:31 -08002674 else
2675 ret = megasas_generic_reset(scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002676
2677 return ret;
2678}
2679
2680/**
Sumit Saxenabd23d4a2016-04-15 00:23:32 -07002681 * megasas_task_abort - Issues task abort request to firmware
2682 * (supported only for fusion adapters)
2683 * @scmd: SCSI command pointer
2684 */
2685static int megasas_task_abort(struct scsi_cmnd *scmd)
2686{
2687 int ret;
2688 struct megasas_instance *instance;
2689
2690 instance = (struct megasas_instance *)scmd->device->host->hostdata;
2691
2692 if (instance->ctrl_context)
2693 ret = megasas_task_abort_fusion(scmd);
2694 else {
2695 sdev_printk(KERN_NOTICE, scmd->device, "TASK ABORT not supported\n");
2696 ret = FAILED;
2697 }
2698
2699 return ret;
2700}
2701
2702/**
2703 * megasas_reset_target: Issues target reset request to firmware
2704 * (supported only for fusion adapters)
2705 * @scmd: SCSI command pointer
2706 */
2707static int megasas_reset_target(struct scsi_cmnd *scmd)
2708{
2709 int ret;
2710 struct megasas_instance *instance;
2711
2712 instance = (struct megasas_instance *)scmd->device->host->hostdata;
2713
2714 if (instance->ctrl_context)
2715 ret = megasas_reset_target_fusion(scmd);
2716 else {
2717 sdev_printk(KERN_NOTICE, scmd->device, "TARGET RESET not supported\n");
2718 ret = FAILED;
2719 }
2720
2721 return ret;
2722}
2723
2724/**
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002725 * megasas_bios_param - Returns disk geometry for a disk
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002726 * @sdev: device handle
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002727 * @bdev: block device
2728 * @capacity: drive capacity
2729 * @geom: geometry parameters
2730 */
2731static int
2732megasas_bios_param(struct scsi_device *sdev, struct block_device *bdev,
2733 sector_t capacity, int geom[])
2734{
2735 int heads;
2736 int sectors;
2737 sector_t cylinders;
2738 unsigned long tmp;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002739
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002740 /* Default heads (64) & sectors (32) */
2741 heads = 64;
2742 sectors = 32;
2743
2744 tmp = heads * sectors;
2745 cylinders = capacity;
2746
2747 sector_div(cylinders, tmp);
2748
2749 /*
2750 * Handle extended translation size for logical drives > 1Gb
2751 */
2752
2753 if (capacity >= 0x200000) {
2754 heads = 255;
2755 sectors = 63;
2756 tmp = heads*sectors;
2757 cylinders = capacity;
2758 sector_div(cylinders, tmp);
2759 }
2760
2761 geom[0] = heads;
2762 geom[1] = sectors;
2763 geom[2] = cylinders;
2764
2765 return 0;
2766}
2767
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002768static void megasas_aen_polling(struct work_struct *work);
2769
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002770/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002771 * megasas_service_aen - Processes an event notification
2772 * @instance: Adapter soft state
2773 * @cmd: AEN command completed by the ISR
2774 *
2775 * For AEN, driver sends a command down to FW that is held by the FW till an
2776 * event occurs. When an event of interest occurs, FW completes the command
2777 * that it was previously holding.
2778 *
2779 * This routines sends SIGIO signal to processes that have registered with the
2780 * driver for AEN.
2781 */
2782static void
2783megasas_service_aen(struct megasas_instance *instance, struct megasas_cmd *cmd)
2784{
Yang, Boc3518832009-10-06 14:18:02 -06002785 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002786
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002787 /*
2788 * Don't signal app if it is just an aborted previously registered aen
2789 */
Yang, Boc3518832009-10-06 14:18:02 -06002790 if ((!cmd->abort_aen) && (instance->unload == 0)) {
2791 spin_lock_irqsave(&poll_aen_lock, flags);
2792 megasas_poll_wait_aen = 1;
2793 spin_unlock_irqrestore(&poll_aen_lock, flags);
2794 wake_up(&megasas_poll_wait);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002795 kill_fasync(&megasas_async_queue, SIGIO, POLL_IN);
Yang, Boc3518832009-10-06 14:18:02 -06002796 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002797 else
2798 cmd->abort_aen = 0;
2799
2800 instance->aen_cmd = NULL;
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05302801
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302802 megasas_return_cmd(instance, cmd);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002803
bo yang39a98552010-09-22 22:36:29 -04002804 if ((instance->unload == 0) &&
2805 ((instance->issuepend_done == 1))) {
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002806 struct megasas_aen_event *ev;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002807
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002808 ev = kzalloc(sizeof(*ev), GFP_ATOMIC);
2809 if (!ev) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002810 dev_err(&instance->pdev->dev, "megasas_service_aen: out of memory\n");
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002811 } else {
2812 ev->instance = instance;
2813 instance->ev = ev;
Xiaotian Fengc1d390d82012-12-04 19:33:54 +08002814 INIT_DELAYED_WORK(&ev->hotplug_work,
2815 megasas_aen_polling);
2816 schedule_delayed_work(&ev->hotplug_work, 0);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002817 }
2818 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002819}
2820
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302821static ssize_t
2822megasas_fw_crash_buffer_store(struct device *cdev,
2823 struct device_attribute *attr, const char *buf, size_t count)
2824{
2825 struct Scsi_Host *shost = class_to_shost(cdev);
2826 struct megasas_instance *instance =
2827 (struct megasas_instance *) shost->hostdata;
2828 int val = 0;
2829 unsigned long flags;
2830
2831 if (kstrtoint(buf, 0, &val) != 0)
2832 return -EINVAL;
2833
2834 spin_lock_irqsave(&instance->crashdump_lock, flags);
2835 instance->fw_crash_buffer_offset = val;
2836 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2837 return strlen(buf);
2838}
2839
2840static ssize_t
2841megasas_fw_crash_buffer_show(struct device *cdev,
2842 struct device_attribute *attr, char *buf)
2843{
2844 struct Scsi_Host *shost = class_to_shost(cdev);
2845 struct megasas_instance *instance =
2846 (struct megasas_instance *) shost->hostdata;
2847 u32 size;
2848 unsigned long buff_addr;
2849 unsigned long dmachunk = CRASH_DMA_BUF_SIZE;
2850 unsigned long src_addr;
2851 unsigned long flags;
2852 u32 buff_offset;
2853
2854 spin_lock_irqsave(&instance->crashdump_lock, flags);
2855 buff_offset = instance->fw_crash_buffer_offset;
2856 if (!instance->crash_dump_buf &&
2857 !((instance->fw_crash_state == AVAILABLE) ||
2858 (instance->fw_crash_state == COPYING))) {
2859 dev_err(&instance->pdev->dev,
2860 "Firmware crash dump is not available\n");
2861 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2862 return -EINVAL;
2863 }
2864
2865 buff_addr = (unsigned long) buf;
2866
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002867 if (buff_offset > (instance->fw_crash_buffer_size * dmachunk)) {
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302868 dev_err(&instance->pdev->dev,
2869 "Firmware crash dump offset is out of range\n");
2870 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2871 return 0;
2872 }
2873
2874 size = (instance->fw_crash_buffer_size * dmachunk) - buff_offset;
2875 size = (size >= PAGE_SIZE) ? (PAGE_SIZE - 1) : size;
2876
2877 src_addr = (unsigned long)instance->crash_buf[buff_offset / dmachunk] +
2878 (buff_offset % dmachunk);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002879 memcpy(buf, (void *)src_addr, size);
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302880 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2881
2882 return size;
2883}
2884
2885static ssize_t
2886megasas_fw_crash_buffer_size_show(struct device *cdev,
2887 struct device_attribute *attr, char *buf)
2888{
2889 struct Scsi_Host *shost = class_to_shost(cdev);
2890 struct megasas_instance *instance =
2891 (struct megasas_instance *) shost->hostdata;
2892
2893 return snprintf(buf, PAGE_SIZE, "%ld\n", (unsigned long)
2894 ((instance->fw_crash_buffer_size) * 1024 * 1024)/PAGE_SIZE);
2895}
2896
2897static ssize_t
2898megasas_fw_crash_state_store(struct device *cdev,
2899 struct device_attribute *attr, const char *buf, size_t count)
2900{
2901 struct Scsi_Host *shost = class_to_shost(cdev);
2902 struct megasas_instance *instance =
2903 (struct megasas_instance *) shost->hostdata;
2904 int val = 0;
2905 unsigned long flags;
2906
2907 if (kstrtoint(buf, 0, &val) != 0)
2908 return -EINVAL;
2909
2910 if ((val <= AVAILABLE || val > COPY_ERROR)) {
2911 dev_err(&instance->pdev->dev, "application updates invalid "
2912 "firmware crash state\n");
2913 return -EINVAL;
2914 }
2915
2916 instance->fw_crash_state = val;
2917
2918 if ((val == COPIED) || (val == COPY_ERROR)) {
2919 spin_lock_irqsave(&instance->crashdump_lock, flags);
2920 megasas_free_host_crash_buffer(instance);
2921 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2922 if (val == COPY_ERROR)
2923 dev_info(&instance->pdev->dev, "application failed to "
2924 "copy Firmware crash dump\n");
2925 else
2926 dev_info(&instance->pdev->dev, "Firmware crash dump "
2927 "copied successfully\n");
2928 }
2929 return strlen(buf);
2930}
2931
2932static ssize_t
2933megasas_fw_crash_state_show(struct device *cdev,
2934 struct device_attribute *attr, char *buf)
2935{
2936 struct Scsi_Host *shost = class_to_shost(cdev);
2937 struct megasas_instance *instance =
2938 (struct megasas_instance *) shost->hostdata;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002939
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302940 return snprintf(buf, PAGE_SIZE, "%d\n", instance->fw_crash_state);
2941}
2942
2943static ssize_t
2944megasas_page_size_show(struct device *cdev,
2945 struct device_attribute *attr, char *buf)
2946{
2947 return snprintf(buf, PAGE_SIZE, "%ld\n", (unsigned long)PAGE_SIZE - 1);
2948}
2949
Sumit Saxena308ec452016-01-28 21:04:30 +05302950static ssize_t
2951megasas_ldio_outstanding_show(struct device *cdev, struct device_attribute *attr,
2952 char *buf)
2953{
2954 struct Scsi_Host *shost = class_to_shost(cdev);
2955 struct megasas_instance *instance = (struct megasas_instance *)shost->hostdata;
2956
2957 return snprintf(buf, PAGE_SIZE, "%d\n", atomic_read(&instance->ldio_outstanding));
2958}
2959
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302960static DEVICE_ATTR(fw_crash_buffer, S_IRUGO | S_IWUSR,
2961 megasas_fw_crash_buffer_show, megasas_fw_crash_buffer_store);
2962static DEVICE_ATTR(fw_crash_buffer_size, S_IRUGO,
2963 megasas_fw_crash_buffer_size_show, NULL);
2964static DEVICE_ATTR(fw_crash_state, S_IRUGO | S_IWUSR,
2965 megasas_fw_crash_state_show, megasas_fw_crash_state_store);
2966static DEVICE_ATTR(page_size, S_IRUGO,
2967 megasas_page_size_show, NULL);
Sumit Saxena308ec452016-01-28 21:04:30 +05302968static DEVICE_ATTR(ldio_outstanding, S_IRUGO,
2969 megasas_ldio_outstanding_show, NULL);
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302970
2971struct device_attribute *megaraid_host_attrs[] = {
2972 &dev_attr_fw_crash_buffer_size,
2973 &dev_attr_fw_crash_buffer,
2974 &dev_attr_fw_crash_state,
2975 &dev_attr_page_size,
Sumit Saxena308ec452016-01-28 21:04:30 +05302976 &dev_attr_ldio_outstanding,
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302977 NULL,
2978};
2979
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002980/*
2981 * Scsi host template for megaraid_sas driver
2982 */
2983static struct scsi_host_template megasas_template = {
2984
2985 .module = THIS_MODULE,
Sumit.Saxena@avagotech.com43cd7fe2015-04-23 16:31:39 +05302986 .name = "Avago SAS based MegaRAID driver",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002987 .proc_name = "megaraid_sas",
Christoph Hellwig147aab62006-02-17 12:13:48 +01002988 .slave_configure = megasas_slave_configure,
Yang, Bo044833b2009-10-06 14:33:06 -06002989 .slave_alloc = megasas_slave_alloc,
Sumit Saxena18365b12016-01-28 21:04:25 +05302990 .slave_destroy = megasas_slave_destroy,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002991 .queuecommand = megasas_queue_command,
Sumit Saxenabd23d4a2016-04-15 00:23:32 -07002992 .eh_target_reset_handler = megasas_reset_target,
2993 .eh_abort_handler = megasas_task_abort,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002994 .eh_host_reset_handler = megasas_reset_bus_host,
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002995 .eh_timed_out = megasas_reset_timer,
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302996 .shost_attrs = megaraid_host_attrs,
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002997 .bios_param = megasas_bios_param,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002998 .use_clustering = ENABLE_CLUSTERING,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002999 .change_queue_depth = scsi_change_queue_depth,
Martin K. Petersen54b2b502013-10-23 06:25:40 -04003000 .no_write_same = 1,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003001};
3002
3003/**
3004 * megasas_complete_int_cmd - Completes an internal command
3005 * @instance: Adapter soft state
3006 * @cmd: Command to be completed
3007 *
3008 * The megasas_issue_blocked_cmd() function waits for a command to complete
3009 * after it issues a command. This function wakes up that waiting routine by
3010 * calling wake_up() on the wait queue.
3011 */
3012static void
3013megasas_complete_int_cmd(struct megasas_instance *instance,
3014 struct megasas_cmd *cmd)
3015{
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05303016 cmd->cmd_status_drv = cmd->frame->io.cmd_status;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003017 wake_up(&instance->int_cmd_wait_q);
3018}
3019
3020/**
3021 * megasas_complete_abort - Completes aborting a command
3022 * @instance: Adapter soft state
3023 * @cmd: Cmd that was issued to abort another cmd
3024 *
adam radford0d490162010-12-14 19:17:17 -08003025 * The megasas_issue_blocked_abort_cmd() function waits on abort_cmd_wait_q
3026 * after it issues an abort on a previously issued command. This function
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003027 * wakes up all functions waiting on the same wait queue.
3028 */
3029static void
3030megasas_complete_abort(struct megasas_instance *instance,
3031 struct megasas_cmd *cmd)
3032{
3033 if (cmd->sync_cmd) {
3034 cmd->sync_cmd = 0;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05303035 cmd->cmd_status_drv = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003036 wake_up(&instance->abort_cmd_wait_q);
3037 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003038}
3039
3040/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003041 * megasas_complete_cmd - Completes a command
3042 * @instance: Adapter soft state
3043 * @cmd: Command to be completed
adam radford0d490162010-12-14 19:17:17 -08003044 * @alt_status: If non-zero, use this value as status to
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003045 * SCSI mid-layer instead of the value returned
3046 * by the FW. This should be used if caller wants
3047 * an alternate status (as in the case of aborted
3048 * commands)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003049 */
adam radford9c915a82010-12-21 13:34:31 -08003050void
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003051megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd,
3052 u8 alt_status)
3053{
3054 int exception = 0;
3055 struct megasas_header *hdr = &cmd->frame->hdr;
Yang, Boc3518832009-10-06 14:18:02 -06003056 unsigned long flags;
adam radford9c915a82010-12-21 13:34:31 -08003057 struct fusion_context *fusion = instance->ctrl_context;
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05303058 u32 opcode, status;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003059
bo yang39a98552010-09-22 22:36:29 -04003060 /* flag for the retry reset */
3061 cmd->retry_for_fw_reset = 0;
3062
Sumant Patro05e9ebb2007-05-17 05:47:51 -07003063 if (cmd->scmd)
3064 cmd->scmd->SCp.ptr = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003065
3066 switch (hdr->cmd) {
adam radforde5f93a32011-10-08 18:15:19 -07003067 case MFI_CMD_INVALID:
3068 /* Some older 1068 controller FW may keep a pended
3069 MR_DCMD_CTRL_EVENT_GET_INFO left over from the main kernel
3070 when booting the kdump kernel. Ignore this command to
3071 prevent a kernel panic on shutdown of the kdump kernel. */
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003072 dev_warn(&instance->pdev->dev, "MFI_CMD_INVALID command "
3073 "completed\n");
3074 dev_warn(&instance->pdev->dev, "If you have a controller "
3075 "other than PERC5, please upgrade your firmware\n");
adam radforde5f93a32011-10-08 18:15:19 -07003076 break;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003077 case MFI_CMD_PD_SCSI_IO:
3078 case MFI_CMD_LD_SCSI_IO:
3079
3080 /*
3081 * MFI_CMD_PD_SCSI_IO and MFI_CMD_LD_SCSI_IO could have been
3082 * issued either through an IO path or an IOCTL path. If it
3083 * was via IOCTL, we will send it to internal completion.
3084 */
3085 if (cmd->sync_cmd) {
3086 cmd->sync_cmd = 0;
3087 megasas_complete_int_cmd(instance, cmd);
3088 break;
3089 }
3090
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003091 case MFI_CMD_LD_READ:
3092 case MFI_CMD_LD_WRITE:
3093
3094 if (alt_status) {
3095 cmd->scmd->result = alt_status << 16;
3096 exception = 1;
3097 }
3098
3099 if (exception) {
3100
Sumant Patroe4a082c2006-05-30 12:03:37 -07003101 atomic_dec(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003102
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09003103 scsi_dma_unmap(cmd->scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003104 cmd->scmd->scsi_done(cmd->scmd);
3105 megasas_return_cmd(instance, cmd);
3106
3107 break;
3108 }
3109
3110 switch (hdr->cmd_status) {
3111
3112 case MFI_STAT_OK:
3113 cmd->scmd->result = DID_OK << 16;
3114 break;
3115
3116 case MFI_STAT_SCSI_IO_FAILED:
3117 case MFI_STAT_LD_INIT_IN_PROGRESS:
3118 cmd->scmd->result =
3119 (DID_ERROR << 16) | hdr->scsi_status;
3120 break;
3121
3122 case MFI_STAT_SCSI_DONE_WITH_ERROR:
3123
3124 cmd->scmd->result = (DID_OK << 16) | hdr->scsi_status;
3125
3126 if (hdr->scsi_status == SAM_STAT_CHECK_CONDITION) {
3127 memset(cmd->scmd->sense_buffer, 0,
3128 SCSI_SENSE_BUFFERSIZE);
3129 memcpy(cmd->scmd->sense_buffer, cmd->sense,
3130 hdr->sense_len);
3131
3132 cmd->scmd->result |= DRIVER_SENSE << 24;
3133 }
3134
3135 break;
3136
3137 case MFI_STAT_LD_OFFLINE:
3138 case MFI_STAT_DEVICE_NOT_FOUND:
3139 cmd->scmd->result = DID_BAD_TARGET << 16;
3140 break;
3141
3142 default:
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003143 dev_printk(KERN_DEBUG, &instance->pdev->dev, "MFI FW status %#x\n",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003144 hdr->cmd_status);
3145 cmd->scmd->result = DID_ERROR << 16;
3146 break;
3147 }
3148
Sumant Patroe4a082c2006-05-30 12:03:37 -07003149 atomic_dec(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003150
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09003151 scsi_dma_unmap(cmd->scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003152 cmd->scmd->scsi_done(cmd->scmd);
3153 megasas_return_cmd(instance, cmd);
3154
3155 break;
3156
3157 case MFI_CMD_SMP:
3158 case MFI_CMD_STP:
3159 case MFI_CMD_DCMD:
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303160 opcode = le32_to_cpu(cmd->frame->dcmd.opcode);
adam radford9c915a82010-12-21 13:34:31 -08003161 /* Check for LD map update */
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303162 if ((opcode == MR_DCMD_LD_MAP_GET_INFO)
3163 && (cmd->frame->dcmd.mbox.b[1] == 1)) {
Sumit.Saxena@lsi.combc93d422013-05-22 12:35:04 +05303164 fusion->fast_path_io = 0;
adam radford9c915a82010-12-21 13:34:31 -08003165 spin_lock_irqsave(instance->host->host_lock, flags);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05303166 instance->map_update_cmd = NULL;
adam radford9c915a82010-12-21 13:34:31 -08003167 if (cmd->frame->hdr.cmd_status != 0) {
3168 if (cmd->frame->hdr.cmd_status !=
3169 MFI_STAT_NOT_FOUND)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003170 dev_warn(&instance->pdev->dev, "map syncfailed, status = 0x%x\n",
adam radford9c915a82010-12-21 13:34:31 -08003171 cmd->frame->hdr.cmd_status);
3172 else {
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05303173 megasas_return_cmd(instance, cmd);
adam radford9c915a82010-12-21 13:34:31 -08003174 spin_unlock_irqrestore(
3175 instance->host->host_lock,
3176 flags);
3177 break;
3178 }
3179 } else
3180 instance->map_id++;
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05303181 megasas_return_cmd(instance, cmd);
Sumit.Saxena@lsi.combc93d422013-05-22 12:35:04 +05303182
3183 /*
3184 * Set fast path IO to ZERO.
3185 * Validate Map will set proper value.
3186 * Meanwhile all IOs will go as LD IO.
3187 */
3188 if (MR_ValidateMapInfo(instance))
adam radford9c915a82010-12-21 13:34:31 -08003189 fusion->fast_path_io = 1;
3190 else
3191 fusion->fast_path_io = 0;
3192 megasas_sync_map_info(instance);
3193 spin_unlock_irqrestore(instance->host->host_lock,
3194 flags);
3195 break;
3196 }
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303197 if (opcode == MR_DCMD_CTRL_EVENT_GET_INFO ||
3198 opcode == MR_DCMD_CTRL_EVENT_GET) {
Yang, Boc3518832009-10-06 14:18:02 -06003199 spin_lock_irqsave(&poll_aen_lock, flags);
3200 megasas_poll_wait_aen = 0;
3201 spin_unlock_irqrestore(&poll_aen_lock, flags);
3202 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003203
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05303204 /* FW has an updated PD sequence */
3205 if ((opcode == MR_DCMD_SYSTEM_PD_MAP_GET_INFO) &&
3206 (cmd->frame->dcmd.mbox.b[0] == 1)) {
3207
3208 spin_lock_irqsave(instance->host->host_lock, flags);
3209 status = cmd->frame->hdr.cmd_status;
3210 instance->jbod_seq_cmd = NULL;
3211 megasas_return_cmd(instance, cmd);
3212
3213 if (status == MFI_STAT_OK) {
3214 instance->pd_seq_map_id++;
3215 /* Re-register a pd sync seq num cmd */
3216 if (megasas_sync_pd_seq_num(instance, true))
3217 instance->use_seqnum_jbod_fp = false;
3218 } else
3219 instance->use_seqnum_jbod_fp = false;
3220
3221 spin_unlock_irqrestore(instance->host->host_lock, flags);
3222 break;
3223 }
3224
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003225 /*
3226 * See if got an event notification
3227 */
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303228 if (opcode == MR_DCMD_CTRL_EVENT_WAIT)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003229 megasas_service_aen(instance, cmd);
3230 else
3231 megasas_complete_int_cmd(instance, cmd);
3232
3233 break;
3234
3235 case MFI_CMD_ABORT:
3236 /*
3237 * Cmd issued to abort another cmd returned
3238 */
3239 megasas_complete_abort(instance, cmd);
3240 break;
3241
3242 default:
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003243 dev_info(&instance->pdev->dev, "Unknown command completed! [0x%X]\n",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003244 hdr->cmd);
3245 break;
3246 }
3247}
3248
3249/**
bo yang39a98552010-09-22 22:36:29 -04003250 * megasas_issue_pending_cmds_again - issue all pending cmds
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003251 * in FW again because of the fw reset
bo yang39a98552010-09-22 22:36:29 -04003252 * @instance: Adapter soft state
3253 */
3254static inline void
3255megasas_issue_pending_cmds_again(struct megasas_instance *instance)
3256{
3257 struct megasas_cmd *cmd;
3258 struct list_head clist_local;
3259 union megasas_evt_class_locale class_locale;
3260 unsigned long flags;
3261 u32 seq_num;
3262
3263 INIT_LIST_HEAD(&clist_local);
3264 spin_lock_irqsave(&instance->hba_lock, flags);
3265 list_splice_init(&instance->internal_reset_pending_q, &clist_local);
3266 spin_unlock_irqrestore(&instance->hba_lock, flags);
3267
3268 while (!list_empty(&clist_local)) {
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003269 cmd = list_entry((&clist_local)->next,
bo yang39a98552010-09-22 22:36:29 -04003270 struct megasas_cmd, list);
3271 list_del_init(&cmd->list);
3272
3273 if (cmd->sync_cmd || cmd->scmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003274 dev_notice(&instance->pdev->dev, "command %p, %p:%d"
3275 "detected to be pending while HBA reset\n",
bo yang39a98552010-09-22 22:36:29 -04003276 cmd, cmd->scmd, cmd->sync_cmd);
3277
3278 cmd->retry_for_fw_reset++;
3279
3280 if (cmd->retry_for_fw_reset == 3) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003281 dev_notice(&instance->pdev->dev, "cmd %p, %p:%d"
bo yang39a98552010-09-22 22:36:29 -04003282 "was tried multiple times during reset."
3283 "Shutting down the HBA\n",
3284 cmd, cmd->scmd, cmd->sync_cmd);
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05303285 instance->instancet->disable_intr(instance);
3286 atomic_set(&instance->fw_reset_no_pci_access, 1);
bo yang39a98552010-09-22 22:36:29 -04003287 megaraid_sas_kill_hba(instance);
bo yang39a98552010-09-22 22:36:29 -04003288 return;
3289 }
3290 }
3291
3292 if (cmd->sync_cmd == 1) {
3293 if (cmd->scmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003294 dev_notice(&instance->pdev->dev, "unexpected"
bo yang39a98552010-09-22 22:36:29 -04003295 "cmd attached to internal command!\n");
3296 }
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003297 dev_notice(&instance->pdev->dev, "%p synchronous cmd"
bo yang39a98552010-09-22 22:36:29 -04003298 "on the internal reset queue,"
3299 "issue it again.\n", cmd);
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05303300 cmd->cmd_status_drv = MFI_STAT_INVALID_STATUS;
bo yang39a98552010-09-22 22:36:29 -04003301 instance->instancet->fire_cmd(instance,
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003302 cmd->frame_phys_addr,
bo yang39a98552010-09-22 22:36:29 -04003303 0, instance->reg_set);
3304 } else if (cmd->scmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003305 dev_notice(&instance->pdev->dev, "%p scsi cmd [%02x]"
bo yang39a98552010-09-22 22:36:29 -04003306 "detected on the internal queue, issue again.\n",
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04003307 cmd, cmd->scmd->cmnd[0]);
bo yang39a98552010-09-22 22:36:29 -04003308
3309 atomic_inc(&instance->fw_outstanding);
3310 instance->instancet->fire_cmd(instance,
3311 cmd->frame_phys_addr,
3312 cmd->frame_count-1, instance->reg_set);
3313 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003314 dev_notice(&instance->pdev->dev, "%p unexpected cmd on the"
bo yang39a98552010-09-22 22:36:29 -04003315 "internal reset defer list while re-issue!!\n",
3316 cmd);
3317 }
3318 }
3319
3320 if (instance->aen_cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003321 dev_notice(&instance->pdev->dev, "aen_cmd in def process\n");
bo yang39a98552010-09-22 22:36:29 -04003322 megasas_return_cmd(instance, instance->aen_cmd);
3323
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003324 instance->aen_cmd = NULL;
bo yang39a98552010-09-22 22:36:29 -04003325 }
3326
3327 /*
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003328 * Initiate AEN (Asynchronous Event Notification)
3329 */
bo yang39a98552010-09-22 22:36:29 -04003330 seq_num = instance->last_seq_num;
3331 class_locale.members.reserved = 0;
3332 class_locale.members.locale = MR_EVT_LOCALE_ALL;
3333 class_locale.members.class = MR_EVT_CLASS_DEBUG;
3334
3335 megasas_register_aen(instance, seq_num, class_locale.word);
3336}
3337
3338/**
3339 * Move the internal reset pending commands to a deferred queue.
3340 *
3341 * We move the commands pending at internal reset time to a
3342 * pending queue. This queue would be flushed after successful
3343 * completion of the internal reset sequence. if the internal reset
3344 * did not complete in time, the kernel reset handler would flush
3345 * these commands.
3346 **/
3347static void
3348megasas_internal_reset_defer_cmds(struct megasas_instance *instance)
3349{
3350 struct megasas_cmd *cmd;
3351 int i;
3352 u32 max_cmd = instance->max_fw_cmds;
3353 u32 defer_index;
3354 unsigned long flags;
3355
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003356 defer_index = 0;
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05303357 spin_lock_irqsave(&instance->mfi_pool_lock, flags);
bo yang39a98552010-09-22 22:36:29 -04003358 for (i = 0; i < max_cmd; i++) {
3359 cmd = instance->cmd_list[i];
3360 if (cmd->sync_cmd == 1 || cmd->scmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003361 dev_notice(&instance->pdev->dev, "moving cmd[%d]:%p:%d:%p"
bo yang39a98552010-09-22 22:36:29 -04003362 "on the defer queue as internal\n",
3363 defer_index, cmd, cmd->sync_cmd, cmd->scmd);
3364
3365 if (!list_empty(&cmd->list)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003366 dev_notice(&instance->pdev->dev, "ERROR while"
bo yang39a98552010-09-22 22:36:29 -04003367 " moving this cmd:%p, %d %p, it was"
3368 "discovered on some list?\n",
3369 cmd, cmd->sync_cmd, cmd->scmd);
3370
3371 list_del_init(&cmd->list);
3372 }
3373 defer_index++;
3374 list_add_tail(&cmd->list,
3375 &instance->internal_reset_pending_q);
3376 }
3377 }
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05303378 spin_unlock_irqrestore(&instance->mfi_pool_lock, flags);
bo yang39a98552010-09-22 22:36:29 -04003379}
3380
3381
3382static void
3383process_fw_state_change_wq(struct work_struct *work)
3384{
3385 struct megasas_instance *instance =
3386 container_of(work, struct megasas_instance, work_init);
3387 u32 wait;
3388 unsigned long flags;
3389
Sumit Saxena8a01a412016-01-28 21:04:32 +05303390 if (atomic_read(&instance->adprecovery) != MEGASAS_ADPRESET_SM_INFAULT) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003391 dev_notice(&instance->pdev->dev, "error, recovery st %x\n",
Sumit Saxena8a01a412016-01-28 21:04:32 +05303392 atomic_read(&instance->adprecovery));
bo yang39a98552010-09-22 22:36:29 -04003393 return ;
3394 }
3395
Sumit Saxena8a01a412016-01-28 21:04:32 +05303396 if (atomic_read(&instance->adprecovery) == MEGASAS_ADPRESET_SM_INFAULT) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003397 dev_notice(&instance->pdev->dev, "FW detected to be in fault"
bo yang39a98552010-09-22 22:36:29 -04003398 "state, restarting it...\n");
3399
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05303400 instance->instancet->disable_intr(instance);
bo yang39a98552010-09-22 22:36:29 -04003401 atomic_set(&instance->fw_outstanding, 0);
3402
3403 atomic_set(&instance->fw_reset_no_pci_access, 1);
3404 instance->instancet->adp_reset(instance, instance->reg_set);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003405 atomic_set(&instance->fw_reset_no_pci_access, 0);
bo yang39a98552010-09-22 22:36:29 -04003406
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003407 dev_notice(&instance->pdev->dev, "FW restarted successfully,"
bo yang39a98552010-09-22 22:36:29 -04003408 "initiating next stage...\n");
3409
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003410 dev_notice(&instance->pdev->dev, "HBA recovery state machine,"
bo yang39a98552010-09-22 22:36:29 -04003411 "state 2 starting...\n");
3412
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003413 /* waiting for about 20 second before start the second init */
bo yang39a98552010-09-22 22:36:29 -04003414 for (wait = 0; wait < 30; wait++) {
3415 msleep(1000);
3416 }
3417
adam radford058a8fa2011-10-08 18:14:27 -07003418 if (megasas_transition_to_ready(instance, 1)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003419 dev_notice(&instance->pdev->dev, "adapter not ready\n");
bo yang39a98552010-09-22 22:36:29 -04003420
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05303421 atomic_set(&instance->fw_reset_no_pci_access, 1);
bo yang39a98552010-09-22 22:36:29 -04003422 megaraid_sas_kill_hba(instance);
bo yang39a98552010-09-22 22:36:29 -04003423 return ;
3424 }
3425
3426 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1064R) ||
3427 (instance->pdev->device == PCI_DEVICE_ID_DELL_PERC5) ||
3428 (instance->pdev->device == PCI_DEVICE_ID_LSI_VERDE_ZCR)
3429 ) {
3430 *instance->consumer = *instance->producer;
3431 } else {
3432 *instance->consumer = 0;
3433 *instance->producer = 0;
3434 }
3435
3436 megasas_issue_init_mfi(instance);
3437
3438 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05303439 atomic_set(&instance->adprecovery, MEGASAS_HBA_OPERATIONAL);
bo yang39a98552010-09-22 22:36:29 -04003440 spin_unlock_irqrestore(&instance->hba_lock, flags);
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05303441 instance->instancet->enable_intr(instance);
bo yang39a98552010-09-22 22:36:29 -04003442
3443 megasas_issue_pending_cmds_again(instance);
3444 instance->issuepend_done = 1;
3445 }
bo yang39a98552010-09-22 22:36:29 -04003446}
3447
3448/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003449 * megasas_deplete_reply_queue - Processes all completed commands
3450 * @instance: Adapter soft state
3451 * @alt_status: Alternate status to be returned to
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003452 * SCSI mid-layer instead of the status
3453 * returned by the FW
bo yang39a98552010-09-22 22:36:29 -04003454 * Note: this must be called with hba lock held
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003455 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003456static int
bo yang39a98552010-09-22 22:36:29 -04003457megasas_deplete_reply_queue(struct megasas_instance *instance,
3458 u8 alt_status)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003459{
bo yang39a98552010-09-22 22:36:29 -04003460 u32 mfiStatus;
3461 u32 fw_state;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003462
bo yang39a98552010-09-22 22:36:29 -04003463 if ((mfiStatus = instance->instancet->check_reset(instance,
3464 instance->reg_set)) == 1) {
3465 return IRQ_HANDLED;
3466 }
3467
3468 if ((mfiStatus = instance->instancet->clear_intr(
3469 instance->reg_set)
3470 ) == 0) {
adam radforde1419192011-02-24 20:56:21 -08003471 /* Hardware may not set outbound_intr_status in MSI-X mode */
adam radfordc8e858f2011-10-08 18:15:13 -07003472 if (!instance->msix_vectors)
adam radforde1419192011-02-24 20:56:21 -08003473 return IRQ_NONE;
bo yang39a98552010-09-22 22:36:29 -04003474 }
3475
3476 instance->mfiStatus = mfiStatus;
3477
3478 if ((mfiStatus & MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE)) {
3479 fw_state = instance->instancet->read_fw_status_reg(
3480 instance->reg_set) & MFI_STATE_MASK;
3481
3482 if (fw_state != MFI_STATE_FAULT) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003483 dev_notice(&instance->pdev->dev, "fw state:%x\n",
bo yang39a98552010-09-22 22:36:29 -04003484 fw_state);
3485 }
3486
3487 if ((fw_state == MFI_STATE_FAULT) &&
3488 (instance->disableOnlineCtrlReset == 0)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003489 dev_notice(&instance->pdev->dev, "wait adp restart\n");
bo yang39a98552010-09-22 22:36:29 -04003490
3491 if ((instance->pdev->device ==
3492 PCI_DEVICE_ID_LSI_SAS1064R) ||
3493 (instance->pdev->device ==
3494 PCI_DEVICE_ID_DELL_PERC5) ||
3495 (instance->pdev->device ==
3496 PCI_DEVICE_ID_LSI_VERDE_ZCR)) {
3497
3498 *instance->consumer =
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303499 cpu_to_le32(MEGASAS_ADPRESET_INPROG_SIGN);
bo yang39a98552010-09-22 22:36:29 -04003500 }
3501
3502
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05303503 instance->instancet->disable_intr(instance);
Sumit Saxena8a01a412016-01-28 21:04:32 +05303504 atomic_set(&instance->adprecovery, MEGASAS_ADPRESET_SM_INFAULT);
bo yang39a98552010-09-22 22:36:29 -04003505 instance->issuepend_done = 0;
3506
3507 atomic_set(&instance->fw_outstanding, 0);
3508 megasas_internal_reset_defer_cmds(instance);
3509
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003510 dev_notice(&instance->pdev->dev, "fwState=%x, stage:%d\n",
Sumit Saxena8a01a412016-01-28 21:04:32 +05303511 fw_state, atomic_read(&instance->adprecovery));
bo yang39a98552010-09-22 22:36:29 -04003512
3513 schedule_work(&instance->work_init);
3514 return IRQ_HANDLED;
3515
3516 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003517 dev_notice(&instance->pdev->dev, "fwstate:%x, dis_OCR=%x\n",
bo yang39a98552010-09-22 22:36:29 -04003518 fw_state, instance->disableOnlineCtrlReset);
3519 }
3520 }
3521
Sumant Patro5d018ad2006-10-03 13:13:18 -07003522 tasklet_schedule(&instance->isr_tasklet);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003523 return IRQ_HANDLED;
3524}
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003525/**
3526 * megasas_isr - isr entry point
3527 */
David Howells7d12e782006-10-05 14:55:46 +01003528static irqreturn_t megasas_isr(int irq, void *devp)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003529{
adam radfordc8e858f2011-10-08 18:15:13 -07003530 struct megasas_irq_context *irq_context = devp;
3531 struct megasas_instance *instance = irq_context->instance;
bo yang39a98552010-09-22 22:36:29 -04003532 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003533 irqreturn_t rc;
bo yang39a98552010-09-22 22:36:29 -04003534
adam radfordc8e858f2011-10-08 18:15:13 -07003535 if (atomic_read(&instance->fw_reset_no_pci_access))
bo yang39a98552010-09-22 22:36:29 -04003536 return IRQ_HANDLED;
3537
bo yang39a98552010-09-22 22:36:29 -04003538 spin_lock_irqsave(&instance->hba_lock, flags);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003539 rc = megasas_deplete_reply_queue(instance, DID_OK);
bo yang39a98552010-09-22 22:36:29 -04003540 spin_unlock_irqrestore(&instance->hba_lock, flags);
3541
3542 return rc;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003543}
3544
3545/**
3546 * megasas_transition_to_ready - Move the FW to READY state
Sumant Patro1341c932006-01-25 12:02:40 -08003547 * @instance: Adapter soft state
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003548 *
3549 * During the initialization, FW passes can potentially be in any one of
3550 * several possible states. If the FW in operational, waiting-for-handshake
3551 * states, driver must take steps to bring it to ready state. Otherwise, it
3552 * has to wait for the ready state.
3553 */
adam radford9c915a82010-12-21 13:34:31 -08003554int
adam radford058a8fa2011-10-08 18:14:27 -07003555megasas_transition_to_ready(struct megasas_instance *instance, int ocr)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003556{
3557 int i;
3558 u8 max_wait;
3559 u32 fw_state;
3560 u32 cur_state;
Yang, Bo7218df62009-10-06 14:52:20 -06003561 u32 abs_state, curr_abs_state;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003562
Tomas Henzlbc6ac5e2014-04-01 13:59:50 +02003563 abs_state = instance->instancet->read_fw_status_reg(instance->reg_set);
3564 fw_state = abs_state & MFI_STATE_MASK;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003565
Sumant Patroe3bbff92006-10-03 12:28:49 -07003566 if (fw_state != MFI_STATE_READY)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003567 dev_info(&instance->pdev->dev, "Waiting for FW to come to ready"
adam radford0d490162010-12-14 19:17:17 -08003568 " state\n");
Sumant Patroe3bbff92006-10-03 12:28:49 -07003569
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003570 while (fw_state != MFI_STATE_READY) {
3571
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003572 switch (fw_state) {
3573
3574 case MFI_STATE_FAULT:
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003575 dev_printk(KERN_DEBUG, &instance->pdev->dev, "FW in FAULT state!!\n");
adam radford058a8fa2011-10-08 18:14:27 -07003576 if (ocr) {
3577 max_wait = MEGASAS_RESET_WAIT_TIME;
3578 cur_state = MFI_STATE_FAULT;
3579 break;
3580 } else
3581 return -ENODEV;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003582
3583 case MFI_STATE_WAIT_HANDSHAKE:
3584 /*
3585 * Set the CLR bit in inbound doorbell
3586 */
Yang, Bo0c79e682009-10-06 14:47:35 -06003587 if ((instance->pdev->device ==
Yang, Bo87911122009-10-06 14:31:54 -06003588 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
3589 (instance->pdev->device ==
adam radford9c915a82010-12-21 13:34:31 -08003590 PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303591 (instance->ctrl_context))
Yang, Bo87911122009-10-06 14:31:54 -06003592 writel(
3593 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
adam radford9c915a82010-12-21 13:34:31 -08003594 &instance->reg_set->doorbell);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303595 else
Yang, Bo87911122009-10-06 14:31:54 -06003596 writel(
3597 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
3598 &instance->reg_set->inbound_doorbell);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003599
Yang, Bo7218df62009-10-06 14:52:20 -06003600 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003601 cur_state = MFI_STATE_WAIT_HANDSHAKE;
3602 break;
3603
Sumant Patroe3bbff92006-10-03 12:28:49 -07003604 case MFI_STATE_BOOT_MESSAGE_PENDING:
Yang, Bo87911122009-10-06 14:31:54 -06003605 if ((instance->pdev->device ==
adam radford9c915a82010-12-21 13:34:31 -08003606 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
3607 (instance->pdev->device ==
3608 PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303609 (instance->ctrl_context))
Yang, Bo87911122009-10-06 14:31:54 -06003610 writel(MFI_INIT_HOTPLUG,
adam radford9c915a82010-12-21 13:34:31 -08003611 &instance->reg_set->doorbell);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303612 else
Yang, Bo87911122009-10-06 14:31:54 -06003613 writel(MFI_INIT_HOTPLUG,
3614 &instance->reg_set->inbound_doorbell);
Sumant Patroe3bbff92006-10-03 12:28:49 -07003615
Yang, Bo7218df62009-10-06 14:52:20 -06003616 max_wait = MEGASAS_RESET_WAIT_TIME;
Sumant Patroe3bbff92006-10-03 12:28:49 -07003617 cur_state = MFI_STATE_BOOT_MESSAGE_PENDING;
3618 break;
3619
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003620 case MFI_STATE_OPERATIONAL:
3621 /*
Sumant Patroe3bbff92006-10-03 12:28:49 -07003622 * Bring it to READY state; assuming max wait 10 secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003623 */
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05303624 instance->instancet->disable_intr(instance);
Yang, Bo87911122009-10-06 14:31:54 -06003625 if ((instance->pdev->device ==
3626 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
3627 (instance->pdev->device ==
adam radford9c915a82010-12-21 13:34:31 -08003628 PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303629 (instance->ctrl_context)) {
Yang, Bo87911122009-10-06 14:31:54 -06003630 writel(MFI_RESET_FLAGS,
adam radford9c915a82010-12-21 13:34:31 -08003631 &instance->reg_set->doorbell);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303632
3633 if (instance->ctrl_context) {
adam radford9c915a82010-12-21 13:34:31 -08003634 for (i = 0; i < (10 * 1000); i += 20) {
3635 if (readl(
3636 &instance->
3637 reg_set->
3638 doorbell) & 1)
3639 msleep(20);
3640 else
3641 break;
3642 }
3643 }
Yang, Bo87911122009-10-06 14:31:54 -06003644 } else
3645 writel(MFI_RESET_FLAGS,
3646 &instance->reg_set->inbound_doorbell);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003647
Yang, Bo7218df62009-10-06 14:52:20 -06003648 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003649 cur_state = MFI_STATE_OPERATIONAL;
3650 break;
3651
3652 case MFI_STATE_UNDEFINED:
3653 /*
3654 * This state should not last for more than 2 seconds
3655 */
Yang, Bo7218df62009-10-06 14:52:20 -06003656 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003657 cur_state = MFI_STATE_UNDEFINED;
3658 break;
3659
3660 case MFI_STATE_BB_INIT:
Yang, Bo7218df62009-10-06 14:52:20 -06003661 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003662 cur_state = MFI_STATE_BB_INIT;
3663 break;
3664
3665 case MFI_STATE_FW_INIT:
Yang, Bo7218df62009-10-06 14:52:20 -06003666 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003667 cur_state = MFI_STATE_FW_INIT;
3668 break;
3669
3670 case MFI_STATE_FW_INIT_2:
Yang, Bo7218df62009-10-06 14:52:20 -06003671 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003672 cur_state = MFI_STATE_FW_INIT_2;
3673 break;
3674
3675 case MFI_STATE_DEVICE_SCAN:
Yang, Bo7218df62009-10-06 14:52:20 -06003676 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003677 cur_state = MFI_STATE_DEVICE_SCAN;
3678 break;
3679
3680 case MFI_STATE_FLUSH_CACHE:
Yang, Bo7218df62009-10-06 14:52:20 -06003681 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003682 cur_state = MFI_STATE_FLUSH_CACHE;
3683 break;
3684
3685 default:
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003686 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Unknown state 0x%x\n",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003687 fw_state);
3688 return -ENODEV;
3689 }
3690
3691 /*
3692 * The cur_state should not last for more than max_wait secs
3693 */
3694 for (i = 0; i < (max_wait * 1000); i++) {
Tomas Henzlbc6ac5e2014-04-01 13:59:50 +02003695 curr_abs_state = instance->instancet->
3696 read_fw_status_reg(instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003697
Yang, Bo7218df62009-10-06 14:52:20 -06003698 if (abs_state == curr_abs_state) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003699 msleep(1);
3700 } else
3701 break;
3702 }
3703
3704 /*
3705 * Return error if fw_state hasn't changed after max_wait
3706 */
Yang, Bo7218df62009-10-06 14:52:20 -06003707 if (curr_abs_state == abs_state) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003708 dev_printk(KERN_DEBUG, &instance->pdev->dev, "FW state [%d] hasn't changed "
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003709 "in %d secs\n", fw_state, max_wait);
3710 return -ENODEV;
3711 }
Tomas Henzlbc6ac5e2014-04-01 13:59:50 +02003712
3713 abs_state = curr_abs_state;
3714 fw_state = curr_abs_state & MFI_STATE_MASK;
bo yang39a98552010-09-22 22:36:29 -04003715 }
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003716 dev_info(&instance->pdev->dev, "FW now in Ready state\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003717
3718 return 0;
3719}
3720
3721/**
3722 * megasas_teardown_frame_pool - Destroy the cmd frame DMA pool
3723 * @instance: Adapter soft state
3724 */
3725static void megasas_teardown_frame_pool(struct megasas_instance *instance)
3726{
3727 int i;
adam radford9c915a82010-12-21 13:34:31 -08003728 u32 max_cmd = instance->max_mfi_cmds;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003729 struct megasas_cmd *cmd;
3730
3731 if (!instance->frame_dma_pool)
3732 return;
3733
3734 /*
3735 * Return all frames to pool
3736 */
3737 for (i = 0; i < max_cmd; i++) {
3738
3739 cmd = instance->cmd_list[i];
3740
3741 if (cmd->frame)
3742 pci_pool_free(instance->frame_dma_pool, cmd->frame,
3743 cmd->frame_phys_addr);
3744
3745 if (cmd->sense)
Sumant Patroe3bbff92006-10-03 12:28:49 -07003746 pci_pool_free(instance->sense_dma_pool, cmd->sense,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003747 cmd->sense_phys_addr);
3748 }
3749
3750 /*
3751 * Now destroy the pool itself
3752 */
3753 pci_pool_destroy(instance->frame_dma_pool);
3754 pci_pool_destroy(instance->sense_dma_pool);
3755
3756 instance->frame_dma_pool = NULL;
3757 instance->sense_dma_pool = NULL;
3758}
3759
3760/**
3761 * megasas_create_frame_pool - Creates DMA pool for cmd frames
3762 * @instance: Adapter soft state
3763 *
3764 * Each command packet has an embedded DMA memory buffer that is used for
3765 * filling MFI frame and the SG list that immediately follows the frame. This
3766 * function creates those DMA memory buffers for each command packet by using
3767 * PCI pool facility.
3768 */
3769static int megasas_create_frame_pool(struct megasas_instance *instance)
3770{
3771 int i;
3772 u32 max_cmd;
3773 u32 sge_sz;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003774 u32 total_sz;
3775 u32 frame_count;
3776 struct megasas_cmd *cmd;
3777
adam radford9c915a82010-12-21 13:34:31 -08003778 max_cmd = instance->max_mfi_cmds;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003779
3780 /*
3781 * Size of our frame is 64 bytes for MFI frame, followed by max SG
3782 * elements and finally SCSI_SENSE_BUFFERSIZE bytes for sense buffer
3783 */
3784 sge_sz = (IS_DMA64) ? sizeof(struct megasas_sge64) :
3785 sizeof(struct megasas_sge32);
3786
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003787 if (instance->flag_ieee)
Yang, Bof4c9a132009-10-06 14:43:28 -06003788 sge_sz = sizeof(struct megasas_sge_skinny);
Yang, Bof4c9a132009-10-06 14:43:28 -06003789
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003790 /*
Sumit.Saxena@avagotech.com200aed52015-01-05 20:05:58 +05303791 * For MFI controllers.
3792 * max_num_sge = 60
3793 * max_sge_sz = 16 byte (sizeof megasas_sge_skinny)
3794 * Total 960 byte (15 MFI frame of 64 byte)
3795 *
3796 * Fusion adapter require only 3 extra frame.
3797 * max_num_sge = 16 (defined as MAX_IOCTL_SGE)
3798 * max_sge_sz = 12 byte (sizeof megasas_sge64)
3799 * Total 192 byte (3 MFI frame of 64 byte)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003800 */
Sumit.Saxena@avagotech.com200aed52015-01-05 20:05:58 +05303801 frame_count = instance->ctrl_context ? (3 + 1) : (15 + 1);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003802 total_sz = MEGAMFI_FRAME_SIZE * frame_count;
3803 /*
3804 * Use DMA pool facility provided by PCI layer
3805 */
3806 instance->frame_dma_pool = pci_pool_create("megasas frame pool",
Sumit.Saxena@avagotech.com200aed52015-01-05 20:05:58 +05303807 instance->pdev, total_sz, 256, 0);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003808
3809 if (!instance->frame_dma_pool) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003810 dev_printk(KERN_DEBUG, &instance->pdev->dev, "failed to setup frame pool\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003811 return -ENOMEM;
3812 }
3813
3814 instance->sense_dma_pool = pci_pool_create("megasas sense pool",
3815 instance->pdev, 128, 4, 0);
3816
3817 if (!instance->sense_dma_pool) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003818 dev_printk(KERN_DEBUG, &instance->pdev->dev, "failed to setup sense pool\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003819
3820 pci_pool_destroy(instance->frame_dma_pool);
3821 instance->frame_dma_pool = NULL;
3822
3823 return -ENOMEM;
3824 }
3825
3826 /*
3827 * Allocate and attach a frame to each of the commands in cmd_list.
3828 * By making cmd->index as the context instead of the &cmd, we can
3829 * always use 32bit context regardless of the architecture
3830 */
3831 for (i = 0; i < max_cmd; i++) {
3832
3833 cmd = instance->cmd_list[i];
3834
3835 cmd->frame = pci_pool_alloc(instance->frame_dma_pool,
3836 GFP_KERNEL, &cmd->frame_phys_addr);
3837
3838 cmd->sense = pci_pool_alloc(instance->sense_dma_pool,
3839 GFP_KERNEL, &cmd->sense_phys_addr);
3840
3841 /*
3842 * megasas_teardown_frame_pool() takes care of freeing
3843 * whatever has been allocated
3844 */
3845 if (!cmd->frame || !cmd->sense) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003846 dev_printk(KERN_DEBUG, &instance->pdev->dev, "pci_pool_alloc failed\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003847 megasas_teardown_frame_pool(instance);
3848 return -ENOMEM;
3849 }
3850
Yang, Bo707e09b2010-10-12 07:20:27 -06003851 memset(cmd->frame, 0, total_sz);
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303852 cmd->frame->io.context = cpu_to_le32(cmd->index);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06003853 cmd->frame->io.pad_0 = 0;
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303854 if (!instance->ctrl_context && reset_devices)
adam radforde5f93a32011-10-08 18:15:19 -07003855 cmd->frame->hdr.cmd = MFI_CMD_INVALID;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003856 }
3857
3858 return 0;
3859}
3860
3861/**
3862 * megasas_free_cmds - Free all the cmds in the free cmd pool
3863 * @instance: Adapter soft state
3864 */
adam radford9c915a82010-12-21 13:34:31 -08003865void megasas_free_cmds(struct megasas_instance *instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003866{
3867 int i;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003868
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003869 /* First free the MFI frame pool */
3870 megasas_teardown_frame_pool(instance);
3871
3872 /* Free all the commands in the cmd_list */
adam radford9c915a82010-12-21 13:34:31 -08003873 for (i = 0; i < instance->max_mfi_cmds; i++)
3874
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003875 kfree(instance->cmd_list[i]);
3876
3877 /* Free the cmd_list buffer itself */
3878 kfree(instance->cmd_list);
3879 instance->cmd_list = NULL;
3880
3881 INIT_LIST_HEAD(&instance->cmd_pool);
3882}
3883
3884/**
3885 * megasas_alloc_cmds - Allocates the command packets
3886 * @instance: Adapter soft state
3887 *
3888 * Each command that is issued to the FW, whether IO commands from the OS or
3889 * internal commands like IOCTLs, are wrapped in local data structure called
3890 * megasas_cmd. The frame embedded in this megasas_cmd is actually issued to
3891 * the FW.
3892 *
3893 * Each frame has a 32-bit field called context (tag). This context is used
3894 * to get back the megasas_cmd from the frame when a frame gets completed in
3895 * the ISR. Typically the address of the megasas_cmd itself would be used as
3896 * the context. But we wanted to keep the differences between 32 and 64 bit
3897 * systems to the mininum. We always use 32 bit integers for the context. In
3898 * this driver, the 32 bit values are the indices into an array cmd_list.
3899 * This array is used only to look up the megasas_cmd given the context. The
3900 * free commands themselves are maintained in a linked list called cmd_pool.
3901 */
adam radford9c915a82010-12-21 13:34:31 -08003902int megasas_alloc_cmds(struct megasas_instance *instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003903{
3904 int i;
3905 int j;
3906 u32 max_cmd;
3907 struct megasas_cmd *cmd;
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05303908 struct fusion_context *fusion;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003909
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05303910 fusion = instance->ctrl_context;
adam radford9c915a82010-12-21 13:34:31 -08003911 max_cmd = instance->max_mfi_cmds;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003912
3913 /*
3914 * instance->cmd_list is an array of struct megasas_cmd pointers.
3915 * Allocate the dynamic array first and then allocate individual
3916 * commands.
3917 */
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07003918 instance->cmd_list = kcalloc(max_cmd, sizeof(struct megasas_cmd*), GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003919
3920 if (!instance->cmd_list) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003921 dev_printk(KERN_DEBUG, &instance->pdev->dev, "out of memory\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003922 return -ENOMEM;
3923 }
3924
adam radford9c915a82010-12-21 13:34:31 -08003925 memset(instance->cmd_list, 0, sizeof(struct megasas_cmd *) *max_cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003926
3927 for (i = 0; i < max_cmd; i++) {
3928 instance->cmd_list[i] = kmalloc(sizeof(struct megasas_cmd),
3929 GFP_KERNEL);
3930
3931 if (!instance->cmd_list[i]) {
3932
3933 for (j = 0; j < i; j++)
3934 kfree(instance->cmd_list[j]);
3935
3936 kfree(instance->cmd_list);
3937 instance->cmd_list = NULL;
3938
3939 return -ENOMEM;
3940 }
3941 }
3942
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003943 for (i = 0; i < max_cmd; i++) {
3944 cmd = instance->cmd_list[i];
3945 memset(cmd, 0, sizeof(struct megasas_cmd));
3946 cmd->index = i;
bo yang39a98552010-09-22 22:36:29 -04003947 cmd->scmd = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003948 cmd->instance = instance;
3949
3950 list_add_tail(&cmd->list, &instance->cmd_pool);
3951 }
3952
3953 /*
3954 * Create a frame pool and assign one frame to each cmd
3955 */
3956 if (megasas_create_frame_pool(instance)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003957 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Error creating frame DMA pool\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003958 megasas_free_cmds(instance);
3959 }
3960
3961 return 0;
3962}
3963
Yang, Bo81e403c2009-10-06 14:27:54 -06003964/*
Sumit Saxena6d40afb2016-01-28 21:04:23 +05303965 * dcmd_timeout_ocr_possible - Check if OCR is possible based on Driver/FW state.
3966 * @instance: Adapter soft state
3967 *
3968 * Return 0 for only Fusion adapter, if driver load/unload is not in progress
3969 * or FW is not under OCR.
3970 */
3971inline int
3972dcmd_timeout_ocr_possible(struct megasas_instance *instance) {
3973
3974 if (!instance->ctrl_context)
3975 return KILL_ADAPTER;
3976 else if (instance->unload ||
3977 test_bit(MEGASAS_FUSION_IN_RESET, &instance->reset_flags))
3978 return IGNORE_TIMEOUT;
3979 else
3980 return INITIATE_OCR;
3981}
3982
Sumit Saxena2216c302016-01-28 21:04:26 +05303983static int
3984megasas_get_pd_info(struct megasas_instance *instance, u16 device_id)
3985{
3986 int ret;
3987 struct megasas_cmd *cmd;
3988 struct megasas_dcmd_frame *dcmd;
3989
3990 cmd = megasas_get_cmd(instance);
3991
3992 if (!cmd) {
3993 dev_err(&instance->pdev->dev, "Failed to get cmd %s\n", __func__);
3994 return -ENOMEM;
3995 }
3996
3997 dcmd = &cmd->frame->dcmd;
3998
3999 memset(instance->pd_info, 0, sizeof(*instance->pd_info));
4000 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4001
4002 dcmd->mbox.s[0] = cpu_to_le16(device_id);
4003 dcmd->cmd = MFI_CMD_DCMD;
4004 dcmd->cmd_status = 0xFF;
4005 dcmd->sge_count = 1;
4006 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
4007 dcmd->timeout = 0;
4008 dcmd->pad_0 = 0;
4009 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct MR_PD_INFO));
4010 dcmd->opcode = cpu_to_le32(MR_DCMD_PD_GET_INFO);
4011 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(instance->pd_info_h);
4012 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct MR_PD_INFO));
4013
4014 if (instance->ctrl_context && !instance->mask_interrupts)
4015 ret = megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS);
4016 else
4017 ret = megasas_issue_polled(instance, cmd);
4018
4019 switch (ret) {
4020 case DCMD_SUCCESS:
4021 instance->pd_list[device_id].interface =
4022 instance->pd_info->state.ddf.pdType.intf;
4023 break;
4024
4025 case DCMD_TIMEOUT:
4026
4027 switch (dcmd_timeout_ocr_possible(instance)) {
4028 case INITIATE_OCR:
4029 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4030 megasas_reset_fusion(instance->host,
4031 MFI_IO_TIMEOUT_OCR);
4032 break;
4033 case KILL_ADAPTER:
4034 megaraid_sas_kill_hba(instance);
4035 break;
4036 case IGNORE_TIMEOUT:
4037 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4038 __func__, __LINE__);
4039 break;
4040 }
4041
4042 break;
4043 }
4044
4045 if (ret != DCMD_TIMEOUT)
4046 megasas_return_cmd(instance, cmd);
4047
4048 return ret;
4049}
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304050/*
Yang, Bo81e403c2009-10-06 14:27:54 -06004051 * megasas_get_pd_list_info - Returns FW's pd_list structure
4052 * @instance: Adapter soft state
4053 * @pd_list: pd_list structure
4054 *
4055 * Issues an internal command (DCMD) to get the FW's controller PD
4056 * list structure. This information is mainly used to find out SYSTEM
4057 * supported by the FW.
4058 */
4059static int
4060megasas_get_pd_list(struct megasas_instance *instance)
4061{
4062 int ret = 0, pd_index = 0;
4063 struct megasas_cmd *cmd;
4064 struct megasas_dcmd_frame *dcmd;
4065 struct MR_PD_LIST *ci;
4066 struct MR_PD_ADDRESS *pd_addr;
4067 dma_addr_t ci_h = 0;
4068
Sumit Saxenad9083162016-07-08 03:30:16 -07004069 if (instance->pd_list_not_supported) {
4070 dev_info(&instance->pdev->dev, "MR_DCMD_PD_LIST_QUERY "
4071 "not supported by firmware\n");
4072 return ret;
4073 }
4074
Yang, Bo81e403c2009-10-06 14:27:54 -06004075 cmd = megasas_get_cmd(instance);
4076
4077 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004078 dev_printk(KERN_DEBUG, &instance->pdev->dev, "(get_pd_list): Failed to get cmd\n");
Yang, Bo81e403c2009-10-06 14:27:54 -06004079 return -ENOMEM;
4080 }
4081
4082 dcmd = &cmd->frame->dcmd;
4083
4084 ci = pci_alloc_consistent(instance->pdev,
4085 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST), &ci_h);
4086
4087 if (!ci) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004088 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to alloc mem for pd_list\n");
Yang, Bo81e403c2009-10-06 14:27:54 -06004089 megasas_return_cmd(instance, cmd);
4090 return -ENOMEM;
4091 }
4092
4093 memset(ci, 0, sizeof(*ci));
4094 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4095
4096 dcmd->mbox.b[0] = MR_PD_QUERY_TYPE_EXPOSED_TO_HOST;
4097 dcmd->mbox.b[1] = 0;
4098 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304099 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Yang, Bo81e403c2009-10-06 14:27:54 -06004100 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304101 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Yang, Bo81e403c2009-10-06 14:27:54 -06004102 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07004103 dcmd->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304104 dcmd->data_xfer_len = cpu_to_le32(MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST));
4105 dcmd->opcode = cpu_to_le32(MR_DCMD_PD_LIST_QUERY);
4106 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(ci_h);
4107 dcmd->sgl.sge32[0].length = cpu_to_le32(MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST));
Yang, Bo81e403c2009-10-06 14:27:54 -06004108
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304109 if (instance->ctrl_context && !instance->mask_interrupts)
4110 ret = megasas_issue_blocked_cmd(instance, cmd,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304111 MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304112 else
4113 ret = megasas_issue_polled(instance, cmd);
Yang, Bo81e403c2009-10-06 14:27:54 -06004114
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304115 switch (ret) {
4116 case DCMD_FAILED:
Sumit Saxena30845582016-03-10 02:14:37 -08004117 dev_info(&instance->pdev->dev, "MR_DCMD_PD_LIST_QUERY "
4118 "failed/not supported by firmware\n");
4119
4120 if (instance->ctrl_context)
4121 megaraid_sas_kill_hba(instance);
4122 else
4123 instance->pd_list_not_supported = 1;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304124 break;
4125 case DCMD_TIMEOUT:
Yang, Bo81e403c2009-10-06 14:27:54 -06004126
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304127 switch (dcmd_timeout_ocr_possible(instance)) {
4128 case INITIATE_OCR:
4129 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4130 /*
4131 * DCMD failed from AEN path.
4132 * AEN path already hold reset_mutex to avoid PCI access
4133 * while OCR is in progress.
4134 */
4135 mutex_unlock(&instance->reset_mutex);
4136 megasas_reset_fusion(instance->host,
4137 MFI_IO_TIMEOUT_OCR);
4138 mutex_lock(&instance->reset_mutex);
4139 break;
4140 case KILL_ADAPTER:
4141 megaraid_sas_kill_hba(instance);
4142 break;
4143 case IGNORE_TIMEOUT:
4144 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d \n",
4145 __func__, __LINE__);
4146 break;
4147 }
Yang, Bo81e403c2009-10-06 14:27:54 -06004148
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304149 break;
4150
4151 case DCMD_SUCCESS:
4152 pd_addr = ci->addr;
4153
4154 if ((le32_to_cpu(ci->count) >
4155 (MEGASAS_MAX_PD_CHANNELS * MEGASAS_MAX_DEV_PER_CHANNEL)))
4156 break;
Yang, Bo81e403c2009-10-06 14:27:54 -06004157
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304158 memset(instance->local_pd_list, 0,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304159 MEGASAS_MAX_PD * sizeof(struct megasas_pd_list));
Yang, Bo81e403c2009-10-06 14:27:54 -06004160
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304161 for (pd_index = 0; pd_index < le32_to_cpu(ci->count); pd_index++) {
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304162 instance->local_pd_list[le16_to_cpu(pd_addr->deviceId)].tid =
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304163 le16_to_cpu(pd_addr->deviceId);
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304164 instance->local_pd_list[le16_to_cpu(pd_addr->deviceId)].driveType =
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304165 pd_addr->scsiDevType;
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304166 instance->local_pd_list[le16_to_cpu(pd_addr->deviceId)].driveState =
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304167 MR_PD_STATE_SYSTEM;
Yang, Bo81e403c2009-10-06 14:27:54 -06004168 pd_addr++;
4169 }
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304170
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304171 memcpy(instance->pd_list, instance->local_pd_list,
4172 sizeof(instance->pd_list));
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304173 break;
4174
Yang, Bo81e403c2009-10-06 14:27:54 -06004175 }
4176
4177 pci_free_consistent(instance->pdev,
4178 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST),
4179 ci, ci_h);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304180
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304181 if (ret != DCMD_TIMEOUT)
4182 megasas_return_cmd(instance, cmd);
Yang, Bo81e403c2009-10-06 14:27:54 -06004183
4184 return ret;
4185}
4186
Yang, Bobdc6fb82009-12-06 08:30:19 -07004187/*
4188 * megasas_get_ld_list_info - Returns FW's ld_list structure
4189 * @instance: Adapter soft state
4190 * @ld_list: ld_list structure
4191 *
4192 * Issues an internal command (DCMD) to get the FW's controller PD
4193 * list structure. This information is mainly used to find out SYSTEM
4194 * supported by the FW.
4195 */
4196static int
4197megasas_get_ld_list(struct megasas_instance *instance)
4198{
4199 int ret = 0, ld_index = 0, ids = 0;
4200 struct megasas_cmd *cmd;
4201 struct megasas_dcmd_frame *dcmd;
4202 struct MR_LD_LIST *ci;
4203 dma_addr_t ci_h = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304204 u32 ld_count;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004205
4206 cmd = megasas_get_cmd(instance);
4207
4208 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004209 dev_printk(KERN_DEBUG, &instance->pdev->dev, "megasas_get_ld_list: Failed to get cmd\n");
Yang, Bobdc6fb82009-12-06 08:30:19 -07004210 return -ENOMEM;
4211 }
4212
4213 dcmd = &cmd->frame->dcmd;
4214
4215 ci = pci_alloc_consistent(instance->pdev,
4216 sizeof(struct MR_LD_LIST),
4217 &ci_h);
4218
4219 if (!ci) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004220 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to alloc mem in get_ld_list\n");
Yang, Bobdc6fb82009-12-06 08:30:19 -07004221 megasas_return_cmd(instance, cmd);
4222 return -ENOMEM;
4223 }
4224
4225 memset(ci, 0, sizeof(*ci));
4226 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4227
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304228 if (instance->supportmax256vd)
4229 dcmd->mbox.b[0] = 1;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004230 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304231 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004232 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304233 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Yang, Bobdc6fb82009-12-06 08:30:19 -07004234 dcmd->timeout = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304235 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct MR_LD_LIST));
4236 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_GET_LIST);
4237 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(ci_h);
4238 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct MR_LD_LIST));
Yang, Bobdc6fb82009-12-06 08:30:19 -07004239 dcmd->pad_0 = 0;
4240
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304241 if (instance->ctrl_context && !instance->mask_interrupts)
4242 ret = megasas_issue_blocked_cmd(instance, cmd,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304243 MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304244 else
4245 ret = megasas_issue_polled(instance, cmd);
4246
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304247 ld_count = le32_to_cpu(ci->ldCount);
4248
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304249 switch (ret) {
4250 case DCMD_FAILED:
4251 megaraid_sas_kill_hba(instance);
4252 break;
4253 case DCMD_TIMEOUT:
Yang, Bobdc6fb82009-12-06 08:30:19 -07004254
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304255 switch (dcmd_timeout_ocr_possible(instance)) {
4256 case INITIATE_OCR:
4257 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4258 /*
4259 * DCMD failed from AEN path.
4260 * AEN path already hold reset_mutex to avoid PCI access
4261 * while OCR is in progress.
4262 */
4263 mutex_unlock(&instance->reset_mutex);
4264 megasas_reset_fusion(instance->host,
4265 MFI_IO_TIMEOUT_OCR);
4266 mutex_lock(&instance->reset_mutex);
4267 break;
4268 case KILL_ADAPTER:
4269 megaraid_sas_kill_hba(instance);
4270 break;
4271 case IGNORE_TIMEOUT:
4272 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4273 __func__, __LINE__);
4274 break;
4275 }
4276
4277 break;
4278
4279 case DCMD_SUCCESS:
4280 if (ld_count > instance->fw_supported_vd_count)
4281 break;
4282
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304283 memset(instance->ld_ids, 0xff, MAX_LOGICAL_DRIVES_EXT);
Yang, Bobdc6fb82009-12-06 08:30:19 -07004284
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304285 for (ld_index = 0; ld_index < ld_count; ld_index++) {
Yang, Bobdc6fb82009-12-06 08:30:19 -07004286 if (ci->ldList[ld_index].state != 0) {
4287 ids = ci->ldList[ld_index].ref.targetId;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304288 instance->ld_ids[ids] = ci->ldList[ld_index].ref.targetId;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004289 }
4290 }
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304291
4292 break;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004293 }
4294
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304295 pci_free_consistent(instance->pdev, sizeof(struct MR_LD_LIST), ci, ci_h);
Yang, Bobdc6fb82009-12-06 08:30:19 -07004296
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304297 if (ret != DCMD_TIMEOUT)
4298 megasas_return_cmd(instance, cmd);
4299
Yang, Bobdc6fb82009-12-06 08:30:19 -07004300 return ret;
4301}
4302
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004303/**
adam radford21c9e162013-09-06 15:27:14 -07004304 * megasas_ld_list_query - Returns FW's ld_list structure
4305 * @instance: Adapter soft state
4306 * @ld_list: ld_list structure
4307 *
4308 * Issues an internal command (DCMD) to get the FW's controller PD
4309 * list structure. This information is mainly used to find out SYSTEM
4310 * supported by the FW.
4311 */
4312static int
4313megasas_ld_list_query(struct megasas_instance *instance, u8 query_type)
4314{
4315 int ret = 0, ld_index = 0, ids = 0;
4316 struct megasas_cmd *cmd;
4317 struct megasas_dcmd_frame *dcmd;
4318 struct MR_LD_TARGETID_LIST *ci;
4319 dma_addr_t ci_h = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304320 u32 tgtid_count;
adam radford21c9e162013-09-06 15:27:14 -07004321
4322 cmd = megasas_get_cmd(instance);
4323
4324 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004325 dev_warn(&instance->pdev->dev,
4326 "megasas_ld_list_query: Failed to get cmd\n");
adam radford21c9e162013-09-06 15:27:14 -07004327 return -ENOMEM;
4328 }
4329
4330 dcmd = &cmd->frame->dcmd;
4331
4332 ci = pci_alloc_consistent(instance->pdev,
4333 sizeof(struct MR_LD_TARGETID_LIST), &ci_h);
4334
4335 if (!ci) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004336 dev_warn(&instance->pdev->dev,
4337 "Failed to alloc mem for ld_list_query\n");
adam radford21c9e162013-09-06 15:27:14 -07004338 megasas_return_cmd(instance, cmd);
4339 return -ENOMEM;
4340 }
4341
4342 memset(ci, 0, sizeof(*ci));
4343 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4344
4345 dcmd->mbox.b[0] = query_type;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304346 if (instance->supportmax256vd)
4347 dcmd->mbox.b[2] = 1;
adam radford21c9e162013-09-06 15:27:14 -07004348
4349 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304350 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
adam radford21c9e162013-09-06 15:27:14 -07004351 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304352 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
adam radford21c9e162013-09-06 15:27:14 -07004353 dcmd->timeout = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304354 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct MR_LD_TARGETID_LIST));
4355 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_LIST_QUERY);
4356 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(ci_h);
4357 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct MR_LD_TARGETID_LIST));
adam radford21c9e162013-09-06 15:27:14 -07004358 dcmd->pad_0 = 0;
4359
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304360 if (instance->ctrl_context && !instance->mask_interrupts)
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304361 ret = megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304362 else
4363 ret = megasas_issue_polled(instance, cmd);
adam radford21c9e162013-09-06 15:27:14 -07004364
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304365 switch (ret) {
4366 case DCMD_FAILED:
4367 dev_info(&instance->pdev->dev,
4368 "DCMD not supported by firmware - %s %d\n",
4369 __func__, __LINE__);
4370 ret = megasas_get_ld_list(instance);
4371 break;
4372 case DCMD_TIMEOUT:
4373 switch (dcmd_timeout_ocr_possible(instance)) {
4374 case INITIATE_OCR:
4375 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4376 /*
4377 * DCMD failed from AEN path.
4378 * AEN path already hold reset_mutex to avoid PCI access
4379 * while OCR is in progress.
4380 */
4381 mutex_unlock(&instance->reset_mutex);
4382 megasas_reset_fusion(instance->host,
4383 MFI_IO_TIMEOUT_OCR);
4384 mutex_lock(&instance->reset_mutex);
4385 break;
4386 case KILL_ADAPTER:
4387 megaraid_sas_kill_hba(instance);
4388 break;
4389 case IGNORE_TIMEOUT:
4390 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4391 __func__, __LINE__);
4392 break;
4393 }
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304394
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304395 break;
4396 case DCMD_SUCCESS:
4397 tgtid_count = le32_to_cpu(ci->count);
4398
4399 if ((tgtid_count > (instance->fw_supported_vd_count)))
4400 break;
4401
adam radford21c9e162013-09-06 15:27:14 -07004402 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304403 for (ld_index = 0; ld_index < tgtid_count; ld_index++) {
adam radford21c9e162013-09-06 15:27:14 -07004404 ids = ci->targetId[ld_index];
4405 instance->ld_ids[ids] = ci->targetId[ld_index];
4406 }
4407
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304408 break;
adam radford21c9e162013-09-06 15:27:14 -07004409 }
4410
4411 pci_free_consistent(instance->pdev, sizeof(struct MR_LD_TARGETID_LIST),
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304412 ci, ci_h);
adam radford21c9e162013-09-06 15:27:14 -07004413
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304414 if (ret != DCMD_TIMEOUT)
4415 megasas_return_cmd(instance, cmd);
adam radford21c9e162013-09-06 15:27:14 -07004416
4417 return ret;
4418}
4419
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304420/*
4421 * megasas_update_ext_vd_details : Update details w.r.t Extended VD
4422 * instance : Controller's instance
4423*/
4424static void megasas_update_ext_vd_details(struct megasas_instance *instance)
4425{
4426 struct fusion_context *fusion;
4427 u32 old_map_sz;
4428 u32 new_map_sz;
4429
4430 fusion = instance->ctrl_context;
4431 /* For MFI based controllers return dummy success */
4432 if (!fusion)
4433 return;
4434
4435 instance->supportmax256vd =
4436 instance->ctrl_info->adapterOperations3.supportMaxExtLDs;
4437 /* Below is additional check to address future FW enhancement */
4438 if (instance->ctrl_info->max_lds > 64)
4439 instance->supportmax256vd = 1;
4440
4441 instance->drv_supported_vd_count = MEGASAS_MAX_LD_CHANNELS
4442 * MEGASAS_MAX_DEV_PER_CHANNEL;
4443 instance->drv_supported_pd_count = MEGASAS_MAX_PD_CHANNELS
4444 * MEGASAS_MAX_DEV_PER_CHANNEL;
4445 if (instance->supportmax256vd) {
4446 instance->fw_supported_vd_count = MAX_LOGICAL_DRIVES_EXT;
4447 instance->fw_supported_pd_count = MAX_PHYSICAL_DEVICES;
4448 } else {
4449 instance->fw_supported_vd_count = MAX_LOGICAL_DRIVES;
4450 instance->fw_supported_pd_count = MAX_PHYSICAL_DEVICES;
4451 }
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05304452
4453 dev_info(&instance->pdev->dev,
4454 "firmware type\t: %s\n",
4455 instance->supportmax256vd ? "Extended VD(240 VD)firmware" :
4456 "Legacy(64 VD) firmware");
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304457
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05004458 old_map_sz = sizeof(struct MR_FW_RAID_MAP) +
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304459 (sizeof(struct MR_LD_SPAN_MAP) *
4460 (instance->fw_supported_vd_count - 1));
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05004461 new_map_sz = sizeof(struct MR_FW_RAID_MAP_EXT);
4462 fusion->drv_map_sz = sizeof(struct MR_DRV_RAID_MAP) +
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304463 (sizeof(struct MR_LD_SPAN_MAP) *
4464 (instance->drv_supported_vd_count - 1));
4465
4466 fusion->max_map_sz = max(old_map_sz, new_map_sz);
4467
4468
4469 if (instance->supportmax256vd)
4470 fusion->current_map_sz = new_map_sz;
4471 else
4472 fusion->current_map_sz = old_map_sz;
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304473}
4474
adam radford21c9e162013-09-06 15:27:14 -07004475/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004476 * megasas_get_controller_info - Returns FW's controller structure
4477 * @instance: Adapter soft state
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004478 *
4479 * Issues an internal command (DCMD) to get the FW's controller structure.
4480 * This information is mainly used to find out the maximum IO transfer per
4481 * command supported by the FW.
4482 */
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304483int
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304484megasas_get_ctrl_info(struct megasas_instance *instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004485{
4486 int ret = 0;
4487 struct megasas_cmd *cmd;
4488 struct megasas_dcmd_frame *dcmd;
4489 struct megasas_ctrl_info *ci;
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304490 struct megasas_ctrl_info *ctrl_info;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004491 dma_addr_t ci_h = 0;
4492
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304493 ctrl_info = instance->ctrl_info;
4494
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004495 cmd = megasas_get_cmd(instance);
4496
4497 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004498 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to get a free cmd\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004499 return -ENOMEM;
4500 }
4501
4502 dcmd = &cmd->frame->dcmd;
4503
4504 ci = pci_alloc_consistent(instance->pdev,
4505 sizeof(struct megasas_ctrl_info), &ci_h);
4506
4507 if (!ci) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004508 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to alloc mem for ctrl info\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004509 megasas_return_cmd(instance, cmd);
4510 return -ENOMEM;
4511 }
4512
4513 memset(ci, 0, sizeof(*ci));
4514 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4515
4516 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304517 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004518 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304519 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004520 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07004521 dcmd->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304522 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct megasas_ctrl_info));
4523 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_GET_INFO);
4524 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(ci_h);
4525 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct megasas_ctrl_info));
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304526 dcmd->mbox.b[0] = 1;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004527
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304528 if (instance->ctrl_context && !instance->mask_interrupts)
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304529 ret = megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304530 else
4531 ret = megasas_issue_polled(instance, cmd);
4532
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304533 switch (ret) {
4534 case DCMD_SUCCESS:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004535 memcpy(ctrl_info, ci, sizeof(struct megasas_ctrl_info));
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304536 /* Save required controller information in
4537 * CPU endianness format.
4538 */
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304539 le32_to_cpus((u32 *)&ctrl_info->properties.OnOffProperties);
4540 le32_to_cpus((u32 *)&ctrl_info->adapterOperations2);
4541 le32_to_cpus((u32 *)&ctrl_info->adapterOperations3);
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304542
4543 /* Update the latest Ext VD info.
4544 * From Init path, store current firmware details.
4545 * From OCR path, detect any firmware properties changes.
4546 * in case of Firmware upgrade without system reboot.
4547 */
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304548 megasas_update_ext_vd_details(instance);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05304549 instance->use_seqnum_jbod_fp =
4550 ctrl_info->adapterOperations3.useSeqNumJbodFP;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304551
4552 /*Check whether controller is iMR or MR */
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05304553 instance->is_imr = (ctrl_info->memory_size ? 0 : 1);
4554 dev_info(&instance->pdev->dev,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304555 "controller type\t: %s(%dMB)\n",
4556 instance->is_imr ? "iMR" : "MR",
4557 le16_to_cpu(ctrl_info->memory_size));
4558
sumit.saxena@avagotech.comc4bd2652015-10-15 13:40:14 +05304559 instance->disableOnlineCtrlReset =
4560 ctrl_info->properties.OnOffProperties.disableOnlineCtrlReset;
sumit.saxena@avagotech.com32222512015-10-15 13:40:24 +05304561 instance->secure_jbod_support =
4562 ctrl_info->adapterOperations3.supportSecurityonJBOD;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304563 dev_info(&instance->pdev->dev, "Online Controller Reset(OCR)\t: %s\n",
4564 instance->disableOnlineCtrlReset ? "Disabled" : "Enabled");
sumit.saxena@avagotech.com32222512015-10-15 13:40:24 +05304565 dev_info(&instance->pdev->dev, "Secure JBOD support\t: %s\n",
4566 instance->secure_jbod_support ? "Yes" : "No");
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304567 break;
4568
4569 case DCMD_TIMEOUT:
4570 switch (dcmd_timeout_ocr_possible(instance)) {
4571 case INITIATE_OCR:
4572 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4573 megasas_reset_fusion(instance->host,
4574 MFI_IO_TIMEOUT_OCR);
4575 break;
4576 case KILL_ADAPTER:
4577 megaraid_sas_kill_hba(instance);
4578 break;
4579 case IGNORE_TIMEOUT:
4580 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4581 __func__, __LINE__);
4582 break;
4583 }
4584 case DCMD_FAILED:
4585 megaraid_sas_kill_hba(instance);
4586 break;
4587
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304588 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004589
4590 pci_free_consistent(instance->pdev, sizeof(struct megasas_ctrl_info),
4591 ci, ci_h);
4592
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05304593 megasas_return_cmd(instance, cmd);
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304594
4595
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004596 return ret;
4597}
4598
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05304599/*
4600 * megasas_set_crash_dump_params - Sends address of crash dump DMA buffer
4601 * to firmware
4602 *
4603 * @instance: Adapter soft state
4604 * @crash_buf_state - tell FW to turn ON/OFF crash dump feature
4605 MR_CRASH_BUF_TURN_OFF = 0
4606 MR_CRASH_BUF_TURN_ON = 1
4607 * @return 0 on success non-zero on failure.
4608 * Issues an internal command (DCMD) to set parameters for crash dump feature.
4609 * Driver will send address of crash dump DMA buffer and set mbox to tell FW
4610 * that driver supports crash dump feature. This DCMD will be sent only if
4611 * crash dump feature is supported by the FW.
4612 *
4613 */
4614int megasas_set_crash_dump_params(struct megasas_instance *instance,
4615 u8 crash_buf_state)
4616{
4617 int ret = 0;
4618 struct megasas_cmd *cmd;
4619 struct megasas_dcmd_frame *dcmd;
4620
4621 cmd = megasas_get_cmd(instance);
4622
4623 if (!cmd) {
4624 dev_err(&instance->pdev->dev, "Failed to get a free cmd\n");
4625 return -ENOMEM;
4626 }
4627
4628
4629 dcmd = &cmd->frame->dcmd;
4630
4631 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4632 dcmd->mbox.b[0] = crash_buf_state;
4633 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304634 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05304635 dcmd->sge_count = 1;
4636 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_NONE);
4637 dcmd->timeout = 0;
4638 dcmd->pad_0 = 0;
4639 dcmd->data_xfer_len = cpu_to_le32(CRASH_DMA_BUF_SIZE);
4640 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_SET_CRASH_DUMP_PARAMS);
4641 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(instance->crash_dump_h);
4642 dcmd->sgl.sge32[0].length = cpu_to_le32(CRASH_DMA_BUF_SIZE);
4643
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304644 if (instance->ctrl_context && !instance->mask_interrupts)
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304645 ret = megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05304646 else
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304647 ret = megasas_issue_polled(instance, cmd);
4648
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304649 if (ret == DCMD_TIMEOUT) {
4650 switch (dcmd_timeout_ocr_possible(instance)) {
4651 case INITIATE_OCR:
4652 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4653 megasas_reset_fusion(instance->host,
4654 MFI_IO_TIMEOUT_OCR);
4655 break;
4656 case KILL_ADAPTER:
4657 megaraid_sas_kill_hba(instance);
4658 break;
4659 case IGNORE_TIMEOUT:
4660 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4661 __func__, __LINE__);
4662 break;
4663 }
4664 } else
4665 megasas_return_cmd(instance, cmd);
4666
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05304667 return ret;
4668}
4669
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004670/**
bo yang31ea7082007-11-07 12:09:50 -05004671 * megasas_issue_init_mfi - Initializes the FW
4672 * @instance: Adapter soft state
4673 *
4674 * Issues the INIT MFI cmd
4675 */
4676static int
4677megasas_issue_init_mfi(struct megasas_instance *instance)
4678{
Christoph Hellwig9ab9ed32015-04-23 16:32:54 +05304679 __le32 context;
bo yang31ea7082007-11-07 12:09:50 -05004680 struct megasas_cmd *cmd;
bo yang31ea7082007-11-07 12:09:50 -05004681 struct megasas_init_frame *init_frame;
4682 struct megasas_init_queue_info *initq_info;
4683 dma_addr_t init_frame_h;
4684 dma_addr_t initq_info_h;
4685
4686 /*
4687 * Prepare a init frame. Note the init frame points to queue info
4688 * structure. Each frame has SGL allocated after first 64 bytes. For
4689 * this frame - since we don't need any SGL - we use SGL's space as
4690 * queue info structure
4691 *
4692 * We will not get a NULL command below. We just created the pool.
4693 */
4694 cmd = megasas_get_cmd(instance);
4695
4696 init_frame = (struct megasas_init_frame *)cmd->frame;
4697 initq_info = (struct megasas_init_queue_info *)
4698 ((unsigned long)init_frame + 64);
4699
4700 init_frame_h = cmd->frame_phys_addr;
4701 initq_info_h = init_frame_h + 64;
4702
4703 context = init_frame->context;
4704 memset(init_frame, 0, MEGAMFI_FRAME_SIZE);
4705 memset(initq_info, 0, sizeof(struct megasas_init_queue_info));
4706 init_frame->context = context;
4707
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304708 initq_info->reply_queue_entries = cpu_to_le32(instance->max_fw_cmds + 1);
4709 initq_info->reply_queue_start_phys_addr_lo = cpu_to_le32(instance->reply_queue_h);
bo yang31ea7082007-11-07 12:09:50 -05004710
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304711 initq_info->producer_index_phys_addr_lo = cpu_to_le32(instance->producer_h);
4712 initq_info->consumer_index_phys_addr_lo = cpu_to_le32(instance->consumer_h);
bo yang31ea7082007-11-07 12:09:50 -05004713
4714 init_frame->cmd = MFI_CMD_INIT;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304715 init_frame->cmd_status = MFI_STAT_INVALID_STATUS;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304716 init_frame->queue_info_new_phys_addr_lo =
4717 cpu_to_le32(lower_32_bits(initq_info_h));
4718 init_frame->queue_info_new_phys_addr_hi =
4719 cpu_to_le32(upper_32_bits(initq_info_h));
bo yang31ea7082007-11-07 12:09:50 -05004720
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304721 init_frame->data_xfer_len = cpu_to_le32(sizeof(struct megasas_init_queue_info));
bo yang31ea7082007-11-07 12:09:50 -05004722
4723 /*
4724 * disable the intr before firing the init frame to FW
4725 */
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05304726 instance->instancet->disable_intr(instance);
bo yang31ea7082007-11-07 12:09:50 -05004727
4728 /*
4729 * Issue the init frame in polled mode
4730 */
4731
4732 if (megasas_issue_polled(instance, cmd)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004733 dev_err(&instance->pdev->dev, "Failed to init firmware\n");
bo yang31ea7082007-11-07 12:09:50 -05004734 megasas_return_cmd(instance, cmd);
4735 goto fail_fw_init;
4736 }
4737
4738 megasas_return_cmd(instance, cmd);
4739
4740 return 0;
4741
4742fail_fw_init:
4743 return -EINVAL;
4744}
4745
adam radfordcd50ba82010-12-21 10:23:23 -08004746static u32
4747megasas_init_adapter_mfi(struct megasas_instance *instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004748{
adam radfordcd50ba82010-12-21 10:23:23 -08004749 struct megasas_register_set __iomem *reg_set;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004750 u32 context_sz;
4751 u32 reply_q_sz;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004752
4753 reg_set = instance->reg_set;
4754
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004755 /*
4756 * Get various operational parameters from status register
4757 */
Sumant Patro1341c932006-01-25 12:02:40 -08004758 instance->max_fw_cmds = instance->instancet->read_fw_status_reg(reg_set) & 0x00FFFF;
Sumant Patroe3bbff92006-10-03 12:28:49 -07004759 /*
4760 * Reduce the max supported cmds by 1. This is to ensure that the
4761 * reply_q_sz (1 more than the max cmd that driver may send)
4762 * does not exceed max cmds that the FW can support
4763 */
4764 instance->max_fw_cmds = instance->max_fw_cmds-1;
adam radford9c915a82010-12-21 13:34:31 -08004765 instance->max_mfi_cmds = instance->max_fw_cmds;
adam radford0d490162010-12-14 19:17:17 -08004766 instance->max_num_sge = (instance->instancet->read_fw_status_reg(reg_set) & 0xFF0000) >>
Sumant Patro1341c932006-01-25 12:02:40 -08004767 0x10;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004768 /*
Sumit.Saxena@avagotech.comf26ac3a2015-04-23 16:30:54 +05304769 * For MFI skinny adapters, MEGASAS_SKINNY_INT_CMDS commands
4770 * are reserved for IOCTL + driver's internal DCMDs.
4771 */
4772 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
4773 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
4774 instance->max_scsi_cmds = (instance->max_fw_cmds -
4775 MEGASAS_SKINNY_INT_CMDS);
4776 sema_init(&instance->ioctl_sem, MEGASAS_SKINNY_INT_CMDS);
4777 } else {
4778 instance->max_scsi_cmds = (instance->max_fw_cmds -
4779 MEGASAS_INT_CMDS);
4780 sema_init(&instance->ioctl_sem, (MEGASAS_MFI_IOCTL_CMDS));
4781 }
4782
Sumit Saxena308ec452016-01-28 21:04:30 +05304783 instance->cur_can_queue = instance->max_scsi_cmds;
Sumit.Saxena@avagotech.comf26ac3a2015-04-23 16:30:54 +05304784 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004785 * Create a pool of commands
4786 */
4787 if (megasas_alloc_cmds(instance))
4788 goto fail_alloc_cmds;
4789
4790 /*
4791 * Allocate memory for reply queue. Length of reply queue should
4792 * be _one_ more than the maximum commands handled by the firmware.
4793 *
4794 * Note: When FW completes commands, it places corresponding contex
4795 * values in this circular reply queue. This circular queue is a fairly
4796 * typical producer-consumer queue. FW is the producer (of completed
4797 * commands) and the driver is the consumer.
4798 */
4799 context_sz = sizeof(u32);
4800 reply_q_sz = context_sz * (instance->max_fw_cmds + 1);
4801
4802 instance->reply_queue = pci_alloc_consistent(instance->pdev,
4803 reply_q_sz,
4804 &instance->reply_queue_h);
4805
4806 if (!instance->reply_queue) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004807 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Out of DMA mem for reply queue\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004808 goto fail_reply_queue;
4809 }
4810
bo yang31ea7082007-11-07 12:09:50 -05004811 if (megasas_issue_init_mfi(instance))
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004812 goto fail_fw_init;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004813
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304814 if (megasas_get_ctrl_info(instance)) {
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304815 dev_err(&instance->pdev->dev, "(%d): Could get controller info "
4816 "Fail from %s %d\n", instance->unique_id,
4817 __func__, __LINE__);
4818 goto fail_fw_init;
4819 }
4820
bo yang39a98552010-09-22 22:36:29 -04004821 instance->fw_support_ieee = 0;
4822 instance->fw_support_ieee =
4823 (instance->instancet->read_fw_status_reg(reg_set) &
4824 0x04000000);
4825
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004826 dev_notice(&instance->pdev->dev, "megasas_init_mfi: fw_support_ieee=%d",
bo yang39a98552010-09-22 22:36:29 -04004827 instance->fw_support_ieee);
4828
4829 if (instance->fw_support_ieee)
4830 instance->flag_ieee = 1;
4831
adam radfordcd50ba82010-12-21 10:23:23 -08004832 return 0;
4833
4834fail_fw_init:
4835
4836 pci_free_consistent(instance->pdev, reply_q_sz,
4837 instance->reply_queue, instance->reply_queue_h);
4838fail_reply_queue:
4839 megasas_free_cmds(instance);
4840
4841fail_alloc_cmds:
adam radfordcd50ba82010-12-21 10:23:23 -08004842 return 1;
4843}
4844
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05304845/*
4846 * megasas_setup_irqs_msix - register legacy interrupts.
4847 * @instance: Adapter soft state
4848 *
4849 * Do not enable interrupt, only setup ISRs.
4850 *
4851 * Return 0 on success.
4852 */
4853static int
4854megasas_setup_irqs_ioapic(struct megasas_instance *instance)
4855{
4856 struct pci_dev *pdev;
4857
4858 pdev = instance->pdev;
4859 instance->irq_context[0].instance = instance;
4860 instance->irq_context[0].MSIxIndex = 0;
4861 if (request_irq(pdev->irq, instance->instancet->service_isr,
4862 IRQF_SHARED, "megasas", &instance->irq_context[0])) {
4863 dev_err(&instance->pdev->dev,
4864 "Failed to register IRQ from %s %d\n",
4865 __func__, __LINE__);
4866 return -1;
4867 }
4868 return 0;
4869}
4870
4871/**
4872 * megasas_setup_irqs_msix - register MSI-x interrupts.
4873 * @instance: Adapter soft state
4874 * @is_probe: Driver probe check
4875 *
4876 * Do not enable interrupt, only setup ISRs.
4877 *
4878 * Return 0 on success.
4879 */
4880static int
4881megasas_setup_irqs_msix(struct megasas_instance *instance, u8 is_probe)
4882{
4883 int i, j, cpu;
4884 struct pci_dev *pdev;
4885
4886 pdev = instance->pdev;
4887
4888 /* Try MSI-x */
4889 cpu = cpumask_first(cpu_online_mask);
4890 for (i = 0; i < instance->msix_vectors; i++) {
4891 instance->irq_context[i].instance = instance;
4892 instance->irq_context[i].MSIxIndex = i;
4893 if (request_irq(instance->msixentry[i].vector,
4894 instance->instancet->service_isr, 0, "megasas",
4895 &instance->irq_context[i])) {
4896 dev_err(&instance->pdev->dev,
4897 "Failed to register IRQ for vector %d.\n", i);
4898 for (j = 0; j < i; j++) {
4899 if (smp_affinity_enable)
4900 irq_set_affinity_hint(
4901 instance->msixentry[j].vector, NULL);
4902 free_irq(instance->msixentry[j].vector,
4903 &instance->irq_context[j]);
4904 }
4905 /* Retry irq register for IO_APIC*/
4906 instance->msix_vectors = 0;
4907 if (is_probe)
4908 return megasas_setup_irqs_ioapic(instance);
4909 else
4910 return -1;
4911 }
4912 if (smp_affinity_enable) {
4913 if (irq_set_affinity_hint(instance->msixentry[i].vector,
4914 get_cpu_mask(cpu)))
4915 dev_err(&instance->pdev->dev,
4916 "Failed to set affinity hint"
4917 " for cpu %d\n", cpu);
4918 cpu = cpumask_next(cpu, cpu_online_mask);
4919 }
4920 }
4921 return 0;
4922}
4923
4924/*
4925 * megasas_destroy_irqs- unregister interrupts.
4926 * @instance: Adapter soft state
4927 * return: void
4928 */
4929static void
4930megasas_destroy_irqs(struct megasas_instance *instance) {
4931
4932 int i;
4933
4934 if (instance->msix_vectors)
4935 for (i = 0; i < instance->msix_vectors; i++) {
4936 if (smp_affinity_enable)
4937 irq_set_affinity_hint(
4938 instance->msixentry[i].vector, NULL);
4939 free_irq(instance->msixentry[i].vector,
4940 &instance->irq_context[i]);
4941 }
4942 else
4943 free_irq(instance->pdev->irq, &instance->irq_context[0]);
4944}
4945
adam radfordcd50ba82010-12-21 10:23:23 -08004946/**
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05304947 * megasas_setup_jbod_map - setup jbod map for FP seq_number.
4948 * @instance: Adapter soft state
4949 * @is_probe: Driver probe check
4950 *
4951 * Return 0 on success.
4952 */
4953void
4954megasas_setup_jbod_map(struct megasas_instance *instance)
4955{
4956 int i;
4957 struct fusion_context *fusion = instance->ctrl_context;
4958 u32 pd_seq_map_sz;
4959
4960 pd_seq_map_sz = sizeof(struct MR_PD_CFG_SEQ_NUM_SYNC) +
4961 (sizeof(struct MR_PD_CFG_SEQ) * (MAX_PHYSICAL_DEVICES - 1));
4962
4963 if (reset_devices || !fusion ||
4964 !instance->ctrl_info->adapterOperations3.useSeqNumJbodFP) {
4965 dev_info(&instance->pdev->dev,
4966 "Jbod map is not supported %s %d\n",
4967 __func__, __LINE__);
4968 instance->use_seqnum_jbod_fp = false;
4969 return;
4970 }
4971
4972 if (fusion->pd_seq_sync[0])
4973 goto skip_alloc;
4974
4975 for (i = 0; i < JBOD_MAPS_COUNT; i++) {
4976 fusion->pd_seq_sync[i] = dma_alloc_coherent
4977 (&instance->pdev->dev, pd_seq_map_sz,
4978 &fusion->pd_seq_phys[i], GFP_KERNEL);
4979 if (!fusion->pd_seq_sync[i]) {
4980 dev_err(&instance->pdev->dev,
4981 "Failed to allocate memory from %s %d\n",
4982 __func__, __LINE__);
4983 if (i == 1) {
4984 dma_free_coherent(&instance->pdev->dev,
4985 pd_seq_map_sz, fusion->pd_seq_sync[0],
4986 fusion->pd_seq_phys[0]);
4987 fusion->pd_seq_sync[0] = NULL;
4988 }
4989 instance->use_seqnum_jbod_fp = false;
4990 return;
4991 }
4992 }
4993
4994skip_alloc:
4995 if (!megasas_sync_pd_seq_num(instance, false) &&
4996 !megasas_sync_pd_seq_num(instance, true))
4997 instance->use_seqnum_jbod_fp = true;
4998 else
4999 instance->use_seqnum_jbod_fp = false;
5000}
5001
5002/**
adam radfordcd50ba82010-12-21 10:23:23 -08005003 * megasas_init_fw - Initializes the FW
5004 * @instance: Adapter soft state
5005 *
5006 * This is the main function for initializing firmware
5007 */
5008
5009static int megasas_init_fw(struct megasas_instance *instance)
5010{
5011 u32 max_sectors_1;
5012 u32 max_sectors_2;
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305013 u32 tmp_sectors, msix_enable, scratch_pad_2;
Ben Collins11f8a7b2013-09-13 12:46:44 -04005014 resource_size_t base_addr;
adam radfordcd50ba82010-12-21 10:23:23 -08005015 struct megasas_register_set __iomem *reg_set;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305016 struct megasas_ctrl_info *ctrl_info = NULL;
adam radfordcd50ba82010-12-21 10:23:23 -08005017 unsigned long bar_list;
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305018 int i, loop, fw_msix_count = 0;
adam radford229fe472014-03-10 02:51:56 -07005019 struct IOV_111 *iovPtr;
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305020 struct fusion_context *fusion;
5021
5022 fusion = instance->ctrl_context;
adam radfordcd50ba82010-12-21 10:23:23 -08005023
5024 /* Find first memory bar */
5025 bar_list = pci_select_bars(instance->pdev, IORESOURCE_MEM);
Christophe JAILLET51f90392016-08-21 10:28:25 +02005026 instance->bar = find_first_bit(&bar_list, BITS_PER_LONG);
Yinghai Lue7f85162016-08-05 23:37:34 -07005027 if (pci_request_selected_regions(instance->pdev, 1<<instance->bar,
adam radfordcd50ba82010-12-21 10:23:23 -08005028 "megasas: LSI")) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005029 dev_printk(KERN_DEBUG, &instance->pdev->dev, "IO memory region busy!\n");
adam radfordcd50ba82010-12-21 10:23:23 -08005030 return -EBUSY;
5031 }
5032
Ben Collins11f8a7b2013-09-13 12:46:44 -04005033 base_addr = pci_resource_start(instance->pdev, instance->bar);
5034 instance->reg_set = ioremap_nocache(base_addr, 8192);
adam radfordcd50ba82010-12-21 10:23:23 -08005035
5036 if (!instance->reg_set) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005037 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to map IO mem\n");
adam radfordcd50ba82010-12-21 10:23:23 -08005038 goto fail_ioremap;
5039 }
5040
5041 reg_set = instance->reg_set;
5042
5043 switch (instance->pdev->device) {
adam radford9c915a82010-12-21 13:34:31 -08005044 case PCI_DEVICE_ID_LSI_FUSION:
adam radford229fe472014-03-10 02:51:56 -07005045 case PCI_DEVICE_ID_LSI_PLASMA:
adam radford36807e62011-10-08 18:15:06 -07005046 case PCI_DEVICE_ID_LSI_INVADER:
Sumit.Saxena@lsi.com21d3c712013-05-22 12:31:43 +05305047 case PCI_DEVICE_ID_LSI_FURY:
sumit.saxena@avagotech.com90c204b2015-10-15 13:39:44 +05305048 case PCI_DEVICE_ID_LSI_INTRUDER:
5049 case PCI_DEVICE_ID_LSI_INTRUDER_24:
sumit.saxena@avagotech.com7364d342015-10-15 13:39:54 +05305050 case PCI_DEVICE_ID_LSI_CUTLASS_52:
5051 case PCI_DEVICE_ID_LSI_CUTLASS_53:
adam radford9c915a82010-12-21 13:34:31 -08005052 instance->instancet = &megasas_instance_template_fusion;
5053 break;
adam radfordcd50ba82010-12-21 10:23:23 -08005054 case PCI_DEVICE_ID_LSI_SAS1078R:
5055 case PCI_DEVICE_ID_LSI_SAS1078DE:
5056 instance->instancet = &megasas_instance_template_ppc;
5057 break;
5058 case PCI_DEVICE_ID_LSI_SAS1078GEN2:
5059 case PCI_DEVICE_ID_LSI_SAS0079GEN2:
5060 instance->instancet = &megasas_instance_template_gen2;
5061 break;
5062 case PCI_DEVICE_ID_LSI_SAS0073SKINNY:
5063 case PCI_DEVICE_ID_LSI_SAS0071SKINNY:
5064 instance->instancet = &megasas_instance_template_skinny;
5065 break;
5066 case PCI_DEVICE_ID_LSI_SAS1064R:
5067 case PCI_DEVICE_ID_DELL_PERC5:
5068 default:
5069 instance->instancet = &megasas_instance_template_xscale;
5070 break;
5071 }
5072
Sumit.Saxena@lsi.com6431f5d2013-07-16 02:26:05 +05305073 if (megasas_transition_to_ready(instance, 0)) {
5074 atomic_set(&instance->fw_reset_no_pci_access, 1);
5075 instance->instancet->adp_reset
5076 (instance, instance->reg_set);
5077 atomic_set(&instance->fw_reset_no_pci_access, 0);
5078 dev_info(&instance->pdev->dev,
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005079 "FW restarted successfully from %s!\n",
Sumit.Saxena@lsi.com6431f5d2013-07-16 02:26:05 +05305080 __func__);
5081
5082 /*waitting for about 30 second before retry*/
5083 ssleep(30);
5084
5085 if (megasas_transition_to_ready(instance, 0))
5086 goto fail_ready_state;
5087 }
adam radfordcd50ba82010-12-21 10:23:23 -08005088
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305089 /*
5090 * MSI-X host index 0 is common for all adapter.
5091 * It is used for all MPT based Adapters.
5092 */
5093 instance->reply_post_host_index_addr[0] =
Christoph Hellwig8a232bb2015-04-23 16:32:39 +05305094 (u32 __iomem *)((u8 __iomem *)instance->reg_set +
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305095 MPI2_REPLY_POST_HOST_INDEX_OFFSET);
5096
adam radford3f1abce2011-05-11 18:33:47 -07005097 /* Check if MSI-X is supported while in ready state */
5098 msix_enable = (instance->instancet->read_fw_status_reg(reg_set) &
5099 0x4000000) >> 0x1a;
adam radfordc8e858f2011-10-08 18:15:13 -07005100 if (msix_enable && !msix_disable) {
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305101 scratch_pad_2 = readl
5102 (&instance->reg_set->outbound_scratch_pad_2);
adam radfordc8e858f2011-10-08 18:15:13 -07005103 /* Check max MSI-X vectors */
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305104 if (fusion) {
5105 if (fusion->adapter_type == THUNDERBOLT_SERIES) { /* Thunderbolt Series*/
5106 instance->msix_vectors = (scratch_pad_2
5107 & MR_MAX_REPLY_QUEUES_OFFSET) + 1;
5108 fw_msix_count = instance->msix_vectors;
5109 } else { /* Invader series supports more than 8 MSI-x vectors*/
5110 instance->msix_vectors = ((scratch_pad_2
5111 & MR_MAX_REPLY_QUEUES_EXT_OFFSET)
5112 >> MR_MAX_REPLY_QUEUES_EXT_OFFSET_SHIFT) + 1;
Sumit Saxena179ac142016-01-28 21:04:28 +05305113 if (rdpq_enable)
5114 instance->is_rdpq = (scratch_pad_2 & MR_RDPQ_MODE_OFFSET) ?
5115 1 : 0;
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305116 fw_msix_count = instance->msix_vectors;
5117 /* Save 1-15 reply post index address to local memory
5118 * Index 0 is already saved from reg offset
5119 * MPI2_REPLY_POST_HOST_INDEX_OFFSET
5120 */
5121 for (loop = 1; loop < MR_MAX_MSIX_REG_ARRAY; loop++) {
5122 instance->reply_post_host_index_addr[loop] =
5123 (u32 __iomem *)
5124 ((u8 __iomem *)instance->reg_set +
5125 MPI2_SUP_REPLY_POST_HOST_INDEX_OFFSET
5126 + (loop * 0x10));
5127 }
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305128 }
5129 if (msix_vectors)
5130 instance->msix_vectors = min(msix_vectors,
5131 instance->msix_vectors);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305132 } else /* MFI adapters */
adam radfordc8e858f2011-10-08 18:15:13 -07005133 instance->msix_vectors = 1;
5134 /* Don't bother allocating more MSI-X vectors than cpus */
5135 instance->msix_vectors = min(instance->msix_vectors,
5136 (unsigned int)num_online_cpus());
5137 for (i = 0; i < instance->msix_vectors; i++)
5138 instance->msixentry[i].entry = i;
Alexander Gordeev8ae80ed2014-08-18 08:01:44 +02005139 i = pci_enable_msix_range(instance->pdev, instance->msixentry,
5140 1, instance->msix_vectors);
Jiang Liuc12de882014-11-03 20:44:20 +08005141 if (i > 0)
Alexander Gordeev8ae80ed2014-08-18 08:01:44 +02005142 instance->msix_vectors = i;
5143 else
adam radfordc8e858f2011-10-08 18:15:13 -07005144 instance->msix_vectors = 0;
5145 }
adam radford3f1abce2011-05-11 18:33:47 -07005146
Tomas Henzl258c3af2015-06-02 16:09:46 +05305147 dev_info(&instance->pdev->dev,
5148 "firmware supports msix\t: (%d)", fw_msix_count);
5149 dev_info(&instance->pdev->dev,
5150 "current msix/online cpus\t: (%d/%d)\n",
5151 instance->msix_vectors, (unsigned int)num_online_cpus());
Sumit Saxena179ac142016-01-28 21:04:28 +05305152 dev_info(&instance->pdev->dev,
5153 "RDPQ mode\t: (%s)\n", instance->is_rdpq ? "enabled" : "disabled");
Tomas Henzl258c3af2015-06-02 16:09:46 +05305154
sumit.saxena@avagotech.com91626c22015-10-15 13:40:34 +05305155 tasklet_init(&instance->isr_tasklet, instance->instancet->tasklet,
5156 (unsigned long)instance);
5157
Tomas Henzl258c3af2015-06-02 16:09:46 +05305158 if (instance->msix_vectors ?
5159 megasas_setup_irqs_msix(instance, 1) :
5160 megasas_setup_irqs_ioapic(instance))
5161 goto fail_setup_irqs;
5162
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305163 instance->ctrl_info = kzalloc(sizeof(struct megasas_ctrl_info),
5164 GFP_KERNEL);
5165 if (instance->ctrl_info == NULL)
5166 goto fail_init_adapter;
5167
5168 /*
5169 * Below are default value for legacy Firmware.
5170 * non-fusion based controllers
5171 */
5172 instance->fw_supported_vd_count = MAX_LOGICAL_DRIVES;
5173 instance->fw_supported_pd_count = MAX_PHYSICAL_DEVICES;
adam radfordcd50ba82010-12-21 10:23:23 -08005174 /* Get operational params, sge flags, send init cmd to controller */
5175 if (instance->instancet->init_adapter(instance))
adam radfordeb1b1232011-02-24 20:55:56 -08005176 goto fail_init_adapter;
adam radfordcd50ba82010-12-21 10:23:23 -08005177
Tomas Henzl258c3af2015-06-02 16:09:46 +05305178
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305179 instance->instancet->enable_intr(instance);
adam radfordcd50ba82010-12-21 10:23:23 -08005180
Andy Lutomirski13f30772016-05-03 10:24:31 -07005181 dev_info(&instance->pdev->dev, "INIT adapter done\n");
adam radfordcd50ba82010-12-21 10:23:23 -08005182
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05305183 megasas_setup_jbod_map(instance);
5184
bo yang39a98552010-09-22 22:36:29 -04005185 /** for passthrough
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005186 * the following function will get the PD LIST.
5187 */
5188 memset(instance->pd_list, 0,
Yang, Bo81e403c2009-10-06 14:27:54 -06005189 (MEGASAS_MAX_PD * sizeof(struct megasas_pd_list)));
Hannes Reinecke58968fc2014-01-16 11:25:36 +01005190 if (megasas_get_pd_list(instance) < 0) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005191 dev_err(&instance->pdev->dev, "failed to get PD list\n");
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305192 goto fail_get_pd_list;
Hannes Reinecke58968fc2014-01-16 11:25:36 +01005193 }
Yang, Bo81e403c2009-10-06 14:27:54 -06005194
Yang, Bobdc6fb82009-12-06 08:30:19 -07005195 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
adam radford21c9e162013-09-06 15:27:14 -07005196 if (megasas_ld_list_query(instance,
5197 MR_LD_QUERY_TYPE_EXPOSED_TO_HOST))
5198 megasas_get_ld_list(instance);
Yang, Bobdc6fb82009-12-06 08:30:19 -07005199
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005200 /*
5201 * Compute the max allowed sectors per IO: The controller info has two
5202 * limits on max sectors. Driver should use the minimum of these two.
5203 *
5204 * 1 << stripe_sz_ops.min = max sectors per strip
5205 *
5206 * Note that older firmwares ( < FW ver 30) didn't report information
5207 * to calculate max_sectors_1. So the number ended up as zero always.
5208 */
bo yang14faea92007-11-09 04:14:00 -05005209 tmp_sectors = 0;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305210 ctrl_info = instance->ctrl_info;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005211
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305212 max_sectors_1 = (1 << ctrl_info->stripe_sz_ops.min) *
5213 le16_to_cpu(ctrl_info->max_strips_per_io);
5214 max_sectors_2 = le32_to_cpu(ctrl_info->max_request_size);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005215
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005216 tmp_sectors = min_t(u32, max_sectors_1, max_sectors_2);
Sumit.Saxena@lsi.com404a8a12013-05-22 12:35:33 +05305217
Sumit Saxena8f67c8c2016-01-28 21:14:25 +05305218 instance->peerIsPresent = ctrl_info->cluster.peerIsPresent;
5219 instance->passive = ctrl_info->cluster.passive;
5220 memcpy(instance->clusterId, ctrl_info->clusterId, sizeof(instance->clusterId));
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305221 instance->UnevenSpanSupport =
5222 ctrl_info->adapterOperations2.supportUnevenSpans;
5223 if (instance->UnevenSpanSupport) {
5224 struct fusion_context *fusion = instance->ctrl_context;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305225 if (MR_ValidateMapInfo(instance))
5226 fusion->fast_path_io = 1;
5227 else
5228 fusion->fast_path_io = 0;
5229
5230 }
5231 if (ctrl_info->host_interface.SRIOV) {
sumit.saxena@avagotech.com92bb6502015-08-31 17:24:11 +05305232 instance->requestorId = ctrl_info->iov.requestorId;
5233 if (instance->pdev->device == PCI_DEVICE_ID_LSI_PLASMA) {
5234 if (!ctrl_info->adapterOperations2.activePassive)
5235 instance->PlasmaFW111 = 1;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305236
sumit.saxena@avagotech.com92bb6502015-08-31 17:24:11 +05305237 dev_info(&instance->pdev->dev, "SR-IOV: firmware type: %s\n",
5238 instance->PlasmaFW111 ? "1.11" : "new");
5239
5240 if (instance->PlasmaFW111) {
5241 iovPtr = (struct IOV_111 *)
5242 ((unsigned char *)ctrl_info + IOV_111_OFFSET);
5243 instance->requestorId = iovPtr->requestorId;
5244 }
Sumit.Saxena@lsi.com404a8a12013-05-22 12:35:33 +05305245 }
sumit.saxena@avagotech.com92bb6502015-08-31 17:24:11 +05305246 dev_info(&instance->pdev->dev, "SRIOV: VF requestorId %d\n",
5247 instance->requestorId);
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305248 }
Sumit.Saxena@lsi.combc93d422013-05-22 12:35:04 +05305249
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305250 instance->crash_dump_fw_support =
5251 ctrl_info->adapterOperations3.supportCrashDump;
5252 instance->crash_dump_drv_support =
5253 (instance->crash_dump_fw_support &&
5254 instance->crash_dump_buf);
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305255 if (instance->crash_dump_drv_support)
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305256 megasas_set_crash_dump_params(instance,
5257 MR_CRASH_BUF_TURN_OFF);
adam radford229fe472014-03-10 02:51:56 -07005258
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305259 else {
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305260 if (instance->crash_dump_buf)
5261 pci_free_consistent(instance->pdev,
5262 CRASH_DMA_BUF_SIZE,
5263 instance->crash_dump_buf,
5264 instance->crash_dump_h);
5265 instance->crash_dump_buf = NULL;
bo yang14faea92007-11-09 04:14:00 -05005266 }
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05305267
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305268
5269 dev_info(&instance->pdev->dev,
5270 "pci id\t\t: (0x%04x)/(0x%04x)/(0x%04x)/(0x%04x)\n",
5271 le16_to_cpu(ctrl_info->pci.vendor_id),
5272 le16_to_cpu(ctrl_info->pci.device_id),
5273 le16_to_cpu(ctrl_info->pci.sub_vendor_id),
5274 le16_to_cpu(ctrl_info->pci.sub_device_id));
5275 dev_info(&instance->pdev->dev, "unevenspan support : %s\n",
5276 instance->UnevenSpanSupport ? "yes" : "no");
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305277 dev_info(&instance->pdev->dev, "firmware crash dump : %s\n",
5278 instance->crash_dump_drv_support ? "yes" : "no");
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05305279 dev_info(&instance->pdev->dev, "jbod sync map : %s\n",
5280 instance->use_seqnum_jbod_fp ? "yes" : "no");
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305281
5282
bo yang14faea92007-11-09 04:14:00 -05005283 instance->max_sectors_per_req = instance->max_num_sge *
sumit.saxena@avagotech.com357ae962015-10-15 13:40:04 +05305284 SGE_BUFFER_SIZE / 512;
bo yang14faea92007-11-09 04:14:00 -05005285 if (tmp_sectors && (instance->max_sectors_per_req > tmp_sectors))
5286 instance->max_sectors_per_req = tmp_sectors;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005287
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05305288 /* Check for valid throttlequeuedepth module parameter */
5289 if (throttlequeuedepth &&
5290 throttlequeuedepth <= instance->max_scsi_cmds)
5291 instance->throttlequeuedepth = throttlequeuedepth;
5292 else
5293 instance->throttlequeuedepth =
5294 MEGASAS_THROTTLE_QUEUE_DEPTH;
5295
Shivasharan S7efc4152017-08-23 04:46:56 -07005296 if ((resetwaittime < 1) ||
5297 (resetwaittime > MEGASAS_RESET_WAIT_TIME))
Sumit Saxenae3d178c2016-01-28 21:04:34 +05305298 resetwaittime = MEGASAS_RESET_WAIT_TIME;
5299
5300 if ((scmd_timeout < 10) || (scmd_timeout > MEGASAS_DEFAULT_CMD_TIMEOUT))
5301 scmd_timeout = MEGASAS_DEFAULT_CMD_TIMEOUT;
bo yangad84db22007-11-09 04:40:16 -05005302
adam radford229fe472014-03-10 02:51:56 -07005303 /* Launch SR-IOV heartbeat timer */
5304 if (instance->requestorId) {
5305 if (!megasas_sriov_start_heartbeat(instance, 1))
5306 megasas_start_timer(instance,
5307 &instance->sriov_heartbeat_timer,
5308 megasas_sriov_heartbeat_handler,
5309 MEGASAS_SRIOV_HEARTBEAT_INTERVAL_VF);
5310 else
5311 instance->skip_heartbeat_timer_del = 1;
5312 }
5313
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005314 return 0;
5315
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305316fail_get_pd_list:
5317 instance->instancet->disable_intr(instance);
adam radfordeb1b1232011-02-24 20:55:56 -08005318fail_init_adapter:
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305319 megasas_destroy_irqs(instance);
5320fail_setup_irqs:
5321 if (instance->msix_vectors)
5322 pci_disable_msix(instance->pdev);
5323 instance->msix_vectors = 0;
adam radfordcd50ba82010-12-21 10:23:23 -08005324fail_ready_state:
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305325 kfree(instance->ctrl_info);
5326 instance->ctrl_info = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005327 iounmap(instance->reg_set);
5328
5329 fail_ioremap:
Yinghai Lue7f85162016-08-05 23:37:34 -07005330 pci_release_selected_regions(instance->pdev, 1<<instance->bar);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005331
5332 return -EINVAL;
5333}
5334
5335/**
5336 * megasas_release_mfi - Reverses the FW initialization
Geert Uytterhoeven4b63b282015-03-03 11:58:07 +01005337 * @instance: Adapter soft state
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005338 */
5339static void megasas_release_mfi(struct megasas_instance *instance)
5340{
adam radford9c915a82010-12-21 13:34:31 -08005341 u32 reply_q_sz = sizeof(u32) *(instance->max_mfi_cmds + 1);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005342
adam radford9c915a82010-12-21 13:34:31 -08005343 if (instance->reply_queue)
5344 pci_free_consistent(instance->pdev, reply_q_sz,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005345 instance->reply_queue, instance->reply_queue_h);
5346
5347 megasas_free_cmds(instance);
5348
5349 iounmap(instance->reg_set);
5350
Yinghai Lue7f85162016-08-05 23:37:34 -07005351 pci_release_selected_regions(instance->pdev, 1<<instance->bar);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005352}
5353
5354/**
5355 * megasas_get_seq_num - Gets latest event sequence numbers
5356 * @instance: Adapter soft state
5357 * @eli: FW event log sequence numbers information
5358 *
5359 * FW maintains a log of all events in a non-volatile area. Upper layers would
5360 * usually find out the latest sequence number of the events, the seq number at
5361 * the boot etc. They would "read" all the events below the latest seq number
5362 * by issuing a direct fw cmd (DCMD). For the future events (beyond latest seq
5363 * number), they would subsribe to AEN (asynchronous event notification) and
5364 * wait for the events to happen.
5365 */
5366static int
5367megasas_get_seq_num(struct megasas_instance *instance,
5368 struct megasas_evt_log_info *eli)
5369{
5370 struct megasas_cmd *cmd;
5371 struct megasas_dcmd_frame *dcmd;
5372 struct megasas_evt_log_info *el_info;
5373 dma_addr_t el_info_h = 0;
5374
5375 cmd = megasas_get_cmd(instance);
5376
5377 if (!cmd) {
5378 return -ENOMEM;
5379 }
5380
5381 dcmd = &cmd->frame->dcmd;
5382 el_info = pci_alloc_consistent(instance->pdev,
5383 sizeof(struct megasas_evt_log_info),
5384 &el_info_h);
5385
5386 if (!el_info) {
5387 megasas_return_cmd(instance, cmd);
5388 return -ENOMEM;
5389 }
5390
5391 memset(el_info, 0, sizeof(*el_info));
5392 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
5393
5394 dcmd->cmd = MFI_CMD_DCMD;
5395 dcmd->cmd_status = 0x0;
5396 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305397 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005398 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07005399 dcmd->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305400 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct megasas_evt_log_info));
5401 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_EVENT_GET_INFO);
5402 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(el_info_h);
5403 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct megasas_evt_log_info));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005404
Sumit Saxena6d40afb2016-01-28 21:04:23 +05305405 if (megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS) ==
5406 DCMD_SUCCESS) {
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05305407 /*
5408 * Copy the data back into callers buffer
5409 */
Christoph Hellwig48100b02015-04-23 16:33:24 +05305410 eli->newest_seq_num = el_info->newest_seq_num;
5411 eli->oldest_seq_num = el_info->oldest_seq_num;
5412 eli->clear_seq_num = el_info->clear_seq_num;
5413 eli->shutdown_seq_num = el_info->shutdown_seq_num;
5414 eli->boot_seq_num = el_info->boot_seq_num;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05305415 } else
5416 dev_err(&instance->pdev->dev, "DCMD failed "
5417 "from %s\n", __func__);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005418
5419 pci_free_consistent(instance->pdev, sizeof(struct megasas_evt_log_info),
5420 el_info, el_info_h);
5421
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05305422 megasas_return_cmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005423
5424 return 0;
5425}
5426
5427/**
5428 * megasas_register_aen - Registers for asynchronous event notification
5429 * @instance: Adapter soft state
5430 * @seq_num: The starting sequence number
5431 * @class_locale: Class of the event
5432 *
5433 * This function subscribes for AEN for events beyond the @seq_num. It requests
5434 * to be notified if and only if the event is of type @class_locale
5435 */
5436static int
5437megasas_register_aen(struct megasas_instance *instance, u32 seq_num,
5438 u32 class_locale_word)
5439{
5440 int ret_val;
5441 struct megasas_cmd *cmd;
5442 struct megasas_dcmd_frame *dcmd;
5443 union megasas_evt_class_locale curr_aen;
5444 union megasas_evt_class_locale prev_aen;
5445
5446 /*
5447 * If there an AEN pending already (aen_cmd), check if the
5448 * class_locale of that pending AEN is inclusive of the new
5449 * AEN request we currently have. If it is, then we don't have
5450 * to do anything. In other words, whichever events the current
5451 * AEN request is subscribing to, have already been subscribed
5452 * to.
5453 *
5454 * If the old_cmd is _not_ inclusive, then we have to abort
5455 * that command, form a class_locale that is superset of both
5456 * old and current and re-issue to the FW
5457 */
5458
5459 curr_aen.word = class_locale_word;
5460
5461 if (instance->aen_cmd) {
5462
Christoph Hellwiga9555532015-04-23 16:34:24 +05305463 prev_aen.word =
5464 le32_to_cpu(instance->aen_cmd->frame->dcmd.mbox.w[1]);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005465
Shivasharan Sc62da792017-08-23 04:47:01 -07005466 if ((curr_aen.members.class < MFI_EVT_CLASS_DEBUG) ||
5467 (curr_aen.members.class > MFI_EVT_CLASS_DEAD)) {
5468 dev_info(&instance->pdev->dev,
5469 "%s %d out of range class %d send by application\n",
5470 __func__, __LINE__, curr_aen.members.class);
5471 return 0;
5472 }
5473
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005474 /*
5475 * A class whose enum value is smaller is inclusive of all
5476 * higher values. If a PROGRESS (= -1) was previously
5477 * registered, then a new registration requests for higher
5478 * classes need not be sent to FW. They are automatically
5479 * included.
5480 *
5481 * Locale numbers don't have such hierarchy. They are bitmap
5482 * values
5483 */
5484 if ((prev_aen.members.class <= curr_aen.members.class) &&
Sumit.Saxena@lsi.com3993a862013-09-16 15:18:06 +05305485 !((prev_aen.members.locale & curr_aen.members.locale) ^
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005486 curr_aen.members.locale)) {
5487 /*
5488 * Previously issued event registration includes
5489 * current request. Nothing to do.
5490 */
5491 return 0;
5492 } else {
Sumit.Saxena@lsi.com3993a862013-09-16 15:18:06 +05305493 curr_aen.members.locale |= prev_aen.members.locale;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005494
5495 if (prev_aen.members.class < curr_aen.members.class)
5496 curr_aen.members.class = prev_aen.members.class;
5497
5498 instance->aen_cmd->abort_aen = 1;
5499 ret_val = megasas_issue_blocked_abort_cmd(instance,
5500 instance->
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05305501 aen_cmd, 30);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005502
5503 if (ret_val) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005504 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to abort "
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005505 "previous AEN command\n");
5506 return ret_val;
5507 }
5508 }
5509 }
5510
5511 cmd = megasas_get_cmd(instance);
5512
5513 if (!cmd)
5514 return -ENOMEM;
5515
5516 dcmd = &cmd->frame->dcmd;
5517
5518 memset(instance->evt_detail, 0, sizeof(struct megasas_evt_detail));
5519
5520 /*
5521 * Prepare DCMD for aen registration
5522 */
5523 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
5524
5525 dcmd->cmd = MFI_CMD_DCMD;
5526 dcmd->cmd_status = 0x0;
5527 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305528 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005529 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07005530 dcmd->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305531 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct megasas_evt_detail));
5532 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_EVENT_WAIT);
5533 dcmd->mbox.w[0] = cpu_to_le32(seq_num);
bo yang39a98552010-09-22 22:36:29 -04005534 instance->last_seq_num = seq_num;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305535 dcmd->mbox.w[1] = cpu_to_le32(curr_aen.word);
5536 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(instance->evt_detail_h);
5537 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct megasas_evt_detail));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005538
Yang, Bof4c9a132009-10-06 14:43:28 -06005539 if (instance->aen_cmd != NULL) {
5540 megasas_return_cmd(instance, cmd);
5541 return 0;
5542 }
5543
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005544 /*
5545 * Store reference to the cmd used to register for AEN. When an
5546 * application wants us to register for AEN, we have to abort this
5547 * cmd and re-register with a new EVENT LOCALE supplied by that app
5548 */
5549 instance->aen_cmd = cmd;
5550
5551 /*
5552 * Issue the aen registration frame
5553 */
adam radford9c915a82010-12-21 13:34:31 -08005554 instance->instancet->issue_dcmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005555
5556 return 0;
5557}
5558
5559/**
5560 * megasas_start_aen - Subscribes to AEN during driver load time
5561 * @instance: Adapter soft state
5562 */
5563static int megasas_start_aen(struct megasas_instance *instance)
5564{
5565 struct megasas_evt_log_info eli;
5566 union megasas_evt_class_locale class_locale;
5567
5568 /*
5569 * Get the latest sequence number from FW
5570 */
5571 memset(&eli, 0, sizeof(eli));
5572
5573 if (megasas_get_seq_num(instance, &eli))
5574 return -1;
5575
5576 /*
5577 * Register AEN with FW for latest sequence number plus 1
5578 */
5579 class_locale.members.reserved = 0;
5580 class_locale.members.locale = MR_EVT_LOCALE_ALL;
5581 class_locale.members.class = MR_EVT_CLASS_DEBUG;
5582
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305583 return megasas_register_aen(instance,
Christoph Hellwig48100b02015-04-23 16:33:24 +05305584 le32_to_cpu(eli.newest_seq_num) + 1,
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305585 class_locale.word);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005586}
5587
5588/**
5589 * megasas_io_attach - Attaches this driver to SCSI mid-layer
5590 * @instance: Adapter soft state
5591 */
5592static int megasas_io_attach(struct megasas_instance *instance)
5593{
5594 struct Scsi_Host *host = instance->host;
5595
5596 /*
5597 * Export parameters required by SCSI mid-layer
5598 */
5599 host->irq = instance->pdev->irq;
5600 host->unique_id = instance->unique_id;
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05305601 host->can_queue = instance->max_scsi_cmds;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005602 host->this_id = instance->init_id;
5603 host->sg_tablesize = instance->max_num_sge;
adam radford42a8d2b2011-02-24 20:57:09 -08005604
5605 if (instance->fw_support_ieee)
5606 instance->max_sectors_per_req = MEGASAS_MAX_SECTORS_IEEE;
5607
Yang, Bo1fd10682010-10-12 07:18:50 -06005608 /*
5609 * Check if the module parameter value for max_sectors can be used
5610 */
5611 if (max_sectors && max_sectors < instance->max_sectors_per_req)
5612 instance->max_sectors_per_req = max_sectors;
5613 else {
5614 if (max_sectors) {
5615 if (((instance->pdev->device ==
5616 PCI_DEVICE_ID_LSI_SAS1078GEN2) ||
5617 (instance->pdev->device ==
5618 PCI_DEVICE_ID_LSI_SAS0079GEN2)) &&
5619 (max_sectors <= MEGASAS_MAX_SECTORS)) {
5620 instance->max_sectors_per_req = max_sectors;
5621 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005622 dev_info(&instance->pdev->dev, "max_sectors should be > 0"
Yang, Bo1fd10682010-10-12 07:18:50 -06005623 "and <= %d (or < 1MB for GEN2 controller)\n",
5624 instance->max_sectors_per_req);
5625 }
5626 }
5627 }
5628
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005629 host->max_sectors = instance->max_sectors_per_req;
adam radford9c915a82010-12-21 13:34:31 -08005630 host->cmd_per_lun = MEGASAS_DEFAULT_CMD_PER_LUN;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005631 host->max_channel = MEGASAS_MAX_CHANNELS - 1;
5632 host->max_id = MEGASAS_MAX_DEV_PER_CHANNEL;
5633 host->max_lun = MEGASAS_MAX_LUN;
Joshua Giles122da302006-02-03 15:34:17 -08005634 host->max_cmd_len = 16;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005635
5636 /*
5637 * Notify the mid-layer about the new controller
5638 */
5639 if (scsi_add_host(host, &instance->pdev->dev)) {
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05305640 dev_err(&instance->pdev->dev,
5641 "Failed to add host from %s %d\n",
5642 __func__, __LINE__);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005643 return -ENODEV;
5644 }
5645
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005646 return 0;
5647}
5648
bo yang31ea7082007-11-07 12:09:50 -05005649static int
5650megasas_set_dma_mask(struct pci_dev *pdev)
5651{
5652 /*
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005653 * All our controllers are capable of performing 64-bit DMA
bo yang31ea7082007-11-07 12:09:50 -05005654 */
5655 if (IS_DMA64) {
Yang Hongyang6a355282009-04-06 19:01:13 -07005656 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) {
bo yang31ea7082007-11-07 12:09:50 -05005657
Yang Hongyang284901a2009-04-06 19:01:15 -07005658 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
bo yang31ea7082007-11-07 12:09:50 -05005659 goto fail_set_dma_mask;
5660 }
5661 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07005662 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
bo yang31ea7082007-11-07 12:09:50 -05005663 goto fail_set_dma_mask;
5664 }
Sumit.Saxena@lsi.com46de63e22014-02-12 23:38:44 +05305665 /*
5666 * Ensure that all data structures are allocated in 32-bit
5667 * memory.
5668 */
5669 if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) {
5670 /* Try 32bit DMA mask and 32 bit Consistent dma mask */
5671 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))
5672 && !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)))
5673 dev_info(&pdev->dev, "set 32bit DMA mask"
5674 "and 32 bit consistent mask\n");
5675 else
5676 goto fail_set_dma_mask;
5677 }
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305678
bo yang31ea7082007-11-07 12:09:50 -05005679 return 0;
5680
5681fail_set_dma_mask:
5682 return 1;
5683}
5684
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005685/**
5686 * megasas_probe_one - PCI hotplug entry point
5687 * @pdev: PCI device structure
adam radford0d490162010-12-14 19:17:17 -08005688 * @id: PCI ids of supported hotplugged adapter
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005689 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005690static int megasas_probe_one(struct pci_dev *pdev,
5691 const struct pci_device_id *id)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005692{
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305693 int rval, pos;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005694 struct Scsi_Host *host;
5695 struct megasas_instance *instance;
adam radford66192dfe2011-02-24 20:56:28 -08005696 u16 control = 0;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305697 struct fusion_context *fusion = NULL;
adam radford66192dfe2011-02-24 20:56:28 -08005698
5699 /* Reset MSI-X in the kdump kernel */
5700 if (reset_devices) {
5701 pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
5702 if (pos) {
Bjorn Helgaas99369062013-04-17 18:08:44 -06005703 pci_read_config_word(pdev, pos + PCI_MSIX_FLAGS,
adam radford66192dfe2011-02-24 20:56:28 -08005704 &control);
5705 if (control & PCI_MSIX_FLAGS_ENABLE) {
5706 dev_info(&pdev->dev, "resetting MSI-X\n");
5707 pci_write_config_word(pdev,
Bjorn Helgaas99369062013-04-17 18:08:44 -06005708 pos + PCI_MSIX_FLAGS,
adam radford66192dfe2011-02-24 20:56:28 -08005709 control &
5710 ~PCI_MSIX_FLAGS_ENABLE);
5711 }
5712 }
5713 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005714
5715 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005716 * PCI prepping: enable device set bus mastering and dma mask
5717 */
Noriyuki Fujiiaeab3fd2009-11-20 16:27:20 +09005718 rval = pci_enable_device_mem(pdev);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005719
5720 if (rval) {
5721 return rval;
5722 }
5723
5724 pci_set_master(pdev);
5725
bo yang31ea7082007-11-07 12:09:50 -05005726 if (megasas_set_dma_mask(pdev))
5727 goto fail_set_dma_mask;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005728
5729 host = scsi_host_alloc(&megasas_template,
5730 sizeof(struct megasas_instance));
5731
5732 if (!host) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005733 dev_printk(KERN_DEBUG, &pdev->dev, "scsi_host_alloc failed\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005734 goto fail_alloc_instance;
5735 }
5736
5737 instance = (struct megasas_instance *)host->hostdata;
5738 memset(instance, 0, sizeof(*instance));
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005739 atomic_set(&instance->fw_reset_no_pci_access, 0);
adam radford9c915a82010-12-21 13:34:31 -08005740 instance->pdev = pdev;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005741
adam radford9c915a82010-12-21 13:34:31 -08005742 switch (instance->pdev->device) {
5743 case PCI_DEVICE_ID_LSI_FUSION:
adam radford229fe472014-03-10 02:51:56 -07005744 case PCI_DEVICE_ID_LSI_PLASMA:
adam radford36807e62011-10-08 18:15:06 -07005745 case PCI_DEVICE_ID_LSI_INVADER:
Sumit.Saxena@lsi.com21d3c712013-05-22 12:31:43 +05305746 case PCI_DEVICE_ID_LSI_FURY:
sumit.saxena@avagotech.com90c204b2015-10-15 13:39:44 +05305747 case PCI_DEVICE_ID_LSI_INTRUDER:
5748 case PCI_DEVICE_ID_LSI_INTRUDER_24:
sumit.saxena@avagotech.com7364d342015-10-15 13:39:54 +05305749 case PCI_DEVICE_ID_LSI_CUTLASS_52:
5750 case PCI_DEVICE_ID_LSI_CUTLASS_53:
adam radford9c915a82010-12-21 13:34:31 -08005751 {
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305752 instance->ctrl_context_pages =
5753 get_order(sizeof(struct fusion_context));
5754 instance->ctrl_context = (void *)__get_free_pages(GFP_KERNEL,
5755 instance->ctrl_context_pages);
adam radford9c915a82010-12-21 13:34:31 -08005756 if (!instance->ctrl_context) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005757 dev_printk(KERN_DEBUG, &pdev->dev, "Failed to allocate "
adam radford9c915a82010-12-21 13:34:31 -08005758 "memory for Fusion context info\n");
5759 goto fail_alloc_dma_buf;
5760 }
5761 fusion = instance->ctrl_context;
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05305762 memset(fusion, 0,
5763 ((1 << PAGE_SHIFT) << instance->ctrl_context_pages));
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305764 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_FUSION) ||
5765 (instance->pdev->device == PCI_DEVICE_ID_LSI_PLASMA))
5766 fusion->adapter_type = THUNDERBOLT_SERIES;
5767 else
5768 fusion->adapter_type = INVADER_SERIES;
adam radford9c915a82010-12-21 13:34:31 -08005769 }
5770 break;
5771 default: /* For all other supported controllers */
5772
5773 instance->producer =
5774 pci_alloc_consistent(pdev, sizeof(u32),
5775 &instance->producer_h);
5776 instance->consumer =
5777 pci_alloc_consistent(pdev, sizeof(u32),
5778 &instance->consumer_h);
5779
5780 if (!instance->producer || !instance->consumer) {
Colin Ian King4086eae52016-09-12 13:42:12 +01005781 dev_printk(KERN_DEBUG, &pdev->dev, "Failed to allocate "
adam radford9c915a82010-12-21 13:34:31 -08005782 "memory for producer, consumer\n");
5783 goto fail_alloc_dma_buf;
5784 }
5785
5786 *instance->producer = 0;
5787 *instance->consumer = 0;
5788 break;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005789 }
5790
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05305791 /* Crash dump feature related initialisation*/
5792 instance->drv_buf_index = 0;
5793 instance->drv_buf_alloc = 0;
5794 instance->crash_dump_fw_support = 0;
5795 instance->crash_dump_app_support = 0;
5796 instance->fw_crash_state = UNAVAILABLE;
5797 spin_lock_init(&instance->crashdump_lock);
5798 instance->crash_dump_buf = NULL;
5799
Yang, Boc3518832009-10-06 14:18:02 -06005800 megasas_poll_wait_aen = 0;
Yang, Bof4c9a132009-10-06 14:43:28 -06005801 instance->flag_ieee = 0;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06005802 instance->ev = NULL;
bo yang39a98552010-09-22 22:36:29 -04005803 instance->issuepend_done = 1;
Sumit Saxena8a01a412016-01-28 21:04:32 +05305804 atomic_set(&instance->adprecovery, MEGASAS_HBA_OPERATIONAL);
Sumit.Saxena@lsi.com404a8a12013-05-22 12:35:33 +05305805 instance->is_imr = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005806
5807 instance->evt_detail = pci_alloc_consistent(pdev,
5808 sizeof(struct
5809 megasas_evt_detail),
5810 &instance->evt_detail_h);
5811
5812 if (!instance->evt_detail) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005813 dev_printk(KERN_DEBUG, &pdev->dev, "Failed to allocate memory for "
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005814 "event detail structure\n");
5815 goto fail_alloc_dma_buf;
5816 }
5817
Sumit Saxenac3e385a2016-04-15 00:23:30 -07005818 if (!reset_devices) {
5819 instance->system_info_buf = pci_zalloc_consistent(pdev,
5820 sizeof(struct MR_DRV_SYSTEM_INFO),
5821 &instance->system_info_h);
5822 if (!instance->system_info_buf)
5823 dev_info(&instance->pdev->dev, "Can't allocate system info buffer\n");
Sumit Saxena2216c302016-01-28 21:04:26 +05305824
Sumit Saxenac3e385a2016-04-15 00:23:30 -07005825 instance->pd_info = pci_alloc_consistent(pdev,
5826 sizeof(struct MR_PD_INFO), &instance->pd_info_h);
5827
5828 if (!instance->pd_info)
5829 dev_err(&instance->pdev->dev, "Failed to alloc mem for pd_info\n");
5830
5831 instance->crash_dump_buf = pci_alloc_consistent(pdev,
5832 CRASH_DMA_BUF_SIZE,
5833 &instance->crash_dump_h);
5834 if (!instance->crash_dump_buf)
5835 dev_err(&pdev->dev, "Can't allocate Firmware "
5836 "crash dump DMA buffer\n");
5837 }
Sumit Saxena2216c302016-01-28 21:04:26 +05305838
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005839 /*
5840 * Initialize locks and queues
5841 */
5842 INIT_LIST_HEAD(&instance->cmd_pool);
bo yang39a98552010-09-22 22:36:29 -04005843 INIT_LIST_HEAD(&instance->internal_reset_pending_q);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005844
Sumant Patroe4a082c2006-05-30 12:03:37 -07005845 atomic_set(&instance->fw_outstanding,0);
5846
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005847 init_waitqueue_head(&instance->int_cmd_wait_q);
5848 init_waitqueue_head(&instance->abort_cmd_wait_q);
5849
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05305850 spin_lock_init(&instance->mfi_pool_lock);
bo yang39a98552010-09-22 22:36:29 -04005851 spin_lock_init(&instance->hba_lock);
bo yang7343eb62007-11-09 04:35:44 -05005852 spin_lock_init(&instance->completion_lock);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005853
adam radford9c915a82010-12-21 13:34:31 -08005854 mutex_init(&instance->reset_mutex);
Sumit Saxena2216c302016-01-28 21:04:26 +05305855 mutex_init(&instance->hba_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005856
5857 /*
5858 * Initialize PCI related and misc parameters
5859 */
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005860 instance->host = host;
5861 instance->unique_id = pdev->bus->number << 8 | pdev->devfn;
5862 instance->init_id = MEGASAS_DEFAULT_INIT_ID;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305863 instance->ctrl_info = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005864
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05305865
Yang, Bo7bebf5c2009-10-06 14:40:58 -06005866 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05305867 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY))
Yang, Bof4c9a132009-10-06 14:43:28 -06005868 instance->flag_ieee = 1;
Yang, Bo7bebf5c2009-10-06 14:40:58 -06005869
Sumant Patro658dced2006-10-03 13:09:14 -07005870 megasas_dbg_lvl = 0;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07005871 instance->flag = 0;
Yang, Bo0c79e682009-10-06 14:47:35 -06005872 instance->unload = 1;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07005873 instance->last_time = 0;
bo yang39a98552010-09-22 22:36:29 -04005874 instance->disableOnlineCtrlReset = 1;
Sumit.Saxena@lsi.combc93d422013-05-22 12:35:04 +05305875 instance->UnevenSpanSupport = 0;
bo yang39a98552010-09-22 22:36:29 -04005876
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305877 if (instance->ctrl_context) {
adam radford9c915a82010-12-21 13:34:31 -08005878 INIT_WORK(&instance->work_init, megasas_fusion_ocr_wq);
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05305879 INIT_WORK(&instance->crash_init, megasas_fusion_crash_dump_wq);
5880 } else
adam radford9c915a82010-12-21 13:34:31 -08005881 INIT_WORK(&instance->work_init, process_fw_state_change_wq);
Sumant Patro658dced2006-10-03 13:09:14 -07005882
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005883 /*
adam radford0a770662011-02-24 20:56:12 -08005884 * Initialize MFI Firmware
5885 */
5886 if (megasas_init_fw(instance))
5887 goto fail_init_mfi;
5888
adam radford229fe472014-03-10 02:51:56 -07005889 if (instance->requestorId) {
5890 if (instance->PlasmaFW111) {
5891 instance->vf_affiliation_111 =
5892 pci_alloc_consistent(pdev, sizeof(struct MR_LD_VF_AFFILIATION_111),
5893 &instance->vf_affiliation_111_h);
5894 if (!instance->vf_affiliation_111)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005895 dev_warn(&pdev->dev, "Can't allocate "
adam radford229fe472014-03-10 02:51:56 -07005896 "memory for VF affiliation buffer\n");
5897 } else {
5898 instance->vf_affiliation =
5899 pci_alloc_consistent(pdev,
5900 (MAX_LOGICAL_DRIVES + 1) *
5901 sizeof(struct MR_LD_VF_AFFILIATION),
5902 &instance->vf_affiliation_h);
5903 if (!instance->vf_affiliation)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005904 dev_warn(&pdev->dev, "Can't allocate "
adam radford229fe472014-03-10 02:51:56 -07005905 "memory for VF affiliation buffer\n");
5906 }
5907 }
5908
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005909 /*
5910 * Store instance in PCI softstate
5911 */
5912 pci_set_drvdata(pdev, instance);
5913
5914 /*
5915 * Add this controller to megasas_mgmt_info structure so that it
5916 * can be exported to management applications
5917 */
5918 megasas_mgmt_info.count++;
5919 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = instance;
5920 megasas_mgmt_info.max_index++;
5921
5922 /*
adam radford541f90b2011-05-11 18:34:29 -07005923 * Register with SCSI mid-layer
5924 */
5925 if (megasas_io_attach(instance))
5926 goto fail_io_attach;
5927
5928 instance->unload = 0;
Sumit.Saxena@avagotech.comaa008322014-11-17 15:24:08 +05305929 /*
5930 * Trigger SCSI to scan our drives
5931 */
5932 scsi_scan_host(host);
adam radford541f90b2011-05-11 18:34:29 -07005933
5934 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005935 * Initiate AEN (Asynchronous Event Notification)
5936 */
5937 if (megasas_start_aen(instance)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005938 dev_printk(KERN_DEBUG, &pdev->dev, "start aen failed\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005939 goto fail_start_aen;
5940 }
5941
Adam Radford9ea81f82014-07-09 15:17:57 -07005942 /* Get current SR-IOV LD/VF affiliation */
5943 if (instance->requestorId)
5944 megasas_get_ld_vf_affiliation(instance, 1);
5945
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005946 return 0;
5947
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005948fail_start_aen:
5949fail_io_attach:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005950 megasas_mgmt_info.count--;
5951 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = NULL;
5952 megasas_mgmt_info.max_index--;
5953
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305954 instance->instancet->disable_intr(instance);
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305955 megasas_destroy_irqs(instance);
5956
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305957 if (instance->ctrl_context)
adam radfordeb1b1232011-02-24 20:55:56 -08005958 megasas_release_fusion(instance);
5959 else
5960 megasas_release_mfi(instance);
adam radfordc8e858f2011-10-08 18:15:13 -07005961 if (instance->msix_vectors)
adam radford0a770662011-02-24 20:56:12 -08005962 pci_disable_msix(instance->pdev);
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305963fail_init_mfi:
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005964fail_alloc_dma_buf:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005965 if (instance->evt_detail)
5966 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
5967 instance->evt_detail,
5968 instance->evt_detail_h);
5969
Sumit Saxena2216c302016-01-28 21:04:26 +05305970 if (instance->pd_info)
5971 pci_free_consistent(pdev, sizeof(struct MR_PD_INFO),
5972 instance->pd_info,
5973 instance->pd_info_h);
adam radfordeb1b1232011-02-24 20:55:56 -08005974 if (instance->producer)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005975 pci_free_consistent(pdev, sizeof(u32), instance->producer,
5976 instance->producer_h);
5977 if (instance->consumer)
5978 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
5979 instance->consumer_h);
5980 scsi_host_put(host);
5981
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005982fail_alloc_instance:
5983fail_set_dma_mask:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005984 pci_disable_device(pdev);
5985
5986 return -ENODEV;
5987}
5988
5989/**
5990 * megasas_flush_cache - Requests FW to flush all its caches
5991 * @instance: Adapter soft state
5992 */
5993static void megasas_flush_cache(struct megasas_instance *instance)
5994{
5995 struct megasas_cmd *cmd;
5996 struct megasas_dcmd_frame *dcmd;
5997
Sumit Saxena8a01a412016-01-28 21:04:32 +05305998 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR)
bo yang39a98552010-09-22 22:36:29 -04005999 return;
6000
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006001 cmd = megasas_get_cmd(instance);
6002
6003 if (!cmd)
6004 return;
6005
6006 dcmd = &cmd->frame->dcmd;
6007
6008 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
6009
6010 dcmd->cmd = MFI_CMD_DCMD;
6011 dcmd->cmd_status = 0x0;
6012 dcmd->sge_count = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306013 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_NONE);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006014 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07006015 dcmd->pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006016 dcmd->data_xfer_len = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306017 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_CACHE_FLUSH);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006018 dcmd->mbox.b[0] = MR_FLUSH_CTRL_CACHE | MR_FLUSH_DISK_CACHE;
6019
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306020 if (megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS)
6021 != DCMD_SUCCESS) {
6022 dev_err(&instance->pdev->dev,
6023 "return from %s %d\n", __func__, __LINE__);
6024 return;
6025 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006026
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05306027 megasas_return_cmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006028}
6029
6030/**
6031 * megasas_shutdown_controller - Instructs FW to shutdown the controller
6032 * @instance: Adapter soft state
bo yang31ea7082007-11-07 12:09:50 -05006033 * @opcode: Shutdown/Hibernate
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006034 */
bo yang31ea7082007-11-07 12:09:50 -05006035static void megasas_shutdown_controller(struct megasas_instance *instance,
6036 u32 opcode)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006037{
6038 struct megasas_cmd *cmd;
6039 struct megasas_dcmd_frame *dcmd;
6040
Sumit Saxena8a01a412016-01-28 21:04:32 +05306041 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR)
bo yang39a98552010-09-22 22:36:29 -04006042 return;
6043
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006044 cmd = megasas_get_cmd(instance);
6045
6046 if (!cmd)
6047 return;
6048
6049 if (instance->aen_cmd)
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05306050 megasas_issue_blocked_abort_cmd(instance,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306051 instance->aen_cmd, MFI_IO_TIMEOUT_SECS);
adam radford9c915a82010-12-21 13:34:31 -08006052 if (instance->map_update_cmd)
6053 megasas_issue_blocked_abort_cmd(instance,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306054 instance->map_update_cmd, MFI_IO_TIMEOUT_SECS);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306055 if (instance->jbod_seq_cmd)
6056 megasas_issue_blocked_abort_cmd(instance,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306057 instance->jbod_seq_cmd, MFI_IO_TIMEOUT_SECS);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306058
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006059 dcmd = &cmd->frame->dcmd;
6060
6061 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
6062
6063 dcmd->cmd = MFI_CMD_DCMD;
6064 dcmd->cmd_status = 0x0;
6065 dcmd->sge_count = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306066 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_NONE);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006067 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07006068 dcmd->pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006069 dcmd->data_xfer_len = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306070 dcmd->opcode = cpu_to_le32(opcode);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006071
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306072 if (megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS)
6073 != DCMD_SUCCESS) {
6074 dev_err(&instance->pdev->dev,
6075 "return from %s %d\n", __func__, __LINE__);
6076 return;
6077 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006078
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05306079 megasas_return_cmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006080}
6081
Jiri Slaby33139b22008-05-01 17:56:02 +02006082#ifdef CONFIG_PM
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006083/**
bo yangad84db22007-11-09 04:40:16 -05006084 * megasas_suspend - driver suspend entry point
6085 * @pdev: PCI device structure
bo yang31ea7082007-11-07 12:09:50 -05006086 * @state: PCI power state to suspend routine
6087 */
Jiri Slaby33139b22008-05-01 17:56:02 +02006088static int
bo yang31ea7082007-11-07 12:09:50 -05006089megasas_suspend(struct pci_dev *pdev, pm_message_t state)
6090{
6091 struct Scsi_Host *host;
6092 struct megasas_instance *instance;
6093
6094 instance = pci_get_drvdata(pdev);
6095 host = instance->host;
Yang, Bo0c79e682009-10-06 14:47:35 -06006096 instance->unload = 1;
bo yang31ea7082007-11-07 12:09:50 -05006097
adam radford229fe472014-03-10 02:51:56 -07006098 /* Shutdown SR-IOV heartbeat timer */
6099 if (instance->requestorId && !instance->skip_heartbeat_timer_del)
6100 del_timer_sync(&instance->sriov_heartbeat_timer);
6101
bo yang31ea7082007-11-07 12:09:50 -05006102 megasas_flush_cache(instance);
6103 megasas_shutdown_controller(instance, MR_DCMD_HIBERNATE_SHUTDOWN);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06006104
6105 /* cancel the delayed work if this work still in queue */
6106 if (instance->ev != NULL) {
6107 struct megasas_aen_event *ev = instance->ev;
Xiaotian Fengc1d390d82012-12-04 19:33:54 +08006108 cancel_delayed_work_sync(&ev->hotplug_work);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06006109 instance->ev = NULL;
6110 }
6111
bo yang31ea7082007-11-07 12:09:50 -05006112 tasklet_kill(&instance->isr_tasklet);
6113
6114 pci_set_drvdata(instance->pdev, instance);
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05306115 instance->instancet->disable_intr(instance);
adam radfordc8e858f2011-10-08 18:15:13 -07006116
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306117 megasas_destroy_irqs(instance);
6118
adam radfordc8e858f2011-10-08 18:15:13 -07006119 if (instance->msix_vectors)
adam radford80d9da92010-12-21 10:17:40 -08006120 pci_disable_msix(instance->pdev);
bo yang31ea7082007-11-07 12:09:50 -05006121
6122 pci_save_state(pdev);
6123 pci_disable_device(pdev);
6124
6125 pci_set_power_state(pdev, pci_choose_state(pdev, state));
6126
6127 return 0;
6128}
6129
6130/**
6131 * megasas_resume- driver resume entry point
6132 * @pdev: PCI device structure
6133 */
Jiri Slaby33139b22008-05-01 17:56:02 +02006134static int
bo yang31ea7082007-11-07 12:09:50 -05006135megasas_resume(struct pci_dev *pdev)
6136{
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306137 int rval;
bo yang31ea7082007-11-07 12:09:50 -05006138 struct Scsi_Host *host;
6139 struct megasas_instance *instance;
6140
6141 instance = pci_get_drvdata(pdev);
6142 host = instance->host;
6143 pci_set_power_state(pdev, PCI_D0);
6144 pci_enable_wake(pdev, PCI_D0, 0);
6145 pci_restore_state(pdev);
6146
6147 /*
6148 * PCI prepping: enable device set bus mastering and dma mask
6149 */
Noriyuki Fujiiaeab3fd2009-11-20 16:27:20 +09006150 rval = pci_enable_device_mem(pdev);
bo yang31ea7082007-11-07 12:09:50 -05006151
6152 if (rval) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006153 dev_err(&pdev->dev, "Enable device failed\n");
bo yang31ea7082007-11-07 12:09:50 -05006154 return rval;
6155 }
6156
6157 pci_set_master(pdev);
6158
6159 if (megasas_set_dma_mask(pdev))
6160 goto fail_set_dma_mask;
6161
6162 /*
6163 * Initialize MFI Firmware
6164 */
6165
bo yang31ea7082007-11-07 12:09:50 -05006166 atomic_set(&instance->fw_outstanding, 0);
6167
6168 /*
6169 * We expect the FW state to be READY
6170 */
adam radford058a8fa2011-10-08 18:14:27 -07006171 if (megasas_transition_to_ready(instance, 0))
bo yang31ea7082007-11-07 12:09:50 -05006172 goto fail_ready_state;
6173
adam radford3f1abce2011-05-11 18:33:47 -07006174 /* Now re-enable MSI-X */
Alexander Gordeevdd088122014-08-18 08:01:43 +02006175 if (instance->msix_vectors &&
Alexander Gordeev8ae80ed2014-08-18 08:01:44 +02006176 pci_enable_msix_exact(instance->pdev, instance->msixentry,
6177 instance->msix_vectors))
Alexander Gordeevdd088122014-08-18 08:01:43 +02006178 goto fail_reenable_msix;
adam radford3f1abce2011-05-11 18:33:47 -07006179
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05306180 if (instance->ctrl_context) {
adam radford9c915a82010-12-21 13:34:31 -08006181 megasas_reset_reply_desc(instance);
6182 if (megasas_ioc_init_fusion(instance)) {
6183 megasas_free_cmds(instance);
6184 megasas_free_cmds_fusion(instance);
6185 goto fail_init_mfi;
6186 }
6187 if (!megasas_get_map_info(instance))
6188 megasas_sync_map_info(instance);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05306189 } else {
adam radford9c915a82010-12-21 13:34:31 -08006190 *instance->producer = 0;
6191 *instance->consumer = 0;
6192 if (megasas_issue_init_mfi(instance))
6193 goto fail_init_mfi;
adam radford9c915a82010-12-21 13:34:31 -08006194 }
bo yang31ea7082007-11-07 12:09:50 -05006195
adam radford9c915a82010-12-21 13:34:31 -08006196 tasklet_init(&instance->isr_tasklet, instance->instancet->tasklet,
6197 (unsigned long)instance);
bo yang31ea7082007-11-07 12:09:50 -05006198
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306199 if (instance->msix_vectors ?
6200 megasas_setup_irqs_msix(instance, 0) :
6201 megasas_setup_irqs_ioapic(instance))
6202 goto fail_init_mfi;
bo yang31ea7082007-11-07 12:09:50 -05006203
adam radford229fe472014-03-10 02:51:56 -07006204 /* Re-launch SR-IOV heartbeat timer */
6205 if (instance->requestorId) {
6206 if (!megasas_sriov_start_heartbeat(instance, 0))
6207 megasas_start_timer(instance,
6208 &instance->sriov_heartbeat_timer,
6209 megasas_sriov_heartbeat_handler,
6210 MEGASAS_SRIOV_HEARTBEAT_INTERVAL_VF);
Sumit.Saxena@avagotech.com5765c5b2015-04-23 16:32:09 +05306211 else {
adam radford229fe472014-03-10 02:51:56 -07006212 instance->skip_heartbeat_timer_del = 1;
Sumit.Saxena@avagotech.com5765c5b2015-04-23 16:32:09 +05306213 goto fail_init_mfi;
6214 }
adam radford229fe472014-03-10 02:51:56 -07006215 }
6216
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05306217 instance->instancet->enable_intr(instance);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306218 megasas_setup_jbod_map(instance);
Yang, Bo0c79e682009-10-06 14:47:35 -06006219 instance->unload = 0;
6220
adam radford541f90b2011-05-11 18:34:29 -07006221 /*
6222 * Initiate AEN (Asynchronous Event Notification)
6223 */
6224 if (megasas_start_aen(instance))
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006225 dev_err(&instance->pdev->dev, "Start AEN failed\n");
adam radford541f90b2011-05-11 18:34:29 -07006226
bo yang31ea7082007-11-07 12:09:50 -05006227 return 0;
6228
bo yang31ea7082007-11-07 12:09:50 -05006229fail_init_mfi:
6230 if (instance->evt_detail)
6231 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
6232 instance->evt_detail,
6233 instance->evt_detail_h);
6234
Sumit Saxena2216c302016-01-28 21:04:26 +05306235 if (instance->pd_info)
6236 pci_free_consistent(pdev, sizeof(struct MR_PD_INFO),
6237 instance->pd_info,
6238 instance->pd_info_h);
bo yang31ea7082007-11-07 12:09:50 -05006239 if (instance->producer)
6240 pci_free_consistent(pdev, sizeof(u32), instance->producer,
6241 instance->producer_h);
6242 if (instance->consumer)
6243 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
6244 instance->consumer_h);
6245 scsi_host_put(host);
6246
6247fail_set_dma_mask:
6248fail_ready_state:
Alexander Gordeevdd088122014-08-18 08:01:43 +02006249fail_reenable_msix:
bo yang31ea7082007-11-07 12:09:50 -05006250
6251 pci_disable_device(pdev);
6252
6253 return -ENODEV;
6254}
Jiri Slaby33139b22008-05-01 17:56:02 +02006255#else
6256#define megasas_suspend NULL
6257#define megasas_resume NULL
6258#endif
bo yang31ea7082007-11-07 12:09:50 -05006259
6260/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006261 * megasas_detach_one - PCI hot"un"plug entry point
6262 * @pdev: PCI device structure
6263 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006264static void megasas_detach_one(struct pci_dev *pdev)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006265{
6266 int i;
6267 struct Scsi_Host *host;
6268 struct megasas_instance *instance;
adam radford9c915a82010-12-21 13:34:31 -08006269 struct fusion_context *fusion;
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306270 u32 pd_seq_map_sz;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006271
6272 instance = pci_get_drvdata(pdev);
Yang, Boc3518832009-10-06 14:18:02 -06006273 instance->unload = 1;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006274 host = instance->host;
adam radford9c915a82010-12-21 13:34:31 -08006275 fusion = instance->ctrl_context;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006276
adam radford229fe472014-03-10 02:51:56 -07006277 /* Shutdown SR-IOV heartbeat timer */
6278 if (instance->requestorId && !instance->skip_heartbeat_timer_del)
6279 del_timer_sync(&instance->sriov_heartbeat_timer);
6280
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306281 if (instance->fw_crash_state != UNAVAILABLE)
6282 megasas_free_host_crash_buffer(instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006283 scsi_remove_host(instance->host);
6284 megasas_flush_cache(instance);
bo yang31ea7082007-11-07 12:09:50 -05006285 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06006286
6287 /* cancel the delayed work if this work still in queue*/
6288 if (instance->ev != NULL) {
6289 struct megasas_aen_event *ev = instance->ev;
Xiaotian Fengc1d390d82012-12-04 19:33:54 +08006290 cancel_delayed_work_sync(&ev->hotplug_work);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06006291 instance->ev = NULL;
6292 }
6293
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05306294 /* cancel all wait events */
6295 wake_up_all(&instance->int_cmd_wait_q);
6296
Sumant Patro5d018ad2006-10-03 13:13:18 -07006297 tasklet_kill(&instance->isr_tasklet);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006298
6299 /*
6300 * Take the instance off the instance array. Note that we will not
6301 * decrement the max_index. We let this array be sparse array
6302 */
6303 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
6304 if (megasas_mgmt_info.instance[i] == instance) {
6305 megasas_mgmt_info.count--;
6306 megasas_mgmt_info.instance[i] = NULL;
6307
6308 break;
6309 }
6310 }
6311
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05306312 instance->instancet->disable_intr(instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006313
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306314 megasas_destroy_irqs(instance);
6315
adam radfordc8e858f2011-10-08 18:15:13 -07006316 if (instance->msix_vectors)
adam radford80d9da92010-12-21 10:17:40 -08006317 pci_disable_msix(instance->pdev);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006318
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05306319 if (instance->ctrl_context) {
adam radford9c915a82010-12-21 13:34:31 -08006320 megasas_release_fusion(instance);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306321 pd_seq_map_sz = sizeof(struct MR_PD_CFG_SEQ_NUM_SYNC) +
6322 (sizeof(struct MR_PD_CFG_SEQ) *
6323 (MAX_PHYSICAL_DEVICES - 1));
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306324 for (i = 0; i < 2 ; i++) {
adam radford9c915a82010-12-21 13:34:31 -08006325 if (fusion->ld_map[i])
6326 dma_free_coherent(&instance->pdev->dev,
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306327 fusion->max_map_sz,
adam radford9c915a82010-12-21 13:34:31 -08006328 fusion->ld_map[i],
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306329 fusion->ld_map_phys[i]);
6330 if (fusion->ld_drv_map[i])
6331 free_pages((ulong)fusion->ld_drv_map[i],
6332 fusion->drv_map_pages);
Maurizio Lombardi546e5592016-01-22 13:41:42 +01006333 if (fusion->pd_seq_sync[i])
6334 dma_free_coherent(&instance->pdev->dev,
6335 pd_seq_map_sz,
6336 fusion->pd_seq_sync[i],
6337 fusion->pd_seq_phys[i]);
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306338 }
6339 free_pages((ulong)instance->ctrl_context,
6340 instance->ctrl_context_pages);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05306341 } else {
adam radford9c915a82010-12-21 13:34:31 -08006342 megasas_release_mfi(instance);
adam radford9c915a82010-12-21 13:34:31 -08006343 pci_free_consistent(pdev, sizeof(u32),
6344 instance->producer,
6345 instance->producer_h);
6346 pci_free_consistent(pdev, sizeof(u32),
6347 instance->consumer,
6348 instance->consumer_h);
adam radford9c915a82010-12-21 13:34:31 -08006349 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006350
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306351 kfree(instance->ctrl_info);
6352
Sumit.Saxena@lsi.com105900d2013-05-22 12:30:54 +05306353 if (instance->evt_detail)
6354 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
6355 instance->evt_detail, instance->evt_detail_h);
adam radford229fe472014-03-10 02:51:56 -07006356
Sumit Saxena2216c302016-01-28 21:04:26 +05306357 if (instance->pd_info)
6358 pci_free_consistent(pdev, sizeof(struct MR_PD_INFO),
6359 instance->pd_info,
6360 instance->pd_info_h);
adam radford229fe472014-03-10 02:51:56 -07006361 if (instance->vf_affiliation)
6362 pci_free_consistent(pdev, (MAX_LOGICAL_DRIVES + 1) *
6363 sizeof(struct MR_LD_VF_AFFILIATION),
6364 instance->vf_affiliation,
6365 instance->vf_affiliation_h);
6366
6367 if (instance->vf_affiliation_111)
6368 pci_free_consistent(pdev,
6369 sizeof(struct MR_LD_VF_AFFILIATION_111),
6370 instance->vf_affiliation_111,
6371 instance->vf_affiliation_111_h);
6372
6373 if (instance->hb_host_mem)
6374 pci_free_consistent(pdev, sizeof(struct MR_CTRL_HB_HOST_MEM),
6375 instance->hb_host_mem,
6376 instance->hb_host_mem_h);
6377
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306378 if (instance->crash_dump_buf)
6379 pci_free_consistent(pdev, CRASH_DMA_BUF_SIZE,
6380 instance->crash_dump_buf, instance->crash_dump_h);
6381
Sumit.Saxena@avagotech.com5765c5b2015-04-23 16:32:09 +05306382 if (instance->system_info_buf)
6383 pci_free_consistent(pdev, sizeof(struct MR_DRV_SYSTEM_INFO),
6384 instance->system_info_buf, instance->system_info_h);
6385
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006386 scsi_host_put(host);
6387
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006388 pci_disable_device(pdev);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006389}
6390
6391/**
6392 * megasas_shutdown - Shutdown entry point
6393 * @device: Generic device structure
6394 */
6395static void megasas_shutdown(struct pci_dev *pdev)
6396{
6397 struct megasas_instance *instance = pci_get_drvdata(pdev);
adam radfordc8e858f2011-10-08 18:15:13 -07006398
Yang, Bo0c79e682009-10-06 14:47:35 -06006399 instance->unload = 1;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006400 megasas_flush_cache(instance);
Yang, Bo530e6fc2008-08-10 12:42:37 -07006401 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05306402 instance->instancet->disable_intr(instance);
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306403 megasas_destroy_irqs(instance);
6404
adam radfordc8e858f2011-10-08 18:15:13 -07006405 if (instance->msix_vectors)
adam radford46fd2562011-05-11 18:34:17 -07006406 pci_disable_msix(instance->pdev);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006407}
6408
6409/**
6410 * megasas_mgmt_open - char node "open" entry point
6411 */
6412static int megasas_mgmt_open(struct inode *inode, struct file *filep)
6413{
6414 /*
6415 * Allow only those users with admin rights
6416 */
6417 if (!capable(CAP_SYS_ADMIN))
6418 return -EACCES;
6419
6420 return 0;
6421}
6422
6423/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006424 * megasas_mgmt_fasync - Async notifier registration from applications
6425 *
6426 * This function adds the calling process to a driver global queue. When an
6427 * event occurs, SIGIO will be sent to all processes in this queue.
6428 */
6429static int megasas_mgmt_fasync(int fd, struct file *filep, int mode)
6430{
6431 int rc;
6432
Arjan van de Ven0b950672006-01-11 13:16:10 +01006433 mutex_lock(&megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006434
6435 rc = fasync_helper(fd, filep, mode, &megasas_async_queue);
6436
Arjan van de Ven0b950672006-01-11 13:16:10 +01006437 mutex_unlock(&megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006438
6439 if (rc >= 0) {
6440 /* For sanity check when we get ioctl */
6441 filep->private_data = filep;
6442 return 0;
6443 }
6444
6445 printk(KERN_DEBUG "megasas: fasync_helper failed [%d]\n", rc);
6446
6447 return rc;
6448}
6449
6450/**
Yang, Boc3518832009-10-06 14:18:02 -06006451 * megasas_mgmt_poll - char node "poll" entry point
6452 * */
6453static unsigned int megasas_mgmt_poll(struct file *file, poll_table *wait)
6454{
6455 unsigned int mask;
6456 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006457
Yang, Boc3518832009-10-06 14:18:02 -06006458 poll_wait(file, &megasas_poll_wait, wait);
6459 spin_lock_irqsave(&poll_aen_lock, flags);
6460 if (megasas_poll_wait_aen)
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006461 mask = (POLLIN | POLLRDNORM);
Yang, Boc3518832009-10-06 14:18:02 -06006462 else
6463 mask = 0;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306464 megasas_poll_wait_aen = 0;
Yang, Boc3518832009-10-06 14:18:02 -06006465 spin_unlock_irqrestore(&poll_aen_lock, flags);
6466 return mask;
6467}
6468
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306469/*
6470 * megasas_set_crash_dump_params_ioctl:
6471 * Send CRASH_DUMP_MODE DCMD to all controllers
6472 * @cmd: MFI command frame
6473 */
6474
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006475static int megasas_set_crash_dump_params_ioctl(struct megasas_cmd *cmd)
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306476{
6477 struct megasas_instance *local_instance;
6478 int i, error = 0;
6479 int crash_support;
6480
6481 crash_support = cmd->frame->dcmd.mbox.w[0];
6482
6483 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
6484 local_instance = megasas_mgmt_info.instance[i];
6485 if (local_instance && local_instance->crash_dump_drv_support) {
Sumit Saxena8a01a412016-01-28 21:04:32 +05306486 if ((atomic_read(&local_instance->adprecovery) ==
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306487 MEGASAS_HBA_OPERATIONAL) &&
6488 !megasas_set_crash_dump_params(local_instance,
6489 crash_support)) {
6490 local_instance->crash_dump_app_support =
6491 crash_support;
6492 dev_info(&local_instance->pdev->dev,
6493 "Application firmware crash "
6494 "dump mode set success\n");
6495 error = 0;
6496 } else {
6497 dev_info(&local_instance->pdev->dev,
6498 "Application firmware crash "
6499 "dump mode set failed\n");
6500 error = -1;
6501 }
6502 }
6503 }
6504 return error;
6505}
6506
Yang, Boc3518832009-10-06 14:18:02 -06006507/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006508 * megasas_mgmt_fw_ioctl - Issues management ioctls to FW
6509 * @instance: Adapter soft state
6510 * @argp: User's ioctl packet
6511 */
6512static int
6513megasas_mgmt_fw_ioctl(struct megasas_instance *instance,
6514 struct megasas_iocpacket __user * user_ioc,
6515 struct megasas_iocpacket *ioc)
6516{
6517 struct megasas_sge32 *kern_sge32;
6518 struct megasas_cmd *cmd;
6519 void *kbuff_arr[MAX_IOCTL_SGE];
6520 dma_addr_t buf_handle = 0;
6521 int error = 0, i;
6522 void *sense = NULL;
6523 dma_addr_t sense_handle;
Yang, Bo7b2519a2009-10-06 14:52:20 -06006524 unsigned long *sense_ptr;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006525
6526 memset(kbuff_arr, 0, sizeof(kbuff_arr));
6527
6528 if (ioc->sge_count > MAX_IOCTL_SGE) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006529 dev_printk(KERN_DEBUG, &instance->pdev->dev, "SGE count [%d] > max limit [%d]\n",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006530 ioc->sge_count, MAX_IOCTL_SGE);
6531 return -EINVAL;
6532 }
6533
6534 cmd = megasas_get_cmd(instance);
6535 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006536 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to get a cmd packet\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006537 return -ENOMEM;
6538 }
6539
6540 /*
6541 * User's IOCTL packet has 2 frames (maximum). Copy those two
6542 * frames into our cmd's frames. cmd->frame's context will get
6543 * overwritten when we copy from user's frames. So set that value
6544 * alone separately
6545 */
6546 memcpy(cmd->frame, ioc->frame.raw, 2 * MEGAMFI_FRAME_SIZE);
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306547 cmd->frame->hdr.context = cpu_to_le32(cmd->index);
Yang, Boc3518832009-10-06 14:18:02 -06006548 cmd->frame->hdr.pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306549 cmd->frame->hdr.flags &= cpu_to_le16(~(MFI_FRAME_IEEE |
6550 MFI_FRAME_SGL64 |
6551 MFI_FRAME_SENSE64));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006552
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306553 if (cmd->frame->dcmd.opcode == MR_DRIVER_SET_APP_CRASHDUMP_MODE) {
6554 error = megasas_set_crash_dump_params_ioctl(cmd);
6555 megasas_return_cmd(instance, cmd);
6556 return error;
6557 }
6558
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006559 /*
6560 * The management interface between applications and the fw uses
6561 * MFI frames. E.g, RAID configuration changes, LD property changes
6562 * etc are accomplishes through different kinds of MFI frames. The
6563 * driver needs to care only about substituting user buffers with
6564 * kernel buffers in SGLs. The location of SGL is embedded in the
6565 * struct iocpacket itself.
6566 */
6567 kern_sge32 = (struct megasas_sge32 *)
6568 ((unsigned long)cmd->frame + ioc->sgl_off);
6569
6570 /*
6571 * For each user buffer, create a mirror buffer and copy in
6572 */
6573 for (i = 0; i < ioc->sge_count; i++) {
Bjørn Mork98cb7e42011-01-19 10:01:14 +01006574 if (!ioc->sgl[i].iov_len)
6575 continue;
6576
Sumant Patro9f35fa82007-02-14 12:55:45 -08006577 kbuff_arr[i] = dma_alloc_coherent(&instance->pdev->dev,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006578 ioc->sgl[i].iov_len,
Sumant Patro9f35fa82007-02-14 12:55:45 -08006579 &buf_handle, GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006580 if (!kbuff_arr[i]) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006581 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to alloc "
6582 "kernel SGL buffer for IOCTL\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006583 error = -ENOMEM;
6584 goto out;
6585 }
6586
6587 /*
6588 * We don't change the dma_coherent_mask, so
6589 * pci_alloc_consistent only returns 32bit addresses
6590 */
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306591 kern_sge32[i].phys_addr = cpu_to_le32(buf_handle);
6592 kern_sge32[i].length = cpu_to_le32(ioc->sgl[i].iov_len);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006593
6594 /*
6595 * We created a kernel buffer corresponding to the
6596 * user buffer. Now copy in from the user buffer
6597 */
6598 if (copy_from_user(kbuff_arr[i], ioc->sgl[i].iov_base,
6599 (u32) (ioc->sgl[i].iov_len))) {
6600 error = -EFAULT;
6601 goto out;
6602 }
6603 }
6604
6605 if (ioc->sense_len) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08006606 sense = dma_alloc_coherent(&instance->pdev->dev, ioc->sense_len,
6607 &sense_handle, GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006608 if (!sense) {
6609 error = -ENOMEM;
6610 goto out;
6611 }
6612
6613 sense_ptr =
Yang, Bo7b2519a2009-10-06 14:52:20 -06006614 (unsigned long *) ((unsigned long)cmd->frame + ioc->sense_off);
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306615 *sense_ptr = cpu_to_le32(sense_handle);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006616 }
6617
6618 /*
6619 * Set the sync_cmd flag so that the ISR knows not to complete this
6620 * cmd to the SCSI mid-layer
6621 */
6622 cmd->sync_cmd = 1;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306623 if (megasas_issue_blocked_cmd(instance, cmd, 0) == DCMD_NOT_FIRED) {
6624 cmd->sync_cmd = 0;
6625 dev_err(&instance->pdev->dev,
6626 "return -EBUSY from %s %d opcode 0x%x cmd->cmd_status_drv 0x%x\n",
6627 __func__, __LINE__, cmd->frame->dcmd.opcode,
6628 cmd->cmd_status_drv);
6629 return -EBUSY;
6630 }
6631
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006632 cmd->sync_cmd = 0;
6633
Sumit.Saxena@avagotech.comaa008322014-11-17 15:24:08 +05306634 if (instance->unload == 1) {
6635 dev_info(&instance->pdev->dev, "Driver unload is in progress "
6636 "don't submit data to application\n");
6637 goto out;
6638 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006639 /*
6640 * copy out the kernel buffers to user buffers
6641 */
6642 for (i = 0; i < ioc->sge_count; i++) {
6643 if (copy_to_user(ioc->sgl[i].iov_base, kbuff_arr[i],
6644 ioc->sgl[i].iov_len)) {
6645 error = -EFAULT;
6646 goto out;
6647 }
6648 }
6649
6650 /*
6651 * copy out the sense
6652 */
6653 if (ioc->sense_len) {
6654 /*
bo yangb70a41e2008-03-18 03:13:06 -04006655 * sense_ptr points to the location that has the user
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006656 * sense buffer address
6657 */
Yang, Bo7b2519a2009-10-06 14:52:20 -06006658 sense_ptr = (unsigned long *) ((unsigned long)ioc->frame.raw +
6659 ioc->sense_off);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006660
bo yangb70a41e2008-03-18 03:13:06 -04006661 if (copy_to_user((void __user *)((unsigned long)(*sense_ptr)),
6662 sense, ioc->sense_len)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006663 dev_err(&instance->pdev->dev, "Failed to copy out to user "
bo yangb10c36a2007-11-09 04:28:47 -05006664 "sense data\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006665 error = -EFAULT;
6666 goto out;
6667 }
6668 }
6669
6670 /*
6671 * copy the status codes returned by the fw
6672 */
6673 if (copy_to_user(&user_ioc->frame.hdr.cmd_status,
6674 &cmd->frame->hdr.cmd_status, sizeof(u8))) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006675 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Error copying out cmd_status\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006676 error = -EFAULT;
6677 }
6678
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006679out:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006680 if (sense) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08006681 dma_free_coherent(&instance->pdev->dev, ioc->sense_len,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006682 sense, sense_handle);
6683 }
6684
Bjørn Mork7a6a7312012-11-21 09:54:48 +01006685 for (i = 0; i < ioc->sge_count; i++) {
Arnd Bergmann3deb9432016-03-14 15:29:45 +01006686 if (kbuff_arr[i]) {
Bjørn Mork7a6a7312012-11-21 09:54:48 +01006687 dma_free_coherent(&instance->pdev->dev,
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306688 le32_to_cpu(kern_sge32[i].length),
Bjørn Mork7a6a7312012-11-21 09:54:48 +01006689 kbuff_arr[i],
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306690 le32_to_cpu(kern_sge32[i].phys_addr));
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05306691 kbuff_arr[i] = NULL;
Arnd Bergmann3deb9432016-03-14 15:29:45 +01006692 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006693 }
6694
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05306695 megasas_return_cmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006696 return error;
6697}
6698
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006699static int megasas_mgmt_ioctl_fw(struct file *file, unsigned long arg)
6700{
6701 struct megasas_iocpacket __user *user_ioc =
6702 (struct megasas_iocpacket __user *)arg;
6703 struct megasas_iocpacket *ioc;
6704 struct megasas_instance *instance;
6705 int error;
bo yang39a98552010-09-22 22:36:29 -04006706 int i;
6707 unsigned long flags;
6708 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006709
Markus Elfring709ab232016-08-21 10:39:04 +02006710 ioc = memdup_user(user_ioc, sizeof(*ioc));
6711 if (IS_ERR(ioc))
6712 return PTR_ERR(ioc);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006713
6714 instance = megasas_lookup_instance(ioc->host_no);
6715 if (!instance) {
6716 error = -ENODEV;
6717 goto out_kfree_ioc;
6718 }
6719
adam radford229fe472014-03-10 02:51:56 -07006720 /* Adjust ioctl wait time for VF mode */
6721 if (instance->requestorId)
6722 wait_time = MEGASAS_ROUTINE_WAIT_TIME_VF;
6723
6724 /* Block ioctls in VF mode */
6725 if (instance->requestorId && !allow_vf_ioctls) {
6726 error = -ENODEV;
6727 goto out_kfree_ioc;
6728 }
6729
Sumit Saxena8a01a412016-01-28 21:04:32 +05306730 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006731 dev_err(&instance->pdev->dev, "Controller in crit error\n");
Yang, Bo0c79e682009-10-06 14:47:35 -06006732 error = -ENODEV;
6733 goto out_kfree_ioc;
6734 }
6735
6736 if (instance->unload == 1) {
6737 error = -ENODEV;
6738 goto out_kfree_ioc;
6739 }
6740
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006741 if (down_interruptible(&instance->ioctl_sem)) {
6742 error = -ERESTARTSYS;
6743 goto out_kfree_ioc;
6744 }
bo yang39a98552010-09-22 22:36:29 -04006745
6746 for (i = 0; i < wait_time; i++) {
6747
6748 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05306749 if (atomic_read(&instance->adprecovery) == MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04006750 spin_unlock_irqrestore(&instance->hba_lock, flags);
6751 break;
6752 }
6753 spin_unlock_irqrestore(&instance->hba_lock, flags);
6754
6755 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006756 dev_notice(&instance->pdev->dev, "waiting"
bo yang39a98552010-09-22 22:36:29 -04006757 "for controller reset to finish\n");
6758 }
6759
6760 msleep(1000);
6761 }
6762
6763 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05306764 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04006765 spin_unlock_irqrestore(&instance->hba_lock, flags);
6766
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006767 dev_err(&instance->pdev->dev, "timed out while"
bo yang39a98552010-09-22 22:36:29 -04006768 "waiting for HBA to recover\n");
6769 error = -ENODEV;
Dan Carpenterc64e4832013-04-16 10:44:19 +03006770 goto out_up;
bo yang39a98552010-09-22 22:36:29 -04006771 }
6772 spin_unlock_irqrestore(&instance->hba_lock, flags);
6773
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006774 error = megasas_mgmt_fw_ioctl(instance, user_ioc, ioc);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006775out_up:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006776 up(&instance->ioctl_sem);
6777
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006778out_kfree_ioc:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006779 kfree(ioc);
6780 return error;
6781}
6782
6783static int megasas_mgmt_ioctl_aen(struct file *file, unsigned long arg)
6784{
6785 struct megasas_instance *instance;
6786 struct megasas_aen aen;
6787 int error;
bo yang39a98552010-09-22 22:36:29 -04006788 int i;
6789 unsigned long flags;
6790 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006791
6792 if (file->private_data != file) {
6793 printk(KERN_DEBUG "megasas: fasync_helper was not "
6794 "called first\n");
6795 return -EINVAL;
6796 }
6797
6798 if (copy_from_user(&aen, (void __user *)arg, sizeof(aen)))
6799 return -EFAULT;
6800
6801 instance = megasas_lookup_instance(aen.host_no);
6802
6803 if (!instance)
6804 return -ENODEV;
6805
Sumit Saxena8a01a412016-01-28 21:04:32 +05306806 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
bo yang39a98552010-09-22 22:36:29 -04006807 return -ENODEV;
Yang, Bo0c79e682009-10-06 14:47:35 -06006808 }
6809
6810 if (instance->unload == 1) {
6811 return -ENODEV;
6812 }
6813
bo yang39a98552010-09-22 22:36:29 -04006814 for (i = 0; i < wait_time; i++) {
6815
6816 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05306817 if (atomic_read(&instance->adprecovery) == MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04006818 spin_unlock_irqrestore(&instance->hba_lock,
6819 flags);
6820 break;
6821 }
6822
6823 spin_unlock_irqrestore(&instance->hba_lock, flags);
6824
6825 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006826 dev_notice(&instance->pdev->dev, "waiting for"
bo yang39a98552010-09-22 22:36:29 -04006827 "controller reset to finish\n");
6828 }
6829
6830 msleep(1000);
6831 }
6832
6833 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05306834 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04006835 spin_unlock_irqrestore(&instance->hba_lock, flags);
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006836 dev_err(&instance->pdev->dev, "timed out while waiting"
6837 "for HBA to recover\n");
bo yang39a98552010-09-22 22:36:29 -04006838 return -ENODEV;
6839 }
6840 spin_unlock_irqrestore(&instance->hba_lock, flags);
6841
Sumit Saxena11c71cb2016-01-28 21:04:22 +05306842 mutex_lock(&instance->reset_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006843 error = megasas_register_aen(instance, aen.seq_num,
6844 aen.class_locale_word);
Sumit Saxena11c71cb2016-01-28 21:04:22 +05306845 mutex_unlock(&instance->reset_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006846 return error;
6847}
6848
6849/**
6850 * megasas_mgmt_ioctl - char node ioctl entry point
6851 */
6852static long
6853megasas_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
6854{
6855 switch (cmd) {
6856 case MEGASAS_IOC_FIRMWARE:
6857 return megasas_mgmt_ioctl_fw(file, arg);
6858
6859 case MEGASAS_IOC_GET_AEN:
6860 return megasas_mgmt_ioctl_aen(file, arg);
6861 }
6862
6863 return -ENOTTY;
6864}
6865
6866#ifdef CONFIG_COMPAT
6867static int megasas_mgmt_compat_ioctl_fw(struct file *file, unsigned long arg)
6868{
6869 struct compat_megasas_iocpacket __user *cioc =
6870 (struct compat_megasas_iocpacket __user *)arg;
6871 struct megasas_iocpacket __user *ioc =
6872 compat_alloc_user_space(sizeof(struct megasas_iocpacket));
6873 int i;
6874 int error = 0;
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006875 compat_uptr_t ptr;
sumit.saxena@avagotech.com323c4a02015-10-15 13:40:54 +05306876 u32 local_sense_off;
6877 u32 local_sense_len;
Sumit Saxenaea1c9282016-01-28 21:14:26 +05306878 u32 user_sense_off;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006879
Jeff Garzik83aabc12006-10-04 06:34:03 -04006880 if (clear_user(ioc, sizeof(*ioc)))
6881 return -EFAULT;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006882
6883 if (copy_in_user(&ioc->host_no, &cioc->host_no, sizeof(u16)) ||
6884 copy_in_user(&ioc->sgl_off, &cioc->sgl_off, sizeof(u32)) ||
6885 copy_in_user(&ioc->sense_off, &cioc->sense_off, sizeof(u32)) ||
6886 copy_in_user(&ioc->sense_len, &cioc->sense_len, sizeof(u32)) ||
6887 copy_in_user(ioc->frame.raw, cioc->frame.raw, 128) ||
6888 copy_in_user(&ioc->sge_count, &cioc->sge_count, sizeof(u32)))
6889 return -EFAULT;
6890
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006891 /*
6892 * The sense_ptr is used in megasas_mgmt_fw_ioctl only when
6893 * sense_len is not null, so prepare the 64bit value under
6894 * the same condition.
6895 */
Sumit Saxenaea1c9282016-01-28 21:14:26 +05306896 if (get_user(local_sense_off, &ioc->sense_off) ||
6897 get_user(local_sense_len, &ioc->sense_len) ||
6898 get_user(user_sense_off, &cioc->sense_off))
sumit.saxena@avagotech.com323c4a02015-10-15 13:40:54 +05306899 return -EFAULT;
6900
sumit.saxena@avagotech.com323c4a02015-10-15 13:40:54 +05306901 if (local_sense_len) {
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006902 void __user **sense_ioc_ptr =
Sumit Saxenaea1c9282016-01-28 21:14:26 +05306903 (void __user **)((u8 *)((unsigned long)&ioc->frame.raw) + local_sense_off);
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006904 compat_uptr_t *sense_cioc_ptr =
Sumit Saxenaea1c9282016-01-28 21:14:26 +05306905 (compat_uptr_t *)(((unsigned long)&cioc->frame.raw) + user_sense_off);
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006906 if (get_user(ptr, sense_cioc_ptr) ||
6907 put_user(compat_ptr(ptr), sense_ioc_ptr))
6908 return -EFAULT;
6909 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006910
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006911 for (i = 0; i < MAX_IOCTL_SGE; i++) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006912 if (get_user(ptr, &cioc->sgl[i].iov_base) ||
6913 put_user(compat_ptr(ptr), &ioc->sgl[i].iov_base) ||
6914 copy_in_user(&ioc->sgl[i].iov_len,
6915 &cioc->sgl[i].iov_len, sizeof(compat_size_t)))
6916 return -EFAULT;
6917 }
6918
6919 error = megasas_mgmt_ioctl_fw(file, (unsigned long)ioc);
6920
6921 if (copy_in_user(&cioc->frame.hdr.cmd_status,
6922 &ioc->frame.hdr.cmd_status, sizeof(u8))) {
6923 printk(KERN_DEBUG "megasas: error copy_in_user cmd_status\n");
6924 return -EFAULT;
6925 }
6926 return error;
6927}
6928
6929static long
6930megasas_mgmt_compat_ioctl(struct file *file, unsigned int cmd,
6931 unsigned long arg)
6932{
6933 switch (cmd) {
Sumant Patrocb59aa62006-01-25 11:53:25 -08006934 case MEGASAS_IOC_FIRMWARE32:
6935 return megasas_mgmt_compat_ioctl_fw(file, arg);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006936 case MEGASAS_IOC_GET_AEN:
6937 return megasas_mgmt_ioctl_aen(file, arg);
6938 }
6939
6940 return -ENOTTY;
6941}
6942#endif
6943
6944/*
6945 * File operations structure for management interface
6946 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08006947static const struct file_operations megasas_mgmt_fops = {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006948 .owner = THIS_MODULE,
6949 .open = megasas_mgmt_open,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006950 .fasync = megasas_mgmt_fasync,
6951 .unlocked_ioctl = megasas_mgmt_ioctl,
Yang, Boc3518832009-10-06 14:18:02 -06006952 .poll = megasas_mgmt_poll,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006953#ifdef CONFIG_COMPAT
6954 .compat_ioctl = megasas_mgmt_compat_ioctl,
6955#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02006956 .llseek = noop_llseek,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006957};
6958
6959/*
6960 * PCI hotplug support registration structure
6961 */
6962static struct pci_driver megasas_pci_driver = {
6963
6964 .name = "megaraid_sas",
6965 .id_table = megasas_pci_table,
6966 .probe = megasas_probe_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006967 .remove = megasas_detach_one,
bo yang31ea7082007-11-07 12:09:50 -05006968 .suspend = megasas_suspend,
6969 .resume = megasas_resume,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006970 .shutdown = megasas_shutdown,
6971};
6972
6973/*
6974 * Sysfs driver attributes
6975 */
6976static ssize_t megasas_sysfs_show_version(struct device_driver *dd, char *buf)
6977{
6978 return snprintf(buf, strlen(MEGASAS_VERSION) + 2, "%s\n",
6979 MEGASAS_VERSION);
6980}
6981
6982static DRIVER_ATTR(version, S_IRUGO, megasas_sysfs_show_version, NULL);
6983
6984static ssize_t
Sumit.Saxena@avagotech.com09fced12015-04-23 16:31:54 +05306985megasas_sysfs_show_release_date(struct device_driver *dd, char *buf)
6986{
6987 return snprintf(buf, strlen(MEGASAS_RELDATE) + 2, "%s\n",
6988 MEGASAS_RELDATE);
6989}
6990
6991static DRIVER_ATTR(release_date, S_IRUGO, megasas_sysfs_show_release_date, NULL);
6992
6993static ssize_t
Yang, Bo72c4fd32009-10-06 14:20:59 -06006994megasas_sysfs_show_support_poll_for_event(struct device_driver *dd, char *buf)
6995{
6996 return sprintf(buf, "%u\n", support_poll_for_event);
6997}
6998
6999static DRIVER_ATTR(support_poll_for_event, S_IRUGO,
7000 megasas_sysfs_show_support_poll_for_event, NULL);
7001
Yang, Bo837f5fe2010-10-11 06:59:20 -06007002 static ssize_t
7003megasas_sysfs_show_support_device_change(struct device_driver *dd, char *buf)
7004{
7005 return sprintf(buf, "%u\n", support_device_change);
7006}
7007
7008static DRIVER_ATTR(support_device_change, S_IRUGO,
7009 megasas_sysfs_show_support_device_change, NULL);
7010
Yang, Bo72c4fd32009-10-06 14:20:59 -06007011static ssize_t
Sumant Patro658dced2006-10-03 13:09:14 -07007012megasas_sysfs_show_dbg_lvl(struct device_driver *dd, char *buf)
7013{
bo yangad84db22007-11-09 04:40:16 -05007014 return sprintf(buf, "%u\n", megasas_dbg_lvl);
Sumant Patro658dced2006-10-03 13:09:14 -07007015}
7016
7017static ssize_t
7018megasas_sysfs_set_dbg_lvl(struct device_driver *dd, const char *buf, size_t count)
7019{
7020 int retval = count;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05007021
7022 if (sscanf(buf, "%u", &megasas_dbg_lvl) < 1) {
Sumant Patro658dced2006-10-03 13:09:14 -07007023 printk(KERN_ERR "megasas: could not set dbg_lvl\n");
7024 retval = -EINVAL;
7025 }
7026 return retval;
7027}
7028
Joe Malicki66dca9b2008-08-14 17:14:48 -04007029static DRIVER_ATTR(dbg_lvl, S_IRUGO|S_IWUSR, megasas_sysfs_show_dbg_lvl,
bo yangad84db22007-11-09 04:40:16 -05007030 megasas_sysfs_set_dbg_lvl);
7031
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007032static void
7033megasas_aen_polling(struct work_struct *work)
7034{
7035 struct megasas_aen_event *ev =
Xiaotian Fengc1d390d82012-12-04 19:33:54 +08007036 container_of(work, struct megasas_aen_event, hotplug_work.work);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007037 struct megasas_instance *instance = ev->instance;
7038 union megasas_evt_class_locale class_locale;
7039 struct Scsi_Host *host;
7040 struct scsi_device *sdev1;
7041 u16 pd_index = 0;
Yang, Boc9786842009-12-06 08:39:25 -07007042 u16 ld_index = 0;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007043 int i, j, doscan = 0;
adam radford229fe472014-03-10 02:51:56 -07007044 u32 seq_num, wait_time = MEGASAS_RESET_WAIT_TIME;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007045 int error;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307046 u8 dcmd_ret = DCMD_SUCCESS;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007047
7048 if (!instance) {
7049 printk(KERN_ERR "invalid instance!\n");
7050 kfree(ev);
7051 return;
7052 }
adam radford229fe472014-03-10 02:51:56 -07007053
7054 /* Adjust event workqueue thread wait time for VF mode */
7055 if (instance->requestorId)
7056 wait_time = MEGASAS_ROUTINE_WAIT_TIME_VF;
7057
7058 /* Don't run the event workqueue thread if OCR is running */
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307059 mutex_lock(&instance->reset_mutex);
adam radford229fe472014-03-10 02:51:56 -07007060
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007061 instance->ev = NULL;
7062 host = instance->host;
7063 if (instance->evt_detail) {
sumit.saxena@avagotech.com714f5172015-08-31 17:23:51 +05307064 megasas_decode_evt(instance);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007065
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05307066 switch (le32_to_cpu(instance->evt_detail->code)) {
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307067
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007068 case MR_EVT_PD_INSERTED:
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307069 case MR_EVT_PD_REMOVED:
7070 dcmd_ret = megasas_get_pd_list(instance);
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307071 if (dcmd_ret == DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307072 doscan = SCAN_PD_CHANNEL;
Yang, Boc9786842009-12-06 08:39:25 -07007073 break;
7074
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307075 case MR_EVT_LD_OFFLINE:
7076 case MR_EVT_CFG_CLEARED:
7077 case MR_EVT_LD_DELETED:
7078 case MR_EVT_LD_CREATED:
7079 if (!instance->requestorId ||
7080 (instance->requestorId && megasas_get_ld_vf_affiliation(instance, 0)))
7081 dcmd_ret = megasas_ld_list_query(instance, MR_LD_QUERY_TYPE_EXPOSED_TO_HOST);
Yang, Boc9786842009-12-06 08:39:25 -07007082
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307083 if (dcmd_ret == DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307084 doscan = SCAN_VD_CHANNEL;
Yang, Boc9786842009-12-06 08:39:25 -07007085
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307086 break;
7087
7088 case MR_EVT_CTRL_HOST_BUS_SCAN_REQUESTED:
7089 case MR_EVT_FOREIGN_CFG_IMPORTED:
7090 case MR_EVT_LD_STATE_CHANGE:
7091 dcmd_ret = megasas_get_pd_list(instance);
7092
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307093 if (dcmd_ret != DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307094 break;
7095
7096 if (!instance->requestorId ||
7097 (instance->requestorId && megasas_get_ld_vf_affiliation(instance, 0)))
7098 dcmd_ret = megasas_ld_list_query(instance, MR_LD_QUERY_TYPE_EXPOSED_TO_HOST);
7099
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307100 if (dcmd_ret != DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307101 break;
7102
7103 doscan = SCAN_VD_CHANNEL | SCAN_PD_CHANNEL;
7104 dev_info(&instance->pdev->dev, "scanning for scsi%d...\n",
7105 instance->host->host_no);
7106 break;
7107
7108 case MR_EVT_CTRL_PROP_CHANGED:
7109 dcmd_ret = megasas_get_ctrl_info(instance);
7110 break;
7111 default:
7112 doscan = 0;
7113 break;
7114 }
7115 } else {
7116 dev_err(&instance->pdev->dev, "invalid evt_detail!\n");
7117 mutex_unlock(&instance->reset_mutex);
7118 kfree(ev);
7119 return;
7120 }
7121
7122 mutex_unlock(&instance->reset_mutex);
7123
7124 if (doscan & SCAN_PD_CHANNEL) {
7125 for (i = 0; i < MEGASAS_MAX_PD_CHANNELS; i++) {
7126 for (j = 0; j < MEGASAS_MAX_DEV_PER_CHANNEL; j++) {
7127 pd_index = i*MEGASAS_MAX_DEV_PER_CHANNEL + j;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05007128 sdev1 = scsi_device_lookup(host, i, j, 0);
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307129 if (instance->pd_list[pd_index].driveState ==
7130 MR_PD_STATE_SYSTEM) {
7131 if (!sdev1)
7132 scsi_add_device(host, i, j, 0);
7133 else
Yang, Boc9786842009-12-06 08:39:25 -07007134 scsi_device_put(sdev1);
Yang, Boc9786842009-12-06 08:39:25 -07007135 } else {
7136 if (sdev1) {
7137 scsi_remove_device(sdev1);
7138 scsi_device_put(sdev1);
7139 }
7140 }
Yang, Boc9786842009-12-06 08:39:25 -07007141 }
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007142 }
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007143 }
7144
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307145 if (doscan & SCAN_VD_CHANNEL) {
7146 for (i = 0; i < MEGASAS_MAX_LD_CHANNELS; i++) {
7147 for (j = 0; j < MEGASAS_MAX_DEV_PER_CHANNEL; j++) {
7148 ld_index = (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
7149 sdev1 = scsi_device_lookup(host, MEGASAS_MAX_PD_CHANNELS + i, j, 0);
7150 if (instance->ld_ids[ld_index] != 0xff) {
7151 if (!sdev1)
7152 scsi_add_device(host, MEGASAS_MAX_PD_CHANNELS + i, j, 0);
7153 else
7154 scsi_device_put(sdev1);
7155 } else {
7156 if (sdev1) {
7157 scsi_remove_device(sdev1);
7158 scsi_device_put(sdev1);
Yang, Boc9786842009-12-06 08:39:25 -07007159 }
7160 }
7161 }
7162 }
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007163 }
7164
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307165 if (dcmd_ret == DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307166 seq_num = le32_to_cpu(instance->evt_detail->seq_num) + 1;
7167 else
7168 seq_num = instance->last_seq_num;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007169
7170 /* Register AEN with FW for latest sequence number plus 1 */
7171 class_locale.members.reserved = 0;
7172 class_locale.members.locale = MR_EVT_LOCALE_ALL;
7173 class_locale.members.class = MR_EVT_CLASS_DEBUG;
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307174
7175 if (instance->aen_cmd != NULL) {
7176 kfree(ev);
7177 return;
7178 }
7179
7180 mutex_lock(&instance->reset_mutex);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007181 error = megasas_register_aen(instance, seq_num,
7182 class_locale.word);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007183 if (error)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307184 dev_err(&instance->pdev->dev,
7185 "register aen failed error %x\n", error);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007186
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307187 mutex_unlock(&instance->reset_mutex);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007188 kfree(ev);
7189}
7190
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007191/**
7192 * megasas_init - Driver load entry point
7193 */
7194static int __init megasas_init(void)
7195{
7196 int rval;
7197
7198 /*
Sumit Saxenac3e385a2016-04-15 00:23:30 -07007199 * Booted in kdump kernel, minimize memory footprints by
7200 * disabling few features
7201 */
7202 if (reset_devices) {
7203 msix_vectors = 1;
7204 rdpq_enable = 0;
7205 dual_qdepth_disable = 1;
7206 }
7207
7208 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007209 * Announce driver version and other information
7210 */
Sumit.Saxena@avagotech.comd98a6de2014-11-17 15:23:58 +05307211 pr_info("megasas: %s\n", MEGASAS_VERSION);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007212
Kashyap Desaibd8d6dd2012-07-17 18:20:44 -07007213 spin_lock_init(&poll_aen_lock);
7214
Yang, Bo72c4fd32009-10-06 14:20:59 -06007215 support_poll_for_event = 2;
Yang, Bo837f5fe2010-10-11 06:59:20 -06007216 support_device_change = 1;
Yang, Bo72c4fd32009-10-06 14:20:59 -06007217
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007218 memset(&megasas_mgmt_info, 0, sizeof(megasas_mgmt_info));
7219
7220 /*
7221 * Register character device node
7222 */
7223 rval = register_chrdev(0, "megaraid_sas_ioctl", &megasas_mgmt_fops);
7224
7225 if (rval < 0) {
7226 printk(KERN_DEBUG "megasas: failed to open device node\n");
7227 return rval;
7228 }
7229
7230 megasas_mgmt_majorno = rval;
7231
7232 /*
7233 * Register ourselves as PCI hotplug module
7234 */
Michal Piotrowski4041b9c2006-08-17 13:28:22 +00007235 rval = pci_register_driver(&megasas_pci_driver);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007236
7237 if (rval) {
Masanari Iida6774def2014-11-05 22:26:48 +09007238 printk(KERN_DEBUG "megasas: PCI hotplug registration failed \n");
Jeff Garzik83aabc12006-10-04 06:34:03 -04007239 goto err_pcidrv;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007240 }
7241
Jeff Garzik83aabc12006-10-04 06:34:03 -04007242 rval = driver_create_file(&megasas_pci_driver.driver,
7243 &driver_attr_version);
7244 if (rval)
7245 goto err_dcf_attr_ver;
Yang, Bo72c4fd32009-10-06 14:20:59 -06007246
7247 rval = driver_create_file(&megasas_pci_driver.driver,
Sumit.Saxena@avagotech.com09fced12015-04-23 16:31:54 +05307248 &driver_attr_release_date);
7249 if (rval)
7250 goto err_dcf_rel_date;
7251
7252 rval = driver_create_file(&megasas_pci_driver.driver,
Yang, Bo72c4fd32009-10-06 14:20:59 -06007253 &driver_attr_support_poll_for_event);
7254 if (rval)
7255 goto err_dcf_support_poll_for_event;
7256
Jeff Garzik83aabc12006-10-04 06:34:03 -04007257 rval = driver_create_file(&megasas_pci_driver.driver,
7258 &driver_attr_dbg_lvl);
7259 if (rval)
7260 goto err_dcf_dbg_lvl;
bo yangad84db22007-11-09 04:40:16 -05007261 rval = driver_create_file(&megasas_pci_driver.driver,
Yang, Bo837f5fe2010-10-11 06:59:20 -06007262 &driver_attr_support_device_change);
7263 if (rval)
7264 goto err_dcf_support_device_change;
7265
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007266 return rval;
bo yangad84db22007-11-09 04:40:16 -05007267
Yang, Bo837f5fe2010-10-11 06:59:20 -06007268err_dcf_support_device_change:
7269 driver_remove_file(&megasas_pci_driver.driver,
bo yangad84db22007-11-09 04:40:16 -05007270 &driver_attr_dbg_lvl);
Jeff Garzik83aabc12006-10-04 06:34:03 -04007271err_dcf_dbg_lvl:
7272 driver_remove_file(&megasas_pci_driver.driver,
Yang, Bo72c4fd32009-10-06 14:20:59 -06007273 &driver_attr_support_poll_for_event);
Yang, Bo72c4fd32009-10-06 14:20:59 -06007274err_dcf_support_poll_for_event:
Sumit.Saxena@avagotech.com09fced12015-04-23 16:31:54 +05307275 driver_remove_file(&megasas_pci_driver.driver,
7276 &driver_attr_release_date);
7277err_dcf_rel_date:
Jeff Garzik83aabc12006-10-04 06:34:03 -04007278 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
7279err_dcf_attr_ver:
7280 pci_unregister_driver(&megasas_pci_driver);
7281err_pcidrv:
7282 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
adam radford0d490162010-12-14 19:17:17 -08007283 return rval;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007284}
7285
7286/**
7287 * megasas_exit - Driver unload entry point
7288 */
7289static void __exit megasas_exit(void)
7290{
Sumant Patro658dced2006-10-03 13:09:14 -07007291 driver_remove_file(&megasas_pci_driver.driver,
7292 &driver_attr_dbg_lvl);
Jeff Garzik83aabc12006-10-04 06:34:03 -04007293 driver_remove_file(&megasas_pci_driver.driver,
Yang, Bo837f5fe2010-10-11 06:59:20 -06007294 &driver_attr_support_poll_for_event);
7295 driver_remove_file(&megasas_pci_driver.driver,
7296 &driver_attr_support_device_change);
Sumit.Saxena@avagotech.com09fced12015-04-23 16:31:54 +05307297 driver_remove_file(&megasas_pci_driver.driver,
7298 &driver_attr_release_date);
Jeff Garzik83aabc12006-10-04 06:34:03 -04007299 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007300
7301 pci_unregister_driver(&megasas_pci_driver);
7302 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
7303}
7304
7305module_init(megasas_init);
7306module_exit(megasas_exit);