blob: dab29db3b48ed123b0e3cee025eed1d67303727a [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 *
adam radford3f1530c2010-12-14 18:51:48 -08004 * Copyright (c) 2009-2011 LSI Corporation.
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005 *
adam radford3f1530c2010-12-14 18:51:48 -08006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040010 *
adam radford3f1530c2010-12-14 18:51:48 -080011 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040015 *
adam radford3f1530c2010-12-14 18:51:48 -080016 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040019 *
adam radford3f1530c2010-12-14 18:51:48 -080020 * FILE: megaraid_sas_base.c
21 * Version : v00.00.05.29-rc1
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040022 *
adam radford3f1530c2010-12-14 18:51:48 -080023 * Authors: LSI Corporation
24 * Sreenivas Bagalkote
25 * Sumant Patro
26 * Bo Yang
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040027 *
adam radford3f1530c2010-12-14 18:51:48 -080028 * Send feedback to: <megaraidlinux@lsi.com>
29 *
30 * Mail to: LSI Corporation, 1621 Barber Lane, Milpitas, CA 95035
31 * ATTN: Linuxraid
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>
56#include "megaraid_sas.h"
57
bo yangad84db22007-11-09 04:40:16 -050058/*
59 * poll_mode_io:1- schedule complete completion from q cmd
60 */
61static unsigned int poll_mode_io;
62module_param_named(poll_mode_io, poll_mode_io, int, 0);
63MODULE_PARM_DESC(poll_mode_io,
64 "Complete cmds from IO path, (default=0)");
65
Yang, Bo1fd10682010-10-12 07:18:50 -060066/*
67 * Number of sectors per IO command
68 * Will be set in megasas_init_mfi if user does not provide
69 */
70static unsigned int max_sectors;
71module_param_named(max_sectors, max_sectors, int, 0);
72MODULE_PARM_DESC(max_sectors,
73 "Maximum number of sectors per IO command");
74
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040075MODULE_LICENSE("GPL");
76MODULE_VERSION(MEGASAS_VERSION);
Sumant Patro3d6d1742006-12-29 08:13:54 -080077MODULE_AUTHOR("megaraidlinux@lsi.com");
bo yangf28cd7c2007-11-09 04:44:56 -050078MODULE_DESCRIPTION("LSI MegaRAID SAS Driver");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040079
bo yang39a98552010-09-22 22:36:29 -040080static int megasas_transition_to_ready(struct megasas_instance *instance);
81static int megasas_get_pd_list(struct megasas_instance *instance);
82static int megasas_issue_init_mfi(struct megasas_instance *instance);
83static int megasas_register_aen(struct megasas_instance *instance,
84 u32 seq_num, u32 class_locale_word);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040085/*
86 * PCI ID table for all supported controllers
87 */
88static struct pci_device_id megasas_pci_table[] = {
89
Henrik Kretzschmarf3d72712006-08-15 11:17:21 +020090 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1064R)},
91 /* xscale IOP */
92 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078R)},
93 /* ppc IOP */
bo yangaf7a5642008-03-17 04:13:07 -040094 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078DE)},
95 /* ppc IOP */
Yang, Bo6610a6b2008-08-10 12:42:38 -070096 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078GEN2)},
97 /* gen2*/
98 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0079GEN2)},
99 /* gen2*/
Yang, Bo87911122009-10-06 14:31:54 -0600100 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0073SKINNY)},
101 /* skinny*/
102 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0071SKINNY)},
103 /* skinny*/
Henrik Kretzschmarf3d72712006-08-15 11:17:21 +0200104 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_VERDE_ZCR)},
105 /* xscale IOP, vega */
106 {PCI_DEVICE(PCI_VENDOR_ID_DELL, PCI_DEVICE_ID_DELL_PERC5)},
107 /* xscale IOP */
108 {}
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400109};
110
111MODULE_DEVICE_TABLE(pci, megasas_pci_table);
112
113static int megasas_mgmt_majorno;
114static struct megasas_mgmt_info megasas_mgmt_info;
115static struct fasync_struct *megasas_async_queue;
Arjan van de Ven0b950672006-01-11 13:16:10 +0100116static DEFINE_MUTEX(megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400117
Yang, Boc3518832009-10-06 14:18:02 -0600118static int megasas_poll_wait_aen;
119static DECLARE_WAIT_QUEUE_HEAD(megasas_poll_wait);
Yang, Bo72c4fd32009-10-06 14:20:59 -0600120static u32 support_poll_for_event;
Sumant Patro658dced2006-10-03 13:09:14 -0700121static u32 megasas_dbg_lvl;
Yang, Bo837f5fe2010-10-11 06:59:20 -0600122static u32 support_device_change;
Sumant Patro658dced2006-10-03 13:09:14 -0700123
Yang, Boc3518832009-10-06 14:18:02 -0600124/* define lock for aen poll */
125spinlock_t poll_aen_lock;
126
bo yang7343eb62007-11-09 04:35:44 -0500127static void
128megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd,
129 u8 alt_status);
130
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400131/**
132 * megasas_get_cmd - Get a command from the free pool
133 * @instance: Adapter soft state
134 *
135 * Returns a free command from the pool
136 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800137static struct megasas_cmd *megasas_get_cmd(struct megasas_instance
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400138 *instance)
139{
140 unsigned long flags;
141 struct megasas_cmd *cmd = NULL;
142
143 spin_lock_irqsave(&instance->cmd_pool_lock, flags);
144
145 if (!list_empty(&instance->cmd_pool)) {
146 cmd = list_entry((&instance->cmd_pool)->next,
147 struct megasas_cmd, list);
148 list_del_init(&cmd->list);
149 } else {
150 printk(KERN_ERR "megasas: Command pool empty!\n");
151 }
152
153 spin_unlock_irqrestore(&instance->cmd_pool_lock, flags);
154 return cmd;
155}
156
157/**
158 * megasas_return_cmd - Return a cmd to free command pool
159 * @instance: Adapter soft state
160 * @cmd: Command packet to be returned to free command pool
161 */
162static inline void
163megasas_return_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd)
164{
165 unsigned long flags;
166
167 spin_lock_irqsave(&instance->cmd_pool_lock, flags);
168
169 cmd->scmd = NULL;
170 list_add_tail(&cmd->list, &instance->cmd_pool);
171
172 spin_unlock_irqrestore(&instance->cmd_pool_lock, flags);
173}
174
Sumant Patro1341c932006-01-25 12:02:40 -0800175
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400176/**
adam radford0d490162010-12-14 19:17:17 -0800177* The following functions are defined for xscale
Sumant Patro1341c932006-01-25 12:02:40 -0800178* (deviceid : 1064R, PERC5) controllers
179*/
180
181/**
182 * megasas_enable_intr_xscale - Enables interrupts
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400183 * @regs: MFI register set
184 */
185static inline void
Sumant Patro1341c932006-01-25 12:02:40 -0800186megasas_enable_intr_xscale(struct megasas_register_set __iomem * regs)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400187{
bo yang39a98552010-09-22 22:36:29 -0400188 writel(0, &(regs)->outbound_intr_mask);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400189
190 /* Dummy readl to force pci flush */
191 readl(&regs->outbound_intr_mask);
192}
193
194/**
Sumant Patrob274cab2006-10-03 12:52:12 -0700195 * megasas_disable_intr_xscale -Disables interrupt
196 * @regs: MFI register set
197 */
198static inline void
199megasas_disable_intr_xscale(struct megasas_register_set __iomem * regs)
200{
201 u32 mask = 0x1f;
202 writel(mask, &regs->outbound_intr_mask);
203 /* Dummy readl to force pci flush */
204 readl(&regs->outbound_intr_mask);
205}
206
207/**
Sumant Patro1341c932006-01-25 12:02:40 -0800208 * megasas_read_fw_status_reg_xscale - returns the current FW status value
209 * @regs: MFI register set
210 */
211static u32
212megasas_read_fw_status_reg_xscale(struct megasas_register_set __iomem * regs)
213{
214 return readl(&(regs)->outbound_msg_0);
215}
216/**
217 * megasas_clear_interrupt_xscale - Check & clear interrupt
218 * @regs: MFI register set
219 */
adam radford0d490162010-12-14 19:17:17 -0800220static int
Sumant Patro1341c932006-01-25 12:02:40 -0800221megasas_clear_intr_xscale(struct megasas_register_set __iomem * regs)
222{
223 u32 status;
bo yang39a98552010-09-22 22:36:29 -0400224 u32 mfiStatus = 0;
Sumant Patro1341c932006-01-25 12:02:40 -0800225 /*
226 * Check if it is our interrupt
227 */
228 status = readl(&regs->outbound_intr_status);
229
bo yang39a98552010-09-22 22:36:29 -0400230 if (status & MFI_OB_INTR_STATUS_MASK)
231 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
232 if (status & MFI_XSCALE_OMR0_CHANGE_INTERRUPT)
233 mfiStatus |= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
Sumant Patro1341c932006-01-25 12:02:40 -0800234
235 /*
236 * Clear the interrupt by writing back the same value
237 */
bo yang39a98552010-09-22 22:36:29 -0400238 if (mfiStatus)
239 writel(status, &regs->outbound_intr_status);
Sumant Patro1341c932006-01-25 12:02:40 -0800240
Yang, Bo06f579d2008-08-10 12:42:37 -0700241 /* Dummy readl to force pci flush */
242 readl(&regs->outbound_intr_status);
243
bo yang39a98552010-09-22 22:36:29 -0400244 return mfiStatus;
Sumant Patro1341c932006-01-25 12:02:40 -0800245}
246
247/**
248 * megasas_fire_cmd_xscale - Sends command to the FW
249 * @frame_phys_addr : Physical address of cmd
250 * @frame_count : Number of frames for the command
251 * @regs : MFI register set
252 */
adam radford0d490162010-12-14 19:17:17 -0800253static inline void
Yang, Bo0c79e682009-10-06 14:47:35 -0600254megasas_fire_cmd_xscale(struct megasas_instance *instance,
255 dma_addr_t frame_phys_addr,
256 u32 frame_count,
257 struct megasas_register_set __iomem *regs)
Sumant Patro1341c932006-01-25 12:02:40 -0800258{
bo yang39a98552010-09-22 22:36:29 -0400259 unsigned long flags;
260 spin_lock_irqsave(&instance->hba_lock, flags);
Sumant Patro1341c932006-01-25 12:02:40 -0800261 writel((frame_phys_addr >> 3)|(frame_count),
262 &(regs)->inbound_queue_port);
bo yang39a98552010-09-22 22:36:29 -0400263 spin_unlock_irqrestore(&instance->hba_lock, flags);
264}
265
266/**
267 * megasas_adp_reset_xscale - For controller reset
268 * @regs: MFI register set
269 */
270static int
271megasas_adp_reset_xscale(struct megasas_instance *instance,
272 struct megasas_register_set __iomem *regs)
273{
274 u32 i;
275 u32 pcidata;
276 writel(MFI_ADP_RESET, &regs->inbound_doorbell);
277
278 for (i = 0; i < 3; i++)
279 msleep(1000); /* sleep for 3 secs */
280 pcidata = 0;
281 pci_read_config_dword(instance->pdev, MFI_1068_PCSR_OFFSET, &pcidata);
282 printk(KERN_NOTICE "pcidata = %x\n", pcidata);
283 if (pcidata & 0x2) {
284 printk(KERN_NOTICE "mfi 1068 offset read=%x\n", pcidata);
285 pcidata &= ~0x2;
286 pci_write_config_dword(instance->pdev,
287 MFI_1068_PCSR_OFFSET, pcidata);
288
289 for (i = 0; i < 2; i++)
290 msleep(1000); /* need to wait 2 secs again */
291
292 pcidata = 0;
293 pci_read_config_dword(instance->pdev,
294 MFI_1068_FW_HANDSHAKE_OFFSET, &pcidata);
295 printk(KERN_NOTICE "1068 offset handshake read=%x\n", pcidata);
296 if ((pcidata & 0xffff0000) == MFI_1068_FW_READY) {
297 printk(KERN_NOTICE "1068 offset pcidt=%x\n", pcidata);
298 pcidata = 0;
299 pci_write_config_dword(instance->pdev,
300 MFI_1068_FW_HANDSHAKE_OFFSET, pcidata);
301 }
302 }
303 return 0;
304}
305
306/**
307 * megasas_check_reset_xscale - For controller reset check
308 * @regs: MFI register set
309 */
310static int
311megasas_check_reset_xscale(struct megasas_instance *instance,
312 struct megasas_register_set __iomem *regs)
313{
314 u32 consumer;
315 consumer = *instance->consumer;
316
317 if ((instance->adprecovery != MEGASAS_HBA_OPERATIONAL) &&
318 (*instance->consumer == MEGASAS_ADPRESET_INPROG_SIGN)) {
319 return 1;
320 }
321 return 0;
Sumant Patro1341c932006-01-25 12:02:40 -0800322}
323
324static struct megasas_instance_template megasas_instance_template_xscale = {
325
326 .fire_cmd = megasas_fire_cmd_xscale,
327 .enable_intr = megasas_enable_intr_xscale,
Sumant Patrob274cab2006-10-03 12:52:12 -0700328 .disable_intr = megasas_disable_intr_xscale,
Sumant Patro1341c932006-01-25 12:02:40 -0800329 .clear_intr = megasas_clear_intr_xscale,
330 .read_fw_status_reg = megasas_read_fw_status_reg_xscale,
bo yang39a98552010-09-22 22:36:29 -0400331 .adp_reset = megasas_adp_reset_xscale,
332 .check_reset = megasas_check_reset_xscale,
Sumant Patro1341c932006-01-25 12:02:40 -0800333};
334
335/**
adam radford0d490162010-12-14 19:17:17 -0800336* This is the end of set of functions & definitions specific
Sumant Patro1341c932006-01-25 12:02:40 -0800337* to xscale (deviceid : 1064R, PERC5) controllers
338*/
339
340/**
adam radford0d490162010-12-14 19:17:17 -0800341* The following functions are defined for ppc (deviceid : 0x60)
Sumant Patrof9876f02006-02-03 15:34:35 -0800342* controllers
343*/
344
345/**
346 * megasas_enable_intr_ppc - Enables interrupts
347 * @regs: MFI register set
348 */
349static inline void
350megasas_enable_intr_ppc(struct megasas_register_set __iomem * regs)
351{
352 writel(0xFFFFFFFF, &(regs)->outbound_doorbell_clear);
adam radford0d490162010-12-14 19:17:17 -0800353
bo yang39a98552010-09-22 22:36:29 -0400354 writel(~0x80000000, &(regs)->outbound_intr_mask);
Sumant Patrof9876f02006-02-03 15:34:35 -0800355
356 /* Dummy readl to force pci flush */
357 readl(&regs->outbound_intr_mask);
358}
359
360/**
Sumant Patrob274cab2006-10-03 12:52:12 -0700361 * megasas_disable_intr_ppc - Disable interrupt
362 * @regs: MFI register set
363 */
364static inline void
365megasas_disable_intr_ppc(struct megasas_register_set __iomem * regs)
366{
367 u32 mask = 0xFFFFFFFF;
368 writel(mask, &regs->outbound_intr_mask);
369 /* Dummy readl to force pci flush */
370 readl(&regs->outbound_intr_mask);
371}
372
373/**
Sumant Patrof9876f02006-02-03 15:34:35 -0800374 * megasas_read_fw_status_reg_ppc - returns the current FW status value
375 * @regs: MFI register set
376 */
377static u32
378megasas_read_fw_status_reg_ppc(struct megasas_register_set __iomem * regs)
379{
380 return readl(&(regs)->outbound_scratch_pad);
381}
382
383/**
384 * megasas_clear_interrupt_ppc - Check & clear interrupt
385 * @regs: MFI register set
386 */
adam radford0d490162010-12-14 19:17:17 -0800387static int
Sumant Patrof9876f02006-02-03 15:34:35 -0800388megasas_clear_intr_ppc(struct megasas_register_set __iomem * regs)
389{
390 u32 status;
391 /*
392 * Check if it is our interrupt
393 */
394 status = readl(&regs->outbound_intr_status);
395
396 if (!(status & MFI_REPLY_1078_MESSAGE_INTERRUPT)) {
bo yang39a98552010-09-22 22:36:29 -0400397 return 0;
Sumant Patrof9876f02006-02-03 15:34:35 -0800398 }
399
400 /*
401 * Clear the interrupt by writing back the same value
402 */
403 writel(status, &regs->outbound_doorbell_clear);
404
Yang, Bo06f579d2008-08-10 12:42:37 -0700405 /* Dummy readl to force pci flush */
406 readl(&regs->outbound_doorbell_clear);
407
bo yang39a98552010-09-22 22:36:29 -0400408 return 1;
Sumant Patrof9876f02006-02-03 15:34:35 -0800409}
410/**
411 * megasas_fire_cmd_ppc - Sends command to the FW
412 * @frame_phys_addr : Physical address of cmd
413 * @frame_count : Number of frames for the command
414 * @regs : MFI register set
415 */
adam radford0d490162010-12-14 19:17:17 -0800416static inline void
Yang, Bo0c79e682009-10-06 14:47:35 -0600417megasas_fire_cmd_ppc(struct megasas_instance *instance,
418 dma_addr_t frame_phys_addr,
419 u32 frame_count,
420 struct megasas_register_set __iomem *regs)
Sumant Patrof9876f02006-02-03 15:34:35 -0800421{
bo yang39a98552010-09-22 22:36:29 -0400422 unsigned long flags;
423 spin_lock_irqsave(&instance->hba_lock, flags);
adam radford0d490162010-12-14 19:17:17 -0800424 writel((frame_phys_addr | (frame_count<<1))|1,
Sumant Patrof9876f02006-02-03 15:34:35 -0800425 &(regs)->inbound_queue_port);
bo yang39a98552010-09-22 22:36:29 -0400426 spin_unlock_irqrestore(&instance->hba_lock, flags);
Sumant Patrof9876f02006-02-03 15:34:35 -0800427}
428
bo yang39a98552010-09-22 22:36:29 -0400429/**
430 * megasas_adp_reset_ppc - For controller reset
431 * @regs: MFI register set
432 */
433static int
434megasas_adp_reset_ppc(struct megasas_instance *instance,
435 struct megasas_register_set __iomem *regs)
436{
437 return 0;
438}
439
440/**
441 * megasas_check_reset_ppc - For controller reset check
442 * @regs: MFI register set
443 */
444static int
445megasas_check_reset_ppc(struct megasas_instance *instance,
446 struct megasas_register_set __iomem *regs)
447{
448 return 0;
449}
Sumant Patrof9876f02006-02-03 15:34:35 -0800450static struct megasas_instance_template megasas_instance_template_ppc = {
adam radford0d490162010-12-14 19:17:17 -0800451
Sumant Patrof9876f02006-02-03 15:34:35 -0800452 .fire_cmd = megasas_fire_cmd_ppc,
453 .enable_intr = megasas_enable_intr_ppc,
Sumant Patrob274cab2006-10-03 12:52:12 -0700454 .disable_intr = megasas_disable_intr_ppc,
Sumant Patrof9876f02006-02-03 15:34:35 -0800455 .clear_intr = megasas_clear_intr_ppc,
456 .read_fw_status_reg = megasas_read_fw_status_reg_ppc,
bo yang39a98552010-09-22 22:36:29 -0400457 .adp_reset = megasas_adp_reset_ppc,
458 .check_reset = megasas_check_reset_ppc,
Sumant Patrof9876f02006-02-03 15:34:35 -0800459};
460
461/**
Yang, Bo87911122009-10-06 14:31:54 -0600462 * megasas_enable_intr_skinny - Enables interrupts
463 * @regs: MFI register set
464 */
465static inline void
466megasas_enable_intr_skinny(struct megasas_register_set __iomem *regs)
467{
468 writel(0xFFFFFFFF, &(regs)->outbound_intr_mask);
469
470 writel(~MFI_SKINNY_ENABLE_INTERRUPT_MASK, &(regs)->outbound_intr_mask);
471
472 /* Dummy readl to force pci flush */
473 readl(&regs->outbound_intr_mask);
474}
475
476/**
477 * megasas_disable_intr_skinny - Disables interrupt
478 * @regs: MFI register set
479 */
480static inline void
481megasas_disable_intr_skinny(struct megasas_register_set __iomem *regs)
482{
483 u32 mask = 0xFFFFFFFF;
484 writel(mask, &regs->outbound_intr_mask);
485 /* Dummy readl to force pci flush */
486 readl(&regs->outbound_intr_mask);
487}
488
489/**
490 * megasas_read_fw_status_reg_skinny - returns the current FW status value
491 * @regs: MFI register set
492 */
493static u32
494megasas_read_fw_status_reg_skinny(struct megasas_register_set __iomem *regs)
495{
496 return readl(&(regs)->outbound_scratch_pad);
497}
498
499/**
500 * megasas_clear_interrupt_skinny - Check & clear interrupt
501 * @regs: MFI register set
502 */
503static int
504megasas_clear_intr_skinny(struct megasas_register_set __iomem *regs)
505{
506 u32 status;
507 /*
508 * Check if it is our interrupt
509 */
510 status = readl(&regs->outbound_intr_status);
511
512 if (!(status & MFI_SKINNY_ENABLE_INTERRUPT_MASK)) {
bo yang39a98552010-09-22 22:36:29 -0400513 return 0;
Yang, Bo87911122009-10-06 14:31:54 -0600514 }
515
516 /*
517 * Clear the interrupt by writing back the same value
518 */
519 writel(status, &regs->outbound_intr_status);
520
521 /*
522 * dummy read to flush PCI
523 */
524 readl(&regs->outbound_intr_status);
525
bo yang39a98552010-09-22 22:36:29 -0400526 return 1;
Yang, Bo87911122009-10-06 14:31:54 -0600527}
528
529/**
530 * megasas_fire_cmd_skinny - Sends command to the FW
531 * @frame_phys_addr : Physical address of cmd
532 * @frame_count : Number of frames for the command
533 * @regs : MFI register set
534 */
535static inline void
Yang, Bo0c79e682009-10-06 14:47:35 -0600536megasas_fire_cmd_skinny(struct megasas_instance *instance,
537 dma_addr_t frame_phys_addr,
538 u32 frame_count,
Yang, Bo87911122009-10-06 14:31:54 -0600539 struct megasas_register_set __iomem *regs)
540{
Yang, Bo0c79e682009-10-06 14:47:35 -0600541 unsigned long flags;
bo yang39a98552010-09-22 22:36:29 -0400542 spin_lock_irqsave(&instance->hba_lock, flags);
Yang, Bo87911122009-10-06 14:31:54 -0600543 writel(0, &(regs)->inbound_high_queue_port);
544 writel((frame_phys_addr | (frame_count<<1))|1,
545 &(regs)->inbound_low_queue_port);
bo yang39a98552010-09-22 22:36:29 -0400546 spin_unlock_irqrestore(&instance->hba_lock, flags);
547}
548
549/**
550 * megasas_adp_reset_skinny - For controller reset
551 * @regs: MFI register set
552 */
553static int
554megasas_adp_reset_skinny(struct megasas_instance *instance,
555 struct megasas_register_set __iomem *regs)
556{
557 return 0;
558}
559
560/**
561 * megasas_check_reset_skinny - For controller reset check
562 * @regs: MFI register set
563 */
564static int
565megasas_check_reset_skinny(struct megasas_instance *instance,
566 struct megasas_register_set __iomem *regs)
567{
568 return 0;
Yang, Bo87911122009-10-06 14:31:54 -0600569}
570
571static struct megasas_instance_template megasas_instance_template_skinny = {
572
573 .fire_cmd = megasas_fire_cmd_skinny,
574 .enable_intr = megasas_enable_intr_skinny,
575 .disable_intr = megasas_disable_intr_skinny,
576 .clear_intr = megasas_clear_intr_skinny,
577 .read_fw_status_reg = megasas_read_fw_status_reg_skinny,
bo yang39a98552010-09-22 22:36:29 -0400578 .adp_reset = megasas_adp_reset_skinny,
579 .check_reset = megasas_check_reset_skinny,
Yang, Bo87911122009-10-06 14:31:54 -0600580};
581
582
583/**
Yang, Bo6610a6b2008-08-10 12:42:38 -0700584* The following functions are defined for gen2 (deviceid : 0x78 0x79)
585* controllers
586*/
587
588/**
589 * megasas_enable_intr_gen2 - Enables interrupts
590 * @regs: MFI register set
591 */
592static inline void
593megasas_enable_intr_gen2(struct megasas_register_set __iomem *regs)
594{
595 writel(0xFFFFFFFF, &(regs)->outbound_doorbell_clear);
596
597 /* write ~0x00000005 (4 & 1) to the intr mask*/
598 writel(~MFI_GEN2_ENABLE_INTERRUPT_MASK, &(regs)->outbound_intr_mask);
599
600 /* Dummy readl to force pci flush */
601 readl(&regs->outbound_intr_mask);
602}
603
604/**
605 * megasas_disable_intr_gen2 - Disables interrupt
606 * @regs: MFI register set
607 */
608static inline void
609megasas_disable_intr_gen2(struct megasas_register_set __iomem *regs)
610{
611 u32 mask = 0xFFFFFFFF;
612 writel(mask, &regs->outbound_intr_mask);
613 /* Dummy readl to force pci flush */
614 readl(&regs->outbound_intr_mask);
615}
616
617/**
618 * megasas_read_fw_status_reg_gen2 - returns the current FW status value
619 * @regs: MFI register set
620 */
621static u32
622megasas_read_fw_status_reg_gen2(struct megasas_register_set __iomem *regs)
623{
624 return readl(&(regs)->outbound_scratch_pad);
625}
626
627/**
628 * megasas_clear_interrupt_gen2 - Check & clear interrupt
629 * @regs: MFI register set
630 */
631static int
632megasas_clear_intr_gen2(struct megasas_register_set __iomem *regs)
633{
634 u32 status;
bo yang39a98552010-09-22 22:36:29 -0400635 u32 mfiStatus = 0;
Yang, Bo6610a6b2008-08-10 12:42:38 -0700636 /*
637 * Check if it is our interrupt
638 */
639 status = readl(&regs->outbound_intr_status);
640
bo yang39a98552010-09-22 22:36:29 -0400641 if (status & MFI_GEN2_ENABLE_INTERRUPT_MASK) {
642 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
643 }
644 if (status & MFI_G2_OUTBOUND_DOORBELL_CHANGE_INTERRUPT) {
645 mfiStatus |= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
646 }
Yang, Bo6610a6b2008-08-10 12:42:38 -0700647
648 /*
649 * Clear the interrupt by writing back the same value
650 */
bo yang39a98552010-09-22 22:36:29 -0400651 if (mfiStatus)
652 writel(status, &regs->outbound_doorbell_clear);
Yang, Bo6610a6b2008-08-10 12:42:38 -0700653
654 /* Dummy readl to force pci flush */
655 readl(&regs->outbound_intr_status);
656
bo yang39a98552010-09-22 22:36:29 -0400657 return mfiStatus;
Yang, Bo6610a6b2008-08-10 12:42:38 -0700658}
659/**
660 * megasas_fire_cmd_gen2 - Sends command to the FW
661 * @frame_phys_addr : Physical address of cmd
662 * @frame_count : Number of frames for the command
663 * @regs : MFI register set
664 */
665static inline void
Yang, Bo0c79e682009-10-06 14:47:35 -0600666megasas_fire_cmd_gen2(struct megasas_instance *instance,
667 dma_addr_t frame_phys_addr,
668 u32 frame_count,
Yang, Bo6610a6b2008-08-10 12:42:38 -0700669 struct megasas_register_set __iomem *regs)
670{
bo yang39a98552010-09-22 22:36:29 -0400671 unsigned long flags;
672 spin_lock_irqsave(&instance->hba_lock, flags);
Yang, Bo6610a6b2008-08-10 12:42:38 -0700673 writel((frame_phys_addr | (frame_count<<1))|1,
674 &(regs)->inbound_queue_port);
bo yang39a98552010-09-22 22:36:29 -0400675 spin_unlock_irqrestore(&instance->hba_lock, flags);
676}
677
678/**
679 * megasas_adp_reset_gen2 - For controller reset
680 * @regs: MFI register set
681 */
682static int
683megasas_adp_reset_gen2(struct megasas_instance *instance,
684 struct megasas_register_set __iomem *reg_set)
685{
686 u32 retry = 0 ;
687 u32 HostDiag;
688
689 writel(0, &reg_set->seq_offset);
690 writel(4, &reg_set->seq_offset);
691 writel(0xb, &reg_set->seq_offset);
692 writel(2, &reg_set->seq_offset);
693 writel(7, &reg_set->seq_offset);
694 writel(0xd, &reg_set->seq_offset);
695 msleep(1000);
696
697 HostDiag = (u32)readl(&reg_set->host_diag);
698
699 while ( !( HostDiag & DIAG_WRITE_ENABLE) ) {
700 msleep(100);
701 HostDiag = (u32)readl(&reg_set->host_diag);
702 printk(KERN_NOTICE "RESETGEN2: retry=%x, hostdiag=%x\n",
703 retry, HostDiag);
704
705 if (retry++ >= 100)
706 return 1;
707
708 }
709
710 printk(KERN_NOTICE "ADP_RESET_GEN2: HostDiag=%x\n", HostDiag);
711
712 writel((HostDiag | DIAG_RESET_ADAPTER), &reg_set->host_diag);
713
714 ssleep(10);
715
716 HostDiag = (u32)readl(&reg_set->host_diag);
717 while ( ( HostDiag & DIAG_RESET_ADAPTER) ) {
718 msleep(100);
719 HostDiag = (u32)readl(&reg_set->host_diag);
720 printk(KERN_NOTICE "RESET_GEN2: retry=%x, hostdiag=%x\n",
721 retry, HostDiag);
722
723 if (retry++ >= 1000)
724 return 1;
725
726 }
727 return 0;
728}
729
730/**
731 * megasas_check_reset_gen2 - For controller reset check
732 * @regs: MFI register set
733 */
734static int
735megasas_check_reset_gen2(struct megasas_instance *instance,
736 struct megasas_register_set __iomem *regs)
737{
Yang, Bo707e09b2010-10-12 07:20:27 -0600738 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL) {
739 return 1;
740 }
741
bo yang39a98552010-09-22 22:36:29 -0400742 return 0;
Yang, Bo6610a6b2008-08-10 12:42:38 -0700743}
744
745static struct megasas_instance_template megasas_instance_template_gen2 = {
746
747 .fire_cmd = megasas_fire_cmd_gen2,
748 .enable_intr = megasas_enable_intr_gen2,
749 .disable_intr = megasas_disable_intr_gen2,
750 .clear_intr = megasas_clear_intr_gen2,
751 .read_fw_status_reg = megasas_read_fw_status_reg_gen2,
bo yang39a98552010-09-22 22:36:29 -0400752 .adp_reset = megasas_adp_reset_gen2,
753 .check_reset = megasas_check_reset_gen2,
Yang, Bo6610a6b2008-08-10 12:42:38 -0700754};
755
756/**
Sumant Patrof9876f02006-02-03 15:34:35 -0800757* This is the end of set of functions & definitions
bo yang39a98552010-09-22 22:36:29 -0400758* specific to gen2 (deviceid : 0x78, 0x79) controllers
Sumant Patrof9876f02006-02-03 15:34:35 -0800759*/
760
761/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400762 * megasas_issue_polled - Issues a polling command
763 * @instance: Adapter soft state
adam radford0d490162010-12-14 19:17:17 -0800764 * @cmd: Command packet to be issued
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400765 *
766 * For polling, MFI requires the cmd_status to be set to 0xFF before posting.
767 */
768static int
769megasas_issue_polled(struct megasas_instance *instance, struct megasas_cmd *cmd)
770{
771 int i;
772 u32 msecs = MFI_POLL_TIMEOUT_SECS * 1000;
773
774 struct megasas_header *frame_hdr = &cmd->frame->hdr;
775
776 frame_hdr->cmd_status = 0xFF;
777 frame_hdr->flags |= MFI_FRAME_DONT_POST_IN_REPLY_QUEUE;
778
779 /*
780 * Issue the frame using inbound queue port
781 */
Yang, Bo0c79e682009-10-06 14:47:35 -0600782 instance->instancet->fire_cmd(instance,
783 cmd->frame_phys_addr, 0, instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400784
785 /*
786 * Wait for cmd_status to change
787 */
788 for (i = 0; (i < msecs) && (frame_hdr->cmd_status == 0xff); i++) {
789 rmb();
790 msleep(1);
791 }
792
793 if (frame_hdr->cmd_status == 0xff)
794 return -ETIME;
795
796 return 0;
797}
798
799/**
800 * megasas_issue_blocked_cmd - Synchronous wrapper around regular FW cmds
801 * @instance: Adapter soft state
802 * @cmd: Command to be issued
803 *
804 * This function waits on an event for the command to be returned from ISR.
Sumant Patro2a3681e2006-10-03 13:19:21 -0700805 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400806 * Used to issue ioctl commands.
807 */
808static int
809megasas_issue_blocked_cmd(struct megasas_instance *instance,
810 struct megasas_cmd *cmd)
811{
812 cmd->cmd_status = ENODATA;
813
Yang, Bo0c79e682009-10-06 14:47:35 -0600814 instance->instancet->fire_cmd(instance,
815 cmd->frame_phys_addr, 0, instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400816
bo yang39a98552010-09-22 22:36:29 -0400817 wait_event(instance->int_cmd_wait_q, cmd->cmd_status != ENODATA);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400818
819 return 0;
820}
821
822/**
823 * megasas_issue_blocked_abort_cmd - Aborts previously issued cmd
824 * @instance: Adapter soft state
825 * @cmd_to_abort: Previously issued cmd to be aborted
826 *
827 * MFI firmware can abort previously issued AEN comamnd (automatic event
828 * notification). The megasas_issue_blocked_abort_cmd() issues such abort
Sumant Patro2a3681e2006-10-03 13:19:21 -0700829 * cmd and waits for return status.
830 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400831 */
832static int
833megasas_issue_blocked_abort_cmd(struct megasas_instance *instance,
834 struct megasas_cmd *cmd_to_abort)
835{
836 struct megasas_cmd *cmd;
837 struct megasas_abort_frame *abort_fr;
838
839 cmd = megasas_get_cmd(instance);
840
841 if (!cmd)
842 return -1;
843
844 abort_fr = &cmd->frame->abort;
845
846 /*
847 * Prepare and issue the abort frame
848 */
849 abort_fr->cmd = MFI_CMD_ABORT;
850 abort_fr->cmd_status = 0xFF;
851 abort_fr->flags = 0;
852 abort_fr->abort_context = cmd_to_abort->index;
853 abort_fr->abort_mfi_phys_addr_lo = cmd_to_abort->frame_phys_addr;
854 abort_fr->abort_mfi_phys_addr_hi = 0;
855
856 cmd->sync_cmd = 1;
857 cmd->cmd_status = 0xFF;
858
Yang, Bo0c79e682009-10-06 14:47:35 -0600859 instance->instancet->fire_cmd(instance,
860 cmd->frame_phys_addr, 0, instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400861
862 /*
863 * Wait for this cmd to complete
864 */
bo yang39a98552010-09-22 22:36:29 -0400865 wait_event(instance->abort_cmd_wait_q, cmd->cmd_status != 0xFF);
866 cmd->sync_cmd = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400867
868 megasas_return_cmd(instance, cmd);
869 return 0;
870}
871
872/**
873 * megasas_make_sgl32 - Prepares 32-bit SGL
874 * @instance: Adapter soft state
875 * @scp: SCSI command from the mid-layer
876 * @mfi_sgl: SGL to be filled in
877 *
878 * If successful, this function returns the number of SG elements. Otherwise,
879 * it returnes -1.
880 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800881static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400882megasas_make_sgl32(struct megasas_instance *instance, struct scsi_cmnd *scp,
883 union megasas_sgl *mfi_sgl)
884{
885 int i;
886 int sge_count;
887 struct scatterlist *os_sgl;
888
FUJITA Tomonori155d98f2007-05-26 05:04:08 +0900889 sge_count = scsi_dma_map(scp);
890 BUG_ON(sge_count < 0);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400891
FUJITA Tomonori155d98f2007-05-26 05:04:08 +0900892 if (sge_count) {
893 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
894 mfi_sgl->sge32[i].length = sg_dma_len(os_sgl);
895 mfi_sgl->sge32[i].phys_addr = sg_dma_address(os_sgl);
896 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400897 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400898 return sge_count;
899}
900
901/**
902 * megasas_make_sgl64 - Prepares 64-bit SGL
903 * @instance: Adapter soft state
904 * @scp: SCSI command from the mid-layer
905 * @mfi_sgl: SGL to be filled in
906 *
907 * If successful, this function returns the number of SG elements. Otherwise,
908 * it returnes -1.
909 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800910static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400911megasas_make_sgl64(struct megasas_instance *instance, struct scsi_cmnd *scp,
912 union megasas_sgl *mfi_sgl)
913{
914 int i;
915 int sge_count;
916 struct scatterlist *os_sgl;
917
FUJITA Tomonori155d98f2007-05-26 05:04:08 +0900918 sge_count = scsi_dma_map(scp);
919 BUG_ON(sge_count < 0);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400920
FUJITA Tomonori155d98f2007-05-26 05:04:08 +0900921 if (sge_count) {
922 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
923 mfi_sgl->sge64[i].length = sg_dma_len(os_sgl);
924 mfi_sgl->sge64[i].phys_addr = sg_dma_address(os_sgl);
925 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400926 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400927 return sge_count;
928}
929
Yang, Bof4c9a132009-10-06 14:43:28 -0600930/**
931 * megasas_make_sgl_skinny - Prepares IEEE SGL
932 * @instance: Adapter soft state
933 * @scp: SCSI command from the mid-layer
934 * @mfi_sgl: SGL to be filled in
935 *
936 * If successful, this function returns the number of SG elements. Otherwise,
937 * it returnes -1.
938 */
939static int
940megasas_make_sgl_skinny(struct megasas_instance *instance,
941 struct scsi_cmnd *scp, union megasas_sgl *mfi_sgl)
942{
943 int i;
944 int sge_count;
945 struct scatterlist *os_sgl;
946
947 sge_count = scsi_dma_map(scp);
948
949 if (sge_count) {
950 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
951 mfi_sgl->sge_skinny[i].length = sg_dma_len(os_sgl);
952 mfi_sgl->sge_skinny[i].phys_addr =
953 sg_dma_address(os_sgl);
Yang, Bo707e09b2010-10-12 07:20:27 -0600954 mfi_sgl->sge_skinny[i].flag = 0;
Yang, Bof4c9a132009-10-06 14:43:28 -0600955 }
956 }
957 return sge_count;
958}
959
Sumant Patrob1df99d2006-10-03 12:40:47 -0700960 /**
961 * megasas_get_frame_count - Computes the number of frames
bo yangd532dbe2008-03-17 03:36:43 -0400962 * @frame_type : type of frame- io or pthru frame
Sumant Patrob1df99d2006-10-03 12:40:47 -0700963 * @sge_count : number of sg elements
964 *
965 * Returns the number of frames required for numnber of sge's (sge_count)
966 */
967
Yang, Bof4c9a132009-10-06 14:43:28 -0600968static u32 megasas_get_frame_count(struct megasas_instance *instance,
969 u8 sge_count, u8 frame_type)
Sumant Patrob1df99d2006-10-03 12:40:47 -0700970{
971 int num_cnt;
972 int sge_bytes;
973 u32 sge_sz;
974 u32 frame_count=0;
975
976 sge_sz = (IS_DMA64) ? sizeof(struct megasas_sge64) :
977 sizeof(struct megasas_sge32);
978
Yang, Bof4c9a132009-10-06 14:43:28 -0600979 if (instance->flag_ieee) {
980 sge_sz = sizeof(struct megasas_sge_skinny);
981 }
982
Sumant Patrob1df99d2006-10-03 12:40:47 -0700983 /*
bo yangd532dbe2008-03-17 03:36:43 -0400984 * Main frame can contain 2 SGEs for 64-bit SGLs and
985 * 3 SGEs for 32-bit SGLs for ldio &
986 * 1 SGEs for 64-bit SGLs and
987 * 2 SGEs for 32-bit SGLs for pthru frame
988 */
989 if (unlikely(frame_type == PTHRU_FRAME)) {
Yang, Bof4c9a132009-10-06 14:43:28 -0600990 if (instance->flag_ieee == 1) {
991 num_cnt = sge_count - 1;
992 } else if (IS_DMA64)
bo yangd532dbe2008-03-17 03:36:43 -0400993 num_cnt = sge_count - 1;
994 else
995 num_cnt = sge_count - 2;
996 } else {
Yang, Bof4c9a132009-10-06 14:43:28 -0600997 if (instance->flag_ieee == 1) {
998 num_cnt = sge_count - 1;
999 } else if (IS_DMA64)
bo yangd532dbe2008-03-17 03:36:43 -04001000 num_cnt = sge_count - 2;
1001 else
1002 num_cnt = sge_count - 3;
1003 }
Sumant Patrob1df99d2006-10-03 12:40:47 -07001004
1005 if(num_cnt>0){
1006 sge_bytes = sge_sz * num_cnt;
1007
1008 frame_count = (sge_bytes / MEGAMFI_FRAME_SIZE) +
1009 ((sge_bytes % MEGAMFI_FRAME_SIZE) ? 1 : 0) ;
1010 }
1011 /* Main frame */
1012 frame_count +=1;
1013
1014 if (frame_count > 7)
1015 frame_count = 8;
1016 return frame_count;
1017}
1018
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001019/**
1020 * megasas_build_dcdb - Prepares a direct cdb (DCDB) command
1021 * @instance: Adapter soft state
1022 * @scp: SCSI command
1023 * @cmd: Command to be prepared in
1024 *
1025 * This function prepares CDB commands. These are typcially pass-through
1026 * commands to the devices.
1027 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001028static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001029megasas_build_dcdb(struct megasas_instance *instance, struct scsi_cmnd *scp,
1030 struct megasas_cmd *cmd)
1031{
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001032 u32 is_logical;
1033 u32 device_id;
1034 u16 flags = 0;
1035 struct megasas_pthru_frame *pthru;
1036
1037 is_logical = MEGASAS_IS_LOGICAL(scp);
1038 device_id = MEGASAS_DEV_INDEX(instance, scp);
1039 pthru = (struct megasas_pthru_frame *)cmd->frame;
1040
1041 if (scp->sc_data_direction == PCI_DMA_TODEVICE)
1042 flags = MFI_FRAME_DIR_WRITE;
1043 else if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
1044 flags = MFI_FRAME_DIR_READ;
1045 else if (scp->sc_data_direction == PCI_DMA_NONE)
1046 flags = MFI_FRAME_DIR_NONE;
1047
Yang, Bof4c9a132009-10-06 14:43:28 -06001048 if (instance->flag_ieee == 1) {
1049 flags |= MFI_FRAME_IEEE;
1050 }
1051
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001052 /*
1053 * Prepare the DCDB frame
1054 */
1055 pthru->cmd = (is_logical) ? MFI_CMD_LD_SCSI_IO : MFI_CMD_PD_SCSI_IO;
1056 pthru->cmd_status = 0x0;
1057 pthru->scsi_status = 0x0;
1058 pthru->target_id = device_id;
1059 pthru->lun = scp->device->lun;
1060 pthru->cdb_len = scp->cmd_len;
1061 pthru->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07001062 pthru->pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001063 pthru->flags = flags;
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09001064 pthru->data_xfer_len = scsi_bufflen(scp);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001065
1066 memcpy(pthru->cdb, scp->cmnd, scp->cmd_len);
1067
1068 /*
Yang, Bo8d568252009-10-06 14:12:21 -06001069 * If the command is for the tape device, set the
1070 * pthru timeout to the os layer timeout value.
1071 */
1072 if (scp->device->type == TYPE_TAPE) {
1073 if ((scp->request->timeout / HZ) > 0xFFFF)
1074 pthru->timeout = 0xFFFF;
1075 else
1076 pthru->timeout = scp->request->timeout / HZ;
1077 }
1078
1079 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001080 * Construct SGL
1081 */
Yang, Bof4c9a132009-10-06 14:43:28 -06001082 if (instance->flag_ieee == 1) {
1083 pthru->flags |= MFI_FRAME_SGL64;
1084 pthru->sge_count = megasas_make_sgl_skinny(instance, scp,
1085 &pthru->sgl);
1086 } else if (IS_DMA64) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001087 pthru->flags |= MFI_FRAME_SGL64;
1088 pthru->sge_count = megasas_make_sgl64(instance, scp,
1089 &pthru->sgl);
1090 } else
1091 pthru->sge_count = megasas_make_sgl32(instance, scp,
1092 &pthru->sgl);
1093
Yang, Bobdc6fb82009-12-06 08:30:19 -07001094 if (pthru->sge_count > instance->max_num_sge) {
1095 printk(KERN_ERR "megasas: DCDB two many SGE NUM=%x\n",
1096 pthru->sge_count);
1097 return 0;
1098 }
1099
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001100 /*
1101 * Sense info specific
1102 */
1103 pthru->sense_len = SCSI_SENSE_BUFFERSIZE;
1104 pthru->sense_buf_phys_addr_hi = 0;
1105 pthru->sense_buf_phys_addr_lo = cmd->sense_phys_addr;
1106
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001107 /*
1108 * Compute the total number of frames this command consumes. FW uses
1109 * this number to pull sufficient number of frames from host memory.
1110 */
Yang, Bof4c9a132009-10-06 14:43:28 -06001111 cmd->frame_count = megasas_get_frame_count(instance, pthru->sge_count,
bo yangd532dbe2008-03-17 03:36:43 -04001112 PTHRU_FRAME);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001113
1114 return cmd->frame_count;
1115}
1116
1117/**
1118 * megasas_build_ldio - Prepares IOs to logical devices
1119 * @instance: Adapter soft state
1120 * @scp: SCSI command
Anand Gadiyarfd589a82009-07-16 17:13:03 +02001121 * @cmd: Command to be prepared
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001122 *
1123 * Frames (and accompanying SGLs) for regular SCSI IOs use this function.
1124 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001125static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001126megasas_build_ldio(struct megasas_instance *instance, struct scsi_cmnd *scp,
1127 struct megasas_cmd *cmd)
1128{
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001129 u32 device_id;
1130 u8 sc = scp->cmnd[0];
1131 u16 flags = 0;
1132 struct megasas_io_frame *ldio;
1133
1134 device_id = MEGASAS_DEV_INDEX(instance, scp);
1135 ldio = (struct megasas_io_frame *)cmd->frame;
1136
1137 if (scp->sc_data_direction == PCI_DMA_TODEVICE)
1138 flags = MFI_FRAME_DIR_WRITE;
1139 else if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
1140 flags = MFI_FRAME_DIR_READ;
1141
Yang, Bof4c9a132009-10-06 14:43:28 -06001142 if (instance->flag_ieee == 1) {
1143 flags |= MFI_FRAME_IEEE;
1144 }
1145
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001146 /*
Sumant Patrob1df99d2006-10-03 12:40:47 -07001147 * Prepare the Logical IO frame: 2nd bit is zero for all read cmds
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001148 */
1149 ldio->cmd = (sc & 0x02) ? MFI_CMD_LD_WRITE : MFI_CMD_LD_READ;
1150 ldio->cmd_status = 0x0;
1151 ldio->scsi_status = 0x0;
1152 ldio->target_id = device_id;
1153 ldio->timeout = 0;
1154 ldio->reserved_0 = 0;
1155 ldio->pad_0 = 0;
1156 ldio->flags = flags;
1157 ldio->start_lba_hi = 0;
1158 ldio->access_byte = (scp->cmd_len != 6) ? scp->cmnd[1] : 0;
1159
1160 /*
1161 * 6-byte READ(0x08) or WRITE(0x0A) cdb
1162 */
1163 if (scp->cmd_len == 6) {
1164 ldio->lba_count = (u32) scp->cmnd[4];
1165 ldio->start_lba_lo = ((u32) scp->cmnd[1] << 16) |
1166 ((u32) scp->cmnd[2] << 8) | (u32) scp->cmnd[3];
1167
1168 ldio->start_lba_lo &= 0x1FFFFF;
1169 }
1170
1171 /*
1172 * 10-byte READ(0x28) or WRITE(0x2A) cdb
1173 */
1174 else if (scp->cmd_len == 10) {
1175 ldio->lba_count = (u32) scp->cmnd[8] |
1176 ((u32) scp->cmnd[7] << 8);
1177 ldio->start_lba_lo = ((u32) scp->cmnd[2] << 24) |
1178 ((u32) scp->cmnd[3] << 16) |
1179 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
1180 }
1181
1182 /*
1183 * 12-byte READ(0xA8) or WRITE(0xAA) cdb
1184 */
1185 else if (scp->cmd_len == 12) {
1186 ldio->lba_count = ((u32) scp->cmnd[6] << 24) |
1187 ((u32) scp->cmnd[7] << 16) |
1188 ((u32) scp->cmnd[8] << 8) | (u32) scp->cmnd[9];
1189
1190 ldio->start_lba_lo = ((u32) scp->cmnd[2] << 24) |
1191 ((u32) scp->cmnd[3] << 16) |
1192 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
1193 }
1194
1195 /*
1196 * 16-byte READ(0x88) or WRITE(0x8A) cdb
1197 */
1198 else if (scp->cmd_len == 16) {
1199 ldio->lba_count = ((u32) scp->cmnd[10] << 24) |
1200 ((u32) scp->cmnd[11] << 16) |
1201 ((u32) scp->cmnd[12] << 8) | (u32) scp->cmnd[13];
1202
1203 ldio->start_lba_lo = ((u32) scp->cmnd[6] << 24) |
1204 ((u32) scp->cmnd[7] << 16) |
1205 ((u32) scp->cmnd[8] << 8) | (u32) scp->cmnd[9];
1206
1207 ldio->start_lba_hi = ((u32) scp->cmnd[2] << 24) |
1208 ((u32) scp->cmnd[3] << 16) |
1209 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
1210
1211 }
1212
1213 /*
1214 * Construct SGL
1215 */
Yang, Bof4c9a132009-10-06 14:43:28 -06001216 if (instance->flag_ieee) {
1217 ldio->flags |= MFI_FRAME_SGL64;
1218 ldio->sge_count = megasas_make_sgl_skinny(instance, scp,
1219 &ldio->sgl);
1220 } else if (IS_DMA64) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001221 ldio->flags |= MFI_FRAME_SGL64;
1222 ldio->sge_count = megasas_make_sgl64(instance, scp, &ldio->sgl);
1223 } else
1224 ldio->sge_count = megasas_make_sgl32(instance, scp, &ldio->sgl);
1225
Yang, Bobdc6fb82009-12-06 08:30:19 -07001226 if (ldio->sge_count > instance->max_num_sge) {
1227 printk(KERN_ERR "megasas: build_ld_io: sge_count = %x\n",
1228 ldio->sge_count);
1229 return 0;
1230 }
1231
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001232 /*
1233 * Sense info specific
1234 */
1235 ldio->sense_len = SCSI_SENSE_BUFFERSIZE;
1236 ldio->sense_buf_phys_addr_hi = 0;
1237 ldio->sense_buf_phys_addr_lo = cmd->sense_phys_addr;
1238
Sumant Patrob1df99d2006-10-03 12:40:47 -07001239 /*
1240 * Compute the total number of frames this command consumes. FW uses
1241 * this number to pull sufficient number of frames from host memory.
1242 */
Yang, Bof4c9a132009-10-06 14:43:28 -06001243 cmd->frame_count = megasas_get_frame_count(instance,
1244 ldio->sge_count, IO_FRAME);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001245
1246 return cmd->frame_count;
1247}
1248
1249/**
Sumant Patrocb59aa62006-01-25 11:53:25 -08001250 * megasas_is_ldio - Checks if the cmd is for logical drive
1251 * @scmd: SCSI command
adam radford0d490162010-12-14 19:17:17 -08001252 *
Sumant Patrocb59aa62006-01-25 11:53:25 -08001253 * Called by megasas_queue_command to find out if the command to be queued
adam radford0d490162010-12-14 19:17:17 -08001254 * is a logical drive command
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001255 */
Sumant Patrocb59aa62006-01-25 11:53:25 -08001256static inline int megasas_is_ldio(struct scsi_cmnd *cmd)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001257{
Sumant Patrocb59aa62006-01-25 11:53:25 -08001258 if (!MEGASAS_IS_LOGICAL(cmd))
1259 return 0;
1260 switch (cmd->cmnd[0]) {
1261 case READ_10:
1262 case WRITE_10:
1263 case READ_12:
1264 case WRITE_12:
1265 case READ_6:
1266 case WRITE_6:
1267 case READ_16:
1268 case WRITE_16:
1269 return 1;
1270 default:
1271 return 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001272 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001273}
1274
Sumant Patro658dced2006-10-03 13:09:14 -07001275 /**
1276 * megasas_dump_pending_frames - Dumps the frame address of all pending cmds
1277 * in FW
1278 * @instance: Adapter soft state
1279 */
1280static inline void
1281megasas_dump_pending_frames(struct megasas_instance *instance)
1282{
1283 struct megasas_cmd *cmd;
1284 int i,n;
1285 union megasas_sgl *mfi_sgl;
1286 struct megasas_io_frame *ldio;
1287 struct megasas_pthru_frame *pthru;
1288 u32 sgcount;
1289 u32 max_cmd = instance->max_fw_cmds;
1290
1291 printk(KERN_ERR "\nmegasas[%d]: Dumping Frame Phys Address of all pending cmds in FW\n",instance->host->host_no);
1292 printk(KERN_ERR "megasas[%d]: Total OS Pending cmds : %d\n",instance->host->host_no,atomic_read(&instance->fw_outstanding));
1293 if (IS_DMA64)
1294 printk(KERN_ERR "\nmegasas[%d]: 64 bit SGLs were sent to FW\n",instance->host->host_no);
1295 else
1296 printk(KERN_ERR "\nmegasas[%d]: 32 bit SGLs were sent to FW\n",instance->host->host_no);
1297
1298 printk(KERN_ERR "megasas[%d]: Pending OS cmds in FW : \n",instance->host->host_no);
1299 for (i = 0; i < max_cmd; i++) {
1300 cmd = instance->cmd_list[i];
1301 if(!cmd->scmd)
1302 continue;
1303 printk(KERN_ERR "megasas[%d]: Frame addr :0x%08lx : ",instance->host->host_no,(unsigned long)cmd->frame_phys_addr);
1304 if (megasas_is_ldio(cmd->scmd)){
1305 ldio = (struct megasas_io_frame *)cmd->frame;
1306 mfi_sgl = &ldio->sgl;
1307 sgcount = ldio->sge_count;
1308 printk(KERN_ERR "megasas[%d]: frame count : 0x%x, Cmd : 0x%x, Tgt id : 0x%x, lba lo : 0x%x, lba_hi : 0x%x, sense_buf addr : 0x%x,sge count : 0x%x\n",instance->host->host_no, cmd->frame_count,ldio->cmd,ldio->target_id, ldio->start_lba_lo,ldio->start_lba_hi,ldio->sense_buf_phys_addr_lo,sgcount);
1309 }
1310 else {
1311 pthru = (struct megasas_pthru_frame *) cmd->frame;
1312 mfi_sgl = &pthru->sgl;
1313 sgcount = pthru->sge_count;
1314 printk(KERN_ERR "megasas[%d]: frame count : 0x%x, Cmd : 0x%x, Tgt id : 0x%x, lun : 0x%x, cdb_len : 0x%x, data xfer len : 0x%x, sense_buf addr : 0x%x,sge count : 0x%x\n",instance->host->host_no,cmd->frame_count,pthru->cmd,pthru->target_id,pthru->lun,pthru->cdb_len , pthru->data_xfer_len,pthru->sense_buf_phys_addr_lo,sgcount);
1315 }
1316 if(megasas_dbg_lvl & MEGASAS_DBG_LVL){
1317 for (n = 0; n < sgcount; n++){
1318 if (IS_DMA64)
1319 printk(KERN_ERR "megasas: sgl len : 0x%x, sgl addr : 0x%08lx ",mfi_sgl->sge64[n].length , (unsigned long)mfi_sgl->sge64[n].phys_addr) ;
1320 else
1321 printk(KERN_ERR "megasas: sgl len : 0x%x, sgl addr : 0x%x ",mfi_sgl->sge32[n].length , mfi_sgl->sge32[n].phys_addr) ;
1322 }
1323 }
1324 printk(KERN_ERR "\n");
1325 } /*for max_cmd*/
1326 printk(KERN_ERR "\nmegasas[%d]: Pending Internal cmds in FW : \n",instance->host->host_no);
1327 for (i = 0; i < max_cmd; i++) {
1328
1329 cmd = instance->cmd_list[i];
1330
1331 if(cmd->sync_cmd == 1){
1332 printk(KERN_ERR "0x%08lx : ", (unsigned long)cmd->frame_phys_addr);
1333 }
1334 }
1335 printk(KERN_ERR "megasas[%d]: Dumping Done.\n\n",instance->host->host_no);
1336}
1337
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001338/**
1339 * megasas_queue_command - Queue entry point
1340 * @scmd: SCSI command to be queued
1341 * @done: Callback entry point
1342 */
1343static int
Jeff Garzikf2812332010-11-16 02:10:29 -05001344megasas_queue_command_lck(struct scsi_cmnd *scmd, void (*done) (struct scsi_cmnd *))
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001345{
1346 u32 frame_count;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001347 struct megasas_cmd *cmd;
1348 struct megasas_instance *instance;
bo yang39a98552010-09-22 22:36:29 -04001349 unsigned long flags;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001350
1351 instance = (struct megasas_instance *)
1352 scmd->device->host->hostdata;
Sumant Patroaf37acf2007-02-14 12:34:46 -08001353
bo yang39a98552010-09-22 22:36:29 -04001354 if (instance->issuepend_done == 0)
Sumant Patroaf37acf2007-02-14 12:34:46 -08001355 return SCSI_MLQUEUE_HOST_BUSY;
1356
bo yang39a98552010-09-22 22:36:29 -04001357 spin_lock_irqsave(&instance->hba_lock, flags);
1358 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL) {
1359 spin_unlock_irqrestore(&instance->hba_lock, flags);
1360 return SCSI_MLQUEUE_HOST_BUSY;
1361 }
1362
1363 spin_unlock_irqrestore(&instance->hba_lock, flags);
1364
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001365 scmd->scsi_done = done;
1366 scmd->result = 0;
1367
Sumant Patrocb59aa62006-01-25 11:53:25 -08001368 if (MEGASAS_IS_LOGICAL(scmd) &&
1369 (scmd->device->id >= MEGASAS_MAX_LD || scmd->device->lun)) {
1370 scmd->result = DID_BAD_TARGET << 16;
1371 goto out_done;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001372 }
1373
Sumant Patro02b01e02007-02-14 13:00:55 -08001374 switch (scmd->cmnd[0]) {
1375 case SYNCHRONIZE_CACHE:
1376 /*
1377 * FW takes care of flush cache on its own
1378 * No need to send it down
1379 */
1380 scmd->result = DID_OK << 16;
1381 goto out_done;
1382 default:
1383 break;
1384 }
1385
Sumant Patrocb59aa62006-01-25 11:53:25 -08001386 cmd = megasas_get_cmd(instance);
1387 if (!cmd)
1388 return SCSI_MLQUEUE_HOST_BUSY;
1389
1390 /*
1391 * Logical drive command
1392 */
1393 if (megasas_is_ldio(scmd))
1394 frame_count = megasas_build_ldio(instance, scmd, cmd);
1395 else
1396 frame_count = megasas_build_dcdb(instance, scmd, cmd);
1397
1398 if (!frame_count)
1399 goto out_return_cmd;
1400
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001401 cmd->scmd = scmd;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001402 scmd->SCp.ptr = (char *)cmd;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001403
1404 /*
1405 * Issue the command to the FW
1406 */
Sumant Patroe4a082c2006-05-30 12:03:37 -07001407 atomic_inc(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001408
Yang, Bo0c79e682009-10-06 14:47:35 -06001409 instance->instancet->fire_cmd(instance, cmd->frame_phys_addr,
1410 cmd->frame_count-1, instance->reg_set);
bo yangad84db22007-11-09 04:40:16 -05001411 /*
1412 * Check if we have pend cmds to be completed
1413 */
1414 if (poll_mode_io && atomic_read(&instance->fw_outstanding))
1415 tasklet_schedule(&instance->isr_tasklet);
1416
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001417
1418 return 0;
Sumant Patrocb59aa62006-01-25 11:53:25 -08001419
1420 out_return_cmd:
1421 megasas_return_cmd(instance, cmd);
1422 out_done:
1423 done(scmd);
1424 return 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001425}
1426
Jeff Garzikf2812332010-11-16 02:10:29 -05001427static DEF_SCSI_QCMD(megasas_queue_command)
1428
Yang, Bo044833b2009-10-06 14:33:06 -06001429static struct megasas_instance *megasas_lookup_instance(u16 host_no)
1430{
1431 int i;
1432
1433 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
1434
1435 if ((megasas_mgmt_info.instance[i]) &&
1436 (megasas_mgmt_info.instance[i]->host->host_no == host_no))
1437 return megasas_mgmt_info.instance[i];
1438 }
1439
1440 return NULL;
1441}
1442
Christoph Hellwig147aab62006-02-17 12:13:48 +01001443static int megasas_slave_configure(struct scsi_device *sdev)
1444{
Yang, Bo044833b2009-10-06 14:33:06 -06001445 u16 pd_index = 0;
1446 struct megasas_instance *instance ;
1447
1448 instance = megasas_lookup_instance(sdev->host->host_no);
Christoph Hellwige5b3a652006-03-10 17:08:57 +01001449
1450 /*
Yang, Bo044833b2009-10-06 14:33:06 -06001451 * Don't export physical disk devices to the disk driver.
1452 *
1453 * FIXME: Currently we don't export them to the midlayer at all.
1454 * That will be fixed once LSI engineers have audited the
1455 * firmware for possible issues.
1456 */
1457 if (sdev->channel < MEGASAS_MAX_PD_CHANNELS &&
1458 sdev->type == TYPE_DISK) {
1459 pd_index = (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) +
1460 sdev->id;
1461 if (instance->pd_list[pd_index].driveState ==
1462 MR_PD_STATE_SYSTEM) {
1463 blk_queue_rq_timeout(sdev->request_queue,
1464 MEGASAS_DEFAULT_CMD_TIMEOUT * HZ);
1465 return 0;
1466 }
1467 return -ENXIO;
1468 }
1469
1470 /*
1471 * The RAID firmware may require extended timeouts.
1472 */
1473 blk_queue_rq_timeout(sdev->request_queue,
1474 MEGASAS_DEFAULT_CMD_TIMEOUT * HZ);
1475 return 0;
1476}
1477
1478static int megasas_slave_alloc(struct scsi_device *sdev)
1479{
1480 u16 pd_index = 0;
1481 struct megasas_instance *instance ;
1482 instance = megasas_lookup_instance(sdev->host->host_no);
1483 if ((sdev->channel < MEGASAS_MAX_PD_CHANNELS) &&
1484 (sdev->type == TYPE_DISK)) {
1485 /*
1486 * Open the OS scan to the SYSTEM PD
1487 */
1488 pd_index =
1489 (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) +
1490 sdev->id;
1491 if ((instance->pd_list[pd_index].driveState ==
1492 MR_PD_STATE_SYSTEM) &&
1493 (instance->pd_list[pd_index].driveType ==
1494 TYPE_DISK)) {
1495 return 0;
1496 }
1497 return -ENXIO;
1498 }
Christoph Hellwig147aab62006-02-17 12:13:48 +01001499 return 0;
1500}
1501
bo yang39a98552010-09-22 22:36:29 -04001502static void megaraid_sas_kill_hba(struct megasas_instance *instance)
1503{
1504 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1505 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
1506 writel(MFI_STOP_ADP,
1507 &instance->reg_set->reserved_0[0]);
1508 } else {
1509 writel(MFI_STOP_ADP,
1510 &instance->reg_set->inbound_doorbell);
1511 }
1512}
1513
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001514/**
bo yang7343eb62007-11-09 04:35:44 -05001515 * megasas_complete_cmd_dpc - Returns FW's controller structure
1516 * @instance_addr: Address of adapter soft state
1517 *
1518 * Tasklet to complete cmds
1519 */
1520static void megasas_complete_cmd_dpc(unsigned long instance_addr)
1521{
1522 u32 producer;
1523 u32 consumer;
1524 u32 context;
1525 struct megasas_cmd *cmd;
1526 struct megasas_instance *instance =
1527 (struct megasas_instance *)instance_addr;
1528 unsigned long flags;
1529
1530 /* If we have already declared adapter dead, donot complete cmds */
bo yang39a98552010-09-22 22:36:29 -04001531 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR )
bo yang7343eb62007-11-09 04:35:44 -05001532 return;
1533
1534 spin_lock_irqsave(&instance->completion_lock, flags);
1535
1536 producer = *instance->producer;
1537 consumer = *instance->consumer;
1538
1539 while (consumer != producer) {
1540 context = instance->reply_queue[consumer];
bo yang39a98552010-09-22 22:36:29 -04001541 if (context >= instance->max_fw_cmds) {
1542 printk(KERN_ERR "Unexpected context value %x\n",
1543 context);
1544 BUG();
1545 }
bo yang7343eb62007-11-09 04:35:44 -05001546
1547 cmd = instance->cmd_list[context];
1548
1549 megasas_complete_cmd(instance, cmd, DID_OK);
1550
1551 consumer++;
1552 if (consumer == (instance->max_fw_cmds + 1)) {
1553 consumer = 0;
1554 }
1555 }
1556
1557 *instance->consumer = producer;
1558
1559 spin_unlock_irqrestore(&instance->completion_lock, flags);
1560
1561 /*
1562 * Check if we can restore can_queue
1563 */
1564 if (instance->flag & MEGASAS_FW_BUSY
1565 && time_after(jiffies, instance->last_time + 5 * HZ)
1566 && atomic_read(&instance->fw_outstanding) < 17) {
1567
1568 spin_lock_irqsave(instance->host->host_lock, flags);
1569 instance->flag &= ~MEGASAS_FW_BUSY;
Yang, Bo7bebf5c2009-10-06 14:40:58 -06001570 if ((instance->pdev->device ==
1571 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1572 (instance->pdev->device ==
1573 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
1574 instance->host->can_queue =
1575 instance->max_fw_cmds - MEGASAS_SKINNY_INT_CMDS;
1576 } else
1577 instance->host->can_queue =
bo yang7343eb62007-11-09 04:35:44 -05001578 instance->max_fw_cmds - MEGASAS_INT_CMDS;
1579
1580 spin_unlock_irqrestore(instance->host->host_lock, flags);
1581 }
1582}
1583
Yang, Bo707e09b2010-10-12 07:20:27 -06001584static void
1585megasas_internal_reset_defer_cmds(struct megasas_instance *instance);
1586
1587static void
1588process_fw_state_change_wq(struct work_struct *work);
1589
1590void megasas_do_ocr(struct megasas_instance *instance)
1591{
1592 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1064R) ||
1593 (instance->pdev->device == PCI_DEVICE_ID_DELL_PERC5) ||
1594 (instance->pdev->device == PCI_DEVICE_ID_LSI_VERDE_ZCR)) {
1595 *instance->consumer = MEGASAS_ADPRESET_INPROG_SIGN;
1596 }
1597 instance->instancet->disable_intr(instance->reg_set);
1598 instance->adprecovery = MEGASAS_ADPRESET_SM_INFAULT;
1599 instance->issuepend_done = 0;
1600
1601 atomic_set(&instance->fw_outstanding, 0);
1602 megasas_internal_reset_defer_cmds(instance);
1603 process_fw_state_change_wq(&instance->work_init);
1604}
1605
bo yang7343eb62007-11-09 04:35:44 -05001606/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001607 * megasas_wait_for_outstanding - Wait for all outstanding cmds
1608 * @instance: Adapter soft state
1609 *
1610 * This function waits for upto MEGASAS_RESET_WAIT_TIME seconds for FW to
1611 * complete all its outstanding commands. Returns error if one or more IOs
1612 * are pending after this time period. It also marks the controller dead.
1613 */
1614static int megasas_wait_for_outstanding(struct megasas_instance *instance)
1615{
1616 int i;
bo yang39a98552010-09-22 22:36:29 -04001617 u32 reset_index;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001618 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
bo yang39a98552010-09-22 22:36:29 -04001619 u8 adprecovery;
1620 unsigned long flags;
1621 struct list_head clist_local;
1622 struct megasas_cmd *reset_cmd;
Yang, Bo707e09b2010-10-12 07:20:27 -06001623 u32 fw_state;
1624 u8 kill_adapter_flag;
bo yang39a98552010-09-22 22:36:29 -04001625
1626 spin_lock_irqsave(&instance->hba_lock, flags);
1627 adprecovery = instance->adprecovery;
1628 spin_unlock_irqrestore(&instance->hba_lock, flags);
1629
1630 if (adprecovery != MEGASAS_HBA_OPERATIONAL) {
1631
1632 INIT_LIST_HEAD(&clist_local);
1633 spin_lock_irqsave(&instance->hba_lock, flags);
1634 list_splice_init(&instance->internal_reset_pending_q,
1635 &clist_local);
1636 spin_unlock_irqrestore(&instance->hba_lock, flags);
1637
1638 printk(KERN_NOTICE "megasas: HBA reset wait ...\n");
1639 for (i = 0; i < wait_time; i++) {
1640 msleep(1000);
1641 spin_lock_irqsave(&instance->hba_lock, flags);
1642 adprecovery = instance->adprecovery;
1643 spin_unlock_irqrestore(&instance->hba_lock, flags);
1644 if (adprecovery == MEGASAS_HBA_OPERATIONAL)
1645 break;
1646 }
1647
1648 if (adprecovery != MEGASAS_HBA_OPERATIONAL) {
1649 printk(KERN_NOTICE "megasas: reset: Stopping HBA.\n");
1650 spin_lock_irqsave(&instance->hba_lock, flags);
1651 instance->adprecovery = MEGASAS_HW_CRITICAL_ERROR;
1652 spin_unlock_irqrestore(&instance->hba_lock, flags);
1653 return FAILED;
1654 }
1655
1656 reset_index = 0;
1657 while (!list_empty(&clist_local)) {
1658 reset_cmd = list_entry((&clist_local)->next,
1659 struct megasas_cmd, list);
1660 list_del_init(&reset_cmd->list);
1661 if (reset_cmd->scmd) {
1662 reset_cmd->scmd->result = DID_RESET << 16;
1663 printk(KERN_NOTICE "%d:%p reset [%02x], %#lx\n",
1664 reset_index, reset_cmd,
1665 reset_cmd->scmd->cmnd[0],
1666 reset_cmd->scmd->serial_number);
1667
1668 reset_cmd->scmd->scsi_done(reset_cmd->scmd);
1669 megasas_return_cmd(instance, reset_cmd);
1670 } else if (reset_cmd->sync_cmd) {
1671 printk(KERN_NOTICE "megasas:%p synch cmds"
1672 "reset queue\n",
1673 reset_cmd);
1674
1675 reset_cmd->cmd_status = ENODATA;
1676 instance->instancet->fire_cmd(instance,
1677 reset_cmd->frame_phys_addr,
1678 0, instance->reg_set);
1679 } else {
1680 printk(KERN_NOTICE "megasas: %p unexpected"
1681 "cmds lst\n",
1682 reset_cmd);
1683 }
1684 reset_index++;
1685 }
1686
1687 return SUCCESS;
1688 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001689
1690 for (i = 0; i < wait_time; i++) {
1691
Sumant Patroe4a082c2006-05-30 12:03:37 -07001692 int outstanding = atomic_read(&instance->fw_outstanding);
1693
1694 if (!outstanding)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001695 break;
1696
1697 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
1698 printk(KERN_NOTICE "megasas: [%2d]waiting for %d "
Sumant Patroe4a082c2006-05-30 12:03:37 -07001699 "commands to complete\n",i,outstanding);
bo yang7343eb62007-11-09 04:35:44 -05001700 /*
1701 * Call cmd completion routine. Cmd to be
1702 * be completed directly without depending on isr.
1703 */
1704 megasas_complete_cmd_dpc((unsigned long)instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001705 }
1706
1707 msleep(1000);
1708 }
1709
Yang, Bo707e09b2010-10-12 07:20:27 -06001710 i = 0;
1711 kill_adapter_flag = 0;
1712 do {
1713 fw_state = instance->instancet->read_fw_status_reg(
1714 instance->reg_set) & MFI_STATE_MASK;
1715 if ((fw_state == MFI_STATE_FAULT) &&
1716 (instance->disableOnlineCtrlReset == 0)) {
1717 if (i == 3) {
1718 kill_adapter_flag = 2;
1719 break;
1720 }
1721 megasas_do_ocr(instance);
1722 kill_adapter_flag = 1;
1723
1724 /* wait for 1 secs to let FW finish the pending cmds */
1725 msleep(1000);
1726 }
1727 i++;
1728 } while (i <= 3);
1729
1730 if (atomic_read(&instance->fw_outstanding) &&
1731 !kill_adapter_flag) {
1732 if (instance->disableOnlineCtrlReset == 0) {
1733
1734 megasas_do_ocr(instance);
1735
1736 /* wait for 5 secs to let FW finish the pending cmds */
1737 for (i = 0; i < wait_time; i++) {
1738 int outstanding =
1739 atomic_read(&instance->fw_outstanding);
1740 if (!outstanding)
1741 return SUCCESS;
1742 msleep(1000);
1743 }
1744 }
1745 }
1746
1747 if (atomic_read(&instance->fw_outstanding) ||
1748 (kill_adapter_flag == 2)) {
bo yang39a98552010-09-22 22:36:29 -04001749 printk(KERN_NOTICE "megaraid_sas: pending cmds after reset\n");
Sumant Patroe3bbff92006-10-03 12:28:49 -07001750 /*
1751 * Send signal to FW to stop processing any pending cmds.
1752 * The controller will be taken offline by the OS now.
1753 */
Yang, Bo0c79e682009-10-06 14:47:35 -06001754 if ((instance->pdev->device ==
1755 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1756 (instance->pdev->device ==
1757 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
1758 writel(MFI_STOP_ADP,
1759 &instance->reg_set->reserved_0[0]);
1760 } else {
1761 writel(MFI_STOP_ADP,
Sumant Patroe3bbff92006-10-03 12:28:49 -07001762 &instance->reg_set->inbound_doorbell);
Yang, Bo0c79e682009-10-06 14:47:35 -06001763 }
Sumant Patro658dced2006-10-03 13:09:14 -07001764 megasas_dump_pending_frames(instance);
bo yang39a98552010-09-22 22:36:29 -04001765 spin_lock_irqsave(&instance->hba_lock, flags);
1766 instance->adprecovery = MEGASAS_HW_CRITICAL_ERROR;
1767 spin_unlock_irqrestore(&instance->hba_lock, flags);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001768 return FAILED;
1769 }
1770
bo yang39a98552010-09-22 22:36:29 -04001771 printk(KERN_NOTICE "megaraid_sas: no pending cmds after reset\n");
1772
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001773 return SUCCESS;
1774}
1775
1776/**
1777 * megasas_generic_reset - Generic reset routine
1778 * @scmd: Mid-layer SCSI command
1779 *
1780 * This routine implements a generic reset handler for device, bus and host
1781 * reset requests. Device, bus and host specific reset handlers can use this
1782 * function after they do their specific tasks.
1783 */
1784static int megasas_generic_reset(struct scsi_cmnd *scmd)
1785{
1786 int ret_val;
1787 struct megasas_instance *instance;
1788
1789 instance = (struct megasas_instance *)scmd->device->host->hostdata;
1790
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001791 scmd_printk(KERN_NOTICE, scmd, "megasas: RESET -%ld cmd=%x retries=%x\n",
1792 scmd->serial_number, scmd->cmnd[0], scmd->retries);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001793
bo yang39a98552010-09-22 22:36:29 -04001794 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001795 printk(KERN_ERR "megasas: cannot recover from previous reset "
1796 "failures\n");
1797 return FAILED;
1798 }
1799
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001800 ret_val = megasas_wait_for_outstanding(instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001801 if (ret_val == SUCCESS)
1802 printk(KERN_NOTICE "megasas: reset successful \n");
1803 else
1804 printk(KERN_ERR "megasas: failed to do reset\n");
1805
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001806 return ret_val;
1807}
1808
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001809/**
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001810 * megasas_reset_timer - quiesce the adapter if required
1811 * @scmd: scsi cmnd
1812 *
1813 * Sets the FW busy flag and reduces the host->can_queue if the
1814 * cmd has not been completed within the timeout period.
1815 */
1816static enum
Jens Axboe242f9dc2008-09-14 05:55:09 -07001817blk_eh_timer_return megasas_reset_timer(struct scsi_cmnd *scmd)
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001818{
1819 struct megasas_cmd *cmd = (struct megasas_cmd *)scmd->SCp.ptr;
1820 struct megasas_instance *instance;
1821 unsigned long flags;
1822
1823 if (time_after(jiffies, scmd->jiffies_at_alloc +
1824 (MEGASAS_DEFAULT_CMD_TIMEOUT * 2) * HZ)) {
Jens Axboe242f9dc2008-09-14 05:55:09 -07001825 return BLK_EH_NOT_HANDLED;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001826 }
1827
1828 instance = cmd->instance;
1829 if (!(instance->flag & MEGASAS_FW_BUSY)) {
1830 /* FW is busy, throttle IO */
1831 spin_lock_irqsave(instance->host->host_lock, flags);
1832
1833 instance->host->can_queue = 16;
1834 instance->last_time = jiffies;
1835 instance->flag |= MEGASAS_FW_BUSY;
1836
1837 spin_unlock_irqrestore(instance->host->host_lock, flags);
1838 }
Jens Axboe242f9dc2008-09-14 05:55:09 -07001839 return BLK_EH_RESET_TIMER;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001840}
1841
1842/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001843 * megasas_reset_device - Device reset handler entry point
1844 */
1845static int megasas_reset_device(struct scsi_cmnd *scmd)
1846{
1847 int ret;
1848
1849 /*
1850 * First wait for all commands to complete
1851 */
1852 ret = megasas_generic_reset(scmd);
1853
1854 return ret;
1855}
1856
1857/**
1858 * megasas_reset_bus_host - Bus & host reset handler entry point
1859 */
1860static int megasas_reset_bus_host(struct scsi_cmnd *scmd)
1861{
1862 int ret;
1863
1864 /*
Uwe Zeisberger80682fa2006-03-22 00:21:33 +01001865 * First wait for all commands to complete
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001866 */
1867 ret = megasas_generic_reset(scmd);
1868
1869 return ret;
1870}
1871
1872/**
Sumant Patrocf62a0a2007-02-14 12:41:55 -08001873 * megasas_bios_param - Returns disk geometry for a disk
1874 * @sdev: device handle
1875 * @bdev: block device
1876 * @capacity: drive capacity
1877 * @geom: geometry parameters
1878 */
1879static int
1880megasas_bios_param(struct scsi_device *sdev, struct block_device *bdev,
1881 sector_t capacity, int geom[])
1882{
1883 int heads;
1884 int sectors;
1885 sector_t cylinders;
1886 unsigned long tmp;
1887 /* Default heads (64) & sectors (32) */
1888 heads = 64;
1889 sectors = 32;
1890
1891 tmp = heads * sectors;
1892 cylinders = capacity;
1893
1894 sector_div(cylinders, tmp);
1895
1896 /*
1897 * Handle extended translation size for logical drives > 1Gb
1898 */
1899
1900 if (capacity >= 0x200000) {
1901 heads = 255;
1902 sectors = 63;
1903 tmp = heads*sectors;
1904 cylinders = capacity;
1905 sector_div(cylinders, tmp);
1906 }
1907
1908 geom[0] = heads;
1909 geom[1] = sectors;
1910 geom[2] = cylinders;
1911
1912 return 0;
1913}
1914
Yang, Bo7e8a75f2009-10-06 14:50:17 -06001915static void megasas_aen_polling(struct work_struct *work);
1916
Sumant Patrocf62a0a2007-02-14 12:41:55 -08001917/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001918 * megasas_service_aen - Processes an event notification
1919 * @instance: Adapter soft state
1920 * @cmd: AEN command completed by the ISR
1921 *
1922 * For AEN, driver sends a command down to FW that is held by the FW till an
1923 * event occurs. When an event of interest occurs, FW completes the command
1924 * that it was previously holding.
1925 *
1926 * This routines sends SIGIO signal to processes that have registered with the
1927 * driver for AEN.
1928 */
1929static void
1930megasas_service_aen(struct megasas_instance *instance, struct megasas_cmd *cmd)
1931{
Yang, Boc3518832009-10-06 14:18:02 -06001932 unsigned long flags;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001933 /*
1934 * Don't signal app if it is just an aborted previously registered aen
1935 */
Yang, Boc3518832009-10-06 14:18:02 -06001936 if ((!cmd->abort_aen) && (instance->unload == 0)) {
1937 spin_lock_irqsave(&poll_aen_lock, flags);
1938 megasas_poll_wait_aen = 1;
1939 spin_unlock_irqrestore(&poll_aen_lock, flags);
1940 wake_up(&megasas_poll_wait);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001941 kill_fasync(&megasas_async_queue, SIGIO, POLL_IN);
Yang, Boc3518832009-10-06 14:18:02 -06001942 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001943 else
1944 cmd->abort_aen = 0;
1945
1946 instance->aen_cmd = NULL;
1947 megasas_return_cmd(instance, cmd);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06001948
bo yang39a98552010-09-22 22:36:29 -04001949 if ((instance->unload == 0) &&
1950 ((instance->issuepend_done == 1))) {
Yang, Bo7e8a75f2009-10-06 14:50:17 -06001951 struct megasas_aen_event *ev;
1952 ev = kzalloc(sizeof(*ev), GFP_ATOMIC);
1953 if (!ev) {
1954 printk(KERN_ERR "megasas_service_aen: out of memory\n");
1955 } else {
1956 ev->instance = instance;
1957 instance->ev = ev;
1958 INIT_WORK(&ev->hotplug_work, megasas_aen_polling);
1959 schedule_delayed_work(
1960 (struct delayed_work *)&ev->hotplug_work, 0);
1961 }
1962 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001963}
1964
1965/*
1966 * Scsi host template for megaraid_sas driver
1967 */
1968static struct scsi_host_template megasas_template = {
1969
1970 .module = THIS_MODULE,
bo yangf28cd7c2007-11-09 04:44:56 -05001971 .name = "LSI SAS based MegaRAID driver",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001972 .proc_name = "megaraid_sas",
Christoph Hellwig147aab62006-02-17 12:13:48 +01001973 .slave_configure = megasas_slave_configure,
Yang, Bo044833b2009-10-06 14:33:06 -06001974 .slave_alloc = megasas_slave_alloc,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001975 .queuecommand = megasas_queue_command,
1976 .eh_device_reset_handler = megasas_reset_device,
1977 .eh_bus_reset_handler = megasas_reset_bus_host,
1978 .eh_host_reset_handler = megasas_reset_bus_host,
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001979 .eh_timed_out = megasas_reset_timer,
Sumant Patrocf62a0a2007-02-14 12:41:55 -08001980 .bios_param = megasas_bios_param,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001981 .use_clustering = ENABLE_CLUSTERING,
1982};
1983
1984/**
1985 * megasas_complete_int_cmd - Completes an internal command
1986 * @instance: Adapter soft state
1987 * @cmd: Command to be completed
1988 *
1989 * The megasas_issue_blocked_cmd() function waits for a command to complete
1990 * after it issues a command. This function wakes up that waiting routine by
1991 * calling wake_up() on the wait queue.
1992 */
1993static void
1994megasas_complete_int_cmd(struct megasas_instance *instance,
1995 struct megasas_cmd *cmd)
1996{
1997 cmd->cmd_status = cmd->frame->io.cmd_status;
1998
1999 if (cmd->cmd_status == ENODATA) {
2000 cmd->cmd_status = 0;
2001 }
2002 wake_up(&instance->int_cmd_wait_q);
2003}
2004
2005/**
2006 * megasas_complete_abort - Completes aborting a command
2007 * @instance: Adapter soft state
2008 * @cmd: Cmd that was issued to abort another cmd
2009 *
adam radford0d490162010-12-14 19:17:17 -08002010 * The megasas_issue_blocked_abort_cmd() function waits on abort_cmd_wait_q
2011 * after it issues an abort on a previously issued command. This function
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002012 * wakes up all functions waiting on the same wait queue.
2013 */
2014static void
2015megasas_complete_abort(struct megasas_instance *instance,
2016 struct megasas_cmd *cmd)
2017{
2018 if (cmd->sync_cmd) {
2019 cmd->sync_cmd = 0;
2020 cmd->cmd_status = 0;
2021 wake_up(&instance->abort_cmd_wait_q);
2022 }
2023
2024 return;
2025}
2026
2027/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002028 * megasas_complete_cmd - Completes a command
2029 * @instance: Adapter soft state
2030 * @cmd: Command to be completed
adam radford0d490162010-12-14 19:17:17 -08002031 * @alt_status: If non-zero, use this value as status to
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002032 * SCSI mid-layer instead of the value returned
2033 * by the FW. This should be used if caller wants
2034 * an alternate status (as in the case of aborted
2035 * commands)
2036 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002037static void
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002038megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd,
2039 u8 alt_status)
2040{
2041 int exception = 0;
2042 struct megasas_header *hdr = &cmd->frame->hdr;
Yang, Boc3518832009-10-06 14:18:02 -06002043 unsigned long flags;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002044
bo yang39a98552010-09-22 22:36:29 -04002045 /* flag for the retry reset */
2046 cmd->retry_for_fw_reset = 0;
2047
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002048 if (cmd->scmd)
2049 cmd->scmd->SCp.ptr = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002050
2051 switch (hdr->cmd) {
2052
2053 case MFI_CMD_PD_SCSI_IO:
2054 case MFI_CMD_LD_SCSI_IO:
2055
2056 /*
2057 * MFI_CMD_PD_SCSI_IO and MFI_CMD_LD_SCSI_IO could have been
2058 * issued either through an IO path or an IOCTL path. If it
2059 * was via IOCTL, we will send it to internal completion.
2060 */
2061 if (cmd->sync_cmd) {
2062 cmd->sync_cmd = 0;
2063 megasas_complete_int_cmd(instance, cmd);
2064 break;
2065 }
2066
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002067 case MFI_CMD_LD_READ:
2068 case MFI_CMD_LD_WRITE:
2069
2070 if (alt_status) {
2071 cmd->scmd->result = alt_status << 16;
2072 exception = 1;
2073 }
2074
2075 if (exception) {
2076
Sumant Patroe4a082c2006-05-30 12:03:37 -07002077 atomic_dec(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002078
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09002079 scsi_dma_unmap(cmd->scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002080 cmd->scmd->scsi_done(cmd->scmd);
2081 megasas_return_cmd(instance, cmd);
2082
2083 break;
2084 }
2085
2086 switch (hdr->cmd_status) {
2087
2088 case MFI_STAT_OK:
2089 cmd->scmd->result = DID_OK << 16;
2090 break;
2091
2092 case MFI_STAT_SCSI_IO_FAILED:
2093 case MFI_STAT_LD_INIT_IN_PROGRESS:
2094 cmd->scmd->result =
2095 (DID_ERROR << 16) | hdr->scsi_status;
2096 break;
2097
2098 case MFI_STAT_SCSI_DONE_WITH_ERROR:
2099
2100 cmd->scmd->result = (DID_OK << 16) | hdr->scsi_status;
2101
2102 if (hdr->scsi_status == SAM_STAT_CHECK_CONDITION) {
2103 memset(cmd->scmd->sense_buffer, 0,
2104 SCSI_SENSE_BUFFERSIZE);
2105 memcpy(cmd->scmd->sense_buffer, cmd->sense,
2106 hdr->sense_len);
2107
2108 cmd->scmd->result |= DRIVER_SENSE << 24;
2109 }
2110
2111 break;
2112
2113 case MFI_STAT_LD_OFFLINE:
2114 case MFI_STAT_DEVICE_NOT_FOUND:
2115 cmd->scmd->result = DID_BAD_TARGET << 16;
2116 break;
2117
2118 default:
2119 printk(KERN_DEBUG "megasas: MFI FW status %#x\n",
2120 hdr->cmd_status);
2121 cmd->scmd->result = DID_ERROR << 16;
2122 break;
2123 }
2124
Sumant Patroe4a082c2006-05-30 12:03:37 -07002125 atomic_dec(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002126
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09002127 scsi_dma_unmap(cmd->scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002128 cmd->scmd->scsi_done(cmd->scmd);
2129 megasas_return_cmd(instance, cmd);
2130
2131 break;
2132
2133 case MFI_CMD_SMP:
2134 case MFI_CMD_STP:
2135 case MFI_CMD_DCMD:
Yang, Boc3518832009-10-06 14:18:02 -06002136 if (cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_GET_INFO ||
2137 cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_GET) {
2138 spin_lock_irqsave(&poll_aen_lock, flags);
2139 megasas_poll_wait_aen = 0;
2140 spin_unlock_irqrestore(&poll_aen_lock, flags);
2141 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002142
2143 /*
2144 * See if got an event notification
2145 */
2146 if (cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_WAIT)
2147 megasas_service_aen(instance, cmd);
2148 else
2149 megasas_complete_int_cmd(instance, cmd);
2150
2151 break;
2152
2153 case MFI_CMD_ABORT:
2154 /*
2155 * Cmd issued to abort another cmd returned
2156 */
2157 megasas_complete_abort(instance, cmd);
2158 break;
2159
2160 default:
2161 printk("megasas: Unknown command completed! [0x%X]\n",
2162 hdr->cmd);
2163 break;
2164 }
2165}
2166
2167/**
bo yang39a98552010-09-22 22:36:29 -04002168 * megasas_issue_pending_cmds_again - issue all pending cmds
2169 * in FW again because of the fw reset
2170 * @instance: Adapter soft state
2171 */
2172static inline void
2173megasas_issue_pending_cmds_again(struct megasas_instance *instance)
2174{
2175 struct megasas_cmd *cmd;
2176 struct list_head clist_local;
2177 union megasas_evt_class_locale class_locale;
2178 unsigned long flags;
2179 u32 seq_num;
2180
2181 INIT_LIST_HEAD(&clist_local);
2182 spin_lock_irqsave(&instance->hba_lock, flags);
2183 list_splice_init(&instance->internal_reset_pending_q, &clist_local);
2184 spin_unlock_irqrestore(&instance->hba_lock, flags);
2185
2186 while (!list_empty(&clist_local)) {
2187 cmd = list_entry((&clist_local)->next,
2188 struct megasas_cmd, list);
2189 list_del_init(&cmd->list);
2190
2191 if (cmd->sync_cmd || cmd->scmd) {
2192 printk(KERN_NOTICE "megaraid_sas: command %p, %p:%d"
2193 "detected to be pending while HBA reset.\n",
2194 cmd, cmd->scmd, cmd->sync_cmd);
2195
2196 cmd->retry_for_fw_reset++;
2197
2198 if (cmd->retry_for_fw_reset == 3) {
2199 printk(KERN_NOTICE "megaraid_sas: cmd %p, %p:%d"
2200 "was tried multiple times during reset."
2201 "Shutting down the HBA\n",
2202 cmd, cmd->scmd, cmd->sync_cmd);
2203 megaraid_sas_kill_hba(instance);
2204
2205 instance->adprecovery =
2206 MEGASAS_HW_CRITICAL_ERROR;
2207 return;
2208 }
2209 }
2210
2211 if (cmd->sync_cmd == 1) {
2212 if (cmd->scmd) {
2213 printk(KERN_NOTICE "megaraid_sas: unexpected"
2214 "cmd attached to internal command!\n");
2215 }
2216 printk(KERN_NOTICE "megasas: %p synchronous cmd"
2217 "on the internal reset queue,"
2218 "issue it again.\n", cmd);
2219 cmd->cmd_status = ENODATA;
2220 instance->instancet->fire_cmd(instance,
2221 cmd->frame_phys_addr ,
2222 0, instance->reg_set);
2223 } else if (cmd->scmd) {
2224 printk(KERN_NOTICE "megasas: %p scsi cmd [%02x],%#lx"
2225 "detected on the internal queue, issue again.\n",
2226 cmd, cmd->scmd->cmnd[0], cmd->scmd->serial_number);
2227
2228 atomic_inc(&instance->fw_outstanding);
2229 instance->instancet->fire_cmd(instance,
2230 cmd->frame_phys_addr,
2231 cmd->frame_count-1, instance->reg_set);
2232 } else {
2233 printk(KERN_NOTICE "megasas: %p unexpected cmd on the"
2234 "internal reset defer list while re-issue!!\n",
2235 cmd);
2236 }
2237 }
2238
2239 if (instance->aen_cmd) {
2240 printk(KERN_NOTICE "megaraid_sas: aen_cmd in def process\n");
2241 megasas_return_cmd(instance, instance->aen_cmd);
2242
2243 instance->aen_cmd = NULL;
2244 }
2245
2246 /*
2247 * Initiate AEN (Asynchronous Event Notification)
2248 */
2249 seq_num = instance->last_seq_num;
2250 class_locale.members.reserved = 0;
2251 class_locale.members.locale = MR_EVT_LOCALE_ALL;
2252 class_locale.members.class = MR_EVT_CLASS_DEBUG;
2253
2254 megasas_register_aen(instance, seq_num, class_locale.word);
2255}
2256
2257/**
2258 * Move the internal reset pending commands to a deferred queue.
2259 *
2260 * We move the commands pending at internal reset time to a
2261 * pending queue. This queue would be flushed after successful
2262 * completion of the internal reset sequence. if the internal reset
2263 * did not complete in time, the kernel reset handler would flush
2264 * these commands.
2265 **/
2266static void
2267megasas_internal_reset_defer_cmds(struct megasas_instance *instance)
2268{
2269 struct megasas_cmd *cmd;
2270 int i;
2271 u32 max_cmd = instance->max_fw_cmds;
2272 u32 defer_index;
2273 unsigned long flags;
2274
2275 defer_index = 0;
2276 spin_lock_irqsave(&instance->cmd_pool_lock, flags);
2277 for (i = 0; i < max_cmd; i++) {
2278 cmd = instance->cmd_list[i];
2279 if (cmd->sync_cmd == 1 || cmd->scmd) {
2280 printk(KERN_NOTICE "megasas: moving cmd[%d]:%p:%d:%p"
2281 "on the defer queue as internal\n",
2282 defer_index, cmd, cmd->sync_cmd, cmd->scmd);
2283
2284 if (!list_empty(&cmd->list)) {
2285 printk(KERN_NOTICE "megaraid_sas: ERROR while"
2286 " moving this cmd:%p, %d %p, it was"
2287 "discovered on some list?\n",
2288 cmd, cmd->sync_cmd, cmd->scmd);
2289
2290 list_del_init(&cmd->list);
2291 }
2292 defer_index++;
2293 list_add_tail(&cmd->list,
2294 &instance->internal_reset_pending_q);
2295 }
2296 }
2297 spin_unlock_irqrestore(&instance->cmd_pool_lock, flags);
2298}
2299
2300
2301static void
2302process_fw_state_change_wq(struct work_struct *work)
2303{
2304 struct megasas_instance *instance =
2305 container_of(work, struct megasas_instance, work_init);
2306 u32 wait;
2307 unsigned long flags;
2308
2309 if (instance->adprecovery != MEGASAS_ADPRESET_SM_INFAULT) {
2310 printk(KERN_NOTICE "megaraid_sas: error, recovery st %x \n",
2311 instance->adprecovery);
2312 return ;
2313 }
2314
2315 if (instance->adprecovery == MEGASAS_ADPRESET_SM_INFAULT) {
2316 printk(KERN_NOTICE "megaraid_sas: FW detected to be in fault"
2317 "state, restarting it...\n");
2318
2319 instance->instancet->disable_intr(instance->reg_set);
2320 atomic_set(&instance->fw_outstanding, 0);
2321
2322 atomic_set(&instance->fw_reset_no_pci_access, 1);
2323 instance->instancet->adp_reset(instance, instance->reg_set);
2324 atomic_set(&instance->fw_reset_no_pci_access, 0 );
2325
2326 printk(KERN_NOTICE "megaraid_sas: FW restarted successfully,"
2327 "initiating next stage...\n");
2328
2329 printk(KERN_NOTICE "megaraid_sas: HBA recovery state machine,"
2330 "state 2 starting...\n");
2331
2332 /*waitting for about 20 second before start the second init*/
2333 for (wait = 0; wait < 30; wait++) {
2334 msleep(1000);
2335 }
2336
2337 if (megasas_transition_to_ready(instance)) {
2338 printk(KERN_NOTICE "megaraid_sas:adapter not ready\n");
2339
2340 megaraid_sas_kill_hba(instance);
2341 instance->adprecovery = MEGASAS_HW_CRITICAL_ERROR;
2342 return ;
2343 }
2344
2345 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1064R) ||
2346 (instance->pdev->device == PCI_DEVICE_ID_DELL_PERC5) ||
2347 (instance->pdev->device == PCI_DEVICE_ID_LSI_VERDE_ZCR)
2348 ) {
2349 *instance->consumer = *instance->producer;
2350 } else {
2351 *instance->consumer = 0;
2352 *instance->producer = 0;
2353 }
2354
2355 megasas_issue_init_mfi(instance);
2356
2357 spin_lock_irqsave(&instance->hba_lock, flags);
2358 instance->adprecovery = MEGASAS_HBA_OPERATIONAL;
2359 spin_unlock_irqrestore(&instance->hba_lock, flags);
2360 instance->instancet->enable_intr(instance->reg_set);
2361
2362 megasas_issue_pending_cmds_again(instance);
2363 instance->issuepend_done = 1;
2364 }
2365 return ;
2366}
2367
2368/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002369 * megasas_deplete_reply_queue - Processes all completed commands
2370 * @instance: Adapter soft state
2371 * @alt_status: Alternate status to be returned to
2372 * SCSI mid-layer instead of the status
2373 * returned by the FW
bo yang39a98552010-09-22 22:36:29 -04002374 * Note: this must be called with hba lock held
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002375 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002376static int
bo yang39a98552010-09-22 22:36:29 -04002377megasas_deplete_reply_queue(struct megasas_instance *instance,
2378 u8 alt_status)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002379{
bo yang39a98552010-09-22 22:36:29 -04002380 u32 mfiStatus;
2381 u32 fw_state;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002382
bo yang39a98552010-09-22 22:36:29 -04002383 if ((mfiStatus = instance->instancet->check_reset(instance,
2384 instance->reg_set)) == 1) {
2385 return IRQ_HANDLED;
2386 }
2387
2388 if ((mfiStatus = instance->instancet->clear_intr(
2389 instance->reg_set)
2390 ) == 0) {
2391 return IRQ_NONE;
2392 }
2393
2394 instance->mfiStatus = mfiStatus;
2395
2396 if ((mfiStatus & MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE)) {
2397 fw_state = instance->instancet->read_fw_status_reg(
2398 instance->reg_set) & MFI_STATE_MASK;
2399
2400 if (fw_state != MFI_STATE_FAULT) {
2401 printk(KERN_NOTICE "megaraid_sas: fw state:%x\n",
2402 fw_state);
2403 }
2404
2405 if ((fw_state == MFI_STATE_FAULT) &&
2406 (instance->disableOnlineCtrlReset == 0)) {
2407 printk(KERN_NOTICE "megaraid_sas: wait adp restart\n");
2408
2409 if ((instance->pdev->device ==
2410 PCI_DEVICE_ID_LSI_SAS1064R) ||
2411 (instance->pdev->device ==
2412 PCI_DEVICE_ID_DELL_PERC5) ||
2413 (instance->pdev->device ==
2414 PCI_DEVICE_ID_LSI_VERDE_ZCR)) {
2415
2416 *instance->consumer =
2417 MEGASAS_ADPRESET_INPROG_SIGN;
2418 }
2419
2420
2421 instance->instancet->disable_intr(instance->reg_set);
2422 instance->adprecovery = MEGASAS_ADPRESET_SM_INFAULT;
2423 instance->issuepend_done = 0;
2424
2425 atomic_set(&instance->fw_outstanding, 0);
2426 megasas_internal_reset_defer_cmds(instance);
2427
2428 printk(KERN_NOTICE "megasas: fwState=%x, stage:%d\n",
2429 fw_state, instance->adprecovery);
2430
2431 schedule_work(&instance->work_init);
2432 return IRQ_HANDLED;
2433
2434 } else {
2435 printk(KERN_NOTICE "megasas: fwstate:%x, dis_OCR=%x\n",
2436 fw_state, instance->disableOnlineCtrlReset);
2437 }
2438 }
2439
Sumant Patro5d018ad2006-10-03 13:13:18 -07002440 tasklet_schedule(&instance->isr_tasklet);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002441 return IRQ_HANDLED;
2442}
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002443/**
2444 * megasas_isr - isr entry point
2445 */
David Howells7d12e782006-10-05 14:55:46 +01002446static irqreturn_t megasas_isr(int irq, void *devp)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002447{
bo yang39a98552010-09-22 22:36:29 -04002448 struct megasas_instance *instance;
2449 unsigned long flags;
2450 irqreturn_t rc;
2451
2452 if (atomic_read(
2453 &(((struct megasas_instance *)devp)->fw_reset_no_pci_access)))
2454 return IRQ_HANDLED;
2455
2456 instance = (struct megasas_instance *)devp;
2457
2458 spin_lock_irqsave(&instance->hba_lock, flags);
2459 rc = megasas_deplete_reply_queue(instance, DID_OK);
2460 spin_unlock_irqrestore(&instance->hba_lock, flags);
2461
2462 return rc;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002463}
2464
2465/**
2466 * megasas_transition_to_ready - Move the FW to READY state
Sumant Patro1341c932006-01-25 12:02:40 -08002467 * @instance: Adapter soft state
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002468 *
2469 * During the initialization, FW passes can potentially be in any one of
2470 * several possible states. If the FW in operational, waiting-for-handshake
2471 * states, driver must take steps to bring it to ready state. Otherwise, it
2472 * has to wait for the ready state.
2473 */
2474static int
Sumant Patro1341c932006-01-25 12:02:40 -08002475megasas_transition_to_ready(struct megasas_instance* instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002476{
2477 int i;
2478 u8 max_wait;
2479 u32 fw_state;
2480 u32 cur_state;
Yang, Bo7218df62009-10-06 14:52:20 -06002481 u32 abs_state, curr_abs_state;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002482
Sumant Patro1341c932006-01-25 12:02:40 -08002483 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) & MFI_STATE_MASK;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002484
Sumant Patroe3bbff92006-10-03 12:28:49 -07002485 if (fw_state != MFI_STATE_READY)
adam radford0d490162010-12-14 19:17:17 -08002486 printk(KERN_INFO "megasas: Waiting for FW to come to ready"
2487 " state\n");
Sumant Patroe3bbff92006-10-03 12:28:49 -07002488
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002489 while (fw_state != MFI_STATE_READY) {
2490
Yang, Bo7218df62009-10-06 14:52:20 -06002491 abs_state =
2492 instance->instancet->read_fw_status_reg(instance->reg_set);
2493
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002494 switch (fw_state) {
2495
2496 case MFI_STATE_FAULT:
2497
2498 printk(KERN_DEBUG "megasas: FW in FAULT state!!\n");
2499 return -ENODEV;
2500
2501 case MFI_STATE_WAIT_HANDSHAKE:
2502 /*
2503 * Set the CLR bit in inbound doorbell
2504 */
Yang, Bo0c79e682009-10-06 14:47:35 -06002505 if ((instance->pdev->device ==
Yang, Bo87911122009-10-06 14:31:54 -06002506 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
2507 (instance->pdev->device ==
2508 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
2509
2510 writel(
2511 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
2512 &instance->reg_set->reserved_0[0]);
2513 } else {
2514 writel(
2515 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
2516 &instance->reg_set->inbound_doorbell);
2517 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002518
Yang, Bo7218df62009-10-06 14:52:20 -06002519 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002520 cur_state = MFI_STATE_WAIT_HANDSHAKE;
2521 break;
2522
Sumant Patroe3bbff92006-10-03 12:28:49 -07002523 case MFI_STATE_BOOT_MESSAGE_PENDING:
Yang, Bo87911122009-10-06 14:31:54 -06002524 if ((instance->pdev->device ==
2525 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
2526 (instance->pdev->device ==
2527 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
2528 writel(MFI_INIT_HOTPLUG,
2529 &instance->reg_set->reserved_0[0]);
2530 } else
2531 writel(MFI_INIT_HOTPLUG,
2532 &instance->reg_set->inbound_doorbell);
Sumant Patroe3bbff92006-10-03 12:28:49 -07002533
Yang, Bo7218df62009-10-06 14:52:20 -06002534 max_wait = MEGASAS_RESET_WAIT_TIME;
Sumant Patroe3bbff92006-10-03 12:28:49 -07002535 cur_state = MFI_STATE_BOOT_MESSAGE_PENDING;
2536 break;
2537
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002538 case MFI_STATE_OPERATIONAL:
2539 /*
Sumant Patroe3bbff92006-10-03 12:28:49 -07002540 * Bring it to READY state; assuming max wait 10 secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002541 */
Sumant Patrob274cab2006-10-03 12:52:12 -07002542 instance->instancet->disable_intr(instance->reg_set);
Yang, Bo87911122009-10-06 14:31:54 -06002543 if ((instance->pdev->device ==
2544 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
2545 (instance->pdev->device ==
2546 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
2547 writel(MFI_RESET_FLAGS,
2548 &instance->reg_set->reserved_0[0]);
2549 } else
2550 writel(MFI_RESET_FLAGS,
2551 &instance->reg_set->inbound_doorbell);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002552
Yang, Bo7218df62009-10-06 14:52:20 -06002553 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002554 cur_state = MFI_STATE_OPERATIONAL;
2555 break;
2556
2557 case MFI_STATE_UNDEFINED:
2558 /*
2559 * This state should not last for more than 2 seconds
2560 */
Yang, Bo7218df62009-10-06 14:52:20 -06002561 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002562 cur_state = MFI_STATE_UNDEFINED;
2563 break;
2564
2565 case MFI_STATE_BB_INIT:
Yang, Bo7218df62009-10-06 14:52:20 -06002566 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002567 cur_state = MFI_STATE_BB_INIT;
2568 break;
2569
2570 case MFI_STATE_FW_INIT:
Yang, Bo7218df62009-10-06 14:52:20 -06002571 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002572 cur_state = MFI_STATE_FW_INIT;
2573 break;
2574
2575 case MFI_STATE_FW_INIT_2:
Yang, Bo7218df62009-10-06 14:52:20 -06002576 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002577 cur_state = MFI_STATE_FW_INIT_2;
2578 break;
2579
2580 case MFI_STATE_DEVICE_SCAN:
Yang, Bo7218df62009-10-06 14:52:20 -06002581 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002582 cur_state = MFI_STATE_DEVICE_SCAN;
2583 break;
2584
2585 case MFI_STATE_FLUSH_CACHE:
Yang, Bo7218df62009-10-06 14:52:20 -06002586 max_wait = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002587 cur_state = MFI_STATE_FLUSH_CACHE;
2588 break;
2589
2590 default:
2591 printk(KERN_DEBUG "megasas: Unknown state 0x%x\n",
2592 fw_state);
2593 return -ENODEV;
2594 }
2595
2596 /*
2597 * The cur_state should not last for more than max_wait secs
2598 */
2599 for (i = 0; i < (max_wait * 1000); i++) {
adam radford0d490162010-12-14 19:17:17 -08002600 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) &
Sumant Patro1341c932006-01-25 12:02:40 -08002601 MFI_STATE_MASK ;
Yang, Bo7218df62009-10-06 14:52:20 -06002602 curr_abs_state =
2603 instance->instancet->read_fw_status_reg(instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002604
Yang, Bo7218df62009-10-06 14:52:20 -06002605 if (abs_state == curr_abs_state) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002606 msleep(1);
2607 } else
2608 break;
2609 }
2610
2611 /*
2612 * Return error if fw_state hasn't changed after max_wait
2613 */
Yang, Bo7218df62009-10-06 14:52:20 -06002614 if (curr_abs_state == abs_state) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002615 printk(KERN_DEBUG "FW state [%d] hasn't changed "
2616 "in %d secs\n", fw_state, max_wait);
2617 return -ENODEV;
2618 }
bo yang39a98552010-09-22 22:36:29 -04002619 }
adam radford0d490162010-12-14 19:17:17 -08002620 printk(KERN_INFO "megasas: FW now in Ready state\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002621
2622 return 0;
2623}
2624
2625/**
2626 * megasas_teardown_frame_pool - Destroy the cmd frame DMA pool
2627 * @instance: Adapter soft state
2628 */
2629static void megasas_teardown_frame_pool(struct megasas_instance *instance)
2630{
2631 int i;
2632 u32 max_cmd = instance->max_fw_cmds;
2633 struct megasas_cmd *cmd;
2634
2635 if (!instance->frame_dma_pool)
2636 return;
2637
2638 /*
2639 * Return all frames to pool
2640 */
2641 for (i = 0; i < max_cmd; i++) {
2642
2643 cmd = instance->cmd_list[i];
2644
2645 if (cmd->frame)
2646 pci_pool_free(instance->frame_dma_pool, cmd->frame,
2647 cmd->frame_phys_addr);
2648
2649 if (cmd->sense)
Sumant Patroe3bbff92006-10-03 12:28:49 -07002650 pci_pool_free(instance->sense_dma_pool, cmd->sense,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002651 cmd->sense_phys_addr);
2652 }
2653
2654 /*
2655 * Now destroy the pool itself
2656 */
2657 pci_pool_destroy(instance->frame_dma_pool);
2658 pci_pool_destroy(instance->sense_dma_pool);
2659
2660 instance->frame_dma_pool = NULL;
2661 instance->sense_dma_pool = NULL;
2662}
2663
2664/**
2665 * megasas_create_frame_pool - Creates DMA pool for cmd frames
2666 * @instance: Adapter soft state
2667 *
2668 * Each command packet has an embedded DMA memory buffer that is used for
2669 * filling MFI frame and the SG list that immediately follows the frame. This
2670 * function creates those DMA memory buffers for each command packet by using
2671 * PCI pool facility.
2672 */
2673static int megasas_create_frame_pool(struct megasas_instance *instance)
2674{
2675 int i;
2676 u32 max_cmd;
2677 u32 sge_sz;
2678 u32 sgl_sz;
2679 u32 total_sz;
2680 u32 frame_count;
2681 struct megasas_cmd *cmd;
2682
2683 max_cmd = instance->max_fw_cmds;
2684
2685 /*
2686 * Size of our frame is 64 bytes for MFI frame, followed by max SG
2687 * elements and finally SCSI_SENSE_BUFFERSIZE bytes for sense buffer
2688 */
2689 sge_sz = (IS_DMA64) ? sizeof(struct megasas_sge64) :
2690 sizeof(struct megasas_sge32);
2691
Yang, Bof4c9a132009-10-06 14:43:28 -06002692 if (instance->flag_ieee) {
2693 sge_sz = sizeof(struct megasas_sge_skinny);
2694 }
2695
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002696 /*
2697 * Calculated the number of 64byte frames required for SGL
2698 */
2699 sgl_sz = sge_sz * instance->max_num_sge;
2700 frame_count = (sgl_sz + MEGAMFI_FRAME_SIZE - 1) / MEGAMFI_FRAME_SIZE;
bo yang39a98552010-09-22 22:36:29 -04002701 frame_count = 15;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002702
2703 /*
2704 * We need one extra frame for the MFI command
2705 */
2706 frame_count++;
2707
2708 total_sz = MEGAMFI_FRAME_SIZE * frame_count;
2709 /*
2710 * Use DMA pool facility provided by PCI layer
2711 */
2712 instance->frame_dma_pool = pci_pool_create("megasas frame pool",
2713 instance->pdev, total_sz, 64,
2714 0);
2715
2716 if (!instance->frame_dma_pool) {
2717 printk(KERN_DEBUG "megasas: failed to setup frame pool\n");
2718 return -ENOMEM;
2719 }
2720
2721 instance->sense_dma_pool = pci_pool_create("megasas sense pool",
2722 instance->pdev, 128, 4, 0);
2723
2724 if (!instance->sense_dma_pool) {
2725 printk(KERN_DEBUG "megasas: failed to setup sense pool\n");
2726
2727 pci_pool_destroy(instance->frame_dma_pool);
2728 instance->frame_dma_pool = NULL;
2729
2730 return -ENOMEM;
2731 }
2732
2733 /*
2734 * Allocate and attach a frame to each of the commands in cmd_list.
2735 * By making cmd->index as the context instead of the &cmd, we can
2736 * always use 32bit context regardless of the architecture
2737 */
2738 for (i = 0; i < max_cmd; i++) {
2739
2740 cmd = instance->cmd_list[i];
2741
2742 cmd->frame = pci_pool_alloc(instance->frame_dma_pool,
2743 GFP_KERNEL, &cmd->frame_phys_addr);
2744
2745 cmd->sense = pci_pool_alloc(instance->sense_dma_pool,
2746 GFP_KERNEL, &cmd->sense_phys_addr);
2747
2748 /*
2749 * megasas_teardown_frame_pool() takes care of freeing
2750 * whatever has been allocated
2751 */
2752 if (!cmd->frame || !cmd->sense) {
2753 printk(KERN_DEBUG "megasas: pci_pool_alloc failed \n");
2754 megasas_teardown_frame_pool(instance);
2755 return -ENOMEM;
2756 }
2757
Yang, Bo707e09b2010-10-12 07:20:27 -06002758 memset(cmd->frame, 0, total_sz);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002759 cmd->frame->io.context = cmd->index;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06002760 cmd->frame->io.pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002761 }
2762
2763 return 0;
2764}
2765
2766/**
2767 * megasas_free_cmds - Free all the cmds in the free cmd pool
2768 * @instance: Adapter soft state
2769 */
2770static void megasas_free_cmds(struct megasas_instance *instance)
2771{
2772 int i;
2773 /* First free the MFI frame pool */
2774 megasas_teardown_frame_pool(instance);
2775
2776 /* Free all the commands in the cmd_list */
2777 for (i = 0; i < instance->max_fw_cmds; i++)
2778 kfree(instance->cmd_list[i]);
2779
2780 /* Free the cmd_list buffer itself */
2781 kfree(instance->cmd_list);
2782 instance->cmd_list = NULL;
2783
2784 INIT_LIST_HEAD(&instance->cmd_pool);
2785}
2786
2787/**
2788 * megasas_alloc_cmds - Allocates the command packets
2789 * @instance: Adapter soft state
2790 *
2791 * Each command that is issued to the FW, whether IO commands from the OS or
2792 * internal commands like IOCTLs, are wrapped in local data structure called
2793 * megasas_cmd. The frame embedded in this megasas_cmd is actually issued to
2794 * the FW.
2795 *
2796 * Each frame has a 32-bit field called context (tag). This context is used
2797 * to get back the megasas_cmd from the frame when a frame gets completed in
2798 * the ISR. Typically the address of the megasas_cmd itself would be used as
2799 * the context. But we wanted to keep the differences between 32 and 64 bit
2800 * systems to the mininum. We always use 32 bit integers for the context. In
2801 * this driver, the 32 bit values are the indices into an array cmd_list.
2802 * This array is used only to look up the megasas_cmd given the context. The
2803 * free commands themselves are maintained in a linked list called cmd_pool.
2804 */
2805static int megasas_alloc_cmds(struct megasas_instance *instance)
2806{
2807 int i;
2808 int j;
2809 u32 max_cmd;
2810 struct megasas_cmd *cmd;
2811
2812 max_cmd = instance->max_fw_cmds;
2813
2814 /*
2815 * instance->cmd_list is an array of struct megasas_cmd pointers.
2816 * Allocate the dynamic array first and then allocate individual
2817 * commands.
2818 */
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07002819 instance->cmd_list = kcalloc(max_cmd, sizeof(struct megasas_cmd*), GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002820
2821 if (!instance->cmd_list) {
2822 printk(KERN_DEBUG "megasas: out of memory\n");
2823 return -ENOMEM;
2824 }
2825
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002826
2827 for (i = 0; i < max_cmd; i++) {
2828 instance->cmd_list[i] = kmalloc(sizeof(struct megasas_cmd),
2829 GFP_KERNEL);
2830
2831 if (!instance->cmd_list[i]) {
2832
2833 for (j = 0; j < i; j++)
2834 kfree(instance->cmd_list[j]);
2835
2836 kfree(instance->cmd_list);
2837 instance->cmd_list = NULL;
2838
2839 return -ENOMEM;
2840 }
2841 }
2842
2843 /*
2844 * Add all the commands to command pool (instance->cmd_pool)
2845 */
2846 for (i = 0; i < max_cmd; i++) {
2847 cmd = instance->cmd_list[i];
2848 memset(cmd, 0, sizeof(struct megasas_cmd));
2849 cmd->index = i;
bo yang39a98552010-09-22 22:36:29 -04002850 cmd->scmd = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002851 cmd->instance = instance;
2852
2853 list_add_tail(&cmd->list, &instance->cmd_pool);
2854 }
2855
2856 /*
2857 * Create a frame pool and assign one frame to each cmd
2858 */
2859 if (megasas_create_frame_pool(instance)) {
2860 printk(KERN_DEBUG "megasas: Error creating frame DMA pool\n");
2861 megasas_free_cmds(instance);
2862 }
2863
2864 return 0;
2865}
2866
Yang, Bo81e403c2009-10-06 14:27:54 -06002867/*
2868 * megasas_get_pd_list_info - Returns FW's pd_list structure
2869 * @instance: Adapter soft state
2870 * @pd_list: pd_list structure
2871 *
2872 * Issues an internal command (DCMD) to get the FW's controller PD
2873 * list structure. This information is mainly used to find out SYSTEM
2874 * supported by the FW.
2875 */
2876static int
2877megasas_get_pd_list(struct megasas_instance *instance)
2878{
2879 int ret = 0, pd_index = 0;
2880 struct megasas_cmd *cmd;
2881 struct megasas_dcmd_frame *dcmd;
2882 struct MR_PD_LIST *ci;
2883 struct MR_PD_ADDRESS *pd_addr;
2884 dma_addr_t ci_h = 0;
2885
2886 cmd = megasas_get_cmd(instance);
2887
2888 if (!cmd) {
2889 printk(KERN_DEBUG "megasas (get_pd_list): Failed to get cmd\n");
2890 return -ENOMEM;
2891 }
2892
2893 dcmd = &cmd->frame->dcmd;
2894
2895 ci = pci_alloc_consistent(instance->pdev,
2896 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST), &ci_h);
2897
2898 if (!ci) {
2899 printk(KERN_DEBUG "Failed to alloc mem for pd_list\n");
2900 megasas_return_cmd(instance, cmd);
2901 return -ENOMEM;
2902 }
2903
2904 memset(ci, 0, sizeof(*ci));
2905 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2906
2907 dcmd->mbox.b[0] = MR_PD_QUERY_TYPE_EXPOSED_TO_HOST;
2908 dcmd->mbox.b[1] = 0;
2909 dcmd->cmd = MFI_CMD_DCMD;
2910 dcmd->cmd_status = 0xFF;
2911 dcmd->sge_count = 1;
2912 dcmd->flags = MFI_FRAME_DIR_READ;
2913 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07002914 dcmd->pad_0 = 0;
Yang, Bo81e403c2009-10-06 14:27:54 -06002915 dcmd->data_xfer_len = MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST);
2916 dcmd->opcode = MR_DCMD_PD_LIST_QUERY;
2917 dcmd->sgl.sge32[0].phys_addr = ci_h;
2918 dcmd->sgl.sge32[0].length = MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST);
2919
2920 if (!megasas_issue_polled(instance, cmd)) {
2921 ret = 0;
2922 } else {
2923 ret = -1;
2924 }
2925
2926 /*
2927 * the following function will get the instance PD LIST.
2928 */
2929
2930 pd_addr = ci->addr;
2931
2932 if ( ret == 0 &&
2933 (ci->count <
2934 (MEGASAS_MAX_PD_CHANNELS * MEGASAS_MAX_DEV_PER_CHANNEL))) {
2935
2936 memset(instance->pd_list, 0,
2937 MEGASAS_MAX_PD * sizeof(struct megasas_pd_list));
2938
2939 for (pd_index = 0; pd_index < ci->count; pd_index++) {
2940
2941 instance->pd_list[pd_addr->deviceId].tid =
2942 pd_addr->deviceId;
2943 instance->pd_list[pd_addr->deviceId].driveType =
2944 pd_addr->scsiDevType;
2945 instance->pd_list[pd_addr->deviceId].driveState =
2946 MR_PD_STATE_SYSTEM;
2947 pd_addr++;
2948 }
2949 }
2950
2951 pci_free_consistent(instance->pdev,
2952 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST),
2953 ci, ci_h);
2954 megasas_return_cmd(instance, cmd);
2955
2956 return ret;
2957}
2958
Yang, Bobdc6fb82009-12-06 08:30:19 -07002959/*
2960 * megasas_get_ld_list_info - Returns FW's ld_list structure
2961 * @instance: Adapter soft state
2962 * @ld_list: ld_list structure
2963 *
2964 * Issues an internal command (DCMD) to get the FW's controller PD
2965 * list structure. This information is mainly used to find out SYSTEM
2966 * supported by the FW.
2967 */
2968static int
2969megasas_get_ld_list(struct megasas_instance *instance)
2970{
2971 int ret = 0, ld_index = 0, ids = 0;
2972 struct megasas_cmd *cmd;
2973 struct megasas_dcmd_frame *dcmd;
2974 struct MR_LD_LIST *ci;
2975 dma_addr_t ci_h = 0;
2976
2977 cmd = megasas_get_cmd(instance);
2978
2979 if (!cmd) {
2980 printk(KERN_DEBUG "megasas_get_ld_list: Failed to get cmd\n");
2981 return -ENOMEM;
2982 }
2983
2984 dcmd = &cmd->frame->dcmd;
2985
2986 ci = pci_alloc_consistent(instance->pdev,
2987 sizeof(struct MR_LD_LIST),
2988 &ci_h);
2989
2990 if (!ci) {
2991 printk(KERN_DEBUG "Failed to alloc mem in get_ld_list\n");
2992 megasas_return_cmd(instance, cmd);
2993 return -ENOMEM;
2994 }
2995
2996 memset(ci, 0, sizeof(*ci));
2997 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2998
2999 dcmd->cmd = MFI_CMD_DCMD;
3000 dcmd->cmd_status = 0xFF;
3001 dcmd->sge_count = 1;
3002 dcmd->flags = MFI_FRAME_DIR_READ;
3003 dcmd->timeout = 0;
3004 dcmd->data_xfer_len = sizeof(struct MR_LD_LIST);
3005 dcmd->opcode = MR_DCMD_LD_GET_LIST;
3006 dcmd->sgl.sge32[0].phys_addr = ci_h;
3007 dcmd->sgl.sge32[0].length = sizeof(struct MR_LD_LIST);
3008 dcmd->pad_0 = 0;
3009
3010 if (!megasas_issue_polled(instance, cmd)) {
3011 ret = 0;
3012 } else {
3013 ret = -1;
3014 }
3015
3016 /* the following function will get the instance PD LIST */
3017
bo yang39a98552010-09-22 22:36:29 -04003018 if ((ret == 0) && (ci->ldCount <= MAX_LOGICAL_DRIVES)) {
Yang, Bobdc6fb82009-12-06 08:30:19 -07003019 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
3020
3021 for (ld_index = 0; ld_index < ci->ldCount; ld_index++) {
3022 if (ci->ldList[ld_index].state != 0) {
3023 ids = ci->ldList[ld_index].ref.targetId;
3024 instance->ld_ids[ids] =
3025 ci->ldList[ld_index].ref.targetId;
3026 }
3027 }
3028 }
3029
3030 pci_free_consistent(instance->pdev,
3031 sizeof(struct MR_LD_LIST),
3032 ci,
3033 ci_h);
3034
3035 megasas_return_cmd(instance, cmd);
3036 return ret;
3037}
3038
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003039/**
3040 * megasas_get_controller_info - Returns FW's controller structure
3041 * @instance: Adapter soft state
3042 * @ctrl_info: Controller information structure
3043 *
3044 * Issues an internal command (DCMD) to get the FW's controller structure.
3045 * This information is mainly used to find out the maximum IO transfer per
3046 * command supported by the FW.
3047 */
3048static int
3049megasas_get_ctrl_info(struct megasas_instance *instance,
3050 struct megasas_ctrl_info *ctrl_info)
3051{
3052 int ret = 0;
3053 struct megasas_cmd *cmd;
3054 struct megasas_dcmd_frame *dcmd;
3055 struct megasas_ctrl_info *ci;
3056 dma_addr_t ci_h = 0;
3057
3058 cmd = megasas_get_cmd(instance);
3059
3060 if (!cmd) {
3061 printk(KERN_DEBUG "megasas: Failed to get a free cmd\n");
3062 return -ENOMEM;
3063 }
3064
3065 dcmd = &cmd->frame->dcmd;
3066
3067 ci = pci_alloc_consistent(instance->pdev,
3068 sizeof(struct megasas_ctrl_info), &ci_h);
3069
3070 if (!ci) {
3071 printk(KERN_DEBUG "Failed to alloc mem for ctrl info\n");
3072 megasas_return_cmd(instance, cmd);
3073 return -ENOMEM;
3074 }
3075
3076 memset(ci, 0, sizeof(*ci));
3077 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3078
3079 dcmd->cmd = MFI_CMD_DCMD;
3080 dcmd->cmd_status = 0xFF;
3081 dcmd->sge_count = 1;
3082 dcmd->flags = MFI_FRAME_DIR_READ;
3083 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07003084 dcmd->pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003085 dcmd->data_xfer_len = sizeof(struct megasas_ctrl_info);
3086 dcmd->opcode = MR_DCMD_CTRL_GET_INFO;
3087 dcmd->sgl.sge32[0].phys_addr = ci_h;
3088 dcmd->sgl.sge32[0].length = sizeof(struct megasas_ctrl_info);
3089
3090 if (!megasas_issue_polled(instance, cmd)) {
3091 ret = 0;
3092 memcpy(ctrl_info, ci, sizeof(struct megasas_ctrl_info));
3093 } else {
3094 ret = -1;
3095 }
3096
3097 pci_free_consistent(instance->pdev, sizeof(struct megasas_ctrl_info),
3098 ci, ci_h);
3099
3100 megasas_return_cmd(instance, cmd);
3101 return ret;
3102}
3103
3104/**
bo yang31ea7082007-11-07 12:09:50 -05003105 * megasas_issue_init_mfi - Initializes the FW
3106 * @instance: Adapter soft state
3107 *
3108 * Issues the INIT MFI cmd
3109 */
3110static int
3111megasas_issue_init_mfi(struct megasas_instance *instance)
3112{
3113 u32 context;
3114
3115 struct megasas_cmd *cmd;
3116
3117 struct megasas_init_frame *init_frame;
3118 struct megasas_init_queue_info *initq_info;
3119 dma_addr_t init_frame_h;
3120 dma_addr_t initq_info_h;
3121
3122 /*
3123 * Prepare a init frame. Note the init frame points to queue info
3124 * structure. Each frame has SGL allocated after first 64 bytes. For
3125 * this frame - since we don't need any SGL - we use SGL's space as
3126 * queue info structure
3127 *
3128 * We will not get a NULL command below. We just created the pool.
3129 */
3130 cmd = megasas_get_cmd(instance);
3131
3132 init_frame = (struct megasas_init_frame *)cmd->frame;
3133 initq_info = (struct megasas_init_queue_info *)
3134 ((unsigned long)init_frame + 64);
3135
3136 init_frame_h = cmd->frame_phys_addr;
3137 initq_info_h = init_frame_h + 64;
3138
3139 context = init_frame->context;
3140 memset(init_frame, 0, MEGAMFI_FRAME_SIZE);
3141 memset(initq_info, 0, sizeof(struct megasas_init_queue_info));
3142 init_frame->context = context;
3143
3144 initq_info->reply_queue_entries = instance->max_fw_cmds + 1;
3145 initq_info->reply_queue_start_phys_addr_lo = instance->reply_queue_h;
3146
3147 initq_info->producer_index_phys_addr_lo = instance->producer_h;
3148 initq_info->consumer_index_phys_addr_lo = instance->consumer_h;
3149
3150 init_frame->cmd = MFI_CMD_INIT;
3151 init_frame->cmd_status = 0xFF;
3152 init_frame->queue_info_new_phys_addr_lo = initq_info_h;
3153
3154 init_frame->data_xfer_len = sizeof(struct megasas_init_queue_info);
3155
3156 /*
3157 * disable the intr before firing the init frame to FW
3158 */
3159 instance->instancet->disable_intr(instance->reg_set);
3160
3161 /*
3162 * Issue the init frame in polled mode
3163 */
3164
3165 if (megasas_issue_polled(instance, cmd)) {
3166 printk(KERN_ERR "megasas: Failed to init firmware\n");
3167 megasas_return_cmd(instance, cmd);
3168 goto fail_fw_init;
3169 }
3170
3171 megasas_return_cmd(instance, cmd);
3172
3173 return 0;
3174
3175fail_fw_init:
3176 return -EINVAL;
3177}
3178
3179/**
bo yangad84db22007-11-09 04:40:16 -05003180 * megasas_start_timer - Initializes a timer object
3181 * @instance: Adapter soft state
3182 * @timer: timer object to be initialized
3183 * @fn: timer function
3184 * @interval: time interval between timer function call
3185 */
3186static inline void
3187megasas_start_timer(struct megasas_instance *instance,
3188 struct timer_list *timer,
3189 void *fn, unsigned long interval)
3190{
3191 init_timer(timer);
3192 timer->expires = jiffies + interval;
3193 timer->data = (unsigned long)instance;
3194 timer->function = fn;
3195 add_timer(timer);
3196}
3197
3198/**
3199 * megasas_io_completion_timer - Timer fn
3200 * @instance_addr: Address of adapter soft state
3201 *
3202 * Schedules tasklet for cmd completion
3203 * if poll_mode_io is set
3204 */
3205static void
3206megasas_io_completion_timer(unsigned long instance_addr)
3207{
3208 struct megasas_instance *instance =
3209 (struct megasas_instance *)instance_addr;
3210
3211 if (atomic_read(&instance->fw_outstanding))
3212 tasklet_schedule(&instance->isr_tasklet);
3213
3214 /* Restart timer */
3215 if (poll_mode_io)
3216 mod_timer(&instance->io_completion_timer,
3217 jiffies + MEGASAS_COMPLETION_TIMER_INTERVAL);
3218}
3219
3220/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003221 * megasas_init_mfi - Initializes the FW
3222 * @instance: Adapter soft state
3223 *
3224 * This is the main function for initializing MFI firmware.
3225 */
3226static int megasas_init_mfi(struct megasas_instance *instance)
3227{
3228 u32 context_sz;
3229 u32 reply_q_sz;
3230 u32 max_sectors_1;
3231 u32 max_sectors_2;
bo yang14faea92007-11-09 04:14:00 -05003232 u32 tmp_sectors;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003233 struct megasas_register_set __iomem *reg_set;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003234 struct megasas_ctrl_info *ctrl_info;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003235 /*
3236 * Map the message registers
3237 */
Yang, Bo6610a6b2008-08-10 12:42:38 -07003238 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1078GEN2) ||
Yang, Bo87911122009-10-06 14:31:54 -06003239 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
3240 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
Yang, Bo6610a6b2008-08-10 12:42:38 -07003241 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0079GEN2)) {
3242 instance->base_addr = pci_resource_start(instance->pdev, 1);
3243 } else {
3244 instance->base_addr = pci_resource_start(instance->pdev, 0);
3245 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003246
Noriyuki Fujiiaeab3fd2009-11-20 16:27:20 +09003247 if (pci_request_selected_regions(instance->pdev,
3248 pci_select_bars(instance->pdev, IORESOURCE_MEM),
3249 "megasas: LSI")) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003250 printk(KERN_DEBUG "megasas: IO memory region busy!\n");
3251 return -EBUSY;
3252 }
3253
3254 instance->reg_set = ioremap_nocache(instance->base_addr, 8192);
3255
3256 if (!instance->reg_set) {
3257 printk(KERN_DEBUG "megasas: Failed to map IO mem\n");
3258 goto fail_ioremap;
3259 }
3260
3261 reg_set = instance->reg_set;
3262
Sumant Patrof9876f02006-02-03 15:34:35 -08003263 switch(instance->pdev->device)
3264 {
bo yangaf7a5642008-03-17 04:13:07 -04003265 case PCI_DEVICE_ID_LSI_SAS1078R:
3266 case PCI_DEVICE_ID_LSI_SAS1078DE:
Sumant Patrof9876f02006-02-03 15:34:35 -08003267 instance->instancet = &megasas_instance_template_ppc;
3268 break;
Yang, Bo6610a6b2008-08-10 12:42:38 -07003269 case PCI_DEVICE_ID_LSI_SAS1078GEN2:
3270 case PCI_DEVICE_ID_LSI_SAS0079GEN2:
3271 instance->instancet = &megasas_instance_template_gen2;
3272 break;
Yang, Bo87911122009-10-06 14:31:54 -06003273 case PCI_DEVICE_ID_LSI_SAS0073SKINNY:
3274 case PCI_DEVICE_ID_LSI_SAS0071SKINNY:
3275 instance->instancet = &megasas_instance_template_skinny;
3276 break;
Sumant Patrof9876f02006-02-03 15:34:35 -08003277 case PCI_DEVICE_ID_LSI_SAS1064R:
3278 case PCI_DEVICE_ID_DELL_PERC5:
3279 default:
3280 instance->instancet = &megasas_instance_template_xscale;
3281 break;
3282 }
Sumant Patro1341c932006-01-25 12:02:40 -08003283
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003284 /*
3285 * We expect the FW state to be READY
3286 */
Sumant Patro1341c932006-01-25 12:02:40 -08003287 if (megasas_transition_to_ready(instance))
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003288 goto fail_ready_state;
3289
3290 /*
3291 * Get various operational parameters from status register
3292 */
Sumant Patro1341c932006-01-25 12:02:40 -08003293 instance->max_fw_cmds = instance->instancet->read_fw_status_reg(reg_set) & 0x00FFFF;
Sumant Patroe3bbff92006-10-03 12:28:49 -07003294 /*
3295 * Reduce the max supported cmds by 1. This is to ensure that the
3296 * reply_q_sz (1 more than the max cmd that driver may send)
3297 * does not exceed max cmds that the FW can support
3298 */
3299 instance->max_fw_cmds = instance->max_fw_cmds-1;
adam radford0d490162010-12-14 19:17:17 -08003300 instance->max_num_sge = (instance->instancet->read_fw_status_reg(reg_set) & 0xFF0000) >>
Sumant Patro1341c932006-01-25 12:02:40 -08003301 0x10;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003302 /*
3303 * Create a pool of commands
3304 */
3305 if (megasas_alloc_cmds(instance))
3306 goto fail_alloc_cmds;
3307
3308 /*
3309 * Allocate memory for reply queue. Length of reply queue should
3310 * be _one_ more than the maximum commands handled by the firmware.
3311 *
3312 * Note: When FW completes commands, it places corresponding contex
3313 * values in this circular reply queue. This circular queue is a fairly
3314 * typical producer-consumer queue. FW is the producer (of completed
3315 * commands) and the driver is the consumer.
3316 */
3317 context_sz = sizeof(u32);
3318 reply_q_sz = context_sz * (instance->max_fw_cmds + 1);
3319
3320 instance->reply_queue = pci_alloc_consistent(instance->pdev,
3321 reply_q_sz,
3322 &instance->reply_queue_h);
3323
3324 if (!instance->reply_queue) {
3325 printk(KERN_DEBUG "megasas: Out of DMA mem for reply queue\n");
3326 goto fail_reply_queue;
3327 }
3328
bo yang31ea7082007-11-07 12:09:50 -05003329 if (megasas_issue_init_mfi(instance))
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003330 goto fail_fw_init;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003331
bo yang39a98552010-09-22 22:36:29 -04003332 instance->fw_support_ieee = 0;
3333 instance->fw_support_ieee =
3334 (instance->instancet->read_fw_status_reg(reg_set) &
3335 0x04000000);
3336
3337 printk(KERN_NOTICE "megasas_init_mfi: fw_support_ieee=%d",
3338 instance->fw_support_ieee);
3339
3340 if (instance->fw_support_ieee)
3341 instance->flag_ieee = 1;
3342
3343 /** for passthrough
3344 * the following function will get the PD LIST.
3345 */
3346
Yang, Bo81e403c2009-10-06 14:27:54 -06003347 memset(instance->pd_list, 0 ,
3348 (MEGASAS_MAX_PD * sizeof(struct megasas_pd_list)));
3349 megasas_get_pd_list(instance);
3350
Yang, Bobdc6fb82009-12-06 08:30:19 -07003351 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
3352 megasas_get_ld_list(instance);
3353
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003354 ctrl_info = kmalloc(sizeof(struct megasas_ctrl_info), GFP_KERNEL);
3355
3356 /*
3357 * Compute the max allowed sectors per IO: The controller info has two
3358 * limits on max sectors. Driver should use the minimum of these two.
3359 *
3360 * 1 << stripe_sz_ops.min = max sectors per strip
3361 *
3362 * Note that older firmwares ( < FW ver 30) didn't report information
3363 * to calculate max_sectors_1. So the number ended up as zero always.
3364 */
bo yang14faea92007-11-09 04:14:00 -05003365 tmp_sectors = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003366 if (ctrl_info && !megasas_get_ctrl_info(instance, ctrl_info)) {
3367
3368 max_sectors_1 = (1 << ctrl_info->stripe_sz_ops.min) *
3369 ctrl_info->max_strips_per_io;
3370 max_sectors_2 = ctrl_info->max_request_size;
3371
bo yang14faea92007-11-09 04:14:00 -05003372 tmp_sectors = min_t(u32, max_sectors_1 , max_sectors_2);
bo yang39a98552010-09-22 22:36:29 -04003373 instance->disableOnlineCtrlReset =
3374 ctrl_info->properties.OnOffProperties.disableOnlineCtrlReset;
bo yang14faea92007-11-09 04:14:00 -05003375 }
3376
3377 instance->max_sectors_per_req = instance->max_num_sge *
3378 PAGE_SIZE / 512;
3379 if (tmp_sectors && (instance->max_sectors_per_req > tmp_sectors))
3380 instance->max_sectors_per_req = tmp_sectors;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003381
3382 kfree(ctrl_info);
3383
Sumant Patro5d018ad2006-10-03 13:13:18 -07003384 /*
3385 * Setup tasklet for cmd completion
3386 */
3387
bo yangad84db22007-11-09 04:40:16 -05003388 tasklet_init(&instance->isr_tasklet, megasas_complete_cmd_dpc,
3389 (unsigned long)instance);
3390
3391 /* Initialize the cmd completion timer */
3392 if (poll_mode_io)
3393 megasas_start_timer(instance, &instance->io_completion_timer,
3394 megasas_io_completion_timer,
3395 MEGASAS_COMPLETION_TIMER_INTERVAL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003396 return 0;
3397
3398 fail_fw_init:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003399
3400 pci_free_consistent(instance->pdev, reply_q_sz,
3401 instance->reply_queue, instance->reply_queue_h);
3402 fail_reply_queue:
3403 megasas_free_cmds(instance);
3404
3405 fail_alloc_cmds:
3406 fail_ready_state:
3407 iounmap(instance->reg_set);
3408
3409 fail_ioremap:
Noriyuki Fujiiaeab3fd2009-11-20 16:27:20 +09003410 pci_release_selected_regions(instance->pdev,
3411 pci_select_bars(instance->pdev, IORESOURCE_MEM));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003412
3413 return -EINVAL;
3414}
3415
3416/**
3417 * megasas_release_mfi - Reverses the FW initialization
3418 * @intance: Adapter soft state
3419 */
3420static void megasas_release_mfi(struct megasas_instance *instance)
3421{
3422 u32 reply_q_sz = sizeof(u32) * (instance->max_fw_cmds + 1);
3423
3424 pci_free_consistent(instance->pdev, reply_q_sz,
3425 instance->reply_queue, instance->reply_queue_h);
3426
3427 megasas_free_cmds(instance);
3428
3429 iounmap(instance->reg_set);
3430
Noriyuki Fujiiaeab3fd2009-11-20 16:27:20 +09003431 pci_release_selected_regions(instance->pdev,
3432 pci_select_bars(instance->pdev, IORESOURCE_MEM));
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003433}
3434
3435/**
3436 * megasas_get_seq_num - Gets latest event sequence numbers
3437 * @instance: Adapter soft state
3438 * @eli: FW event log sequence numbers information
3439 *
3440 * FW maintains a log of all events in a non-volatile area. Upper layers would
3441 * usually find out the latest sequence number of the events, the seq number at
3442 * the boot etc. They would "read" all the events below the latest seq number
3443 * by issuing a direct fw cmd (DCMD). For the future events (beyond latest seq
3444 * number), they would subsribe to AEN (asynchronous event notification) and
3445 * wait for the events to happen.
3446 */
3447static int
3448megasas_get_seq_num(struct megasas_instance *instance,
3449 struct megasas_evt_log_info *eli)
3450{
3451 struct megasas_cmd *cmd;
3452 struct megasas_dcmd_frame *dcmd;
3453 struct megasas_evt_log_info *el_info;
3454 dma_addr_t el_info_h = 0;
3455
3456 cmd = megasas_get_cmd(instance);
3457
3458 if (!cmd) {
3459 return -ENOMEM;
3460 }
3461
3462 dcmd = &cmd->frame->dcmd;
3463 el_info = pci_alloc_consistent(instance->pdev,
3464 sizeof(struct megasas_evt_log_info),
3465 &el_info_h);
3466
3467 if (!el_info) {
3468 megasas_return_cmd(instance, cmd);
3469 return -ENOMEM;
3470 }
3471
3472 memset(el_info, 0, sizeof(*el_info));
3473 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3474
3475 dcmd->cmd = MFI_CMD_DCMD;
3476 dcmd->cmd_status = 0x0;
3477 dcmd->sge_count = 1;
3478 dcmd->flags = MFI_FRAME_DIR_READ;
3479 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07003480 dcmd->pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003481 dcmd->data_xfer_len = sizeof(struct megasas_evt_log_info);
3482 dcmd->opcode = MR_DCMD_CTRL_EVENT_GET_INFO;
3483 dcmd->sgl.sge32[0].phys_addr = el_info_h;
3484 dcmd->sgl.sge32[0].length = sizeof(struct megasas_evt_log_info);
3485
3486 megasas_issue_blocked_cmd(instance, cmd);
3487
3488 /*
3489 * Copy the data back into callers buffer
3490 */
3491 memcpy(eli, el_info, sizeof(struct megasas_evt_log_info));
3492
3493 pci_free_consistent(instance->pdev, sizeof(struct megasas_evt_log_info),
3494 el_info, el_info_h);
3495
3496 megasas_return_cmd(instance, cmd);
3497
3498 return 0;
3499}
3500
3501/**
3502 * megasas_register_aen - Registers for asynchronous event notification
3503 * @instance: Adapter soft state
3504 * @seq_num: The starting sequence number
3505 * @class_locale: Class of the event
3506 *
3507 * This function subscribes for AEN for events beyond the @seq_num. It requests
3508 * to be notified if and only if the event is of type @class_locale
3509 */
3510static int
3511megasas_register_aen(struct megasas_instance *instance, u32 seq_num,
3512 u32 class_locale_word)
3513{
3514 int ret_val;
3515 struct megasas_cmd *cmd;
3516 struct megasas_dcmd_frame *dcmd;
3517 union megasas_evt_class_locale curr_aen;
3518 union megasas_evt_class_locale prev_aen;
3519
3520 /*
3521 * If there an AEN pending already (aen_cmd), check if the
3522 * class_locale of that pending AEN is inclusive of the new
3523 * AEN request we currently have. If it is, then we don't have
3524 * to do anything. In other words, whichever events the current
3525 * AEN request is subscribing to, have already been subscribed
3526 * to.
3527 *
3528 * If the old_cmd is _not_ inclusive, then we have to abort
3529 * that command, form a class_locale that is superset of both
3530 * old and current and re-issue to the FW
3531 */
3532
3533 curr_aen.word = class_locale_word;
3534
3535 if (instance->aen_cmd) {
3536
3537 prev_aen.word = instance->aen_cmd->frame->dcmd.mbox.w[1];
3538
3539 /*
3540 * A class whose enum value is smaller is inclusive of all
3541 * higher values. If a PROGRESS (= -1) was previously
3542 * registered, then a new registration requests for higher
3543 * classes need not be sent to FW. They are automatically
3544 * included.
3545 *
3546 * Locale numbers don't have such hierarchy. They are bitmap
3547 * values
3548 */
3549 if ((prev_aen.members.class <= curr_aen.members.class) &&
3550 !((prev_aen.members.locale & curr_aen.members.locale) ^
3551 curr_aen.members.locale)) {
3552 /*
3553 * Previously issued event registration includes
3554 * current request. Nothing to do.
3555 */
3556 return 0;
3557 } else {
3558 curr_aen.members.locale |= prev_aen.members.locale;
3559
3560 if (prev_aen.members.class < curr_aen.members.class)
3561 curr_aen.members.class = prev_aen.members.class;
3562
3563 instance->aen_cmd->abort_aen = 1;
3564 ret_val = megasas_issue_blocked_abort_cmd(instance,
3565 instance->
3566 aen_cmd);
3567
3568 if (ret_val) {
3569 printk(KERN_DEBUG "megasas: Failed to abort "
3570 "previous AEN command\n");
3571 return ret_val;
3572 }
3573 }
3574 }
3575
3576 cmd = megasas_get_cmd(instance);
3577
3578 if (!cmd)
3579 return -ENOMEM;
3580
3581 dcmd = &cmd->frame->dcmd;
3582
3583 memset(instance->evt_detail, 0, sizeof(struct megasas_evt_detail));
3584
3585 /*
3586 * Prepare DCMD for aen registration
3587 */
3588 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3589
3590 dcmd->cmd = MFI_CMD_DCMD;
3591 dcmd->cmd_status = 0x0;
3592 dcmd->sge_count = 1;
3593 dcmd->flags = MFI_FRAME_DIR_READ;
3594 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07003595 dcmd->pad_0 = 0;
bo yang39a98552010-09-22 22:36:29 -04003596 instance->last_seq_num = seq_num;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003597 dcmd->data_xfer_len = sizeof(struct megasas_evt_detail);
3598 dcmd->opcode = MR_DCMD_CTRL_EVENT_WAIT;
3599 dcmd->mbox.w[0] = seq_num;
3600 dcmd->mbox.w[1] = curr_aen.word;
3601 dcmd->sgl.sge32[0].phys_addr = (u32) instance->evt_detail_h;
3602 dcmd->sgl.sge32[0].length = sizeof(struct megasas_evt_detail);
3603
Yang, Bof4c9a132009-10-06 14:43:28 -06003604 if (instance->aen_cmd != NULL) {
3605 megasas_return_cmd(instance, cmd);
3606 return 0;
3607 }
3608
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003609 /*
3610 * Store reference to the cmd used to register for AEN. When an
3611 * application wants us to register for AEN, we have to abort this
3612 * cmd and re-register with a new EVENT LOCALE supplied by that app
3613 */
3614 instance->aen_cmd = cmd;
3615
3616 /*
3617 * Issue the aen registration frame
3618 */
Yang, Bo0c79e682009-10-06 14:47:35 -06003619 instance->instancet->fire_cmd(instance,
3620 cmd->frame_phys_addr, 0, instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003621
3622 return 0;
3623}
3624
3625/**
3626 * megasas_start_aen - Subscribes to AEN during driver load time
3627 * @instance: Adapter soft state
3628 */
3629static int megasas_start_aen(struct megasas_instance *instance)
3630{
3631 struct megasas_evt_log_info eli;
3632 union megasas_evt_class_locale class_locale;
3633
3634 /*
3635 * Get the latest sequence number from FW
3636 */
3637 memset(&eli, 0, sizeof(eli));
3638
3639 if (megasas_get_seq_num(instance, &eli))
3640 return -1;
3641
3642 /*
3643 * Register AEN with FW for latest sequence number plus 1
3644 */
3645 class_locale.members.reserved = 0;
3646 class_locale.members.locale = MR_EVT_LOCALE_ALL;
3647 class_locale.members.class = MR_EVT_CLASS_DEBUG;
3648
3649 return megasas_register_aen(instance, eli.newest_seq_num + 1,
3650 class_locale.word);
3651}
3652
3653/**
3654 * megasas_io_attach - Attaches this driver to SCSI mid-layer
3655 * @instance: Adapter soft state
3656 */
3657static int megasas_io_attach(struct megasas_instance *instance)
3658{
3659 struct Scsi_Host *host = instance->host;
3660
3661 /*
3662 * Export parameters required by SCSI mid-layer
3663 */
3664 host->irq = instance->pdev->irq;
3665 host->unique_id = instance->unique_id;
Yang, Bo7bebf5c2009-10-06 14:40:58 -06003666 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
3667 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
3668 host->can_queue =
3669 instance->max_fw_cmds - MEGASAS_SKINNY_INT_CMDS;
3670 } else
3671 host->can_queue =
3672 instance->max_fw_cmds - MEGASAS_INT_CMDS;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003673 host->this_id = instance->init_id;
3674 host->sg_tablesize = instance->max_num_sge;
Yang, Bo1fd10682010-10-12 07:18:50 -06003675 /*
3676 * Check if the module parameter value for max_sectors can be used
3677 */
3678 if (max_sectors && max_sectors < instance->max_sectors_per_req)
3679 instance->max_sectors_per_req = max_sectors;
3680 else {
3681 if (max_sectors) {
3682 if (((instance->pdev->device ==
3683 PCI_DEVICE_ID_LSI_SAS1078GEN2) ||
3684 (instance->pdev->device ==
3685 PCI_DEVICE_ID_LSI_SAS0079GEN2)) &&
3686 (max_sectors <= MEGASAS_MAX_SECTORS)) {
3687 instance->max_sectors_per_req = max_sectors;
3688 } else {
3689 printk(KERN_INFO "megasas: max_sectors should be > 0"
3690 "and <= %d (or < 1MB for GEN2 controller)\n",
3691 instance->max_sectors_per_req);
3692 }
3693 }
3694 }
3695
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003696 host->max_sectors = instance->max_sectors_per_req;
3697 host->cmd_per_lun = 128;
3698 host->max_channel = MEGASAS_MAX_CHANNELS - 1;
3699 host->max_id = MEGASAS_MAX_DEV_PER_CHANNEL;
3700 host->max_lun = MEGASAS_MAX_LUN;
Joshua Giles122da302006-02-03 15:34:17 -08003701 host->max_cmd_len = 16;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003702
3703 /*
3704 * Notify the mid-layer about the new controller
3705 */
3706 if (scsi_add_host(host, &instance->pdev->dev)) {
3707 printk(KERN_DEBUG "megasas: scsi_add_host failed\n");
3708 return -ENODEV;
3709 }
3710
3711 /*
3712 * Trigger SCSI to scan our drives
3713 */
3714 scsi_scan_host(host);
3715 return 0;
3716}
3717
bo yang31ea7082007-11-07 12:09:50 -05003718static int
3719megasas_set_dma_mask(struct pci_dev *pdev)
3720{
3721 /*
3722 * All our contollers are capable of performing 64-bit DMA
3723 */
3724 if (IS_DMA64) {
Yang Hongyang6a355282009-04-06 19:01:13 -07003725 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) {
bo yang31ea7082007-11-07 12:09:50 -05003726
Yang Hongyang284901a2009-04-06 19:01:15 -07003727 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
bo yang31ea7082007-11-07 12:09:50 -05003728 goto fail_set_dma_mask;
3729 }
3730 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07003731 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
bo yang31ea7082007-11-07 12:09:50 -05003732 goto fail_set_dma_mask;
3733 }
3734 return 0;
3735
3736fail_set_dma_mask:
3737 return 1;
3738}
3739
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003740/**
3741 * megasas_probe_one - PCI hotplug entry point
3742 * @pdev: PCI device structure
adam radford0d490162010-12-14 19:17:17 -08003743 * @id: PCI ids of supported hotplugged adapter
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003744 */
3745static int __devinit
3746megasas_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
3747{
3748 int rval;
3749 struct Scsi_Host *host;
3750 struct megasas_instance *instance;
3751
3752 /*
3753 * Announce PCI information
3754 */
3755 printk(KERN_INFO "megasas: %#4.04x:%#4.04x:%#4.04x:%#4.04x: ",
3756 pdev->vendor, pdev->device, pdev->subsystem_vendor,
3757 pdev->subsystem_device);
3758
3759 printk("bus %d:slot %d:func %d\n",
3760 pdev->bus->number, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
3761
3762 /*
3763 * PCI prepping: enable device set bus mastering and dma mask
3764 */
Noriyuki Fujiiaeab3fd2009-11-20 16:27:20 +09003765 rval = pci_enable_device_mem(pdev);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003766
3767 if (rval) {
3768 return rval;
3769 }
3770
3771 pci_set_master(pdev);
3772
bo yang31ea7082007-11-07 12:09:50 -05003773 if (megasas_set_dma_mask(pdev))
3774 goto fail_set_dma_mask;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003775
3776 host = scsi_host_alloc(&megasas_template,
3777 sizeof(struct megasas_instance));
3778
3779 if (!host) {
3780 printk(KERN_DEBUG "megasas: scsi_host_alloc failed\n");
3781 goto fail_alloc_instance;
3782 }
3783
3784 instance = (struct megasas_instance *)host->hostdata;
3785 memset(instance, 0, sizeof(*instance));
bo yang39a98552010-09-22 22:36:29 -04003786 atomic_set( &instance->fw_reset_no_pci_access, 0 );
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003787
3788 instance->producer = pci_alloc_consistent(pdev, sizeof(u32),
3789 &instance->producer_h);
3790 instance->consumer = pci_alloc_consistent(pdev, sizeof(u32),
3791 &instance->consumer_h);
3792
3793 if (!instance->producer || !instance->consumer) {
3794 printk(KERN_DEBUG "megasas: Failed to allocate memory for "
3795 "producer, consumer\n");
3796 goto fail_alloc_dma_buf;
3797 }
3798
3799 *instance->producer = 0;
3800 *instance->consumer = 0;
Yang, Boc3518832009-10-06 14:18:02 -06003801 megasas_poll_wait_aen = 0;
Yang, Bof4c9a132009-10-06 14:43:28 -06003802 instance->flag_ieee = 0;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06003803 instance->ev = NULL;
bo yang39a98552010-09-22 22:36:29 -04003804 instance->issuepend_done = 1;
3805 instance->adprecovery = MEGASAS_HBA_OPERATIONAL;
3806 megasas_poll_wait_aen = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003807
3808 instance->evt_detail = pci_alloc_consistent(pdev,
3809 sizeof(struct
3810 megasas_evt_detail),
3811 &instance->evt_detail_h);
3812
3813 if (!instance->evt_detail) {
3814 printk(KERN_DEBUG "megasas: Failed to allocate memory for "
3815 "event detail structure\n");
3816 goto fail_alloc_dma_buf;
3817 }
3818
3819 /*
3820 * Initialize locks and queues
3821 */
3822 INIT_LIST_HEAD(&instance->cmd_pool);
bo yang39a98552010-09-22 22:36:29 -04003823 INIT_LIST_HEAD(&instance->internal_reset_pending_q);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003824
Sumant Patroe4a082c2006-05-30 12:03:37 -07003825 atomic_set(&instance->fw_outstanding,0);
3826
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003827 init_waitqueue_head(&instance->int_cmd_wait_q);
3828 init_waitqueue_head(&instance->abort_cmd_wait_q);
3829
3830 spin_lock_init(&instance->cmd_pool_lock);
bo yang39a98552010-09-22 22:36:29 -04003831 spin_lock_init(&instance->hba_lock);
bo yang7343eb62007-11-09 04:35:44 -05003832 spin_lock_init(&instance->completion_lock);
Yang, Boc3518832009-10-06 14:18:02 -06003833 spin_lock_init(&poll_aen_lock);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003834
Matthias Kaehlckee5a69e22007-10-27 09:48:46 +02003835 mutex_init(&instance->aen_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003836
3837 /*
3838 * Initialize PCI related and misc parameters
3839 */
3840 instance->pdev = pdev;
3841 instance->host = host;
3842 instance->unique_id = pdev->bus->number << 8 | pdev->devfn;
3843 instance->init_id = MEGASAS_DEFAULT_INIT_ID;
3844
Yang, Bo7bebf5c2009-10-06 14:40:58 -06003845 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
3846 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
Yang, Bof4c9a132009-10-06 14:43:28 -06003847 instance->flag_ieee = 1;
Yang, Bo7bebf5c2009-10-06 14:40:58 -06003848 sema_init(&instance->ioctl_sem, MEGASAS_SKINNY_INT_CMDS);
3849 } else
3850 sema_init(&instance->ioctl_sem, MEGASAS_INT_CMDS);
3851
Sumant Patro658dced2006-10-03 13:09:14 -07003852 megasas_dbg_lvl = 0;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07003853 instance->flag = 0;
Yang, Bo0c79e682009-10-06 14:47:35 -06003854 instance->unload = 1;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07003855 instance->last_time = 0;
bo yang39a98552010-09-22 22:36:29 -04003856 instance->disableOnlineCtrlReset = 1;
3857
3858 INIT_WORK(&instance->work_init, process_fw_state_change_wq);
Sumant Patro658dced2006-10-03 13:09:14 -07003859
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003860 /*
3861 * Initialize MFI Firmware
3862 */
3863 if (megasas_init_mfi(instance))
3864 goto fail_init_mfi;
3865
3866 /*
3867 * Register IRQ
3868 */
Thomas Gleixner1d6f3592006-07-01 19:29:42 -07003869 if (request_irq(pdev->irq, megasas_isr, IRQF_SHARED, "megasas", instance)) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003870 printk(KERN_DEBUG "megasas: Failed to register IRQ\n");
3871 goto fail_irq;
3872 }
3873
Sumant Patro1341c932006-01-25 12:02:40 -08003874 instance->instancet->enable_intr(instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003875
3876 /*
3877 * Store instance in PCI softstate
3878 */
3879 pci_set_drvdata(pdev, instance);
3880
3881 /*
3882 * Add this controller to megasas_mgmt_info structure so that it
3883 * can be exported to management applications
3884 */
3885 megasas_mgmt_info.count++;
3886 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = instance;
3887 megasas_mgmt_info.max_index++;
3888
3889 /*
3890 * Initiate AEN (Asynchronous Event Notification)
3891 */
3892 if (megasas_start_aen(instance)) {
3893 printk(KERN_DEBUG "megasas: start aen failed\n");
3894 goto fail_start_aen;
3895 }
3896
3897 /*
3898 * Register with SCSI mid-layer
3899 */
3900 if (megasas_io_attach(instance))
3901 goto fail_io_attach;
3902
Yang, Bo0c79e682009-10-06 14:47:35 -06003903 instance->unload = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003904 return 0;
3905
3906 fail_start_aen:
3907 fail_io_attach:
3908 megasas_mgmt_info.count--;
3909 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = NULL;
3910 megasas_mgmt_info.max_index--;
3911
3912 pci_set_drvdata(pdev, NULL);
Sumant Patrob274cab2006-10-03 12:52:12 -07003913 instance->instancet->disable_intr(instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003914 free_irq(instance->pdev->irq, instance);
3915
3916 megasas_release_mfi(instance);
3917
3918 fail_irq:
3919 fail_init_mfi:
3920 fail_alloc_dma_buf:
3921 if (instance->evt_detail)
3922 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
3923 instance->evt_detail,
3924 instance->evt_detail_h);
3925
3926 if (instance->producer)
3927 pci_free_consistent(pdev, sizeof(u32), instance->producer,
3928 instance->producer_h);
3929 if (instance->consumer)
3930 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
3931 instance->consumer_h);
3932 scsi_host_put(host);
3933
3934 fail_alloc_instance:
3935 fail_set_dma_mask:
3936 pci_disable_device(pdev);
3937
3938 return -ENODEV;
3939}
3940
3941/**
3942 * megasas_flush_cache - Requests FW to flush all its caches
3943 * @instance: Adapter soft state
3944 */
3945static void megasas_flush_cache(struct megasas_instance *instance)
3946{
3947 struct megasas_cmd *cmd;
3948 struct megasas_dcmd_frame *dcmd;
3949
bo yang39a98552010-09-22 22:36:29 -04003950 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR)
3951 return;
3952
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003953 cmd = megasas_get_cmd(instance);
3954
3955 if (!cmd)
3956 return;
3957
3958 dcmd = &cmd->frame->dcmd;
3959
3960 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3961
3962 dcmd->cmd = MFI_CMD_DCMD;
3963 dcmd->cmd_status = 0x0;
3964 dcmd->sge_count = 0;
3965 dcmd->flags = MFI_FRAME_DIR_NONE;
3966 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07003967 dcmd->pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003968 dcmd->data_xfer_len = 0;
3969 dcmd->opcode = MR_DCMD_CTRL_CACHE_FLUSH;
3970 dcmd->mbox.b[0] = MR_FLUSH_CTRL_CACHE | MR_FLUSH_DISK_CACHE;
3971
3972 megasas_issue_blocked_cmd(instance, cmd);
3973
3974 megasas_return_cmd(instance, cmd);
3975
3976 return;
3977}
3978
3979/**
3980 * megasas_shutdown_controller - Instructs FW to shutdown the controller
3981 * @instance: Adapter soft state
bo yang31ea7082007-11-07 12:09:50 -05003982 * @opcode: Shutdown/Hibernate
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003983 */
bo yang31ea7082007-11-07 12:09:50 -05003984static void megasas_shutdown_controller(struct megasas_instance *instance,
3985 u32 opcode)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003986{
3987 struct megasas_cmd *cmd;
3988 struct megasas_dcmd_frame *dcmd;
3989
bo yang39a98552010-09-22 22:36:29 -04003990 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR)
3991 return;
3992
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003993 cmd = megasas_get_cmd(instance);
3994
3995 if (!cmd)
3996 return;
3997
3998 if (instance->aen_cmd)
3999 megasas_issue_blocked_abort_cmd(instance, instance->aen_cmd);
4000
4001 dcmd = &cmd->frame->dcmd;
4002
4003 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4004
4005 dcmd->cmd = MFI_CMD_DCMD;
4006 dcmd->cmd_status = 0x0;
4007 dcmd->sge_count = 0;
4008 dcmd->flags = MFI_FRAME_DIR_NONE;
4009 dcmd->timeout = 0;
Yang, Bo780a3762009-12-06 08:24:21 -07004010 dcmd->pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004011 dcmd->data_xfer_len = 0;
bo yang31ea7082007-11-07 12:09:50 -05004012 dcmd->opcode = opcode;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004013
4014 megasas_issue_blocked_cmd(instance, cmd);
4015
4016 megasas_return_cmd(instance, cmd);
4017
4018 return;
4019}
4020
Jiri Slaby33139b22008-05-01 17:56:02 +02004021#ifdef CONFIG_PM
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004022/**
bo yangad84db22007-11-09 04:40:16 -05004023 * megasas_suspend - driver suspend entry point
4024 * @pdev: PCI device structure
bo yang31ea7082007-11-07 12:09:50 -05004025 * @state: PCI power state to suspend routine
4026 */
Jiri Slaby33139b22008-05-01 17:56:02 +02004027static int
bo yang31ea7082007-11-07 12:09:50 -05004028megasas_suspend(struct pci_dev *pdev, pm_message_t state)
4029{
4030 struct Scsi_Host *host;
4031 struct megasas_instance *instance;
4032
4033 instance = pci_get_drvdata(pdev);
4034 host = instance->host;
Yang, Bo0c79e682009-10-06 14:47:35 -06004035 instance->unload = 1;
bo yang31ea7082007-11-07 12:09:50 -05004036
bo yangad84db22007-11-09 04:40:16 -05004037 if (poll_mode_io)
4038 del_timer_sync(&instance->io_completion_timer);
4039
bo yang31ea7082007-11-07 12:09:50 -05004040 megasas_flush_cache(instance);
4041 megasas_shutdown_controller(instance, MR_DCMD_HIBERNATE_SHUTDOWN);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06004042
4043 /* cancel the delayed work if this work still in queue */
4044 if (instance->ev != NULL) {
4045 struct megasas_aen_event *ev = instance->ev;
4046 cancel_delayed_work(
4047 (struct delayed_work *)&ev->hotplug_work);
4048 flush_scheduled_work();
4049 instance->ev = NULL;
4050 }
4051
bo yang31ea7082007-11-07 12:09:50 -05004052 tasklet_kill(&instance->isr_tasklet);
4053
4054 pci_set_drvdata(instance->pdev, instance);
4055 instance->instancet->disable_intr(instance->reg_set);
4056 free_irq(instance->pdev->irq, instance);
4057
4058 pci_save_state(pdev);
4059 pci_disable_device(pdev);
4060
4061 pci_set_power_state(pdev, pci_choose_state(pdev, state));
4062
4063 return 0;
4064}
4065
4066/**
4067 * megasas_resume- driver resume entry point
4068 * @pdev: PCI device structure
4069 */
Jiri Slaby33139b22008-05-01 17:56:02 +02004070static int
bo yang31ea7082007-11-07 12:09:50 -05004071megasas_resume(struct pci_dev *pdev)
4072{
4073 int rval;
4074 struct Scsi_Host *host;
4075 struct megasas_instance *instance;
4076
4077 instance = pci_get_drvdata(pdev);
4078 host = instance->host;
4079 pci_set_power_state(pdev, PCI_D0);
4080 pci_enable_wake(pdev, PCI_D0, 0);
4081 pci_restore_state(pdev);
4082
4083 /*
4084 * PCI prepping: enable device set bus mastering and dma mask
4085 */
Noriyuki Fujiiaeab3fd2009-11-20 16:27:20 +09004086 rval = pci_enable_device_mem(pdev);
bo yang31ea7082007-11-07 12:09:50 -05004087
4088 if (rval) {
4089 printk(KERN_ERR "megasas: Enable device failed\n");
4090 return rval;
4091 }
4092
4093 pci_set_master(pdev);
4094
4095 if (megasas_set_dma_mask(pdev))
4096 goto fail_set_dma_mask;
4097
4098 /*
4099 * Initialize MFI Firmware
4100 */
4101
4102 *instance->producer = 0;
4103 *instance->consumer = 0;
4104
4105 atomic_set(&instance->fw_outstanding, 0);
4106
4107 /*
4108 * We expect the FW state to be READY
4109 */
4110 if (megasas_transition_to_ready(instance))
4111 goto fail_ready_state;
4112
4113 if (megasas_issue_init_mfi(instance))
4114 goto fail_init_mfi;
4115
4116 tasklet_init(&instance->isr_tasklet, megasas_complete_cmd_dpc,
4117 (unsigned long)instance);
4118
4119 /*
4120 * Register IRQ
4121 */
4122 if (request_irq(pdev->irq, megasas_isr, IRQF_SHARED,
4123 "megasas", instance)) {
4124 printk(KERN_ERR "megasas: Failed to register IRQ\n");
4125 goto fail_irq;
4126 }
4127
4128 instance->instancet->enable_intr(instance->reg_set);
4129
4130 /*
4131 * Initiate AEN (Asynchronous Event Notification)
4132 */
4133 if (megasas_start_aen(instance))
4134 printk(KERN_ERR "megasas: Start AEN failed\n");
4135
bo yangad84db22007-11-09 04:40:16 -05004136 /* Initialize the cmd completion timer */
4137 if (poll_mode_io)
4138 megasas_start_timer(instance, &instance->io_completion_timer,
4139 megasas_io_completion_timer,
4140 MEGASAS_COMPLETION_TIMER_INTERVAL);
Yang, Bo0c79e682009-10-06 14:47:35 -06004141 instance->unload = 0;
4142
bo yang31ea7082007-11-07 12:09:50 -05004143 return 0;
4144
4145fail_irq:
4146fail_init_mfi:
4147 if (instance->evt_detail)
4148 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
4149 instance->evt_detail,
4150 instance->evt_detail_h);
4151
4152 if (instance->producer)
4153 pci_free_consistent(pdev, sizeof(u32), instance->producer,
4154 instance->producer_h);
4155 if (instance->consumer)
4156 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
4157 instance->consumer_h);
4158 scsi_host_put(host);
4159
4160fail_set_dma_mask:
4161fail_ready_state:
4162
4163 pci_disable_device(pdev);
4164
4165 return -ENODEV;
4166}
Jiri Slaby33139b22008-05-01 17:56:02 +02004167#else
4168#define megasas_suspend NULL
4169#define megasas_resume NULL
4170#endif
bo yang31ea7082007-11-07 12:09:50 -05004171
4172/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004173 * megasas_detach_one - PCI hot"un"plug entry point
4174 * @pdev: PCI device structure
4175 */
Jiri Slaby33139b22008-05-01 17:56:02 +02004176static void __devexit megasas_detach_one(struct pci_dev *pdev)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004177{
4178 int i;
4179 struct Scsi_Host *host;
4180 struct megasas_instance *instance;
4181
4182 instance = pci_get_drvdata(pdev);
Yang, Boc3518832009-10-06 14:18:02 -06004183 instance->unload = 1;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004184 host = instance->host;
4185
bo yangad84db22007-11-09 04:40:16 -05004186 if (poll_mode_io)
4187 del_timer_sync(&instance->io_completion_timer);
4188
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004189 scsi_remove_host(instance->host);
4190 megasas_flush_cache(instance);
bo yang31ea7082007-11-07 12:09:50 -05004191 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
Yang, Bo7e8a75f2009-10-06 14:50:17 -06004192
4193 /* cancel the delayed work if this work still in queue*/
4194 if (instance->ev != NULL) {
4195 struct megasas_aen_event *ev = instance->ev;
4196 cancel_delayed_work(
4197 (struct delayed_work *)&ev->hotplug_work);
4198 flush_scheduled_work();
4199 instance->ev = NULL;
4200 }
4201
Sumant Patro5d018ad2006-10-03 13:13:18 -07004202 tasklet_kill(&instance->isr_tasklet);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004203
4204 /*
4205 * Take the instance off the instance array. Note that we will not
4206 * decrement the max_index. We let this array be sparse array
4207 */
4208 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
4209 if (megasas_mgmt_info.instance[i] == instance) {
4210 megasas_mgmt_info.count--;
4211 megasas_mgmt_info.instance[i] = NULL;
4212
4213 break;
4214 }
4215 }
4216
4217 pci_set_drvdata(instance->pdev, NULL);
4218
Sumant Patrob274cab2006-10-03 12:52:12 -07004219 instance->instancet->disable_intr(instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004220
4221 free_irq(instance->pdev->irq, instance);
4222
4223 megasas_release_mfi(instance);
4224
4225 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
4226 instance->evt_detail, instance->evt_detail_h);
4227
4228 pci_free_consistent(pdev, sizeof(u32), instance->producer,
4229 instance->producer_h);
4230
4231 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
4232 instance->consumer_h);
4233
4234 scsi_host_put(host);
4235
4236 pci_set_drvdata(pdev, NULL);
4237
4238 pci_disable_device(pdev);
4239
4240 return;
4241}
4242
4243/**
4244 * megasas_shutdown - Shutdown entry point
4245 * @device: Generic device structure
4246 */
4247static void megasas_shutdown(struct pci_dev *pdev)
4248{
4249 struct megasas_instance *instance = pci_get_drvdata(pdev);
Yang, Bo0c79e682009-10-06 14:47:35 -06004250 instance->unload = 1;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004251 megasas_flush_cache(instance);
Yang, Bo530e6fc2008-08-10 12:42:37 -07004252 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004253}
4254
4255/**
4256 * megasas_mgmt_open - char node "open" entry point
4257 */
4258static int megasas_mgmt_open(struct inode *inode, struct file *filep)
4259{
4260 /*
4261 * Allow only those users with admin rights
4262 */
4263 if (!capable(CAP_SYS_ADMIN))
4264 return -EACCES;
4265
4266 return 0;
4267}
4268
4269/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004270 * megasas_mgmt_fasync - Async notifier registration from applications
4271 *
4272 * This function adds the calling process to a driver global queue. When an
4273 * event occurs, SIGIO will be sent to all processes in this queue.
4274 */
4275static int megasas_mgmt_fasync(int fd, struct file *filep, int mode)
4276{
4277 int rc;
4278
Arjan van de Ven0b950672006-01-11 13:16:10 +01004279 mutex_lock(&megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004280
4281 rc = fasync_helper(fd, filep, mode, &megasas_async_queue);
4282
Arjan van de Ven0b950672006-01-11 13:16:10 +01004283 mutex_unlock(&megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004284
4285 if (rc >= 0) {
4286 /* For sanity check when we get ioctl */
4287 filep->private_data = filep;
4288 return 0;
4289 }
4290
4291 printk(KERN_DEBUG "megasas: fasync_helper failed [%d]\n", rc);
4292
4293 return rc;
4294}
4295
4296/**
Yang, Boc3518832009-10-06 14:18:02 -06004297 * megasas_mgmt_poll - char node "poll" entry point
4298 * */
4299static unsigned int megasas_mgmt_poll(struct file *file, poll_table *wait)
4300{
4301 unsigned int mask;
4302 unsigned long flags;
4303 poll_wait(file, &megasas_poll_wait, wait);
4304 spin_lock_irqsave(&poll_aen_lock, flags);
4305 if (megasas_poll_wait_aen)
4306 mask = (POLLIN | POLLRDNORM);
4307 else
4308 mask = 0;
4309 spin_unlock_irqrestore(&poll_aen_lock, flags);
4310 return mask;
4311}
4312
4313/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004314 * megasas_mgmt_fw_ioctl - Issues management ioctls to FW
4315 * @instance: Adapter soft state
4316 * @argp: User's ioctl packet
4317 */
4318static int
4319megasas_mgmt_fw_ioctl(struct megasas_instance *instance,
4320 struct megasas_iocpacket __user * user_ioc,
4321 struct megasas_iocpacket *ioc)
4322{
4323 struct megasas_sge32 *kern_sge32;
4324 struct megasas_cmd *cmd;
4325 void *kbuff_arr[MAX_IOCTL_SGE];
4326 dma_addr_t buf_handle = 0;
4327 int error = 0, i;
4328 void *sense = NULL;
4329 dma_addr_t sense_handle;
Yang, Bo7b2519a2009-10-06 14:52:20 -06004330 unsigned long *sense_ptr;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004331
4332 memset(kbuff_arr, 0, sizeof(kbuff_arr));
4333
4334 if (ioc->sge_count > MAX_IOCTL_SGE) {
4335 printk(KERN_DEBUG "megasas: SGE count [%d] > max limit [%d]\n",
4336 ioc->sge_count, MAX_IOCTL_SGE);
4337 return -EINVAL;
4338 }
4339
4340 cmd = megasas_get_cmd(instance);
4341 if (!cmd) {
4342 printk(KERN_DEBUG "megasas: Failed to get a cmd packet\n");
4343 return -ENOMEM;
4344 }
4345
4346 /*
4347 * User's IOCTL packet has 2 frames (maximum). Copy those two
4348 * frames into our cmd's frames. cmd->frame's context will get
4349 * overwritten when we copy from user's frames. So set that value
4350 * alone separately
4351 */
4352 memcpy(cmd->frame, ioc->frame.raw, 2 * MEGAMFI_FRAME_SIZE);
4353 cmd->frame->hdr.context = cmd->index;
Yang, Boc3518832009-10-06 14:18:02 -06004354 cmd->frame->hdr.pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004355
4356 /*
4357 * The management interface between applications and the fw uses
4358 * MFI frames. E.g, RAID configuration changes, LD property changes
4359 * etc are accomplishes through different kinds of MFI frames. The
4360 * driver needs to care only about substituting user buffers with
4361 * kernel buffers in SGLs. The location of SGL is embedded in the
4362 * struct iocpacket itself.
4363 */
4364 kern_sge32 = (struct megasas_sge32 *)
4365 ((unsigned long)cmd->frame + ioc->sgl_off);
4366
4367 /*
4368 * For each user buffer, create a mirror buffer and copy in
4369 */
4370 for (i = 0; i < ioc->sge_count; i++) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08004371 kbuff_arr[i] = dma_alloc_coherent(&instance->pdev->dev,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004372 ioc->sgl[i].iov_len,
Sumant Patro9f35fa82007-02-14 12:55:45 -08004373 &buf_handle, GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004374 if (!kbuff_arr[i]) {
4375 printk(KERN_DEBUG "megasas: Failed to alloc "
4376 "kernel SGL buffer for IOCTL \n");
4377 error = -ENOMEM;
4378 goto out;
4379 }
4380
4381 /*
4382 * We don't change the dma_coherent_mask, so
4383 * pci_alloc_consistent only returns 32bit addresses
4384 */
4385 kern_sge32[i].phys_addr = (u32) buf_handle;
4386 kern_sge32[i].length = ioc->sgl[i].iov_len;
4387
4388 /*
4389 * We created a kernel buffer corresponding to the
4390 * user buffer. Now copy in from the user buffer
4391 */
4392 if (copy_from_user(kbuff_arr[i], ioc->sgl[i].iov_base,
4393 (u32) (ioc->sgl[i].iov_len))) {
4394 error = -EFAULT;
4395 goto out;
4396 }
4397 }
4398
4399 if (ioc->sense_len) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08004400 sense = dma_alloc_coherent(&instance->pdev->dev, ioc->sense_len,
4401 &sense_handle, GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004402 if (!sense) {
4403 error = -ENOMEM;
4404 goto out;
4405 }
4406
4407 sense_ptr =
Yang, Bo7b2519a2009-10-06 14:52:20 -06004408 (unsigned long *) ((unsigned long)cmd->frame + ioc->sense_off);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004409 *sense_ptr = sense_handle;
4410 }
4411
4412 /*
4413 * Set the sync_cmd flag so that the ISR knows not to complete this
4414 * cmd to the SCSI mid-layer
4415 */
4416 cmd->sync_cmd = 1;
4417 megasas_issue_blocked_cmd(instance, cmd);
4418 cmd->sync_cmd = 0;
4419
4420 /*
4421 * copy out the kernel buffers to user buffers
4422 */
4423 for (i = 0; i < ioc->sge_count; i++) {
4424 if (copy_to_user(ioc->sgl[i].iov_base, kbuff_arr[i],
4425 ioc->sgl[i].iov_len)) {
4426 error = -EFAULT;
4427 goto out;
4428 }
4429 }
4430
4431 /*
4432 * copy out the sense
4433 */
4434 if (ioc->sense_len) {
4435 /*
bo yangb70a41e2008-03-18 03:13:06 -04004436 * sense_ptr points to the location that has the user
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004437 * sense buffer address
4438 */
Yang, Bo7b2519a2009-10-06 14:52:20 -06004439 sense_ptr = (unsigned long *) ((unsigned long)ioc->frame.raw +
4440 ioc->sense_off);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004441
bo yangb70a41e2008-03-18 03:13:06 -04004442 if (copy_to_user((void __user *)((unsigned long)(*sense_ptr)),
4443 sense, ioc->sense_len)) {
bo yangb10c36a2007-11-09 04:28:47 -05004444 printk(KERN_ERR "megasas: Failed to copy out to user "
4445 "sense data\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004446 error = -EFAULT;
4447 goto out;
4448 }
4449 }
4450
4451 /*
4452 * copy the status codes returned by the fw
4453 */
4454 if (copy_to_user(&user_ioc->frame.hdr.cmd_status,
4455 &cmd->frame->hdr.cmd_status, sizeof(u8))) {
4456 printk(KERN_DEBUG "megasas: Error copying out cmd_status\n");
4457 error = -EFAULT;
4458 }
4459
4460 out:
4461 if (sense) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08004462 dma_free_coherent(&instance->pdev->dev, ioc->sense_len,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004463 sense, sense_handle);
4464 }
4465
4466 for (i = 0; i < ioc->sge_count && kbuff_arr[i]; i++) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08004467 dma_free_coherent(&instance->pdev->dev,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004468 kern_sge32[i].length,
4469 kbuff_arr[i], kern_sge32[i].phys_addr);
4470 }
4471
4472 megasas_return_cmd(instance, cmd);
4473 return error;
4474}
4475
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004476static int megasas_mgmt_ioctl_fw(struct file *file, unsigned long arg)
4477{
4478 struct megasas_iocpacket __user *user_ioc =
4479 (struct megasas_iocpacket __user *)arg;
4480 struct megasas_iocpacket *ioc;
4481 struct megasas_instance *instance;
4482 int error;
bo yang39a98552010-09-22 22:36:29 -04004483 int i;
4484 unsigned long flags;
4485 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004486
4487 ioc = kmalloc(sizeof(*ioc), GFP_KERNEL);
4488 if (!ioc)
4489 return -ENOMEM;
4490
4491 if (copy_from_user(ioc, user_ioc, sizeof(*ioc))) {
4492 error = -EFAULT;
4493 goto out_kfree_ioc;
4494 }
4495
4496 instance = megasas_lookup_instance(ioc->host_no);
4497 if (!instance) {
4498 error = -ENODEV;
4499 goto out_kfree_ioc;
4500 }
4501
bo yang39a98552010-09-22 22:36:29 -04004502 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR) {
4503 printk(KERN_ERR "Controller in crit error\n");
Yang, Bo0c79e682009-10-06 14:47:35 -06004504 error = -ENODEV;
4505 goto out_kfree_ioc;
4506 }
4507
4508 if (instance->unload == 1) {
4509 error = -ENODEV;
4510 goto out_kfree_ioc;
4511 }
4512
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004513 /*
4514 * We will allow only MEGASAS_INT_CMDS number of parallel ioctl cmds
4515 */
4516 if (down_interruptible(&instance->ioctl_sem)) {
4517 error = -ERESTARTSYS;
4518 goto out_kfree_ioc;
4519 }
bo yang39a98552010-09-22 22:36:29 -04004520
4521 for (i = 0; i < wait_time; i++) {
4522
4523 spin_lock_irqsave(&instance->hba_lock, flags);
4524 if (instance->adprecovery == MEGASAS_HBA_OPERATIONAL) {
4525 spin_unlock_irqrestore(&instance->hba_lock, flags);
4526 break;
4527 }
4528 spin_unlock_irqrestore(&instance->hba_lock, flags);
4529
4530 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
4531 printk(KERN_NOTICE "megasas: waiting"
4532 "for controller reset to finish\n");
4533 }
4534
4535 msleep(1000);
4536 }
4537
4538 spin_lock_irqsave(&instance->hba_lock, flags);
4539 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL) {
4540 spin_unlock_irqrestore(&instance->hba_lock, flags);
4541
4542 printk(KERN_ERR "megaraid_sas: timed out while"
4543 "waiting for HBA to recover\n");
4544 error = -ENODEV;
4545 goto out_kfree_ioc;
4546 }
4547 spin_unlock_irqrestore(&instance->hba_lock, flags);
4548
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004549 error = megasas_mgmt_fw_ioctl(instance, user_ioc, ioc);
4550 up(&instance->ioctl_sem);
4551
4552 out_kfree_ioc:
4553 kfree(ioc);
4554 return error;
4555}
4556
4557static int megasas_mgmt_ioctl_aen(struct file *file, unsigned long arg)
4558{
4559 struct megasas_instance *instance;
4560 struct megasas_aen aen;
4561 int error;
bo yang39a98552010-09-22 22:36:29 -04004562 int i;
4563 unsigned long flags;
4564 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004565
4566 if (file->private_data != file) {
4567 printk(KERN_DEBUG "megasas: fasync_helper was not "
4568 "called first\n");
4569 return -EINVAL;
4570 }
4571
4572 if (copy_from_user(&aen, (void __user *)arg, sizeof(aen)))
4573 return -EFAULT;
4574
4575 instance = megasas_lookup_instance(aen.host_no);
4576
4577 if (!instance)
4578 return -ENODEV;
4579
bo yang39a98552010-09-22 22:36:29 -04004580 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR) {
4581 return -ENODEV;
Yang, Bo0c79e682009-10-06 14:47:35 -06004582 }
4583
4584 if (instance->unload == 1) {
4585 return -ENODEV;
4586 }
4587
bo yang39a98552010-09-22 22:36:29 -04004588 for (i = 0; i < wait_time; i++) {
4589
4590 spin_lock_irqsave(&instance->hba_lock, flags);
4591 if (instance->adprecovery == MEGASAS_HBA_OPERATIONAL) {
4592 spin_unlock_irqrestore(&instance->hba_lock,
4593 flags);
4594 break;
4595 }
4596
4597 spin_unlock_irqrestore(&instance->hba_lock, flags);
4598
4599 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
4600 printk(KERN_NOTICE "megasas: waiting for"
4601 "controller reset to finish\n");
4602 }
4603
4604 msleep(1000);
4605 }
4606
4607 spin_lock_irqsave(&instance->hba_lock, flags);
4608 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL) {
4609 spin_unlock_irqrestore(&instance->hba_lock, flags);
4610 printk(KERN_ERR "megaraid_sas: timed out while waiting"
4611 "for HBA to recover.\n");
4612 return -ENODEV;
4613 }
4614 spin_unlock_irqrestore(&instance->hba_lock, flags);
4615
Matthias Kaehlckee5a69e22007-10-27 09:48:46 +02004616 mutex_lock(&instance->aen_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004617 error = megasas_register_aen(instance, aen.seq_num,
4618 aen.class_locale_word);
Matthias Kaehlckee5a69e22007-10-27 09:48:46 +02004619 mutex_unlock(&instance->aen_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004620 return error;
4621}
4622
4623/**
4624 * megasas_mgmt_ioctl - char node ioctl entry point
4625 */
4626static long
4627megasas_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4628{
4629 switch (cmd) {
4630 case MEGASAS_IOC_FIRMWARE:
4631 return megasas_mgmt_ioctl_fw(file, arg);
4632
4633 case MEGASAS_IOC_GET_AEN:
4634 return megasas_mgmt_ioctl_aen(file, arg);
4635 }
4636
4637 return -ENOTTY;
4638}
4639
4640#ifdef CONFIG_COMPAT
4641static int megasas_mgmt_compat_ioctl_fw(struct file *file, unsigned long arg)
4642{
4643 struct compat_megasas_iocpacket __user *cioc =
4644 (struct compat_megasas_iocpacket __user *)arg;
4645 struct megasas_iocpacket __user *ioc =
4646 compat_alloc_user_space(sizeof(struct megasas_iocpacket));
4647 int i;
4648 int error = 0;
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01004649 compat_uptr_t ptr;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004650
Jeff Garzik83aabc12006-10-04 06:34:03 -04004651 if (clear_user(ioc, sizeof(*ioc)))
4652 return -EFAULT;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004653
4654 if (copy_in_user(&ioc->host_no, &cioc->host_no, sizeof(u16)) ||
4655 copy_in_user(&ioc->sgl_off, &cioc->sgl_off, sizeof(u32)) ||
4656 copy_in_user(&ioc->sense_off, &cioc->sense_off, sizeof(u32)) ||
4657 copy_in_user(&ioc->sense_len, &cioc->sense_len, sizeof(u32)) ||
4658 copy_in_user(ioc->frame.raw, cioc->frame.raw, 128) ||
4659 copy_in_user(&ioc->sge_count, &cioc->sge_count, sizeof(u32)))
4660 return -EFAULT;
4661
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01004662 /*
4663 * The sense_ptr is used in megasas_mgmt_fw_ioctl only when
4664 * sense_len is not null, so prepare the 64bit value under
4665 * the same condition.
4666 */
4667 if (ioc->sense_len) {
4668 void __user **sense_ioc_ptr =
4669 (void __user **)(ioc->frame.raw + ioc->sense_off);
4670 compat_uptr_t *sense_cioc_ptr =
4671 (compat_uptr_t *)(cioc->frame.raw + cioc->sense_off);
4672 if (get_user(ptr, sense_cioc_ptr) ||
4673 put_user(compat_ptr(ptr), sense_ioc_ptr))
4674 return -EFAULT;
4675 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004676
Tomas Henzlb3dc1a22010-02-11 18:01:50 +01004677 for (i = 0; i < MAX_IOCTL_SGE; i++) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004678 if (get_user(ptr, &cioc->sgl[i].iov_base) ||
4679 put_user(compat_ptr(ptr), &ioc->sgl[i].iov_base) ||
4680 copy_in_user(&ioc->sgl[i].iov_len,
4681 &cioc->sgl[i].iov_len, sizeof(compat_size_t)))
4682 return -EFAULT;
4683 }
4684
4685 error = megasas_mgmt_ioctl_fw(file, (unsigned long)ioc);
4686
4687 if (copy_in_user(&cioc->frame.hdr.cmd_status,
4688 &ioc->frame.hdr.cmd_status, sizeof(u8))) {
4689 printk(KERN_DEBUG "megasas: error copy_in_user cmd_status\n");
4690 return -EFAULT;
4691 }
4692 return error;
4693}
4694
4695static long
4696megasas_mgmt_compat_ioctl(struct file *file, unsigned int cmd,
4697 unsigned long arg)
4698{
4699 switch (cmd) {
Sumant Patrocb59aa62006-01-25 11:53:25 -08004700 case MEGASAS_IOC_FIRMWARE32:
4701 return megasas_mgmt_compat_ioctl_fw(file, arg);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004702 case MEGASAS_IOC_GET_AEN:
4703 return megasas_mgmt_ioctl_aen(file, arg);
4704 }
4705
4706 return -ENOTTY;
4707}
4708#endif
4709
4710/*
4711 * File operations structure for management interface
4712 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08004713static const struct file_operations megasas_mgmt_fops = {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004714 .owner = THIS_MODULE,
4715 .open = megasas_mgmt_open,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004716 .fasync = megasas_mgmt_fasync,
4717 .unlocked_ioctl = megasas_mgmt_ioctl,
Yang, Boc3518832009-10-06 14:18:02 -06004718 .poll = megasas_mgmt_poll,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004719#ifdef CONFIG_COMPAT
4720 .compat_ioctl = megasas_mgmt_compat_ioctl,
4721#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02004722 .llseek = noop_llseek,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004723};
4724
4725/*
4726 * PCI hotplug support registration structure
4727 */
4728static struct pci_driver megasas_pci_driver = {
4729
4730 .name = "megaraid_sas",
4731 .id_table = megasas_pci_table,
4732 .probe = megasas_probe_one,
4733 .remove = __devexit_p(megasas_detach_one),
bo yang31ea7082007-11-07 12:09:50 -05004734 .suspend = megasas_suspend,
4735 .resume = megasas_resume,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04004736 .shutdown = megasas_shutdown,
4737};
4738
4739/*
4740 * Sysfs driver attributes
4741 */
4742static ssize_t megasas_sysfs_show_version(struct device_driver *dd, char *buf)
4743{
4744 return snprintf(buf, strlen(MEGASAS_VERSION) + 2, "%s\n",
4745 MEGASAS_VERSION);
4746}
4747
4748static DRIVER_ATTR(version, S_IRUGO, megasas_sysfs_show_version, NULL);
4749
4750static ssize_t
4751megasas_sysfs_show_release_date(struct device_driver *dd, char *buf)
4752{
4753 return snprintf(buf, strlen(MEGASAS_RELDATE) + 2, "%s\n",
4754 MEGASAS_RELDATE);
4755}
4756
4757static DRIVER_ATTR(release_date, S_IRUGO, megasas_sysfs_show_release_date,
4758 NULL);
4759
Sumant Patro658dced2006-10-03 13:09:14 -07004760static ssize_t
Yang, Bo72c4fd32009-10-06 14:20:59 -06004761megasas_sysfs_show_support_poll_for_event(struct device_driver *dd, char *buf)
4762{
4763 return sprintf(buf, "%u\n", support_poll_for_event);
4764}
4765
4766static DRIVER_ATTR(support_poll_for_event, S_IRUGO,
4767 megasas_sysfs_show_support_poll_for_event, NULL);
4768
Yang, Bo837f5fe2010-10-11 06:59:20 -06004769 static ssize_t
4770megasas_sysfs_show_support_device_change(struct device_driver *dd, char *buf)
4771{
4772 return sprintf(buf, "%u\n", support_device_change);
4773}
4774
4775static DRIVER_ATTR(support_device_change, S_IRUGO,
4776 megasas_sysfs_show_support_device_change, NULL);
4777
Yang, Bo72c4fd32009-10-06 14:20:59 -06004778static ssize_t
Sumant Patro658dced2006-10-03 13:09:14 -07004779megasas_sysfs_show_dbg_lvl(struct device_driver *dd, char *buf)
4780{
bo yangad84db22007-11-09 04:40:16 -05004781 return sprintf(buf, "%u\n", megasas_dbg_lvl);
Sumant Patro658dced2006-10-03 13:09:14 -07004782}
4783
4784static ssize_t
4785megasas_sysfs_set_dbg_lvl(struct device_driver *dd, const char *buf, size_t count)
4786{
4787 int retval = count;
4788 if(sscanf(buf,"%u",&megasas_dbg_lvl)<1){
4789 printk(KERN_ERR "megasas: could not set dbg_lvl\n");
4790 retval = -EINVAL;
4791 }
4792 return retval;
4793}
4794
Joe Malicki66dca9b2008-08-14 17:14:48 -04004795static DRIVER_ATTR(dbg_lvl, S_IRUGO|S_IWUSR, megasas_sysfs_show_dbg_lvl,
bo yangad84db22007-11-09 04:40:16 -05004796 megasas_sysfs_set_dbg_lvl);
4797
4798static ssize_t
4799megasas_sysfs_show_poll_mode_io(struct device_driver *dd, char *buf)
4800{
4801 return sprintf(buf, "%u\n", poll_mode_io);
4802}
4803
4804static ssize_t
4805megasas_sysfs_set_poll_mode_io(struct device_driver *dd,
4806 const char *buf, size_t count)
4807{
4808 int retval = count;
4809 int tmp = poll_mode_io;
4810 int i;
4811 struct megasas_instance *instance;
4812
4813 if (sscanf(buf, "%u", &poll_mode_io) < 1) {
4814 printk(KERN_ERR "megasas: could not set poll_mode_io\n");
4815 retval = -EINVAL;
4816 }
4817
4818 /*
4819 * Check if poll_mode_io is already set or is same as previous value
4820 */
4821 if ((tmp && poll_mode_io) || (tmp == poll_mode_io))
4822 goto out;
4823
4824 if (poll_mode_io) {
4825 /*
4826 * Start timers for all adapters
4827 */
4828 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
4829 instance = megasas_mgmt_info.instance[i];
4830 if (instance) {
4831 megasas_start_timer(instance,
4832 &instance->io_completion_timer,
4833 megasas_io_completion_timer,
4834 MEGASAS_COMPLETION_TIMER_INTERVAL);
4835 }
4836 }
4837 } else {
4838 /*
4839 * Delete timers for all adapters
4840 */
4841 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
4842 instance = megasas_mgmt_info.instance[i];
4843 if (instance)
4844 del_timer_sync(&instance->io_completion_timer);
4845 }
4846 }
4847
4848out:
4849 return retval;
4850}
4851
Yang, Bo7e8a75f2009-10-06 14:50:17 -06004852static void
4853megasas_aen_polling(struct work_struct *work)
4854{
4855 struct megasas_aen_event *ev =
4856 container_of(work, struct megasas_aen_event, hotplug_work);
4857 struct megasas_instance *instance = ev->instance;
4858 union megasas_evt_class_locale class_locale;
4859 struct Scsi_Host *host;
4860 struct scsi_device *sdev1;
4861 u16 pd_index = 0;
Yang, Boc9786842009-12-06 08:39:25 -07004862 u16 ld_index = 0;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06004863 int i, j, doscan = 0;
4864 u32 seq_num;
4865 int error;
4866
4867 if (!instance) {
4868 printk(KERN_ERR "invalid instance!\n");
4869 kfree(ev);
4870 return;
4871 }
4872 instance->ev = NULL;
4873 host = instance->host;
4874 if (instance->evt_detail) {
4875
4876 switch (instance->evt_detail->code) {
4877 case MR_EVT_PD_INSERTED:
Yang, Boc9786842009-12-06 08:39:25 -07004878 if (megasas_get_pd_list(instance) == 0) {
4879 for (i = 0; i < MEGASAS_MAX_PD_CHANNELS; i++) {
4880 for (j = 0;
4881 j < MEGASAS_MAX_DEV_PER_CHANNEL;
4882 j++) {
4883
4884 pd_index =
4885 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
4886
4887 sdev1 =
4888 scsi_device_lookup(host, i, j, 0);
4889
4890 if (instance->pd_list[pd_index].driveState
4891 == MR_PD_STATE_SYSTEM) {
4892 if (!sdev1) {
4893 scsi_add_device(host, i, j, 0);
4894 }
4895
4896 if (sdev1)
4897 scsi_device_put(sdev1);
4898 }
4899 }
4900 }
4901 }
4902 doscan = 0;
4903 break;
4904
Yang, Bo7e8a75f2009-10-06 14:50:17 -06004905 case MR_EVT_PD_REMOVED:
Yang, Boc9786842009-12-06 08:39:25 -07004906 if (megasas_get_pd_list(instance) == 0) {
4907 megasas_get_pd_list(instance);
4908 for (i = 0; i < MEGASAS_MAX_PD_CHANNELS; i++) {
4909 for (j = 0;
4910 j < MEGASAS_MAX_DEV_PER_CHANNEL;
4911 j++) {
4912
4913 pd_index =
4914 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
4915
4916 sdev1 =
4917 scsi_device_lookup(host, i, j, 0);
4918
4919 if (instance->pd_list[pd_index].driveState
4920 == MR_PD_STATE_SYSTEM) {
4921 if (sdev1) {
4922 scsi_device_put(sdev1);
4923 }
4924 } else {
4925 if (sdev1) {
4926 scsi_remove_device(sdev1);
4927 scsi_device_put(sdev1);
4928 }
4929 }
4930 }
4931 }
4932 }
4933 doscan = 0;
4934 break;
4935
4936 case MR_EVT_LD_OFFLINE:
4937 case MR_EVT_LD_DELETED:
4938 megasas_get_ld_list(instance);
4939 for (i = 0; i < MEGASAS_MAX_LD_CHANNELS; i++) {
4940 for (j = 0;
4941 j < MEGASAS_MAX_DEV_PER_CHANNEL;
4942 j++) {
4943
4944 ld_index =
4945 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
4946
4947 sdev1 = scsi_device_lookup(host,
4948 i + MEGASAS_MAX_LD_CHANNELS,
4949 j,
4950 0);
4951
4952 if (instance->ld_ids[ld_index] != 0xff) {
4953 if (sdev1) {
4954 scsi_device_put(sdev1);
4955 }
4956 } else {
4957 if (sdev1) {
4958 scsi_remove_device(sdev1);
4959 scsi_device_put(sdev1);
4960 }
4961 }
4962 }
4963 }
4964 doscan = 0;
4965 break;
4966 case MR_EVT_LD_CREATED:
4967 megasas_get_ld_list(instance);
4968 for (i = 0; i < MEGASAS_MAX_LD_CHANNELS; i++) {
4969 for (j = 0;
4970 j < MEGASAS_MAX_DEV_PER_CHANNEL;
4971 j++) {
4972 ld_index =
4973 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
4974
4975 sdev1 = scsi_device_lookup(host,
4976 i+MEGASAS_MAX_LD_CHANNELS,
4977 j, 0);
4978
4979 if (instance->ld_ids[ld_index] !=
4980 0xff) {
4981 if (!sdev1) {
4982 scsi_add_device(host,
4983 i + 2,
4984 j, 0);
4985 }
4986 }
4987 if (sdev1) {
4988 scsi_device_put(sdev1);
4989 }
4990 }
4991 }
4992 doscan = 0;
4993 break;
Yang, Bo7e8a75f2009-10-06 14:50:17 -06004994 case MR_EVT_CTRL_HOST_BUS_SCAN_REQUESTED:
Yang, Boc9786842009-12-06 08:39:25 -07004995 case MR_EVT_FOREIGN_CFG_IMPORTED:
Yang, Bo7e8a75f2009-10-06 14:50:17 -06004996 doscan = 1;
4997 break;
4998 default:
4999 doscan = 0;
5000 break;
5001 }
5002 } else {
5003 printk(KERN_ERR "invalid evt_detail!\n");
5004 kfree(ev);
5005 return;
5006 }
5007
5008 if (doscan) {
5009 printk(KERN_INFO "scanning ...\n");
5010 megasas_get_pd_list(instance);
5011 for (i = 0; i < MEGASAS_MAX_PD_CHANNELS; i++) {
5012 for (j = 0; j < MEGASAS_MAX_DEV_PER_CHANNEL; j++) {
5013 pd_index = i*MEGASAS_MAX_DEV_PER_CHANNEL + j;
5014 sdev1 = scsi_device_lookup(host, i, j, 0);
5015 if (instance->pd_list[pd_index].driveState ==
5016 MR_PD_STATE_SYSTEM) {
5017 if (!sdev1) {
5018 scsi_add_device(host, i, j, 0);
5019 }
5020 if (sdev1)
5021 scsi_device_put(sdev1);
5022 } else {
5023 if (sdev1) {
5024 scsi_remove_device(sdev1);
5025 scsi_device_put(sdev1);
5026 }
5027 }
5028 }
5029 }
Yang, Boc9786842009-12-06 08:39:25 -07005030
5031 megasas_get_ld_list(instance);
5032 for (i = 0; i < MEGASAS_MAX_LD_CHANNELS; i++) {
5033 for (j = 0; j < MEGASAS_MAX_DEV_PER_CHANNEL; j++) {
5034 ld_index =
5035 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
5036
5037 sdev1 = scsi_device_lookup(host,
5038 i+MEGASAS_MAX_LD_CHANNELS, j, 0);
5039 if (instance->ld_ids[ld_index] != 0xff) {
5040 if (!sdev1) {
5041 scsi_add_device(host,
5042 i+2,
5043 j, 0);
5044 } else {
5045 scsi_device_put(sdev1);
5046 }
5047 } else {
5048 if (sdev1) {
5049 scsi_remove_device(sdev1);
5050 scsi_device_put(sdev1);
5051 }
5052 }
5053 }
5054 }
Yang, Bo7e8a75f2009-10-06 14:50:17 -06005055 }
5056
5057 if ( instance->aen_cmd != NULL ) {
5058 kfree(ev);
5059 return ;
5060 }
5061
5062 seq_num = instance->evt_detail->seq_num + 1;
5063
5064 /* Register AEN with FW for latest sequence number plus 1 */
5065 class_locale.members.reserved = 0;
5066 class_locale.members.locale = MR_EVT_LOCALE_ALL;
5067 class_locale.members.class = MR_EVT_CLASS_DEBUG;
5068 mutex_lock(&instance->aen_mutex);
5069 error = megasas_register_aen(instance, seq_num,
5070 class_locale.word);
5071 mutex_unlock(&instance->aen_mutex);
5072
5073 if (error)
5074 printk(KERN_ERR "register aen failed error %x\n", error);
5075
5076 kfree(ev);
5077}
5078
5079
Bryn M. Reevesbb7d3f22009-11-12 18:31:54 +00005080static DRIVER_ATTR(poll_mode_io, S_IRUGO|S_IWUSR,
bo yangad84db22007-11-09 04:40:16 -05005081 megasas_sysfs_show_poll_mode_io,
5082 megasas_sysfs_set_poll_mode_io);
Sumant Patro658dced2006-10-03 13:09:14 -07005083
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005084/**
5085 * megasas_init - Driver load entry point
5086 */
5087static int __init megasas_init(void)
5088{
5089 int rval;
5090
5091 /*
5092 * Announce driver version and other information
5093 */
5094 printk(KERN_INFO "megasas: %s %s\n", MEGASAS_VERSION,
5095 MEGASAS_EXT_VERSION);
5096
Yang, Bo72c4fd32009-10-06 14:20:59 -06005097 support_poll_for_event = 2;
Yang, Bo837f5fe2010-10-11 06:59:20 -06005098 support_device_change = 1;
Yang, Bo72c4fd32009-10-06 14:20:59 -06005099
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005100 memset(&megasas_mgmt_info, 0, sizeof(megasas_mgmt_info));
5101
5102 /*
5103 * Register character device node
5104 */
5105 rval = register_chrdev(0, "megaraid_sas_ioctl", &megasas_mgmt_fops);
5106
5107 if (rval < 0) {
5108 printk(KERN_DEBUG "megasas: failed to open device node\n");
5109 return rval;
5110 }
5111
5112 megasas_mgmt_majorno = rval;
5113
5114 /*
5115 * Register ourselves as PCI hotplug module
5116 */
Michal Piotrowski4041b9c2006-08-17 13:28:22 +00005117 rval = pci_register_driver(&megasas_pci_driver);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005118
5119 if (rval) {
5120 printk(KERN_DEBUG "megasas: PCI hotplug regisration failed \n");
Jeff Garzik83aabc12006-10-04 06:34:03 -04005121 goto err_pcidrv;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005122 }
5123
Jeff Garzik83aabc12006-10-04 06:34:03 -04005124 rval = driver_create_file(&megasas_pci_driver.driver,
5125 &driver_attr_version);
5126 if (rval)
5127 goto err_dcf_attr_ver;
5128 rval = driver_create_file(&megasas_pci_driver.driver,
5129 &driver_attr_release_date);
5130 if (rval)
5131 goto err_dcf_rel_date;
Yang, Bo72c4fd32009-10-06 14:20:59 -06005132
5133 rval = driver_create_file(&megasas_pci_driver.driver,
5134 &driver_attr_support_poll_for_event);
5135 if (rval)
5136 goto err_dcf_support_poll_for_event;
5137
Jeff Garzik83aabc12006-10-04 06:34:03 -04005138 rval = driver_create_file(&megasas_pci_driver.driver,
5139 &driver_attr_dbg_lvl);
5140 if (rval)
5141 goto err_dcf_dbg_lvl;
bo yangad84db22007-11-09 04:40:16 -05005142 rval = driver_create_file(&megasas_pci_driver.driver,
5143 &driver_attr_poll_mode_io);
5144 if (rval)
5145 goto err_dcf_poll_mode_io;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005146
Yang, Bo837f5fe2010-10-11 06:59:20 -06005147 rval = driver_create_file(&megasas_pci_driver.driver,
5148 &driver_attr_support_device_change);
5149 if (rval)
5150 goto err_dcf_support_device_change;
5151
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005152 return rval;
bo yangad84db22007-11-09 04:40:16 -05005153
Yang, Bo837f5fe2010-10-11 06:59:20 -06005154err_dcf_support_device_change:
5155 driver_remove_file(&megasas_pci_driver.driver,
5156 &driver_attr_poll_mode_io);
5157
bo yangad84db22007-11-09 04:40:16 -05005158err_dcf_poll_mode_io:
5159 driver_remove_file(&megasas_pci_driver.driver,
5160 &driver_attr_dbg_lvl);
Jeff Garzik83aabc12006-10-04 06:34:03 -04005161err_dcf_dbg_lvl:
5162 driver_remove_file(&megasas_pci_driver.driver,
Yang, Bo72c4fd32009-10-06 14:20:59 -06005163 &driver_attr_support_poll_for_event);
5164
5165err_dcf_support_poll_for_event:
5166 driver_remove_file(&megasas_pci_driver.driver,
Jeff Garzik83aabc12006-10-04 06:34:03 -04005167 &driver_attr_release_date);
Yang, Bo72c4fd32009-10-06 14:20:59 -06005168
Jeff Garzik83aabc12006-10-04 06:34:03 -04005169err_dcf_rel_date:
5170 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
5171err_dcf_attr_ver:
5172 pci_unregister_driver(&megasas_pci_driver);
5173err_pcidrv:
5174 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
adam radford0d490162010-12-14 19:17:17 -08005175 return rval;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005176}
5177
5178/**
5179 * megasas_exit - Driver unload entry point
5180 */
5181static void __exit megasas_exit(void)
5182{
Sumant Patro658dced2006-10-03 13:09:14 -07005183 driver_remove_file(&megasas_pci_driver.driver,
bo yangad84db22007-11-09 04:40:16 -05005184 &driver_attr_poll_mode_io);
5185 driver_remove_file(&megasas_pci_driver.driver,
Sumant Patro658dced2006-10-03 13:09:14 -07005186 &driver_attr_dbg_lvl);
Jeff Garzik83aabc12006-10-04 06:34:03 -04005187 driver_remove_file(&megasas_pci_driver.driver,
Yang, Bo837f5fe2010-10-11 06:59:20 -06005188 &driver_attr_support_poll_for_event);
5189 driver_remove_file(&megasas_pci_driver.driver,
5190 &driver_attr_support_device_change);
5191 driver_remove_file(&megasas_pci_driver.driver,
Jeff Garzik83aabc12006-10-04 06:34:03 -04005192 &driver_attr_release_date);
5193 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04005194
5195 pci_unregister_driver(&megasas_pci_driver);
5196 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
5197}
5198
5199module_init(megasas_init);
5200module_exit(megasas_exit);