blob: d8b1fbd4c8aafc61e5e5491d5394440651a43a04 [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 &&
1904 cmd_mfi->frame->hdr.cmd != MFI_CMD_ABORT)
1905 megasas_complete_cmd(instance,
1906 cmd_mfi, DID_OK);
1907 }
1908 }
1909 } else {
1910 for (i = 0; i < instance->max_fw_cmds; i++) {
1911 cmd_mfi = instance->cmd_list[i];
1912 if (cmd_mfi->sync_cmd && cmd_mfi->frame->hdr.cmd !=
1913 MFI_CMD_ABORT)
1914 megasas_complete_cmd(instance, cmd_mfi, DID_OK);
1915 }
1916 }
1917}
1918
1919
adam radford9c915a82010-12-21 13:34:31 -08001920void megaraid_sas_kill_hba(struct megasas_instance *instance)
bo yang39a98552010-09-22 22:36:29 -04001921{
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301922 /* Set critical error to block I/O & ioctls in case caller didn't */
Sumit Saxena8a01a412016-01-28 21:04:32 +05301923 atomic_set(&instance->adprecovery, MEGASAS_HW_CRITICAL_ERROR);
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301924 /* Wait 1 second to ensure IO or ioctls in build have posted */
1925 msleep(1000);
bo yang39a98552010-09-22 22:36:29 -04001926 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301927 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05301928 (instance->ctrl_context)) {
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05001929 writel(MFI_STOP_ADP, &instance->reg_set->doorbell);
adam radford229fe472014-03-10 02:51:56 -07001930 /* Flush */
1931 readl(&instance->reg_set->doorbell);
Sumit Saxena8f67c8c2016-01-28 21:14:25 +05301932 if (instance->requestorId && instance->peerIsPresent)
adam radford229fe472014-03-10 02:51:56 -07001933 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
bo yang39a98552010-09-22 22:36:29 -04001934 } else {
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301935 writel(MFI_STOP_ADP,
1936 &instance->reg_set->inbound_doorbell);
adam radford9c915a82010-12-21 13:34:31 -08001937 }
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05301938 /* Complete outstanding ioctls when adapter is killed */
1939 megasas_complete_outstanding_ioctls(instance);
adam radford9c915a82010-12-21 13:34:31 -08001940}
1941
1942 /**
1943 * megasas_check_and_restore_queue_depth - Check if queue depth needs to be
1944 * restored to max value
1945 * @instance: Adapter soft state
1946 *
1947 */
1948void
1949megasas_check_and_restore_queue_depth(struct megasas_instance *instance)
1950{
1951 unsigned long flags;
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05301952
adam radford9c915a82010-12-21 13:34:31 -08001953 if (instance->flag & MEGASAS_FW_BUSY
adam radfordc5daa6a2012-07-17 18:20:03 -07001954 && time_after(jiffies, instance->last_time + 5 * HZ)
1955 && atomic_read(&instance->fw_outstanding) <
1956 instance->throttlequeuedepth + 1) {
adam radford9c915a82010-12-21 13:34:31 -08001957
1958 spin_lock_irqsave(instance->host->host_lock, flags);
1959 instance->flag &= ~MEGASAS_FW_BUSY;
adam radford9c915a82010-12-21 13:34:31 -08001960
Sumit Saxena308ec452016-01-28 21:04:30 +05301961 instance->host->can_queue = instance->cur_can_queue;
adam radford9c915a82010-12-21 13:34:31 -08001962 spin_unlock_irqrestore(instance->host->host_lock, flags);
bo yang39a98552010-09-22 22:36:29 -04001963 }
1964}
1965
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001966/**
bo yang7343eb62007-11-09 04:35:44 -05001967 * megasas_complete_cmd_dpc - Returns FW's controller structure
1968 * @instance_addr: Address of adapter soft state
1969 *
1970 * Tasklet to complete cmds
1971 */
1972static void megasas_complete_cmd_dpc(unsigned long instance_addr)
1973{
1974 u32 producer;
1975 u32 consumer;
1976 u32 context;
1977 struct megasas_cmd *cmd;
1978 struct megasas_instance *instance =
1979 (struct megasas_instance *)instance_addr;
1980 unsigned long flags;
1981
1982 /* If we have already declared adapter dead, donot complete cmds */
Sumit Saxena8a01a412016-01-28 21:04:32 +05301983 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR)
bo yang7343eb62007-11-09 04:35:44 -05001984 return;
1985
1986 spin_lock_irqsave(&instance->completion_lock, flags);
1987
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301988 producer = le32_to_cpu(*instance->producer);
1989 consumer = le32_to_cpu(*instance->consumer);
bo yang7343eb62007-11-09 04:35:44 -05001990
1991 while (consumer != producer) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05301992 context = le32_to_cpu(instance->reply_queue[consumer]);
bo yang39a98552010-09-22 22:36:29 -04001993 if (context >= instance->max_fw_cmds) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05001994 dev_err(&instance->pdev->dev, "Unexpected context value %x\n",
bo yang39a98552010-09-22 22:36:29 -04001995 context);
1996 BUG();
1997 }
bo yang7343eb62007-11-09 04:35:44 -05001998
1999 cmd = instance->cmd_list[context];
2000
2001 megasas_complete_cmd(instance, cmd, DID_OK);
2002
2003 consumer++;
2004 if (consumer == (instance->max_fw_cmds + 1)) {
2005 consumer = 0;
2006 }
2007 }
2008
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05302009 *instance->consumer = cpu_to_le32(producer);
bo yang7343eb62007-11-09 04:35:44 -05002010
2011 spin_unlock_irqrestore(&instance->completion_lock, flags);
2012
2013 /*
2014 * Check if we can restore can_queue
2015 */
adam radford9c915a82010-12-21 13:34:31 -08002016 megasas_check_and_restore_queue_depth(instance);
bo yang7343eb62007-11-09 04:35:44 -05002017}
2018
adam radford229fe472014-03-10 02:51:56 -07002019/**
2020 * megasas_start_timer - Initializes a timer object
2021 * @instance: Adapter soft state
2022 * @timer: timer object to be initialized
2023 * @fn: timer function
2024 * @interval: time interval between timer function call
2025 *
2026 */
2027void megasas_start_timer(struct megasas_instance *instance,
2028 struct timer_list *timer,
2029 void *fn, unsigned long interval)
2030{
2031 init_timer(timer);
2032 timer->expires = jiffies + interval;
2033 timer->data = (unsigned long)instance;
2034 timer->function = fn;
2035 add_timer(timer);
2036}
2037
Yang, Bo707e09b2010-10-12 07:20:27 -06002038static void
2039megasas_internal_reset_defer_cmds(struct megasas_instance *instance);
2040
2041static void
2042process_fw_state_change_wq(struct work_struct *work);
2043
2044void megasas_do_ocr(struct megasas_instance *instance)
2045{
2046 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1064R) ||
2047 (instance->pdev->device == PCI_DEVICE_ID_DELL_PERC5) ||
2048 (instance->pdev->device == PCI_DEVICE_ID_LSI_VERDE_ZCR)) {
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05302049 *instance->consumer = cpu_to_le32(MEGASAS_ADPRESET_INPROG_SIGN);
Yang, Bo707e09b2010-10-12 07:20:27 -06002050 }
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05302051 instance->instancet->disable_intr(instance);
Sumit Saxena8a01a412016-01-28 21:04:32 +05302052 atomic_set(&instance->adprecovery, MEGASAS_ADPRESET_SM_INFAULT);
Yang, Bo707e09b2010-10-12 07:20:27 -06002053 instance->issuepend_done = 0;
2054
2055 atomic_set(&instance->fw_outstanding, 0);
2056 megasas_internal_reset_defer_cmds(instance);
2057 process_fw_state_change_wq(&instance->work_init);
2058}
2059
Adam Radford4cbfea82014-07-09 15:17:56 -07002060static int megasas_get_ld_vf_affiliation_111(struct megasas_instance *instance,
2061 int initial)
adam radford229fe472014-03-10 02:51:56 -07002062{
2063 struct megasas_cmd *cmd;
2064 struct megasas_dcmd_frame *dcmd;
adam radford229fe472014-03-10 02:51:56 -07002065 struct MR_LD_VF_AFFILIATION_111 *new_affiliation_111 = NULL;
adam radford229fe472014-03-10 02:51:56 -07002066 dma_addr_t new_affiliation_111_h;
2067 int ld, retval = 0;
2068 u8 thisVf;
2069
2070 cmd = megasas_get_cmd(instance);
2071
2072 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002073 dev_printk(KERN_DEBUG, &instance->pdev->dev, "megasas_get_ld_vf_affiliation_111:"
2074 "Failed to get cmd for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002075 instance->host->host_no);
2076 return -ENOMEM;
2077 }
2078
2079 dcmd = &cmd->frame->dcmd;
2080
Adam Radford4cbfea82014-07-09 15:17:56 -07002081 if (!instance->vf_affiliation_111) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002082 dev_warn(&instance->pdev->dev, "SR-IOV: Couldn't get LD/VF "
2083 "affiliation for scsi%d\n", instance->host->host_no);
adam radford229fe472014-03-10 02:51:56 -07002084 megasas_return_cmd(instance, cmd);
2085 return -ENOMEM;
2086 }
2087
2088 if (initial)
adam radford229fe472014-03-10 02:51:56 -07002089 memset(instance->vf_affiliation_111, 0,
2090 sizeof(struct MR_LD_VF_AFFILIATION_111));
adam radford229fe472014-03-10 02:51:56 -07002091 else {
Adam Radford4cbfea82014-07-09 15:17:56 -07002092 new_affiliation_111 =
2093 pci_alloc_consistent(instance->pdev,
2094 sizeof(struct MR_LD_VF_AFFILIATION_111),
2095 &new_affiliation_111_h);
2096 if (!new_affiliation_111) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002097 dev_printk(KERN_DEBUG, &instance->pdev->dev, "SR-IOV: Couldn't allocate "
2098 "memory for new affiliation for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002099 instance->host->host_no);
adam radford229fe472014-03-10 02:51:56 -07002100 megasas_return_cmd(instance, cmd);
2101 return -ENOMEM;
2102 }
Adam Radford4cbfea82014-07-09 15:17:56 -07002103 memset(new_affiliation_111, 0,
2104 sizeof(struct MR_LD_VF_AFFILIATION_111));
adam radford229fe472014-03-10 02:51:56 -07002105 }
2106
2107 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2108
2109 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302110 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
adam radford229fe472014-03-10 02:51:56 -07002111 dcmd->sge_count = 1;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302112 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_BOTH);
adam radford229fe472014-03-10 02:51:56 -07002113 dcmd->timeout = 0;
2114 dcmd->pad_0 = 0;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302115 dcmd->data_xfer_len =
2116 cpu_to_le32(sizeof(struct MR_LD_VF_AFFILIATION_111));
2117 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_VF_MAP_GET_ALL_LDS_111);
adam radford229fe472014-03-10 02:51:56 -07002118
Adam Radford4cbfea82014-07-09 15:17:56 -07002119 if (initial)
2120 dcmd->sgl.sge32[0].phys_addr =
Christoph Hellwig2213a462015-04-23 16:33:54 +05302121 cpu_to_le32(instance->vf_affiliation_111_h);
adam radford229fe472014-03-10 02:51:56 -07002122 else
Christoph Hellwig2213a462015-04-23 16:33:54 +05302123 dcmd->sgl.sge32[0].phys_addr =
2124 cpu_to_le32(new_affiliation_111_h);
Adam Radford4cbfea82014-07-09 15:17:56 -07002125
Christoph Hellwig2213a462015-04-23 16:33:54 +05302126 dcmd->sgl.sge32[0].length = cpu_to_le32(
2127 sizeof(struct MR_LD_VF_AFFILIATION_111));
adam radford229fe472014-03-10 02:51:56 -07002128
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002129 dev_warn(&instance->pdev->dev, "SR-IOV: Getting LD/VF affiliation for "
adam radford229fe472014-03-10 02:51:56 -07002130 "scsi%d\n", instance->host->host_no);
2131
Sumit Saxena6d40afb2016-01-28 21:04:23 +05302132 if (megasas_issue_blocked_cmd(instance, cmd, 0) != DCMD_SUCCESS) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002133 dev_warn(&instance->pdev->dev, "SR-IOV: LD/VF affiliation DCMD"
2134 " failed with status 0x%x for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002135 dcmd->cmd_status, instance->host->host_no);
2136 retval = 1; /* Do a scan if we couldn't get affiliation */
2137 goto out;
2138 }
2139
2140 if (!initial) {
Adam Radford4cbfea82014-07-09 15:17:56 -07002141 thisVf = new_affiliation_111->thisVf;
2142 for (ld = 0 ; ld < new_affiliation_111->vdCount; ld++)
2143 if (instance->vf_affiliation_111->map[ld].policy[thisVf] !=
2144 new_affiliation_111->map[ld].policy[thisVf]) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002145 dev_warn(&instance->pdev->dev, "SR-IOV: "
2146 "Got new LD/VF affiliation for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002147 instance->host->host_no);
Adam Radford4cbfea82014-07-09 15:17:56 -07002148 memcpy(instance->vf_affiliation_111,
2149 new_affiliation_111,
2150 sizeof(struct MR_LD_VF_AFFILIATION_111));
adam radford229fe472014-03-10 02:51:56 -07002151 retval = 1;
2152 goto out;
2153 }
Adam Radford4cbfea82014-07-09 15:17:56 -07002154 }
2155out:
2156 if (new_affiliation_111) {
2157 pci_free_consistent(instance->pdev,
2158 sizeof(struct MR_LD_VF_AFFILIATION_111),
2159 new_affiliation_111,
2160 new_affiliation_111_h);
2161 }
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05302162
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302163 megasas_return_cmd(instance, cmd);
Adam Radford4cbfea82014-07-09 15:17:56 -07002164
2165 return retval;
2166}
2167
2168static int megasas_get_ld_vf_affiliation_12(struct megasas_instance *instance,
2169 int initial)
2170{
2171 struct megasas_cmd *cmd;
2172 struct megasas_dcmd_frame *dcmd;
2173 struct MR_LD_VF_AFFILIATION *new_affiliation = NULL;
2174 struct MR_LD_VF_MAP *newmap = NULL, *savedmap = NULL;
2175 dma_addr_t new_affiliation_h;
2176 int i, j, retval = 0, found = 0, doscan = 0;
2177 u8 thisVf;
2178
2179 cmd = megasas_get_cmd(instance);
2180
2181 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002182 dev_printk(KERN_DEBUG, &instance->pdev->dev, "megasas_get_ld_vf_affiliation12: "
2183 "Failed to get cmd for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002184 instance->host->host_no);
2185 return -ENOMEM;
2186 }
2187
2188 dcmd = &cmd->frame->dcmd;
2189
2190 if (!instance->vf_affiliation) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002191 dev_warn(&instance->pdev->dev, "SR-IOV: Couldn't get LD/VF "
2192 "affiliation for scsi%d\n", instance->host->host_no);
Adam Radford4cbfea82014-07-09 15:17:56 -07002193 megasas_return_cmd(instance, cmd);
2194 return -ENOMEM;
2195 }
2196
2197 if (initial)
2198 memset(instance->vf_affiliation, 0, (MAX_LOGICAL_DRIVES + 1) *
2199 sizeof(struct MR_LD_VF_AFFILIATION));
2200 else {
2201 new_affiliation =
2202 pci_alloc_consistent(instance->pdev,
2203 (MAX_LOGICAL_DRIVES + 1) *
2204 sizeof(struct MR_LD_VF_AFFILIATION),
2205 &new_affiliation_h);
2206 if (!new_affiliation) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002207 dev_printk(KERN_DEBUG, &instance->pdev->dev, "SR-IOV: Couldn't allocate "
2208 "memory for new affiliation for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002209 instance->host->host_no);
2210 megasas_return_cmd(instance, cmd);
2211 return -ENOMEM;
2212 }
2213 memset(new_affiliation, 0, (MAX_LOGICAL_DRIVES + 1) *
2214 sizeof(struct MR_LD_VF_AFFILIATION));
2215 }
2216
2217 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2218
2219 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302220 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Adam Radford4cbfea82014-07-09 15:17:56 -07002221 dcmd->sge_count = 1;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302222 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_BOTH);
Adam Radford4cbfea82014-07-09 15:17:56 -07002223 dcmd->timeout = 0;
2224 dcmd->pad_0 = 0;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302225 dcmd->data_xfer_len = cpu_to_le32((MAX_LOGICAL_DRIVES + 1) *
2226 sizeof(struct MR_LD_VF_AFFILIATION));
2227 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_VF_MAP_GET_ALL_LDS);
Adam Radford4cbfea82014-07-09 15:17:56 -07002228
2229 if (initial)
Christoph Hellwig2213a462015-04-23 16:33:54 +05302230 dcmd->sgl.sge32[0].phys_addr =
2231 cpu_to_le32(instance->vf_affiliation_h);
Adam Radford4cbfea82014-07-09 15:17:56 -07002232 else
Christoph Hellwig2213a462015-04-23 16:33:54 +05302233 dcmd->sgl.sge32[0].phys_addr =
2234 cpu_to_le32(new_affiliation_h);
Adam Radford4cbfea82014-07-09 15:17:56 -07002235
Christoph Hellwig2213a462015-04-23 16:33:54 +05302236 dcmd->sgl.sge32[0].length = cpu_to_le32((MAX_LOGICAL_DRIVES + 1) *
2237 sizeof(struct MR_LD_VF_AFFILIATION));
Adam Radford4cbfea82014-07-09 15:17:56 -07002238
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002239 dev_warn(&instance->pdev->dev, "SR-IOV: Getting LD/VF affiliation for "
Adam Radford4cbfea82014-07-09 15:17:56 -07002240 "scsi%d\n", instance->host->host_no);
2241
Adam Radford4cbfea82014-07-09 15:17:56 -07002242
Sumit Saxena6d40afb2016-01-28 21:04:23 +05302243 if (megasas_issue_blocked_cmd(instance, cmd, 0) != DCMD_SUCCESS) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002244 dev_warn(&instance->pdev->dev, "SR-IOV: LD/VF affiliation DCMD"
2245 " failed with status 0x%x for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002246 dcmd->cmd_status, instance->host->host_no);
2247 retval = 1; /* Do a scan if we couldn't get affiliation */
2248 goto out;
2249 }
2250
2251 if (!initial) {
2252 if (!new_affiliation->ldCount) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002253 dev_warn(&instance->pdev->dev, "SR-IOV: Got new LD/VF "
2254 "affiliation for passive path for scsi%d\n",
Adam Radford4cbfea82014-07-09 15:17:56 -07002255 instance->host->host_no);
2256 retval = 1;
2257 goto out;
2258 }
2259 newmap = new_affiliation->map;
2260 savedmap = instance->vf_affiliation->map;
2261 thisVf = new_affiliation->thisVf;
2262 for (i = 0 ; i < new_affiliation->ldCount; i++) {
2263 found = 0;
2264 for (j = 0; j < instance->vf_affiliation->ldCount;
2265 j++) {
2266 if (newmap->ref.targetId ==
2267 savedmap->ref.targetId) {
2268 found = 1;
2269 if (newmap->policy[thisVf] !=
2270 savedmap->policy[thisVf]) {
2271 doscan = 1;
2272 goto out;
2273 }
adam radford229fe472014-03-10 02:51:56 -07002274 }
2275 savedmap = (struct MR_LD_VF_MAP *)
2276 ((unsigned char *)savedmap +
2277 savedmap->size);
Adam Radford4cbfea82014-07-09 15:17:56 -07002278 }
2279 if (!found && newmap->policy[thisVf] !=
2280 MR_LD_ACCESS_HIDDEN) {
2281 doscan = 1;
2282 goto out;
2283 }
2284 newmap = (struct MR_LD_VF_MAP *)
2285 ((unsigned char *)newmap + newmap->size);
2286 }
2287
2288 newmap = new_affiliation->map;
2289 savedmap = instance->vf_affiliation->map;
2290
2291 for (i = 0 ; i < instance->vf_affiliation->ldCount; i++) {
2292 found = 0;
2293 for (j = 0 ; j < new_affiliation->ldCount; j++) {
2294 if (savedmap->ref.targetId ==
2295 newmap->ref.targetId) {
2296 found = 1;
2297 if (savedmap->policy[thisVf] !=
2298 newmap->policy[thisVf]) {
2299 doscan = 1;
2300 goto out;
2301 }
2302 }
adam radford229fe472014-03-10 02:51:56 -07002303 newmap = (struct MR_LD_VF_MAP *)
2304 ((unsigned char *)newmap +
2305 newmap->size);
2306 }
Adam Radford4cbfea82014-07-09 15:17:56 -07002307 if (!found && savedmap->policy[thisVf] !=
2308 MR_LD_ACCESS_HIDDEN) {
2309 doscan = 1;
2310 goto out;
2311 }
2312 savedmap = (struct MR_LD_VF_MAP *)
2313 ((unsigned char *)savedmap +
2314 savedmap->size);
adam radford229fe472014-03-10 02:51:56 -07002315 }
2316 }
2317out:
Adam Radford4cbfea82014-07-09 15:17:56 -07002318 if (doscan) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002319 dev_warn(&instance->pdev->dev, "SR-IOV: Got new LD/VF "
2320 "affiliation for scsi%d\n", instance->host->host_no);
Adam Radford4cbfea82014-07-09 15:17:56 -07002321 memcpy(instance->vf_affiliation, new_affiliation,
2322 new_affiliation->size);
2323 retval = 1;
adam radford229fe472014-03-10 02:51:56 -07002324 }
Adam Radford4cbfea82014-07-09 15:17:56 -07002325
2326 if (new_affiliation)
2327 pci_free_consistent(instance->pdev,
2328 (MAX_LOGICAL_DRIVES + 1) *
2329 sizeof(struct MR_LD_VF_AFFILIATION),
2330 new_affiliation, new_affiliation_h);
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302331 megasas_return_cmd(instance, cmd);
adam radford229fe472014-03-10 02:51:56 -07002332
2333 return retval;
2334}
2335
Adam Radford4cbfea82014-07-09 15:17:56 -07002336/* This function will get the current SR-IOV LD/VF affiliation */
2337static int megasas_get_ld_vf_affiliation(struct megasas_instance *instance,
2338 int initial)
2339{
2340 int retval;
2341
2342 if (instance->PlasmaFW111)
2343 retval = megasas_get_ld_vf_affiliation_111(instance, initial);
2344 else
2345 retval = megasas_get_ld_vf_affiliation_12(instance, initial);
2346 return retval;
2347}
2348
adam radford229fe472014-03-10 02:51:56 -07002349/* This function will tell FW to start the SR-IOV heartbeat */
2350int megasas_sriov_start_heartbeat(struct megasas_instance *instance,
2351 int initial)
2352{
2353 struct megasas_cmd *cmd;
2354 struct megasas_dcmd_frame *dcmd;
2355 int retval = 0;
2356
2357 cmd = megasas_get_cmd(instance);
2358
2359 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002360 dev_printk(KERN_DEBUG, &instance->pdev->dev, "megasas_sriov_start_heartbeat: "
2361 "Failed to get cmd for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002362 instance->host->host_no);
2363 return -ENOMEM;
2364 }
2365
2366 dcmd = &cmd->frame->dcmd;
2367
2368 if (initial) {
2369 instance->hb_host_mem =
Joe Perches7c845eb2014-08-08 14:24:46 -07002370 pci_zalloc_consistent(instance->pdev,
2371 sizeof(struct MR_CTRL_HB_HOST_MEM),
2372 &instance->hb_host_mem_h);
adam radford229fe472014-03-10 02:51:56 -07002373 if (!instance->hb_host_mem) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002374 dev_printk(KERN_DEBUG, &instance->pdev->dev, "SR-IOV: Couldn't allocate"
2375 " memory for heartbeat host memory for scsi%d\n",
2376 instance->host->host_no);
adam radford229fe472014-03-10 02:51:56 -07002377 retval = -ENOMEM;
2378 goto out;
2379 }
adam radford229fe472014-03-10 02:51:56 -07002380 }
2381
2382 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2383
Christoph Hellwig2213a462015-04-23 16:33:54 +05302384 dcmd->mbox.s[0] = cpu_to_le16(sizeof(struct MR_CTRL_HB_HOST_MEM));
adam radford229fe472014-03-10 02:51:56 -07002385 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302386 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
adam radford229fe472014-03-10 02:51:56 -07002387 dcmd->sge_count = 1;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302388 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_BOTH);
adam radford229fe472014-03-10 02:51:56 -07002389 dcmd->timeout = 0;
2390 dcmd->pad_0 = 0;
Christoph Hellwig2213a462015-04-23 16:33:54 +05302391 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct MR_CTRL_HB_HOST_MEM));
2392 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_SHARED_HOST_MEM_ALLOC);
2393 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(instance->hb_host_mem_h);
2394 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct MR_CTRL_HB_HOST_MEM));
adam radford229fe472014-03-10 02:51:56 -07002395
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002396 dev_warn(&instance->pdev->dev, "SR-IOV: Starting heartbeat for scsi%d\n",
adam radford229fe472014-03-10 02:51:56 -07002397 instance->host->host_no);
2398
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302399 if (instance->ctrl_context && !instance->mask_interrupts)
2400 retval = megasas_issue_blocked_cmd(instance, cmd,
2401 MEGASAS_ROUTINE_WAIT_TIME_VF);
2402 else
2403 retval = megasas_issue_polled(instance, cmd);
adam radford229fe472014-03-10 02:51:56 -07002404
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302405 if (retval) {
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302406 dev_warn(&instance->pdev->dev, "SR-IOV: MR_DCMD_CTRL_SHARED_HOST"
2407 "_MEM_ALLOC DCMD %s for scsi%d\n",
2408 (dcmd->cmd_status == MFI_STAT_INVALID_STATUS) ?
2409 "timed out" : "failed", instance->host->host_no);
adam radford229fe472014-03-10 02:51:56 -07002410 retval = 1;
adam radford229fe472014-03-10 02:51:56 -07002411 }
2412
2413out:
2414 megasas_return_cmd(instance, cmd);
2415
2416 return retval;
2417}
2418
2419/* Handler for SR-IOV heartbeat */
2420void megasas_sriov_heartbeat_handler(unsigned long instance_addr)
2421{
2422 struct megasas_instance *instance =
2423 (struct megasas_instance *)instance_addr;
2424
2425 if (instance->hb_host_mem->HB.fwCounter !=
2426 instance->hb_host_mem->HB.driverCounter) {
2427 instance->hb_host_mem->HB.driverCounter =
2428 instance->hb_host_mem->HB.fwCounter;
2429 mod_timer(&instance->sriov_heartbeat_timer,
2430 jiffies + MEGASAS_SRIOV_HEARTBEAT_INTERVAL_VF);
2431 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002432 dev_warn(&instance->pdev->dev, "SR-IOV: Heartbeat never "
adam radford229fe472014-03-10 02:51:56 -07002433 "completed for scsi%d\n", instance->host->host_no);
2434 schedule_work(&instance->work_init);
2435 }
2436}
2437
bo yang7343eb62007-11-09 04:35:44 -05002438/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002439 * megasas_wait_for_outstanding - Wait for all outstanding cmds
2440 * @instance: Adapter soft state
2441 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002442 * This function waits for up to MEGASAS_RESET_WAIT_TIME seconds for FW to
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002443 * complete all its outstanding commands. Returns error if one or more IOs
2444 * are pending after this time period. It also marks the controller dead.
2445 */
2446static int megasas_wait_for_outstanding(struct megasas_instance *instance)
2447{
Sumit Saxenaccc75072016-01-28 21:04:33 +05302448 int i, sl, outstanding;
bo yang39a98552010-09-22 22:36:29 -04002449 u32 reset_index;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002450 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
bo yang39a98552010-09-22 22:36:29 -04002451 unsigned long flags;
2452 struct list_head clist_local;
2453 struct megasas_cmd *reset_cmd;
Yang, Bo707e09b2010-10-12 07:20:27 -06002454 u32 fw_state;
bo yang39a98552010-09-22 22:36:29 -04002455
Sumit Saxenaccc75072016-01-28 21:04:33 +05302456 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
2457 dev_info(&instance->pdev->dev, "%s:%d HBA is killed.\n",
2458 __func__, __LINE__);
2459 return FAILED;
2460 }
bo yang39a98552010-09-22 22:36:29 -04002461
Sumit Saxena8a01a412016-01-28 21:04:32 +05302462 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04002463
2464 INIT_LIST_HEAD(&clist_local);
2465 spin_lock_irqsave(&instance->hba_lock, flags);
2466 list_splice_init(&instance->internal_reset_pending_q,
2467 &clist_local);
2468 spin_unlock_irqrestore(&instance->hba_lock, flags);
2469
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002470 dev_notice(&instance->pdev->dev, "HBA reset wait ...\n");
bo yang39a98552010-09-22 22:36:29 -04002471 for (i = 0; i < wait_time; i++) {
2472 msleep(1000);
Sumit Saxena8a01a412016-01-28 21:04:32 +05302473 if (atomic_read(&instance->adprecovery) == MEGASAS_HBA_OPERATIONAL)
bo yang39a98552010-09-22 22:36:29 -04002474 break;
2475 }
2476
Sumit Saxena8a01a412016-01-28 21:04:32 +05302477 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002478 dev_notice(&instance->pdev->dev, "reset: Stopping HBA.\n");
Sumit Saxena8a01a412016-01-28 21:04:32 +05302479 atomic_set(&instance->adprecovery, MEGASAS_HW_CRITICAL_ERROR);
bo yang39a98552010-09-22 22:36:29 -04002480 return FAILED;
2481 }
2482
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002483 reset_index = 0;
bo yang39a98552010-09-22 22:36:29 -04002484 while (!list_empty(&clist_local)) {
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002485 reset_cmd = list_entry((&clist_local)->next,
bo yang39a98552010-09-22 22:36:29 -04002486 struct megasas_cmd, list);
2487 list_del_init(&reset_cmd->list);
2488 if (reset_cmd->scmd) {
2489 reset_cmd->scmd->result = DID_RESET << 16;
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002490 dev_notice(&instance->pdev->dev, "%d:%p reset [%02x]\n",
bo yang39a98552010-09-22 22:36:29 -04002491 reset_index, reset_cmd,
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04002492 reset_cmd->scmd->cmnd[0]);
bo yang39a98552010-09-22 22:36:29 -04002493
2494 reset_cmd->scmd->scsi_done(reset_cmd->scmd);
2495 megasas_return_cmd(instance, reset_cmd);
2496 } else if (reset_cmd->sync_cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002497 dev_notice(&instance->pdev->dev, "%p synch cmds"
bo yang39a98552010-09-22 22:36:29 -04002498 "reset queue\n",
2499 reset_cmd);
2500
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05302501 reset_cmd->cmd_status_drv = MFI_STAT_INVALID_STATUS;
bo yang39a98552010-09-22 22:36:29 -04002502 instance->instancet->fire_cmd(instance,
2503 reset_cmd->frame_phys_addr,
2504 0, instance->reg_set);
2505 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002506 dev_notice(&instance->pdev->dev, "%p unexpected"
bo yang39a98552010-09-22 22:36:29 -04002507 "cmds lst\n",
2508 reset_cmd);
2509 }
2510 reset_index++;
2511 }
2512
2513 return SUCCESS;
2514 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002515
adam radfordc007b8b2012-07-17 18:20:24 -07002516 for (i = 0; i < resetwaittime; i++) {
Sumit Saxenaccc75072016-01-28 21:04:33 +05302517 outstanding = atomic_read(&instance->fw_outstanding);
Sumant Patroe4a082c2006-05-30 12:03:37 -07002518
2519 if (!outstanding)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002520 break;
2521
2522 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002523 dev_notice(&instance->pdev->dev, "[%2d]waiting for %d "
Sumant Patroe4a082c2006-05-30 12:03:37 -07002524 "commands to complete\n",i,outstanding);
bo yang7343eb62007-11-09 04:35:44 -05002525 /*
2526 * Call cmd completion routine. Cmd to be
2527 * be completed directly without depending on isr.
2528 */
2529 megasas_complete_cmd_dpc((unsigned long)instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002530 }
2531
2532 msleep(1000);
2533 }
2534
Yang, Bo707e09b2010-10-12 07:20:27 -06002535 i = 0;
Sumit Saxenaccc75072016-01-28 21:04:33 +05302536 outstanding = atomic_read(&instance->fw_outstanding);
2537 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) & MFI_STATE_MASK;
Yang, Bo707e09b2010-10-12 07:20:27 -06002538
Sumit Saxenaccc75072016-01-28 21:04:33 +05302539 if ((!outstanding && (fw_state == MFI_STATE_OPERATIONAL)))
2540 goto no_outstanding;
2541
2542 if (instance->disableOnlineCtrlReset)
2543 goto kill_hba_and_failed;
2544 do {
2545 if ((fw_state == MFI_STATE_FAULT) || atomic_read(&instance->fw_outstanding)) {
2546 dev_info(&instance->pdev->dev,
2547 "%s:%d waiting_for_outstanding: before issue OCR. FW state = 0x%x, oustanding 0x%x\n",
2548 __func__, __LINE__, fw_state, atomic_read(&instance->fw_outstanding));
2549 if (i == 3)
2550 goto kill_hba_and_failed;
2551 megasas_do_ocr(instance);
2552
2553 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
2554 dev_info(&instance->pdev->dev, "%s:%d OCR failed and HBA is killed.\n",
2555 __func__, __LINE__);
2556 return FAILED;
2557 }
2558 dev_info(&instance->pdev->dev, "%s:%d waiting_for_outstanding: after issue OCR.\n",
2559 __func__, __LINE__);
2560
2561 for (sl = 0; sl < 10; sl++)
2562 msleep(500);
2563
2564 outstanding = atomic_read(&instance->fw_outstanding);
2565
2566 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) & MFI_STATE_MASK;
2567 if ((!outstanding && (fw_state == MFI_STATE_OPERATIONAL)))
2568 goto no_outstanding;
Yang, Bo707e09b2010-10-12 07:20:27 -06002569 }
2570 i++;
2571 } while (i <= 3);
2572
Sumit Saxenaccc75072016-01-28 21:04:33 +05302573no_outstanding:
Yang, Bo707e09b2010-10-12 07:20:27 -06002574
Sumit Saxenaccc75072016-01-28 21:04:33 +05302575 dev_info(&instance->pdev->dev, "%s:%d no more pending commands remain after reset handling.\n",
2576 __func__, __LINE__);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002577 return SUCCESS;
Sumit Saxenaccc75072016-01-28 21:04:33 +05302578
2579kill_hba_and_failed:
2580
2581 /* Reset not supported, kill adapter */
2582 dev_info(&instance->pdev->dev, "%s:%d killing adapter scsi%d"
2583 " disableOnlineCtrlReset %d fw_outstanding %d \n",
2584 __func__, __LINE__, instance->host->host_no, instance->disableOnlineCtrlReset,
2585 atomic_read(&instance->fw_outstanding));
2586 megasas_dump_pending_frames(instance);
2587 megaraid_sas_kill_hba(instance);
2588
2589 return FAILED;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002590}
2591
2592/**
2593 * megasas_generic_reset - Generic reset routine
2594 * @scmd: Mid-layer SCSI command
2595 *
2596 * This routine implements a generic reset handler for device, bus and host
2597 * reset requests. Device, bus and host specific reset handlers can use this
2598 * function after they do their specific tasks.
2599 */
2600static int megasas_generic_reset(struct scsi_cmnd *scmd)
2601{
2602 int ret_val;
2603 struct megasas_instance *instance;
2604
2605 instance = (struct megasas_instance *)scmd->device->host->hostdata;
2606
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04002607 scmd_printk(KERN_NOTICE, scmd, "megasas: RESET cmd=%x retries=%x\n",
2608 scmd->cmnd[0], scmd->retries);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002609
Sumit Saxena8a01a412016-01-28 21:04:32 +05302610 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002611 dev_err(&instance->pdev->dev, "cannot recover from previous reset failures\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002612 return FAILED;
2613 }
2614
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002615 ret_val = megasas_wait_for_outstanding(instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002616 if (ret_val == SUCCESS)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002617 dev_notice(&instance->pdev->dev, "reset successful\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002618 else
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002619 dev_err(&instance->pdev->dev, "failed to do reset\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002620
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002621 return ret_val;
2622}
2623
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002624/**
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002625 * megasas_reset_timer - quiesce the adapter if required
2626 * @scmd: scsi cmnd
2627 *
2628 * Sets the FW busy flag and reduces the host->can_queue if the
2629 * cmd has not been completed within the timeout period.
2630 */
2631static enum
Jens Axboe242f9dc2008-09-14 05:55:09 -07002632blk_eh_timer_return megasas_reset_timer(struct scsi_cmnd *scmd)
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002633{
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002634 struct megasas_instance *instance;
2635 unsigned long flags;
2636
2637 if (time_after(jiffies, scmd->jiffies_at_alloc +
Sumit Saxenae3d178c2016-01-28 21:04:34 +05302638 (scmd_timeout * 2) * HZ)) {
Jens Axboe242f9dc2008-09-14 05:55:09 -07002639 return BLK_EH_NOT_HANDLED;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002640 }
2641
adam radfordf575c5d2011-10-13 16:01:12 -07002642 instance = (struct megasas_instance *)scmd->device->host->hostdata;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002643 if (!(instance->flag & MEGASAS_FW_BUSY)) {
2644 /* FW is busy, throttle IO */
2645 spin_lock_irqsave(instance->host->host_lock, flags);
2646
adam radfordc5daa6a2012-07-17 18:20:03 -07002647 instance->host->can_queue = instance->throttlequeuedepth;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002648 instance->last_time = jiffies;
2649 instance->flag |= MEGASAS_FW_BUSY;
2650
2651 spin_unlock_irqrestore(instance->host->host_lock, flags);
2652 }
Jens Axboe242f9dc2008-09-14 05:55:09 -07002653 return BLK_EH_RESET_TIMER;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002654}
2655
2656/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002657 * megasas_reset_bus_host - Bus & host reset handler entry point
2658 */
2659static int megasas_reset_bus_host(struct scsi_cmnd *scmd)
2660{
2661 int ret;
adam radford9c915a82010-12-21 13:34:31 -08002662 struct megasas_instance *instance;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002663
adam radford9c915a82010-12-21 13:34:31 -08002664 instance = (struct megasas_instance *)scmd->device->host->hostdata;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002665
2666 /*
Uwe Zeisberger80682fa2006-03-22 00:21:33 +01002667 * First wait for all commands to complete
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002668 */
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05302669 if (instance->ctrl_context)
adam radford229fe472014-03-10 02:51:56 -07002670 ret = megasas_reset_fusion(scmd->device->host, 1);
adam radford9c915a82010-12-21 13:34:31 -08002671 else
2672 ret = megasas_generic_reset(scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002673
2674 return ret;
2675}
2676
2677/**
Sumit Saxenabd23d4a2016-04-15 00:23:32 -07002678 * megasas_task_abort - Issues task abort request to firmware
2679 * (supported only for fusion adapters)
2680 * @scmd: SCSI command pointer
2681 */
2682static int megasas_task_abort(struct scsi_cmnd *scmd)
2683{
2684 int ret;
2685 struct megasas_instance *instance;
2686
2687 instance = (struct megasas_instance *)scmd->device->host->hostdata;
2688
2689 if (instance->ctrl_context)
2690 ret = megasas_task_abort_fusion(scmd);
2691 else {
2692 sdev_printk(KERN_NOTICE, scmd->device, "TASK ABORT not supported\n");
2693 ret = FAILED;
2694 }
2695
2696 return ret;
2697}
2698
2699/**
2700 * megasas_reset_target: Issues target reset request to firmware
2701 * (supported only for fusion adapters)
2702 * @scmd: SCSI command pointer
2703 */
2704static int megasas_reset_target(struct scsi_cmnd *scmd)
2705{
2706 int ret;
2707 struct megasas_instance *instance;
2708
2709 instance = (struct megasas_instance *)scmd->device->host->hostdata;
2710
2711 if (instance->ctrl_context)
2712 ret = megasas_reset_target_fusion(scmd);
2713 else {
2714 sdev_printk(KERN_NOTICE, scmd->device, "TARGET RESET not supported\n");
2715 ret = FAILED;
2716 }
2717
2718 return ret;
2719}
2720
2721/**
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002722 * megasas_bios_param - Returns disk geometry for a disk
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002723 * @sdev: device handle
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002724 * @bdev: block device
2725 * @capacity: drive capacity
2726 * @geom: geometry parameters
2727 */
2728static int
2729megasas_bios_param(struct scsi_device *sdev, struct block_device *bdev,
2730 sector_t capacity, int geom[])
2731{
2732 int heads;
2733 int sectors;
2734 sector_t cylinders;
2735 unsigned long tmp;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002736
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002737 /* Default heads (64) & sectors (32) */
2738 heads = 64;
2739 sectors = 32;
2740
2741 tmp = heads * sectors;
2742 cylinders = capacity;
2743
2744 sector_div(cylinders, tmp);
2745
2746 /*
2747 * Handle extended translation size for logical drives > 1Gb
2748 */
2749
2750 if (capacity >= 0x200000) {
2751 heads = 255;
2752 sectors = 63;
2753 tmp = heads*sectors;
2754 cylinders = capacity;
2755 sector_div(cylinders, tmp);
2756 }
2757
2758 geom[0] = heads;
2759 geom[1] = sectors;
2760 geom[2] = cylinders;
2761
2762 return 0;
2763}
2764
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002765static void megasas_aen_polling(struct work_struct *work);
2766
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002767/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002768 * megasas_service_aen - Processes an event notification
2769 * @instance: Adapter soft state
2770 * @cmd: AEN command completed by the ISR
2771 *
2772 * For AEN, driver sends a command down to FW that is held by the FW till an
2773 * event occurs. When an event of interest occurs, FW completes the command
2774 * that it was previously holding.
2775 *
2776 * This routines sends SIGIO signal to processes that have registered with the
2777 * driver for AEN.
2778 */
2779static void
2780megasas_service_aen(struct megasas_instance *instance, struct megasas_cmd *cmd)
2781{
Yang, Boc3518832009-10-06 14:18:02 -06002782 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002783
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002784 /*
2785 * Don't signal app if it is just an aborted previously registered aen
2786 */
Yang, Boc3518832009-10-06 14:18:02 -06002787 if ((!cmd->abort_aen) && (instance->unload == 0)) {
2788 spin_lock_irqsave(&poll_aen_lock, flags);
2789 megasas_poll_wait_aen = 1;
2790 spin_unlock_irqrestore(&poll_aen_lock, flags);
2791 wake_up(&megasas_poll_wait);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002792 kill_fasync(&megasas_async_queue, SIGIO, POLL_IN);
Yang, Boc3518832009-10-06 14:18:02 -06002793 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002794 else
2795 cmd->abort_aen = 0;
2796
2797 instance->aen_cmd = NULL;
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05302798
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05302799 megasas_return_cmd(instance, cmd);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002800
bo yang39a98552010-09-22 22:36:29 -04002801 if ((instance->unload == 0) &&
2802 ((instance->issuepend_done == 1))) {
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002803 struct megasas_aen_event *ev;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002804
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002805 ev = kzalloc(sizeof(*ev), GFP_ATOMIC);
2806 if (!ev) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05002807 dev_err(&instance->pdev->dev, "megasas_service_aen: out of memory\n");
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002808 } else {
2809 ev->instance = instance;
2810 instance->ev = ev;
Xiaotian Fengc1d390d82012-12-04 19:33:54 +08002811 INIT_DELAYED_WORK(&ev->hotplug_work,
2812 megasas_aen_polling);
2813 schedule_delayed_work(&ev->hotplug_work, 0);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002814 }
2815 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002816}
2817
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302818static ssize_t
2819megasas_fw_crash_buffer_store(struct device *cdev,
2820 struct device_attribute *attr, const char *buf, size_t count)
2821{
2822 struct Scsi_Host *shost = class_to_shost(cdev);
2823 struct megasas_instance *instance =
2824 (struct megasas_instance *) shost->hostdata;
2825 int val = 0;
2826 unsigned long flags;
2827
2828 if (kstrtoint(buf, 0, &val) != 0)
2829 return -EINVAL;
2830
2831 spin_lock_irqsave(&instance->crashdump_lock, flags);
2832 instance->fw_crash_buffer_offset = val;
2833 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2834 return strlen(buf);
2835}
2836
2837static ssize_t
2838megasas_fw_crash_buffer_show(struct device *cdev,
2839 struct device_attribute *attr, char *buf)
2840{
2841 struct Scsi_Host *shost = class_to_shost(cdev);
2842 struct megasas_instance *instance =
2843 (struct megasas_instance *) shost->hostdata;
2844 u32 size;
2845 unsigned long buff_addr;
2846 unsigned long dmachunk = CRASH_DMA_BUF_SIZE;
2847 unsigned long src_addr;
2848 unsigned long flags;
2849 u32 buff_offset;
2850
2851 spin_lock_irqsave(&instance->crashdump_lock, flags);
2852 buff_offset = instance->fw_crash_buffer_offset;
2853 if (!instance->crash_dump_buf &&
2854 !((instance->fw_crash_state == AVAILABLE) ||
2855 (instance->fw_crash_state == COPYING))) {
2856 dev_err(&instance->pdev->dev,
2857 "Firmware crash dump is not available\n");
2858 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2859 return -EINVAL;
2860 }
2861
2862 buff_addr = (unsigned long) buf;
2863
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002864 if (buff_offset > (instance->fw_crash_buffer_size * dmachunk)) {
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302865 dev_err(&instance->pdev->dev,
2866 "Firmware crash dump offset is out of range\n");
2867 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2868 return 0;
2869 }
2870
2871 size = (instance->fw_crash_buffer_size * dmachunk) - buff_offset;
2872 size = (size >= PAGE_SIZE) ? (PAGE_SIZE - 1) : size;
2873
2874 src_addr = (unsigned long)instance->crash_buf[buff_offset / dmachunk] +
2875 (buff_offset % dmachunk);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002876 memcpy(buf, (void *)src_addr, size);
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302877 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2878
2879 return size;
2880}
2881
2882static ssize_t
2883megasas_fw_crash_buffer_size_show(struct device *cdev,
2884 struct device_attribute *attr, char *buf)
2885{
2886 struct Scsi_Host *shost = class_to_shost(cdev);
2887 struct megasas_instance *instance =
2888 (struct megasas_instance *) shost->hostdata;
2889
2890 return snprintf(buf, PAGE_SIZE, "%ld\n", (unsigned long)
2891 ((instance->fw_crash_buffer_size) * 1024 * 1024)/PAGE_SIZE);
2892}
2893
2894static ssize_t
2895megasas_fw_crash_state_store(struct device *cdev,
2896 struct device_attribute *attr, const char *buf, size_t count)
2897{
2898 struct Scsi_Host *shost = class_to_shost(cdev);
2899 struct megasas_instance *instance =
2900 (struct megasas_instance *) shost->hostdata;
2901 int val = 0;
2902 unsigned long flags;
2903
2904 if (kstrtoint(buf, 0, &val) != 0)
2905 return -EINVAL;
2906
2907 if ((val <= AVAILABLE || val > COPY_ERROR)) {
2908 dev_err(&instance->pdev->dev, "application updates invalid "
2909 "firmware crash state\n");
2910 return -EINVAL;
2911 }
2912
2913 instance->fw_crash_state = val;
2914
2915 if ((val == COPIED) || (val == COPY_ERROR)) {
2916 spin_lock_irqsave(&instance->crashdump_lock, flags);
2917 megasas_free_host_crash_buffer(instance);
2918 spin_unlock_irqrestore(&instance->crashdump_lock, flags);
2919 if (val == COPY_ERROR)
2920 dev_info(&instance->pdev->dev, "application failed to "
2921 "copy Firmware crash dump\n");
2922 else
2923 dev_info(&instance->pdev->dev, "Firmware crash dump "
2924 "copied successfully\n");
2925 }
2926 return strlen(buf);
2927}
2928
2929static ssize_t
2930megasas_fw_crash_state_show(struct device *cdev,
2931 struct device_attribute *attr, char *buf)
2932{
2933 struct Scsi_Host *shost = class_to_shost(cdev);
2934 struct megasas_instance *instance =
2935 (struct megasas_instance *) shost->hostdata;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05002936
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302937 return snprintf(buf, PAGE_SIZE, "%d\n", instance->fw_crash_state);
2938}
2939
2940static ssize_t
2941megasas_page_size_show(struct device *cdev,
2942 struct device_attribute *attr, char *buf)
2943{
2944 return snprintf(buf, PAGE_SIZE, "%ld\n", (unsigned long)PAGE_SIZE - 1);
2945}
2946
Sumit Saxena308ec452016-01-28 21:04:30 +05302947static ssize_t
2948megasas_ldio_outstanding_show(struct device *cdev, struct device_attribute *attr,
2949 char *buf)
2950{
2951 struct Scsi_Host *shost = class_to_shost(cdev);
2952 struct megasas_instance *instance = (struct megasas_instance *)shost->hostdata;
2953
2954 return snprintf(buf, PAGE_SIZE, "%d\n", atomic_read(&instance->ldio_outstanding));
2955}
2956
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302957static DEVICE_ATTR(fw_crash_buffer, S_IRUGO | S_IWUSR,
2958 megasas_fw_crash_buffer_show, megasas_fw_crash_buffer_store);
2959static DEVICE_ATTR(fw_crash_buffer_size, S_IRUGO,
2960 megasas_fw_crash_buffer_size_show, NULL);
2961static DEVICE_ATTR(fw_crash_state, S_IRUGO | S_IWUSR,
2962 megasas_fw_crash_state_show, megasas_fw_crash_state_store);
2963static DEVICE_ATTR(page_size, S_IRUGO,
2964 megasas_page_size_show, NULL);
Sumit Saxena308ec452016-01-28 21:04:30 +05302965static DEVICE_ATTR(ldio_outstanding, S_IRUGO,
2966 megasas_ldio_outstanding_show, NULL);
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302967
2968struct device_attribute *megaraid_host_attrs[] = {
2969 &dev_attr_fw_crash_buffer_size,
2970 &dev_attr_fw_crash_buffer,
2971 &dev_attr_fw_crash_state,
2972 &dev_attr_page_size,
Sumit Saxena308ec452016-01-28 21:04:30 +05302973 &dev_attr_ldio_outstanding,
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302974 NULL,
2975};
2976
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002977/*
2978 * Scsi host template for megaraid_sas driver
2979 */
2980static struct scsi_host_template megasas_template = {
2981
2982 .module = THIS_MODULE,
Sumit.Saxena@avagotech.com43cd7fe2015-04-23 16:31:39 +05302983 .name = "Avago SAS based MegaRAID driver",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002984 .proc_name = "megaraid_sas",
Christoph Hellwig147aab62006-02-17 12:13:48 +01002985 .slave_configure = megasas_slave_configure,
Yang, Bo044833b2009-10-06 14:33:06 -06002986 .slave_alloc = megasas_slave_alloc,
Sumit Saxena18365b12016-01-28 21:04:25 +05302987 .slave_destroy = megasas_slave_destroy,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002988 .queuecommand = megasas_queue_command,
Sumit Saxenabd23d4a2016-04-15 00:23:32 -07002989 .eh_target_reset_handler = megasas_reset_target,
2990 .eh_abort_handler = megasas_task_abort,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002991 .eh_host_reset_handler = megasas_reset_bus_host,
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002992 .eh_timed_out = megasas_reset_timer,
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05302993 .shost_attrs = megaraid_host_attrs,
Sumant Patrocf62a0a2007-02-14 12:41:55 -08002994 .bios_param = megasas_bios_param,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002995 .use_clustering = ENABLE_CLUSTERING,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002996 .change_queue_depth = scsi_change_queue_depth,
Martin K. Petersen54b2b502013-10-23 06:25:40 -04002997 .no_write_same = 1,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002998};
2999
3000/**
3001 * megasas_complete_int_cmd - Completes an internal command
3002 * @instance: Adapter soft state
3003 * @cmd: Command to be completed
3004 *
3005 * The megasas_issue_blocked_cmd() function waits for a command to complete
3006 * after it issues a command. This function wakes up that waiting routine by
3007 * calling wake_up() on the wait queue.
3008 */
3009static void
3010megasas_complete_int_cmd(struct megasas_instance *instance,
3011 struct megasas_cmd *cmd)
3012{
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05303013 cmd->cmd_status_drv = cmd->frame->io.cmd_status;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003014 wake_up(&instance->int_cmd_wait_q);
3015}
3016
3017/**
3018 * megasas_complete_abort - Completes aborting a command
3019 * @instance: Adapter soft state
3020 * @cmd: Cmd that was issued to abort another cmd
3021 *
adam radford0d490162010-12-14 19:17:17 -08003022 * The megasas_issue_blocked_abort_cmd() function waits on abort_cmd_wait_q
3023 * after it issues an abort on a previously issued command. This function
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003024 * wakes up all functions waiting on the same wait queue.
3025 */
3026static void
3027megasas_complete_abort(struct megasas_instance *instance,
3028 struct megasas_cmd *cmd)
3029{
3030 if (cmd->sync_cmd) {
3031 cmd->sync_cmd = 0;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05303032 cmd->cmd_status_drv = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003033 wake_up(&instance->abort_cmd_wait_q);
3034 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003035}
3036
3037/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003038 * megasas_complete_cmd - Completes a command
3039 * @instance: Adapter soft state
3040 * @cmd: Command to be completed
adam radford0d490162010-12-14 19:17:17 -08003041 * @alt_status: If non-zero, use this value as status to
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003042 * SCSI mid-layer instead of the value returned
3043 * by the FW. This should be used if caller wants
3044 * an alternate status (as in the case of aborted
3045 * commands)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003046 */
adam radford9c915a82010-12-21 13:34:31 -08003047void
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003048megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd,
3049 u8 alt_status)
3050{
3051 int exception = 0;
3052 struct megasas_header *hdr = &cmd->frame->hdr;
Yang, Boc3518832009-10-06 14:18:02 -06003053 unsigned long flags;
adam radford9c915a82010-12-21 13:34:31 -08003054 struct fusion_context *fusion = instance->ctrl_context;
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05303055 u32 opcode, status;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003056
bo yang39a98552010-09-22 22:36:29 -04003057 /* flag for the retry reset */
3058 cmd->retry_for_fw_reset = 0;
3059
Sumant Patro05e9ebb2007-05-17 05:47:51 -07003060 if (cmd->scmd)
3061 cmd->scmd->SCp.ptr = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003062
3063 switch (hdr->cmd) {
adam radforde5f93a32011-10-08 18:15:19 -07003064 case MFI_CMD_INVALID:
3065 /* Some older 1068 controller FW may keep a pended
3066 MR_DCMD_CTRL_EVENT_GET_INFO left over from the main kernel
3067 when booting the kdump kernel. Ignore this command to
3068 prevent a kernel panic on shutdown of the kdump kernel. */
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003069 dev_warn(&instance->pdev->dev, "MFI_CMD_INVALID command "
3070 "completed\n");
3071 dev_warn(&instance->pdev->dev, "If you have a controller "
3072 "other than PERC5, please upgrade your firmware\n");
adam radforde5f93a32011-10-08 18:15:19 -07003073 break;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003074 case MFI_CMD_PD_SCSI_IO:
3075 case MFI_CMD_LD_SCSI_IO:
3076
3077 /*
3078 * MFI_CMD_PD_SCSI_IO and MFI_CMD_LD_SCSI_IO could have been
3079 * issued either through an IO path or an IOCTL path. If it
3080 * was via IOCTL, we will send it to internal completion.
3081 */
3082 if (cmd->sync_cmd) {
3083 cmd->sync_cmd = 0;
3084 megasas_complete_int_cmd(instance, cmd);
3085 break;
3086 }
3087
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003088 case MFI_CMD_LD_READ:
3089 case MFI_CMD_LD_WRITE:
3090
3091 if (alt_status) {
3092 cmd->scmd->result = alt_status << 16;
3093 exception = 1;
3094 }
3095
3096 if (exception) {
3097
Sumant Patroe4a082c2006-05-30 12:03:37 -07003098 atomic_dec(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003099
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09003100 scsi_dma_unmap(cmd->scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003101 cmd->scmd->scsi_done(cmd->scmd);
3102 megasas_return_cmd(instance, cmd);
3103
3104 break;
3105 }
3106
3107 switch (hdr->cmd_status) {
3108
3109 case MFI_STAT_OK:
3110 cmd->scmd->result = DID_OK << 16;
3111 break;
3112
3113 case MFI_STAT_SCSI_IO_FAILED:
3114 case MFI_STAT_LD_INIT_IN_PROGRESS:
3115 cmd->scmd->result =
3116 (DID_ERROR << 16) | hdr->scsi_status;
3117 break;
3118
3119 case MFI_STAT_SCSI_DONE_WITH_ERROR:
3120
3121 cmd->scmd->result = (DID_OK << 16) | hdr->scsi_status;
3122
3123 if (hdr->scsi_status == SAM_STAT_CHECK_CONDITION) {
3124 memset(cmd->scmd->sense_buffer, 0,
3125 SCSI_SENSE_BUFFERSIZE);
3126 memcpy(cmd->scmd->sense_buffer, cmd->sense,
3127 hdr->sense_len);
3128
3129 cmd->scmd->result |= DRIVER_SENSE << 24;
3130 }
3131
3132 break;
3133
3134 case MFI_STAT_LD_OFFLINE:
3135 case MFI_STAT_DEVICE_NOT_FOUND:
3136 cmd->scmd->result = DID_BAD_TARGET << 16;
3137 break;
3138
3139 default:
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003140 dev_printk(KERN_DEBUG, &instance->pdev->dev, "MFI FW status %#x\n",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003141 hdr->cmd_status);
3142 cmd->scmd->result = DID_ERROR << 16;
3143 break;
3144 }
3145
Sumant Patroe4a082c2006-05-30 12:03:37 -07003146 atomic_dec(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003147
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09003148 scsi_dma_unmap(cmd->scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003149 cmd->scmd->scsi_done(cmd->scmd);
3150 megasas_return_cmd(instance, cmd);
3151
3152 break;
3153
3154 case MFI_CMD_SMP:
3155 case MFI_CMD_STP:
3156 case MFI_CMD_DCMD:
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303157 opcode = le32_to_cpu(cmd->frame->dcmd.opcode);
adam radford9c915a82010-12-21 13:34:31 -08003158 /* Check for LD map update */
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303159 if ((opcode == MR_DCMD_LD_MAP_GET_INFO)
3160 && (cmd->frame->dcmd.mbox.b[1] == 1)) {
Sumit.Saxena@lsi.combc93d422013-05-22 12:35:04 +05303161 fusion->fast_path_io = 0;
adam radford9c915a82010-12-21 13:34:31 -08003162 spin_lock_irqsave(instance->host->host_lock, flags);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05303163 instance->map_update_cmd = NULL;
adam radford9c915a82010-12-21 13:34:31 -08003164 if (cmd->frame->hdr.cmd_status != 0) {
3165 if (cmd->frame->hdr.cmd_status !=
3166 MFI_STAT_NOT_FOUND)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003167 dev_warn(&instance->pdev->dev, "map syncfailed, status = 0x%x\n",
adam radford9c915a82010-12-21 13:34:31 -08003168 cmd->frame->hdr.cmd_status);
3169 else {
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05303170 megasas_return_cmd(instance, cmd);
adam radford9c915a82010-12-21 13:34:31 -08003171 spin_unlock_irqrestore(
3172 instance->host->host_lock,
3173 flags);
3174 break;
3175 }
3176 } else
3177 instance->map_id++;
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05303178 megasas_return_cmd(instance, cmd);
Sumit.Saxena@lsi.combc93d422013-05-22 12:35:04 +05303179
3180 /*
3181 * Set fast path IO to ZERO.
3182 * Validate Map will set proper value.
3183 * Meanwhile all IOs will go as LD IO.
3184 */
3185 if (MR_ValidateMapInfo(instance))
adam radford9c915a82010-12-21 13:34:31 -08003186 fusion->fast_path_io = 1;
3187 else
3188 fusion->fast_path_io = 0;
3189 megasas_sync_map_info(instance);
3190 spin_unlock_irqrestore(instance->host->host_lock,
3191 flags);
3192 break;
3193 }
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303194 if (opcode == MR_DCMD_CTRL_EVENT_GET_INFO ||
3195 opcode == MR_DCMD_CTRL_EVENT_GET) {
Yang, Boc3518832009-10-06 14:18:02 -06003196 spin_lock_irqsave(&poll_aen_lock, flags);
3197 megasas_poll_wait_aen = 0;
3198 spin_unlock_irqrestore(&poll_aen_lock, flags);
3199 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003200
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05303201 /* FW has an updated PD sequence */
3202 if ((opcode == MR_DCMD_SYSTEM_PD_MAP_GET_INFO) &&
3203 (cmd->frame->dcmd.mbox.b[0] == 1)) {
3204
3205 spin_lock_irqsave(instance->host->host_lock, flags);
3206 status = cmd->frame->hdr.cmd_status;
3207 instance->jbod_seq_cmd = NULL;
3208 megasas_return_cmd(instance, cmd);
3209
3210 if (status == MFI_STAT_OK) {
3211 instance->pd_seq_map_id++;
3212 /* Re-register a pd sync seq num cmd */
3213 if (megasas_sync_pd_seq_num(instance, true))
3214 instance->use_seqnum_jbod_fp = false;
3215 } else
3216 instance->use_seqnum_jbod_fp = false;
3217
3218 spin_unlock_irqrestore(instance->host->host_lock, flags);
3219 break;
3220 }
3221
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003222 /*
3223 * See if got an event notification
3224 */
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303225 if (opcode == MR_DCMD_CTRL_EVENT_WAIT)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003226 megasas_service_aen(instance, cmd);
3227 else
3228 megasas_complete_int_cmd(instance, cmd);
3229
3230 break;
3231
3232 case MFI_CMD_ABORT:
3233 /*
3234 * Cmd issued to abort another cmd returned
3235 */
3236 megasas_complete_abort(instance, cmd);
3237 break;
3238
3239 default:
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003240 dev_info(&instance->pdev->dev, "Unknown command completed! [0x%X]\n",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003241 hdr->cmd);
3242 break;
3243 }
3244}
3245
3246/**
bo yang39a98552010-09-22 22:36:29 -04003247 * megasas_issue_pending_cmds_again - issue all pending cmds
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003248 * in FW again because of the fw reset
bo yang39a98552010-09-22 22:36:29 -04003249 * @instance: Adapter soft state
3250 */
3251static inline void
3252megasas_issue_pending_cmds_again(struct megasas_instance *instance)
3253{
3254 struct megasas_cmd *cmd;
3255 struct list_head clist_local;
3256 union megasas_evt_class_locale class_locale;
3257 unsigned long flags;
3258 u32 seq_num;
3259
3260 INIT_LIST_HEAD(&clist_local);
3261 spin_lock_irqsave(&instance->hba_lock, flags);
3262 list_splice_init(&instance->internal_reset_pending_q, &clist_local);
3263 spin_unlock_irqrestore(&instance->hba_lock, flags);
3264
3265 while (!list_empty(&clist_local)) {
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003266 cmd = list_entry((&clist_local)->next,
bo yang39a98552010-09-22 22:36:29 -04003267 struct megasas_cmd, list);
3268 list_del_init(&cmd->list);
3269
3270 if (cmd->sync_cmd || cmd->scmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003271 dev_notice(&instance->pdev->dev, "command %p, %p:%d"
3272 "detected to be pending while HBA reset\n",
bo yang39a98552010-09-22 22:36:29 -04003273 cmd, cmd->scmd, cmd->sync_cmd);
3274
3275 cmd->retry_for_fw_reset++;
3276
3277 if (cmd->retry_for_fw_reset == 3) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003278 dev_notice(&instance->pdev->dev, "cmd %p, %p:%d"
bo yang39a98552010-09-22 22:36:29 -04003279 "was tried multiple times during reset."
3280 "Shutting down the HBA\n",
3281 cmd, cmd->scmd, cmd->sync_cmd);
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05303282 instance->instancet->disable_intr(instance);
3283 atomic_set(&instance->fw_reset_no_pci_access, 1);
bo yang39a98552010-09-22 22:36:29 -04003284 megaraid_sas_kill_hba(instance);
bo yang39a98552010-09-22 22:36:29 -04003285 return;
3286 }
3287 }
3288
3289 if (cmd->sync_cmd == 1) {
3290 if (cmd->scmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003291 dev_notice(&instance->pdev->dev, "unexpected"
bo yang39a98552010-09-22 22:36:29 -04003292 "cmd attached to internal command!\n");
3293 }
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003294 dev_notice(&instance->pdev->dev, "%p synchronous cmd"
bo yang39a98552010-09-22 22:36:29 -04003295 "on the internal reset queue,"
3296 "issue it again.\n", cmd);
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05303297 cmd->cmd_status_drv = MFI_STAT_INVALID_STATUS;
bo yang39a98552010-09-22 22:36:29 -04003298 instance->instancet->fire_cmd(instance,
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003299 cmd->frame_phys_addr,
bo yang39a98552010-09-22 22:36:29 -04003300 0, instance->reg_set);
3301 } else if (cmd->scmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003302 dev_notice(&instance->pdev->dev, "%p scsi cmd [%02x]"
bo yang39a98552010-09-22 22:36:29 -04003303 "detected on the internal queue, issue again.\n",
Christoph Hellwig5cd049a2011-04-04 09:42:14 -04003304 cmd, cmd->scmd->cmnd[0]);
bo yang39a98552010-09-22 22:36:29 -04003305
3306 atomic_inc(&instance->fw_outstanding);
3307 instance->instancet->fire_cmd(instance,
3308 cmd->frame_phys_addr,
3309 cmd->frame_count-1, instance->reg_set);
3310 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003311 dev_notice(&instance->pdev->dev, "%p unexpected cmd on the"
bo yang39a98552010-09-22 22:36:29 -04003312 "internal reset defer list while re-issue!!\n",
3313 cmd);
3314 }
3315 }
3316
3317 if (instance->aen_cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003318 dev_notice(&instance->pdev->dev, "aen_cmd in def process\n");
bo yang39a98552010-09-22 22:36:29 -04003319 megasas_return_cmd(instance, instance->aen_cmd);
3320
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003321 instance->aen_cmd = NULL;
bo yang39a98552010-09-22 22:36:29 -04003322 }
3323
3324 /*
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003325 * Initiate AEN (Asynchronous Event Notification)
3326 */
bo yang39a98552010-09-22 22:36:29 -04003327 seq_num = instance->last_seq_num;
3328 class_locale.members.reserved = 0;
3329 class_locale.members.locale = MR_EVT_LOCALE_ALL;
3330 class_locale.members.class = MR_EVT_CLASS_DEBUG;
3331
3332 megasas_register_aen(instance, seq_num, class_locale.word);
3333}
3334
3335/**
3336 * Move the internal reset pending commands to a deferred queue.
3337 *
3338 * We move the commands pending at internal reset time to a
3339 * pending queue. This queue would be flushed after successful
3340 * completion of the internal reset sequence. if the internal reset
3341 * did not complete in time, the kernel reset handler would flush
3342 * these commands.
3343 **/
3344static void
3345megasas_internal_reset_defer_cmds(struct megasas_instance *instance)
3346{
3347 struct megasas_cmd *cmd;
3348 int i;
3349 u32 max_cmd = instance->max_fw_cmds;
3350 u32 defer_index;
3351 unsigned long flags;
3352
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003353 defer_index = 0;
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05303354 spin_lock_irqsave(&instance->mfi_pool_lock, flags);
bo yang39a98552010-09-22 22:36:29 -04003355 for (i = 0; i < max_cmd; i++) {
3356 cmd = instance->cmd_list[i];
3357 if (cmd->sync_cmd == 1 || cmd->scmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003358 dev_notice(&instance->pdev->dev, "moving cmd[%d]:%p:%d:%p"
bo yang39a98552010-09-22 22:36:29 -04003359 "on the defer queue as internal\n",
3360 defer_index, cmd, cmd->sync_cmd, cmd->scmd);
3361
3362 if (!list_empty(&cmd->list)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003363 dev_notice(&instance->pdev->dev, "ERROR while"
bo yang39a98552010-09-22 22:36:29 -04003364 " moving this cmd:%p, %d %p, it was"
3365 "discovered on some list?\n",
3366 cmd, cmd->sync_cmd, cmd->scmd);
3367
3368 list_del_init(&cmd->list);
3369 }
3370 defer_index++;
3371 list_add_tail(&cmd->list,
3372 &instance->internal_reset_pending_q);
3373 }
3374 }
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05303375 spin_unlock_irqrestore(&instance->mfi_pool_lock, flags);
bo yang39a98552010-09-22 22:36:29 -04003376}
3377
3378
3379static void
3380process_fw_state_change_wq(struct work_struct *work)
3381{
3382 struct megasas_instance *instance =
3383 container_of(work, struct megasas_instance, work_init);
3384 u32 wait;
3385 unsigned long flags;
3386
Sumit Saxena8a01a412016-01-28 21:04:32 +05303387 if (atomic_read(&instance->adprecovery) != MEGASAS_ADPRESET_SM_INFAULT) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003388 dev_notice(&instance->pdev->dev, "error, recovery st %x\n",
Sumit Saxena8a01a412016-01-28 21:04:32 +05303389 atomic_read(&instance->adprecovery));
bo yang39a98552010-09-22 22:36:29 -04003390 return ;
3391 }
3392
Sumit Saxena8a01a412016-01-28 21:04:32 +05303393 if (atomic_read(&instance->adprecovery) == MEGASAS_ADPRESET_SM_INFAULT) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003394 dev_notice(&instance->pdev->dev, "FW detected to be in fault"
bo yang39a98552010-09-22 22:36:29 -04003395 "state, restarting it...\n");
3396
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05303397 instance->instancet->disable_intr(instance);
bo yang39a98552010-09-22 22:36:29 -04003398 atomic_set(&instance->fw_outstanding, 0);
3399
3400 atomic_set(&instance->fw_reset_no_pci_access, 1);
3401 instance->instancet->adp_reset(instance, instance->reg_set);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003402 atomic_set(&instance->fw_reset_no_pci_access, 0);
bo yang39a98552010-09-22 22:36:29 -04003403
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003404 dev_notice(&instance->pdev->dev, "FW restarted successfully,"
bo yang39a98552010-09-22 22:36:29 -04003405 "initiating next stage...\n");
3406
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003407 dev_notice(&instance->pdev->dev, "HBA recovery state machine,"
bo yang39a98552010-09-22 22:36:29 -04003408 "state 2 starting...\n");
3409
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003410 /* waiting for about 20 second before start the second init */
bo yang39a98552010-09-22 22:36:29 -04003411 for (wait = 0; wait < 30; wait++) {
3412 msleep(1000);
3413 }
3414
adam radford058a8fa2011-10-08 18:14:27 -07003415 if (megasas_transition_to_ready(instance, 1)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003416 dev_notice(&instance->pdev->dev, "adapter not ready\n");
bo yang39a98552010-09-22 22:36:29 -04003417
Sumit.Saxena@avagotech.comc8dd61e2015-01-05 20:06:18 +05303418 atomic_set(&instance->fw_reset_no_pci_access, 1);
bo yang39a98552010-09-22 22:36:29 -04003419 megaraid_sas_kill_hba(instance);
bo yang39a98552010-09-22 22:36:29 -04003420 return ;
3421 }
3422
3423 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1064R) ||
3424 (instance->pdev->device == PCI_DEVICE_ID_DELL_PERC5) ||
3425 (instance->pdev->device == PCI_DEVICE_ID_LSI_VERDE_ZCR)
3426 ) {
3427 *instance->consumer = *instance->producer;
3428 } else {
3429 *instance->consumer = 0;
3430 *instance->producer = 0;
3431 }
3432
3433 megasas_issue_init_mfi(instance);
3434
3435 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05303436 atomic_set(&instance->adprecovery, MEGASAS_HBA_OPERATIONAL);
bo yang39a98552010-09-22 22:36:29 -04003437 spin_unlock_irqrestore(&instance->hba_lock, flags);
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05303438 instance->instancet->enable_intr(instance);
bo yang39a98552010-09-22 22:36:29 -04003439
3440 megasas_issue_pending_cmds_again(instance);
3441 instance->issuepend_done = 1;
3442 }
bo yang39a98552010-09-22 22:36:29 -04003443}
3444
3445/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003446 * megasas_deplete_reply_queue - Processes all completed commands
3447 * @instance: Adapter soft state
3448 * @alt_status: Alternate status to be returned to
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003449 * SCSI mid-layer instead of the status
3450 * returned by the FW
bo yang39a98552010-09-22 22:36:29 -04003451 * Note: this must be called with hba lock held
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003452 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003453static int
bo yang39a98552010-09-22 22:36:29 -04003454megasas_deplete_reply_queue(struct megasas_instance *instance,
3455 u8 alt_status)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003456{
bo yang39a98552010-09-22 22:36:29 -04003457 u32 mfiStatus;
3458 u32 fw_state;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003459
bo yang39a98552010-09-22 22:36:29 -04003460 if ((mfiStatus = instance->instancet->check_reset(instance,
3461 instance->reg_set)) == 1) {
3462 return IRQ_HANDLED;
3463 }
3464
3465 if ((mfiStatus = instance->instancet->clear_intr(
3466 instance->reg_set)
3467 ) == 0) {
adam radforde1419192011-02-24 20:56:21 -08003468 /* Hardware may not set outbound_intr_status in MSI-X mode */
adam radfordc8e858f2011-10-08 18:15:13 -07003469 if (!instance->msix_vectors)
adam radforde1419192011-02-24 20:56:21 -08003470 return IRQ_NONE;
bo yang39a98552010-09-22 22:36:29 -04003471 }
3472
3473 instance->mfiStatus = mfiStatus;
3474
3475 if ((mfiStatus & MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE)) {
3476 fw_state = instance->instancet->read_fw_status_reg(
3477 instance->reg_set) & MFI_STATE_MASK;
3478
3479 if (fw_state != MFI_STATE_FAULT) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003480 dev_notice(&instance->pdev->dev, "fw state:%x\n",
bo yang39a98552010-09-22 22:36:29 -04003481 fw_state);
3482 }
3483
3484 if ((fw_state == MFI_STATE_FAULT) &&
3485 (instance->disableOnlineCtrlReset == 0)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003486 dev_notice(&instance->pdev->dev, "wait adp restart\n");
bo yang39a98552010-09-22 22:36:29 -04003487
3488 if ((instance->pdev->device ==
3489 PCI_DEVICE_ID_LSI_SAS1064R) ||
3490 (instance->pdev->device ==
3491 PCI_DEVICE_ID_DELL_PERC5) ||
3492 (instance->pdev->device ==
3493 PCI_DEVICE_ID_LSI_VERDE_ZCR)) {
3494
3495 *instance->consumer =
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303496 cpu_to_le32(MEGASAS_ADPRESET_INPROG_SIGN);
bo yang39a98552010-09-22 22:36:29 -04003497 }
3498
3499
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05303500 instance->instancet->disable_intr(instance);
Sumit Saxena8a01a412016-01-28 21:04:32 +05303501 atomic_set(&instance->adprecovery, MEGASAS_ADPRESET_SM_INFAULT);
bo yang39a98552010-09-22 22:36:29 -04003502 instance->issuepend_done = 0;
3503
3504 atomic_set(&instance->fw_outstanding, 0);
3505 megasas_internal_reset_defer_cmds(instance);
3506
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003507 dev_notice(&instance->pdev->dev, "fwState=%x, stage:%d\n",
Sumit Saxena8a01a412016-01-28 21:04:32 +05303508 fw_state, atomic_read(&instance->adprecovery));
bo yang39a98552010-09-22 22:36:29 -04003509
3510 schedule_work(&instance->work_init);
3511 return IRQ_HANDLED;
3512
3513 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003514 dev_notice(&instance->pdev->dev, "fwstate:%x, dis_OCR=%x\n",
bo yang39a98552010-09-22 22:36:29 -04003515 fw_state, instance->disableOnlineCtrlReset);
3516 }
3517 }
3518
Sumant Patro5d018ad2006-10-03 13:13:18 -07003519 tasklet_schedule(&instance->isr_tasklet);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003520 return IRQ_HANDLED;
3521}
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003522/**
3523 * megasas_isr - isr entry point
3524 */
David Howells7d12e782006-10-05 14:55:46 +01003525static irqreturn_t megasas_isr(int irq, void *devp)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003526{
adam radfordc8e858f2011-10-08 18:15:13 -07003527 struct megasas_irq_context *irq_context = devp;
3528 struct megasas_instance *instance = irq_context->instance;
bo yang39a98552010-09-22 22:36:29 -04003529 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003530 irqreturn_t rc;
bo yang39a98552010-09-22 22:36:29 -04003531
adam radfordc8e858f2011-10-08 18:15:13 -07003532 if (atomic_read(&instance->fw_reset_no_pci_access))
bo yang39a98552010-09-22 22:36:29 -04003533 return IRQ_HANDLED;
3534
bo yang39a98552010-09-22 22:36:29 -04003535 spin_lock_irqsave(&instance->hba_lock, flags);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003536 rc = megasas_deplete_reply_queue(instance, DID_OK);
bo yang39a98552010-09-22 22:36:29 -04003537 spin_unlock_irqrestore(&instance->hba_lock, flags);
3538
3539 return rc;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003540}
3541
3542/**
3543 * megasas_transition_to_ready - Move the FW to READY state
Sumant Patro1341c932006-01-25 12:02:40 -08003544 * @instance: Adapter soft state
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003545 *
3546 * During the initialization, FW passes can potentially be in any one of
3547 * several possible states. If the FW in operational, waiting-for-handshake
3548 * states, driver must take steps to bring it to ready state. Otherwise, it
3549 * has to wait for the ready state.
3550 */
adam radford9c915a82010-12-21 13:34:31 -08003551int
adam radford058a8fa2011-10-08 18:14:27 -07003552megasas_transition_to_ready(struct megasas_instance *instance, int ocr)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003553{
3554 int i;
3555 u8 max_wait;
3556 u32 fw_state;
3557 u32 cur_state;
Yang, Bo7218df62009-10-06 14:52:20 -06003558 u32 abs_state, curr_abs_state;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003559
Tomas Henzlbc6ac5e2014-04-01 13:59:50 +02003560 abs_state = instance->instancet->read_fw_status_reg(instance->reg_set);
3561 fw_state = abs_state & MFI_STATE_MASK;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003562
Sumant Patroe3bbff92006-10-03 12:28:49 -07003563 if (fw_state != MFI_STATE_READY)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003564 dev_info(&instance->pdev->dev, "Waiting for FW to come to ready"
adam radford0d490162010-12-14 19:17:17 -08003565 " state\n");
Sumant Patroe3bbff92006-10-03 12:28:49 -07003566
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003567 while (fw_state != MFI_STATE_READY) {
3568
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003569 switch (fw_state) {
3570
3571 case MFI_STATE_FAULT:
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003572 dev_printk(KERN_DEBUG, &instance->pdev->dev, "FW in FAULT state!!\n");
adam radford058a8fa2011-10-08 18:14:27 -07003573 if (ocr) {
3574 max_wait = MEGASAS_RESET_WAIT_TIME;
3575 cur_state = MFI_STATE_FAULT;
3576 break;
3577 } else
3578 return -ENODEV;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003579
3580 case MFI_STATE_WAIT_HANDSHAKE:
3581 /*
3582 * Set the CLR bit in inbound doorbell
3583 */
Yang, Bo0c79e682009-10-06 14:47:35 -06003584 if ((instance->pdev->device ==
Yang, Bo87911122009-10-06 14:31:54 -06003585 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
3586 (instance->pdev->device ==
adam radford9c915a82010-12-21 13:34:31 -08003587 PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303588 (instance->ctrl_context))
Yang, Bo87911122009-10-06 14:31:54 -06003589 writel(
3590 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
adam radford9c915a82010-12-21 13:34:31 -08003591 &instance->reg_set->doorbell);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303592 else
Yang, Bo87911122009-10-06 14:31:54 -06003593 writel(
3594 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
3595 &instance->reg_set->inbound_doorbell);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003596
Yang, Bo7218df62009-10-06 14:52:20 -06003597 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003598 cur_state = MFI_STATE_WAIT_HANDSHAKE;
3599 break;
3600
Sumant Patroe3bbff92006-10-03 12:28:49 -07003601 case MFI_STATE_BOOT_MESSAGE_PENDING:
Yang, Bo87911122009-10-06 14:31:54 -06003602 if ((instance->pdev->device ==
adam radford9c915a82010-12-21 13:34:31 -08003603 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
3604 (instance->pdev->device ==
3605 PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303606 (instance->ctrl_context))
Yang, Bo87911122009-10-06 14:31:54 -06003607 writel(MFI_INIT_HOTPLUG,
adam radford9c915a82010-12-21 13:34:31 -08003608 &instance->reg_set->doorbell);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303609 else
Yang, Bo87911122009-10-06 14:31:54 -06003610 writel(MFI_INIT_HOTPLUG,
3611 &instance->reg_set->inbound_doorbell);
Sumant Patroe3bbff92006-10-03 12:28:49 -07003612
Yang, Bo7218df62009-10-06 14:52:20 -06003613 max_wait = MEGASAS_RESET_WAIT_TIME;
Sumant Patroe3bbff92006-10-03 12:28:49 -07003614 cur_state = MFI_STATE_BOOT_MESSAGE_PENDING;
3615 break;
3616
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003617 case MFI_STATE_OPERATIONAL:
3618 /*
Sumant Patroe3bbff92006-10-03 12:28:49 -07003619 * Bring it to READY state; assuming max wait 10 secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003620 */
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05303621 instance->instancet->disable_intr(instance);
Yang, Bo87911122009-10-06 14:31:54 -06003622 if ((instance->pdev->device ==
3623 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
3624 (instance->pdev->device ==
adam radford9c915a82010-12-21 13:34:31 -08003625 PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303626 (instance->ctrl_context)) {
Yang, Bo87911122009-10-06 14:31:54 -06003627 writel(MFI_RESET_FLAGS,
adam radford9c915a82010-12-21 13:34:31 -08003628 &instance->reg_set->doorbell);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303629
3630 if (instance->ctrl_context) {
adam radford9c915a82010-12-21 13:34:31 -08003631 for (i = 0; i < (10 * 1000); i += 20) {
3632 if (readl(
3633 &instance->
3634 reg_set->
3635 doorbell) & 1)
3636 msleep(20);
3637 else
3638 break;
3639 }
3640 }
Yang, Bo87911122009-10-06 14:31:54 -06003641 } else
3642 writel(MFI_RESET_FLAGS,
3643 &instance->reg_set->inbound_doorbell);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003644
Yang, Bo7218df62009-10-06 14:52:20 -06003645 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003646 cur_state = MFI_STATE_OPERATIONAL;
3647 break;
3648
3649 case MFI_STATE_UNDEFINED:
3650 /*
3651 * This state should not last for more than 2 seconds
3652 */
Yang, Bo7218df62009-10-06 14:52:20 -06003653 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003654 cur_state = MFI_STATE_UNDEFINED;
3655 break;
3656
3657 case MFI_STATE_BB_INIT:
Yang, Bo7218df62009-10-06 14:52:20 -06003658 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003659 cur_state = MFI_STATE_BB_INIT;
3660 break;
3661
3662 case MFI_STATE_FW_INIT:
Yang, Bo7218df62009-10-06 14:52:20 -06003663 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003664 cur_state = MFI_STATE_FW_INIT;
3665 break;
3666
3667 case MFI_STATE_FW_INIT_2:
Yang, Bo7218df62009-10-06 14:52:20 -06003668 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003669 cur_state = MFI_STATE_FW_INIT_2;
3670 break;
3671
3672 case MFI_STATE_DEVICE_SCAN:
Yang, Bo7218df62009-10-06 14:52:20 -06003673 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003674 cur_state = MFI_STATE_DEVICE_SCAN;
3675 break;
3676
3677 case MFI_STATE_FLUSH_CACHE:
Yang, Bo7218df62009-10-06 14:52:20 -06003678 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003679 cur_state = MFI_STATE_FLUSH_CACHE;
3680 break;
3681
3682 default:
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003683 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Unknown state 0x%x\n",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003684 fw_state);
3685 return -ENODEV;
3686 }
3687
3688 /*
3689 * The cur_state should not last for more than max_wait secs
3690 */
3691 for (i = 0; i < (max_wait * 1000); i++) {
Tomas Henzlbc6ac5e2014-04-01 13:59:50 +02003692 curr_abs_state = instance->instancet->
3693 read_fw_status_reg(instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003694
Yang, Bo7218df62009-10-06 14:52:20 -06003695 if (abs_state == curr_abs_state) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003696 msleep(1);
3697 } else
3698 break;
3699 }
3700
3701 /*
3702 * Return error if fw_state hasn't changed after max_wait
3703 */
Yang, Bo7218df62009-10-06 14:52:20 -06003704 if (curr_abs_state == abs_state) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003705 dev_printk(KERN_DEBUG, &instance->pdev->dev, "FW state [%d] hasn't changed "
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003706 "in %d secs\n", fw_state, max_wait);
3707 return -ENODEV;
3708 }
Tomas Henzlbc6ac5e2014-04-01 13:59:50 +02003709
3710 abs_state = curr_abs_state;
3711 fw_state = curr_abs_state & MFI_STATE_MASK;
bo yang39a98552010-09-22 22:36:29 -04003712 }
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003713 dev_info(&instance->pdev->dev, "FW now in Ready state\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003714
3715 return 0;
3716}
3717
3718/**
3719 * megasas_teardown_frame_pool - Destroy the cmd frame DMA pool
3720 * @instance: Adapter soft state
3721 */
3722static void megasas_teardown_frame_pool(struct megasas_instance *instance)
3723{
3724 int i;
adam radford9c915a82010-12-21 13:34:31 -08003725 u32 max_cmd = instance->max_mfi_cmds;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003726 struct megasas_cmd *cmd;
3727
3728 if (!instance->frame_dma_pool)
3729 return;
3730
3731 /*
3732 * Return all frames to pool
3733 */
3734 for (i = 0; i < max_cmd; i++) {
3735
3736 cmd = instance->cmd_list[i];
3737
3738 if (cmd->frame)
3739 pci_pool_free(instance->frame_dma_pool, cmd->frame,
3740 cmd->frame_phys_addr);
3741
3742 if (cmd->sense)
Sumant Patroe3bbff92006-10-03 12:28:49 -07003743 pci_pool_free(instance->sense_dma_pool, cmd->sense,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003744 cmd->sense_phys_addr);
3745 }
3746
3747 /*
3748 * Now destroy the pool itself
3749 */
3750 pci_pool_destroy(instance->frame_dma_pool);
3751 pci_pool_destroy(instance->sense_dma_pool);
3752
3753 instance->frame_dma_pool = NULL;
3754 instance->sense_dma_pool = NULL;
3755}
3756
3757/**
3758 * megasas_create_frame_pool - Creates DMA pool for cmd frames
3759 * @instance: Adapter soft state
3760 *
3761 * Each command packet has an embedded DMA memory buffer that is used for
3762 * filling MFI frame and the SG list that immediately follows the frame. This
3763 * function creates those DMA memory buffers for each command packet by using
3764 * PCI pool facility.
3765 */
3766static int megasas_create_frame_pool(struct megasas_instance *instance)
3767{
3768 int i;
3769 u32 max_cmd;
3770 u32 sge_sz;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003771 u32 total_sz;
3772 u32 frame_count;
3773 struct megasas_cmd *cmd;
3774
adam radford9c915a82010-12-21 13:34:31 -08003775 max_cmd = instance->max_mfi_cmds;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003776
3777 /*
3778 * Size of our frame is 64 bytes for MFI frame, followed by max SG
3779 * elements and finally SCSI_SENSE_BUFFERSIZE bytes for sense buffer
3780 */
3781 sge_sz = (IS_DMA64) ? sizeof(struct megasas_sge64) :
3782 sizeof(struct megasas_sge32);
3783
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003784 if (instance->flag_ieee)
Yang, Bof4c9a132009-10-06 14:43:28 -06003785 sge_sz = sizeof(struct megasas_sge_skinny);
Yang, Bof4c9a132009-10-06 14:43:28 -06003786
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003787 /*
Sumit.Saxena@avagotech.com200aed52015-01-05 20:05:58 +05303788 * For MFI controllers.
3789 * max_num_sge = 60
3790 * max_sge_sz = 16 byte (sizeof megasas_sge_skinny)
3791 * Total 960 byte (15 MFI frame of 64 byte)
3792 *
3793 * Fusion adapter require only 3 extra frame.
3794 * max_num_sge = 16 (defined as MAX_IOCTL_SGE)
3795 * max_sge_sz = 12 byte (sizeof megasas_sge64)
3796 * Total 192 byte (3 MFI frame of 64 byte)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003797 */
Sumit.Saxena@avagotech.com200aed52015-01-05 20:05:58 +05303798 frame_count = instance->ctrl_context ? (3 + 1) : (15 + 1);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003799 total_sz = MEGAMFI_FRAME_SIZE * frame_count;
3800 /*
3801 * Use DMA pool facility provided by PCI layer
3802 */
3803 instance->frame_dma_pool = pci_pool_create("megasas frame pool",
Sumit.Saxena@avagotech.com200aed52015-01-05 20:05:58 +05303804 instance->pdev, total_sz, 256, 0);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003805
3806 if (!instance->frame_dma_pool) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003807 dev_printk(KERN_DEBUG, &instance->pdev->dev, "failed to setup frame pool\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003808 return -ENOMEM;
3809 }
3810
3811 instance->sense_dma_pool = pci_pool_create("megasas sense pool",
3812 instance->pdev, 128, 4, 0);
3813
3814 if (!instance->sense_dma_pool) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003815 dev_printk(KERN_DEBUG, &instance->pdev->dev, "failed to setup sense pool\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003816
3817 pci_pool_destroy(instance->frame_dma_pool);
3818 instance->frame_dma_pool = NULL;
3819
3820 return -ENOMEM;
3821 }
3822
3823 /*
3824 * Allocate and attach a frame to each of the commands in cmd_list.
3825 * By making cmd->index as the context instead of the &cmd, we can
3826 * always use 32bit context regardless of the architecture
3827 */
3828 for (i = 0; i < max_cmd; i++) {
3829
3830 cmd = instance->cmd_list[i];
3831
3832 cmd->frame = pci_pool_alloc(instance->frame_dma_pool,
3833 GFP_KERNEL, &cmd->frame_phys_addr);
3834
3835 cmd->sense = pci_pool_alloc(instance->sense_dma_pool,
3836 GFP_KERNEL, &cmd->sense_phys_addr);
3837
3838 /*
3839 * megasas_teardown_frame_pool() takes care of freeing
3840 * whatever has been allocated
3841 */
3842 if (!cmd->frame || !cmd->sense) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003843 dev_printk(KERN_DEBUG, &instance->pdev->dev, "pci_pool_alloc failed\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003844 megasas_teardown_frame_pool(instance);
3845 return -ENOMEM;
3846 }
3847
Yang, Bo707e09b2010-10-12 07:20:27 -06003848 memset(cmd->frame, 0, total_sz);
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05303849 cmd->frame->io.context = cpu_to_le32(cmd->index);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06003850 cmd->frame->io.pad_0 = 0;
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05303851 if (!instance->ctrl_context && reset_devices)
adam radforde5f93a32011-10-08 18:15:19 -07003852 cmd->frame->hdr.cmd = MFI_CMD_INVALID;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003853 }
3854
3855 return 0;
3856}
3857
3858/**
3859 * megasas_free_cmds - Free all the cmds in the free cmd pool
3860 * @instance: Adapter soft state
3861 */
adam radford9c915a82010-12-21 13:34:31 -08003862void megasas_free_cmds(struct megasas_instance *instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003863{
3864 int i;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05003865
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003866 /* First free the MFI frame pool */
3867 megasas_teardown_frame_pool(instance);
3868
3869 /* Free all the commands in the cmd_list */
adam radford9c915a82010-12-21 13:34:31 -08003870 for (i = 0; i < instance->max_mfi_cmds; i++)
3871
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003872 kfree(instance->cmd_list[i]);
3873
3874 /* Free the cmd_list buffer itself */
3875 kfree(instance->cmd_list);
3876 instance->cmd_list = NULL;
3877
3878 INIT_LIST_HEAD(&instance->cmd_pool);
3879}
3880
3881/**
3882 * megasas_alloc_cmds - Allocates the command packets
3883 * @instance: Adapter soft state
3884 *
3885 * Each command that is issued to the FW, whether IO commands from the OS or
3886 * internal commands like IOCTLs, are wrapped in local data structure called
3887 * megasas_cmd. The frame embedded in this megasas_cmd is actually issued to
3888 * the FW.
3889 *
3890 * Each frame has a 32-bit field called context (tag). This context is used
3891 * to get back the megasas_cmd from the frame when a frame gets completed in
3892 * the ISR. Typically the address of the megasas_cmd itself would be used as
3893 * the context. But we wanted to keep the differences between 32 and 64 bit
3894 * systems to the mininum. We always use 32 bit integers for the context. In
3895 * this driver, the 32 bit values are the indices into an array cmd_list.
3896 * This array is used only to look up the megasas_cmd given the context. The
3897 * free commands themselves are maintained in a linked list called cmd_pool.
3898 */
adam radford9c915a82010-12-21 13:34:31 -08003899int megasas_alloc_cmds(struct megasas_instance *instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003900{
3901 int i;
3902 int j;
3903 u32 max_cmd;
3904 struct megasas_cmd *cmd;
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05303905 struct fusion_context *fusion;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003906
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05303907 fusion = instance->ctrl_context;
adam radford9c915a82010-12-21 13:34:31 -08003908 max_cmd = instance->max_mfi_cmds;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003909
3910 /*
3911 * instance->cmd_list is an array of struct megasas_cmd pointers.
3912 * Allocate the dynamic array first and then allocate individual
3913 * commands.
3914 */
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07003915 instance->cmd_list = kcalloc(max_cmd, sizeof(struct megasas_cmd*), GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003916
3917 if (!instance->cmd_list) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003918 dev_printk(KERN_DEBUG, &instance->pdev->dev, "out of memory\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003919 return -ENOMEM;
3920 }
3921
adam radford9c915a82010-12-21 13:34:31 -08003922 memset(instance->cmd_list, 0, sizeof(struct megasas_cmd *) *max_cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003923
3924 for (i = 0; i < max_cmd; i++) {
3925 instance->cmd_list[i] = kmalloc(sizeof(struct megasas_cmd),
3926 GFP_KERNEL);
3927
3928 if (!instance->cmd_list[i]) {
3929
3930 for (j = 0; j < i; j++)
3931 kfree(instance->cmd_list[j]);
3932
3933 kfree(instance->cmd_list);
3934 instance->cmd_list = NULL;
3935
3936 return -ENOMEM;
3937 }
3938 }
3939
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003940 for (i = 0; i < max_cmd; i++) {
3941 cmd = instance->cmd_list[i];
3942 memset(cmd, 0, sizeof(struct megasas_cmd));
3943 cmd->index = i;
bo yang39a98552010-09-22 22:36:29 -04003944 cmd->scmd = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003945 cmd->instance = instance;
3946
3947 list_add_tail(&cmd->list, &instance->cmd_pool);
3948 }
3949
3950 /*
3951 * Create a frame pool and assign one frame to each cmd
3952 */
3953 if (megasas_create_frame_pool(instance)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05003954 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Error creating frame DMA pool\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003955 megasas_free_cmds(instance);
3956 }
3957
3958 return 0;
3959}
3960
Yang, Bo81e403c2009-10-06 14:27:54 -06003961/*
Sumit Saxena6d40afb2016-01-28 21:04:23 +05303962 * dcmd_timeout_ocr_possible - Check if OCR is possible based on Driver/FW state.
3963 * @instance: Adapter soft state
3964 *
3965 * Return 0 for only Fusion adapter, if driver load/unload is not in progress
3966 * or FW is not under OCR.
3967 */
3968inline int
3969dcmd_timeout_ocr_possible(struct megasas_instance *instance) {
3970
3971 if (!instance->ctrl_context)
3972 return KILL_ADAPTER;
3973 else if (instance->unload ||
3974 test_bit(MEGASAS_FUSION_IN_RESET, &instance->reset_flags))
3975 return IGNORE_TIMEOUT;
3976 else
3977 return INITIATE_OCR;
3978}
3979
Sumit Saxena2216c302016-01-28 21:04:26 +05303980static int
3981megasas_get_pd_info(struct megasas_instance *instance, u16 device_id)
3982{
3983 int ret;
3984 struct megasas_cmd *cmd;
3985 struct megasas_dcmd_frame *dcmd;
3986
3987 cmd = megasas_get_cmd(instance);
3988
3989 if (!cmd) {
3990 dev_err(&instance->pdev->dev, "Failed to get cmd %s\n", __func__);
3991 return -ENOMEM;
3992 }
3993
3994 dcmd = &cmd->frame->dcmd;
3995
3996 memset(instance->pd_info, 0, sizeof(*instance->pd_info));
3997 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3998
3999 dcmd->mbox.s[0] = cpu_to_le16(device_id);
4000 dcmd->cmd = MFI_CMD_DCMD;
4001 dcmd->cmd_status = 0xFF;
4002 dcmd->sge_count = 1;
4003 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
4004 dcmd->timeout = 0;
4005 dcmd->pad_0 = 0;
4006 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct MR_PD_INFO));
4007 dcmd->opcode = cpu_to_le32(MR_DCMD_PD_GET_INFO);
4008 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(instance->pd_info_h);
4009 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct MR_PD_INFO));
4010
4011 if (instance->ctrl_context && !instance->mask_interrupts)
4012 ret = megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS);
4013 else
4014 ret = megasas_issue_polled(instance, cmd);
4015
4016 switch (ret) {
4017 case DCMD_SUCCESS:
4018 instance->pd_list[device_id].interface =
4019 instance->pd_info->state.ddf.pdType.intf;
4020 break;
4021
4022 case DCMD_TIMEOUT:
4023
4024 switch (dcmd_timeout_ocr_possible(instance)) {
4025 case INITIATE_OCR:
4026 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4027 megasas_reset_fusion(instance->host,
4028 MFI_IO_TIMEOUT_OCR);
4029 break;
4030 case KILL_ADAPTER:
4031 megaraid_sas_kill_hba(instance);
4032 break;
4033 case IGNORE_TIMEOUT:
4034 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4035 __func__, __LINE__);
4036 break;
4037 }
4038
4039 break;
4040 }
4041
4042 if (ret != DCMD_TIMEOUT)
4043 megasas_return_cmd(instance, cmd);
4044
4045 return ret;
4046}
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304047/*
Yang, Bo81e403c2009-10-06 14:27:54 -06004048 * megasas_get_pd_list_info - Returns FW's pd_list structure
4049 * @instance: Adapter soft state
4050 * @pd_list: pd_list structure
4051 *
4052 * Issues an internal command (DCMD) to get the FW's controller PD
4053 * list structure. This information is mainly used to find out SYSTEM
4054 * supported by the FW.
4055 */
4056static int
4057megasas_get_pd_list(struct megasas_instance *instance)
4058{
4059 int ret = 0, pd_index = 0;
4060 struct megasas_cmd *cmd;
4061 struct megasas_dcmd_frame *dcmd;
4062 struct MR_PD_LIST *ci;
4063 struct MR_PD_ADDRESS *pd_addr;
4064 dma_addr_t ci_h = 0;
4065
Sumit Saxenad9083162016-07-08 03:30:16 -07004066 if (instance->pd_list_not_supported) {
4067 dev_info(&instance->pdev->dev, "MR_DCMD_PD_LIST_QUERY "
4068 "not supported by firmware\n");
4069 return ret;
4070 }
4071
Yang, Bo81e403c2009-10-06 14:27:54 -06004072 cmd = megasas_get_cmd(instance);
4073
4074 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004075 dev_printk(KERN_DEBUG, &instance->pdev->dev, "(get_pd_list): Failed to get cmd\n");
Yang, Bo81e403c2009-10-06 14:27:54 -06004076 return -ENOMEM;
4077 }
4078
4079 dcmd = &cmd->frame->dcmd;
4080
4081 ci = pci_alloc_consistent(instance->pdev,
4082 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST), &ci_h);
4083
4084 if (!ci) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004085 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to alloc mem for pd_list\n");
Yang, Bo81e403c2009-10-06 14:27:54 -06004086 megasas_return_cmd(instance, cmd);
4087 return -ENOMEM;
4088 }
4089
4090 memset(ci, 0, sizeof(*ci));
4091 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4092
4093 dcmd->mbox.b[0] = MR_PD_QUERY_TYPE_EXPOSED_TO_HOST;
4094 dcmd->mbox.b[1] = 0;
4095 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304096 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Yang, Bo81e403c2009-10-06 14:27:54 -06004097 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304098 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Yang, Bo81e403c2009-10-06 14:27:54 -06004099 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07004100 dcmd->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304101 dcmd->data_xfer_len = cpu_to_le32(MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST));
4102 dcmd->opcode = cpu_to_le32(MR_DCMD_PD_LIST_QUERY);
4103 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(ci_h);
4104 dcmd->sgl.sge32[0].length = cpu_to_le32(MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST));
Yang, Bo81e403c2009-10-06 14:27:54 -06004105
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304106 if (instance->ctrl_context && !instance->mask_interrupts)
4107 ret = megasas_issue_blocked_cmd(instance, cmd,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304108 MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304109 else
4110 ret = megasas_issue_polled(instance, cmd);
Yang, Bo81e403c2009-10-06 14:27:54 -06004111
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304112 switch (ret) {
4113 case DCMD_FAILED:
Sumit Saxena30845582016-03-10 02:14:37 -08004114 dev_info(&instance->pdev->dev, "MR_DCMD_PD_LIST_QUERY "
4115 "failed/not supported by firmware\n");
4116
4117 if (instance->ctrl_context)
4118 megaraid_sas_kill_hba(instance);
4119 else
4120 instance->pd_list_not_supported = 1;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304121 break;
4122 case DCMD_TIMEOUT:
Yang, Bo81e403c2009-10-06 14:27:54 -06004123
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304124 switch (dcmd_timeout_ocr_possible(instance)) {
4125 case INITIATE_OCR:
4126 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4127 /*
4128 * DCMD failed from AEN path.
4129 * AEN path already hold reset_mutex to avoid PCI access
4130 * while OCR is in progress.
4131 */
4132 mutex_unlock(&instance->reset_mutex);
4133 megasas_reset_fusion(instance->host,
4134 MFI_IO_TIMEOUT_OCR);
4135 mutex_lock(&instance->reset_mutex);
4136 break;
4137 case KILL_ADAPTER:
4138 megaraid_sas_kill_hba(instance);
4139 break;
4140 case IGNORE_TIMEOUT:
4141 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d \n",
4142 __func__, __LINE__);
4143 break;
4144 }
Yang, Bo81e403c2009-10-06 14:27:54 -06004145
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304146 break;
4147
4148 case DCMD_SUCCESS:
4149 pd_addr = ci->addr;
4150
4151 if ((le32_to_cpu(ci->count) >
4152 (MEGASAS_MAX_PD_CHANNELS * MEGASAS_MAX_DEV_PER_CHANNEL)))
4153 break;
Yang, Bo81e403c2009-10-06 14:27:54 -06004154
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304155 memset(instance->local_pd_list, 0,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304156 MEGASAS_MAX_PD * sizeof(struct megasas_pd_list));
Yang, Bo81e403c2009-10-06 14:27:54 -06004157
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304158 for (pd_index = 0; pd_index < le32_to_cpu(ci->count); pd_index++) {
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304159 instance->local_pd_list[le16_to_cpu(pd_addr->deviceId)].tid =
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304160 le16_to_cpu(pd_addr->deviceId);
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304161 instance->local_pd_list[le16_to_cpu(pd_addr->deviceId)].driveType =
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304162 pd_addr->scsiDevType;
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304163 instance->local_pd_list[le16_to_cpu(pd_addr->deviceId)].driveState =
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304164 MR_PD_STATE_SYSTEM;
Yang, Bo81e403c2009-10-06 14:27:54 -06004165 pd_addr++;
4166 }
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304167
Sumit.Saxena@lsi.com999ece02013-10-18 12:50:37 +05304168 memcpy(instance->pd_list, instance->local_pd_list,
4169 sizeof(instance->pd_list));
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304170 break;
4171
Yang, Bo81e403c2009-10-06 14:27:54 -06004172 }
4173
4174 pci_free_consistent(instance->pdev,
4175 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST),
4176 ci, ci_h);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304177
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304178 if (ret != DCMD_TIMEOUT)
4179 megasas_return_cmd(instance, cmd);
Yang, Bo81e403c2009-10-06 14:27:54 -06004180
4181 return ret;
4182}
4183
Yang, Bobdc6fb82009-12-06 08:30:19 -07004184/*
4185 * megasas_get_ld_list_info - Returns FW's ld_list structure
4186 * @instance: Adapter soft state
4187 * @ld_list: ld_list structure
4188 *
4189 * Issues an internal command (DCMD) to get the FW's controller PD
4190 * list structure. This information is mainly used to find out SYSTEM
4191 * supported by the FW.
4192 */
4193static int
4194megasas_get_ld_list(struct megasas_instance *instance)
4195{
4196 int ret = 0, ld_index = 0, ids = 0;
4197 struct megasas_cmd *cmd;
4198 struct megasas_dcmd_frame *dcmd;
4199 struct MR_LD_LIST *ci;
4200 dma_addr_t ci_h = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304201 u32 ld_count;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004202
4203 cmd = megasas_get_cmd(instance);
4204
4205 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004206 dev_printk(KERN_DEBUG, &instance->pdev->dev, "megasas_get_ld_list: Failed to get cmd\n");
Yang, Bobdc6fb82009-12-06 08:30:19 -07004207 return -ENOMEM;
4208 }
4209
4210 dcmd = &cmd->frame->dcmd;
4211
4212 ci = pci_alloc_consistent(instance->pdev,
4213 sizeof(struct MR_LD_LIST),
4214 &ci_h);
4215
4216 if (!ci) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004217 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to alloc mem in get_ld_list\n");
Yang, Bobdc6fb82009-12-06 08:30:19 -07004218 megasas_return_cmd(instance, cmd);
4219 return -ENOMEM;
4220 }
4221
4222 memset(ci, 0, sizeof(*ci));
4223 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4224
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304225 if (instance->supportmax256vd)
4226 dcmd->mbox.b[0] = 1;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004227 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304228 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004229 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304230 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Yang, Bobdc6fb82009-12-06 08:30:19 -07004231 dcmd->timeout = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304232 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct MR_LD_LIST));
4233 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_GET_LIST);
4234 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(ci_h);
4235 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct MR_LD_LIST));
Yang, Bobdc6fb82009-12-06 08:30:19 -07004236 dcmd->pad_0 = 0;
4237
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304238 if (instance->ctrl_context && !instance->mask_interrupts)
4239 ret = megasas_issue_blocked_cmd(instance, cmd,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304240 MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304241 else
4242 ret = megasas_issue_polled(instance, cmd);
4243
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304244 ld_count = le32_to_cpu(ci->ldCount);
4245
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304246 switch (ret) {
4247 case DCMD_FAILED:
4248 megaraid_sas_kill_hba(instance);
4249 break;
4250 case DCMD_TIMEOUT:
Yang, Bobdc6fb82009-12-06 08:30:19 -07004251
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304252 switch (dcmd_timeout_ocr_possible(instance)) {
4253 case INITIATE_OCR:
4254 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4255 /*
4256 * DCMD failed from AEN path.
4257 * AEN path already hold reset_mutex to avoid PCI access
4258 * while OCR is in progress.
4259 */
4260 mutex_unlock(&instance->reset_mutex);
4261 megasas_reset_fusion(instance->host,
4262 MFI_IO_TIMEOUT_OCR);
4263 mutex_lock(&instance->reset_mutex);
4264 break;
4265 case KILL_ADAPTER:
4266 megaraid_sas_kill_hba(instance);
4267 break;
4268 case IGNORE_TIMEOUT:
4269 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4270 __func__, __LINE__);
4271 break;
4272 }
4273
4274 break;
4275
4276 case DCMD_SUCCESS:
4277 if (ld_count > instance->fw_supported_vd_count)
4278 break;
4279
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304280 memset(instance->ld_ids, 0xff, MAX_LOGICAL_DRIVES_EXT);
Yang, Bobdc6fb82009-12-06 08:30:19 -07004281
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304282 for (ld_index = 0; ld_index < ld_count; ld_index++) {
Yang, Bobdc6fb82009-12-06 08:30:19 -07004283 if (ci->ldList[ld_index].state != 0) {
4284 ids = ci->ldList[ld_index].ref.targetId;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304285 instance->ld_ids[ids] = ci->ldList[ld_index].ref.targetId;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004286 }
4287 }
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304288
4289 break;
Yang, Bobdc6fb82009-12-06 08:30:19 -07004290 }
4291
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304292 pci_free_consistent(instance->pdev, sizeof(struct MR_LD_LIST), ci, ci_h);
Yang, Bobdc6fb82009-12-06 08:30:19 -07004293
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304294 if (ret != DCMD_TIMEOUT)
4295 megasas_return_cmd(instance, cmd);
4296
Yang, Bobdc6fb82009-12-06 08:30:19 -07004297 return ret;
4298}
4299
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004300/**
adam radford21c9e162013-09-06 15:27:14 -07004301 * megasas_ld_list_query - Returns FW's ld_list structure
4302 * @instance: Adapter soft state
4303 * @ld_list: ld_list structure
4304 *
4305 * Issues an internal command (DCMD) to get the FW's controller PD
4306 * list structure. This information is mainly used to find out SYSTEM
4307 * supported by the FW.
4308 */
4309static int
4310megasas_ld_list_query(struct megasas_instance *instance, u8 query_type)
4311{
4312 int ret = 0, ld_index = 0, ids = 0;
4313 struct megasas_cmd *cmd;
4314 struct megasas_dcmd_frame *dcmd;
4315 struct MR_LD_TARGETID_LIST *ci;
4316 dma_addr_t ci_h = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304317 u32 tgtid_count;
adam radford21c9e162013-09-06 15:27:14 -07004318
4319 cmd = megasas_get_cmd(instance);
4320
4321 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004322 dev_warn(&instance->pdev->dev,
4323 "megasas_ld_list_query: Failed to get cmd\n");
adam radford21c9e162013-09-06 15:27:14 -07004324 return -ENOMEM;
4325 }
4326
4327 dcmd = &cmd->frame->dcmd;
4328
4329 ci = pci_alloc_consistent(instance->pdev,
4330 sizeof(struct MR_LD_TARGETID_LIST), &ci_h);
4331
4332 if (!ci) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004333 dev_warn(&instance->pdev->dev,
4334 "Failed to alloc mem for ld_list_query\n");
adam radford21c9e162013-09-06 15:27:14 -07004335 megasas_return_cmd(instance, cmd);
4336 return -ENOMEM;
4337 }
4338
4339 memset(ci, 0, sizeof(*ci));
4340 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4341
4342 dcmd->mbox.b[0] = query_type;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304343 if (instance->supportmax256vd)
4344 dcmd->mbox.b[2] = 1;
adam radford21c9e162013-09-06 15:27:14 -07004345
4346 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304347 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
adam radford21c9e162013-09-06 15:27:14 -07004348 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304349 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
adam radford21c9e162013-09-06 15:27:14 -07004350 dcmd->timeout = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304351 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct MR_LD_TARGETID_LIST));
4352 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_LIST_QUERY);
4353 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(ci_h);
4354 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct MR_LD_TARGETID_LIST));
adam radford21c9e162013-09-06 15:27:14 -07004355 dcmd->pad_0 = 0;
4356
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304357 if (instance->ctrl_context && !instance->mask_interrupts)
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304358 ret = megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304359 else
4360 ret = megasas_issue_polled(instance, cmd);
adam radford21c9e162013-09-06 15:27:14 -07004361
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304362 switch (ret) {
4363 case DCMD_FAILED:
4364 dev_info(&instance->pdev->dev,
4365 "DCMD not supported by firmware - %s %d\n",
4366 __func__, __LINE__);
4367 ret = megasas_get_ld_list(instance);
4368 break;
4369 case DCMD_TIMEOUT:
4370 switch (dcmd_timeout_ocr_possible(instance)) {
4371 case INITIATE_OCR:
4372 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4373 /*
4374 * DCMD failed from AEN path.
4375 * AEN path already hold reset_mutex to avoid PCI access
4376 * while OCR is in progress.
4377 */
4378 mutex_unlock(&instance->reset_mutex);
4379 megasas_reset_fusion(instance->host,
4380 MFI_IO_TIMEOUT_OCR);
4381 mutex_lock(&instance->reset_mutex);
4382 break;
4383 case KILL_ADAPTER:
4384 megaraid_sas_kill_hba(instance);
4385 break;
4386 case IGNORE_TIMEOUT:
4387 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4388 __func__, __LINE__);
4389 break;
4390 }
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304391
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304392 break;
4393 case DCMD_SUCCESS:
4394 tgtid_count = le32_to_cpu(ci->count);
4395
4396 if ((tgtid_count > (instance->fw_supported_vd_count)))
4397 break;
4398
adam radford21c9e162013-09-06 15:27:14 -07004399 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304400 for (ld_index = 0; ld_index < tgtid_count; ld_index++) {
adam radford21c9e162013-09-06 15:27:14 -07004401 ids = ci->targetId[ld_index];
4402 instance->ld_ids[ids] = ci->targetId[ld_index];
4403 }
4404
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304405 break;
adam radford21c9e162013-09-06 15:27:14 -07004406 }
4407
4408 pci_free_consistent(instance->pdev, sizeof(struct MR_LD_TARGETID_LIST),
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304409 ci, ci_h);
adam radford21c9e162013-09-06 15:27:14 -07004410
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304411 if (ret != DCMD_TIMEOUT)
4412 megasas_return_cmd(instance, cmd);
adam radford21c9e162013-09-06 15:27:14 -07004413
4414 return ret;
4415}
4416
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304417/*
4418 * megasas_update_ext_vd_details : Update details w.r.t Extended VD
4419 * instance : Controller's instance
4420*/
4421static void megasas_update_ext_vd_details(struct megasas_instance *instance)
4422{
4423 struct fusion_context *fusion;
4424 u32 old_map_sz;
4425 u32 new_map_sz;
4426
4427 fusion = instance->ctrl_context;
4428 /* For MFI based controllers return dummy success */
4429 if (!fusion)
4430 return;
4431
4432 instance->supportmax256vd =
4433 instance->ctrl_info->adapterOperations3.supportMaxExtLDs;
4434 /* Below is additional check to address future FW enhancement */
4435 if (instance->ctrl_info->max_lds > 64)
4436 instance->supportmax256vd = 1;
4437
4438 instance->drv_supported_vd_count = MEGASAS_MAX_LD_CHANNELS
4439 * MEGASAS_MAX_DEV_PER_CHANNEL;
4440 instance->drv_supported_pd_count = MEGASAS_MAX_PD_CHANNELS
4441 * MEGASAS_MAX_DEV_PER_CHANNEL;
4442 if (instance->supportmax256vd) {
4443 instance->fw_supported_vd_count = MAX_LOGICAL_DRIVES_EXT;
4444 instance->fw_supported_pd_count = MAX_PHYSICAL_DEVICES;
4445 } else {
4446 instance->fw_supported_vd_count = MAX_LOGICAL_DRIVES;
4447 instance->fw_supported_pd_count = MAX_PHYSICAL_DEVICES;
4448 }
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05304449
4450 dev_info(&instance->pdev->dev,
4451 "firmware type\t: %s\n",
4452 instance->supportmax256vd ? "Extended VD(240 VD)firmware" :
4453 "Legacy(64 VD) firmware");
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304454
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05004455 old_map_sz = sizeof(struct MR_FW_RAID_MAP) +
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304456 (sizeof(struct MR_LD_SPAN_MAP) *
4457 (instance->fw_supported_vd_count - 1));
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05004458 new_map_sz = sizeof(struct MR_FW_RAID_MAP_EXT);
4459 fusion->drv_map_sz = sizeof(struct MR_DRV_RAID_MAP) +
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304460 (sizeof(struct MR_LD_SPAN_MAP) *
4461 (instance->drv_supported_vd_count - 1));
4462
4463 fusion->max_map_sz = max(old_map_sz, new_map_sz);
4464
4465
4466 if (instance->supportmax256vd)
4467 fusion->current_map_sz = new_map_sz;
4468 else
4469 fusion->current_map_sz = old_map_sz;
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304470}
4471
adam radford21c9e162013-09-06 15:27:14 -07004472/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004473 * megasas_get_controller_info - Returns FW's controller structure
4474 * @instance: Adapter soft state
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004475 *
4476 * Issues an internal command (DCMD) to get the FW's controller structure.
4477 * This information is mainly used to find out the maximum IO transfer per
4478 * command supported by the FW.
4479 */
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304480int
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304481megasas_get_ctrl_info(struct megasas_instance *instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004482{
4483 int ret = 0;
4484 struct megasas_cmd *cmd;
4485 struct megasas_dcmd_frame *dcmd;
4486 struct megasas_ctrl_info *ci;
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304487 struct megasas_ctrl_info *ctrl_info;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004488 dma_addr_t ci_h = 0;
4489
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304490 ctrl_info = instance->ctrl_info;
4491
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004492 cmd = megasas_get_cmd(instance);
4493
4494 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004495 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to get a free cmd\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004496 return -ENOMEM;
4497 }
4498
4499 dcmd = &cmd->frame->dcmd;
4500
4501 ci = pci_alloc_consistent(instance->pdev,
4502 sizeof(struct megasas_ctrl_info), &ci_h);
4503
4504 if (!ci) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004505 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to alloc mem for ctrl info\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004506 megasas_return_cmd(instance, cmd);
4507 return -ENOMEM;
4508 }
4509
4510 memset(ci, 0, sizeof(*ci));
4511 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4512
4513 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304514 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004515 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304516 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004517 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07004518 dcmd->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304519 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct megasas_ctrl_info));
4520 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_GET_INFO);
4521 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(ci_h);
4522 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct megasas_ctrl_info));
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304523 dcmd->mbox.b[0] = 1;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004524
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304525 if (instance->ctrl_context && !instance->mask_interrupts)
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304526 ret = megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304527 else
4528 ret = megasas_issue_polled(instance, cmd);
4529
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304530 switch (ret) {
4531 case DCMD_SUCCESS:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004532 memcpy(ctrl_info, ci, sizeof(struct megasas_ctrl_info));
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304533 /* Save required controller information in
4534 * CPU endianness format.
4535 */
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304536 le32_to_cpus((u32 *)&ctrl_info->properties.OnOffProperties);
4537 le32_to_cpus((u32 *)&ctrl_info->adapterOperations2);
4538 le32_to_cpus((u32 *)&ctrl_info->adapterOperations3);
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304539
4540 /* Update the latest Ext VD info.
4541 * From Init path, store current firmware details.
4542 * From OCR path, detect any firmware properties changes.
4543 * in case of Firmware upgrade without system reboot.
4544 */
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304545 megasas_update_ext_vd_details(instance);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05304546 instance->use_seqnum_jbod_fp =
4547 ctrl_info->adapterOperations3.useSeqNumJbodFP;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304548
4549 /*Check whether controller is iMR or MR */
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05304550 instance->is_imr = (ctrl_info->memory_size ? 0 : 1);
4551 dev_info(&instance->pdev->dev,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304552 "controller type\t: %s(%dMB)\n",
4553 instance->is_imr ? "iMR" : "MR",
4554 le16_to_cpu(ctrl_info->memory_size));
4555
sumit.saxena@avagotech.comc4bd2652015-10-15 13:40:14 +05304556 instance->disableOnlineCtrlReset =
4557 ctrl_info->properties.OnOffProperties.disableOnlineCtrlReset;
sumit.saxena@avagotech.com32222512015-10-15 13:40:24 +05304558 instance->secure_jbod_support =
4559 ctrl_info->adapterOperations3.supportSecurityonJBOD;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304560 dev_info(&instance->pdev->dev, "Online Controller Reset(OCR)\t: %s\n",
4561 instance->disableOnlineCtrlReset ? "Disabled" : "Enabled");
sumit.saxena@avagotech.com32222512015-10-15 13:40:24 +05304562 dev_info(&instance->pdev->dev, "Secure JBOD support\t: %s\n",
4563 instance->secure_jbod_support ? "Yes" : "No");
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304564 break;
4565
4566 case DCMD_TIMEOUT:
4567 switch (dcmd_timeout_ocr_possible(instance)) {
4568 case INITIATE_OCR:
4569 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4570 megasas_reset_fusion(instance->host,
4571 MFI_IO_TIMEOUT_OCR);
4572 break;
4573 case KILL_ADAPTER:
4574 megaraid_sas_kill_hba(instance);
4575 break;
4576 case IGNORE_TIMEOUT:
4577 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4578 __func__, __LINE__);
4579 break;
4580 }
4581 case DCMD_FAILED:
4582 megaraid_sas_kill_hba(instance);
4583 break;
4584
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304585 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004586
4587 pci_free_consistent(instance->pdev, sizeof(struct megasas_ctrl_info),
4588 ci, ci_h);
4589
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05304590 megasas_return_cmd(instance, cmd);
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304591
4592
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004593 return ret;
4594}
4595
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05304596/*
4597 * megasas_set_crash_dump_params - Sends address of crash dump DMA buffer
4598 * to firmware
4599 *
4600 * @instance: Adapter soft state
4601 * @crash_buf_state - tell FW to turn ON/OFF crash dump feature
4602 MR_CRASH_BUF_TURN_OFF = 0
4603 MR_CRASH_BUF_TURN_ON = 1
4604 * @return 0 on success non-zero on failure.
4605 * Issues an internal command (DCMD) to set parameters for crash dump feature.
4606 * Driver will send address of crash dump DMA buffer and set mbox to tell FW
4607 * that driver supports crash dump feature. This DCMD will be sent only if
4608 * crash dump feature is supported by the FW.
4609 *
4610 */
4611int megasas_set_crash_dump_params(struct megasas_instance *instance,
4612 u8 crash_buf_state)
4613{
4614 int ret = 0;
4615 struct megasas_cmd *cmd;
4616 struct megasas_dcmd_frame *dcmd;
4617
4618 cmd = megasas_get_cmd(instance);
4619
4620 if (!cmd) {
4621 dev_err(&instance->pdev->dev, "Failed to get a free cmd\n");
4622 return -ENOMEM;
4623 }
4624
4625
4626 dcmd = &cmd->frame->dcmd;
4627
4628 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4629 dcmd->mbox.b[0] = crash_buf_state;
4630 dcmd->cmd = MFI_CMD_DCMD;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304631 dcmd->cmd_status = MFI_STAT_INVALID_STATUS;
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05304632 dcmd->sge_count = 1;
4633 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_NONE);
4634 dcmd->timeout = 0;
4635 dcmd->pad_0 = 0;
4636 dcmd->data_xfer_len = cpu_to_le32(CRASH_DMA_BUF_SIZE);
4637 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_SET_CRASH_DUMP_PARAMS);
4638 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(instance->crash_dump_h);
4639 dcmd->sgl.sge32[0].length = cpu_to_le32(CRASH_DMA_BUF_SIZE);
4640
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304641 if (instance->ctrl_context && !instance->mask_interrupts)
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304642 ret = megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS);
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05304643 else
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05304644 ret = megasas_issue_polled(instance, cmd);
4645
Sumit Saxena6d40afb2016-01-28 21:04:23 +05304646 if (ret == DCMD_TIMEOUT) {
4647 switch (dcmd_timeout_ocr_possible(instance)) {
4648 case INITIATE_OCR:
4649 cmd->flags |= DRV_DCMD_SKIP_REFIRE;
4650 megasas_reset_fusion(instance->host,
4651 MFI_IO_TIMEOUT_OCR);
4652 break;
4653 case KILL_ADAPTER:
4654 megaraid_sas_kill_hba(instance);
4655 break;
4656 case IGNORE_TIMEOUT:
4657 dev_info(&instance->pdev->dev, "Ignore DCMD timeout: %s %d\n",
4658 __func__, __LINE__);
4659 break;
4660 }
4661 } else
4662 megasas_return_cmd(instance, cmd);
4663
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05304664 return ret;
4665}
4666
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004667/**
bo yang31ea7082007-11-07 12:09:50 -05004668 * megasas_issue_init_mfi - Initializes the FW
4669 * @instance: Adapter soft state
4670 *
4671 * Issues the INIT MFI cmd
4672 */
4673static int
4674megasas_issue_init_mfi(struct megasas_instance *instance)
4675{
Christoph Hellwig9ab9ed32015-04-23 16:32:54 +05304676 __le32 context;
bo yang31ea7082007-11-07 12:09:50 -05004677 struct megasas_cmd *cmd;
bo yang31ea7082007-11-07 12:09:50 -05004678 struct megasas_init_frame *init_frame;
4679 struct megasas_init_queue_info *initq_info;
4680 dma_addr_t init_frame_h;
4681 dma_addr_t initq_info_h;
4682
4683 /*
4684 * Prepare a init frame. Note the init frame points to queue info
4685 * structure. Each frame has SGL allocated after first 64 bytes. For
4686 * this frame - since we don't need any SGL - we use SGL's space as
4687 * queue info structure
4688 *
4689 * We will not get a NULL command below. We just created the pool.
4690 */
4691 cmd = megasas_get_cmd(instance);
4692
4693 init_frame = (struct megasas_init_frame *)cmd->frame;
4694 initq_info = (struct megasas_init_queue_info *)
4695 ((unsigned long)init_frame + 64);
4696
4697 init_frame_h = cmd->frame_phys_addr;
4698 initq_info_h = init_frame_h + 64;
4699
4700 context = init_frame->context;
4701 memset(init_frame, 0, MEGAMFI_FRAME_SIZE);
4702 memset(initq_info, 0, sizeof(struct megasas_init_queue_info));
4703 init_frame->context = context;
4704
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304705 initq_info->reply_queue_entries = cpu_to_le32(instance->max_fw_cmds + 1);
4706 initq_info->reply_queue_start_phys_addr_lo = cpu_to_le32(instance->reply_queue_h);
bo yang31ea7082007-11-07 12:09:50 -05004707
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304708 initq_info->producer_index_phys_addr_lo = cpu_to_le32(instance->producer_h);
4709 initq_info->consumer_index_phys_addr_lo = cpu_to_le32(instance->consumer_h);
bo yang31ea7082007-11-07 12:09:50 -05004710
4711 init_frame->cmd = MFI_CMD_INIT;
Sumit.Saxena@avagotech.com2be2a982015-05-06 19:01:02 +05304712 init_frame->cmd_status = MFI_STAT_INVALID_STATUS;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304713 init_frame->queue_info_new_phys_addr_lo =
4714 cpu_to_le32(lower_32_bits(initq_info_h));
4715 init_frame->queue_info_new_phys_addr_hi =
4716 cpu_to_le32(upper_32_bits(initq_info_h));
bo yang31ea7082007-11-07 12:09:50 -05004717
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05304718 init_frame->data_xfer_len = cpu_to_le32(sizeof(struct megasas_init_queue_info));
bo yang31ea7082007-11-07 12:09:50 -05004719
4720 /*
4721 * disable the intr before firing the init frame to FW
4722 */
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05304723 instance->instancet->disable_intr(instance);
bo yang31ea7082007-11-07 12:09:50 -05004724
4725 /*
4726 * Issue the init frame in polled mode
4727 */
4728
4729 if (megasas_issue_polled(instance, cmd)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004730 dev_err(&instance->pdev->dev, "Failed to init firmware\n");
bo yang31ea7082007-11-07 12:09:50 -05004731 megasas_return_cmd(instance, cmd);
4732 goto fail_fw_init;
4733 }
4734
4735 megasas_return_cmd(instance, cmd);
4736
4737 return 0;
4738
4739fail_fw_init:
4740 return -EINVAL;
4741}
4742
adam radfordcd50ba82010-12-21 10:23:23 -08004743static u32
4744megasas_init_adapter_mfi(struct megasas_instance *instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004745{
adam radfordcd50ba82010-12-21 10:23:23 -08004746 struct megasas_register_set __iomem *reg_set;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004747 u32 context_sz;
4748 u32 reply_q_sz;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004749
4750 reg_set = instance->reg_set;
4751
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004752 /*
4753 * Get various operational parameters from status register
4754 */
Sumant Patro1341c932006-01-25 12:02:40 -08004755 instance->max_fw_cmds = instance->instancet->read_fw_status_reg(reg_set) & 0x00FFFF;
Sumant Patroe3bbff92006-10-03 12:28:49 -07004756 /*
4757 * Reduce the max supported cmds by 1. This is to ensure that the
4758 * reply_q_sz (1 more than the max cmd that driver may send)
4759 * does not exceed max cmds that the FW can support
4760 */
4761 instance->max_fw_cmds = instance->max_fw_cmds-1;
adam radford9c915a82010-12-21 13:34:31 -08004762 instance->max_mfi_cmds = instance->max_fw_cmds;
adam radford0d490162010-12-14 19:17:17 -08004763 instance->max_num_sge = (instance->instancet->read_fw_status_reg(reg_set) & 0xFF0000) >>
Sumant Patro1341c932006-01-25 12:02:40 -08004764 0x10;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004765 /*
Sumit.Saxena@avagotech.comf26ac3a2015-04-23 16:30:54 +05304766 * For MFI skinny adapters, MEGASAS_SKINNY_INT_CMDS commands
4767 * are reserved for IOCTL + driver's internal DCMDs.
4768 */
4769 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
4770 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
4771 instance->max_scsi_cmds = (instance->max_fw_cmds -
4772 MEGASAS_SKINNY_INT_CMDS);
4773 sema_init(&instance->ioctl_sem, MEGASAS_SKINNY_INT_CMDS);
4774 } else {
4775 instance->max_scsi_cmds = (instance->max_fw_cmds -
4776 MEGASAS_INT_CMDS);
4777 sema_init(&instance->ioctl_sem, (MEGASAS_MFI_IOCTL_CMDS));
4778 }
4779
Sumit Saxena308ec452016-01-28 21:04:30 +05304780 instance->cur_can_queue = instance->max_scsi_cmds;
Sumit.Saxena@avagotech.comf26ac3a2015-04-23 16:30:54 +05304781 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004782 * Create a pool of commands
4783 */
4784 if (megasas_alloc_cmds(instance))
4785 goto fail_alloc_cmds;
4786
4787 /*
4788 * Allocate memory for reply queue. Length of reply queue should
4789 * be _one_ more than the maximum commands handled by the firmware.
4790 *
4791 * Note: When FW completes commands, it places corresponding contex
4792 * values in this circular reply queue. This circular queue is a fairly
4793 * typical producer-consumer queue. FW is the producer (of completed
4794 * commands) and the driver is the consumer.
4795 */
4796 context_sz = sizeof(u32);
4797 reply_q_sz = context_sz * (instance->max_fw_cmds + 1);
4798
4799 instance->reply_queue = pci_alloc_consistent(instance->pdev,
4800 reply_q_sz,
4801 &instance->reply_queue_h);
4802
4803 if (!instance->reply_queue) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004804 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Out of DMA mem for reply queue\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004805 goto fail_reply_queue;
4806 }
4807
bo yang31ea7082007-11-07 12:09:50 -05004808 if (megasas_issue_init_mfi(instance))
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004809 goto fail_fw_init;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004810
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05304811 if (megasas_get_ctrl_info(instance)) {
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05304812 dev_err(&instance->pdev->dev, "(%d): Could get controller info "
4813 "Fail from %s %d\n", instance->unique_id,
4814 __func__, __LINE__);
4815 goto fail_fw_init;
4816 }
4817
bo yang39a98552010-09-22 22:36:29 -04004818 instance->fw_support_ieee = 0;
4819 instance->fw_support_ieee =
4820 (instance->instancet->read_fw_status_reg(reg_set) &
4821 0x04000000);
4822
Bjorn Helgaas1be18252015-07-07 15:52:34 -05004823 dev_notice(&instance->pdev->dev, "megasas_init_mfi: fw_support_ieee=%d",
bo yang39a98552010-09-22 22:36:29 -04004824 instance->fw_support_ieee);
4825
4826 if (instance->fw_support_ieee)
4827 instance->flag_ieee = 1;
4828
adam radfordcd50ba82010-12-21 10:23:23 -08004829 return 0;
4830
4831fail_fw_init:
4832
4833 pci_free_consistent(instance->pdev, reply_q_sz,
4834 instance->reply_queue, instance->reply_queue_h);
4835fail_reply_queue:
4836 megasas_free_cmds(instance);
4837
4838fail_alloc_cmds:
adam radfordcd50ba82010-12-21 10:23:23 -08004839 return 1;
4840}
4841
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05304842/*
4843 * megasas_setup_irqs_msix - register legacy interrupts.
4844 * @instance: Adapter soft state
4845 *
4846 * Do not enable interrupt, only setup ISRs.
4847 *
4848 * Return 0 on success.
4849 */
4850static int
4851megasas_setup_irqs_ioapic(struct megasas_instance *instance)
4852{
4853 struct pci_dev *pdev;
4854
4855 pdev = instance->pdev;
4856 instance->irq_context[0].instance = instance;
4857 instance->irq_context[0].MSIxIndex = 0;
4858 if (request_irq(pdev->irq, instance->instancet->service_isr,
4859 IRQF_SHARED, "megasas", &instance->irq_context[0])) {
4860 dev_err(&instance->pdev->dev,
4861 "Failed to register IRQ from %s %d\n",
4862 __func__, __LINE__);
4863 return -1;
4864 }
4865 return 0;
4866}
4867
4868/**
4869 * megasas_setup_irqs_msix - register MSI-x interrupts.
4870 * @instance: Adapter soft state
4871 * @is_probe: Driver probe check
4872 *
4873 * Do not enable interrupt, only setup ISRs.
4874 *
4875 * Return 0 on success.
4876 */
4877static int
4878megasas_setup_irqs_msix(struct megasas_instance *instance, u8 is_probe)
4879{
4880 int i, j, cpu;
4881 struct pci_dev *pdev;
4882
4883 pdev = instance->pdev;
4884
4885 /* Try MSI-x */
4886 cpu = cpumask_first(cpu_online_mask);
4887 for (i = 0; i < instance->msix_vectors; i++) {
4888 instance->irq_context[i].instance = instance;
4889 instance->irq_context[i].MSIxIndex = i;
4890 if (request_irq(instance->msixentry[i].vector,
4891 instance->instancet->service_isr, 0, "megasas",
4892 &instance->irq_context[i])) {
4893 dev_err(&instance->pdev->dev,
4894 "Failed to register IRQ for vector %d.\n", i);
4895 for (j = 0; j < i; j++) {
4896 if (smp_affinity_enable)
4897 irq_set_affinity_hint(
4898 instance->msixentry[j].vector, NULL);
4899 free_irq(instance->msixentry[j].vector,
4900 &instance->irq_context[j]);
4901 }
4902 /* Retry irq register for IO_APIC*/
4903 instance->msix_vectors = 0;
4904 if (is_probe)
4905 return megasas_setup_irqs_ioapic(instance);
4906 else
4907 return -1;
4908 }
4909 if (smp_affinity_enable) {
4910 if (irq_set_affinity_hint(instance->msixentry[i].vector,
4911 get_cpu_mask(cpu)))
4912 dev_err(&instance->pdev->dev,
4913 "Failed to set affinity hint"
4914 " for cpu %d\n", cpu);
4915 cpu = cpumask_next(cpu, cpu_online_mask);
4916 }
4917 }
4918 return 0;
4919}
4920
4921/*
4922 * megasas_destroy_irqs- unregister interrupts.
4923 * @instance: Adapter soft state
4924 * return: void
4925 */
4926static void
4927megasas_destroy_irqs(struct megasas_instance *instance) {
4928
4929 int i;
4930
4931 if (instance->msix_vectors)
4932 for (i = 0; i < instance->msix_vectors; i++) {
4933 if (smp_affinity_enable)
4934 irq_set_affinity_hint(
4935 instance->msixentry[i].vector, NULL);
4936 free_irq(instance->msixentry[i].vector,
4937 &instance->irq_context[i]);
4938 }
4939 else
4940 free_irq(instance->pdev->irq, &instance->irq_context[0]);
4941}
4942
adam radfordcd50ba82010-12-21 10:23:23 -08004943/**
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05304944 * megasas_setup_jbod_map - setup jbod map for FP seq_number.
4945 * @instance: Adapter soft state
4946 * @is_probe: Driver probe check
4947 *
4948 * Return 0 on success.
4949 */
4950void
4951megasas_setup_jbod_map(struct megasas_instance *instance)
4952{
4953 int i;
4954 struct fusion_context *fusion = instance->ctrl_context;
4955 u32 pd_seq_map_sz;
4956
4957 pd_seq_map_sz = sizeof(struct MR_PD_CFG_SEQ_NUM_SYNC) +
4958 (sizeof(struct MR_PD_CFG_SEQ) * (MAX_PHYSICAL_DEVICES - 1));
4959
4960 if (reset_devices || !fusion ||
4961 !instance->ctrl_info->adapterOperations3.useSeqNumJbodFP) {
4962 dev_info(&instance->pdev->dev,
4963 "Jbod map is not supported %s %d\n",
4964 __func__, __LINE__);
4965 instance->use_seqnum_jbod_fp = false;
4966 return;
4967 }
4968
4969 if (fusion->pd_seq_sync[0])
4970 goto skip_alloc;
4971
4972 for (i = 0; i < JBOD_MAPS_COUNT; i++) {
4973 fusion->pd_seq_sync[i] = dma_alloc_coherent
4974 (&instance->pdev->dev, pd_seq_map_sz,
4975 &fusion->pd_seq_phys[i], GFP_KERNEL);
4976 if (!fusion->pd_seq_sync[i]) {
4977 dev_err(&instance->pdev->dev,
4978 "Failed to allocate memory from %s %d\n",
4979 __func__, __LINE__);
4980 if (i == 1) {
4981 dma_free_coherent(&instance->pdev->dev,
4982 pd_seq_map_sz, fusion->pd_seq_sync[0],
4983 fusion->pd_seq_phys[0]);
4984 fusion->pd_seq_sync[0] = NULL;
4985 }
4986 instance->use_seqnum_jbod_fp = false;
4987 return;
4988 }
4989 }
4990
4991skip_alloc:
4992 if (!megasas_sync_pd_seq_num(instance, false) &&
4993 !megasas_sync_pd_seq_num(instance, true))
4994 instance->use_seqnum_jbod_fp = true;
4995 else
4996 instance->use_seqnum_jbod_fp = false;
4997}
4998
4999/**
adam radfordcd50ba82010-12-21 10:23:23 -08005000 * megasas_init_fw - Initializes the FW
5001 * @instance: Adapter soft state
5002 *
5003 * This is the main function for initializing firmware
5004 */
5005
5006static int megasas_init_fw(struct megasas_instance *instance)
5007{
5008 u32 max_sectors_1;
5009 u32 max_sectors_2;
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305010 u32 tmp_sectors, msix_enable, scratch_pad_2;
Ben Collins11f8a7b2013-09-13 12:46:44 -04005011 resource_size_t base_addr;
adam radfordcd50ba82010-12-21 10:23:23 -08005012 struct megasas_register_set __iomem *reg_set;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305013 struct megasas_ctrl_info *ctrl_info = NULL;
adam radfordcd50ba82010-12-21 10:23:23 -08005014 unsigned long bar_list;
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305015 int i, loop, fw_msix_count = 0;
adam radford229fe472014-03-10 02:51:56 -07005016 struct IOV_111 *iovPtr;
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305017 struct fusion_context *fusion;
5018
5019 fusion = instance->ctrl_context;
adam radfordcd50ba82010-12-21 10:23:23 -08005020
5021 /* Find first memory bar */
5022 bar_list = pci_select_bars(instance->pdev, IORESOURCE_MEM);
Christophe JAILLET51f90392016-08-21 10:28:25 +02005023 instance->bar = find_first_bit(&bar_list, BITS_PER_LONG);
Yinghai Lue7f85162016-08-05 23:37:34 -07005024 if (pci_request_selected_regions(instance->pdev, 1<<instance->bar,
adam radfordcd50ba82010-12-21 10:23:23 -08005025 "megasas: LSI")) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005026 dev_printk(KERN_DEBUG, &instance->pdev->dev, "IO memory region busy!\n");
adam radfordcd50ba82010-12-21 10:23:23 -08005027 return -EBUSY;
5028 }
5029
Ben Collins11f8a7b2013-09-13 12:46:44 -04005030 base_addr = pci_resource_start(instance->pdev, instance->bar);
5031 instance->reg_set = ioremap_nocache(base_addr, 8192);
adam radfordcd50ba82010-12-21 10:23:23 -08005032
5033 if (!instance->reg_set) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005034 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to map IO mem\n");
adam radfordcd50ba82010-12-21 10:23:23 -08005035 goto fail_ioremap;
5036 }
5037
5038 reg_set = instance->reg_set;
5039
5040 switch (instance->pdev->device) {
adam radford9c915a82010-12-21 13:34:31 -08005041 case PCI_DEVICE_ID_LSI_FUSION:
adam radford229fe472014-03-10 02:51:56 -07005042 case PCI_DEVICE_ID_LSI_PLASMA:
adam radford36807e62011-10-08 18:15:06 -07005043 case PCI_DEVICE_ID_LSI_INVADER:
Sumit.Saxena@lsi.com21d3c712013-05-22 12:31:43 +05305044 case PCI_DEVICE_ID_LSI_FURY:
sumit.saxena@avagotech.com90c204b2015-10-15 13:39:44 +05305045 case PCI_DEVICE_ID_LSI_INTRUDER:
5046 case PCI_DEVICE_ID_LSI_INTRUDER_24:
sumit.saxena@avagotech.com7364d342015-10-15 13:39:54 +05305047 case PCI_DEVICE_ID_LSI_CUTLASS_52:
5048 case PCI_DEVICE_ID_LSI_CUTLASS_53:
adam radford9c915a82010-12-21 13:34:31 -08005049 instance->instancet = &megasas_instance_template_fusion;
5050 break;
adam radfordcd50ba82010-12-21 10:23:23 -08005051 case PCI_DEVICE_ID_LSI_SAS1078R:
5052 case PCI_DEVICE_ID_LSI_SAS1078DE:
5053 instance->instancet = &megasas_instance_template_ppc;
5054 break;
5055 case PCI_DEVICE_ID_LSI_SAS1078GEN2:
5056 case PCI_DEVICE_ID_LSI_SAS0079GEN2:
5057 instance->instancet = &megasas_instance_template_gen2;
5058 break;
5059 case PCI_DEVICE_ID_LSI_SAS0073SKINNY:
5060 case PCI_DEVICE_ID_LSI_SAS0071SKINNY:
5061 instance->instancet = &megasas_instance_template_skinny;
5062 break;
5063 case PCI_DEVICE_ID_LSI_SAS1064R:
5064 case PCI_DEVICE_ID_DELL_PERC5:
5065 default:
5066 instance->instancet = &megasas_instance_template_xscale;
5067 break;
5068 }
5069
Sumit.Saxena@lsi.com6431f5d2013-07-16 02:26:05 +05305070 if (megasas_transition_to_ready(instance, 0)) {
5071 atomic_set(&instance->fw_reset_no_pci_access, 1);
5072 instance->instancet->adp_reset
5073 (instance, instance->reg_set);
5074 atomic_set(&instance->fw_reset_no_pci_access, 0);
5075 dev_info(&instance->pdev->dev,
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005076 "FW restarted successfully from %s!\n",
Sumit.Saxena@lsi.com6431f5d2013-07-16 02:26:05 +05305077 __func__);
5078
5079 /*waitting for about 30 second before retry*/
5080 ssleep(30);
5081
5082 if (megasas_transition_to_ready(instance, 0))
5083 goto fail_ready_state;
5084 }
adam radfordcd50ba82010-12-21 10:23:23 -08005085
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305086 /*
5087 * MSI-X host index 0 is common for all adapter.
5088 * It is used for all MPT based Adapters.
5089 */
5090 instance->reply_post_host_index_addr[0] =
Christoph Hellwig8a232bb2015-04-23 16:32:39 +05305091 (u32 __iomem *)((u8 __iomem *)instance->reg_set +
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305092 MPI2_REPLY_POST_HOST_INDEX_OFFSET);
5093
adam radford3f1abce2011-05-11 18:33:47 -07005094 /* Check if MSI-X is supported while in ready state */
5095 msix_enable = (instance->instancet->read_fw_status_reg(reg_set) &
5096 0x4000000) >> 0x1a;
adam radfordc8e858f2011-10-08 18:15:13 -07005097 if (msix_enable && !msix_disable) {
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305098 scratch_pad_2 = readl
5099 (&instance->reg_set->outbound_scratch_pad_2);
adam radfordc8e858f2011-10-08 18:15:13 -07005100 /* Check max MSI-X vectors */
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305101 if (fusion) {
5102 if (fusion->adapter_type == THUNDERBOLT_SERIES) { /* Thunderbolt Series*/
5103 instance->msix_vectors = (scratch_pad_2
5104 & MR_MAX_REPLY_QUEUES_OFFSET) + 1;
5105 fw_msix_count = instance->msix_vectors;
5106 } else { /* Invader series supports more than 8 MSI-x vectors*/
5107 instance->msix_vectors = ((scratch_pad_2
5108 & MR_MAX_REPLY_QUEUES_EXT_OFFSET)
5109 >> MR_MAX_REPLY_QUEUES_EXT_OFFSET_SHIFT) + 1;
Sumit Saxena179ac142016-01-28 21:04:28 +05305110 if (rdpq_enable)
5111 instance->is_rdpq = (scratch_pad_2 & MR_RDPQ_MODE_OFFSET) ?
5112 1 : 0;
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305113 fw_msix_count = instance->msix_vectors;
5114 /* Save 1-15 reply post index address to local memory
5115 * Index 0 is already saved from reg offset
5116 * MPI2_REPLY_POST_HOST_INDEX_OFFSET
5117 */
5118 for (loop = 1; loop < MR_MAX_MSIX_REG_ARRAY; loop++) {
5119 instance->reply_post_host_index_addr[loop] =
5120 (u32 __iomem *)
5121 ((u8 __iomem *)instance->reg_set +
5122 MPI2_SUP_REPLY_POST_HOST_INDEX_OFFSET
5123 + (loop * 0x10));
5124 }
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305125 }
5126 if (msix_vectors)
5127 instance->msix_vectors = min(msix_vectors,
5128 instance->msix_vectors);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305129 } else /* MFI adapters */
adam radfordc8e858f2011-10-08 18:15:13 -07005130 instance->msix_vectors = 1;
5131 /* Don't bother allocating more MSI-X vectors than cpus */
5132 instance->msix_vectors = min(instance->msix_vectors,
5133 (unsigned int)num_online_cpus());
5134 for (i = 0; i < instance->msix_vectors; i++)
5135 instance->msixentry[i].entry = i;
Alexander Gordeev8ae80ed2014-08-18 08:01:44 +02005136 i = pci_enable_msix_range(instance->pdev, instance->msixentry,
5137 1, instance->msix_vectors);
Jiang Liuc12de882014-11-03 20:44:20 +08005138 if (i > 0)
Alexander Gordeev8ae80ed2014-08-18 08:01:44 +02005139 instance->msix_vectors = i;
5140 else
adam radfordc8e858f2011-10-08 18:15:13 -07005141 instance->msix_vectors = 0;
5142 }
adam radford3f1abce2011-05-11 18:33:47 -07005143
Tomas Henzl258c3af2015-06-02 16:09:46 +05305144 dev_info(&instance->pdev->dev,
5145 "firmware supports msix\t: (%d)", fw_msix_count);
5146 dev_info(&instance->pdev->dev,
5147 "current msix/online cpus\t: (%d/%d)\n",
5148 instance->msix_vectors, (unsigned int)num_online_cpus());
Sumit Saxena179ac142016-01-28 21:04:28 +05305149 dev_info(&instance->pdev->dev,
5150 "RDPQ mode\t: (%s)\n", instance->is_rdpq ? "enabled" : "disabled");
Tomas Henzl258c3af2015-06-02 16:09:46 +05305151
sumit.saxena@avagotech.com91626c22015-10-15 13:40:34 +05305152 tasklet_init(&instance->isr_tasklet, instance->instancet->tasklet,
5153 (unsigned long)instance);
5154
Tomas Henzl258c3af2015-06-02 16:09:46 +05305155 if (instance->msix_vectors ?
5156 megasas_setup_irqs_msix(instance, 1) :
5157 megasas_setup_irqs_ioapic(instance))
5158 goto fail_setup_irqs;
5159
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305160 instance->ctrl_info = kzalloc(sizeof(struct megasas_ctrl_info),
5161 GFP_KERNEL);
5162 if (instance->ctrl_info == NULL)
5163 goto fail_init_adapter;
5164
5165 /*
5166 * Below are default value for legacy Firmware.
5167 * non-fusion based controllers
5168 */
5169 instance->fw_supported_vd_count = MAX_LOGICAL_DRIVES;
5170 instance->fw_supported_pd_count = MAX_PHYSICAL_DEVICES;
adam radfordcd50ba82010-12-21 10:23:23 -08005171 /* Get operational params, sge flags, send init cmd to controller */
5172 if (instance->instancet->init_adapter(instance))
adam radfordeb1b1232011-02-24 20:55:56 -08005173 goto fail_init_adapter;
adam radfordcd50ba82010-12-21 10:23:23 -08005174
Tomas Henzl258c3af2015-06-02 16:09:46 +05305175
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305176 instance->instancet->enable_intr(instance);
adam radfordcd50ba82010-12-21 10:23:23 -08005177
Andy Lutomirski13f30772016-05-03 10:24:31 -07005178 dev_info(&instance->pdev->dev, "INIT adapter done\n");
adam radfordcd50ba82010-12-21 10:23:23 -08005179
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05305180 megasas_setup_jbod_map(instance);
5181
bo yang39a98552010-09-22 22:36:29 -04005182 /** for passthrough
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005183 * the following function will get the PD LIST.
5184 */
5185 memset(instance->pd_list, 0,
Yang, Bo81e403c2009-10-06 14:27:54 -06005186 (MEGASAS_MAX_PD * sizeof(struct megasas_pd_list)));
Hannes Reinecke58968fc2014-01-16 11:25:36 +01005187 if (megasas_get_pd_list(instance) < 0) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005188 dev_err(&instance->pdev->dev, "failed to get PD list\n");
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305189 goto fail_get_pd_list;
Hannes Reinecke58968fc2014-01-16 11:25:36 +01005190 }
Yang, Bo81e403c2009-10-06 14:27:54 -06005191
Yang, Bobdc6fb82009-12-06 08:30:19 -07005192 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
adam radford21c9e162013-09-06 15:27:14 -07005193 if (megasas_ld_list_query(instance,
5194 MR_LD_QUERY_TYPE_EXPOSED_TO_HOST))
5195 megasas_get_ld_list(instance);
Yang, Bobdc6fb82009-12-06 08:30:19 -07005196
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005197 /*
5198 * Compute the max allowed sectors per IO: The controller info has two
5199 * limits on max sectors. Driver should use the minimum of these two.
5200 *
5201 * 1 << stripe_sz_ops.min = max sectors per strip
5202 *
5203 * Note that older firmwares ( < FW ver 30) didn't report information
5204 * to calculate max_sectors_1. So the number ended up as zero always.
5205 */
bo yang14faea92007-11-09 04:14:00 -05005206 tmp_sectors = 0;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305207 ctrl_info = instance->ctrl_info;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005208
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305209 max_sectors_1 = (1 << ctrl_info->stripe_sz_ops.min) *
5210 le16_to_cpu(ctrl_info->max_strips_per_io);
5211 max_sectors_2 = le32_to_cpu(ctrl_info->max_request_size);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005212
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005213 tmp_sectors = min_t(u32, max_sectors_1, max_sectors_2);
Sumit.Saxena@lsi.com404a8a12013-05-22 12:35:33 +05305214
Sumit Saxena8f67c8c2016-01-28 21:14:25 +05305215 instance->peerIsPresent = ctrl_info->cluster.peerIsPresent;
5216 instance->passive = ctrl_info->cluster.passive;
5217 memcpy(instance->clusterId, ctrl_info->clusterId, sizeof(instance->clusterId));
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305218 instance->UnevenSpanSupport =
5219 ctrl_info->adapterOperations2.supportUnevenSpans;
5220 if (instance->UnevenSpanSupport) {
5221 struct fusion_context *fusion = instance->ctrl_context;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305222 if (MR_ValidateMapInfo(instance))
5223 fusion->fast_path_io = 1;
5224 else
5225 fusion->fast_path_io = 0;
5226
5227 }
5228 if (ctrl_info->host_interface.SRIOV) {
sumit.saxena@avagotech.com92bb6502015-08-31 17:24:11 +05305229 instance->requestorId = ctrl_info->iov.requestorId;
5230 if (instance->pdev->device == PCI_DEVICE_ID_LSI_PLASMA) {
5231 if (!ctrl_info->adapterOperations2.activePassive)
5232 instance->PlasmaFW111 = 1;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305233
sumit.saxena@avagotech.com92bb6502015-08-31 17:24:11 +05305234 dev_info(&instance->pdev->dev, "SR-IOV: firmware type: %s\n",
5235 instance->PlasmaFW111 ? "1.11" : "new");
5236
5237 if (instance->PlasmaFW111) {
5238 iovPtr = (struct IOV_111 *)
5239 ((unsigned char *)ctrl_info + IOV_111_OFFSET);
5240 instance->requestorId = iovPtr->requestorId;
5241 }
Sumit.Saxena@lsi.com404a8a12013-05-22 12:35:33 +05305242 }
sumit.saxena@avagotech.com92bb6502015-08-31 17:24:11 +05305243 dev_info(&instance->pdev->dev, "SRIOV: VF requestorId %d\n",
5244 instance->requestorId);
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305245 }
Sumit.Saxena@lsi.combc93d422013-05-22 12:35:04 +05305246
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305247 instance->crash_dump_fw_support =
5248 ctrl_info->adapterOperations3.supportCrashDump;
5249 instance->crash_dump_drv_support =
5250 (instance->crash_dump_fw_support &&
5251 instance->crash_dump_buf);
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305252 if (instance->crash_dump_drv_support)
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305253 megasas_set_crash_dump_params(instance,
5254 MR_CRASH_BUF_TURN_OFF);
adam radford229fe472014-03-10 02:51:56 -07005255
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305256 else {
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305257 if (instance->crash_dump_buf)
5258 pci_free_consistent(instance->pdev,
5259 CRASH_DMA_BUF_SIZE,
5260 instance->crash_dump_buf,
5261 instance->crash_dump_h);
5262 instance->crash_dump_buf = NULL;
bo yang14faea92007-11-09 04:14:00 -05005263 }
Sumit.Saxena@avagotech.com7497cde2015-01-05 20:06:03 +05305264
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305265
5266 dev_info(&instance->pdev->dev,
5267 "pci id\t\t: (0x%04x)/(0x%04x)/(0x%04x)/(0x%04x)\n",
5268 le16_to_cpu(ctrl_info->pci.vendor_id),
5269 le16_to_cpu(ctrl_info->pci.device_id),
5270 le16_to_cpu(ctrl_info->pci.sub_vendor_id),
5271 le16_to_cpu(ctrl_info->pci.sub_device_id));
5272 dev_info(&instance->pdev->dev, "unevenspan support : %s\n",
5273 instance->UnevenSpanSupport ? "yes" : "no");
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305274 dev_info(&instance->pdev->dev, "firmware crash dump : %s\n",
5275 instance->crash_dump_drv_support ? "yes" : "no");
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05305276 dev_info(&instance->pdev->dev, "jbod sync map : %s\n",
5277 instance->use_seqnum_jbod_fp ? "yes" : "no");
Sumit.Saxena@avagotech.comd88da092015-04-23 16:31:09 +05305278
5279
bo yang14faea92007-11-09 04:14:00 -05005280 instance->max_sectors_per_req = instance->max_num_sge *
sumit.saxena@avagotech.com357ae962015-10-15 13:40:04 +05305281 SGE_BUFFER_SIZE / 512;
bo yang14faea92007-11-09 04:14:00 -05005282 if (tmp_sectors && (instance->max_sectors_per_req > tmp_sectors))
5283 instance->max_sectors_per_req = tmp_sectors;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005284
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05305285 /* Check for valid throttlequeuedepth module parameter */
5286 if (throttlequeuedepth &&
5287 throttlequeuedepth <= instance->max_scsi_cmds)
5288 instance->throttlequeuedepth = throttlequeuedepth;
5289 else
5290 instance->throttlequeuedepth =
5291 MEGASAS_THROTTLE_QUEUE_DEPTH;
5292
Sumit Saxenae3d178c2016-01-28 21:04:34 +05305293 if (resetwaittime > MEGASAS_RESET_WAIT_TIME)
5294 resetwaittime = MEGASAS_RESET_WAIT_TIME;
5295
5296 if ((scmd_timeout < 10) || (scmd_timeout > MEGASAS_DEFAULT_CMD_TIMEOUT))
5297 scmd_timeout = MEGASAS_DEFAULT_CMD_TIMEOUT;
bo yangad84db22007-11-09 04:40:16 -05005298
adam radford229fe472014-03-10 02:51:56 -07005299 /* Launch SR-IOV heartbeat timer */
5300 if (instance->requestorId) {
5301 if (!megasas_sriov_start_heartbeat(instance, 1))
5302 megasas_start_timer(instance,
5303 &instance->sriov_heartbeat_timer,
5304 megasas_sriov_heartbeat_handler,
5305 MEGASAS_SRIOV_HEARTBEAT_INTERVAL_VF);
5306 else
5307 instance->skip_heartbeat_timer_del = 1;
5308 }
5309
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005310 return 0;
5311
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305312fail_get_pd_list:
5313 instance->instancet->disable_intr(instance);
adam radfordeb1b1232011-02-24 20:55:56 -08005314fail_init_adapter:
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305315 megasas_destroy_irqs(instance);
5316fail_setup_irqs:
5317 if (instance->msix_vectors)
5318 pci_disable_msix(instance->pdev);
5319 instance->msix_vectors = 0;
adam radfordcd50ba82010-12-21 10:23:23 -08005320fail_ready_state:
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305321 kfree(instance->ctrl_info);
5322 instance->ctrl_info = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005323 iounmap(instance->reg_set);
5324
5325 fail_ioremap:
Yinghai Lue7f85162016-08-05 23:37:34 -07005326 pci_release_selected_regions(instance->pdev, 1<<instance->bar);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005327
5328 return -EINVAL;
5329}
5330
5331/**
5332 * megasas_release_mfi - Reverses the FW initialization
Geert Uytterhoeven4b63b282015-03-03 11:58:07 +01005333 * @instance: Adapter soft state
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005334 */
5335static void megasas_release_mfi(struct megasas_instance *instance)
5336{
adam radford9c915a82010-12-21 13:34:31 -08005337 u32 reply_q_sz = sizeof(u32) *(instance->max_mfi_cmds + 1);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005338
adam radford9c915a82010-12-21 13:34:31 -08005339 if (instance->reply_queue)
5340 pci_free_consistent(instance->pdev, reply_q_sz,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005341 instance->reply_queue, instance->reply_queue_h);
5342
5343 megasas_free_cmds(instance);
5344
5345 iounmap(instance->reg_set);
5346
Yinghai Lue7f85162016-08-05 23:37:34 -07005347 pci_release_selected_regions(instance->pdev, 1<<instance->bar);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005348}
5349
5350/**
5351 * megasas_get_seq_num - Gets latest event sequence numbers
5352 * @instance: Adapter soft state
5353 * @eli: FW event log sequence numbers information
5354 *
5355 * FW maintains a log of all events in a non-volatile area. Upper layers would
5356 * usually find out the latest sequence number of the events, the seq number at
5357 * the boot etc. They would "read" all the events below the latest seq number
5358 * by issuing a direct fw cmd (DCMD). For the future events (beyond latest seq
5359 * number), they would subsribe to AEN (asynchronous event notification) and
5360 * wait for the events to happen.
5361 */
5362static int
5363megasas_get_seq_num(struct megasas_instance *instance,
5364 struct megasas_evt_log_info *eli)
5365{
5366 struct megasas_cmd *cmd;
5367 struct megasas_dcmd_frame *dcmd;
5368 struct megasas_evt_log_info *el_info;
5369 dma_addr_t el_info_h = 0;
5370
5371 cmd = megasas_get_cmd(instance);
5372
5373 if (!cmd) {
5374 return -ENOMEM;
5375 }
5376
5377 dcmd = &cmd->frame->dcmd;
5378 el_info = pci_alloc_consistent(instance->pdev,
5379 sizeof(struct megasas_evt_log_info),
5380 &el_info_h);
5381
5382 if (!el_info) {
5383 megasas_return_cmd(instance, cmd);
5384 return -ENOMEM;
5385 }
5386
5387 memset(el_info, 0, sizeof(*el_info));
5388 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
5389
5390 dcmd->cmd = MFI_CMD_DCMD;
5391 dcmd->cmd_status = 0x0;
5392 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305393 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005394 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07005395 dcmd->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305396 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct megasas_evt_log_info));
5397 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_EVENT_GET_INFO);
5398 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(el_info_h);
5399 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct megasas_evt_log_info));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005400
Sumit Saxena6d40afb2016-01-28 21:04:23 +05305401 if (megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS) ==
5402 DCMD_SUCCESS) {
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05305403 /*
5404 * Copy the data back into callers buffer
5405 */
Christoph Hellwig48100b02015-04-23 16:33:24 +05305406 eli->newest_seq_num = el_info->newest_seq_num;
5407 eli->oldest_seq_num = el_info->oldest_seq_num;
5408 eli->clear_seq_num = el_info->clear_seq_num;
5409 eli->shutdown_seq_num = el_info->shutdown_seq_num;
5410 eli->boot_seq_num = el_info->boot_seq_num;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05305411 } else
5412 dev_err(&instance->pdev->dev, "DCMD failed "
5413 "from %s\n", __func__);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005414
5415 pci_free_consistent(instance->pdev, sizeof(struct megasas_evt_log_info),
5416 el_info, el_info_h);
5417
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05305418 megasas_return_cmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005419
5420 return 0;
5421}
5422
5423/**
5424 * megasas_register_aen - Registers for asynchronous event notification
5425 * @instance: Adapter soft state
5426 * @seq_num: The starting sequence number
5427 * @class_locale: Class of the event
5428 *
5429 * This function subscribes for AEN for events beyond the @seq_num. It requests
5430 * to be notified if and only if the event is of type @class_locale
5431 */
5432static int
5433megasas_register_aen(struct megasas_instance *instance, u32 seq_num,
5434 u32 class_locale_word)
5435{
5436 int ret_val;
5437 struct megasas_cmd *cmd;
5438 struct megasas_dcmd_frame *dcmd;
5439 union megasas_evt_class_locale curr_aen;
5440 union megasas_evt_class_locale prev_aen;
5441
5442 /*
5443 * If there an AEN pending already (aen_cmd), check if the
5444 * class_locale of that pending AEN is inclusive of the new
5445 * AEN request we currently have. If it is, then we don't have
5446 * to do anything. In other words, whichever events the current
5447 * AEN request is subscribing to, have already been subscribed
5448 * to.
5449 *
5450 * If the old_cmd is _not_ inclusive, then we have to abort
5451 * that command, form a class_locale that is superset of both
5452 * old and current and re-issue to the FW
5453 */
5454
5455 curr_aen.word = class_locale_word;
5456
5457 if (instance->aen_cmd) {
5458
Christoph Hellwiga9555532015-04-23 16:34:24 +05305459 prev_aen.word =
5460 le32_to_cpu(instance->aen_cmd->frame->dcmd.mbox.w[1]);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005461
5462 /*
5463 * A class whose enum value is smaller is inclusive of all
5464 * higher values. If a PROGRESS (= -1) was previously
5465 * registered, then a new registration requests for higher
5466 * classes need not be sent to FW. They are automatically
5467 * included.
5468 *
5469 * Locale numbers don't have such hierarchy. They are bitmap
5470 * values
5471 */
5472 if ((prev_aen.members.class <= curr_aen.members.class) &&
Sumit.Saxena@lsi.com3993a862013-09-16 15:18:06 +05305473 !((prev_aen.members.locale & curr_aen.members.locale) ^
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005474 curr_aen.members.locale)) {
5475 /*
5476 * Previously issued event registration includes
5477 * current request. Nothing to do.
5478 */
5479 return 0;
5480 } else {
Sumit.Saxena@lsi.com3993a862013-09-16 15:18:06 +05305481 curr_aen.members.locale |= prev_aen.members.locale;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005482
5483 if (prev_aen.members.class < curr_aen.members.class)
5484 curr_aen.members.class = prev_aen.members.class;
5485
5486 instance->aen_cmd->abort_aen = 1;
5487 ret_val = megasas_issue_blocked_abort_cmd(instance,
5488 instance->
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05305489 aen_cmd, 30);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005490
5491 if (ret_val) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005492 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to abort "
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005493 "previous AEN command\n");
5494 return ret_val;
5495 }
5496 }
5497 }
5498
5499 cmd = megasas_get_cmd(instance);
5500
5501 if (!cmd)
5502 return -ENOMEM;
5503
5504 dcmd = &cmd->frame->dcmd;
5505
5506 memset(instance->evt_detail, 0, sizeof(struct megasas_evt_detail));
5507
5508 /*
5509 * Prepare DCMD for aen registration
5510 */
5511 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
5512
5513 dcmd->cmd = MFI_CMD_DCMD;
5514 dcmd->cmd_status = 0x0;
5515 dcmd->sge_count = 1;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305516 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_READ);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005517 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07005518 dcmd->pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305519 dcmd->data_xfer_len = cpu_to_le32(sizeof(struct megasas_evt_detail));
5520 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_EVENT_WAIT);
5521 dcmd->mbox.w[0] = cpu_to_le32(seq_num);
bo yang39a98552010-09-22 22:36:29 -04005522 instance->last_seq_num = seq_num;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305523 dcmd->mbox.w[1] = cpu_to_le32(curr_aen.word);
5524 dcmd->sgl.sge32[0].phys_addr = cpu_to_le32(instance->evt_detail_h);
5525 dcmd->sgl.sge32[0].length = cpu_to_le32(sizeof(struct megasas_evt_detail));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005526
Yang, Bof4c9a132009-10-06 14:43:28 -06005527 if (instance->aen_cmd != NULL) {
5528 megasas_return_cmd(instance, cmd);
5529 return 0;
5530 }
5531
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005532 /*
5533 * Store reference to the cmd used to register for AEN. When an
5534 * application wants us to register for AEN, we have to abort this
5535 * cmd and re-register with a new EVENT LOCALE supplied by that app
5536 */
5537 instance->aen_cmd = cmd;
5538
5539 /*
5540 * Issue the aen registration frame
5541 */
adam radford9c915a82010-12-21 13:34:31 -08005542 instance->instancet->issue_dcmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005543
5544 return 0;
5545}
5546
5547/**
5548 * megasas_start_aen - Subscribes to AEN during driver load time
5549 * @instance: Adapter soft state
5550 */
5551static int megasas_start_aen(struct megasas_instance *instance)
5552{
5553 struct megasas_evt_log_info eli;
5554 union megasas_evt_class_locale class_locale;
5555
5556 /*
5557 * Get the latest sequence number from FW
5558 */
5559 memset(&eli, 0, sizeof(eli));
5560
5561 if (megasas_get_seq_num(instance, &eli))
5562 return -1;
5563
5564 /*
5565 * Register AEN with FW for latest sequence number plus 1
5566 */
5567 class_locale.members.reserved = 0;
5568 class_locale.members.locale = MR_EVT_LOCALE_ALL;
5569 class_locale.members.class = MR_EVT_CLASS_DEBUG;
5570
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305571 return megasas_register_aen(instance,
Christoph Hellwig48100b02015-04-23 16:33:24 +05305572 le32_to_cpu(eli.newest_seq_num) + 1,
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305573 class_locale.word);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005574}
5575
5576/**
5577 * megasas_io_attach - Attaches this driver to SCSI mid-layer
5578 * @instance: Adapter soft state
5579 */
5580static int megasas_io_attach(struct megasas_instance *instance)
5581{
5582 struct Scsi_Host *host = instance->host;
5583
5584 /*
5585 * Export parameters required by SCSI mid-layer
5586 */
5587 host->irq = instance->pdev->irq;
5588 host->unique_id = instance->unique_id;
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05305589 host->can_queue = instance->max_scsi_cmds;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005590 host->this_id = instance->init_id;
5591 host->sg_tablesize = instance->max_num_sge;
adam radford42a8d2b2011-02-24 20:57:09 -08005592
5593 if (instance->fw_support_ieee)
5594 instance->max_sectors_per_req = MEGASAS_MAX_SECTORS_IEEE;
5595
Yang, Bo1fd10682010-10-12 07:18:50 -06005596 /*
5597 * Check if the module parameter value for max_sectors can be used
5598 */
5599 if (max_sectors && max_sectors < instance->max_sectors_per_req)
5600 instance->max_sectors_per_req = max_sectors;
5601 else {
5602 if (max_sectors) {
5603 if (((instance->pdev->device ==
5604 PCI_DEVICE_ID_LSI_SAS1078GEN2) ||
5605 (instance->pdev->device ==
5606 PCI_DEVICE_ID_LSI_SAS0079GEN2)) &&
5607 (max_sectors <= MEGASAS_MAX_SECTORS)) {
5608 instance->max_sectors_per_req = max_sectors;
5609 } else {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005610 dev_info(&instance->pdev->dev, "max_sectors should be > 0"
Yang, Bo1fd10682010-10-12 07:18:50 -06005611 "and <= %d (or < 1MB for GEN2 controller)\n",
5612 instance->max_sectors_per_req);
5613 }
5614 }
5615 }
5616
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005617 host->max_sectors = instance->max_sectors_per_req;
adam radford9c915a82010-12-21 13:34:31 -08005618 host->cmd_per_lun = MEGASAS_DEFAULT_CMD_PER_LUN;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005619 host->max_channel = MEGASAS_MAX_CHANNELS - 1;
5620 host->max_id = MEGASAS_MAX_DEV_PER_CHANNEL;
5621 host->max_lun = MEGASAS_MAX_LUN;
Joshua Giles122da302006-02-03 15:34:17 -08005622 host->max_cmd_len = 16;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005623
5624 /*
5625 * Notify the mid-layer about the new controller
5626 */
5627 if (scsi_add_host(host, &instance->pdev->dev)) {
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05305628 dev_err(&instance->pdev->dev,
5629 "Failed to add host from %s %d\n",
5630 __func__, __LINE__);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005631 return -ENODEV;
5632 }
5633
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005634 return 0;
5635}
5636
bo yang31ea7082007-11-07 12:09:50 -05005637static int
5638megasas_set_dma_mask(struct pci_dev *pdev)
5639{
5640 /*
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005641 * All our controllers are capable of performing 64-bit DMA
bo yang31ea7082007-11-07 12:09:50 -05005642 */
5643 if (IS_DMA64) {
Yang Hongyang6a355282009-04-06 19:01:13 -07005644 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) {
bo yang31ea7082007-11-07 12:09:50 -05005645
Yang Hongyang284901a2009-04-06 19:01:15 -07005646 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
bo yang31ea7082007-11-07 12:09:50 -05005647 goto fail_set_dma_mask;
5648 }
5649 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07005650 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
bo yang31ea7082007-11-07 12:09:50 -05005651 goto fail_set_dma_mask;
5652 }
Sumit.Saxena@lsi.com46de63e22014-02-12 23:38:44 +05305653 /*
5654 * Ensure that all data structures are allocated in 32-bit
5655 * memory.
5656 */
5657 if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) {
5658 /* Try 32bit DMA mask and 32 bit Consistent dma mask */
5659 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))
5660 && !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)))
5661 dev_info(&pdev->dev, "set 32bit DMA mask"
5662 "and 32 bit consistent mask\n");
5663 else
5664 goto fail_set_dma_mask;
5665 }
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05305666
bo yang31ea7082007-11-07 12:09:50 -05005667 return 0;
5668
5669fail_set_dma_mask:
5670 return 1;
5671}
5672
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005673/**
5674 * megasas_probe_one - PCI hotplug entry point
5675 * @pdev: PCI device structure
adam radford0d490162010-12-14 19:17:17 -08005676 * @id: PCI ids of supported hotplugged adapter
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005677 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005678static int megasas_probe_one(struct pci_dev *pdev,
5679 const struct pci_device_id *id)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005680{
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305681 int rval, pos;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005682 struct Scsi_Host *host;
5683 struct megasas_instance *instance;
adam radford66192dfe2011-02-24 20:56:28 -08005684 u16 control = 0;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305685 struct fusion_context *fusion = NULL;
adam radford66192dfe2011-02-24 20:56:28 -08005686
5687 /* Reset MSI-X in the kdump kernel */
5688 if (reset_devices) {
5689 pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
5690 if (pos) {
Bjorn Helgaas99369062013-04-17 18:08:44 -06005691 pci_read_config_word(pdev, pos + PCI_MSIX_FLAGS,
adam radford66192dfe2011-02-24 20:56:28 -08005692 &control);
5693 if (control & PCI_MSIX_FLAGS_ENABLE) {
5694 dev_info(&pdev->dev, "resetting MSI-X\n");
5695 pci_write_config_word(pdev,
Bjorn Helgaas99369062013-04-17 18:08:44 -06005696 pos + PCI_MSIX_FLAGS,
adam radford66192dfe2011-02-24 20:56:28 -08005697 control &
5698 ~PCI_MSIX_FLAGS_ENABLE);
5699 }
5700 }
5701 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005702
5703 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005704 * PCI prepping: enable device set bus mastering and dma mask
5705 */
Noriyuki Fujiiaeab3fd2009-11-20 16:27:20 +09005706 rval = pci_enable_device_mem(pdev);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005707
5708 if (rval) {
5709 return rval;
5710 }
5711
5712 pci_set_master(pdev);
5713
bo yang31ea7082007-11-07 12:09:50 -05005714 if (megasas_set_dma_mask(pdev))
5715 goto fail_set_dma_mask;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005716
5717 host = scsi_host_alloc(&megasas_template,
5718 sizeof(struct megasas_instance));
5719
5720 if (!host) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005721 dev_printk(KERN_DEBUG, &pdev->dev, "scsi_host_alloc failed\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005722 goto fail_alloc_instance;
5723 }
5724
5725 instance = (struct megasas_instance *)host->hostdata;
5726 memset(instance, 0, sizeof(*instance));
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005727 atomic_set(&instance->fw_reset_no_pci_access, 0);
adam radford9c915a82010-12-21 13:34:31 -08005728 instance->pdev = pdev;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005729
adam radford9c915a82010-12-21 13:34:31 -08005730 switch (instance->pdev->device) {
5731 case PCI_DEVICE_ID_LSI_FUSION:
adam radford229fe472014-03-10 02:51:56 -07005732 case PCI_DEVICE_ID_LSI_PLASMA:
adam radford36807e62011-10-08 18:15:06 -07005733 case PCI_DEVICE_ID_LSI_INVADER:
Sumit.Saxena@lsi.com21d3c712013-05-22 12:31:43 +05305734 case PCI_DEVICE_ID_LSI_FURY:
sumit.saxena@avagotech.com90c204b2015-10-15 13:39:44 +05305735 case PCI_DEVICE_ID_LSI_INTRUDER:
5736 case PCI_DEVICE_ID_LSI_INTRUDER_24:
sumit.saxena@avagotech.com7364d342015-10-15 13:39:54 +05305737 case PCI_DEVICE_ID_LSI_CUTLASS_52:
5738 case PCI_DEVICE_ID_LSI_CUTLASS_53:
adam radford9c915a82010-12-21 13:34:31 -08005739 {
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305740 instance->ctrl_context_pages =
5741 get_order(sizeof(struct fusion_context));
5742 instance->ctrl_context = (void *)__get_free_pages(GFP_KERNEL,
5743 instance->ctrl_context_pages);
adam radford9c915a82010-12-21 13:34:31 -08005744 if (!instance->ctrl_context) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005745 dev_printk(KERN_DEBUG, &pdev->dev, "Failed to allocate "
adam radford9c915a82010-12-21 13:34:31 -08005746 "memory for Fusion context info\n");
5747 goto fail_alloc_dma_buf;
5748 }
5749 fusion = instance->ctrl_context;
Sumit.Saxena@avagotech.comd009b572014-11-17 15:24:13 +05305750 memset(fusion, 0,
5751 ((1 << PAGE_SHIFT) << instance->ctrl_context_pages));
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305752 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_FUSION) ||
5753 (instance->pdev->device == PCI_DEVICE_ID_LSI_PLASMA))
5754 fusion->adapter_type = THUNDERBOLT_SERIES;
5755 else
5756 fusion->adapter_type = INVADER_SERIES;
adam radford9c915a82010-12-21 13:34:31 -08005757 }
5758 break;
5759 default: /* For all other supported controllers */
5760
5761 instance->producer =
5762 pci_alloc_consistent(pdev, sizeof(u32),
5763 &instance->producer_h);
5764 instance->consumer =
5765 pci_alloc_consistent(pdev, sizeof(u32),
5766 &instance->consumer_h);
5767
5768 if (!instance->producer || !instance->consumer) {
Colin Ian King4086eae52016-09-12 13:42:12 +01005769 dev_printk(KERN_DEBUG, &pdev->dev, "Failed to allocate "
adam radford9c915a82010-12-21 13:34:31 -08005770 "memory for producer, consumer\n");
5771 goto fail_alloc_dma_buf;
5772 }
5773
5774 *instance->producer = 0;
5775 *instance->consumer = 0;
5776 break;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005777 }
5778
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05305779 /* Crash dump feature related initialisation*/
5780 instance->drv_buf_index = 0;
5781 instance->drv_buf_alloc = 0;
5782 instance->crash_dump_fw_support = 0;
5783 instance->crash_dump_app_support = 0;
5784 instance->fw_crash_state = UNAVAILABLE;
5785 spin_lock_init(&instance->crashdump_lock);
5786 instance->crash_dump_buf = NULL;
5787
Yang, Boc3518832009-10-06 14:18:02 -06005788 megasas_poll_wait_aen = 0;
Yang, Bof4c9a132009-10-06 14:43:28 -06005789 instance->flag_ieee = 0;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06005790 instance->ev = NULL;
bo yang39a98552010-09-22 22:36:29 -04005791 instance->issuepend_done = 1;
Sumit Saxena8a01a412016-01-28 21:04:32 +05305792 atomic_set(&instance->adprecovery, MEGASAS_HBA_OPERATIONAL);
Sumit.Saxena@lsi.com404a8a12013-05-22 12:35:33 +05305793 instance->is_imr = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005794
5795 instance->evt_detail = pci_alloc_consistent(pdev,
5796 sizeof(struct
5797 megasas_evt_detail),
5798 &instance->evt_detail_h);
5799
5800 if (!instance->evt_detail) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005801 dev_printk(KERN_DEBUG, &pdev->dev, "Failed to allocate memory for "
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005802 "event detail structure\n");
5803 goto fail_alloc_dma_buf;
5804 }
5805
Sumit Saxenac3e385a2016-04-15 00:23:30 -07005806 if (!reset_devices) {
5807 instance->system_info_buf = pci_zalloc_consistent(pdev,
5808 sizeof(struct MR_DRV_SYSTEM_INFO),
5809 &instance->system_info_h);
5810 if (!instance->system_info_buf)
5811 dev_info(&instance->pdev->dev, "Can't allocate system info buffer\n");
Sumit Saxena2216c302016-01-28 21:04:26 +05305812
Sumit Saxenac3e385a2016-04-15 00:23:30 -07005813 instance->pd_info = pci_alloc_consistent(pdev,
5814 sizeof(struct MR_PD_INFO), &instance->pd_info_h);
5815
5816 if (!instance->pd_info)
5817 dev_err(&instance->pdev->dev, "Failed to alloc mem for pd_info\n");
5818
5819 instance->crash_dump_buf = pci_alloc_consistent(pdev,
5820 CRASH_DMA_BUF_SIZE,
5821 &instance->crash_dump_h);
5822 if (!instance->crash_dump_buf)
5823 dev_err(&pdev->dev, "Can't allocate Firmware "
5824 "crash dump DMA buffer\n");
5825 }
Sumit Saxena2216c302016-01-28 21:04:26 +05305826
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005827 /*
5828 * Initialize locks and queues
5829 */
5830 INIT_LIST_HEAD(&instance->cmd_pool);
bo yang39a98552010-09-22 22:36:29 -04005831 INIT_LIST_HEAD(&instance->internal_reset_pending_q);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005832
Sumant Patroe4a082c2006-05-30 12:03:37 -07005833 atomic_set(&instance->fw_outstanding,0);
5834
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005835 init_waitqueue_head(&instance->int_cmd_wait_q);
5836 init_waitqueue_head(&instance->abort_cmd_wait_q);
5837
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05305838 spin_lock_init(&instance->mfi_pool_lock);
bo yang39a98552010-09-22 22:36:29 -04005839 spin_lock_init(&instance->hba_lock);
bo yang7343eb62007-11-09 04:35:44 -05005840 spin_lock_init(&instance->completion_lock);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005841
adam radford9c915a82010-12-21 13:34:31 -08005842 mutex_init(&instance->reset_mutex);
Sumit Saxena2216c302016-01-28 21:04:26 +05305843 mutex_init(&instance->hba_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005844
5845 /*
5846 * Initialize PCI related and misc parameters
5847 */
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005848 instance->host = host;
5849 instance->unique_id = pdev->bus->number << 8 | pdev->devfn;
5850 instance->init_id = MEGASAS_DEFAULT_INIT_ID;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05305851 instance->ctrl_info = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005852
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05305853
Yang, Bo7bebf5c2009-10-06 14:40:58 -06005854 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
Sumit.Saxena@avagotech.comae09a6c2015-01-05 20:06:23 +05305855 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY))
Yang, Bof4c9a132009-10-06 14:43:28 -06005856 instance->flag_ieee = 1;
Yang, Bo7bebf5c2009-10-06 14:40:58 -06005857
Sumant Patro658dced2006-10-03 13:09:14 -07005858 megasas_dbg_lvl = 0;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07005859 instance->flag = 0;
Yang, Bo0c79e682009-10-06 14:47:35 -06005860 instance->unload = 1;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07005861 instance->last_time = 0;
bo yang39a98552010-09-22 22:36:29 -04005862 instance->disableOnlineCtrlReset = 1;
Sumit.Saxena@lsi.combc93d422013-05-22 12:35:04 +05305863 instance->UnevenSpanSupport = 0;
bo yang39a98552010-09-22 22:36:29 -04005864
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305865 if (instance->ctrl_context) {
adam radford9c915a82010-12-21 13:34:31 -08005866 INIT_WORK(&instance->work_init, megasas_fusion_ocr_wq);
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05305867 INIT_WORK(&instance->crash_init, megasas_fusion_crash_dump_wq);
5868 } else
adam radford9c915a82010-12-21 13:34:31 -08005869 INIT_WORK(&instance->work_init, process_fw_state_change_wq);
Sumant Patro658dced2006-10-03 13:09:14 -07005870
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005871 /*
adam radford0a770662011-02-24 20:56:12 -08005872 * Initialize MFI Firmware
5873 */
5874 if (megasas_init_fw(instance))
5875 goto fail_init_mfi;
5876
adam radford229fe472014-03-10 02:51:56 -07005877 if (instance->requestorId) {
5878 if (instance->PlasmaFW111) {
5879 instance->vf_affiliation_111 =
5880 pci_alloc_consistent(pdev, sizeof(struct MR_LD_VF_AFFILIATION_111),
5881 &instance->vf_affiliation_111_h);
5882 if (!instance->vf_affiliation_111)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005883 dev_warn(&pdev->dev, "Can't allocate "
adam radford229fe472014-03-10 02:51:56 -07005884 "memory for VF affiliation buffer\n");
5885 } else {
5886 instance->vf_affiliation =
5887 pci_alloc_consistent(pdev,
5888 (MAX_LOGICAL_DRIVES + 1) *
5889 sizeof(struct MR_LD_VF_AFFILIATION),
5890 &instance->vf_affiliation_h);
5891 if (!instance->vf_affiliation)
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005892 dev_warn(&pdev->dev, "Can't allocate "
adam radford229fe472014-03-10 02:51:56 -07005893 "memory for VF affiliation buffer\n");
5894 }
5895 }
5896
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005897 /*
5898 * Store instance in PCI softstate
5899 */
5900 pci_set_drvdata(pdev, instance);
5901
5902 /*
5903 * Add this controller to megasas_mgmt_info structure so that it
5904 * can be exported to management applications
5905 */
5906 megasas_mgmt_info.count++;
5907 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = instance;
5908 megasas_mgmt_info.max_index++;
5909
5910 /*
adam radford541f90b2011-05-11 18:34:29 -07005911 * Register with SCSI mid-layer
5912 */
5913 if (megasas_io_attach(instance))
5914 goto fail_io_attach;
5915
5916 instance->unload = 0;
Sumit.Saxena@avagotech.comaa008322014-11-17 15:24:08 +05305917 /*
5918 * Trigger SCSI to scan our drives
5919 */
5920 scsi_scan_host(host);
adam radford541f90b2011-05-11 18:34:29 -07005921
5922 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005923 * Initiate AEN (Asynchronous Event Notification)
5924 */
5925 if (megasas_start_aen(instance)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05005926 dev_printk(KERN_DEBUG, &pdev->dev, "start aen failed\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005927 goto fail_start_aen;
5928 }
5929
Adam Radford9ea81f82014-07-09 15:17:57 -07005930 /* Get current SR-IOV LD/VF affiliation */
5931 if (instance->requestorId)
5932 megasas_get_ld_vf_affiliation(instance, 1);
5933
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005934 return 0;
5935
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005936fail_start_aen:
5937fail_io_attach:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005938 megasas_mgmt_info.count--;
5939 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = NULL;
5940 megasas_mgmt_info.max_index--;
5941
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05305942 instance->instancet->disable_intr(instance);
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305943 megasas_destroy_irqs(instance);
5944
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05305945 if (instance->ctrl_context)
adam radfordeb1b1232011-02-24 20:55:56 -08005946 megasas_release_fusion(instance);
5947 else
5948 megasas_release_mfi(instance);
adam radfordc8e858f2011-10-08 18:15:13 -07005949 if (instance->msix_vectors)
adam radford0a770662011-02-24 20:56:12 -08005950 pci_disable_msix(instance->pdev);
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05305951fail_init_mfi:
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005952fail_alloc_dma_buf:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005953 if (instance->evt_detail)
5954 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
5955 instance->evt_detail,
5956 instance->evt_detail_h);
5957
Sumit Saxena2216c302016-01-28 21:04:26 +05305958 if (instance->pd_info)
5959 pci_free_consistent(pdev, sizeof(struct MR_PD_INFO),
5960 instance->pd_info,
5961 instance->pd_info_h);
adam radfordeb1b1232011-02-24 20:55:56 -08005962 if (instance->producer)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005963 pci_free_consistent(pdev, sizeof(u32), instance->producer,
5964 instance->producer_h);
5965 if (instance->consumer)
5966 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
5967 instance->consumer_h);
5968 scsi_host_put(host);
5969
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05005970fail_alloc_instance:
5971fail_set_dma_mask:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005972 pci_disable_device(pdev);
5973
5974 return -ENODEV;
5975}
5976
5977/**
5978 * megasas_flush_cache - Requests FW to flush all its caches
5979 * @instance: Adapter soft state
5980 */
5981static void megasas_flush_cache(struct megasas_instance *instance)
5982{
5983 struct megasas_cmd *cmd;
5984 struct megasas_dcmd_frame *dcmd;
5985
Sumit Saxena8a01a412016-01-28 21:04:32 +05305986 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR)
bo yang39a98552010-09-22 22:36:29 -04005987 return;
5988
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005989 cmd = megasas_get_cmd(instance);
5990
5991 if (!cmd)
5992 return;
5993
5994 dcmd = &cmd->frame->dcmd;
5995
5996 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
5997
5998 dcmd->cmd = MFI_CMD_DCMD;
5999 dcmd->cmd_status = 0x0;
6000 dcmd->sge_count = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306001 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_NONE);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006002 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07006003 dcmd->pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006004 dcmd->data_xfer_len = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306005 dcmd->opcode = cpu_to_le32(MR_DCMD_CTRL_CACHE_FLUSH);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006006 dcmd->mbox.b[0] = MR_FLUSH_CTRL_CACHE | MR_FLUSH_DISK_CACHE;
6007
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306008 if (megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS)
6009 != DCMD_SUCCESS) {
6010 dev_err(&instance->pdev->dev,
6011 "return from %s %d\n", __func__, __LINE__);
6012 return;
6013 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006014
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05306015 megasas_return_cmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006016}
6017
6018/**
6019 * megasas_shutdown_controller - Instructs FW to shutdown the controller
6020 * @instance: Adapter soft state
bo yang31ea7082007-11-07 12:09:50 -05006021 * @opcode: Shutdown/Hibernate
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006022 */
bo yang31ea7082007-11-07 12:09:50 -05006023static void megasas_shutdown_controller(struct megasas_instance *instance,
6024 u32 opcode)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006025{
6026 struct megasas_cmd *cmd;
6027 struct megasas_dcmd_frame *dcmd;
6028
Sumit Saxena8a01a412016-01-28 21:04:32 +05306029 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR)
bo yang39a98552010-09-22 22:36:29 -04006030 return;
6031
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006032 cmd = megasas_get_cmd(instance);
6033
6034 if (!cmd)
6035 return;
6036
6037 if (instance->aen_cmd)
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05306038 megasas_issue_blocked_abort_cmd(instance,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306039 instance->aen_cmd, MFI_IO_TIMEOUT_SECS);
adam radford9c915a82010-12-21 13:34:31 -08006040 if (instance->map_update_cmd)
6041 megasas_issue_blocked_abort_cmd(instance,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306042 instance->map_update_cmd, MFI_IO_TIMEOUT_SECS);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306043 if (instance->jbod_seq_cmd)
6044 megasas_issue_blocked_abort_cmd(instance,
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306045 instance->jbod_seq_cmd, MFI_IO_TIMEOUT_SECS);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306046
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006047 dcmd = &cmd->frame->dcmd;
6048
6049 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
6050
6051 dcmd->cmd = MFI_CMD_DCMD;
6052 dcmd->cmd_status = 0x0;
6053 dcmd->sge_count = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306054 dcmd->flags = cpu_to_le16(MFI_FRAME_DIR_NONE);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006055 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07006056 dcmd->pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006057 dcmd->data_xfer_len = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306058 dcmd->opcode = cpu_to_le32(opcode);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006059
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306060 if (megasas_issue_blocked_cmd(instance, cmd, MFI_IO_TIMEOUT_SECS)
6061 != DCMD_SUCCESS) {
6062 dev_err(&instance->pdev->dev,
6063 "return from %s %d\n", __func__, __LINE__);
6064 return;
6065 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006066
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05306067 megasas_return_cmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006068}
6069
Jiri Slaby33139b22008-05-01 17:56:02 +02006070#ifdef CONFIG_PM
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006071/**
bo yangad84db22007-11-09 04:40:16 -05006072 * megasas_suspend - driver suspend entry point
6073 * @pdev: PCI device structure
bo yang31ea7082007-11-07 12:09:50 -05006074 * @state: PCI power state to suspend routine
6075 */
Jiri Slaby33139b22008-05-01 17:56:02 +02006076static int
bo yang31ea7082007-11-07 12:09:50 -05006077megasas_suspend(struct pci_dev *pdev, pm_message_t state)
6078{
6079 struct Scsi_Host *host;
6080 struct megasas_instance *instance;
6081
6082 instance = pci_get_drvdata(pdev);
6083 host = instance->host;
Yang, Bo0c79e682009-10-06 14:47:35 -06006084 instance->unload = 1;
bo yang31ea7082007-11-07 12:09:50 -05006085
adam radford229fe472014-03-10 02:51:56 -07006086 /* Shutdown SR-IOV heartbeat timer */
6087 if (instance->requestorId && !instance->skip_heartbeat_timer_del)
6088 del_timer_sync(&instance->sriov_heartbeat_timer);
6089
bo yang31ea7082007-11-07 12:09:50 -05006090 megasas_flush_cache(instance);
6091 megasas_shutdown_controller(instance, MR_DCMD_HIBERNATE_SHUTDOWN);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06006092
6093 /* cancel the delayed work if this work still in queue */
6094 if (instance->ev != NULL) {
6095 struct megasas_aen_event *ev = instance->ev;
Xiaotian Fengc1d390d82012-12-04 19:33:54 +08006096 cancel_delayed_work_sync(&ev->hotplug_work);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06006097 instance->ev = NULL;
6098 }
6099
bo yang31ea7082007-11-07 12:09:50 -05006100 tasklet_kill(&instance->isr_tasklet);
6101
6102 pci_set_drvdata(instance->pdev, instance);
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05306103 instance->instancet->disable_intr(instance);
adam radfordc8e858f2011-10-08 18:15:13 -07006104
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306105 megasas_destroy_irqs(instance);
6106
adam radfordc8e858f2011-10-08 18:15:13 -07006107 if (instance->msix_vectors)
adam radford80d9da92010-12-21 10:17:40 -08006108 pci_disable_msix(instance->pdev);
bo yang31ea7082007-11-07 12:09:50 -05006109
6110 pci_save_state(pdev);
6111 pci_disable_device(pdev);
6112
6113 pci_set_power_state(pdev, pci_choose_state(pdev, state));
6114
6115 return 0;
6116}
6117
6118/**
6119 * megasas_resume- driver resume entry point
6120 * @pdev: PCI device structure
6121 */
Jiri Slaby33139b22008-05-01 17:56:02 +02006122static int
bo yang31ea7082007-11-07 12:09:50 -05006123megasas_resume(struct pci_dev *pdev)
6124{
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306125 int rval;
bo yang31ea7082007-11-07 12:09:50 -05006126 struct Scsi_Host *host;
6127 struct megasas_instance *instance;
6128
6129 instance = pci_get_drvdata(pdev);
6130 host = instance->host;
6131 pci_set_power_state(pdev, PCI_D0);
6132 pci_enable_wake(pdev, PCI_D0, 0);
6133 pci_restore_state(pdev);
6134
6135 /*
6136 * PCI prepping: enable device set bus mastering and dma mask
6137 */
Noriyuki Fujiiaeab3fd2009-11-20 16:27:20 +09006138 rval = pci_enable_device_mem(pdev);
bo yang31ea7082007-11-07 12:09:50 -05006139
6140 if (rval) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006141 dev_err(&pdev->dev, "Enable device failed\n");
bo yang31ea7082007-11-07 12:09:50 -05006142 return rval;
6143 }
6144
6145 pci_set_master(pdev);
6146
6147 if (megasas_set_dma_mask(pdev))
6148 goto fail_set_dma_mask;
6149
6150 /*
6151 * Initialize MFI Firmware
6152 */
6153
bo yang31ea7082007-11-07 12:09:50 -05006154 atomic_set(&instance->fw_outstanding, 0);
6155
6156 /*
6157 * We expect the FW state to be READY
6158 */
adam radford058a8fa2011-10-08 18:14:27 -07006159 if (megasas_transition_to_ready(instance, 0))
bo yang31ea7082007-11-07 12:09:50 -05006160 goto fail_ready_state;
6161
adam radford3f1abce2011-05-11 18:33:47 -07006162 /* Now re-enable MSI-X */
Alexander Gordeevdd088122014-08-18 08:01:43 +02006163 if (instance->msix_vectors &&
Alexander Gordeev8ae80ed2014-08-18 08:01:44 +02006164 pci_enable_msix_exact(instance->pdev, instance->msixentry,
6165 instance->msix_vectors))
Alexander Gordeevdd088122014-08-18 08:01:43 +02006166 goto fail_reenable_msix;
adam radford3f1abce2011-05-11 18:33:47 -07006167
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05306168 if (instance->ctrl_context) {
adam radford9c915a82010-12-21 13:34:31 -08006169 megasas_reset_reply_desc(instance);
6170 if (megasas_ioc_init_fusion(instance)) {
6171 megasas_free_cmds(instance);
6172 megasas_free_cmds_fusion(instance);
6173 goto fail_init_mfi;
6174 }
6175 if (!megasas_get_map_info(instance))
6176 megasas_sync_map_info(instance);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05306177 } else {
adam radford9c915a82010-12-21 13:34:31 -08006178 *instance->producer = 0;
6179 *instance->consumer = 0;
6180 if (megasas_issue_init_mfi(instance))
6181 goto fail_init_mfi;
adam radford9c915a82010-12-21 13:34:31 -08006182 }
bo yang31ea7082007-11-07 12:09:50 -05006183
adam radford9c915a82010-12-21 13:34:31 -08006184 tasklet_init(&instance->isr_tasklet, instance->instancet->tasklet,
6185 (unsigned long)instance);
bo yang31ea7082007-11-07 12:09:50 -05006186
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306187 if (instance->msix_vectors ?
6188 megasas_setup_irqs_msix(instance, 0) :
6189 megasas_setup_irqs_ioapic(instance))
6190 goto fail_init_mfi;
bo yang31ea7082007-11-07 12:09:50 -05006191
adam radford229fe472014-03-10 02:51:56 -07006192 /* Re-launch SR-IOV heartbeat timer */
6193 if (instance->requestorId) {
6194 if (!megasas_sriov_start_heartbeat(instance, 0))
6195 megasas_start_timer(instance,
6196 &instance->sriov_heartbeat_timer,
6197 megasas_sriov_heartbeat_handler,
6198 MEGASAS_SRIOV_HEARTBEAT_INTERVAL_VF);
Sumit.Saxena@avagotech.com5765c5b2015-04-23 16:32:09 +05306199 else {
adam radford229fe472014-03-10 02:51:56 -07006200 instance->skip_heartbeat_timer_del = 1;
Sumit.Saxena@avagotech.com5765c5b2015-04-23 16:32:09 +05306201 goto fail_init_mfi;
6202 }
adam radford229fe472014-03-10 02:51:56 -07006203 }
6204
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05306205 instance->instancet->enable_intr(instance);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306206 megasas_setup_jbod_map(instance);
Yang, Bo0c79e682009-10-06 14:47:35 -06006207 instance->unload = 0;
6208
adam radford541f90b2011-05-11 18:34:29 -07006209 /*
6210 * Initiate AEN (Asynchronous Event Notification)
6211 */
6212 if (megasas_start_aen(instance))
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006213 dev_err(&instance->pdev->dev, "Start AEN failed\n");
adam radford541f90b2011-05-11 18:34:29 -07006214
bo yang31ea7082007-11-07 12:09:50 -05006215 return 0;
6216
bo yang31ea7082007-11-07 12:09:50 -05006217fail_init_mfi:
6218 if (instance->evt_detail)
6219 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
6220 instance->evt_detail,
6221 instance->evt_detail_h);
6222
Sumit Saxena2216c302016-01-28 21:04:26 +05306223 if (instance->pd_info)
6224 pci_free_consistent(pdev, sizeof(struct MR_PD_INFO),
6225 instance->pd_info,
6226 instance->pd_info_h);
bo yang31ea7082007-11-07 12:09:50 -05006227 if (instance->producer)
6228 pci_free_consistent(pdev, sizeof(u32), instance->producer,
6229 instance->producer_h);
6230 if (instance->consumer)
6231 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
6232 instance->consumer_h);
6233 scsi_host_put(host);
6234
6235fail_set_dma_mask:
6236fail_ready_state:
Alexander Gordeevdd088122014-08-18 08:01:43 +02006237fail_reenable_msix:
bo yang31ea7082007-11-07 12:09:50 -05006238
6239 pci_disable_device(pdev);
6240
6241 return -ENODEV;
6242}
Jiri Slaby33139b22008-05-01 17:56:02 +02006243#else
6244#define megasas_suspend NULL
6245#define megasas_resume NULL
6246#endif
bo yang31ea7082007-11-07 12:09:50 -05006247
6248/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006249 * megasas_detach_one - PCI hot"un"plug entry point
6250 * @pdev: PCI device structure
6251 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006252static void megasas_detach_one(struct pci_dev *pdev)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006253{
6254 int i;
6255 struct Scsi_Host *host;
6256 struct megasas_instance *instance;
adam radford9c915a82010-12-21 13:34:31 -08006257 struct fusion_context *fusion;
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306258 u32 pd_seq_map_sz;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006259
6260 instance = pci_get_drvdata(pdev);
Yang, Boc3518832009-10-06 14:18:02 -06006261 instance->unload = 1;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006262 host = instance->host;
adam radford9c915a82010-12-21 13:34:31 -08006263 fusion = instance->ctrl_context;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006264
adam radford229fe472014-03-10 02:51:56 -07006265 /* Shutdown SR-IOV heartbeat timer */
6266 if (instance->requestorId && !instance->skip_heartbeat_timer_del)
6267 del_timer_sync(&instance->sriov_heartbeat_timer);
6268
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306269 if (instance->fw_crash_state != UNAVAILABLE)
6270 megasas_free_host_crash_buffer(instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006271 scsi_remove_host(instance->host);
6272 megasas_flush_cache(instance);
bo yang31ea7082007-11-07 12:09:50 -05006273 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06006274
6275 /* cancel the delayed work if this work still in queue*/
6276 if (instance->ev != NULL) {
6277 struct megasas_aen_event *ev = instance->ev;
Xiaotian Fengc1d390d82012-12-04 19:33:54 +08006278 cancel_delayed_work_sync(&ev->hotplug_work);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06006279 instance->ev = NULL;
6280 }
6281
Sumit.Saxena@lsi.comcfbe7552014-02-12 23:36:15 +05306282 /* cancel all wait events */
6283 wake_up_all(&instance->int_cmd_wait_q);
6284
Sumant Patro5d018ad2006-10-03 13:13:18 -07006285 tasklet_kill(&instance->isr_tasklet);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006286
6287 /*
6288 * Take the instance off the instance array. Note that we will not
6289 * decrement the max_index. We let this array be sparse array
6290 */
6291 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
6292 if (megasas_mgmt_info.instance[i] == instance) {
6293 megasas_mgmt_info.count--;
6294 megasas_mgmt_info.instance[i] = NULL;
6295
6296 break;
6297 }
6298 }
6299
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05306300 instance->instancet->disable_intr(instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006301
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306302 megasas_destroy_irqs(instance);
6303
adam radfordc8e858f2011-10-08 18:15:13 -07006304 if (instance->msix_vectors)
adam radford80d9da92010-12-21 10:17:40 -08006305 pci_disable_msix(instance->pdev);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006306
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05306307 if (instance->ctrl_context) {
adam radford9c915a82010-12-21 13:34:31 -08006308 megasas_release_fusion(instance);
sumit.saxena@avagotech.com3761cb42015-08-31 17:23:11 +05306309 pd_seq_map_sz = sizeof(struct MR_PD_CFG_SEQ_NUM_SYNC) +
6310 (sizeof(struct MR_PD_CFG_SEQ) *
6311 (MAX_PHYSICAL_DEVICES - 1));
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306312 for (i = 0; i < 2 ; i++) {
adam radford9c915a82010-12-21 13:34:31 -08006313 if (fusion->ld_map[i])
6314 dma_free_coherent(&instance->pdev->dev,
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306315 fusion->max_map_sz,
adam radford9c915a82010-12-21 13:34:31 -08006316 fusion->ld_map[i],
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306317 fusion->ld_map_phys[i]);
6318 if (fusion->ld_drv_map[i])
6319 free_pages((ulong)fusion->ld_drv_map[i],
6320 fusion->drv_map_pages);
Maurizio Lombardi546e5592016-01-22 13:41:42 +01006321 if (fusion->pd_seq_sync[i])
6322 dma_free_coherent(&instance->pdev->dev,
6323 pd_seq_map_sz,
6324 fusion->pd_seq_sync[i],
6325 fusion->pd_seq_phys[i]);
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306326 }
6327 free_pages((ulong)instance->ctrl_context,
6328 instance->ctrl_context_pages);
sumit.saxena@avagotech.com5a8cb852015-10-15 13:39:34 +05306329 } else {
adam radford9c915a82010-12-21 13:34:31 -08006330 megasas_release_mfi(instance);
adam radford9c915a82010-12-21 13:34:31 -08006331 pci_free_consistent(pdev, sizeof(u32),
6332 instance->producer,
6333 instance->producer_h);
6334 pci_free_consistent(pdev, sizeof(u32),
6335 instance->consumer,
6336 instance->consumer_h);
adam radford9c915a82010-12-21 13:34:31 -08006337 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006338
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306339 kfree(instance->ctrl_info);
6340
Sumit.Saxena@lsi.com105900d2013-05-22 12:30:54 +05306341 if (instance->evt_detail)
6342 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
6343 instance->evt_detail, instance->evt_detail_h);
adam radford229fe472014-03-10 02:51:56 -07006344
Sumit Saxena2216c302016-01-28 21:04:26 +05306345 if (instance->pd_info)
6346 pci_free_consistent(pdev, sizeof(struct MR_PD_INFO),
6347 instance->pd_info,
6348 instance->pd_info_h);
adam radford229fe472014-03-10 02:51:56 -07006349 if (instance->vf_affiliation)
6350 pci_free_consistent(pdev, (MAX_LOGICAL_DRIVES + 1) *
6351 sizeof(struct MR_LD_VF_AFFILIATION),
6352 instance->vf_affiliation,
6353 instance->vf_affiliation_h);
6354
6355 if (instance->vf_affiliation_111)
6356 pci_free_consistent(pdev,
6357 sizeof(struct MR_LD_VF_AFFILIATION_111),
6358 instance->vf_affiliation_111,
6359 instance->vf_affiliation_111_h);
6360
6361 if (instance->hb_host_mem)
6362 pci_free_consistent(pdev, sizeof(struct MR_CTRL_HB_HOST_MEM),
6363 instance->hb_host_mem,
6364 instance->hb_host_mem_h);
6365
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306366 if (instance->crash_dump_buf)
6367 pci_free_consistent(pdev, CRASH_DMA_BUF_SIZE,
6368 instance->crash_dump_buf, instance->crash_dump_h);
6369
Sumit.Saxena@avagotech.com5765c5b2015-04-23 16:32:09 +05306370 if (instance->system_info_buf)
6371 pci_free_consistent(pdev, sizeof(struct MR_DRV_SYSTEM_INFO),
6372 instance->system_info_buf, instance->system_info_h);
6373
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006374 scsi_host_put(host);
6375
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006376 pci_disable_device(pdev);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006377}
6378
6379/**
6380 * megasas_shutdown - Shutdown entry point
6381 * @device: Generic device structure
6382 */
6383static void megasas_shutdown(struct pci_dev *pdev)
6384{
6385 struct megasas_instance *instance = pci_get_drvdata(pdev);
adam radfordc8e858f2011-10-08 18:15:13 -07006386
Yang, Bo0c79e682009-10-06 14:47:35 -06006387 instance->unload = 1;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006388 megasas_flush_cache(instance);
Yang, Bo530e6fc2008-08-10 12:42:37 -07006389 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
Sumit.Saxena@lsi.comd46a3ad2013-05-22 12:34:14 +05306390 instance->instancet->disable_intr(instance);
Sumit.Saxena@avagotech.comd3557fc2015-04-23 16:30:09 +05306391 megasas_destroy_irqs(instance);
6392
adam radfordc8e858f2011-10-08 18:15:13 -07006393 if (instance->msix_vectors)
adam radford46fd2562011-05-11 18:34:17 -07006394 pci_disable_msix(instance->pdev);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006395}
6396
6397/**
6398 * megasas_mgmt_open - char node "open" entry point
6399 */
6400static int megasas_mgmt_open(struct inode *inode, struct file *filep)
6401{
6402 /*
6403 * Allow only those users with admin rights
6404 */
6405 if (!capable(CAP_SYS_ADMIN))
6406 return -EACCES;
6407
6408 return 0;
6409}
6410
6411/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006412 * megasas_mgmt_fasync - Async notifier registration from applications
6413 *
6414 * This function adds the calling process to a driver global queue. When an
6415 * event occurs, SIGIO will be sent to all processes in this queue.
6416 */
6417static int megasas_mgmt_fasync(int fd, struct file *filep, int mode)
6418{
6419 int rc;
6420
Arjan van de Ven0b950672006-01-11 13:16:10 +01006421 mutex_lock(&megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006422
6423 rc = fasync_helper(fd, filep, mode, &megasas_async_queue);
6424
Arjan van de Ven0b950672006-01-11 13:16:10 +01006425 mutex_unlock(&megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006426
6427 if (rc >= 0) {
6428 /* For sanity check when we get ioctl */
6429 filep->private_data = filep;
6430 return 0;
6431 }
6432
6433 printk(KERN_DEBUG "megasas: fasync_helper failed [%d]\n", rc);
6434
6435 return rc;
6436}
6437
6438/**
Yang, Boc3518832009-10-06 14:18:02 -06006439 * megasas_mgmt_poll - char node "poll" entry point
6440 * */
6441static unsigned int megasas_mgmt_poll(struct file *file, poll_table *wait)
6442{
6443 unsigned int mask;
6444 unsigned long flags;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006445
Yang, Boc3518832009-10-06 14:18:02 -06006446 poll_wait(file, &megasas_poll_wait, wait);
6447 spin_lock_irqsave(&poll_aen_lock, flags);
6448 if (megasas_poll_wait_aen)
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006449 mask = (POLLIN | POLLRDNORM);
Yang, Boc3518832009-10-06 14:18:02 -06006450 else
6451 mask = 0;
Sumit.Saxena@avagotech.com51087a82014-09-12 18:57:33 +05306452 megasas_poll_wait_aen = 0;
Yang, Boc3518832009-10-06 14:18:02 -06006453 spin_unlock_irqrestore(&poll_aen_lock, flags);
6454 return mask;
6455}
6456
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306457/*
6458 * megasas_set_crash_dump_params_ioctl:
6459 * Send CRASH_DUMP_MODE DCMD to all controllers
6460 * @cmd: MFI command frame
6461 */
6462
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006463static int megasas_set_crash_dump_params_ioctl(struct megasas_cmd *cmd)
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306464{
6465 struct megasas_instance *local_instance;
6466 int i, error = 0;
6467 int crash_support;
6468
6469 crash_support = cmd->frame->dcmd.mbox.w[0];
6470
6471 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
6472 local_instance = megasas_mgmt_info.instance[i];
6473 if (local_instance && local_instance->crash_dump_drv_support) {
Sumit Saxena8a01a412016-01-28 21:04:32 +05306474 if ((atomic_read(&local_instance->adprecovery) ==
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306475 MEGASAS_HBA_OPERATIONAL) &&
6476 !megasas_set_crash_dump_params(local_instance,
6477 crash_support)) {
6478 local_instance->crash_dump_app_support =
6479 crash_support;
6480 dev_info(&local_instance->pdev->dev,
6481 "Application firmware crash "
6482 "dump mode set success\n");
6483 error = 0;
6484 } else {
6485 dev_info(&local_instance->pdev->dev,
6486 "Application firmware crash "
6487 "dump mode set failed\n");
6488 error = -1;
6489 }
6490 }
6491 }
6492 return error;
6493}
6494
Yang, Boc3518832009-10-06 14:18:02 -06006495/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006496 * megasas_mgmt_fw_ioctl - Issues management ioctls to FW
6497 * @instance: Adapter soft state
6498 * @argp: User's ioctl packet
6499 */
6500static int
6501megasas_mgmt_fw_ioctl(struct megasas_instance *instance,
6502 struct megasas_iocpacket __user * user_ioc,
6503 struct megasas_iocpacket *ioc)
6504{
6505 struct megasas_sge32 *kern_sge32;
6506 struct megasas_cmd *cmd;
6507 void *kbuff_arr[MAX_IOCTL_SGE];
6508 dma_addr_t buf_handle = 0;
6509 int error = 0, i;
6510 void *sense = NULL;
6511 dma_addr_t sense_handle;
Yang, Bo7b2519a2009-10-06 14:52:20 -06006512 unsigned long *sense_ptr;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006513
6514 memset(kbuff_arr, 0, sizeof(kbuff_arr));
6515
6516 if (ioc->sge_count > MAX_IOCTL_SGE) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006517 dev_printk(KERN_DEBUG, &instance->pdev->dev, "SGE count [%d] > max limit [%d]\n",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006518 ioc->sge_count, MAX_IOCTL_SGE);
6519 return -EINVAL;
6520 }
6521
6522 cmd = megasas_get_cmd(instance);
6523 if (!cmd) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006524 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to get a cmd packet\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006525 return -ENOMEM;
6526 }
6527
6528 /*
6529 * User's IOCTL packet has 2 frames (maximum). Copy those two
6530 * frames into our cmd's frames. cmd->frame's context will get
6531 * overwritten when we copy from user's frames. So set that value
6532 * alone separately
6533 */
6534 memcpy(cmd->frame, ioc->frame.raw, 2 * MEGAMFI_FRAME_SIZE);
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306535 cmd->frame->hdr.context = cpu_to_le32(cmd->index);
Yang, Boc3518832009-10-06 14:18:02 -06006536 cmd->frame->hdr.pad_0 = 0;
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306537 cmd->frame->hdr.flags &= cpu_to_le16(~(MFI_FRAME_IEEE |
6538 MFI_FRAME_SGL64 |
6539 MFI_FRAME_SENSE64));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006540
Sumit.Saxena@avagotech.comfc62b3f2014-09-12 18:57:28 +05306541 if (cmd->frame->dcmd.opcode == MR_DRIVER_SET_APP_CRASHDUMP_MODE) {
6542 error = megasas_set_crash_dump_params_ioctl(cmd);
6543 megasas_return_cmd(instance, cmd);
6544 return error;
6545 }
6546
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006547 /*
6548 * The management interface between applications and the fw uses
6549 * MFI frames. E.g, RAID configuration changes, LD property changes
6550 * etc are accomplishes through different kinds of MFI frames. The
6551 * driver needs to care only about substituting user buffers with
6552 * kernel buffers in SGLs. The location of SGL is embedded in the
6553 * struct iocpacket itself.
6554 */
6555 kern_sge32 = (struct megasas_sge32 *)
6556 ((unsigned long)cmd->frame + ioc->sgl_off);
6557
6558 /*
6559 * For each user buffer, create a mirror buffer and copy in
6560 */
6561 for (i = 0; i < ioc->sge_count; i++) {
Bjørn Mork98cb7e42011-01-19 10:01:14 +01006562 if (!ioc->sgl[i].iov_len)
6563 continue;
6564
Sumant Patro9f35fa82007-02-14 12:55:45 -08006565 kbuff_arr[i] = dma_alloc_coherent(&instance->pdev->dev,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006566 ioc->sgl[i].iov_len,
Sumant Patro9f35fa82007-02-14 12:55:45 -08006567 &buf_handle, GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006568 if (!kbuff_arr[i]) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006569 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to alloc "
6570 "kernel SGL buffer for IOCTL\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006571 error = -ENOMEM;
6572 goto out;
6573 }
6574
6575 /*
6576 * We don't change the dma_coherent_mask, so
6577 * pci_alloc_consistent only returns 32bit addresses
6578 */
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306579 kern_sge32[i].phys_addr = cpu_to_le32(buf_handle);
6580 kern_sge32[i].length = cpu_to_le32(ioc->sgl[i].iov_len);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006581
6582 /*
6583 * We created a kernel buffer corresponding to the
6584 * user buffer. Now copy in from the user buffer
6585 */
6586 if (copy_from_user(kbuff_arr[i], ioc->sgl[i].iov_base,
6587 (u32) (ioc->sgl[i].iov_len))) {
6588 error = -EFAULT;
6589 goto out;
6590 }
6591 }
6592
6593 if (ioc->sense_len) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08006594 sense = dma_alloc_coherent(&instance->pdev->dev, ioc->sense_len,
6595 &sense_handle, GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006596 if (!sense) {
6597 error = -ENOMEM;
6598 goto out;
6599 }
6600
6601 sense_ptr =
Yang, Bo7b2519a2009-10-06 14:52:20 -06006602 (unsigned long *) ((unsigned long)cmd->frame + ioc->sense_off);
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306603 *sense_ptr = cpu_to_le32(sense_handle);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006604 }
6605
6606 /*
6607 * Set the sync_cmd flag so that the ISR knows not to complete this
6608 * cmd to the SCSI mid-layer
6609 */
6610 cmd->sync_cmd = 1;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05306611 if (megasas_issue_blocked_cmd(instance, cmd, 0) == DCMD_NOT_FIRED) {
6612 cmd->sync_cmd = 0;
6613 dev_err(&instance->pdev->dev,
6614 "return -EBUSY from %s %d opcode 0x%x cmd->cmd_status_drv 0x%x\n",
6615 __func__, __LINE__, cmd->frame->dcmd.opcode,
6616 cmd->cmd_status_drv);
6617 return -EBUSY;
6618 }
6619
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006620 cmd->sync_cmd = 0;
6621
Sumit.Saxena@avagotech.comaa008322014-11-17 15:24:08 +05306622 if (instance->unload == 1) {
6623 dev_info(&instance->pdev->dev, "Driver unload is in progress "
6624 "don't submit data to application\n");
6625 goto out;
6626 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006627 /*
6628 * copy out the kernel buffers to user buffers
6629 */
6630 for (i = 0; i < ioc->sge_count; i++) {
6631 if (copy_to_user(ioc->sgl[i].iov_base, kbuff_arr[i],
6632 ioc->sgl[i].iov_len)) {
6633 error = -EFAULT;
6634 goto out;
6635 }
6636 }
6637
6638 /*
6639 * copy out the sense
6640 */
6641 if (ioc->sense_len) {
6642 /*
bo yangb70a41e2008-03-18 03:13:06 -04006643 * sense_ptr points to the location that has the user
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006644 * sense buffer address
6645 */
Yang, Bo7b2519a2009-10-06 14:52:20 -06006646 sense_ptr = (unsigned long *) ((unsigned long)ioc->frame.raw +
6647 ioc->sense_off);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006648
bo yangb70a41e2008-03-18 03:13:06 -04006649 if (copy_to_user((void __user *)((unsigned long)(*sense_ptr)),
6650 sense, ioc->sense_len)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006651 dev_err(&instance->pdev->dev, "Failed to copy out to user "
bo yangb10c36a2007-11-09 04:28:47 -05006652 "sense data\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006653 error = -EFAULT;
6654 goto out;
6655 }
6656 }
6657
6658 /*
6659 * copy the status codes returned by the fw
6660 */
6661 if (copy_to_user(&user_ioc->frame.hdr.cmd_status,
6662 &cmd->frame->hdr.cmd_status, sizeof(u8))) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006663 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Error copying out cmd_status\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006664 error = -EFAULT;
6665 }
6666
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006667out:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006668 if (sense) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08006669 dma_free_coherent(&instance->pdev->dev, ioc->sense_len,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006670 sense, sense_handle);
6671 }
6672
Bjørn Mork7a6a7312012-11-21 09:54:48 +01006673 for (i = 0; i < ioc->sge_count; i++) {
Arnd Bergmann3deb9432016-03-14 15:29:45 +01006674 if (kbuff_arr[i]) {
Bjørn Mork7a6a7312012-11-21 09:54:48 +01006675 dma_free_coherent(&instance->pdev->dev,
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306676 le32_to_cpu(kern_sge32[i].length),
Bjørn Mork7a6a7312012-11-21 09:54:48 +01006677 kbuff_arr[i],
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05306678 le32_to_cpu(kern_sge32[i].phys_addr));
Sumit.Saxena@avagotech.com90dc9d92014-09-12 18:57:58 +05306679 kbuff_arr[i] = NULL;
Arnd Bergmann3deb9432016-03-14 15:29:45 +01006680 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006681 }
6682
Sumit.Saxena@avagotech.com4026e9a2015-04-23 16:31:24 +05306683 megasas_return_cmd(instance, cmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006684 return error;
6685}
6686
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006687static int megasas_mgmt_ioctl_fw(struct file *file, unsigned long arg)
6688{
6689 struct megasas_iocpacket __user *user_ioc =
6690 (struct megasas_iocpacket __user *)arg;
6691 struct megasas_iocpacket *ioc;
6692 struct megasas_instance *instance;
6693 int error;
bo yang39a98552010-09-22 22:36:29 -04006694 int i;
6695 unsigned long flags;
6696 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006697
Markus Elfring709ab232016-08-21 10:39:04 +02006698 ioc = memdup_user(user_ioc, sizeof(*ioc));
6699 if (IS_ERR(ioc))
6700 return PTR_ERR(ioc);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006701
6702 instance = megasas_lookup_instance(ioc->host_no);
6703 if (!instance) {
6704 error = -ENODEV;
6705 goto out_kfree_ioc;
6706 }
6707
adam radford229fe472014-03-10 02:51:56 -07006708 /* Adjust ioctl wait time for VF mode */
6709 if (instance->requestorId)
6710 wait_time = MEGASAS_ROUTINE_WAIT_TIME_VF;
6711
6712 /* Block ioctls in VF mode */
6713 if (instance->requestorId && !allow_vf_ioctls) {
6714 error = -ENODEV;
6715 goto out_kfree_ioc;
6716 }
6717
Sumit Saxena8a01a412016-01-28 21:04:32 +05306718 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006719 dev_err(&instance->pdev->dev, "Controller in crit error\n");
Yang, Bo0c79e682009-10-06 14:47:35 -06006720 error = -ENODEV;
6721 goto out_kfree_ioc;
6722 }
6723
6724 if (instance->unload == 1) {
6725 error = -ENODEV;
6726 goto out_kfree_ioc;
6727 }
6728
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006729 if (down_interruptible(&instance->ioctl_sem)) {
6730 error = -ERESTARTSYS;
6731 goto out_kfree_ioc;
6732 }
bo yang39a98552010-09-22 22:36:29 -04006733
6734 for (i = 0; i < wait_time; i++) {
6735
6736 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05306737 if (atomic_read(&instance->adprecovery) == MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04006738 spin_unlock_irqrestore(&instance->hba_lock, flags);
6739 break;
6740 }
6741 spin_unlock_irqrestore(&instance->hba_lock, flags);
6742
6743 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006744 dev_notice(&instance->pdev->dev, "waiting"
bo yang39a98552010-09-22 22:36:29 -04006745 "for controller reset to finish\n");
6746 }
6747
6748 msleep(1000);
6749 }
6750
6751 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05306752 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04006753 spin_unlock_irqrestore(&instance->hba_lock, flags);
6754
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006755 dev_err(&instance->pdev->dev, "timed out while"
bo yang39a98552010-09-22 22:36:29 -04006756 "waiting for HBA to recover\n");
6757 error = -ENODEV;
Dan Carpenterc64e4832013-04-16 10:44:19 +03006758 goto out_up;
bo yang39a98552010-09-22 22:36:29 -04006759 }
6760 spin_unlock_irqrestore(&instance->hba_lock, flags);
6761
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006762 error = megasas_mgmt_fw_ioctl(instance, user_ioc, ioc);
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006763out_up:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006764 up(&instance->ioctl_sem);
6765
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05006766out_kfree_ioc:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006767 kfree(ioc);
6768 return error;
6769}
6770
6771static int megasas_mgmt_ioctl_aen(struct file *file, unsigned long arg)
6772{
6773 struct megasas_instance *instance;
6774 struct megasas_aen aen;
6775 int error;
bo yang39a98552010-09-22 22:36:29 -04006776 int i;
6777 unsigned long flags;
6778 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006779
6780 if (file->private_data != file) {
6781 printk(KERN_DEBUG "megasas: fasync_helper was not "
6782 "called first\n");
6783 return -EINVAL;
6784 }
6785
6786 if (copy_from_user(&aen, (void __user *)arg, sizeof(aen)))
6787 return -EFAULT;
6788
6789 instance = megasas_lookup_instance(aen.host_no);
6790
6791 if (!instance)
6792 return -ENODEV;
6793
Sumit Saxena8a01a412016-01-28 21:04:32 +05306794 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
bo yang39a98552010-09-22 22:36:29 -04006795 return -ENODEV;
Yang, Bo0c79e682009-10-06 14:47:35 -06006796 }
6797
6798 if (instance->unload == 1) {
6799 return -ENODEV;
6800 }
6801
bo yang39a98552010-09-22 22:36:29 -04006802 for (i = 0; i < wait_time; i++) {
6803
6804 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05306805 if (atomic_read(&instance->adprecovery) == MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04006806 spin_unlock_irqrestore(&instance->hba_lock,
6807 flags);
6808 break;
6809 }
6810
6811 spin_unlock_irqrestore(&instance->hba_lock, flags);
6812
6813 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006814 dev_notice(&instance->pdev->dev, "waiting for"
bo yang39a98552010-09-22 22:36:29 -04006815 "controller reset to finish\n");
6816 }
6817
6818 msleep(1000);
6819 }
6820
6821 spin_lock_irqsave(&instance->hba_lock, flags);
Sumit Saxena8a01a412016-01-28 21:04:32 +05306822 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
bo yang39a98552010-09-22 22:36:29 -04006823 spin_unlock_irqrestore(&instance->hba_lock, flags);
Bjorn Helgaas1be18252015-07-07 15:52:34 -05006824 dev_err(&instance->pdev->dev, "timed out while waiting"
6825 "for HBA to recover\n");
bo yang39a98552010-09-22 22:36:29 -04006826 return -ENODEV;
6827 }
6828 spin_unlock_irqrestore(&instance->hba_lock, flags);
6829
Sumit Saxena11c71cb2016-01-28 21:04:22 +05306830 mutex_lock(&instance->reset_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006831 error = megasas_register_aen(instance, aen.seq_num,
6832 aen.class_locale_word);
Sumit Saxena11c71cb2016-01-28 21:04:22 +05306833 mutex_unlock(&instance->reset_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006834 return error;
6835}
6836
6837/**
6838 * megasas_mgmt_ioctl - char node ioctl entry point
6839 */
6840static long
6841megasas_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
6842{
6843 switch (cmd) {
6844 case MEGASAS_IOC_FIRMWARE:
6845 return megasas_mgmt_ioctl_fw(file, arg);
6846
6847 case MEGASAS_IOC_GET_AEN:
6848 return megasas_mgmt_ioctl_aen(file, arg);
6849 }
6850
6851 return -ENOTTY;
6852}
6853
6854#ifdef CONFIG_COMPAT
6855static int megasas_mgmt_compat_ioctl_fw(struct file *file, unsigned long arg)
6856{
6857 struct compat_megasas_iocpacket __user *cioc =
6858 (struct compat_megasas_iocpacket __user *)arg;
6859 struct megasas_iocpacket __user *ioc =
6860 compat_alloc_user_space(sizeof(struct megasas_iocpacket));
6861 int i;
6862 int error = 0;
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006863 compat_uptr_t ptr;
sumit.saxena@avagotech.com323c4a02015-10-15 13:40:54 +05306864 u32 local_sense_off;
6865 u32 local_sense_len;
Sumit Saxenaea1c9282016-01-28 21:14:26 +05306866 u32 user_sense_off;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006867
Jeff Garzik83aabc12006-10-04 06:34:03 -04006868 if (clear_user(ioc, sizeof(*ioc)))
6869 return -EFAULT;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006870
6871 if (copy_in_user(&ioc->host_no, &cioc->host_no, sizeof(u16)) ||
6872 copy_in_user(&ioc->sgl_off, &cioc->sgl_off, sizeof(u32)) ||
6873 copy_in_user(&ioc->sense_off, &cioc->sense_off, sizeof(u32)) ||
6874 copy_in_user(&ioc->sense_len, &cioc->sense_len, sizeof(u32)) ||
6875 copy_in_user(ioc->frame.raw, cioc->frame.raw, 128) ||
6876 copy_in_user(&ioc->sge_count, &cioc->sge_count, sizeof(u32)))
6877 return -EFAULT;
6878
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006879 /*
6880 * The sense_ptr is used in megasas_mgmt_fw_ioctl only when
6881 * sense_len is not null, so prepare the 64bit value under
6882 * the same condition.
6883 */
Sumit Saxenaea1c9282016-01-28 21:14:26 +05306884 if (get_user(local_sense_off, &ioc->sense_off) ||
6885 get_user(local_sense_len, &ioc->sense_len) ||
6886 get_user(user_sense_off, &cioc->sense_off))
sumit.saxena@avagotech.com323c4a02015-10-15 13:40:54 +05306887 return -EFAULT;
6888
sumit.saxena@avagotech.com323c4a02015-10-15 13:40:54 +05306889 if (local_sense_len) {
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006890 void __user **sense_ioc_ptr =
Sumit Saxenaea1c9282016-01-28 21:14:26 +05306891 (void __user **)((u8 *)((unsigned long)&ioc->frame.raw) + local_sense_off);
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006892 compat_uptr_t *sense_cioc_ptr =
Sumit Saxenaea1c9282016-01-28 21:14:26 +05306893 (compat_uptr_t *)(((unsigned long)&cioc->frame.raw) + user_sense_off);
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006894 if (get_user(ptr, sense_cioc_ptr) ||
6895 put_user(compat_ptr(ptr), sense_ioc_ptr))
6896 return -EFAULT;
6897 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006898
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01006899 for (i = 0; i < MAX_IOCTL_SGE; i++) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006900 if (get_user(ptr, &cioc->sgl[i].iov_base) ||
6901 put_user(compat_ptr(ptr), &ioc->sgl[i].iov_base) ||
6902 copy_in_user(&ioc->sgl[i].iov_len,
6903 &cioc->sgl[i].iov_len, sizeof(compat_size_t)))
6904 return -EFAULT;
6905 }
6906
6907 error = megasas_mgmt_ioctl_fw(file, (unsigned long)ioc);
6908
6909 if (copy_in_user(&cioc->frame.hdr.cmd_status,
6910 &ioc->frame.hdr.cmd_status, sizeof(u8))) {
6911 printk(KERN_DEBUG "megasas: error copy_in_user cmd_status\n");
6912 return -EFAULT;
6913 }
6914 return error;
6915}
6916
6917static long
6918megasas_mgmt_compat_ioctl(struct file *file, unsigned int cmd,
6919 unsigned long arg)
6920{
6921 switch (cmd) {
Sumant Patrocb59aa62006-01-25 11:53:25 -08006922 case MEGASAS_IOC_FIRMWARE32:
6923 return megasas_mgmt_compat_ioctl_fw(file, arg);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006924 case MEGASAS_IOC_GET_AEN:
6925 return megasas_mgmt_ioctl_aen(file, arg);
6926 }
6927
6928 return -ENOTTY;
6929}
6930#endif
6931
6932/*
6933 * File operations structure for management interface
6934 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08006935static const struct file_operations megasas_mgmt_fops = {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006936 .owner = THIS_MODULE,
6937 .open = megasas_mgmt_open,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006938 .fasync = megasas_mgmt_fasync,
6939 .unlocked_ioctl = megasas_mgmt_ioctl,
Yang, Boc3518832009-10-06 14:18:02 -06006940 .poll = megasas_mgmt_poll,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006941#ifdef CONFIG_COMPAT
6942 .compat_ioctl = megasas_mgmt_compat_ioctl,
6943#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02006944 .llseek = noop_llseek,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006945};
6946
6947/*
6948 * PCI hotplug support registration structure
6949 */
6950static struct pci_driver megasas_pci_driver = {
6951
6952 .name = "megaraid_sas",
6953 .id_table = megasas_pci_table,
6954 .probe = megasas_probe_one,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08006955 .remove = megasas_detach_one,
bo yang31ea7082007-11-07 12:09:50 -05006956 .suspend = megasas_suspend,
6957 .resume = megasas_resume,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006958 .shutdown = megasas_shutdown,
6959};
6960
6961/*
6962 * Sysfs driver attributes
6963 */
6964static ssize_t megasas_sysfs_show_version(struct device_driver *dd, char *buf)
6965{
6966 return snprintf(buf, strlen(MEGASAS_VERSION) + 2, "%s\n",
6967 MEGASAS_VERSION);
6968}
6969
6970static DRIVER_ATTR(version, S_IRUGO, megasas_sysfs_show_version, NULL);
6971
6972static ssize_t
Sumit.Saxena@avagotech.com09fced12015-04-23 16:31:54 +05306973megasas_sysfs_show_release_date(struct device_driver *dd, char *buf)
6974{
6975 return snprintf(buf, strlen(MEGASAS_RELDATE) + 2, "%s\n",
6976 MEGASAS_RELDATE);
6977}
6978
6979static DRIVER_ATTR(release_date, S_IRUGO, megasas_sysfs_show_release_date, NULL);
6980
6981static ssize_t
Yang, Bo72c4fd32009-10-06 14:20:59 -06006982megasas_sysfs_show_support_poll_for_event(struct device_driver *dd, char *buf)
6983{
6984 return sprintf(buf, "%u\n", support_poll_for_event);
6985}
6986
6987static DRIVER_ATTR(support_poll_for_event, S_IRUGO,
6988 megasas_sysfs_show_support_poll_for_event, NULL);
6989
Yang, Bo837f5fe2010-10-11 06:59:20 -06006990 static ssize_t
6991megasas_sysfs_show_support_device_change(struct device_driver *dd, char *buf)
6992{
6993 return sprintf(buf, "%u\n", support_device_change);
6994}
6995
6996static DRIVER_ATTR(support_device_change, S_IRUGO,
6997 megasas_sysfs_show_support_device_change, NULL);
6998
Yang, Bo72c4fd32009-10-06 14:20:59 -06006999static ssize_t
Sumant Patro658dced2006-10-03 13:09:14 -07007000megasas_sysfs_show_dbg_lvl(struct device_driver *dd, char *buf)
7001{
bo yangad84db22007-11-09 04:40:16 -05007002 return sprintf(buf, "%u\n", megasas_dbg_lvl);
Sumant Patro658dced2006-10-03 13:09:14 -07007003}
7004
7005static ssize_t
7006megasas_sysfs_set_dbg_lvl(struct device_driver *dd, const char *buf, size_t count)
7007{
7008 int retval = count;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05007009
7010 if (sscanf(buf, "%u", &megasas_dbg_lvl) < 1) {
Sumant Patro658dced2006-10-03 13:09:14 -07007011 printk(KERN_ERR "megasas: could not set dbg_lvl\n");
7012 retval = -EINVAL;
7013 }
7014 return retval;
7015}
7016
Joe Malicki66dca9b2008-08-14 17:14:48 -04007017static DRIVER_ATTR(dbg_lvl, S_IRUGO|S_IWUSR, megasas_sysfs_show_dbg_lvl,
bo yangad84db22007-11-09 04:40:16 -05007018 megasas_sysfs_set_dbg_lvl);
7019
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007020static void
7021megasas_aen_polling(struct work_struct *work)
7022{
7023 struct megasas_aen_event *ev =
Xiaotian Fengc1d390d82012-12-04 19:33:54 +08007024 container_of(work, struct megasas_aen_event, hotplug_work.work);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007025 struct megasas_instance *instance = ev->instance;
7026 union megasas_evt_class_locale class_locale;
7027 struct Scsi_Host *host;
7028 struct scsi_device *sdev1;
7029 u16 pd_index = 0;
Yang, Boc9786842009-12-06 08:39:25 -07007030 u16 ld_index = 0;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007031 int i, j, doscan = 0;
adam radford229fe472014-03-10 02:51:56 -07007032 u32 seq_num, wait_time = MEGASAS_RESET_WAIT_TIME;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007033 int error;
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307034 u8 dcmd_ret = DCMD_SUCCESS;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007035
7036 if (!instance) {
7037 printk(KERN_ERR "invalid instance!\n");
7038 kfree(ev);
7039 return;
7040 }
adam radford229fe472014-03-10 02:51:56 -07007041
7042 /* Adjust event workqueue thread wait time for VF mode */
7043 if (instance->requestorId)
7044 wait_time = MEGASAS_ROUTINE_WAIT_TIME_VF;
7045
7046 /* Don't run the event workqueue thread if OCR is running */
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307047 mutex_lock(&instance->reset_mutex);
adam radford229fe472014-03-10 02:51:56 -07007048
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007049 instance->ev = NULL;
7050 host = instance->host;
7051 if (instance->evt_detail) {
sumit.saxena@avagotech.com714f5172015-08-31 17:23:51 +05307052 megasas_decode_evt(instance);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007053
Sumit.Saxena@lsi.com94cd65d2013-09-06 15:50:52 +05307054 switch (le32_to_cpu(instance->evt_detail->code)) {
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307055
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007056 case MR_EVT_PD_INSERTED:
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307057 case MR_EVT_PD_REMOVED:
7058 dcmd_ret = megasas_get_pd_list(instance);
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307059 if (dcmd_ret == DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307060 doscan = SCAN_PD_CHANNEL;
Yang, Boc9786842009-12-06 08:39:25 -07007061 break;
7062
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307063 case MR_EVT_LD_OFFLINE:
7064 case MR_EVT_CFG_CLEARED:
7065 case MR_EVT_LD_DELETED:
7066 case MR_EVT_LD_CREATED:
7067 if (!instance->requestorId ||
7068 (instance->requestorId && megasas_get_ld_vf_affiliation(instance, 0)))
7069 dcmd_ret = megasas_ld_list_query(instance, MR_LD_QUERY_TYPE_EXPOSED_TO_HOST);
Yang, Boc9786842009-12-06 08:39:25 -07007070
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307071 if (dcmd_ret == DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307072 doscan = SCAN_VD_CHANNEL;
Yang, Boc9786842009-12-06 08:39:25 -07007073
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307074 break;
7075
7076 case MR_EVT_CTRL_HOST_BUS_SCAN_REQUESTED:
7077 case MR_EVT_FOREIGN_CFG_IMPORTED:
7078 case MR_EVT_LD_STATE_CHANGE:
7079 dcmd_ret = megasas_get_pd_list(instance);
7080
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307081 if (dcmd_ret != DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307082 break;
7083
7084 if (!instance->requestorId ||
7085 (instance->requestorId && megasas_get_ld_vf_affiliation(instance, 0)))
7086 dcmd_ret = megasas_ld_list_query(instance, MR_LD_QUERY_TYPE_EXPOSED_TO_HOST);
7087
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307088 if (dcmd_ret != DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307089 break;
7090
7091 doscan = SCAN_VD_CHANNEL | SCAN_PD_CHANNEL;
7092 dev_info(&instance->pdev->dev, "scanning for scsi%d...\n",
7093 instance->host->host_no);
7094 break;
7095
7096 case MR_EVT_CTRL_PROP_CHANGED:
7097 dcmd_ret = megasas_get_ctrl_info(instance);
7098 break;
7099 default:
7100 doscan = 0;
7101 break;
7102 }
7103 } else {
7104 dev_err(&instance->pdev->dev, "invalid evt_detail!\n");
7105 mutex_unlock(&instance->reset_mutex);
7106 kfree(ev);
7107 return;
7108 }
7109
7110 mutex_unlock(&instance->reset_mutex);
7111
7112 if (doscan & SCAN_PD_CHANNEL) {
7113 for (i = 0; i < MEGASAS_MAX_PD_CHANNELS; i++) {
7114 for (j = 0; j < MEGASAS_MAX_DEV_PER_CHANNEL; j++) {
7115 pd_index = i*MEGASAS_MAX_DEV_PER_CHANNEL + j;
Bjorn Helgaasda0dc9f2015-07-07 15:52:45 -05007116 sdev1 = scsi_device_lookup(host, i, j, 0);
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307117 if (instance->pd_list[pd_index].driveState ==
7118 MR_PD_STATE_SYSTEM) {
7119 if (!sdev1)
7120 scsi_add_device(host, i, j, 0);
7121 else
Yang, Boc9786842009-12-06 08:39:25 -07007122 scsi_device_put(sdev1);
Yang, Boc9786842009-12-06 08:39:25 -07007123 } else {
7124 if (sdev1) {
7125 scsi_remove_device(sdev1);
7126 scsi_device_put(sdev1);
7127 }
7128 }
Yang, Boc9786842009-12-06 08:39:25 -07007129 }
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007130 }
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007131 }
7132
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307133 if (doscan & SCAN_VD_CHANNEL) {
7134 for (i = 0; i < MEGASAS_MAX_LD_CHANNELS; i++) {
7135 for (j = 0; j < MEGASAS_MAX_DEV_PER_CHANNEL; j++) {
7136 ld_index = (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
7137 sdev1 = scsi_device_lookup(host, MEGASAS_MAX_PD_CHANNELS + i, j, 0);
7138 if (instance->ld_ids[ld_index] != 0xff) {
7139 if (!sdev1)
7140 scsi_add_device(host, MEGASAS_MAX_PD_CHANNELS + i, j, 0);
7141 else
7142 scsi_device_put(sdev1);
7143 } else {
7144 if (sdev1) {
7145 scsi_remove_device(sdev1);
7146 scsi_device_put(sdev1);
Yang, Boc9786842009-12-06 08:39:25 -07007147 }
7148 }
7149 }
7150 }
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007151 }
7152
Sumit Saxena6d40afb2016-01-28 21:04:23 +05307153 if (dcmd_ret == DCMD_SUCCESS)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307154 seq_num = le32_to_cpu(instance->evt_detail->seq_num) + 1;
7155 else
7156 seq_num = instance->last_seq_num;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007157
7158 /* Register AEN with FW for latest sequence number plus 1 */
7159 class_locale.members.reserved = 0;
7160 class_locale.members.locale = MR_EVT_LOCALE_ALL;
7161 class_locale.members.class = MR_EVT_CLASS_DEBUG;
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307162
7163 if (instance->aen_cmd != NULL) {
7164 kfree(ev);
7165 return;
7166 }
7167
7168 mutex_lock(&instance->reset_mutex);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007169 error = megasas_register_aen(instance, seq_num,
7170 class_locale.word);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007171 if (error)
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307172 dev_err(&instance->pdev->dev,
7173 "register aen failed error %x\n", error);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007174
Sumit Saxena11c71cb2016-01-28 21:04:22 +05307175 mutex_unlock(&instance->reset_mutex);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06007176 kfree(ev);
7177}
7178
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007179/**
7180 * megasas_init - Driver load entry point
7181 */
7182static int __init megasas_init(void)
7183{
7184 int rval;
7185
7186 /*
Sumit Saxenac3e385a2016-04-15 00:23:30 -07007187 * Booted in kdump kernel, minimize memory footprints by
7188 * disabling few features
7189 */
7190 if (reset_devices) {
7191 msix_vectors = 1;
7192 rdpq_enable = 0;
7193 dual_qdepth_disable = 1;
7194 }
7195
7196 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007197 * Announce driver version and other information
7198 */
Sumit.Saxena@avagotech.comd98a6de2014-11-17 15:23:58 +05307199 pr_info("megasas: %s\n", MEGASAS_VERSION);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007200
Kashyap Desaibd8d6dd2012-07-17 18:20:44 -07007201 spin_lock_init(&poll_aen_lock);
7202
Yang, Bo72c4fd32009-10-06 14:20:59 -06007203 support_poll_for_event = 2;
Yang, Bo837f5fe2010-10-11 06:59:20 -06007204 support_device_change = 1;
Yang, Bo72c4fd32009-10-06 14:20:59 -06007205
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007206 memset(&megasas_mgmt_info, 0, sizeof(megasas_mgmt_info));
7207
7208 /*
7209 * Register character device node
7210 */
7211 rval = register_chrdev(0, "megaraid_sas_ioctl", &megasas_mgmt_fops);
7212
7213 if (rval < 0) {
7214 printk(KERN_DEBUG "megasas: failed to open device node\n");
7215 return rval;
7216 }
7217
7218 megasas_mgmt_majorno = rval;
7219
7220 /*
7221 * Register ourselves as PCI hotplug module
7222 */
Michal Piotrowski4041b9c2006-08-17 13:28:22 +00007223 rval = pci_register_driver(&megasas_pci_driver);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007224
7225 if (rval) {
Masanari Iida6774def2014-11-05 22:26:48 +09007226 printk(KERN_DEBUG "megasas: PCI hotplug registration failed \n");
Jeff Garzik83aabc12006-10-04 06:34:03 -04007227 goto err_pcidrv;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007228 }
7229
Jeff Garzik83aabc12006-10-04 06:34:03 -04007230 rval = driver_create_file(&megasas_pci_driver.driver,
7231 &driver_attr_version);
7232 if (rval)
7233 goto err_dcf_attr_ver;
Yang, Bo72c4fd32009-10-06 14:20:59 -06007234
7235 rval = driver_create_file(&megasas_pci_driver.driver,
Sumit.Saxena@avagotech.com09fced12015-04-23 16:31:54 +05307236 &driver_attr_release_date);
7237 if (rval)
7238 goto err_dcf_rel_date;
7239
7240 rval = driver_create_file(&megasas_pci_driver.driver,
Yang, Bo72c4fd32009-10-06 14:20:59 -06007241 &driver_attr_support_poll_for_event);
7242 if (rval)
7243 goto err_dcf_support_poll_for_event;
7244
Jeff Garzik83aabc12006-10-04 06:34:03 -04007245 rval = driver_create_file(&megasas_pci_driver.driver,
7246 &driver_attr_dbg_lvl);
7247 if (rval)
7248 goto err_dcf_dbg_lvl;
bo yangad84db22007-11-09 04:40:16 -05007249 rval = driver_create_file(&megasas_pci_driver.driver,
Yang, Bo837f5fe2010-10-11 06:59:20 -06007250 &driver_attr_support_device_change);
7251 if (rval)
7252 goto err_dcf_support_device_change;
7253
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007254 return rval;
bo yangad84db22007-11-09 04:40:16 -05007255
Yang, Bo837f5fe2010-10-11 06:59:20 -06007256err_dcf_support_device_change:
7257 driver_remove_file(&megasas_pci_driver.driver,
bo yangad84db22007-11-09 04:40:16 -05007258 &driver_attr_dbg_lvl);
Jeff Garzik83aabc12006-10-04 06:34:03 -04007259err_dcf_dbg_lvl:
7260 driver_remove_file(&megasas_pci_driver.driver,
Yang, Bo72c4fd32009-10-06 14:20:59 -06007261 &driver_attr_support_poll_for_event);
Yang, Bo72c4fd32009-10-06 14:20:59 -06007262err_dcf_support_poll_for_event:
Sumit.Saxena@avagotech.com09fced12015-04-23 16:31:54 +05307263 driver_remove_file(&megasas_pci_driver.driver,
7264 &driver_attr_release_date);
7265err_dcf_rel_date:
Jeff Garzik83aabc12006-10-04 06:34:03 -04007266 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
7267err_dcf_attr_ver:
7268 pci_unregister_driver(&megasas_pci_driver);
7269err_pcidrv:
7270 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
adam radford0d490162010-12-14 19:17:17 -08007271 return rval;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007272}
7273
7274/**
7275 * megasas_exit - Driver unload entry point
7276 */
7277static void __exit megasas_exit(void)
7278{
Sumant Patro658dced2006-10-03 13:09:14 -07007279 driver_remove_file(&megasas_pci_driver.driver,
7280 &driver_attr_dbg_lvl);
Jeff Garzik83aabc12006-10-04 06:34:03 -04007281 driver_remove_file(&megasas_pci_driver.driver,
Yang, Bo837f5fe2010-10-11 06:59:20 -06007282 &driver_attr_support_poll_for_event);
7283 driver_remove_file(&megasas_pci_driver.driver,
7284 &driver_attr_support_device_change);
Sumit.Saxena@avagotech.com09fced12015-04-23 16:31:54 +05307285 driver_remove_file(&megasas_pci_driver.driver,
7286 &driver_attr_release_date);
Jeff Garzik83aabc12006-10-04 06:34:03 -04007287 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04007288
7289 pci_unregister_driver(&megasas_pci_driver);
7290 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
7291}
7292
7293module_init(megasas_init);
7294module_exit(megasas_exit);