2 * Linux MegaRAID driver for SAS based RAID controllers
4 * Copyright (c) 2003-2012 LSI Corporation.
6 * 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.
11 * 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.
16 * 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
20 * FILE: megaraid_sas_base.c
21 * Version : v06.506.00.00-rc1
23 * Authors: LSI Corporation
27 * Adam Radford <linuxraid@lsi.com>
29 * Send feedback to: <megaraidlinux@lsi.com>
31 * Mail to: LSI Corporation, 1621 Barber Lane, Milpitas, CA 95035
35 #include <linux/kernel.h>
36 #include <linux/types.h>
37 #include <linux/pci.h>
38 #include <linux/list.h>
39 #include <linux/moduleparam.h>
40 #include <linux/module.h>
41 #include <linux/spinlock.h>
42 #include <linux/interrupt.h>
43 #include <linux/delay.h>
44 #include <linux/uio.h>
45 #include <linux/slab.h>
46 #include <asm/uaccess.h>
48 #include <linux/compat.h>
49 #include <linux/blkdev.h>
50 #include <linux/mutex.h>
51 #include <linux/poll.h>
53 #include <scsi/scsi.h>
54 #include <scsi/scsi_cmnd.h>
55 #include <scsi/scsi_device.h>
56 #include <scsi/scsi_host.h>
57 #include <scsi/scsi_tcq.h>
58 #include "megaraid_sas_fusion.h"
59 #include "megaraid_sas.h"
62 * Number of sectors per IO command
63 * Will be set in megasas_init_mfi if user does not provide
65 static unsigned int max_sectors;
66 module_param_named(max_sectors, max_sectors, int, 0);
67 MODULE_PARM_DESC(max_sectors,
68 "Maximum number of sectors per IO command");
70 static int msix_disable;
71 module_param(msix_disable, int, S_IRUGO);
72 MODULE_PARM_DESC(msix_disable, "Disable MSI-X interrupt handling. Default: 0");
74 static unsigned int msix_vectors;
75 module_param(msix_vectors, int, S_IRUGO);
76 MODULE_PARM_DESC(msix_vectors, "MSI-X max vector count. Default: Set by FW");
78 static int throttlequeuedepth = MEGASAS_THROTTLE_QUEUE_DEPTH;
79 module_param(throttlequeuedepth, int, S_IRUGO);
80 MODULE_PARM_DESC(throttlequeuedepth,
81 "Adapter queue depth when throttled due to I/O timeout. Default: 16");
83 int resetwaittime = MEGASAS_RESET_WAIT_TIME;
84 module_param(resetwaittime, int, S_IRUGO);
85 MODULE_PARM_DESC(resetwaittime, "Wait time in seconds after I/O timeout "
86 "before resetting adapter. Default: 180");
88 MODULE_LICENSE("GPL");
89 MODULE_VERSION(MEGASAS_VERSION);
90 MODULE_AUTHOR("megaraidlinux@lsi.com");
91 MODULE_DESCRIPTION("LSI MegaRAID SAS Driver");
93 int megasas_transition_to_ready(struct megasas_instance *instance, int ocr);
94 static int megasas_get_pd_list(struct megasas_instance *instance);
95 static int megasas_issue_init_mfi(struct megasas_instance *instance);
96 static int megasas_register_aen(struct megasas_instance *instance,
97 u32 seq_num, u32 class_locale_word);
99 * PCI ID table for all supported controllers
101 static struct pci_device_id megasas_pci_table[] = {
103 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1064R)},
105 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078R)},
107 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078DE)},
109 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078GEN2)},
111 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0079GEN2)},
113 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0073SKINNY)},
115 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0071SKINNY)},
117 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_VERDE_ZCR)},
118 /* xscale IOP, vega */
119 {PCI_DEVICE(PCI_VENDOR_ID_DELL, PCI_DEVICE_ID_DELL_PERC5)},
121 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_FUSION)},
123 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_INVADER)},
128 MODULE_DEVICE_TABLE(pci, megasas_pci_table);
130 static int megasas_mgmt_majorno;
131 static struct megasas_mgmt_info megasas_mgmt_info;
132 static struct fasync_struct *megasas_async_queue;
133 static DEFINE_MUTEX(megasas_async_queue_mutex);
135 static int megasas_poll_wait_aen;
136 static DECLARE_WAIT_QUEUE_HEAD(megasas_poll_wait);
137 static u32 support_poll_for_event;
139 static u32 support_device_change;
141 /* define lock for aen poll */
142 spinlock_t poll_aen_lock;
145 megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd,
148 megasas_read_fw_status_reg_gen2(struct megasas_register_set __iomem *regs);
150 megasas_adp_reset_gen2(struct megasas_instance *instance,
151 struct megasas_register_set __iomem *reg_set);
152 static irqreturn_t megasas_isr(int irq, void *devp);
154 megasas_init_adapter_mfi(struct megasas_instance *instance);
156 megasas_build_and_issue_cmd(struct megasas_instance *instance,
157 struct scsi_cmnd *scmd);
158 static void megasas_complete_cmd_dpc(unsigned long instance_addr);
160 megasas_release_fusion(struct megasas_instance *instance);
162 megasas_ioc_init_fusion(struct megasas_instance *instance);
164 megasas_free_cmds_fusion(struct megasas_instance *instance);
166 megasas_get_map_info(struct megasas_instance *instance);
168 megasas_sync_map_info(struct megasas_instance *instance);
170 wait_and_poll(struct megasas_instance *instance, struct megasas_cmd *cmd);
171 void megasas_reset_reply_desc(struct megasas_instance *instance);
172 u8 MR_ValidateMapInfo(struct MR_FW_RAID_MAP_ALL *map,
173 struct LD_LOAD_BALANCE_INFO *lbInfo);
174 int megasas_reset_fusion(struct Scsi_Host *shost);
175 void megasas_fusion_ocr_wq(struct work_struct *work);
178 megasas_issue_dcmd(struct megasas_instance *instance, struct megasas_cmd *cmd)
180 instance->instancet->fire_cmd(instance,
181 cmd->frame_phys_addr, 0, instance->reg_set);
185 * megasas_get_cmd - Get a command from the free pool
186 * @instance: Adapter soft state
188 * Returns a free command from the pool
190 struct megasas_cmd *megasas_get_cmd(struct megasas_instance
194 struct megasas_cmd *cmd = NULL;
196 spin_lock_irqsave(&instance->cmd_pool_lock, flags);
198 if (!list_empty(&instance->cmd_pool)) {
199 cmd = list_entry((&instance->cmd_pool)->next,
200 struct megasas_cmd, list);
201 list_del_init(&cmd->list);
203 printk(KERN_ERR "megasas: Command pool empty!\n");
206 spin_unlock_irqrestore(&instance->cmd_pool_lock, flags);
211 * megasas_return_cmd - Return a cmd to free command pool
212 * @instance: Adapter soft state
213 * @cmd: Command packet to be returned to free command pool
216 megasas_return_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd)
220 spin_lock_irqsave(&instance->cmd_pool_lock, flags);
223 cmd->frame_count = 0;
224 if ((instance->pdev->device != PCI_DEVICE_ID_LSI_FUSION) &&
225 (instance->pdev->device != PCI_DEVICE_ID_LSI_INVADER) &&
227 cmd->frame->hdr.cmd = MFI_CMD_INVALID;
228 list_add_tail(&cmd->list, &instance->cmd_pool);
230 spin_unlock_irqrestore(&instance->cmd_pool_lock, flags);
235 * The following functions are defined for xscale
236 * (deviceid : 1064R, PERC5) controllers
240 * megasas_enable_intr_xscale - Enables interrupts
241 * @regs: MFI register set
244 megasas_enable_intr_xscale(struct megasas_register_set __iomem * regs)
246 writel(0, &(regs)->outbound_intr_mask);
248 /* Dummy readl to force pci flush */
249 readl(®s->outbound_intr_mask);
253 * megasas_disable_intr_xscale -Disables interrupt
254 * @regs: MFI register set
257 megasas_disable_intr_xscale(struct megasas_register_set __iomem * regs)
260 writel(mask, ®s->outbound_intr_mask);
261 /* Dummy readl to force pci flush */
262 readl(®s->outbound_intr_mask);
266 * megasas_read_fw_status_reg_xscale - returns the current FW status value
267 * @regs: MFI register set
270 megasas_read_fw_status_reg_xscale(struct megasas_register_set __iomem * regs)
272 return readl(&(regs)->outbound_msg_0);
275 * megasas_clear_interrupt_xscale - Check & clear interrupt
276 * @regs: MFI register set
279 megasas_clear_intr_xscale(struct megasas_register_set __iomem * regs)
284 * Check if it is our interrupt
286 status = readl(®s->outbound_intr_status);
288 if (status & MFI_OB_INTR_STATUS_MASK)
289 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
290 if (status & MFI_XSCALE_OMR0_CHANGE_INTERRUPT)
291 mfiStatus |= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
294 * Clear the interrupt by writing back the same value
297 writel(status, ®s->outbound_intr_status);
299 /* Dummy readl to force pci flush */
300 readl(®s->outbound_intr_status);
306 * megasas_fire_cmd_xscale - Sends command to the FW
307 * @frame_phys_addr : Physical address of cmd
308 * @frame_count : Number of frames for the command
309 * @regs : MFI register set
312 megasas_fire_cmd_xscale(struct megasas_instance *instance,
313 dma_addr_t frame_phys_addr,
315 struct megasas_register_set __iomem *regs)
318 spin_lock_irqsave(&instance->hba_lock, flags);
319 writel((frame_phys_addr >> 3)|(frame_count),
320 &(regs)->inbound_queue_port);
321 spin_unlock_irqrestore(&instance->hba_lock, flags);
325 * megasas_adp_reset_xscale - For controller reset
326 * @regs: MFI register set
329 megasas_adp_reset_xscale(struct megasas_instance *instance,
330 struct megasas_register_set __iomem *regs)
334 writel(MFI_ADP_RESET, ®s->inbound_doorbell);
336 for (i = 0; i < 3; i++)
337 msleep(1000); /* sleep for 3 secs */
339 pci_read_config_dword(instance->pdev, MFI_1068_PCSR_OFFSET, &pcidata);
340 printk(KERN_NOTICE "pcidata = %x\n", pcidata);
342 printk(KERN_NOTICE "mfi 1068 offset read=%x\n", pcidata);
344 pci_write_config_dword(instance->pdev,
345 MFI_1068_PCSR_OFFSET, pcidata);
347 for (i = 0; i < 2; i++)
348 msleep(1000); /* need to wait 2 secs again */
351 pci_read_config_dword(instance->pdev,
352 MFI_1068_FW_HANDSHAKE_OFFSET, &pcidata);
353 printk(KERN_NOTICE "1068 offset handshake read=%x\n", pcidata);
354 if ((pcidata & 0xffff0000) == MFI_1068_FW_READY) {
355 printk(KERN_NOTICE "1068 offset pcidt=%x\n", pcidata);
357 pci_write_config_dword(instance->pdev,
358 MFI_1068_FW_HANDSHAKE_OFFSET, pcidata);
365 * megasas_check_reset_xscale - For controller reset check
366 * @regs: MFI register set
369 megasas_check_reset_xscale(struct megasas_instance *instance,
370 struct megasas_register_set __iomem *regs)
373 consumer = *instance->consumer;
375 if ((instance->adprecovery != MEGASAS_HBA_OPERATIONAL) &&
376 (*instance->consumer == MEGASAS_ADPRESET_INPROG_SIGN)) {
382 static struct megasas_instance_template megasas_instance_template_xscale = {
384 .fire_cmd = megasas_fire_cmd_xscale,
385 .enable_intr = megasas_enable_intr_xscale,
386 .disable_intr = megasas_disable_intr_xscale,
387 .clear_intr = megasas_clear_intr_xscale,
388 .read_fw_status_reg = megasas_read_fw_status_reg_xscale,
389 .adp_reset = megasas_adp_reset_xscale,
390 .check_reset = megasas_check_reset_xscale,
391 .service_isr = megasas_isr,
392 .tasklet = megasas_complete_cmd_dpc,
393 .init_adapter = megasas_init_adapter_mfi,
394 .build_and_issue_cmd = megasas_build_and_issue_cmd,
395 .issue_dcmd = megasas_issue_dcmd,
399 * This is the end of set of functions & definitions specific
400 * to xscale (deviceid : 1064R, PERC5) controllers
404 * The following functions are defined for ppc (deviceid : 0x60)
409 * megasas_enable_intr_ppc - Enables interrupts
410 * @regs: MFI register set
413 megasas_enable_intr_ppc(struct megasas_register_set __iomem * regs)
415 writel(0xFFFFFFFF, &(regs)->outbound_doorbell_clear);
417 writel(~0x80000000, &(regs)->outbound_intr_mask);
419 /* Dummy readl to force pci flush */
420 readl(®s->outbound_intr_mask);
424 * megasas_disable_intr_ppc - Disable interrupt
425 * @regs: MFI register set
428 megasas_disable_intr_ppc(struct megasas_register_set __iomem * regs)
430 u32 mask = 0xFFFFFFFF;
431 writel(mask, ®s->outbound_intr_mask);
432 /* Dummy readl to force pci flush */
433 readl(®s->outbound_intr_mask);
437 * megasas_read_fw_status_reg_ppc - returns the current FW status value
438 * @regs: MFI register set
441 megasas_read_fw_status_reg_ppc(struct megasas_register_set __iomem * regs)
443 return readl(&(regs)->outbound_scratch_pad);
447 * megasas_clear_interrupt_ppc - Check & clear interrupt
448 * @regs: MFI register set
451 megasas_clear_intr_ppc(struct megasas_register_set __iomem * regs)
453 u32 status, mfiStatus = 0;
456 * Check if it is our interrupt
458 status = readl(®s->outbound_intr_status);
460 if (status & MFI_REPLY_1078_MESSAGE_INTERRUPT)
461 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
463 if (status & MFI_G2_OUTBOUND_DOORBELL_CHANGE_INTERRUPT)
464 mfiStatus |= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
467 * Clear the interrupt by writing back the same value
469 writel(status, ®s->outbound_doorbell_clear);
471 /* Dummy readl to force pci flush */
472 readl(®s->outbound_doorbell_clear);
478 * megasas_fire_cmd_ppc - Sends command to the FW
479 * @frame_phys_addr : Physical address of cmd
480 * @frame_count : Number of frames for the command
481 * @regs : MFI register set
484 megasas_fire_cmd_ppc(struct megasas_instance *instance,
485 dma_addr_t frame_phys_addr,
487 struct megasas_register_set __iomem *regs)
490 spin_lock_irqsave(&instance->hba_lock, flags);
491 writel((frame_phys_addr | (frame_count<<1))|1,
492 &(regs)->inbound_queue_port);
493 spin_unlock_irqrestore(&instance->hba_lock, flags);
497 * megasas_check_reset_ppc - For controller reset check
498 * @regs: MFI register set
501 megasas_check_reset_ppc(struct megasas_instance *instance,
502 struct megasas_register_set __iomem *regs)
504 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL)
510 static struct megasas_instance_template megasas_instance_template_ppc = {
512 .fire_cmd = megasas_fire_cmd_ppc,
513 .enable_intr = megasas_enable_intr_ppc,
514 .disable_intr = megasas_disable_intr_ppc,
515 .clear_intr = megasas_clear_intr_ppc,
516 .read_fw_status_reg = megasas_read_fw_status_reg_ppc,
517 .adp_reset = megasas_adp_reset_xscale,
518 .check_reset = megasas_check_reset_ppc,
519 .service_isr = megasas_isr,
520 .tasklet = megasas_complete_cmd_dpc,
521 .init_adapter = megasas_init_adapter_mfi,
522 .build_and_issue_cmd = megasas_build_and_issue_cmd,
523 .issue_dcmd = megasas_issue_dcmd,
527 * megasas_enable_intr_skinny - Enables interrupts
528 * @regs: MFI register set
531 megasas_enable_intr_skinny(struct megasas_register_set __iomem *regs)
533 writel(0xFFFFFFFF, &(regs)->outbound_intr_mask);
535 writel(~MFI_SKINNY_ENABLE_INTERRUPT_MASK, &(regs)->outbound_intr_mask);
537 /* Dummy readl to force pci flush */
538 readl(®s->outbound_intr_mask);
542 * megasas_disable_intr_skinny - Disables interrupt
543 * @regs: MFI register set
546 megasas_disable_intr_skinny(struct megasas_register_set __iomem *regs)
548 u32 mask = 0xFFFFFFFF;
549 writel(mask, ®s->outbound_intr_mask);
550 /* Dummy readl to force pci flush */
551 readl(®s->outbound_intr_mask);
555 * megasas_read_fw_status_reg_skinny - returns the current FW status value
556 * @regs: MFI register set
559 megasas_read_fw_status_reg_skinny(struct megasas_register_set __iomem *regs)
561 return readl(&(regs)->outbound_scratch_pad);
565 * megasas_clear_interrupt_skinny - Check & clear interrupt
566 * @regs: MFI register set
569 megasas_clear_intr_skinny(struct megasas_register_set __iomem *regs)
575 * Check if it is our interrupt
577 status = readl(®s->outbound_intr_status);
579 if (!(status & MFI_SKINNY_ENABLE_INTERRUPT_MASK)) {
584 * Check if it is our interrupt
586 if ((megasas_read_fw_status_reg_gen2(regs) & MFI_STATE_MASK) ==
588 mfiStatus = MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
590 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
593 * Clear the interrupt by writing back the same value
595 writel(status, ®s->outbound_intr_status);
598 * dummy read to flush PCI
600 readl(®s->outbound_intr_status);
606 * megasas_fire_cmd_skinny - Sends command to the FW
607 * @frame_phys_addr : Physical address of cmd
608 * @frame_count : Number of frames for the command
609 * @regs : MFI register set
612 megasas_fire_cmd_skinny(struct megasas_instance *instance,
613 dma_addr_t frame_phys_addr,
615 struct megasas_register_set __iomem *regs)
618 spin_lock_irqsave(&instance->hba_lock, flags);
619 writel(0, &(regs)->inbound_high_queue_port);
620 writel((frame_phys_addr | (frame_count<<1))|1,
621 &(regs)->inbound_low_queue_port);
622 spin_unlock_irqrestore(&instance->hba_lock, flags);
626 * megasas_check_reset_skinny - For controller reset check
627 * @regs: MFI register set
630 megasas_check_reset_skinny(struct megasas_instance *instance,
631 struct megasas_register_set __iomem *regs)
633 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL)
639 static struct megasas_instance_template megasas_instance_template_skinny = {
641 .fire_cmd = megasas_fire_cmd_skinny,
642 .enable_intr = megasas_enable_intr_skinny,
643 .disable_intr = megasas_disable_intr_skinny,
644 .clear_intr = megasas_clear_intr_skinny,
645 .read_fw_status_reg = megasas_read_fw_status_reg_skinny,
646 .adp_reset = megasas_adp_reset_gen2,
647 .check_reset = megasas_check_reset_skinny,
648 .service_isr = megasas_isr,
649 .tasklet = megasas_complete_cmd_dpc,
650 .init_adapter = megasas_init_adapter_mfi,
651 .build_and_issue_cmd = megasas_build_and_issue_cmd,
652 .issue_dcmd = megasas_issue_dcmd,
657 * The following functions are defined for gen2 (deviceid : 0x78 0x79)
662 * megasas_enable_intr_gen2 - Enables interrupts
663 * @regs: MFI register set
666 megasas_enable_intr_gen2(struct megasas_register_set __iomem *regs)
668 writel(0xFFFFFFFF, &(regs)->outbound_doorbell_clear);
670 /* write ~0x00000005 (4 & 1) to the intr mask*/
671 writel(~MFI_GEN2_ENABLE_INTERRUPT_MASK, &(regs)->outbound_intr_mask);
673 /* Dummy readl to force pci flush */
674 readl(®s->outbound_intr_mask);
678 * megasas_disable_intr_gen2 - Disables interrupt
679 * @regs: MFI register set
682 megasas_disable_intr_gen2(struct megasas_register_set __iomem *regs)
684 u32 mask = 0xFFFFFFFF;
685 writel(mask, ®s->outbound_intr_mask);
686 /* Dummy readl to force pci flush */
687 readl(®s->outbound_intr_mask);
691 * megasas_read_fw_status_reg_gen2 - returns the current FW status value
692 * @regs: MFI register set
695 megasas_read_fw_status_reg_gen2(struct megasas_register_set __iomem *regs)
697 return readl(&(regs)->outbound_scratch_pad);
701 * megasas_clear_interrupt_gen2 - Check & clear interrupt
702 * @regs: MFI register set
705 megasas_clear_intr_gen2(struct megasas_register_set __iomem *regs)
710 * Check if it is our interrupt
712 status = readl(®s->outbound_intr_status);
714 if (status & MFI_GEN2_ENABLE_INTERRUPT_MASK) {
715 mfiStatus = MFI_INTR_FLAG_REPLY_MESSAGE;
717 if (status & MFI_G2_OUTBOUND_DOORBELL_CHANGE_INTERRUPT) {
718 mfiStatus |= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE;
722 * Clear the interrupt by writing back the same value
725 writel(status, ®s->outbound_doorbell_clear);
727 /* Dummy readl to force pci flush */
728 readl(®s->outbound_intr_status);
733 * megasas_fire_cmd_gen2 - Sends command to the FW
734 * @frame_phys_addr : Physical address of cmd
735 * @frame_count : Number of frames for the command
736 * @regs : MFI register set
739 megasas_fire_cmd_gen2(struct megasas_instance *instance,
740 dma_addr_t frame_phys_addr,
742 struct megasas_register_set __iomem *regs)
745 spin_lock_irqsave(&instance->hba_lock, flags);
746 writel((frame_phys_addr | (frame_count<<1))|1,
747 &(regs)->inbound_queue_port);
748 spin_unlock_irqrestore(&instance->hba_lock, flags);
752 * megasas_adp_reset_gen2 - For controller reset
753 * @regs: MFI register set
756 megasas_adp_reset_gen2(struct megasas_instance *instance,
757 struct megasas_register_set __iomem *reg_set)
761 u32 *seq_offset = ®_set->seq_offset;
762 u32 *hostdiag_offset = ®_set->host_diag;
764 if (instance->instancet == &megasas_instance_template_skinny) {
765 seq_offset = ®_set->fusion_seq_offset;
766 hostdiag_offset = ®_set->fusion_host_diag;
769 writel(0, seq_offset);
770 writel(4, seq_offset);
771 writel(0xb, seq_offset);
772 writel(2, seq_offset);
773 writel(7, seq_offset);
774 writel(0xd, seq_offset);
778 HostDiag = (u32)readl(hostdiag_offset);
780 while ( !( HostDiag & DIAG_WRITE_ENABLE) ) {
782 HostDiag = (u32)readl(hostdiag_offset);
783 printk(KERN_NOTICE "RESETGEN2: retry=%x, hostdiag=%x\n",
791 printk(KERN_NOTICE "ADP_RESET_GEN2: HostDiag=%x\n", HostDiag);
793 writel((HostDiag | DIAG_RESET_ADAPTER), hostdiag_offset);
797 HostDiag = (u32)readl(hostdiag_offset);
798 while ( ( HostDiag & DIAG_RESET_ADAPTER) ) {
800 HostDiag = (u32)readl(hostdiag_offset);
801 printk(KERN_NOTICE "RESET_GEN2: retry=%x, hostdiag=%x\n",
812 * megasas_check_reset_gen2 - For controller reset check
813 * @regs: MFI register set
816 megasas_check_reset_gen2(struct megasas_instance *instance,
817 struct megasas_register_set __iomem *regs)
819 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL) {
826 static struct megasas_instance_template megasas_instance_template_gen2 = {
828 .fire_cmd = megasas_fire_cmd_gen2,
829 .enable_intr = megasas_enable_intr_gen2,
830 .disable_intr = megasas_disable_intr_gen2,
831 .clear_intr = megasas_clear_intr_gen2,
832 .read_fw_status_reg = megasas_read_fw_status_reg_gen2,
833 .adp_reset = megasas_adp_reset_gen2,
834 .check_reset = megasas_check_reset_gen2,
835 .service_isr = megasas_isr,
836 .tasklet = megasas_complete_cmd_dpc,
837 .init_adapter = megasas_init_adapter_mfi,
838 .build_and_issue_cmd = megasas_build_and_issue_cmd,
839 .issue_dcmd = megasas_issue_dcmd,
843 * This is the end of set of functions & definitions
844 * specific to gen2 (deviceid : 0x78, 0x79) controllers
848 * Template added for TB (Fusion)
850 extern struct megasas_instance_template megasas_instance_template_fusion;
853 * megasas_issue_polled - Issues a polling command
854 * @instance: Adapter soft state
855 * @cmd: Command packet to be issued
857 * For polling, MFI requires the cmd_status to be set to 0xFF before posting.
860 megasas_issue_polled(struct megasas_instance *instance, struct megasas_cmd *cmd)
863 struct megasas_header *frame_hdr = &cmd->frame->hdr;
865 frame_hdr->cmd_status = 0xFF;
866 frame_hdr->flags |= MFI_FRAME_DONT_POST_IN_REPLY_QUEUE;
869 * Issue the frame using inbound queue port
871 instance->instancet->issue_dcmd(instance, cmd);
874 * Wait for cmd_status to change
876 return wait_and_poll(instance, cmd);
880 * megasas_issue_blocked_cmd - Synchronous wrapper around regular FW cmds
881 * @instance: Adapter soft state
882 * @cmd: Command to be issued
884 * This function waits on an event for the command to be returned from ISR.
885 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
886 * Used to issue ioctl commands.
889 megasas_issue_blocked_cmd(struct megasas_instance *instance,
890 struct megasas_cmd *cmd)
892 cmd->cmd_status = ENODATA;
894 instance->instancet->issue_dcmd(instance, cmd);
896 wait_event(instance->int_cmd_wait_q, cmd->cmd_status != ENODATA);
902 * megasas_issue_blocked_abort_cmd - Aborts previously issued cmd
903 * @instance: Adapter soft state
904 * @cmd_to_abort: Previously issued cmd to be aborted
906 * MFI firmware can abort previously issued AEN command (automatic event
907 * notification). The megasas_issue_blocked_abort_cmd() issues such abort
908 * cmd and waits for return status.
909 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
912 megasas_issue_blocked_abort_cmd(struct megasas_instance *instance,
913 struct megasas_cmd *cmd_to_abort)
915 struct megasas_cmd *cmd;
916 struct megasas_abort_frame *abort_fr;
918 cmd = megasas_get_cmd(instance);
923 abort_fr = &cmd->frame->abort;
926 * Prepare and issue the abort frame
928 abort_fr->cmd = MFI_CMD_ABORT;
929 abort_fr->cmd_status = 0xFF;
931 abort_fr->abort_context = cmd_to_abort->index;
932 abort_fr->abort_mfi_phys_addr_lo = cmd_to_abort->frame_phys_addr;
933 abort_fr->abort_mfi_phys_addr_hi = 0;
936 cmd->cmd_status = 0xFF;
938 instance->instancet->issue_dcmd(instance, cmd);
941 * Wait for this cmd to complete
943 wait_event(instance->abort_cmd_wait_q, cmd->cmd_status != 0xFF);
946 megasas_return_cmd(instance, cmd);
951 * megasas_make_sgl32 - Prepares 32-bit SGL
952 * @instance: Adapter soft state
953 * @scp: SCSI command from the mid-layer
954 * @mfi_sgl: SGL to be filled in
956 * If successful, this function returns the number of SG elements. Otherwise,
960 megasas_make_sgl32(struct megasas_instance *instance, struct scsi_cmnd *scp,
961 union megasas_sgl *mfi_sgl)
965 struct scatterlist *os_sgl;
967 sge_count = scsi_dma_map(scp);
968 BUG_ON(sge_count < 0);
971 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
972 mfi_sgl->sge32[i].length = sg_dma_len(os_sgl);
973 mfi_sgl->sge32[i].phys_addr = sg_dma_address(os_sgl);
980 * megasas_make_sgl64 - Prepares 64-bit SGL
981 * @instance: Adapter soft state
982 * @scp: SCSI command from the mid-layer
983 * @mfi_sgl: SGL to be filled in
985 * If successful, this function returns the number of SG elements. Otherwise,
989 megasas_make_sgl64(struct megasas_instance *instance, struct scsi_cmnd *scp,
990 union megasas_sgl *mfi_sgl)
994 struct scatterlist *os_sgl;
996 sge_count = scsi_dma_map(scp);
997 BUG_ON(sge_count < 0);
1000 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
1001 mfi_sgl->sge64[i].length = sg_dma_len(os_sgl);
1002 mfi_sgl->sge64[i].phys_addr = sg_dma_address(os_sgl);
1009 * megasas_make_sgl_skinny - Prepares IEEE SGL
1010 * @instance: Adapter soft state
1011 * @scp: SCSI command from the mid-layer
1012 * @mfi_sgl: SGL to be filled in
1014 * If successful, this function returns the number of SG elements. Otherwise,
1018 megasas_make_sgl_skinny(struct megasas_instance *instance,
1019 struct scsi_cmnd *scp, union megasas_sgl *mfi_sgl)
1023 struct scatterlist *os_sgl;
1025 sge_count = scsi_dma_map(scp);
1028 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
1029 mfi_sgl->sge_skinny[i].length = sg_dma_len(os_sgl);
1030 mfi_sgl->sge_skinny[i].phys_addr =
1031 sg_dma_address(os_sgl);
1032 mfi_sgl->sge_skinny[i].flag = 0;
1039 * megasas_get_frame_count - Computes the number of frames
1040 * @frame_type : type of frame- io or pthru frame
1041 * @sge_count : number of sg elements
1043 * Returns the number of frames required for numnber of sge's (sge_count)
1046 static u32 megasas_get_frame_count(struct megasas_instance *instance,
1047 u8 sge_count, u8 frame_type)
1054 sge_sz = (IS_DMA64) ? sizeof(struct megasas_sge64) :
1055 sizeof(struct megasas_sge32);
1057 if (instance->flag_ieee) {
1058 sge_sz = sizeof(struct megasas_sge_skinny);
1062 * Main frame can contain 2 SGEs for 64-bit SGLs and
1063 * 3 SGEs for 32-bit SGLs for ldio &
1064 * 1 SGEs for 64-bit SGLs and
1065 * 2 SGEs for 32-bit SGLs for pthru frame
1067 if (unlikely(frame_type == PTHRU_FRAME)) {
1068 if (instance->flag_ieee == 1) {
1069 num_cnt = sge_count - 1;
1070 } else if (IS_DMA64)
1071 num_cnt = sge_count - 1;
1073 num_cnt = sge_count - 2;
1075 if (instance->flag_ieee == 1) {
1076 num_cnt = sge_count - 1;
1077 } else if (IS_DMA64)
1078 num_cnt = sge_count - 2;
1080 num_cnt = sge_count - 3;
1084 sge_bytes = sge_sz * num_cnt;
1086 frame_count = (sge_bytes / MEGAMFI_FRAME_SIZE) +
1087 ((sge_bytes % MEGAMFI_FRAME_SIZE) ? 1 : 0) ;
1092 if (frame_count > 7)
1098 * megasas_build_dcdb - Prepares a direct cdb (DCDB) command
1099 * @instance: Adapter soft state
1100 * @scp: SCSI command
1101 * @cmd: Command to be prepared in
1103 * This function prepares CDB commands. These are typcially pass-through
1104 * commands to the devices.
1107 megasas_build_dcdb(struct megasas_instance *instance, struct scsi_cmnd *scp,
1108 struct megasas_cmd *cmd)
1113 struct megasas_pthru_frame *pthru;
1115 is_logical = MEGASAS_IS_LOGICAL(scp);
1116 device_id = MEGASAS_DEV_INDEX(instance, scp);
1117 pthru = (struct megasas_pthru_frame *)cmd->frame;
1119 if (scp->sc_data_direction == PCI_DMA_TODEVICE)
1120 flags = MFI_FRAME_DIR_WRITE;
1121 else if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
1122 flags = MFI_FRAME_DIR_READ;
1123 else if (scp->sc_data_direction == PCI_DMA_NONE)
1124 flags = MFI_FRAME_DIR_NONE;
1126 if (instance->flag_ieee == 1) {
1127 flags |= MFI_FRAME_IEEE;
1131 * Prepare the DCDB frame
1133 pthru->cmd = (is_logical) ? MFI_CMD_LD_SCSI_IO : MFI_CMD_PD_SCSI_IO;
1134 pthru->cmd_status = 0x0;
1135 pthru->scsi_status = 0x0;
1136 pthru->target_id = device_id;
1137 pthru->lun = scp->device->lun;
1138 pthru->cdb_len = scp->cmd_len;
1141 pthru->flags = flags;
1142 pthru->data_xfer_len = scsi_bufflen(scp);
1144 memcpy(pthru->cdb, scp->cmnd, scp->cmd_len);
1147 * If the command is for the tape device, set the
1148 * pthru timeout to the os layer timeout value.
1150 if (scp->device->type == TYPE_TAPE) {
1151 if ((scp->request->timeout / HZ) > 0xFFFF)
1152 pthru->timeout = 0xFFFF;
1154 pthru->timeout = scp->request->timeout / HZ;
1160 if (instance->flag_ieee == 1) {
1161 pthru->flags |= MFI_FRAME_SGL64;
1162 pthru->sge_count = megasas_make_sgl_skinny(instance, scp,
1164 } else if (IS_DMA64) {
1165 pthru->flags |= MFI_FRAME_SGL64;
1166 pthru->sge_count = megasas_make_sgl64(instance, scp,
1169 pthru->sge_count = megasas_make_sgl32(instance, scp,
1172 if (pthru->sge_count > instance->max_num_sge) {
1173 printk(KERN_ERR "megasas: DCDB two many SGE NUM=%x\n",
1179 * Sense info specific
1181 pthru->sense_len = SCSI_SENSE_BUFFERSIZE;
1182 pthru->sense_buf_phys_addr_hi = 0;
1183 pthru->sense_buf_phys_addr_lo = cmd->sense_phys_addr;
1186 * Compute the total number of frames this command consumes. FW uses
1187 * this number to pull sufficient number of frames from host memory.
1189 cmd->frame_count = megasas_get_frame_count(instance, pthru->sge_count,
1192 return cmd->frame_count;
1196 * megasas_build_ldio - Prepares IOs to logical devices
1197 * @instance: Adapter soft state
1198 * @scp: SCSI command
1199 * @cmd: Command to be prepared
1201 * Frames (and accompanying SGLs) for regular SCSI IOs use this function.
1204 megasas_build_ldio(struct megasas_instance *instance, struct scsi_cmnd *scp,
1205 struct megasas_cmd *cmd)
1208 u8 sc = scp->cmnd[0];
1210 struct megasas_io_frame *ldio;
1212 device_id = MEGASAS_DEV_INDEX(instance, scp);
1213 ldio = (struct megasas_io_frame *)cmd->frame;
1215 if (scp->sc_data_direction == PCI_DMA_TODEVICE)
1216 flags = MFI_FRAME_DIR_WRITE;
1217 else if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
1218 flags = MFI_FRAME_DIR_READ;
1220 if (instance->flag_ieee == 1) {
1221 flags |= MFI_FRAME_IEEE;
1225 * Prepare the Logical IO frame: 2nd bit is zero for all read cmds
1227 ldio->cmd = (sc & 0x02) ? MFI_CMD_LD_WRITE : MFI_CMD_LD_READ;
1228 ldio->cmd_status = 0x0;
1229 ldio->scsi_status = 0x0;
1230 ldio->target_id = device_id;
1232 ldio->reserved_0 = 0;
1234 ldio->flags = flags;
1235 ldio->start_lba_hi = 0;
1236 ldio->access_byte = (scp->cmd_len != 6) ? scp->cmnd[1] : 0;
1239 * 6-byte READ(0x08) or WRITE(0x0A) cdb
1241 if (scp->cmd_len == 6) {
1242 ldio->lba_count = (u32) scp->cmnd[4];
1243 ldio->start_lba_lo = ((u32) scp->cmnd[1] << 16) |
1244 ((u32) scp->cmnd[2] << 8) | (u32) scp->cmnd[3];
1246 ldio->start_lba_lo &= 0x1FFFFF;
1250 * 10-byte READ(0x28) or WRITE(0x2A) cdb
1252 else if (scp->cmd_len == 10) {
1253 ldio->lba_count = (u32) scp->cmnd[8] |
1254 ((u32) scp->cmnd[7] << 8);
1255 ldio->start_lba_lo = ((u32) scp->cmnd[2] << 24) |
1256 ((u32) scp->cmnd[3] << 16) |
1257 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
1261 * 12-byte READ(0xA8) or WRITE(0xAA) cdb
1263 else if (scp->cmd_len == 12) {
1264 ldio->lba_count = ((u32) scp->cmnd[6] << 24) |
1265 ((u32) scp->cmnd[7] << 16) |
1266 ((u32) scp->cmnd[8] << 8) | (u32) scp->cmnd[9];
1268 ldio->start_lba_lo = ((u32) scp->cmnd[2] << 24) |
1269 ((u32) scp->cmnd[3] << 16) |
1270 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
1274 * 16-byte READ(0x88) or WRITE(0x8A) cdb
1276 else if (scp->cmd_len == 16) {
1277 ldio->lba_count = ((u32) scp->cmnd[10] << 24) |
1278 ((u32) scp->cmnd[11] << 16) |
1279 ((u32) scp->cmnd[12] << 8) | (u32) scp->cmnd[13];
1281 ldio->start_lba_lo = ((u32) scp->cmnd[6] << 24) |
1282 ((u32) scp->cmnd[7] << 16) |
1283 ((u32) scp->cmnd[8] << 8) | (u32) scp->cmnd[9];
1285 ldio->start_lba_hi = ((u32) scp->cmnd[2] << 24) |
1286 ((u32) scp->cmnd[3] << 16) |
1287 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
1294 if (instance->flag_ieee) {
1295 ldio->flags |= MFI_FRAME_SGL64;
1296 ldio->sge_count = megasas_make_sgl_skinny(instance, scp,
1298 } else if (IS_DMA64) {
1299 ldio->flags |= MFI_FRAME_SGL64;
1300 ldio->sge_count = megasas_make_sgl64(instance, scp, &ldio->sgl);
1302 ldio->sge_count = megasas_make_sgl32(instance, scp, &ldio->sgl);
1304 if (ldio->sge_count > instance->max_num_sge) {
1305 printk(KERN_ERR "megasas: build_ld_io: sge_count = %x\n",
1311 * Sense info specific
1313 ldio->sense_len = SCSI_SENSE_BUFFERSIZE;
1314 ldio->sense_buf_phys_addr_hi = 0;
1315 ldio->sense_buf_phys_addr_lo = cmd->sense_phys_addr;
1318 * Compute the total number of frames this command consumes. FW uses
1319 * this number to pull sufficient number of frames from host memory.
1321 cmd->frame_count = megasas_get_frame_count(instance,
1322 ldio->sge_count, IO_FRAME);
1324 return cmd->frame_count;
1328 * megasas_is_ldio - Checks if the cmd is for logical drive
1329 * @scmd: SCSI command
1331 * Called by megasas_queue_command to find out if the command to be queued
1332 * is a logical drive command
1334 inline int megasas_is_ldio(struct scsi_cmnd *cmd)
1336 if (!MEGASAS_IS_LOGICAL(cmd))
1338 switch (cmd->cmnd[0]) {
1354 * megasas_dump_pending_frames - Dumps the frame address of all pending cmds
1356 * @instance: Adapter soft state
1359 megasas_dump_pending_frames(struct megasas_instance *instance)
1361 struct megasas_cmd *cmd;
1363 union megasas_sgl *mfi_sgl;
1364 struct megasas_io_frame *ldio;
1365 struct megasas_pthru_frame *pthru;
1367 u32 max_cmd = instance->max_fw_cmds;
1369 printk(KERN_ERR "\nmegasas[%d]: Dumping Frame Phys Address of all pending cmds in FW\n",instance->host->host_no);
1370 printk(KERN_ERR "megasas[%d]: Total OS Pending cmds : %d\n",instance->host->host_no,atomic_read(&instance->fw_outstanding));
1372 printk(KERN_ERR "\nmegasas[%d]: 64 bit SGLs were sent to FW\n",instance->host->host_no);
1374 printk(KERN_ERR "\nmegasas[%d]: 32 bit SGLs were sent to FW\n",instance->host->host_no);
1376 printk(KERN_ERR "megasas[%d]: Pending OS cmds in FW : \n",instance->host->host_no);
1377 for (i = 0; i < max_cmd; i++) {
1378 cmd = instance->cmd_list[i];
1381 printk(KERN_ERR "megasas[%d]: Frame addr :0x%08lx : ",instance->host->host_no,(unsigned long)cmd->frame_phys_addr);
1382 if (megasas_is_ldio(cmd->scmd)){
1383 ldio = (struct megasas_io_frame *)cmd->frame;
1384 mfi_sgl = &ldio->sgl;
1385 sgcount = ldio->sge_count;
1386 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);
1389 pthru = (struct megasas_pthru_frame *) cmd->frame;
1390 mfi_sgl = &pthru->sgl;
1391 sgcount = pthru->sge_count;
1392 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);
1394 if(megasas_dbg_lvl & MEGASAS_DBG_LVL){
1395 for (n = 0; n < sgcount; n++){
1397 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) ;
1399 printk(KERN_ERR "megasas: sgl len : 0x%x, sgl addr : 0x%x ",mfi_sgl->sge32[n].length , mfi_sgl->sge32[n].phys_addr) ;
1402 printk(KERN_ERR "\n");
1404 printk(KERN_ERR "\nmegasas[%d]: Pending Internal cmds in FW : \n",instance->host->host_no);
1405 for (i = 0; i < max_cmd; i++) {
1407 cmd = instance->cmd_list[i];
1409 if(cmd->sync_cmd == 1){
1410 printk(KERN_ERR "0x%08lx : ", (unsigned long)cmd->frame_phys_addr);
1413 printk(KERN_ERR "megasas[%d]: Dumping Done.\n\n",instance->host->host_no);
1417 megasas_build_and_issue_cmd(struct megasas_instance *instance,
1418 struct scsi_cmnd *scmd)
1420 struct megasas_cmd *cmd;
1423 cmd = megasas_get_cmd(instance);
1425 return SCSI_MLQUEUE_HOST_BUSY;
1428 * Logical drive command
1430 if (megasas_is_ldio(scmd))
1431 frame_count = megasas_build_ldio(instance, scmd, cmd);
1433 frame_count = megasas_build_dcdb(instance, scmd, cmd);
1436 goto out_return_cmd;
1439 scmd->SCp.ptr = (char *)cmd;
1442 * Issue the command to the FW
1444 atomic_inc(&instance->fw_outstanding);
1446 instance->instancet->fire_cmd(instance, cmd->frame_phys_addr,
1447 cmd->frame_count-1, instance->reg_set);
1451 megasas_return_cmd(instance, cmd);
1457 * megasas_queue_command - Queue entry point
1458 * @scmd: SCSI command to be queued
1459 * @done: Callback entry point
1462 megasas_queue_command_lck(struct scsi_cmnd *scmd, void (*done) (struct scsi_cmnd *))
1464 struct megasas_instance *instance;
1465 unsigned long flags;
1467 instance = (struct megasas_instance *)
1468 scmd->device->host->hostdata;
1470 if (instance->issuepend_done == 0)
1471 return SCSI_MLQUEUE_HOST_BUSY;
1473 spin_lock_irqsave(&instance->hba_lock, flags);
1474 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL) {
1475 spin_unlock_irqrestore(&instance->hba_lock, flags);
1476 return SCSI_MLQUEUE_HOST_BUSY;
1479 spin_unlock_irqrestore(&instance->hba_lock, flags);
1481 scmd->scsi_done = done;
1484 if (MEGASAS_IS_LOGICAL(scmd) &&
1485 (scmd->device->id >= MEGASAS_MAX_LD || scmd->device->lun)) {
1486 scmd->result = DID_BAD_TARGET << 16;
1490 switch (scmd->cmnd[0]) {
1491 case SYNCHRONIZE_CACHE:
1493 * FW takes care of flush cache on its own
1494 * No need to send it down
1496 scmd->result = DID_OK << 16;
1502 if (instance->instancet->build_and_issue_cmd(instance, scmd)) {
1503 printk(KERN_ERR "megasas: Err returned from build_and_issue_cmd\n");
1504 return SCSI_MLQUEUE_HOST_BUSY;
1514 static DEF_SCSI_QCMD(megasas_queue_command)
1516 static struct megasas_instance *megasas_lookup_instance(u16 host_no)
1520 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
1522 if ((megasas_mgmt_info.instance[i]) &&
1523 (megasas_mgmt_info.instance[i]->host->host_no == host_no))
1524 return megasas_mgmt_info.instance[i];
1530 static int megasas_slave_configure(struct scsi_device *sdev)
1533 struct megasas_instance *instance ;
1535 instance = megasas_lookup_instance(sdev->host->host_no);
1538 * Don't export physical disk devices to the disk driver.
1540 * FIXME: Currently we don't export them to the midlayer at all.
1541 * That will be fixed once LSI engineers have audited the
1542 * firmware for possible issues.
1544 if (sdev->channel < MEGASAS_MAX_PD_CHANNELS &&
1545 sdev->type == TYPE_DISK) {
1546 pd_index = (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) +
1548 if (instance->pd_list[pd_index].driveState ==
1549 MR_PD_STATE_SYSTEM) {
1550 blk_queue_rq_timeout(sdev->request_queue,
1551 MEGASAS_DEFAULT_CMD_TIMEOUT * HZ);
1558 * The RAID firmware may require extended timeouts.
1560 blk_queue_rq_timeout(sdev->request_queue,
1561 MEGASAS_DEFAULT_CMD_TIMEOUT * HZ);
1565 static int megasas_slave_alloc(struct scsi_device *sdev)
1568 struct megasas_instance *instance ;
1569 instance = megasas_lookup_instance(sdev->host->host_no);
1570 if ((sdev->channel < MEGASAS_MAX_PD_CHANNELS) &&
1571 (sdev->type == TYPE_DISK)) {
1573 * Open the OS scan to the SYSTEM PD
1576 (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) +
1578 if ((instance->pd_list[pd_index].driveState ==
1579 MR_PD_STATE_SYSTEM) &&
1580 (instance->pd_list[pd_index].driveType ==
1589 void megaraid_sas_kill_hba(struct megasas_instance *instance)
1591 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1592 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
1593 (instance->pdev->device == PCI_DEVICE_ID_LSI_FUSION) ||
1594 (instance->pdev->device == PCI_DEVICE_ID_LSI_INVADER)) {
1595 writel(MFI_STOP_ADP, &instance->reg_set->doorbell);
1597 writel(MFI_STOP_ADP, &instance->reg_set->inbound_doorbell);
1602 * megasas_check_and_restore_queue_depth - Check if queue depth needs to be
1603 * restored to max value
1604 * @instance: Adapter soft state
1608 megasas_check_and_restore_queue_depth(struct megasas_instance *instance)
1610 unsigned long flags;
1611 if (instance->flag & MEGASAS_FW_BUSY
1612 && time_after(jiffies, instance->last_time + 5 * HZ)
1613 && atomic_read(&instance->fw_outstanding) <
1614 instance->throttlequeuedepth + 1) {
1616 spin_lock_irqsave(instance->host->host_lock, flags);
1617 instance->flag &= ~MEGASAS_FW_BUSY;
1618 if ((instance->pdev->device ==
1619 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1620 (instance->pdev->device ==
1621 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
1622 instance->host->can_queue =
1623 instance->max_fw_cmds - MEGASAS_SKINNY_INT_CMDS;
1625 instance->host->can_queue =
1626 instance->max_fw_cmds - MEGASAS_INT_CMDS;
1628 spin_unlock_irqrestore(instance->host->host_lock, flags);
1633 * megasas_complete_cmd_dpc - Returns FW's controller structure
1634 * @instance_addr: Address of adapter soft state
1636 * Tasklet to complete cmds
1638 static void megasas_complete_cmd_dpc(unsigned long instance_addr)
1643 struct megasas_cmd *cmd;
1644 struct megasas_instance *instance =
1645 (struct megasas_instance *)instance_addr;
1646 unsigned long flags;
1648 /* If we have already declared adapter dead, donot complete cmds */
1649 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR )
1652 spin_lock_irqsave(&instance->completion_lock, flags);
1654 producer = *instance->producer;
1655 consumer = *instance->consumer;
1657 while (consumer != producer) {
1658 context = instance->reply_queue[consumer];
1659 if (context >= instance->max_fw_cmds) {
1660 printk(KERN_ERR "Unexpected context value %x\n",
1665 cmd = instance->cmd_list[context];
1667 megasas_complete_cmd(instance, cmd, DID_OK);
1670 if (consumer == (instance->max_fw_cmds + 1)) {
1675 *instance->consumer = producer;
1677 spin_unlock_irqrestore(&instance->completion_lock, flags);
1680 * Check if we can restore can_queue
1682 megasas_check_and_restore_queue_depth(instance);
1686 megasas_internal_reset_defer_cmds(struct megasas_instance *instance);
1689 process_fw_state_change_wq(struct work_struct *work);
1691 void megasas_do_ocr(struct megasas_instance *instance)
1693 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1064R) ||
1694 (instance->pdev->device == PCI_DEVICE_ID_DELL_PERC5) ||
1695 (instance->pdev->device == PCI_DEVICE_ID_LSI_VERDE_ZCR)) {
1696 *instance->consumer = MEGASAS_ADPRESET_INPROG_SIGN;
1698 instance->instancet->disable_intr(instance->reg_set);
1699 instance->adprecovery = MEGASAS_ADPRESET_SM_INFAULT;
1700 instance->issuepend_done = 0;
1702 atomic_set(&instance->fw_outstanding, 0);
1703 megasas_internal_reset_defer_cmds(instance);
1704 process_fw_state_change_wq(&instance->work_init);
1708 * megasas_wait_for_outstanding - Wait for all outstanding cmds
1709 * @instance: Adapter soft state
1711 * This function waits for up to MEGASAS_RESET_WAIT_TIME seconds for FW to
1712 * complete all its outstanding commands. Returns error if one or more IOs
1713 * are pending after this time period. It also marks the controller dead.
1715 static int megasas_wait_for_outstanding(struct megasas_instance *instance)
1719 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
1721 unsigned long flags;
1722 struct list_head clist_local;
1723 struct megasas_cmd *reset_cmd;
1725 u8 kill_adapter_flag;
1727 spin_lock_irqsave(&instance->hba_lock, flags);
1728 adprecovery = instance->adprecovery;
1729 spin_unlock_irqrestore(&instance->hba_lock, flags);
1731 if (adprecovery != MEGASAS_HBA_OPERATIONAL) {
1733 INIT_LIST_HEAD(&clist_local);
1734 spin_lock_irqsave(&instance->hba_lock, flags);
1735 list_splice_init(&instance->internal_reset_pending_q,
1737 spin_unlock_irqrestore(&instance->hba_lock, flags);
1739 printk(KERN_NOTICE "megasas: HBA reset wait ...\n");
1740 for (i = 0; i < wait_time; i++) {
1742 spin_lock_irqsave(&instance->hba_lock, flags);
1743 adprecovery = instance->adprecovery;
1744 spin_unlock_irqrestore(&instance->hba_lock, flags);
1745 if (adprecovery == MEGASAS_HBA_OPERATIONAL)
1749 if (adprecovery != MEGASAS_HBA_OPERATIONAL) {
1750 printk(KERN_NOTICE "megasas: reset: Stopping HBA.\n");
1751 spin_lock_irqsave(&instance->hba_lock, flags);
1752 instance->adprecovery = MEGASAS_HW_CRITICAL_ERROR;
1753 spin_unlock_irqrestore(&instance->hba_lock, flags);
1758 while (!list_empty(&clist_local)) {
1759 reset_cmd = list_entry((&clist_local)->next,
1760 struct megasas_cmd, list);
1761 list_del_init(&reset_cmd->list);
1762 if (reset_cmd->scmd) {
1763 reset_cmd->scmd->result = DID_RESET << 16;
1764 printk(KERN_NOTICE "%d:%p reset [%02x]\n",
1765 reset_index, reset_cmd,
1766 reset_cmd->scmd->cmnd[0]);
1768 reset_cmd->scmd->scsi_done(reset_cmd->scmd);
1769 megasas_return_cmd(instance, reset_cmd);
1770 } else if (reset_cmd->sync_cmd) {
1771 printk(KERN_NOTICE "megasas:%p synch cmds"
1775 reset_cmd->cmd_status = ENODATA;
1776 instance->instancet->fire_cmd(instance,
1777 reset_cmd->frame_phys_addr,
1778 0, instance->reg_set);
1780 printk(KERN_NOTICE "megasas: %p unexpected"
1790 for (i = 0; i < resetwaittime; i++) {
1792 int outstanding = atomic_read(&instance->fw_outstanding);
1797 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
1798 printk(KERN_NOTICE "megasas: [%2d]waiting for %d "
1799 "commands to complete\n",i,outstanding);
1801 * Call cmd completion routine. Cmd to be
1802 * be completed directly without depending on isr.
1804 megasas_complete_cmd_dpc((unsigned long)instance);
1811 kill_adapter_flag = 0;
1813 fw_state = instance->instancet->read_fw_status_reg(
1814 instance->reg_set) & MFI_STATE_MASK;
1815 if ((fw_state == MFI_STATE_FAULT) &&
1816 (instance->disableOnlineCtrlReset == 0)) {
1818 kill_adapter_flag = 2;
1821 megasas_do_ocr(instance);
1822 kill_adapter_flag = 1;
1824 /* wait for 1 secs to let FW finish the pending cmds */
1830 if (atomic_read(&instance->fw_outstanding) &&
1831 !kill_adapter_flag) {
1832 if (instance->disableOnlineCtrlReset == 0) {
1834 megasas_do_ocr(instance);
1836 /* wait for 5 secs to let FW finish the pending cmds */
1837 for (i = 0; i < wait_time; i++) {
1839 atomic_read(&instance->fw_outstanding);
1847 if (atomic_read(&instance->fw_outstanding) ||
1848 (kill_adapter_flag == 2)) {
1849 printk(KERN_NOTICE "megaraid_sas: pending cmds after reset\n");
1851 * Send signal to FW to stop processing any pending cmds.
1852 * The controller will be taken offline by the OS now.
1854 if ((instance->pdev->device ==
1855 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1856 (instance->pdev->device ==
1857 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
1858 writel(MFI_STOP_ADP,
1859 &instance->reg_set->doorbell);
1861 writel(MFI_STOP_ADP,
1862 &instance->reg_set->inbound_doorbell);
1864 megasas_dump_pending_frames(instance);
1865 spin_lock_irqsave(&instance->hba_lock, flags);
1866 instance->adprecovery = MEGASAS_HW_CRITICAL_ERROR;
1867 spin_unlock_irqrestore(&instance->hba_lock, flags);
1871 printk(KERN_NOTICE "megaraid_sas: no pending cmds after reset\n");
1877 * megasas_generic_reset - Generic reset routine
1878 * @scmd: Mid-layer SCSI command
1880 * This routine implements a generic reset handler for device, bus and host
1881 * reset requests. Device, bus and host specific reset handlers can use this
1882 * function after they do their specific tasks.
1884 static int megasas_generic_reset(struct scsi_cmnd *scmd)
1887 struct megasas_instance *instance;
1889 instance = (struct megasas_instance *)scmd->device->host->hostdata;
1891 scmd_printk(KERN_NOTICE, scmd, "megasas: RESET cmd=%x retries=%x\n",
1892 scmd->cmnd[0], scmd->retries);
1894 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR) {
1895 printk(KERN_ERR "megasas: cannot recover from previous reset "
1900 ret_val = megasas_wait_for_outstanding(instance);
1901 if (ret_val == SUCCESS)
1902 printk(KERN_NOTICE "megasas: reset successful \n");
1904 printk(KERN_ERR "megasas: failed to do reset\n");
1910 * megasas_reset_timer - quiesce the adapter if required
1913 * Sets the FW busy flag and reduces the host->can_queue if the
1914 * cmd has not been completed within the timeout period.
1917 blk_eh_timer_return megasas_reset_timer(struct scsi_cmnd *scmd)
1919 struct megasas_instance *instance;
1920 unsigned long flags;
1922 if (time_after(jiffies, scmd->jiffies_at_alloc +
1923 (MEGASAS_DEFAULT_CMD_TIMEOUT * 2) * HZ)) {
1924 return BLK_EH_NOT_HANDLED;
1927 instance = (struct megasas_instance *)scmd->device->host->hostdata;
1928 if (!(instance->flag & MEGASAS_FW_BUSY)) {
1929 /* FW is busy, throttle IO */
1930 spin_lock_irqsave(instance->host->host_lock, flags);
1932 instance->host->can_queue = instance->throttlequeuedepth;
1933 instance->last_time = jiffies;
1934 instance->flag |= MEGASAS_FW_BUSY;
1936 spin_unlock_irqrestore(instance->host->host_lock, flags);
1938 return BLK_EH_RESET_TIMER;
1942 * megasas_reset_device - Device reset handler entry point
1944 static int megasas_reset_device(struct scsi_cmnd *scmd)
1949 * First wait for all commands to complete
1951 ret = megasas_generic_reset(scmd);
1957 * megasas_reset_bus_host - Bus & host reset handler entry point
1959 static int megasas_reset_bus_host(struct scsi_cmnd *scmd)
1962 struct megasas_instance *instance;
1963 instance = (struct megasas_instance *)scmd->device->host->hostdata;
1966 * First wait for all commands to complete
1968 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_FUSION) ||
1969 (instance->pdev->device == PCI_DEVICE_ID_LSI_INVADER))
1970 ret = megasas_reset_fusion(scmd->device->host);
1972 ret = megasas_generic_reset(scmd);
1978 * megasas_bios_param - Returns disk geometry for a disk
1979 * @sdev: device handle
1980 * @bdev: block device
1981 * @capacity: drive capacity
1982 * @geom: geometry parameters
1985 megasas_bios_param(struct scsi_device *sdev, struct block_device *bdev,
1986 sector_t capacity, int geom[])
1992 /* Default heads (64) & sectors (32) */
1996 tmp = heads * sectors;
1997 cylinders = capacity;
1999 sector_div(cylinders, tmp);
2002 * Handle extended translation size for logical drives > 1Gb
2005 if (capacity >= 0x200000) {
2008 tmp = heads*sectors;
2009 cylinders = capacity;
2010 sector_div(cylinders, tmp);
2015 geom[2] = cylinders;
2020 static void megasas_aen_polling(struct work_struct *work);
2023 * megasas_service_aen - Processes an event notification
2024 * @instance: Adapter soft state
2025 * @cmd: AEN command completed by the ISR
2027 * For AEN, driver sends a command down to FW that is held by the FW till an
2028 * event occurs. When an event of interest occurs, FW completes the command
2029 * that it was previously holding.
2031 * This routines sends SIGIO signal to processes that have registered with the
2035 megasas_service_aen(struct megasas_instance *instance, struct megasas_cmd *cmd)
2037 unsigned long flags;
2039 * Don't signal app if it is just an aborted previously registered aen
2041 if ((!cmd->abort_aen) && (instance->unload == 0)) {
2042 spin_lock_irqsave(&poll_aen_lock, flags);
2043 megasas_poll_wait_aen = 1;
2044 spin_unlock_irqrestore(&poll_aen_lock, flags);
2045 wake_up(&megasas_poll_wait);
2046 kill_fasync(&megasas_async_queue, SIGIO, POLL_IN);
2051 instance->aen_cmd = NULL;
2052 megasas_return_cmd(instance, cmd);
2054 if ((instance->unload == 0) &&
2055 ((instance->issuepend_done == 1))) {
2056 struct megasas_aen_event *ev;
2057 ev = kzalloc(sizeof(*ev), GFP_ATOMIC);
2059 printk(KERN_ERR "megasas_service_aen: out of memory\n");
2061 ev->instance = instance;
2063 INIT_DELAYED_WORK(&ev->hotplug_work,
2064 megasas_aen_polling);
2065 schedule_delayed_work(&ev->hotplug_work, 0);
2070 static int megasas_change_queue_depth(struct scsi_device *sdev,
2071 int queue_depth, int reason)
2073 if (reason != SCSI_QDEPTH_DEFAULT)
2076 if (queue_depth > sdev->host->can_queue)
2077 queue_depth = sdev->host->can_queue;
2078 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev),
2085 * Scsi host template for megaraid_sas driver
2087 static struct scsi_host_template megasas_template = {
2089 .module = THIS_MODULE,
2090 .name = "LSI SAS based MegaRAID driver",
2091 .proc_name = "megaraid_sas",
2092 .slave_configure = megasas_slave_configure,
2093 .slave_alloc = megasas_slave_alloc,
2094 .queuecommand = megasas_queue_command,
2095 .eh_device_reset_handler = megasas_reset_device,
2096 .eh_bus_reset_handler = megasas_reset_bus_host,
2097 .eh_host_reset_handler = megasas_reset_bus_host,
2098 .eh_timed_out = megasas_reset_timer,
2099 .bios_param = megasas_bios_param,
2100 .use_clustering = ENABLE_CLUSTERING,
2101 .change_queue_depth = megasas_change_queue_depth,
2106 * megasas_complete_int_cmd - Completes an internal command
2107 * @instance: Adapter soft state
2108 * @cmd: Command to be completed
2110 * The megasas_issue_blocked_cmd() function waits for a command to complete
2111 * after it issues a command. This function wakes up that waiting routine by
2112 * calling wake_up() on the wait queue.
2115 megasas_complete_int_cmd(struct megasas_instance *instance,
2116 struct megasas_cmd *cmd)
2118 cmd->cmd_status = cmd->frame->io.cmd_status;
2120 if (cmd->cmd_status == ENODATA) {
2121 cmd->cmd_status = 0;
2123 wake_up(&instance->int_cmd_wait_q);
2127 * megasas_complete_abort - Completes aborting a command
2128 * @instance: Adapter soft state
2129 * @cmd: Cmd that was issued to abort another cmd
2131 * The megasas_issue_blocked_abort_cmd() function waits on abort_cmd_wait_q
2132 * after it issues an abort on a previously issued command. This function
2133 * wakes up all functions waiting on the same wait queue.
2136 megasas_complete_abort(struct megasas_instance *instance,
2137 struct megasas_cmd *cmd)
2139 if (cmd->sync_cmd) {
2141 cmd->cmd_status = 0;
2142 wake_up(&instance->abort_cmd_wait_q);
2149 * megasas_complete_cmd - Completes a command
2150 * @instance: Adapter soft state
2151 * @cmd: Command to be completed
2152 * @alt_status: If non-zero, use this value as status to
2153 * SCSI mid-layer instead of the value returned
2154 * by the FW. This should be used if caller wants
2155 * an alternate status (as in the case of aborted
2159 megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd,
2163 struct megasas_header *hdr = &cmd->frame->hdr;
2164 unsigned long flags;
2165 struct fusion_context *fusion = instance->ctrl_context;
2167 /* flag for the retry reset */
2168 cmd->retry_for_fw_reset = 0;
2171 cmd->scmd->SCp.ptr = NULL;
2174 case MFI_CMD_INVALID:
2175 /* Some older 1068 controller FW may keep a pended
2176 MR_DCMD_CTRL_EVENT_GET_INFO left over from the main kernel
2177 when booting the kdump kernel. Ignore this command to
2178 prevent a kernel panic on shutdown of the kdump kernel. */
2179 printk(KERN_WARNING "megaraid_sas: MFI_CMD_INVALID command "
2181 printk(KERN_WARNING "megaraid_sas: If you have a controller "
2182 "other than PERC5, please upgrade your firmware.\n");
2184 case MFI_CMD_PD_SCSI_IO:
2185 case MFI_CMD_LD_SCSI_IO:
2188 * MFI_CMD_PD_SCSI_IO and MFI_CMD_LD_SCSI_IO could have been
2189 * issued either through an IO path or an IOCTL path. If it
2190 * was via IOCTL, we will send it to internal completion.
2192 if (cmd->sync_cmd) {
2194 megasas_complete_int_cmd(instance, cmd);
2198 case MFI_CMD_LD_READ:
2199 case MFI_CMD_LD_WRITE:
2202 cmd->scmd->result = alt_status << 16;
2208 atomic_dec(&instance->fw_outstanding);
2210 scsi_dma_unmap(cmd->scmd);
2211 cmd->scmd->scsi_done(cmd->scmd);
2212 megasas_return_cmd(instance, cmd);
2217 switch (hdr->cmd_status) {
2220 cmd->scmd->result = DID_OK << 16;
2223 case MFI_STAT_SCSI_IO_FAILED:
2224 case MFI_STAT_LD_INIT_IN_PROGRESS:
2226 (DID_ERROR << 16) | hdr->scsi_status;
2229 case MFI_STAT_SCSI_DONE_WITH_ERROR:
2231 cmd->scmd->result = (DID_OK << 16) | hdr->scsi_status;
2233 if (hdr->scsi_status == SAM_STAT_CHECK_CONDITION) {
2234 memset(cmd->scmd->sense_buffer, 0,
2235 SCSI_SENSE_BUFFERSIZE);
2236 memcpy(cmd->scmd->sense_buffer, cmd->sense,
2239 cmd->scmd->result |= DRIVER_SENSE << 24;
2244 case MFI_STAT_LD_OFFLINE:
2245 case MFI_STAT_DEVICE_NOT_FOUND:
2246 cmd->scmd->result = DID_BAD_TARGET << 16;
2250 printk(KERN_DEBUG "megasas: MFI FW status %#x\n",
2252 cmd->scmd->result = DID_ERROR << 16;
2256 atomic_dec(&instance->fw_outstanding);
2258 scsi_dma_unmap(cmd->scmd);
2259 cmd->scmd->scsi_done(cmd->scmd);
2260 megasas_return_cmd(instance, cmd);
2267 /* Check for LD map update */
2268 if ((cmd->frame->dcmd.opcode == MR_DCMD_LD_MAP_GET_INFO) &&
2269 (cmd->frame->dcmd.mbox.b[1] == 1)) {
2270 spin_lock_irqsave(instance->host->host_lock, flags);
2271 if (cmd->frame->hdr.cmd_status != 0) {
2272 if (cmd->frame->hdr.cmd_status !=
2274 printk(KERN_WARNING "megasas: map sync"
2275 "failed, status = 0x%x.\n",
2276 cmd->frame->hdr.cmd_status);
2278 megasas_return_cmd(instance, cmd);
2279 spin_unlock_irqrestore(
2280 instance->host->host_lock,
2286 megasas_return_cmd(instance, cmd);
2287 if (MR_ValidateMapInfo(
2288 fusion->ld_map[(instance->map_id & 1)],
2289 fusion->load_balance_info))
2290 fusion->fast_path_io = 1;
2292 fusion->fast_path_io = 0;
2293 megasas_sync_map_info(instance);
2294 spin_unlock_irqrestore(instance->host->host_lock,
2298 if (cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_GET_INFO ||
2299 cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_GET) {
2300 spin_lock_irqsave(&poll_aen_lock, flags);
2301 megasas_poll_wait_aen = 0;
2302 spin_unlock_irqrestore(&poll_aen_lock, flags);
2306 * See if got an event notification
2308 if (cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_WAIT)
2309 megasas_service_aen(instance, cmd);
2311 megasas_complete_int_cmd(instance, cmd);
2317 * Cmd issued to abort another cmd returned
2319 megasas_complete_abort(instance, cmd);
2323 printk("megasas: Unknown command completed! [0x%X]\n",
2330 * megasas_issue_pending_cmds_again - issue all pending cmds
2331 * in FW again because of the fw reset
2332 * @instance: Adapter soft state
2335 megasas_issue_pending_cmds_again(struct megasas_instance *instance)
2337 struct megasas_cmd *cmd;
2338 struct list_head clist_local;
2339 union megasas_evt_class_locale class_locale;
2340 unsigned long flags;
2343 INIT_LIST_HEAD(&clist_local);
2344 spin_lock_irqsave(&instance->hba_lock, flags);
2345 list_splice_init(&instance->internal_reset_pending_q, &clist_local);
2346 spin_unlock_irqrestore(&instance->hba_lock, flags);
2348 while (!list_empty(&clist_local)) {
2349 cmd = list_entry((&clist_local)->next,
2350 struct megasas_cmd, list);
2351 list_del_init(&cmd->list);
2353 if (cmd->sync_cmd || cmd->scmd) {
2354 printk(KERN_NOTICE "megaraid_sas: command %p, %p:%d"
2355 "detected to be pending while HBA reset.\n",
2356 cmd, cmd->scmd, cmd->sync_cmd);
2358 cmd->retry_for_fw_reset++;
2360 if (cmd->retry_for_fw_reset == 3) {
2361 printk(KERN_NOTICE "megaraid_sas: cmd %p, %p:%d"
2362 "was tried multiple times during reset."
2363 "Shutting down the HBA\n",
2364 cmd, cmd->scmd, cmd->sync_cmd);
2365 megaraid_sas_kill_hba(instance);
2367 instance->adprecovery =
2368 MEGASAS_HW_CRITICAL_ERROR;
2373 if (cmd->sync_cmd == 1) {
2375 printk(KERN_NOTICE "megaraid_sas: unexpected"
2376 "cmd attached to internal command!\n");
2378 printk(KERN_NOTICE "megasas: %p synchronous cmd"
2379 "on the internal reset queue,"
2380 "issue it again.\n", cmd);
2381 cmd->cmd_status = ENODATA;
2382 instance->instancet->fire_cmd(instance,
2383 cmd->frame_phys_addr ,
2384 0, instance->reg_set);
2385 } else if (cmd->scmd) {
2386 printk(KERN_NOTICE "megasas: %p scsi cmd [%02x]"
2387 "detected on the internal queue, issue again.\n",
2388 cmd, cmd->scmd->cmnd[0]);
2390 atomic_inc(&instance->fw_outstanding);
2391 instance->instancet->fire_cmd(instance,
2392 cmd->frame_phys_addr,
2393 cmd->frame_count-1, instance->reg_set);
2395 printk(KERN_NOTICE "megasas: %p unexpected cmd on the"
2396 "internal reset defer list while re-issue!!\n",
2401 if (instance->aen_cmd) {
2402 printk(KERN_NOTICE "megaraid_sas: aen_cmd in def process\n");
2403 megasas_return_cmd(instance, instance->aen_cmd);
2405 instance->aen_cmd = NULL;
2409 * Initiate AEN (Asynchronous Event Notification)
2411 seq_num = instance->last_seq_num;
2412 class_locale.members.reserved = 0;
2413 class_locale.members.locale = MR_EVT_LOCALE_ALL;
2414 class_locale.members.class = MR_EVT_CLASS_DEBUG;
2416 megasas_register_aen(instance, seq_num, class_locale.word);
2420 * Move the internal reset pending commands to a deferred queue.
2422 * We move the commands pending at internal reset time to a
2423 * pending queue. This queue would be flushed after successful
2424 * completion of the internal reset sequence. if the internal reset
2425 * did not complete in time, the kernel reset handler would flush
2429 megasas_internal_reset_defer_cmds(struct megasas_instance *instance)
2431 struct megasas_cmd *cmd;
2433 u32 max_cmd = instance->max_fw_cmds;
2435 unsigned long flags;
2438 spin_lock_irqsave(&instance->cmd_pool_lock, flags);
2439 for (i = 0; i < max_cmd; i++) {
2440 cmd = instance->cmd_list[i];
2441 if (cmd->sync_cmd == 1 || cmd->scmd) {
2442 printk(KERN_NOTICE "megasas: moving cmd[%d]:%p:%d:%p"
2443 "on the defer queue as internal\n",
2444 defer_index, cmd, cmd->sync_cmd, cmd->scmd);
2446 if (!list_empty(&cmd->list)) {
2447 printk(KERN_NOTICE "megaraid_sas: ERROR while"
2448 " moving this cmd:%p, %d %p, it was"
2449 "discovered on some list?\n",
2450 cmd, cmd->sync_cmd, cmd->scmd);
2452 list_del_init(&cmd->list);
2455 list_add_tail(&cmd->list,
2456 &instance->internal_reset_pending_q);
2459 spin_unlock_irqrestore(&instance->cmd_pool_lock, flags);
2464 process_fw_state_change_wq(struct work_struct *work)
2466 struct megasas_instance *instance =
2467 container_of(work, struct megasas_instance, work_init);
2469 unsigned long flags;
2471 if (instance->adprecovery != MEGASAS_ADPRESET_SM_INFAULT) {
2472 printk(KERN_NOTICE "megaraid_sas: error, recovery st %x \n",
2473 instance->adprecovery);
2477 if (instance->adprecovery == MEGASAS_ADPRESET_SM_INFAULT) {
2478 printk(KERN_NOTICE "megaraid_sas: FW detected to be in fault"
2479 "state, restarting it...\n");
2481 instance->instancet->disable_intr(instance->reg_set);
2482 atomic_set(&instance->fw_outstanding, 0);
2484 atomic_set(&instance->fw_reset_no_pci_access, 1);
2485 instance->instancet->adp_reset(instance, instance->reg_set);
2486 atomic_set(&instance->fw_reset_no_pci_access, 0 );
2488 printk(KERN_NOTICE "megaraid_sas: FW restarted successfully,"
2489 "initiating next stage...\n");
2491 printk(KERN_NOTICE "megaraid_sas: HBA recovery state machine,"
2492 "state 2 starting...\n");
2494 /*waitting for about 20 second before start the second init*/
2495 for (wait = 0; wait < 30; wait++) {
2499 if (megasas_transition_to_ready(instance, 1)) {
2500 printk(KERN_NOTICE "megaraid_sas:adapter not ready\n");
2502 megaraid_sas_kill_hba(instance);
2503 instance->adprecovery = MEGASAS_HW_CRITICAL_ERROR;
2507 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1064R) ||
2508 (instance->pdev->device == PCI_DEVICE_ID_DELL_PERC5) ||
2509 (instance->pdev->device == PCI_DEVICE_ID_LSI_VERDE_ZCR)
2511 *instance->consumer = *instance->producer;
2513 *instance->consumer = 0;
2514 *instance->producer = 0;
2517 megasas_issue_init_mfi(instance);
2519 spin_lock_irqsave(&instance->hba_lock, flags);
2520 instance->adprecovery = MEGASAS_HBA_OPERATIONAL;
2521 spin_unlock_irqrestore(&instance->hba_lock, flags);
2522 instance->instancet->enable_intr(instance->reg_set);
2524 megasas_issue_pending_cmds_again(instance);
2525 instance->issuepend_done = 1;
2531 * megasas_deplete_reply_queue - Processes all completed commands
2532 * @instance: Adapter soft state
2533 * @alt_status: Alternate status to be returned to
2534 * SCSI mid-layer instead of the status
2535 * returned by the FW
2536 * Note: this must be called with hba lock held
2539 megasas_deplete_reply_queue(struct megasas_instance *instance,
2545 if ((mfiStatus = instance->instancet->check_reset(instance,
2546 instance->reg_set)) == 1) {
2550 if ((mfiStatus = instance->instancet->clear_intr(
2553 /* Hardware may not set outbound_intr_status in MSI-X mode */
2554 if (!instance->msix_vectors)
2558 instance->mfiStatus = mfiStatus;
2560 if ((mfiStatus & MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE)) {
2561 fw_state = instance->instancet->read_fw_status_reg(
2562 instance->reg_set) & MFI_STATE_MASK;
2564 if (fw_state != MFI_STATE_FAULT) {
2565 printk(KERN_NOTICE "megaraid_sas: fw state:%x\n",
2569 if ((fw_state == MFI_STATE_FAULT) &&
2570 (instance->disableOnlineCtrlReset == 0)) {
2571 printk(KERN_NOTICE "megaraid_sas: wait adp restart\n");
2573 if ((instance->pdev->device ==
2574 PCI_DEVICE_ID_LSI_SAS1064R) ||
2575 (instance->pdev->device ==
2576 PCI_DEVICE_ID_DELL_PERC5) ||
2577 (instance->pdev->device ==
2578 PCI_DEVICE_ID_LSI_VERDE_ZCR)) {
2580 *instance->consumer =
2581 MEGASAS_ADPRESET_INPROG_SIGN;
2585 instance->instancet->disable_intr(instance->reg_set);
2586 instance->adprecovery = MEGASAS_ADPRESET_SM_INFAULT;
2587 instance->issuepend_done = 0;
2589 atomic_set(&instance->fw_outstanding, 0);
2590 megasas_internal_reset_defer_cmds(instance);
2592 printk(KERN_NOTICE "megasas: fwState=%x, stage:%d\n",
2593 fw_state, instance->adprecovery);
2595 schedule_work(&instance->work_init);
2599 printk(KERN_NOTICE "megasas: fwstate:%x, dis_OCR=%x\n",
2600 fw_state, instance->disableOnlineCtrlReset);
2604 tasklet_schedule(&instance->isr_tasklet);
2608 * megasas_isr - isr entry point
2610 static irqreturn_t megasas_isr(int irq, void *devp)
2612 struct megasas_irq_context *irq_context = devp;
2613 struct megasas_instance *instance = irq_context->instance;
2614 unsigned long flags;
2617 if (atomic_read(&instance->fw_reset_no_pci_access))
2620 spin_lock_irqsave(&instance->hba_lock, flags);
2621 rc = megasas_deplete_reply_queue(instance, DID_OK);
2622 spin_unlock_irqrestore(&instance->hba_lock, flags);
2628 * megasas_transition_to_ready - Move the FW to READY state
2629 * @instance: Adapter soft state
2631 * During the initialization, FW passes can potentially be in any one of
2632 * several possible states. If the FW in operational, waiting-for-handshake
2633 * states, driver must take steps to bring it to ready state. Otherwise, it
2634 * has to wait for the ready state.
2637 megasas_transition_to_ready(struct megasas_instance *instance, int ocr)
2643 u32 abs_state, curr_abs_state;
2645 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) & MFI_STATE_MASK;
2647 if (fw_state != MFI_STATE_READY)
2648 printk(KERN_INFO "megasas: Waiting for FW to come to ready"
2651 while (fw_state != MFI_STATE_READY) {
2654 instance->instancet->read_fw_status_reg(instance->reg_set);
2658 case MFI_STATE_FAULT:
2659 printk(KERN_DEBUG "megasas: FW in FAULT state!!\n");
2661 max_wait = MEGASAS_RESET_WAIT_TIME;
2662 cur_state = MFI_STATE_FAULT;
2667 case MFI_STATE_WAIT_HANDSHAKE:
2669 * Set the CLR bit in inbound doorbell
2671 if ((instance->pdev->device ==
2672 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
2673 (instance->pdev->device ==
2674 PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
2675 (instance->pdev->device ==
2676 PCI_DEVICE_ID_LSI_FUSION) ||
2677 (instance->pdev->device ==
2678 PCI_DEVICE_ID_LSI_INVADER)) {
2680 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
2681 &instance->reg_set->doorbell);
2684 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
2685 &instance->reg_set->inbound_doorbell);
2688 max_wait = MEGASAS_RESET_WAIT_TIME;
2689 cur_state = MFI_STATE_WAIT_HANDSHAKE;
2692 case MFI_STATE_BOOT_MESSAGE_PENDING:
2693 if ((instance->pdev->device ==
2694 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
2695 (instance->pdev->device ==
2696 PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
2697 (instance->pdev->device ==
2698 PCI_DEVICE_ID_LSI_FUSION) ||
2699 (instance->pdev->device ==
2700 PCI_DEVICE_ID_LSI_INVADER)) {
2701 writel(MFI_INIT_HOTPLUG,
2702 &instance->reg_set->doorbell);
2704 writel(MFI_INIT_HOTPLUG,
2705 &instance->reg_set->inbound_doorbell);
2707 max_wait = MEGASAS_RESET_WAIT_TIME;
2708 cur_state = MFI_STATE_BOOT_MESSAGE_PENDING;
2711 case MFI_STATE_OPERATIONAL:
2713 * Bring it to READY state; assuming max wait 10 secs
2715 instance->instancet->disable_intr(instance->reg_set);
2716 if ((instance->pdev->device ==
2717 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
2718 (instance->pdev->device ==
2719 PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
2720 (instance->pdev->device
2721 == PCI_DEVICE_ID_LSI_FUSION) ||
2722 (instance->pdev->device
2723 == PCI_DEVICE_ID_LSI_INVADER)) {
2724 writel(MFI_RESET_FLAGS,
2725 &instance->reg_set->doorbell);
2726 if ((instance->pdev->device ==
2727 PCI_DEVICE_ID_LSI_FUSION) ||
2728 (instance->pdev->device ==
2729 PCI_DEVICE_ID_LSI_INVADER)) {
2730 for (i = 0; i < (10 * 1000); i += 20) {
2741 writel(MFI_RESET_FLAGS,
2742 &instance->reg_set->inbound_doorbell);
2744 max_wait = MEGASAS_RESET_WAIT_TIME;
2745 cur_state = MFI_STATE_OPERATIONAL;
2748 case MFI_STATE_UNDEFINED:
2750 * This state should not last for more than 2 seconds
2752 max_wait = MEGASAS_RESET_WAIT_TIME;
2753 cur_state = MFI_STATE_UNDEFINED;
2756 case MFI_STATE_BB_INIT:
2757 max_wait = MEGASAS_RESET_WAIT_TIME;
2758 cur_state = MFI_STATE_BB_INIT;
2761 case MFI_STATE_FW_INIT:
2762 max_wait = MEGASAS_RESET_WAIT_TIME;
2763 cur_state = MFI_STATE_FW_INIT;
2766 case MFI_STATE_FW_INIT_2:
2767 max_wait = MEGASAS_RESET_WAIT_TIME;
2768 cur_state = MFI_STATE_FW_INIT_2;
2771 case MFI_STATE_DEVICE_SCAN:
2772 max_wait = MEGASAS_RESET_WAIT_TIME;
2773 cur_state = MFI_STATE_DEVICE_SCAN;
2776 case MFI_STATE_FLUSH_CACHE:
2777 max_wait = MEGASAS_RESET_WAIT_TIME;
2778 cur_state = MFI_STATE_FLUSH_CACHE;
2782 printk(KERN_DEBUG "megasas: Unknown state 0x%x\n",
2788 * The cur_state should not last for more than max_wait secs
2790 for (i = 0; i < (max_wait * 1000); i++) {
2791 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) &
2794 instance->instancet->read_fw_status_reg(instance->reg_set);
2796 if (abs_state == curr_abs_state) {
2803 * Return error if fw_state hasn't changed after max_wait
2805 if (curr_abs_state == abs_state) {
2806 printk(KERN_DEBUG "FW state [%d] hasn't changed "
2807 "in %d secs\n", fw_state, max_wait);
2811 printk(KERN_INFO "megasas: FW now in Ready state\n");
2817 * megasas_teardown_frame_pool - Destroy the cmd frame DMA pool
2818 * @instance: Adapter soft state
2820 static void megasas_teardown_frame_pool(struct megasas_instance *instance)
2823 u32 max_cmd = instance->max_mfi_cmds;
2824 struct megasas_cmd *cmd;
2826 if (!instance->frame_dma_pool)
2830 * Return all frames to pool
2832 for (i = 0; i < max_cmd; i++) {
2834 cmd = instance->cmd_list[i];
2837 pci_pool_free(instance->frame_dma_pool, cmd->frame,
2838 cmd->frame_phys_addr);
2841 pci_pool_free(instance->sense_dma_pool, cmd->sense,
2842 cmd->sense_phys_addr);
2846 * Now destroy the pool itself
2848 pci_pool_destroy(instance->frame_dma_pool);
2849 pci_pool_destroy(instance->sense_dma_pool);
2851 instance->frame_dma_pool = NULL;
2852 instance->sense_dma_pool = NULL;
2856 * megasas_create_frame_pool - Creates DMA pool for cmd frames
2857 * @instance: Adapter soft state
2859 * Each command packet has an embedded DMA memory buffer that is used for
2860 * filling MFI frame and the SG list that immediately follows the frame. This
2861 * function creates those DMA memory buffers for each command packet by using
2862 * PCI pool facility.
2864 static int megasas_create_frame_pool(struct megasas_instance *instance)
2872 struct megasas_cmd *cmd;
2874 max_cmd = instance->max_mfi_cmds;
2877 * Size of our frame is 64 bytes for MFI frame, followed by max SG
2878 * elements and finally SCSI_SENSE_BUFFERSIZE bytes for sense buffer
2880 sge_sz = (IS_DMA64) ? sizeof(struct megasas_sge64) :
2881 sizeof(struct megasas_sge32);
2883 if (instance->flag_ieee) {
2884 sge_sz = sizeof(struct megasas_sge_skinny);
2888 * Calculated the number of 64byte frames required for SGL
2890 sgl_sz = sge_sz * instance->max_num_sge;
2891 frame_count = (sgl_sz + MEGAMFI_FRAME_SIZE - 1) / MEGAMFI_FRAME_SIZE;
2895 * We need one extra frame for the MFI command
2899 total_sz = MEGAMFI_FRAME_SIZE * frame_count;
2901 * Use DMA pool facility provided by PCI layer
2903 instance->frame_dma_pool = pci_pool_create("megasas frame pool",
2904 instance->pdev, total_sz, 64,
2907 if (!instance->frame_dma_pool) {
2908 printk(KERN_DEBUG "megasas: failed to setup frame pool\n");
2912 instance->sense_dma_pool = pci_pool_create("megasas sense pool",
2913 instance->pdev, 128, 4, 0);
2915 if (!instance->sense_dma_pool) {
2916 printk(KERN_DEBUG "megasas: failed to setup sense pool\n");
2918 pci_pool_destroy(instance->frame_dma_pool);
2919 instance->frame_dma_pool = NULL;
2925 * Allocate and attach a frame to each of the commands in cmd_list.
2926 * By making cmd->index as the context instead of the &cmd, we can
2927 * always use 32bit context regardless of the architecture
2929 for (i = 0; i < max_cmd; i++) {
2931 cmd = instance->cmd_list[i];
2933 cmd->frame = pci_pool_alloc(instance->frame_dma_pool,
2934 GFP_KERNEL, &cmd->frame_phys_addr);
2936 cmd->sense = pci_pool_alloc(instance->sense_dma_pool,
2937 GFP_KERNEL, &cmd->sense_phys_addr);
2940 * megasas_teardown_frame_pool() takes care of freeing
2941 * whatever has been allocated
2943 if (!cmd->frame || !cmd->sense) {
2944 printk(KERN_DEBUG "megasas: pci_pool_alloc failed \n");
2945 megasas_teardown_frame_pool(instance);
2949 memset(cmd->frame, 0, total_sz);
2950 cmd->frame->io.context = cmd->index;
2951 cmd->frame->io.pad_0 = 0;
2952 if ((instance->pdev->device != PCI_DEVICE_ID_LSI_FUSION) &&
2953 (instance->pdev->device != PCI_DEVICE_ID_LSI_INVADER) &&
2955 cmd->frame->hdr.cmd = MFI_CMD_INVALID;
2962 * megasas_free_cmds - Free all the cmds in the free cmd pool
2963 * @instance: Adapter soft state
2965 void megasas_free_cmds(struct megasas_instance *instance)
2968 /* First free the MFI frame pool */
2969 megasas_teardown_frame_pool(instance);
2971 /* Free all the commands in the cmd_list */
2972 for (i = 0; i < instance->max_mfi_cmds; i++)
2974 kfree(instance->cmd_list[i]);
2976 /* Free the cmd_list buffer itself */
2977 kfree(instance->cmd_list);
2978 instance->cmd_list = NULL;
2980 INIT_LIST_HEAD(&instance->cmd_pool);
2984 * megasas_alloc_cmds - Allocates the command packets
2985 * @instance: Adapter soft state
2987 * Each command that is issued to the FW, whether IO commands from the OS or
2988 * internal commands like IOCTLs, are wrapped in local data structure called
2989 * megasas_cmd. The frame embedded in this megasas_cmd is actually issued to
2992 * Each frame has a 32-bit field called context (tag). This context is used
2993 * to get back the megasas_cmd from the frame when a frame gets completed in
2994 * the ISR. Typically the address of the megasas_cmd itself would be used as
2995 * the context. But we wanted to keep the differences between 32 and 64 bit
2996 * systems to the mininum. We always use 32 bit integers for the context. In
2997 * this driver, the 32 bit values are the indices into an array cmd_list.
2998 * This array is used only to look up the megasas_cmd given the context. The
2999 * free commands themselves are maintained in a linked list called cmd_pool.
3001 int megasas_alloc_cmds(struct megasas_instance *instance)
3006 struct megasas_cmd *cmd;
3008 max_cmd = instance->max_mfi_cmds;
3011 * instance->cmd_list is an array of struct megasas_cmd pointers.
3012 * Allocate the dynamic array first and then allocate individual
3015 instance->cmd_list = kcalloc(max_cmd, sizeof(struct megasas_cmd*), GFP_KERNEL);
3017 if (!instance->cmd_list) {
3018 printk(KERN_DEBUG "megasas: out of memory\n");
3022 memset(instance->cmd_list, 0, sizeof(struct megasas_cmd *) *max_cmd);
3024 for (i = 0; i < max_cmd; i++) {
3025 instance->cmd_list[i] = kmalloc(sizeof(struct megasas_cmd),
3028 if (!instance->cmd_list[i]) {
3030 for (j = 0; j < i; j++)
3031 kfree(instance->cmd_list[j]);
3033 kfree(instance->cmd_list);
3034 instance->cmd_list = NULL;
3041 * Add all the commands to command pool (instance->cmd_pool)
3043 for (i = 0; i < max_cmd; i++) {
3044 cmd = instance->cmd_list[i];
3045 memset(cmd, 0, sizeof(struct megasas_cmd));
3048 cmd->instance = instance;
3050 list_add_tail(&cmd->list, &instance->cmd_pool);
3054 * Create a frame pool and assign one frame to each cmd
3056 if (megasas_create_frame_pool(instance)) {
3057 printk(KERN_DEBUG "megasas: Error creating frame DMA pool\n");
3058 megasas_free_cmds(instance);
3065 * megasas_get_pd_list_info - Returns FW's pd_list structure
3066 * @instance: Adapter soft state
3067 * @pd_list: pd_list structure
3069 * Issues an internal command (DCMD) to get the FW's controller PD
3070 * list structure. This information is mainly used to find out SYSTEM
3071 * supported by the FW.
3074 megasas_get_pd_list(struct megasas_instance *instance)
3076 int ret = 0, pd_index = 0;
3077 struct megasas_cmd *cmd;
3078 struct megasas_dcmd_frame *dcmd;
3079 struct MR_PD_LIST *ci;
3080 struct MR_PD_ADDRESS *pd_addr;
3081 dma_addr_t ci_h = 0;
3083 cmd = megasas_get_cmd(instance);
3086 printk(KERN_DEBUG "megasas (get_pd_list): Failed to get cmd\n");
3090 dcmd = &cmd->frame->dcmd;
3092 ci = pci_alloc_consistent(instance->pdev,
3093 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST), &ci_h);
3096 printk(KERN_DEBUG "Failed to alloc mem for pd_list\n");
3097 megasas_return_cmd(instance, cmd);
3101 memset(ci, 0, sizeof(*ci));
3102 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3104 dcmd->mbox.b[0] = MR_PD_QUERY_TYPE_EXPOSED_TO_HOST;
3105 dcmd->mbox.b[1] = 0;
3106 dcmd->cmd = MFI_CMD_DCMD;
3107 dcmd->cmd_status = 0xFF;
3108 dcmd->sge_count = 1;
3109 dcmd->flags = MFI_FRAME_DIR_READ;
3112 dcmd->data_xfer_len = MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST);
3113 dcmd->opcode = MR_DCMD_PD_LIST_QUERY;
3114 dcmd->sgl.sge32[0].phys_addr = ci_h;
3115 dcmd->sgl.sge32[0].length = MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST);
3117 if (!megasas_issue_polled(instance, cmd)) {
3124 * the following function will get the instance PD LIST.
3131 (MEGASAS_MAX_PD_CHANNELS * MEGASAS_MAX_DEV_PER_CHANNEL))) {
3133 memset(instance->pd_list, 0,
3134 MEGASAS_MAX_PD * sizeof(struct megasas_pd_list));
3136 for (pd_index = 0; pd_index < ci->count; pd_index++) {
3138 instance->pd_list[pd_addr->deviceId].tid =
3140 instance->pd_list[pd_addr->deviceId].driveType =
3141 pd_addr->scsiDevType;
3142 instance->pd_list[pd_addr->deviceId].driveState =
3148 pci_free_consistent(instance->pdev,
3149 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST),
3151 megasas_return_cmd(instance, cmd);
3157 * megasas_get_ld_list_info - Returns FW's ld_list structure
3158 * @instance: Adapter soft state
3159 * @ld_list: ld_list structure
3161 * Issues an internal command (DCMD) to get the FW's controller PD
3162 * list structure. This information is mainly used to find out SYSTEM
3163 * supported by the FW.
3166 megasas_get_ld_list(struct megasas_instance *instance)
3168 int ret = 0, ld_index = 0, ids = 0;
3169 struct megasas_cmd *cmd;
3170 struct megasas_dcmd_frame *dcmd;
3171 struct MR_LD_LIST *ci;
3172 dma_addr_t ci_h = 0;
3174 cmd = megasas_get_cmd(instance);
3177 printk(KERN_DEBUG "megasas_get_ld_list: Failed to get cmd\n");
3181 dcmd = &cmd->frame->dcmd;
3183 ci = pci_alloc_consistent(instance->pdev,
3184 sizeof(struct MR_LD_LIST),
3188 printk(KERN_DEBUG "Failed to alloc mem in get_ld_list\n");
3189 megasas_return_cmd(instance, cmd);
3193 memset(ci, 0, sizeof(*ci));
3194 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3196 dcmd->cmd = MFI_CMD_DCMD;
3197 dcmd->cmd_status = 0xFF;
3198 dcmd->sge_count = 1;
3199 dcmd->flags = MFI_FRAME_DIR_READ;
3201 dcmd->data_xfer_len = sizeof(struct MR_LD_LIST);
3202 dcmd->opcode = MR_DCMD_LD_GET_LIST;
3203 dcmd->sgl.sge32[0].phys_addr = ci_h;
3204 dcmd->sgl.sge32[0].length = sizeof(struct MR_LD_LIST);
3207 if (!megasas_issue_polled(instance, cmd)) {
3213 /* the following function will get the instance PD LIST */
3215 if ((ret == 0) && (ci->ldCount <= MAX_LOGICAL_DRIVES)) {
3216 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
3218 for (ld_index = 0; ld_index < ci->ldCount; ld_index++) {
3219 if (ci->ldList[ld_index].state != 0) {
3220 ids = ci->ldList[ld_index].ref.targetId;
3221 instance->ld_ids[ids] =
3222 ci->ldList[ld_index].ref.targetId;
3227 pci_free_consistent(instance->pdev,
3228 sizeof(struct MR_LD_LIST),
3232 megasas_return_cmd(instance, cmd);
3237 * megasas_get_controller_info - Returns FW's controller structure
3238 * @instance: Adapter soft state
3239 * @ctrl_info: Controller information structure
3241 * Issues an internal command (DCMD) to get the FW's controller structure.
3242 * This information is mainly used to find out the maximum IO transfer per
3243 * command supported by the FW.
3246 megasas_get_ctrl_info(struct megasas_instance *instance,
3247 struct megasas_ctrl_info *ctrl_info)
3250 struct megasas_cmd *cmd;
3251 struct megasas_dcmd_frame *dcmd;
3252 struct megasas_ctrl_info *ci;
3253 dma_addr_t ci_h = 0;
3255 cmd = megasas_get_cmd(instance);
3258 printk(KERN_DEBUG "megasas: Failed to get a free cmd\n");
3262 dcmd = &cmd->frame->dcmd;
3264 ci = pci_alloc_consistent(instance->pdev,
3265 sizeof(struct megasas_ctrl_info), &ci_h);
3268 printk(KERN_DEBUG "Failed to alloc mem for ctrl info\n");
3269 megasas_return_cmd(instance, cmd);
3273 memset(ci, 0, sizeof(*ci));
3274 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3276 dcmd->cmd = MFI_CMD_DCMD;
3277 dcmd->cmd_status = 0xFF;
3278 dcmd->sge_count = 1;
3279 dcmd->flags = MFI_FRAME_DIR_READ;
3282 dcmd->data_xfer_len = sizeof(struct megasas_ctrl_info);
3283 dcmd->opcode = MR_DCMD_CTRL_GET_INFO;
3284 dcmd->sgl.sge32[0].phys_addr = ci_h;
3285 dcmd->sgl.sge32[0].length = sizeof(struct megasas_ctrl_info);
3287 if (!megasas_issue_polled(instance, cmd)) {
3289 memcpy(ctrl_info, ci, sizeof(struct megasas_ctrl_info));
3294 pci_free_consistent(instance->pdev, sizeof(struct megasas_ctrl_info),
3297 megasas_return_cmd(instance, cmd);
3302 * megasas_issue_init_mfi - Initializes the FW
3303 * @instance: Adapter soft state
3305 * Issues the INIT MFI cmd
3308 megasas_issue_init_mfi(struct megasas_instance *instance)
3312 struct megasas_cmd *cmd;
3314 struct megasas_init_frame *init_frame;
3315 struct megasas_init_queue_info *initq_info;
3316 dma_addr_t init_frame_h;
3317 dma_addr_t initq_info_h;
3320 * Prepare a init frame. Note the init frame points to queue info
3321 * structure. Each frame has SGL allocated after first 64 bytes. For
3322 * this frame - since we don't need any SGL - we use SGL's space as
3323 * queue info structure
3325 * We will not get a NULL command below. We just created the pool.
3327 cmd = megasas_get_cmd(instance);
3329 init_frame = (struct megasas_init_frame *)cmd->frame;
3330 initq_info = (struct megasas_init_queue_info *)
3331 ((unsigned long)init_frame + 64);
3333 init_frame_h = cmd->frame_phys_addr;
3334 initq_info_h = init_frame_h + 64;
3336 context = init_frame->context;
3337 memset(init_frame, 0, MEGAMFI_FRAME_SIZE);
3338 memset(initq_info, 0, sizeof(struct megasas_init_queue_info));
3339 init_frame->context = context;
3341 initq_info->reply_queue_entries = instance->max_fw_cmds + 1;
3342 initq_info->reply_queue_start_phys_addr_lo = instance->reply_queue_h;
3344 initq_info->producer_index_phys_addr_lo = instance->producer_h;
3345 initq_info->consumer_index_phys_addr_lo = instance->consumer_h;
3347 init_frame->cmd = MFI_CMD_INIT;
3348 init_frame->cmd_status = 0xFF;
3349 init_frame->queue_info_new_phys_addr_lo = initq_info_h;
3351 init_frame->data_xfer_len = sizeof(struct megasas_init_queue_info);
3354 * disable the intr before firing the init frame to FW
3356 instance->instancet->disable_intr(instance->reg_set);
3359 * Issue the init frame in polled mode
3362 if (megasas_issue_polled(instance, cmd)) {
3363 printk(KERN_ERR "megasas: Failed to init firmware\n");
3364 megasas_return_cmd(instance, cmd);
3368 megasas_return_cmd(instance, cmd);
3377 megasas_init_adapter_mfi(struct megasas_instance *instance)
3379 struct megasas_register_set __iomem *reg_set;
3383 reg_set = instance->reg_set;
3386 * Get various operational parameters from status register
3388 instance->max_fw_cmds = instance->instancet->read_fw_status_reg(reg_set) & 0x00FFFF;
3390 * Reduce the max supported cmds by 1. This is to ensure that the
3391 * reply_q_sz (1 more than the max cmd that driver may send)
3392 * does not exceed max cmds that the FW can support
3394 instance->max_fw_cmds = instance->max_fw_cmds-1;
3395 instance->max_mfi_cmds = instance->max_fw_cmds;
3396 instance->max_num_sge = (instance->instancet->read_fw_status_reg(reg_set) & 0xFF0000) >>
3399 * Create a pool of commands
3401 if (megasas_alloc_cmds(instance))
3402 goto fail_alloc_cmds;
3405 * Allocate memory for reply queue. Length of reply queue should
3406 * be _one_ more than the maximum commands handled by the firmware.
3408 * Note: When FW completes commands, it places corresponding contex
3409 * values in this circular reply queue. This circular queue is a fairly
3410 * typical producer-consumer queue. FW is the producer (of completed
3411 * commands) and the driver is the consumer.
3413 context_sz = sizeof(u32);
3414 reply_q_sz = context_sz * (instance->max_fw_cmds + 1);
3416 instance->reply_queue = pci_alloc_consistent(instance->pdev,
3418 &instance->reply_queue_h);
3420 if (!instance->reply_queue) {
3421 printk(KERN_DEBUG "megasas: Out of DMA mem for reply queue\n");
3422 goto fail_reply_queue;
3425 if (megasas_issue_init_mfi(instance))
3428 instance->fw_support_ieee = 0;
3429 instance->fw_support_ieee =
3430 (instance->instancet->read_fw_status_reg(reg_set) &
3433 printk(KERN_NOTICE "megasas_init_mfi: fw_support_ieee=%d",
3434 instance->fw_support_ieee);
3436 if (instance->fw_support_ieee)
3437 instance->flag_ieee = 1;
3443 pci_free_consistent(instance->pdev, reply_q_sz,
3444 instance->reply_queue, instance->reply_queue_h);
3446 megasas_free_cmds(instance);
3453 * megasas_init_fw - Initializes the FW
3454 * @instance: Adapter soft state
3456 * This is the main function for initializing firmware
3459 static int megasas_init_fw(struct megasas_instance *instance)
3463 u32 tmp_sectors, msix_enable;
3464 struct megasas_register_set __iomem *reg_set;
3465 struct megasas_ctrl_info *ctrl_info;
3466 unsigned long bar_list;
3469 /* Find first memory bar */
3470 bar_list = pci_select_bars(instance->pdev, IORESOURCE_MEM);
3471 instance->bar = find_first_bit(&bar_list, sizeof(unsigned long));
3472 instance->base_addr = pci_resource_start(instance->pdev, instance->bar);
3473 if (pci_request_selected_regions(instance->pdev, instance->bar,
3475 printk(KERN_DEBUG "megasas: IO memory region busy!\n");
3479 instance->reg_set = ioremap_nocache(instance->base_addr, 8192);
3481 if (!instance->reg_set) {
3482 printk(KERN_DEBUG "megasas: Failed to map IO mem\n");
3486 reg_set = instance->reg_set;
3488 switch (instance->pdev->device) {
3489 case PCI_DEVICE_ID_LSI_FUSION:
3490 case PCI_DEVICE_ID_LSI_INVADER:
3491 instance->instancet = &megasas_instance_template_fusion;
3493 case PCI_DEVICE_ID_LSI_SAS1078R:
3494 case PCI_DEVICE_ID_LSI_SAS1078DE:
3495 instance->instancet = &megasas_instance_template_ppc;
3497 case PCI_DEVICE_ID_LSI_SAS1078GEN2:
3498 case PCI_DEVICE_ID_LSI_SAS0079GEN2:
3499 instance->instancet = &megasas_instance_template_gen2;
3501 case PCI_DEVICE_ID_LSI_SAS0073SKINNY:
3502 case PCI_DEVICE_ID_LSI_SAS0071SKINNY:
3503 instance->instancet = &megasas_instance_template_skinny;
3505 case PCI_DEVICE_ID_LSI_SAS1064R:
3506 case PCI_DEVICE_ID_DELL_PERC5:
3508 instance->instancet = &megasas_instance_template_xscale;
3512 if (megasas_transition_to_ready(instance, 0)) {
3513 atomic_set(&instance->fw_reset_no_pci_access, 1);
3514 instance->instancet->adp_reset
3515 (instance, instance->reg_set);
3516 atomic_set(&instance->fw_reset_no_pci_access, 0);
3517 dev_info(&instance->pdev->dev,
3518 "megasas: FW restarted successfully from %s!\n",
3521 /*waitting for about 30 second before retry*/
3524 if (megasas_transition_to_ready(instance, 0))
3525 goto fail_ready_state;
3528 /* Check if MSI-X is supported while in ready state */
3529 msix_enable = (instance->instancet->read_fw_status_reg(reg_set) &
3531 if (msix_enable && !msix_disable) {
3532 /* Check max MSI-X vectors */
3533 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_FUSION) ||
3534 (instance->pdev->device == PCI_DEVICE_ID_LSI_INVADER)) {
3535 instance->msix_vectors = (readl(&instance->reg_set->
3536 outbound_scratch_pad_2
3539 instance->msix_vectors =
3541 instance->msix_vectors);
3543 instance->msix_vectors = 1;
3544 /* Don't bother allocating more MSI-X vectors than cpus */
3545 instance->msix_vectors = min(instance->msix_vectors,
3546 (unsigned int)num_online_cpus());
3547 for (i = 0; i < instance->msix_vectors; i++)
3548 instance->msixentry[i].entry = i;
3549 i = pci_enable_msix(instance->pdev, instance->msixentry,
3550 instance->msix_vectors);
3553 if (!pci_enable_msix(instance->pdev,
3554 instance->msixentry, i))
3555 instance->msix_vectors = i;
3557 instance->msix_vectors = 0;
3560 instance->msix_vectors = 0;
3563 /* Get operational params, sge flags, send init cmd to controller */
3564 if (instance->instancet->init_adapter(instance))
3565 goto fail_init_adapter;
3567 printk(KERN_ERR "megasas: INIT adapter done\n");
3570 * the following function will get the PD LIST.
3573 memset(instance->pd_list, 0 ,
3574 (MEGASAS_MAX_PD * sizeof(struct megasas_pd_list)));
3575 megasas_get_pd_list(instance);
3577 memset(instance->ld_ids, 0xff, MEGASAS_MAX_LD_IDS);
3578 megasas_get_ld_list(instance);
3580 ctrl_info = kmalloc(sizeof(struct megasas_ctrl_info), GFP_KERNEL);
3583 * Compute the max allowed sectors per IO: The controller info has two
3584 * limits on max sectors. Driver should use the minimum of these two.
3586 * 1 << stripe_sz_ops.min = max sectors per strip
3588 * Note that older firmwares ( < FW ver 30) didn't report information
3589 * to calculate max_sectors_1. So the number ended up as zero always.
3592 if (ctrl_info && !megasas_get_ctrl_info(instance, ctrl_info)) {
3594 max_sectors_1 = (1 << ctrl_info->stripe_sz_ops.min) *
3595 ctrl_info->max_strips_per_io;
3596 max_sectors_2 = ctrl_info->max_request_size;
3598 tmp_sectors = min_t(u32, max_sectors_1 , max_sectors_2);
3599 instance->disableOnlineCtrlReset =
3600 ctrl_info->properties.OnOffProperties.disableOnlineCtrlReset;
3603 instance->max_sectors_per_req = instance->max_num_sge *
3605 if (tmp_sectors && (instance->max_sectors_per_req > tmp_sectors))
3606 instance->max_sectors_per_req = tmp_sectors;
3610 /* Check for valid throttlequeuedepth module parameter */
3611 if (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY ||
3612 instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY) {
3613 if (throttlequeuedepth > (instance->max_fw_cmds -
3614 MEGASAS_SKINNY_INT_CMDS))
3615 instance->throttlequeuedepth =
3616 MEGASAS_THROTTLE_QUEUE_DEPTH;
3618 instance->throttlequeuedepth = throttlequeuedepth;
3620 if (throttlequeuedepth > (instance->max_fw_cmds -
3622 instance->throttlequeuedepth =
3623 MEGASAS_THROTTLE_QUEUE_DEPTH;
3625 instance->throttlequeuedepth = throttlequeuedepth;
3629 * Setup tasklet for cmd completion
3632 tasklet_init(&instance->isr_tasklet, instance->instancet->tasklet,
3633 (unsigned long)instance);
3639 iounmap(instance->reg_set);
3642 pci_release_selected_regions(instance->pdev, instance->bar);
3648 * megasas_release_mfi - Reverses the FW initialization
3649 * @intance: Adapter soft state
3651 static void megasas_release_mfi(struct megasas_instance *instance)
3653 u32 reply_q_sz = sizeof(u32) *(instance->max_mfi_cmds + 1);
3655 if (instance->reply_queue)
3656 pci_free_consistent(instance->pdev, reply_q_sz,
3657 instance->reply_queue, instance->reply_queue_h);
3659 megasas_free_cmds(instance);
3661 iounmap(instance->reg_set);
3663 pci_release_selected_regions(instance->pdev, instance->bar);
3667 * megasas_get_seq_num - Gets latest event sequence numbers
3668 * @instance: Adapter soft state
3669 * @eli: FW event log sequence numbers information
3671 * FW maintains a log of all events in a non-volatile area. Upper layers would
3672 * usually find out the latest sequence number of the events, the seq number at
3673 * the boot etc. They would "read" all the events below the latest seq number
3674 * by issuing a direct fw cmd (DCMD). For the future events (beyond latest seq
3675 * number), they would subsribe to AEN (asynchronous event notification) and
3676 * wait for the events to happen.
3679 megasas_get_seq_num(struct megasas_instance *instance,
3680 struct megasas_evt_log_info *eli)
3682 struct megasas_cmd *cmd;
3683 struct megasas_dcmd_frame *dcmd;
3684 struct megasas_evt_log_info *el_info;
3685 dma_addr_t el_info_h = 0;
3687 cmd = megasas_get_cmd(instance);
3693 dcmd = &cmd->frame->dcmd;
3694 el_info = pci_alloc_consistent(instance->pdev,
3695 sizeof(struct megasas_evt_log_info),
3699 megasas_return_cmd(instance, cmd);
3703 memset(el_info, 0, sizeof(*el_info));
3704 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3706 dcmd->cmd = MFI_CMD_DCMD;
3707 dcmd->cmd_status = 0x0;
3708 dcmd->sge_count = 1;
3709 dcmd->flags = MFI_FRAME_DIR_READ;
3712 dcmd->data_xfer_len = sizeof(struct megasas_evt_log_info);
3713 dcmd->opcode = MR_DCMD_CTRL_EVENT_GET_INFO;
3714 dcmd->sgl.sge32[0].phys_addr = el_info_h;
3715 dcmd->sgl.sge32[0].length = sizeof(struct megasas_evt_log_info);
3717 megasas_issue_blocked_cmd(instance, cmd);
3720 * Copy the data back into callers buffer
3722 memcpy(eli, el_info, sizeof(struct megasas_evt_log_info));
3724 pci_free_consistent(instance->pdev, sizeof(struct megasas_evt_log_info),
3725 el_info, el_info_h);
3727 megasas_return_cmd(instance, cmd);
3733 * megasas_register_aen - Registers for asynchronous event notification
3734 * @instance: Adapter soft state
3735 * @seq_num: The starting sequence number
3736 * @class_locale: Class of the event
3738 * This function subscribes for AEN for events beyond the @seq_num. It requests
3739 * to be notified if and only if the event is of type @class_locale
3742 megasas_register_aen(struct megasas_instance *instance, u32 seq_num,
3743 u32 class_locale_word)
3746 struct megasas_cmd *cmd;
3747 struct megasas_dcmd_frame *dcmd;
3748 union megasas_evt_class_locale curr_aen;
3749 union megasas_evt_class_locale prev_aen;
3752 * If there an AEN pending already (aen_cmd), check if the
3753 * class_locale of that pending AEN is inclusive of the new
3754 * AEN request we currently have. If it is, then we don't have
3755 * to do anything. In other words, whichever events the current
3756 * AEN request is subscribing to, have already been subscribed
3759 * If the old_cmd is _not_ inclusive, then we have to abort
3760 * that command, form a class_locale that is superset of both
3761 * old and current and re-issue to the FW
3764 curr_aen.word = class_locale_word;
3766 if (instance->aen_cmd) {
3768 prev_aen.word = instance->aen_cmd->frame->dcmd.mbox.w[1];
3771 * A class whose enum value is smaller is inclusive of all
3772 * higher values. If a PROGRESS (= -1) was previously
3773 * registered, then a new registration requests for higher
3774 * classes need not be sent to FW. They are automatically
3777 * Locale numbers don't have such hierarchy. They are bitmap
3780 if ((prev_aen.members.class <= curr_aen.members.class) &&
3781 !((prev_aen.members.locale & curr_aen.members.locale) ^
3782 curr_aen.members.locale)) {
3784 * Previously issued event registration includes
3785 * current request. Nothing to do.
3789 curr_aen.members.locale |= prev_aen.members.locale;
3791 if (prev_aen.members.class < curr_aen.members.class)
3792 curr_aen.members.class = prev_aen.members.class;
3794 instance->aen_cmd->abort_aen = 1;
3795 ret_val = megasas_issue_blocked_abort_cmd(instance,
3800 printk(KERN_DEBUG "megasas: Failed to abort "
3801 "previous AEN command\n");
3807 cmd = megasas_get_cmd(instance);
3812 dcmd = &cmd->frame->dcmd;
3814 memset(instance->evt_detail, 0, sizeof(struct megasas_evt_detail));
3817 * Prepare DCMD for aen registration
3819 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3821 dcmd->cmd = MFI_CMD_DCMD;
3822 dcmd->cmd_status = 0x0;
3823 dcmd->sge_count = 1;
3824 dcmd->flags = MFI_FRAME_DIR_READ;
3827 instance->last_seq_num = seq_num;
3828 dcmd->data_xfer_len = sizeof(struct megasas_evt_detail);
3829 dcmd->opcode = MR_DCMD_CTRL_EVENT_WAIT;
3830 dcmd->mbox.w[0] = seq_num;
3831 dcmd->mbox.w[1] = curr_aen.word;
3832 dcmd->sgl.sge32[0].phys_addr = (u32) instance->evt_detail_h;
3833 dcmd->sgl.sge32[0].length = sizeof(struct megasas_evt_detail);
3835 if (instance->aen_cmd != NULL) {
3836 megasas_return_cmd(instance, cmd);
3841 * Store reference to the cmd used to register for AEN. When an
3842 * application wants us to register for AEN, we have to abort this
3843 * cmd and re-register with a new EVENT LOCALE supplied by that app
3845 instance->aen_cmd = cmd;
3848 * Issue the aen registration frame
3850 instance->instancet->issue_dcmd(instance, cmd);
3856 * megasas_start_aen - Subscribes to AEN during driver load time
3857 * @instance: Adapter soft state
3859 static int megasas_start_aen(struct megasas_instance *instance)
3861 struct megasas_evt_log_info eli;
3862 union megasas_evt_class_locale class_locale;
3865 * Get the latest sequence number from FW
3867 memset(&eli, 0, sizeof(eli));
3869 if (megasas_get_seq_num(instance, &eli))
3873 * Register AEN with FW for latest sequence number plus 1
3875 class_locale.members.reserved = 0;
3876 class_locale.members.locale = MR_EVT_LOCALE_ALL;
3877 class_locale.members.class = MR_EVT_CLASS_DEBUG;
3879 return megasas_register_aen(instance, eli.newest_seq_num + 1,
3884 * megasas_io_attach - Attaches this driver to SCSI mid-layer
3885 * @instance: Adapter soft state
3887 static int megasas_io_attach(struct megasas_instance *instance)
3889 struct Scsi_Host *host = instance->host;
3892 * Export parameters required by SCSI mid-layer
3894 host->irq = instance->pdev->irq;
3895 host->unique_id = instance->unique_id;
3896 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
3897 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
3899 instance->max_fw_cmds - MEGASAS_SKINNY_INT_CMDS;
3902 instance->max_fw_cmds - MEGASAS_INT_CMDS;
3903 host->this_id = instance->init_id;
3904 host->sg_tablesize = instance->max_num_sge;
3906 if (instance->fw_support_ieee)
3907 instance->max_sectors_per_req = MEGASAS_MAX_SECTORS_IEEE;
3910 * Check if the module parameter value for max_sectors can be used
3912 if (max_sectors && max_sectors < instance->max_sectors_per_req)
3913 instance->max_sectors_per_req = max_sectors;
3916 if (((instance->pdev->device ==
3917 PCI_DEVICE_ID_LSI_SAS1078GEN2) ||
3918 (instance->pdev->device ==
3919 PCI_DEVICE_ID_LSI_SAS0079GEN2)) &&
3920 (max_sectors <= MEGASAS_MAX_SECTORS)) {
3921 instance->max_sectors_per_req = max_sectors;
3923 printk(KERN_INFO "megasas: max_sectors should be > 0"
3924 "and <= %d (or < 1MB for GEN2 controller)\n",
3925 instance->max_sectors_per_req);
3930 host->max_sectors = instance->max_sectors_per_req;
3931 host->cmd_per_lun = MEGASAS_DEFAULT_CMD_PER_LUN;
3932 host->max_channel = MEGASAS_MAX_CHANNELS - 1;
3933 host->max_id = MEGASAS_MAX_DEV_PER_CHANNEL;
3934 host->max_lun = MEGASAS_MAX_LUN;
3935 host->max_cmd_len = 16;
3937 /* Fusion only supports host reset */
3938 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_FUSION) ||
3939 (instance->pdev->device == PCI_DEVICE_ID_LSI_INVADER)) {
3940 host->hostt->eh_device_reset_handler = NULL;
3941 host->hostt->eh_bus_reset_handler = NULL;
3945 * Notify the mid-layer about the new controller
3947 if (scsi_add_host(host, &instance->pdev->dev)) {
3948 printk(KERN_DEBUG "megasas: scsi_add_host failed\n");
3953 * Trigger SCSI to scan our drives
3955 scsi_scan_host(host);
3960 megasas_set_dma_mask(struct pci_dev *pdev)
3963 * All our contollers are capable of performing 64-bit DMA
3966 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) {
3968 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
3969 goto fail_set_dma_mask;
3972 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
3973 goto fail_set_dma_mask;
3982 * megasas_probe_one - PCI hotplug entry point
3983 * @pdev: PCI device structure
3984 * @id: PCI ids of supported hotplugged adapter
3986 static int megasas_probe_one(struct pci_dev *pdev,
3987 const struct pci_device_id *id)
3989 int rval, pos, i, j;
3990 struct Scsi_Host *host;
3991 struct megasas_instance *instance;
3994 /* Reset MSI-X in the kdump kernel */
3995 if (reset_devices) {
3996 pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
3998 pci_read_config_word(pdev, pos + PCI_MSIX_FLAGS,
4000 if (control & PCI_MSIX_FLAGS_ENABLE) {
4001 dev_info(&pdev->dev, "resetting MSI-X\n");
4002 pci_write_config_word(pdev,
4003 pos + PCI_MSIX_FLAGS,
4005 ~PCI_MSIX_FLAGS_ENABLE);
4011 * Announce PCI information
4013 printk(KERN_INFO "megasas: %#4.04x:%#4.04x:%#4.04x:%#4.04x: ",
4014 pdev->vendor, pdev->device, pdev->subsystem_vendor,
4015 pdev->subsystem_device);
4017 printk("bus %d:slot %d:func %d\n",
4018 pdev->bus->number, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
4021 * PCI prepping: enable device set bus mastering and dma mask
4023 rval = pci_enable_device_mem(pdev);
4029 pci_set_master(pdev);
4031 if (megasas_set_dma_mask(pdev))
4032 goto fail_set_dma_mask;
4034 host = scsi_host_alloc(&megasas_template,
4035 sizeof(struct megasas_instance));
4038 printk(KERN_DEBUG "megasas: scsi_host_alloc failed\n");
4039 goto fail_alloc_instance;
4042 instance = (struct megasas_instance *)host->hostdata;
4043 memset(instance, 0, sizeof(*instance));
4044 atomic_set( &instance->fw_reset_no_pci_access, 0 );
4045 instance->pdev = pdev;
4047 switch (instance->pdev->device) {
4048 case PCI_DEVICE_ID_LSI_FUSION:
4049 case PCI_DEVICE_ID_LSI_INVADER:
4051 struct fusion_context *fusion;
4053 instance->ctrl_context =
4054 kzalloc(sizeof(struct fusion_context), GFP_KERNEL);
4055 if (!instance->ctrl_context) {
4056 printk(KERN_DEBUG "megasas: Failed to allocate "
4057 "memory for Fusion context info\n");
4058 goto fail_alloc_dma_buf;
4060 fusion = instance->ctrl_context;
4061 INIT_LIST_HEAD(&fusion->cmd_pool);
4062 spin_lock_init(&fusion->cmd_pool_lock);
4065 default: /* For all other supported controllers */
4067 instance->producer =
4068 pci_alloc_consistent(pdev, sizeof(u32),
4069 &instance->producer_h);
4070 instance->consumer =
4071 pci_alloc_consistent(pdev, sizeof(u32),
4072 &instance->consumer_h);
4074 if (!instance->producer || !instance->consumer) {
4075 printk(KERN_DEBUG "megasas: Failed to allocate"
4076 "memory for producer, consumer\n");
4077 goto fail_alloc_dma_buf;
4080 *instance->producer = 0;
4081 *instance->consumer = 0;
4085 megasas_poll_wait_aen = 0;
4086 instance->flag_ieee = 0;
4087 instance->ev = NULL;
4088 instance->issuepend_done = 1;
4089 instance->adprecovery = MEGASAS_HBA_OPERATIONAL;
4090 megasas_poll_wait_aen = 0;
4092 instance->evt_detail = pci_alloc_consistent(pdev,
4094 megasas_evt_detail),
4095 &instance->evt_detail_h);
4097 if (!instance->evt_detail) {
4098 printk(KERN_DEBUG "megasas: Failed to allocate memory for "
4099 "event detail structure\n");
4100 goto fail_alloc_dma_buf;
4104 * Initialize locks and queues
4106 INIT_LIST_HEAD(&instance->cmd_pool);
4107 INIT_LIST_HEAD(&instance->internal_reset_pending_q);
4109 atomic_set(&instance->fw_outstanding,0);
4111 init_waitqueue_head(&instance->int_cmd_wait_q);
4112 init_waitqueue_head(&instance->abort_cmd_wait_q);
4114 spin_lock_init(&instance->cmd_pool_lock);
4115 spin_lock_init(&instance->hba_lock);
4116 spin_lock_init(&instance->completion_lock);
4118 mutex_init(&instance->aen_mutex);
4119 mutex_init(&instance->reset_mutex);
4122 * Initialize PCI related and misc parameters
4124 instance->host = host;
4125 instance->unique_id = pdev->bus->number << 8 | pdev->devfn;
4126 instance->init_id = MEGASAS_DEFAULT_INIT_ID;
4128 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
4129 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
4130 instance->flag_ieee = 1;
4131 sema_init(&instance->ioctl_sem, MEGASAS_SKINNY_INT_CMDS);
4133 sema_init(&instance->ioctl_sem, MEGASAS_INT_CMDS);
4135 megasas_dbg_lvl = 0;
4137 instance->unload = 1;
4138 instance->last_time = 0;
4139 instance->disableOnlineCtrlReset = 1;
4141 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_FUSION) ||
4142 (instance->pdev->device == PCI_DEVICE_ID_LSI_INVADER))
4143 INIT_WORK(&instance->work_init, megasas_fusion_ocr_wq);
4145 INIT_WORK(&instance->work_init, process_fw_state_change_wq);
4148 * Initialize MFI Firmware
4150 if (megasas_init_fw(instance))
4156 if (instance->msix_vectors) {
4157 for (i = 0 ; i < instance->msix_vectors; i++) {
4158 instance->irq_context[i].instance = instance;
4159 instance->irq_context[i].MSIxIndex = i;
4160 if (request_irq(instance->msixentry[i].vector,
4161 instance->instancet->service_isr, 0,
4163 &instance->irq_context[i])) {
4164 printk(KERN_DEBUG "megasas: Failed to "
4165 "register IRQ for vector %d.\n", i);
4166 for (j = 0 ; j < i ; j++)
4168 instance->msixentry[j].vector,
4169 &instance->irq_context[j]);
4174 instance->irq_context[0].instance = instance;
4175 instance->irq_context[0].MSIxIndex = 0;
4176 if (request_irq(pdev->irq, instance->instancet->service_isr,
4177 IRQF_SHARED, "megasas",
4178 &instance->irq_context[0])) {
4179 printk(KERN_DEBUG "megasas: Failed to register IRQ\n");
4184 instance->instancet->enable_intr(instance->reg_set);
4187 * Store instance in PCI softstate
4189 pci_set_drvdata(pdev, instance);
4192 * Add this controller to megasas_mgmt_info structure so that it
4193 * can be exported to management applications
4195 megasas_mgmt_info.count++;
4196 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = instance;
4197 megasas_mgmt_info.max_index++;
4200 * Register with SCSI mid-layer
4202 if (megasas_io_attach(instance))
4203 goto fail_io_attach;
4205 instance->unload = 0;
4208 * Initiate AEN (Asynchronous Event Notification)
4210 if (megasas_start_aen(instance)) {
4211 printk(KERN_DEBUG "megasas: start aen failed\n");
4212 goto fail_start_aen;
4219 megasas_mgmt_info.count--;
4220 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = NULL;
4221 megasas_mgmt_info.max_index--;
4223 pci_set_drvdata(pdev, NULL);
4224 instance->instancet->disable_intr(instance->reg_set);
4225 if (instance->msix_vectors)
4226 for (i = 0 ; i < instance->msix_vectors; i++)
4227 free_irq(instance->msixentry[i].vector,
4228 &instance->irq_context[i]);
4230 free_irq(instance->pdev->irq, &instance->irq_context[0]);
4232 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_FUSION) ||
4233 (instance->pdev->device == PCI_DEVICE_ID_LSI_INVADER))
4234 megasas_release_fusion(instance);
4236 megasas_release_mfi(instance);
4238 if (instance->msix_vectors)
4239 pci_disable_msix(instance->pdev);
4241 if (instance->evt_detail)
4242 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
4243 instance->evt_detail,
4244 instance->evt_detail_h);
4246 if (instance->producer)
4247 pci_free_consistent(pdev, sizeof(u32), instance->producer,
4248 instance->producer_h);
4249 if (instance->consumer)
4250 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
4251 instance->consumer_h);
4252 scsi_host_put(host);
4254 fail_alloc_instance:
4256 pci_disable_device(pdev);
4262 * megasas_flush_cache - Requests FW to flush all its caches
4263 * @instance: Adapter soft state
4265 static void megasas_flush_cache(struct megasas_instance *instance)
4267 struct megasas_cmd *cmd;
4268 struct megasas_dcmd_frame *dcmd;
4270 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR)
4273 cmd = megasas_get_cmd(instance);
4278 dcmd = &cmd->frame->dcmd;
4280 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4282 dcmd->cmd = MFI_CMD_DCMD;
4283 dcmd->cmd_status = 0x0;
4284 dcmd->sge_count = 0;
4285 dcmd->flags = MFI_FRAME_DIR_NONE;
4288 dcmd->data_xfer_len = 0;
4289 dcmd->opcode = MR_DCMD_CTRL_CACHE_FLUSH;
4290 dcmd->mbox.b[0] = MR_FLUSH_CTRL_CACHE | MR_FLUSH_DISK_CACHE;
4292 megasas_issue_blocked_cmd(instance, cmd);
4294 megasas_return_cmd(instance, cmd);
4300 * megasas_shutdown_controller - Instructs FW to shutdown the controller
4301 * @instance: Adapter soft state
4302 * @opcode: Shutdown/Hibernate
4304 static void megasas_shutdown_controller(struct megasas_instance *instance,
4307 struct megasas_cmd *cmd;
4308 struct megasas_dcmd_frame *dcmd;
4310 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR)
4313 cmd = megasas_get_cmd(instance);
4318 if (instance->aen_cmd)
4319 megasas_issue_blocked_abort_cmd(instance, instance->aen_cmd);
4320 if (instance->map_update_cmd)
4321 megasas_issue_blocked_abort_cmd(instance,
4322 instance->map_update_cmd);
4323 dcmd = &cmd->frame->dcmd;
4325 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
4327 dcmd->cmd = MFI_CMD_DCMD;
4328 dcmd->cmd_status = 0x0;
4329 dcmd->sge_count = 0;
4330 dcmd->flags = MFI_FRAME_DIR_NONE;
4333 dcmd->data_xfer_len = 0;
4334 dcmd->opcode = opcode;
4336 megasas_issue_blocked_cmd(instance, cmd);
4338 megasas_return_cmd(instance, cmd);
4345 * megasas_suspend - driver suspend entry point
4346 * @pdev: PCI device structure
4347 * @state: PCI power state to suspend routine
4350 megasas_suspend(struct pci_dev *pdev, pm_message_t state)
4352 struct Scsi_Host *host;
4353 struct megasas_instance *instance;
4356 instance = pci_get_drvdata(pdev);
4357 host = instance->host;
4358 instance->unload = 1;
4360 megasas_flush_cache(instance);
4361 megasas_shutdown_controller(instance, MR_DCMD_HIBERNATE_SHUTDOWN);
4363 /* cancel the delayed work if this work still in queue */
4364 if (instance->ev != NULL) {
4365 struct megasas_aen_event *ev = instance->ev;
4366 cancel_delayed_work_sync(&ev->hotplug_work);
4367 instance->ev = NULL;
4370 tasklet_kill(&instance->isr_tasklet);
4372 pci_set_drvdata(instance->pdev, instance);
4373 instance->instancet->disable_intr(instance->reg_set);
4375 if (instance->msix_vectors)
4376 for (i = 0 ; i < instance->msix_vectors; i++)
4377 free_irq(instance->msixentry[i].vector,
4378 &instance->irq_context[i]);
4380 free_irq(instance->pdev->irq, &instance->irq_context[0]);
4381 if (instance->msix_vectors)
4382 pci_disable_msix(instance->pdev);
4384 pci_save_state(pdev);
4385 pci_disable_device(pdev);
4387 pci_set_power_state(pdev, pci_choose_state(pdev, state));
4393 * megasas_resume- driver resume entry point
4394 * @pdev: PCI device structure
4397 megasas_resume(struct pci_dev *pdev)
4400 struct Scsi_Host *host;
4401 struct megasas_instance *instance;
4403 instance = pci_get_drvdata(pdev);
4404 host = instance->host;
4405 pci_set_power_state(pdev, PCI_D0);
4406 pci_enable_wake(pdev, PCI_D0, 0);
4407 pci_restore_state(pdev);
4410 * PCI prepping: enable device set bus mastering and dma mask
4412 rval = pci_enable_device_mem(pdev);
4415 printk(KERN_ERR "megasas: Enable device failed\n");
4419 pci_set_master(pdev);
4421 if (megasas_set_dma_mask(pdev))
4422 goto fail_set_dma_mask;
4425 * Initialize MFI Firmware
4428 atomic_set(&instance->fw_outstanding, 0);
4431 * We expect the FW state to be READY
4433 if (megasas_transition_to_ready(instance, 0))
4434 goto fail_ready_state;
4436 /* Now re-enable MSI-X */
4437 if (instance->msix_vectors)
4438 pci_enable_msix(instance->pdev, instance->msixentry,
4439 instance->msix_vectors);
4441 switch (instance->pdev->device) {
4442 case PCI_DEVICE_ID_LSI_FUSION:
4443 case PCI_DEVICE_ID_LSI_INVADER:
4445 megasas_reset_reply_desc(instance);
4446 if (megasas_ioc_init_fusion(instance)) {
4447 megasas_free_cmds(instance);
4448 megasas_free_cmds_fusion(instance);
4451 if (!megasas_get_map_info(instance))
4452 megasas_sync_map_info(instance);
4456 *instance->producer = 0;
4457 *instance->consumer = 0;
4458 if (megasas_issue_init_mfi(instance))
4463 tasklet_init(&instance->isr_tasklet, instance->instancet->tasklet,
4464 (unsigned long)instance);
4469 if (instance->msix_vectors) {
4470 for (i = 0 ; i < instance->msix_vectors; i++) {
4471 instance->irq_context[i].instance = instance;
4472 instance->irq_context[i].MSIxIndex = i;
4473 if (request_irq(instance->msixentry[i].vector,
4474 instance->instancet->service_isr, 0,
4476 &instance->irq_context[i])) {
4477 printk(KERN_DEBUG "megasas: Failed to "
4478 "register IRQ for vector %d.\n", i);
4479 for (j = 0 ; j < i ; j++)
4481 instance->msixentry[j].vector,
4482 &instance->irq_context[j]);
4487 instance->irq_context[0].instance = instance;
4488 instance->irq_context[0].MSIxIndex = 0;
4489 if (request_irq(pdev->irq, instance->instancet->service_isr,
4490 IRQF_SHARED, "megasas",
4491 &instance->irq_context[0])) {
4492 printk(KERN_DEBUG "megasas: Failed to register IRQ\n");
4497 instance->instancet->enable_intr(instance->reg_set);
4498 instance->unload = 0;
4501 * Initiate AEN (Asynchronous Event Notification)
4503 if (megasas_start_aen(instance))
4504 printk(KERN_ERR "megasas: Start AEN failed\n");
4510 if (instance->evt_detail)
4511 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
4512 instance->evt_detail,
4513 instance->evt_detail_h);
4515 if (instance->producer)
4516 pci_free_consistent(pdev, sizeof(u32), instance->producer,
4517 instance->producer_h);
4518 if (instance->consumer)
4519 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
4520 instance->consumer_h);
4521 scsi_host_put(host);
4526 pci_disable_device(pdev);
4531 #define megasas_suspend NULL
4532 #define megasas_resume NULL
4536 * megasas_detach_one - PCI hot"un"plug entry point
4537 * @pdev: PCI device structure
4539 static void megasas_detach_one(struct pci_dev *pdev)
4542 struct Scsi_Host *host;
4543 struct megasas_instance *instance;
4544 struct fusion_context *fusion;
4546 instance = pci_get_drvdata(pdev);
4547 instance->unload = 1;
4548 host = instance->host;
4549 fusion = instance->ctrl_context;
4551 scsi_remove_host(instance->host);
4552 megasas_flush_cache(instance);
4553 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
4555 /* cancel the delayed work if this work still in queue*/
4556 if (instance->ev != NULL) {
4557 struct megasas_aen_event *ev = instance->ev;
4558 cancel_delayed_work_sync(&ev->hotplug_work);
4559 instance->ev = NULL;
4562 tasklet_kill(&instance->isr_tasklet);
4565 * Take the instance off the instance array. Note that we will not
4566 * decrement the max_index. We let this array be sparse array
4568 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
4569 if (megasas_mgmt_info.instance[i] == instance) {
4570 megasas_mgmt_info.count--;
4571 megasas_mgmt_info.instance[i] = NULL;
4577 pci_set_drvdata(instance->pdev, NULL);
4579 instance->instancet->disable_intr(instance->reg_set);
4581 if (instance->msix_vectors)
4582 for (i = 0 ; i < instance->msix_vectors; i++)
4583 free_irq(instance->msixentry[i].vector,
4584 &instance->irq_context[i]);
4586 free_irq(instance->pdev->irq, &instance->irq_context[0]);
4587 if (instance->msix_vectors)
4588 pci_disable_msix(instance->pdev);
4590 switch (instance->pdev->device) {
4591 case PCI_DEVICE_ID_LSI_FUSION:
4592 case PCI_DEVICE_ID_LSI_INVADER:
4593 megasas_release_fusion(instance);
4594 for (i = 0; i < 2 ; i++)
4595 if (fusion->ld_map[i])
4596 dma_free_coherent(&instance->pdev->dev,
4601 kfree(instance->ctrl_context);
4604 megasas_release_mfi(instance);
4605 pci_free_consistent(pdev,
4606 sizeof(struct megasas_evt_detail),
4607 instance->evt_detail,
4608 instance->evt_detail_h);
4609 pci_free_consistent(pdev, sizeof(u32),
4611 instance->producer_h);
4612 pci_free_consistent(pdev, sizeof(u32),
4614 instance->consumer_h);
4618 scsi_host_put(host);
4620 pci_set_drvdata(pdev, NULL);
4622 pci_disable_device(pdev);
4628 * megasas_shutdown - Shutdown entry point
4629 * @device: Generic device structure
4631 static void megasas_shutdown(struct pci_dev *pdev)
4634 struct megasas_instance *instance = pci_get_drvdata(pdev);
4636 instance->unload = 1;
4637 megasas_flush_cache(instance);
4638 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
4639 instance->instancet->disable_intr(instance->reg_set);
4640 if (instance->msix_vectors)
4641 for (i = 0 ; i < instance->msix_vectors; i++)
4642 free_irq(instance->msixentry[i].vector,
4643 &instance->irq_context[i]);
4645 free_irq(instance->pdev->irq, &instance->irq_context[0]);
4646 if (instance->msix_vectors)
4647 pci_disable_msix(instance->pdev);
4651 * megasas_mgmt_open - char node "open" entry point
4653 static int megasas_mgmt_open(struct inode *inode, struct file *filep)
4656 * Allow only those users with admin rights
4658 if (!capable(CAP_SYS_ADMIN))
4665 * megasas_mgmt_fasync - Async notifier registration from applications
4667 * This function adds the calling process to a driver global queue. When an
4668 * event occurs, SIGIO will be sent to all processes in this queue.
4670 static int megasas_mgmt_fasync(int fd, struct file *filep, int mode)
4674 mutex_lock(&megasas_async_queue_mutex);
4676 rc = fasync_helper(fd, filep, mode, &megasas_async_queue);
4678 mutex_unlock(&megasas_async_queue_mutex);
4681 /* For sanity check when we get ioctl */
4682 filep->private_data = filep;
4686 printk(KERN_DEBUG "megasas: fasync_helper failed [%d]\n", rc);
4692 * megasas_mgmt_poll - char node "poll" entry point
4694 static unsigned int megasas_mgmt_poll(struct file *file, poll_table *wait)
4697 unsigned long flags;
4698 poll_wait(file, &megasas_poll_wait, wait);
4699 spin_lock_irqsave(&poll_aen_lock, flags);
4700 if (megasas_poll_wait_aen)
4701 mask = (POLLIN | POLLRDNORM);
4704 spin_unlock_irqrestore(&poll_aen_lock, flags);
4709 * megasas_mgmt_fw_ioctl - Issues management ioctls to FW
4710 * @instance: Adapter soft state
4711 * @argp: User's ioctl packet
4714 megasas_mgmt_fw_ioctl(struct megasas_instance *instance,
4715 struct megasas_iocpacket __user * user_ioc,
4716 struct megasas_iocpacket *ioc)
4718 struct megasas_sge32 *kern_sge32;
4719 struct megasas_cmd *cmd;
4720 void *kbuff_arr[MAX_IOCTL_SGE];
4721 dma_addr_t buf_handle = 0;
4724 dma_addr_t sense_handle;
4725 unsigned long *sense_ptr;
4727 memset(kbuff_arr, 0, sizeof(kbuff_arr));
4729 if (ioc->sge_count > MAX_IOCTL_SGE) {
4730 printk(KERN_DEBUG "megasas: SGE count [%d] > max limit [%d]\n",
4731 ioc->sge_count, MAX_IOCTL_SGE);
4735 cmd = megasas_get_cmd(instance);
4737 printk(KERN_DEBUG "megasas: Failed to get a cmd packet\n");
4742 * User's IOCTL packet has 2 frames (maximum). Copy those two
4743 * frames into our cmd's frames. cmd->frame's context will get
4744 * overwritten when we copy from user's frames. So set that value
4747 memcpy(cmd->frame, ioc->frame.raw, 2 * MEGAMFI_FRAME_SIZE);
4748 cmd->frame->hdr.context = cmd->index;
4749 cmd->frame->hdr.pad_0 = 0;
4750 cmd->frame->hdr.flags &= ~(MFI_FRAME_IEEE | MFI_FRAME_SGL64 |
4754 * The management interface between applications and the fw uses
4755 * MFI frames. E.g, RAID configuration changes, LD property changes
4756 * etc are accomplishes through different kinds of MFI frames. The
4757 * driver needs to care only about substituting user buffers with
4758 * kernel buffers in SGLs. The location of SGL is embedded in the
4759 * struct iocpacket itself.
4761 kern_sge32 = (struct megasas_sge32 *)
4762 ((unsigned long)cmd->frame + ioc->sgl_off);
4765 * For each user buffer, create a mirror buffer and copy in
4767 for (i = 0; i < ioc->sge_count; i++) {
4768 if (!ioc->sgl[i].iov_len)
4771 kbuff_arr[i] = dma_alloc_coherent(&instance->pdev->dev,
4772 ioc->sgl[i].iov_len,
4773 &buf_handle, GFP_KERNEL);
4774 if (!kbuff_arr[i]) {
4775 printk(KERN_DEBUG "megasas: Failed to alloc "
4776 "kernel SGL buffer for IOCTL \n");
4782 * We don't change the dma_coherent_mask, so
4783 * pci_alloc_consistent only returns 32bit addresses
4785 kern_sge32[i].phys_addr = (u32) buf_handle;
4786 kern_sge32[i].length = ioc->sgl[i].iov_len;
4789 * We created a kernel buffer corresponding to the
4790 * user buffer. Now copy in from the user buffer
4792 if (copy_from_user(kbuff_arr[i], ioc->sgl[i].iov_base,
4793 (u32) (ioc->sgl[i].iov_len))) {
4799 if (ioc->sense_len) {
4800 sense = dma_alloc_coherent(&instance->pdev->dev, ioc->sense_len,
4801 &sense_handle, GFP_KERNEL);
4808 (unsigned long *) ((unsigned long)cmd->frame + ioc->sense_off);
4809 *sense_ptr = sense_handle;
4813 * Set the sync_cmd flag so that the ISR knows not to complete this
4814 * cmd to the SCSI mid-layer
4817 megasas_issue_blocked_cmd(instance, cmd);
4821 * copy out the kernel buffers to user buffers
4823 for (i = 0; i < ioc->sge_count; i++) {
4824 if (copy_to_user(ioc->sgl[i].iov_base, kbuff_arr[i],
4825 ioc->sgl[i].iov_len)) {
4832 * copy out the sense
4834 if (ioc->sense_len) {
4836 * sense_ptr points to the location that has the user
4837 * sense buffer address
4839 sense_ptr = (unsigned long *) ((unsigned long)ioc->frame.raw +
4842 if (copy_to_user((void __user *)((unsigned long)(*sense_ptr)),
4843 sense, ioc->sense_len)) {
4844 printk(KERN_ERR "megasas: Failed to copy out to user "
4852 * copy the status codes returned by the fw
4854 if (copy_to_user(&user_ioc->frame.hdr.cmd_status,
4855 &cmd->frame->hdr.cmd_status, sizeof(u8))) {
4856 printk(KERN_DEBUG "megasas: Error copying out cmd_status\n");
4862 dma_free_coherent(&instance->pdev->dev, ioc->sense_len,
4863 sense, sense_handle);
4866 for (i = 0; i < ioc->sge_count; i++) {
4868 dma_free_coherent(&instance->pdev->dev,
4869 kern_sge32[i].length,
4871 kern_sge32[i].phys_addr);
4874 megasas_return_cmd(instance, cmd);
4878 static int megasas_mgmt_ioctl_fw(struct file *file, unsigned long arg)
4880 struct megasas_iocpacket __user *user_ioc =
4881 (struct megasas_iocpacket __user *)arg;
4882 struct megasas_iocpacket *ioc;
4883 struct megasas_instance *instance;
4886 unsigned long flags;
4887 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
4889 ioc = kmalloc(sizeof(*ioc), GFP_KERNEL);
4893 if (copy_from_user(ioc, user_ioc, sizeof(*ioc))) {
4898 instance = megasas_lookup_instance(ioc->host_no);
4904 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR) {
4905 printk(KERN_ERR "Controller in crit error\n");
4910 if (instance->unload == 1) {
4916 * We will allow only MEGASAS_INT_CMDS number of parallel ioctl cmds
4918 if (down_interruptible(&instance->ioctl_sem)) {
4919 error = -ERESTARTSYS;
4923 for (i = 0; i < wait_time; i++) {
4925 spin_lock_irqsave(&instance->hba_lock, flags);
4926 if (instance->adprecovery == MEGASAS_HBA_OPERATIONAL) {
4927 spin_unlock_irqrestore(&instance->hba_lock, flags);
4930 spin_unlock_irqrestore(&instance->hba_lock, flags);
4932 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
4933 printk(KERN_NOTICE "megasas: waiting"
4934 "for controller reset to finish\n");
4940 spin_lock_irqsave(&instance->hba_lock, flags);
4941 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL) {
4942 spin_unlock_irqrestore(&instance->hba_lock, flags);
4944 printk(KERN_ERR "megaraid_sas: timed out while"
4945 "waiting for HBA to recover\n");
4949 spin_unlock_irqrestore(&instance->hba_lock, flags);
4951 error = megasas_mgmt_fw_ioctl(instance, user_ioc, ioc);
4953 up(&instance->ioctl_sem);
4960 static int megasas_mgmt_ioctl_aen(struct file *file, unsigned long arg)
4962 struct megasas_instance *instance;
4963 struct megasas_aen aen;
4966 unsigned long flags;
4967 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
4969 if (file->private_data != file) {
4970 printk(KERN_DEBUG "megasas: fasync_helper was not "
4975 if (copy_from_user(&aen, (void __user *)arg, sizeof(aen)))
4978 instance = megasas_lookup_instance(aen.host_no);
4983 if (instance->adprecovery == MEGASAS_HW_CRITICAL_ERROR) {
4987 if (instance->unload == 1) {
4991 for (i = 0; i < wait_time; i++) {
4993 spin_lock_irqsave(&instance->hba_lock, flags);
4994 if (instance->adprecovery == MEGASAS_HBA_OPERATIONAL) {
4995 spin_unlock_irqrestore(&instance->hba_lock,
5000 spin_unlock_irqrestore(&instance->hba_lock, flags);
5002 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
5003 printk(KERN_NOTICE "megasas: waiting for"
5004 "controller reset to finish\n");
5010 spin_lock_irqsave(&instance->hba_lock, flags);
5011 if (instance->adprecovery != MEGASAS_HBA_OPERATIONAL) {
5012 spin_unlock_irqrestore(&instance->hba_lock, flags);
5013 printk(KERN_ERR "megaraid_sas: timed out while waiting"
5014 "for HBA to recover.\n");
5017 spin_unlock_irqrestore(&instance->hba_lock, flags);
5019 mutex_lock(&instance->aen_mutex);
5020 error = megasas_register_aen(instance, aen.seq_num,
5021 aen.class_locale_word);
5022 mutex_unlock(&instance->aen_mutex);
5027 * megasas_mgmt_ioctl - char node ioctl entry point
5030 megasas_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5033 case MEGASAS_IOC_FIRMWARE:
5034 return megasas_mgmt_ioctl_fw(file, arg);
5036 case MEGASAS_IOC_GET_AEN:
5037 return megasas_mgmt_ioctl_aen(file, arg);
5043 #ifdef CONFIG_COMPAT
5044 static int megasas_mgmt_compat_ioctl_fw(struct file *file, unsigned long arg)
5046 struct compat_megasas_iocpacket __user *cioc =
5047 (struct compat_megasas_iocpacket __user *)arg;
5048 struct megasas_iocpacket __user *ioc =
5049 compat_alloc_user_space(sizeof(struct megasas_iocpacket));
5054 if (clear_user(ioc, sizeof(*ioc)))
5057 if (copy_in_user(&ioc->host_no, &cioc->host_no, sizeof(u16)) ||
5058 copy_in_user(&ioc->sgl_off, &cioc->sgl_off, sizeof(u32)) ||
5059 copy_in_user(&ioc->sense_off, &cioc->sense_off, sizeof(u32)) ||
5060 copy_in_user(&ioc->sense_len, &cioc->sense_len, sizeof(u32)) ||
5061 copy_in_user(ioc->frame.raw, cioc->frame.raw, 128) ||
5062 copy_in_user(&ioc->sge_count, &cioc->sge_count, sizeof(u32)))
5066 * The sense_ptr is used in megasas_mgmt_fw_ioctl only when
5067 * sense_len is not null, so prepare the 64bit value under
5068 * the same condition.
5070 if (ioc->sense_len) {
5071 void __user **sense_ioc_ptr =
5072 (void __user **)(ioc->frame.raw + ioc->sense_off);
5073 compat_uptr_t *sense_cioc_ptr =
5074 (compat_uptr_t *)(cioc->frame.raw + cioc->sense_off);
5075 if (get_user(ptr, sense_cioc_ptr) ||
5076 put_user(compat_ptr(ptr), sense_ioc_ptr))
5080 for (i = 0; i < MAX_IOCTL_SGE; i++) {
5081 if (get_user(ptr, &cioc->sgl[i].iov_base) ||
5082 put_user(compat_ptr(ptr), &ioc->sgl[i].iov_base) ||
5083 copy_in_user(&ioc->sgl[i].iov_len,
5084 &cioc->sgl[i].iov_len, sizeof(compat_size_t)))
5088 error = megasas_mgmt_ioctl_fw(file, (unsigned long)ioc);
5090 if (copy_in_user(&cioc->frame.hdr.cmd_status,
5091 &ioc->frame.hdr.cmd_status, sizeof(u8))) {
5092 printk(KERN_DEBUG "megasas: error copy_in_user cmd_status\n");
5099 megasas_mgmt_compat_ioctl(struct file *file, unsigned int cmd,
5103 case MEGASAS_IOC_FIRMWARE32:
5104 return megasas_mgmt_compat_ioctl_fw(file, arg);
5105 case MEGASAS_IOC_GET_AEN:
5106 return megasas_mgmt_ioctl_aen(file, arg);
5114 * File operations structure for management interface
5116 static const struct file_operations megasas_mgmt_fops = {
5117 .owner = THIS_MODULE,
5118 .open = megasas_mgmt_open,
5119 .fasync = megasas_mgmt_fasync,
5120 .unlocked_ioctl = megasas_mgmt_ioctl,
5121 .poll = megasas_mgmt_poll,
5122 #ifdef CONFIG_COMPAT
5123 .compat_ioctl = megasas_mgmt_compat_ioctl,
5125 .llseek = noop_llseek,
5129 * PCI hotplug support registration structure
5131 static struct pci_driver megasas_pci_driver = {
5133 .name = "megaraid_sas",
5134 .id_table = megasas_pci_table,
5135 .probe = megasas_probe_one,
5136 .remove = megasas_detach_one,
5137 .suspend = megasas_suspend,
5138 .resume = megasas_resume,
5139 .shutdown = megasas_shutdown,
5143 * Sysfs driver attributes
5145 static ssize_t megasas_sysfs_show_version(struct device_driver *dd, char *buf)
5147 return snprintf(buf, strlen(MEGASAS_VERSION) + 2, "%s\n",
5151 static DRIVER_ATTR(version, S_IRUGO, megasas_sysfs_show_version, NULL);
5154 megasas_sysfs_show_release_date(struct device_driver *dd, char *buf)
5156 return snprintf(buf, strlen(MEGASAS_RELDATE) + 2, "%s\n",
5160 static DRIVER_ATTR(release_date, S_IRUGO, megasas_sysfs_show_release_date,
5164 megasas_sysfs_show_support_poll_for_event(struct device_driver *dd, char *buf)
5166 return sprintf(buf, "%u\n", support_poll_for_event);
5169 static DRIVER_ATTR(support_poll_for_event, S_IRUGO,
5170 megasas_sysfs_show_support_poll_for_event, NULL);
5173 megasas_sysfs_show_support_device_change(struct device_driver *dd, char *buf)
5175 return sprintf(buf, "%u\n", support_device_change);
5178 static DRIVER_ATTR(support_device_change, S_IRUGO,
5179 megasas_sysfs_show_support_device_change, NULL);
5182 megasas_sysfs_show_dbg_lvl(struct device_driver *dd, char *buf)
5184 return sprintf(buf, "%u\n", megasas_dbg_lvl);
5188 megasas_sysfs_set_dbg_lvl(struct device_driver *dd, const char *buf, size_t count)
5191 if(sscanf(buf,"%u",&megasas_dbg_lvl)<1){
5192 printk(KERN_ERR "megasas: could not set dbg_lvl\n");
5198 static DRIVER_ATTR(dbg_lvl, S_IRUGO|S_IWUSR, megasas_sysfs_show_dbg_lvl,
5199 megasas_sysfs_set_dbg_lvl);
5202 megasas_aen_polling(struct work_struct *work)
5204 struct megasas_aen_event *ev =
5205 container_of(work, struct megasas_aen_event, hotplug_work.work);
5206 struct megasas_instance *instance = ev->instance;
5207 union megasas_evt_class_locale class_locale;
5208 struct Scsi_Host *host;
5209 struct scsi_device *sdev1;
5212 int i, j, doscan = 0;
5217 printk(KERN_ERR "invalid instance!\n");
5221 instance->ev = NULL;
5222 host = instance->host;
5223 if (instance->evt_detail) {
5225 switch (instance->evt_detail->code) {
5226 case MR_EVT_PD_INSERTED:
5227 if (megasas_get_pd_list(instance) == 0) {
5228 for (i = 0; i < MEGASAS_MAX_PD_CHANNELS; i++) {
5230 j < MEGASAS_MAX_DEV_PER_CHANNEL;
5234 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
5237 scsi_device_lookup(host, i, j, 0);
5239 if (instance->pd_list[pd_index].driveState
5240 == MR_PD_STATE_SYSTEM) {
5242 scsi_add_device(host, i, j, 0);
5246 scsi_device_put(sdev1);
5254 case MR_EVT_PD_REMOVED:
5255 if (megasas_get_pd_list(instance) == 0) {
5256 for (i = 0; i < MEGASAS_MAX_PD_CHANNELS; i++) {
5258 j < MEGASAS_MAX_DEV_PER_CHANNEL;
5262 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
5265 scsi_device_lookup(host, i, j, 0);
5267 if (instance->pd_list[pd_index].driveState
5268 == MR_PD_STATE_SYSTEM) {
5270 scsi_device_put(sdev1);
5274 scsi_remove_device(sdev1);
5275 scsi_device_put(sdev1);
5284 case MR_EVT_LD_OFFLINE:
5285 case MR_EVT_CFG_CLEARED:
5286 case MR_EVT_LD_DELETED:
5287 megasas_get_ld_list(instance);
5288 for (i = 0; i < MEGASAS_MAX_LD_CHANNELS; i++) {
5290 j < MEGASAS_MAX_DEV_PER_CHANNEL;
5294 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
5296 sdev1 = scsi_device_lookup(host,
5297 i + MEGASAS_MAX_LD_CHANNELS,
5301 if (instance->ld_ids[ld_index] != 0xff) {
5303 scsi_device_put(sdev1);
5307 scsi_remove_device(sdev1);
5308 scsi_device_put(sdev1);
5315 case MR_EVT_LD_CREATED:
5316 megasas_get_ld_list(instance);
5317 for (i = 0; i < MEGASAS_MAX_LD_CHANNELS; i++) {
5319 j < MEGASAS_MAX_DEV_PER_CHANNEL;
5322 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
5324 sdev1 = scsi_device_lookup(host,
5325 i+MEGASAS_MAX_LD_CHANNELS,
5328 if (instance->ld_ids[ld_index] !=
5331 scsi_add_device(host,
5337 scsi_device_put(sdev1);
5343 case MR_EVT_CTRL_HOST_BUS_SCAN_REQUESTED:
5344 case MR_EVT_FOREIGN_CFG_IMPORTED:
5345 case MR_EVT_LD_STATE_CHANGE:
5353 printk(KERN_ERR "invalid evt_detail!\n");
5359 printk(KERN_INFO "scanning ...\n");
5360 megasas_get_pd_list(instance);
5361 for (i = 0; i < MEGASAS_MAX_PD_CHANNELS; i++) {
5362 for (j = 0; j < MEGASAS_MAX_DEV_PER_CHANNEL; j++) {
5363 pd_index = i*MEGASAS_MAX_DEV_PER_CHANNEL + j;
5364 sdev1 = scsi_device_lookup(host, i, j, 0);
5365 if (instance->pd_list[pd_index].driveState ==
5366 MR_PD_STATE_SYSTEM) {
5368 scsi_add_device(host, i, j, 0);
5371 scsi_device_put(sdev1);
5374 scsi_remove_device(sdev1);
5375 scsi_device_put(sdev1);
5381 megasas_get_ld_list(instance);
5382 for (i = 0; i < MEGASAS_MAX_LD_CHANNELS; i++) {
5383 for (j = 0; j < MEGASAS_MAX_DEV_PER_CHANNEL; j++) {
5385 (i * MEGASAS_MAX_DEV_PER_CHANNEL) + j;
5387 sdev1 = scsi_device_lookup(host,
5388 i+MEGASAS_MAX_LD_CHANNELS, j, 0);
5389 if (instance->ld_ids[ld_index] != 0xff) {
5391 scsi_add_device(host,
5395 scsi_device_put(sdev1);
5399 scsi_remove_device(sdev1);
5400 scsi_device_put(sdev1);
5407 if ( instance->aen_cmd != NULL ) {
5412 seq_num = instance->evt_detail->seq_num + 1;
5414 /* Register AEN with FW for latest sequence number plus 1 */
5415 class_locale.members.reserved = 0;
5416 class_locale.members.locale = MR_EVT_LOCALE_ALL;
5417 class_locale.members.class = MR_EVT_CLASS_DEBUG;
5418 mutex_lock(&instance->aen_mutex);
5419 error = megasas_register_aen(instance, seq_num,
5421 mutex_unlock(&instance->aen_mutex);
5424 printk(KERN_ERR "register aen failed error %x\n", error);
5430 * megasas_init - Driver load entry point
5432 static int __init megasas_init(void)
5437 * Announce driver version and other information
5439 printk(KERN_INFO "megasas: %s %s\n", MEGASAS_VERSION,
5440 MEGASAS_EXT_VERSION);
5442 spin_lock_init(&poll_aen_lock);
5444 support_poll_for_event = 2;
5445 support_device_change = 1;
5447 memset(&megasas_mgmt_info, 0, sizeof(megasas_mgmt_info));
5450 * Register character device node
5452 rval = register_chrdev(0, "megaraid_sas_ioctl", &megasas_mgmt_fops);
5455 printk(KERN_DEBUG "megasas: failed to open device node\n");
5459 megasas_mgmt_majorno = rval;
5462 * Register ourselves as PCI hotplug module
5464 rval = pci_register_driver(&megasas_pci_driver);
5467 printk(KERN_DEBUG "megasas: PCI hotplug regisration failed \n");
5471 rval = driver_create_file(&megasas_pci_driver.driver,
5472 &driver_attr_version);
5474 goto err_dcf_attr_ver;
5475 rval = driver_create_file(&megasas_pci_driver.driver,
5476 &driver_attr_release_date);
5478 goto err_dcf_rel_date;
5480 rval = driver_create_file(&megasas_pci_driver.driver,
5481 &driver_attr_support_poll_for_event);
5483 goto err_dcf_support_poll_for_event;
5485 rval = driver_create_file(&megasas_pci_driver.driver,
5486 &driver_attr_dbg_lvl);
5488 goto err_dcf_dbg_lvl;
5489 rval = driver_create_file(&megasas_pci_driver.driver,
5490 &driver_attr_support_device_change);
5492 goto err_dcf_support_device_change;
5496 err_dcf_support_device_change:
5497 driver_remove_file(&megasas_pci_driver.driver,
5498 &driver_attr_dbg_lvl);
5500 driver_remove_file(&megasas_pci_driver.driver,
5501 &driver_attr_support_poll_for_event);
5503 err_dcf_support_poll_for_event:
5504 driver_remove_file(&megasas_pci_driver.driver,
5505 &driver_attr_release_date);
5508 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
5510 pci_unregister_driver(&megasas_pci_driver);
5512 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
5517 * megasas_exit - Driver unload entry point
5519 static void __exit megasas_exit(void)
5521 driver_remove_file(&megasas_pci_driver.driver,
5522 &driver_attr_dbg_lvl);
5523 driver_remove_file(&megasas_pci_driver.driver,
5524 &driver_attr_support_poll_for_event);
5525 driver_remove_file(&megasas_pci_driver.driver,
5526 &driver_attr_support_device_change);
5527 driver_remove_file(&megasas_pci_driver.driver,
5528 &driver_attr_release_date);
5529 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
5531 pci_unregister_driver(&megasas_pci_driver);
5532 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
5535 module_init(megasas_init);
5536 module_exit(megasas_exit);