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 : 06.700.06.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_ld_list_query(struct megasas_instance
*instance
,
97 static int megasas_issue_init_mfi(struct megasas_instance
*instance
);
98 static int megasas_register_aen(struct megasas_instance
*instance
,
99 u32 seq_num
, u32 class_locale_word
);
101 * PCI ID table for all supported controllers
103 static struct pci_device_id megasas_pci_table
[] = {
105 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_SAS1064R
)},
107 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_SAS1078R
)},
109 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_SAS1078DE
)},
111 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_SAS1078GEN2
)},
113 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_SAS0079GEN2
)},
115 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_SAS0073SKINNY
)},
117 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_SAS0071SKINNY
)},
119 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_VERDE_ZCR
)},
120 /* xscale IOP, vega */
121 {PCI_DEVICE(PCI_VENDOR_ID_DELL
, PCI_DEVICE_ID_DELL_PERC5
)},
123 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_FUSION
)},
125 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_INVADER
)},
127 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_FURY
)},
132 MODULE_DEVICE_TABLE(pci
, megasas_pci_table
);
134 static int megasas_mgmt_majorno
;
135 static struct megasas_mgmt_info megasas_mgmt_info
;
136 static struct fasync_struct
*megasas_async_queue
;
137 static DEFINE_MUTEX(megasas_async_queue_mutex
);
139 static int megasas_poll_wait_aen
;
140 static DECLARE_WAIT_QUEUE_HEAD(megasas_poll_wait
);
141 static u32 support_poll_for_event
;
143 static u32 support_device_change
;
145 /* define lock for aen poll */
146 spinlock_t poll_aen_lock
;
149 megasas_complete_cmd(struct megasas_instance
*instance
, struct megasas_cmd
*cmd
,
152 megasas_read_fw_status_reg_gen2(struct megasas_register_set __iomem
*regs
);
154 megasas_adp_reset_gen2(struct megasas_instance
*instance
,
155 struct megasas_register_set __iomem
*reg_set
);
156 static irqreturn_t
megasas_isr(int irq
, void *devp
);
158 megasas_init_adapter_mfi(struct megasas_instance
*instance
);
160 megasas_build_and_issue_cmd(struct megasas_instance
*instance
,
161 struct scsi_cmnd
*scmd
);
162 static void megasas_complete_cmd_dpc(unsigned long instance_addr
);
164 megasas_release_fusion(struct megasas_instance
*instance
);
166 megasas_ioc_init_fusion(struct megasas_instance
*instance
);
168 megasas_free_cmds_fusion(struct megasas_instance
*instance
);
170 megasas_get_map_info(struct megasas_instance
*instance
);
172 megasas_sync_map_info(struct megasas_instance
*instance
);
174 wait_and_poll(struct megasas_instance
*instance
, struct megasas_cmd
*cmd
);
175 void megasas_reset_reply_desc(struct megasas_instance
*instance
);
176 int megasas_reset_fusion(struct Scsi_Host
*shost
);
177 void megasas_fusion_ocr_wq(struct work_struct
*work
);
180 megasas_issue_dcmd(struct megasas_instance
*instance
, struct megasas_cmd
*cmd
)
182 instance
->instancet
->fire_cmd(instance
,
183 cmd
->frame_phys_addr
, 0, instance
->reg_set
);
187 * megasas_get_cmd - Get a command from the free pool
188 * @instance: Adapter soft state
190 * Returns a free command from the pool
192 struct megasas_cmd
*megasas_get_cmd(struct megasas_instance
196 struct megasas_cmd
*cmd
= NULL
;
198 spin_lock_irqsave(&instance
->cmd_pool_lock
, flags
);
200 if (!list_empty(&instance
->cmd_pool
)) {
201 cmd
= list_entry((&instance
->cmd_pool
)->next
,
202 struct megasas_cmd
, list
);
203 list_del_init(&cmd
->list
);
205 printk(KERN_ERR
"megasas: Command pool empty!\n");
208 spin_unlock_irqrestore(&instance
->cmd_pool_lock
, flags
);
213 * megasas_return_cmd - Return a cmd to free command pool
214 * @instance: Adapter soft state
215 * @cmd: Command packet to be returned to free command pool
218 megasas_return_cmd(struct megasas_instance
*instance
, struct megasas_cmd
*cmd
)
222 spin_lock_irqsave(&instance
->cmd_pool_lock
, flags
);
225 cmd
->frame_count
= 0;
226 if ((instance
->pdev
->device
!= PCI_DEVICE_ID_LSI_FUSION
) &&
227 (instance
->pdev
->device
!= PCI_DEVICE_ID_LSI_INVADER
) &&
228 (instance
->pdev
->device
!= PCI_DEVICE_ID_LSI_FURY
) &&
230 cmd
->frame
->hdr
.cmd
= MFI_CMD_INVALID
;
231 list_add_tail(&cmd
->list
, &instance
->cmd_pool
);
233 spin_unlock_irqrestore(&instance
->cmd_pool_lock
, flags
);
238 * The following functions are defined for xscale
239 * (deviceid : 1064R, PERC5) controllers
243 * megasas_enable_intr_xscale - Enables interrupts
244 * @regs: MFI register set
247 megasas_enable_intr_xscale(struct megasas_instance
*instance
)
249 struct megasas_register_set __iomem
*regs
;
250 regs
= instance
->reg_set
;
251 writel(0, &(regs
)->outbound_intr_mask
);
253 /* Dummy readl to force pci flush */
254 readl(®s
->outbound_intr_mask
);
258 * megasas_disable_intr_xscale -Disables interrupt
259 * @regs: MFI register set
262 megasas_disable_intr_xscale(struct megasas_instance
*instance
)
264 struct megasas_register_set __iomem
*regs
;
266 regs
= instance
->reg_set
;
267 writel(mask
, ®s
->outbound_intr_mask
);
268 /* Dummy readl to force pci flush */
269 readl(®s
->outbound_intr_mask
);
273 * megasas_read_fw_status_reg_xscale - returns the current FW status value
274 * @regs: MFI register set
277 megasas_read_fw_status_reg_xscale(struct megasas_register_set __iomem
* regs
)
279 return readl(&(regs
)->outbound_msg_0
);
282 * megasas_clear_interrupt_xscale - Check & clear interrupt
283 * @regs: MFI register set
286 megasas_clear_intr_xscale(struct megasas_register_set __iomem
* regs
)
291 * Check if it is our interrupt
293 status
= readl(®s
->outbound_intr_status
);
295 if (status
& MFI_OB_INTR_STATUS_MASK
)
296 mfiStatus
= MFI_INTR_FLAG_REPLY_MESSAGE
;
297 if (status
& MFI_XSCALE_OMR0_CHANGE_INTERRUPT
)
298 mfiStatus
|= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE
;
301 * Clear the interrupt by writing back the same value
304 writel(status
, ®s
->outbound_intr_status
);
306 /* Dummy readl to force pci flush */
307 readl(®s
->outbound_intr_status
);
313 * megasas_fire_cmd_xscale - Sends command to the FW
314 * @frame_phys_addr : Physical address of cmd
315 * @frame_count : Number of frames for the command
316 * @regs : MFI register set
319 megasas_fire_cmd_xscale(struct megasas_instance
*instance
,
320 dma_addr_t frame_phys_addr
,
322 struct megasas_register_set __iomem
*regs
)
325 spin_lock_irqsave(&instance
->hba_lock
, flags
);
326 writel((frame_phys_addr
>> 3)|(frame_count
),
327 &(regs
)->inbound_queue_port
);
328 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
332 * megasas_adp_reset_xscale - For controller reset
333 * @regs: MFI register set
336 megasas_adp_reset_xscale(struct megasas_instance
*instance
,
337 struct megasas_register_set __iomem
*regs
)
341 writel(MFI_ADP_RESET
, ®s
->inbound_doorbell
);
343 for (i
= 0; i
< 3; i
++)
344 msleep(1000); /* sleep for 3 secs */
346 pci_read_config_dword(instance
->pdev
, MFI_1068_PCSR_OFFSET
, &pcidata
);
347 printk(KERN_NOTICE
"pcidata = %x\n", pcidata
);
349 printk(KERN_NOTICE
"mfi 1068 offset read=%x\n", pcidata
);
351 pci_write_config_dword(instance
->pdev
,
352 MFI_1068_PCSR_OFFSET
, pcidata
);
354 for (i
= 0; i
< 2; i
++)
355 msleep(1000); /* need to wait 2 secs again */
358 pci_read_config_dword(instance
->pdev
,
359 MFI_1068_FW_HANDSHAKE_OFFSET
, &pcidata
);
360 printk(KERN_NOTICE
"1068 offset handshake read=%x\n", pcidata
);
361 if ((pcidata
& 0xffff0000) == MFI_1068_FW_READY
) {
362 printk(KERN_NOTICE
"1068 offset pcidt=%x\n", pcidata
);
364 pci_write_config_dword(instance
->pdev
,
365 MFI_1068_FW_HANDSHAKE_OFFSET
, pcidata
);
372 * megasas_check_reset_xscale - For controller reset check
373 * @regs: MFI register set
376 megasas_check_reset_xscale(struct megasas_instance
*instance
,
377 struct megasas_register_set __iomem
*regs
)
380 if ((instance
->adprecovery
!= MEGASAS_HBA_OPERATIONAL
) &&
381 (le32_to_cpu(*instance
->consumer
) ==
382 MEGASAS_ADPRESET_INPROG_SIGN
))
387 static struct megasas_instance_template megasas_instance_template_xscale
= {
389 .fire_cmd
= megasas_fire_cmd_xscale
,
390 .enable_intr
= megasas_enable_intr_xscale
,
391 .disable_intr
= megasas_disable_intr_xscale
,
392 .clear_intr
= megasas_clear_intr_xscale
,
393 .read_fw_status_reg
= megasas_read_fw_status_reg_xscale
,
394 .adp_reset
= megasas_adp_reset_xscale
,
395 .check_reset
= megasas_check_reset_xscale
,
396 .service_isr
= megasas_isr
,
397 .tasklet
= megasas_complete_cmd_dpc
,
398 .init_adapter
= megasas_init_adapter_mfi
,
399 .build_and_issue_cmd
= megasas_build_and_issue_cmd
,
400 .issue_dcmd
= megasas_issue_dcmd
,
404 * This is the end of set of functions & definitions specific
405 * to xscale (deviceid : 1064R, PERC5) controllers
409 * The following functions are defined for ppc (deviceid : 0x60)
414 * megasas_enable_intr_ppc - Enables interrupts
415 * @regs: MFI register set
418 megasas_enable_intr_ppc(struct megasas_instance
*instance
)
420 struct megasas_register_set __iomem
*regs
;
421 regs
= instance
->reg_set
;
422 writel(0xFFFFFFFF, &(regs
)->outbound_doorbell_clear
);
424 writel(~0x80000000, &(regs
)->outbound_intr_mask
);
426 /* Dummy readl to force pci flush */
427 readl(®s
->outbound_intr_mask
);
431 * megasas_disable_intr_ppc - Disable interrupt
432 * @regs: MFI register set
435 megasas_disable_intr_ppc(struct megasas_instance
*instance
)
437 struct megasas_register_set __iomem
*regs
;
438 u32 mask
= 0xFFFFFFFF;
439 regs
= instance
->reg_set
;
440 writel(mask
, ®s
->outbound_intr_mask
);
441 /* Dummy readl to force pci flush */
442 readl(®s
->outbound_intr_mask
);
446 * megasas_read_fw_status_reg_ppc - returns the current FW status value
447 * @regs: MFI register set
450 megasas_read_fw_status_reg_ppc(struct megasas_register_set __iomem
* regs
)
452 return readl(&(regs
)->outbound_scratch_pad
);
456 * megasas_clear_interrupt_ppc - Check & clear interrupt
457 * @regs: MFI register set
460 megasas_clear_intr_ppc(struct megasas_register_set __iomem
* regs
)
462 u32 status
, mfiStatus
= 0;
465 * Check if it is our interrupt
467 status
= readl(®s
->outbound_intr_status
);
469 if (status
& MFI_REPLY_1078_MESSAGE_INTERRUPT
)
470 mfiStatus
= MFI_INTR_FLAG_REPLY_MESSAGE
;
472 if (status
& MFI_G2_OUTBOUND_DOORBELL_CHANGE_INTERRUPT
)
473 mfiStatus
|= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE
;
476 * Clear the interrupt by writing back the same value
478 writel(status
, ®s
->outbound_doorbell_clear
);
480 /* Dummy readl to force pci flush */
481 readl(®s
->outbound_doorbell_clear
);
487 * megasas_fire_cmd_ppc - Sends command to the FW
488 * @frame_phys_addr : Physical address of cmd
489 * @frame_count : Number of frames for the command
490 * @regs : MFI register set
493 megasas_fire_cmd_ppc(struct megasas_instance
*instance
,
494 dma_addr_t frame_phys_addr
,
496 struct megasas_register_set __iomem
*regs
)
499 spin_lock_irqsave(&instance
->hba_lock
, flags
);
500 writel((frame_phys_addr
| (frame_count
<<1))|1,
501 &(regs
)->inbound_queue_port
);
502 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
506 * megasas_check_reset_ppc - For controller reset check
507 * @regs: MFI register set
510 megasas_check_reset_ppc(struct megasas_instance
*instance
,
511 struct megasas_register_set __iomem
*regs
)
513 if (instance
->adprecovery
!= MEGASAS_HBA_OPERATIONAL
)
519 static struct megasas_instance_template megasas_instance_template_ppc
= {
521 .fire_cmd
= megasas_fire_cmd_ppc
,
522 .enable_intr
= megasas_enable_intr_ppc
,
523 .disable_intr
= megasas_disable_intr_ppc
,
524 .clear_intr
= megasas_clear_intr_ppc
,
525 .read_fw_status_reg
= megasas_read_fw_status_reg_ppc
,
526 .adp_reset
= megasas_adp_reset_xscale
,
527 .check_reset
= megasas_check_reset_ppc
,
528 .service_isr
= megasas_isr
,
529 .tasklet
= megasas_complete_cmd_dpc
,
530 .init_adapter
= megasas_init_adapter_mfi
,
531 .build_and_issue_cmd
= megasas_build_and_issue_cmd
,
532 .issue_dcmd
= megasas_issue_dcmd
,
536 * megasas_enable_intr_skinny - Enables interrupts
537 * @regs: MFI register set
540 megasas_enable_intr_skinny(struct megasas_instance
*instance
)
542 struct megasas_register_set __iomem
*regs
;
543 regs
= instance
->reg_set
;
544 writel(0xFFFFFFFF, &(regs
)->outbound_intr_mask
);
546 writel(~MFI_SKINNY_ENABLE_INTERRUPT_MASK
, &(regs
)->outbound_intr_mask
);
548 /* Dummy readl to force pci flush */
549 readl(®s
->outbound_intr_mask
);
553 * megasas_disable_intr_skinny - Disables interrupt
554 * @regs: MFI register set
557 megasas_disable_intr_skinny(struct megasas_instance
*instance
)
559 struct megasas_register_set __iomem
*regs
;
560 u32 mask
= 0xFFFFFFFF;
561 regs
= instance
->reg_set
;
562 writel(mask
, ®s
->outbound_intr_mask
);
563 /* Dummy readl to force pci flush */
564 readl(®s
->outbound_intr_mask
);
568 * megasas_read_fw_status_reg_skinny - returns the current FW status value
569 * @regs: MFI register set
572 megasas_read_fw_status_reg_skinny(struct megasas_register_set __iomem
*regs
)
574 return readl(&(regs
)->outbound_scratch_pad
);
578 * megasas_clear_interrupt_skinny - Check & clear interrupt
579 * @regs: MFI register set
582 megasas_clear_intr_skinny(struct megasas_register_set __iomem
*regs
)
588 * Check if it is our interrupt
590 status
= readl(®s
->outbound_intr_status
);
592 if (!(status
& MFI_SKINNY_ENABLE_INTERRUPT_MASK
)) {
597 * Check if it is our interrupt
599 if ((megasas_read_fw_status_reg_skinny(regs
) & MFI_STATE_MASK
) ==
601 mfiStatus
= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE
;
603 mfiStatus
= MFI_INTR_FLAG_REPLY_MESSAGE
;
606 * Clear the interrupt by writing back the same value
608 writel(status
, ®s
->outbound_intr_status
);
611 * dummy read to flush PCI
613 readl(®s
->outbound_intr_status
);
619 * megasas_fire_cmd_skinny - Sends command to the FW
620 * @frame_phys_addr : Physical address of cmd
621 * @frame_count : Number of frames for the command
622 * @regs : MFI register set
625 megasas_fire_cmd_skinny(struct megasas_instance
*instance
,
626 dma_addr_t frame_phys_addr
,
628 struct megasas_register_set __iomem
*regs
)
631 spin_lock_irqsave(&instance
->hba_lock
, flags
);
632 writel(upper_32_bits(frame_phys_addr
),
633 &(regs
)->inbound_high_queue_port
);
634 writel((lower_32_bits(frame_phys_addr
) | (frame_count
<<1))|1,
635 &(regs
)->inbound_low_queue_port
);
636 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
640 * megasas_check_reset_skinny - For controller reset check
641 * @regs: MFI register set
644 megasas_check_reset_skinny(struct megasas_instance
*instance
,
645 struct megasas_register_set __iomem
*regs
)
647 if (instance
->adprecovery
!= MEGASAS_HBA_OPERATIONAL
)
653 static struct megasas_instance_template megasas_instance_template_skinny
= {
655 .fire_cmd
= megasas_fire_cmd_skinny
,
656 .enable_intr
= megasas_enable_intr_skinny
,
657 .disable_intr
= megasas_disable_intr_skinny
,
658 .clear_intr
= megasas_clear_intr_skinny
,
659 .read_fw_status_reg
= megasas_read_fw_status_reg_skinny
,
660 .adp_reset
= megasas_adp_reset_gen2
,
661 .check_reset
= megasas_check_reset_skinny
,
662 .service_isr
= megasas_isr
,
663 .tasklet
= megasas_complete_cmd_dpc
,
664 .init_adapter
= megasas_init_adapter_mfi
,
665 .build_and_issue_cmd
= megasas_build_and_issue_cmd
,
666 .issue_dcmd
= megasas_issue_dcmd
,
671 * The following functions are defined for gen2 (deviceid : 0x78 0x79)
676 * megasas_enable_intr_gen2 - Enables interrupts
677 * @regs: MFI register set
680 megasas_enable_intr_gen2(struct megasas_instance
*instance
)
682 struct megasas_register_set __iomem
*regs
;
683 regs
= instance
->reg_set
;
684 writel(0xFFFFFFFF, &(regs
)->outbound_doorbell_clear
);
686 /* write ~0x00000005 (4 & 1) to the intr mask*/
687 writel(~MFI_GEN2_ENABLE_INTERRUPT_MASK
, &(regs
)->outbound_intr_mask
);
689 /* Dummy readl to force pci flush */
690 readl(®s
->outbound_intr_mask
);
694 * megasas_disable_intr_gen2 - Disables interrupt
695 * @regs: MFI register set
698 megasas_disable_intr_gen2(struct megasas_instance
*instance
)
700 struct megasas_register_set __iomem
*regs
;
701 u32 mask
= 0xFFFFFFFF;
702 regs
= instance
->reg_set
;
703 writel(mask
, ®s
->outbound_intr_mask
);
704 /* Dummy readl to force pci flush */
705 readl(®s
->outbound_intr_mask
);
709 * megasas_read_fw_status_reg_gen2 - returns the current FW status value
710 * @regs: MFI register set
713 megasas_read_fw_status_reg_gen2(struct megasas_register_set __iomem
*regs
)
715 return readl(&(regs
)->outbound_scratch_pad
);
719 * megasas_clear_interrupt_gen2 - Check & clear interrupt
720 * @regs: MFI register set
723 megasas_clear_intr_gen2(struct megasas_register_set __iomem
*regs
)
728 * Check if it is our interrupt
730 status
= readl(®s
->outbound_intr_status
);
732 if (status
& MFI_INTR_FLAG_REPLY_MESSAGE
) {
733 mfiStatus
= MFI_INTR_FLAG_REPLY_MESSAGE
;
735 if (status
& MFI_G2_OUTBOUND_DOORBELL_CHANGE_INTERRUPT
) {
736 mfiStatus
|= MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE
;
740 * Clear the interrupt by writing back the same value
743 writel(status
, ®s
->outbound_doorbell_clear
);
745 /* Dummy readl to force pci flush */
746 readl(®s
->outbound_intr_status
);
751 * megasas_fire_cmd_gen2 - Sends command to the FW
752 * @frame_phys_addr : Physical address of cmd
753 * @frame_count : Number of frames for the command
754 * @regs : MFI register set
757 megasas_fire_cmd_gen2(struct megasas_instance
*instance
,
758 dma_addr_t frame_phys_addr
,
760 struct megasas_register_set __iomem
*regs
)
763 spin_lock_irqsave(&instance
->hba_lock
, flags
);
764 writel((frame_phys_addr
| (frame_count
<<1))|1,
765 &(regs
)->inbound_queue_port
);
766 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
770 * megasas_adp_reset_gen2 - For controller reset
771 * @regs: MFI register set
774 megasas_adp_reset_gen2(struct megasas_instance
*instance
,
775 struct megasas_register_set __iomem
*reg_set
)
779 u32
*seq_offset
= ®_set
->seq_offset
;
780 u32
*hostdiag_offset
= ®_set
->host_diag
;
782 if (instance
->instancet
== &megasas_instance_template_skinny
) {
783 seq_offset
= ®_set
->fusion_seq_offset
;
784 hostdiag_offset
= ®_set
->fusion_host_diag
;
787 writel(0, seq_offset
);
788 writel(4, seq_offset
);
789 writel(0xb, seq_offset
);
790 writel(2, seq_offset
);
791 writel(7, seq_offset
);
792 writel(0xd, seq_offset
);
796 HostDiag
= (u32
)readl(hostdiag_offset
);
798 while ( !( HostDiag
& DIAG_WRITE_ENABLE
) ) {
800 HostDiag
= (u32
)readl(hostdiag_offset
);
801 printk(KERN_NOTICE
"RESETGEN2: retry=%x, hostdiag=%x\n",
809 printk(KERN_NOTICE
"ADP_RESET_GEN2: HostDiag=%x\n", HostDiag
);
811 writel((HostDiag
| DIAG_RESET_ADAPTER
), hostdiag_offset
);
815 HostDiag
= (u32
)readl(hostdiag_offset
);
816 while ( ( HostDiag
& DIAG_RESET_ADAPTER
) ) {
818 HostDiag
= (u32
)readl(hostdiag_offset
);
819 printk(KERN_NOTICE
"RESET_GEN2: retry=%x, hostdiag=%x\n",
830 * megasas_check_reset_gen2 - For controller reset check
831 * @regs: MFI register set
834 megasas_check_reset_gen2(struct megasas_instance
*instance
,
835 struct megasas_register_set __iomem
*regs
)
837 if (instance
->adprecovery
!= MEGASAS_HBA_OPERATIONAL
) {
844 static struct megasas_instance_template megasas_instance_template_gen2
= {
846 .fire_cmd
= megasas_fire_cmd_gen2
,
847 .enable_intr
= megasas_enable_intr_gen2
,
848 .disable_intr
= megasas_disable_intr_gen2
,
849 .clear_intr
= megasas_clear_intr_gen2
,
850 .read_fw_status_reg
= megasas_read_fw_status_reg_gen2
,
851 .adp_reset
= megasas_adp_reset_gen2
,
852 .check_reset
= megasas_check_reset_gen2
,
853 .service_isr
= megasas_isr
,
854 .tasklet
= megasas_complete_cmd_dpc
,
855 .init_adapter
= megasas_init_adapter_mfi
,
856 .build_and_issue_cmd
= megasas_build_and_issue_cmd
,
857 .issue_dcmd
= megasas_issue_dcmd
,
861 * This is the end of set of functions & definitions
862 * specific to gen2 (deviceid : 0x78, 0x79) controllers
866 * Template added for TB (Fusion)
868 extern struct megasas_instance_template megasas_instance_template_fusion
;
871 * megasas_issue_polled - Issues a polling command
872 * @instance: Adapter soft state
873 * @cmd: Command packet to be issued
875 * For polling, MFI requires the cmd_status to be set to 0xFF before posting.
878 megasas_issue_polled(struct megasas_instance
*instance
, struct megasas_cmd
*cmd
)
881 struct megasas_header
*frame_hdr
= &cmd
->frame
->hdr
;
883 frame_hdr
->cmd_status
= MFI_CMD_STATUS_POLL_MODE
;
884 frame_hdr
->flags
|= cpu_to_le16(MFI_FRAME_DONT_POST_IN_REPLY_QUEUE
);
887 * Issue the frame using inbound queue port
889 instance
->instancet
->issue_dcmd(instance
, cmd
);
892 * Wait for cmd_status to change
894 return wait_and_poll(instance
, cmd
);
898 * megasas_issue_blocked_cmd - Synchronous wrapper around regular FW cmds
899 * @instance: Adapter soft state
900 * @cmd: Command to be issued
902 * This function waits on an event for the command to be returned from ISR.
903 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
904 * Used to issue ioctl commands.
907 megasas_issue_blocked_cmd(struct megasas_instance
*instance
,
908 struct megasas_cmd
*cmd
)
910 cmd
->cmd_status
= ENODATA
;
912 instance
->instancet
->issue_dcmd(instance
, cmd
);
914 wait_event(instance
->int_cmd_wait_q
, cmd
->cmd_status
!= ENODATA
);
920 * megasas_issue_blocked_abort_cmd - Aborts previously issued cmd
921 * @instance: Adapter soft state
922 * @cmd_to_abort: Previously issued cmd to be aborted
924 * MFI firmware can abort previously issued AEN command (automatic event
925 * notification). The megasas_issue_blocked_abort_cmd() issues such abort
926 * cmd and waits for return status.
927 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
930 megasas_issue_blocked_abort_cmd(struct megasas_instance
*instance
,
931 struct megasas_cmd
*cmd_to_abort
)
933 struct megasas_cmd
*cmd
;
934 struct megasas_abort_frame
*abort_fr
;
936 cmd
= megasas_get_cmd(instance
);
941 abort_fr
= &cmd
->frame
->abort
;
944 * Prepare and issue the abort frame
946 abort_fr
->cmd
= MFI_CMD_ABORT
;
947 abort_fr
->cmd_status
= 0xFF;
948 abort_fr
->flags
= cpu_to_le16(0);
949 abort_fr
->abort_context
= cpu_to_le32(cmd_to_abort
->index
);
950 abort_fr
->abort_mfi_phys_addr_lo
=
951 cpu_to_le32(lower_32_bits(cmd_to_abort
->frame_phys_addr
));
952 abort_fr
->abort_mfi_phys_addr_hi
=
953 cpu_to_le32(upper_32_bits(cmd_to_abort
->frame_phys_addr
));
956 cmd
->cmd_status
= 0xFF;
958 instance
->instancet
->issue_dcmd(instance
, cmd
);
961 * Wait for this cmd to complete
963 wait_event(instance
->abort_cmd_wait_q
, cmd
->cmd_status
!= 0xFF);
966 megasas_return_cmd(instance
, cmd
);
971 * megasas_make_sgl32 - Prepares 32-bit SGL
972 * @instance: Adapter soft state
973 * @scp: SCSI command from the mid-layer
974 * @mfi_sgl: SGL to be filled in
976 * If successful, this function returns the number of SG elements. Otherwise,
980 megasas_make_sgl32(struct megasas_instance
*instance
, struct scsi_cmnd
*scp
,
981 union megasas_sgl
*mfi_sgl
)
985 struct scatterlist
*os_sgl
;
987 sge_count
= scsi_dma_map(scp
);
988 BUG_ON(sge_count
< 0);
991 scsi_for_each_sg(scp
, os_sgl
, sge_count
, i
) {
992 mfi_sgl
->sge32
[i
].length
= cpu_to_le32(sg_dma_len(os_sgl
));
993 mfi_sgl
->sge32
[i
].phys_addr
= cpu_to_le32(sg_dma_address(os_sgl
));
1000 * megasas_make_sgl64 - Prepares 64-bit SGL
1001 * @instance: Adapter soft state
1002 * @scp: SCSI command from the mid-layer
1003 * @mfi_sgl: SGL to be filled in
1005 * If successful, this function returns the number of SG elements. Otherwise,
1009 megasas_make_sgl64(struct megasas_instance
*instance
, struct scsi_cmnd
*scp
,
1010 union megasas_sgl
*mfi_sgl
)
1014 struct scatterlist
*os_sgl
;
1016 sge_count
= scsi_dma_map(scp
);
1017 BUG_ON(sge_count
< 0);
1020 scsi_for_each_sg(scp
, os_sgl
, sge_count
, i
) {
1021 mfi_sgl
->sge64
[i
].length
= cpu_to_le32(sg_dma_len(os_sgl
));
1022 mfi_sgl
->sge64
[i
].phys_addr
= cpu_to_le64(sg_dma_address(os_sgl
));
1029 * megasas_make_sgl_skinny - Prepares IEEE SGL
1030 * @instance: Adapter soft state
1031 * @scp: SCSI command from the mid-layer
1032 * @mfi_sgl: SGL to be filled in
1034 * If successful, this function returns the number of SG elements. Otherwise,
1038 megasas_make_sgl_skinny(struct megasas_instance
*instance
,
1039 struct scsi_cmnd
*scp
, union megasas_sgl
*mfi_sgl
)
1043 struct scatterlist
*os_sgl
;
1045 sge_count
= scsi_dma_map(scp
);
1048 scsi_for_each_sg(scp
, os_sgl
, sge_count
, i
) {
1049 mfi_sgl
->sge_skinny
[i
].length
=
1050 cpu_to_le32(sg_dma_len(os_sgl
));
1051 mfi_sgl
->sge_skinny
[i
].phys_addr
=
1052 cpu_to_le64(sg_dma_address(os_sgl
));
1053 mfi_sgl
->sge_skinny
[i
].flag
= cpu_to_le32(0);
1060 * megasas_get_frame_count - Computes the number of frames
1061 * @frame_type : type of frame- io or pthru frame
1062 * @sge_count : number of sg elements
1064 * Returns the number of frames required for numnber of sge's (sge_count)
1067 static u32
megasas_get_frame_count(struct megasas_instance
*instance
,
1068 u8 sge_count
, u8 frame_type
)
1075 sge_sz
= (IS_DMA64
) ? sizeof(struct megasas_sge64
) :
1076 sizeof(struct megasas_sge32
);
1078 if (instance
->flag_ieee
) {
1079 sge_sz
= sizeof(struct megasas_sge_skinny
);
1083 * Main frame can contain 2 SGEs for 64-bit SGLs and
1084 * 3 SGEs for 32-bit SGLs for ldio &
1085 * 1 SGEs for 64-bit SGLs and
1086 * 2 SGEs for 32-bit SGLs for pthru frame
1088 if (unlikely(frame_type
== PTHRU_FRAME
)) {
1089 if (instance
->flag_ieee
== 1) {
1090 num_cnt
= sge_count
- 1;
1091 } else if (IS_DMA64
)
1092 num_cnt
= sge_count
- 1;
1094 num_cnt
= sge_count
- 2;
1096 if (instance
->flag_ieee
== 1) {
1097 num_cnt
= sge_count
- 1;
1098 } else if (IS_DMA64
)
1099 num_cnt
= sge_count
- 2;
1101 num_cnt
= sge_count
- 3;
1105 sge_bytes
= sge_sz
* num_cnt
;
1107 frame_count
= (sge_bytes
/ MEGAMFI_FRAME_SIZE
) +
1108 ((sge_bytes
% MEGAMFI_FRAME_SIZE
) ? 1 : 0) ;
1113 if (frame_count
> 7)
1119 * megasas_build_dcdb - Prepares a direct cdb (DCDB) command
1120 * @instance: Adapter soft state
1121 * @scp: SCSI command
1122 * @cmd: Command to be prepared in
1124 * This function prepares CDB commands. These are typcially pass-through
1125 * commands to the devices.
1128 megasas_build_dcdb(struct megasas_instance
*instance
, struct scsi_cmnd
*scp
,
1129 struct megasas_cmd
*cmd
)
1134 struct megasas_pthru_frame
*pthru
;
1136 is_logical
= MEGASAS_IS_LOGICAL(scp
);
1137 device_id
= MEGASAS_DEV_INDEX(instance
, scp
);
1138 pthru
= (struct megasas_pthru_frame
*)cmd
->frame
;
1140 if (scp
->sc_data_direction
== PCI_DMA_TODEVICE
)
1141 flags
= MFI_FRAME_DIR_WRITE
;
1142 else if (scp
->sc_data_direction
== PCI_DMA_FROMDEVICE
)
1143 flags
= MFI_FRAME_DIR_READ
;
1144 else if (scp
->sc_data_direction
== PCI_DMA_NONE
)
1145 flags
= MFI_FRAME_DIR_NONE
;
1147 if (instance
->flag_ieee
== 1) {
1148 flags
|= MFI_FRAME_IEEE
;
1152 * Prepare the DCDB frame
1154 pthru
->cmd
= (is_logical
) ? MFI_CMD_LD_SCSI_IO
: MFI_CMD_PD_SCSI_IO
;
1155 pthru
->cmd_status
= 0x0;
1156 pthru
->scsi_status
= 0x0;
1157 pthru
->target_id
= device_id
;
1158 pthru
->lun
= scp
->device
->lun
;
1159 pthru
->cdb_len
= scp
->cmd_len
;
1162 pthru
->flags
= cpu_to_le16(flags
);
1163 pthru
->data_xfer_len
= cpu_to_le32(scsi_bufflen(scp
));
1165 memcpy(pthru
->cdb
, scp
->cmnd
, scp
->cmd_len
);
1168 * If the command is for the tape device, set the
1169 * pthru timeout to the os layer timeout value.
1171 if (scp
->device
->type
== TYPE_TAPE
) {
1172 if ((scp
->request
->timeout
/ HZ
) > 0xFFFF)
1173 pthru
->timeout
= 0xFFFF;
1175 pthru
->timeout
= cpu_to_le16(scp
->request
->timeout
/ HZ
);
1181 if (instance
->flag_ieee
== 1) {
1182 pthru
->flags
|= cpu_to_le16(MFI_FRAME_SGL64
);
1183 pthru
->sge_count
= megasas_make_sgl_skinny(instance
, scp
,
1185 } else if (IS_DMA64
) {
1186 pthru
->flags
|= cpu_to_le16(MFI_FRAME_SGL64
);
1187 pthru
->sge_count
= megasas_make_sgl64(instance
, scp
,
1190 pthru
->sge_count
= megasas_make_sgl32(instance
, scp
,
1193 if (pthru
->sge_count
> instance
->max_num_sge
) {
1194 printk(KERN_ERR
"megasas: DCDB two many SGE NUM=%x\n",
1200 * Sense info specific
1202 pthru
->sense_len
= SCSI_SENSE_BUFFERSIZE
;
1203 pthru
->sense_buf_phys_addr_hi
=
1204 cpu_to_le32(upper_32_bits(cmd
->sense_phys_addr
));
1205 pthru
->sense_buf_phys_addr_lo
=
1206 cpu_to_le32(lower_32_bits(cmd
->sense_phys_addr
));
1209 * Compute the total number of frames this command consumes. FW uses
1210 * this number to pull sufficient number of frames from host memory.
1212 cmd
->frame_count
= megasas_get_frame_count(instance
, pthru
->sge_count
,
1215 return cmd
->frame_count
;
1219 * megasas_build_ldio - Prepares IOs to logical devices
1220 * @instance: Adapter soft state
1221 * @scp: SCSI command
1222 * @cmd: Command to be prepared
1224 * Frames (and accompanying SGLs) for regular SCSI IOs use this function.
1227 megasas_build_ldio(struct megasas_instance
*instance
, struct scsi_cmnd
*scp
,
1228 struct megasas_cmd
*cmd
)
1231 u8 sc
= scp
->cmnd
[0];
1233 struct megasas_io_frame
*ldio
;
1235 device_id
= MEGASAS_DEV_INDEX(instance
, scp
);
1236 ldio
= (struct megasas_io_frame
*)cmd
->frame
;
1238 if (scp
->sc_data_direction
== PCI_DMA_TODEVICE
)
1239 flags
= MFI_FRAME_DIR_WRITE
;
1240 else if (scp
->sc_data_direction
== PCI_DMA_FROMDEVICE
)
1241 flags
= MFI_FRAME_DIR_READ
;
1243 if (instance
->flag_ieee
== 1) {
1244 flags
|= MFI_FRAME_IEEE
;
1248 * Prepare the Logical IO frame: 2nd bit is zero for all read cmds
1250 ldio
->cmd
= (sc
& 0x02) ? MFI_CMD_LD_WRITE
: MFI_CMD_LD_READ
;
1251 ldio
->cmd_status
= 0x0;
1252 ldio
->scsi_status
= 0x0;
1253 ldio
->target_id
= device_id
;
1255 ldio
->reserved_0
= 0;
1257 ldio
->flags
= cpu_to_le16(flags
);
1258 ldio
->start_lba_hi
= 0;
1259 ldio
->access_byte
= (scp
->cmd_len
!= 6) ? scp
->cmnd
[1] : 0;
1262 * 6-byte READ(0x08) or WRITE(0x0A) cdb
1264 if (scp
->cmd_len
== 6) {
1265 ldio
->lba_count
= cpu_to_le32((u32
) scp
->cmnd
[4]);
1266 ldio
->start_lba_lo
= cpu_to_le32(((u32
) scp
->cmnd
[1] << 16) |
1267 ((u32
) scp
->cmnd
[2] << 8) |
1268 (u32
) scp
->cmnd
[3]);
1270 ldio
->start_lba_lo
&= cpu_to_le32(0x1FFFFF);
1274 * 10-byte READ(0x28) or WRITE(0x2A) cdb
1276 else if (scp
->cmd_len
== 10) {
1277 ldio
->lba_count
= cpu_to_le32((u32
) scp
->cmnd
[8] |
1278 ((u32
) scp
->cmnd
[7] << 8));
1279 ldio
->start_lba_lo
= cpu_to_le32(((u32
) scp
->cmnd
[2] << 24) |
1280 ((u32
) scp
->cmnd
[3] << 16) |
1281 ((u32
) scp
->cmnd
[4] << 8) |
1282 (u32
) scp
->cmnd
[5]);
1286 * 12-byte READ(0xA8) or WRITE(0xAA) cdb
1288 else if (scp
->cmd_len
== 12) {
1289 ldio
->lba_count
= cpu_to_le32(((u32
) scp
->cmnd
[6] << 24) |
1290 ((u32
) scp
->cmnd
[7] << 16) |
1291 ((u32
) scp
->cmnd
[8] << 8) |
1292 (u32
) scp
->cmnd
[9]);
1294 ldio
->start_lba_lo
= cpu_to_le32(((u32
) scp
->cmnd
[2] << 24) |
1295 ((u32
) scp
->cmnd
[3] << 16) |
1296 ((u32
) scp
->cmnd
[4] << 8) |
1297 (u32
) scp
->cmnd
[5]);
1301 * 16-byte READ(0x88) or WRITE(0x8A) cdb
1303 else if (scp
->cmd_len
== 16) {
1304 ldio
->lba_count
= cpu_to_le32(((u32
) scp
->cmnd
[10] << 24) |
1305 ((u32
) scp
->cmnd
[11] << 16) |
1306 ((u32
) scp
->cmnd
[12] << 8) |
1307 (u32
) scp
->cmnd
[13]);
1309 ldio
->start_lba_lo
= cpu_to_le32(((u32
) scp
->cmnd
[6] << 24) |
1310 ((u32
) scp
->cmnd
[7] << 16) |
1311 ((u32
) scp
->cmnd
[8] << 8) |
1312 (u32
) scp
->cmnd
[9]);
1314 ldio
->start_lba_hi
= cpu_to_le32(((u32
) scp
->cmnd
[2] << 24) |
1315 ((u32
) scp
->cmnd
[3] << 16) |
1316 ((u32
) scp
->cmnd
[4] << 8) |
1317 (u32
) scp
->cmnd
[5]);
1324 if (instance
->flag_ieee
) {
1325 ldio
->flags
|= cpu_to_le16(MFI_FRAME_SGL64
);
1326 ldio
->sge_count
= megasas_make_sgl_skinny(instance
, scp
,
1328 } else if (IS_DMA64
) {
1329 ldio
->flags
|= cpu_to_le16(MFI_FRAME_SGL64
);
1330 ldio
->sge_count
= megasas_make_sgl64(instance
, scp
, &ldio
->sgl
);
1332 ldio
->sge_count
= megasas_make_sgl32(instance
, scp
, &ldio
->sgl
);
1334 if (ldio
->sge_count
> instance
->max_num_sge
) {
1335 printk(KERN_ERR
"megasas: build_ld_io: sge_count = %x\n",
1341 * Sense info specific
1343 ldio
->sense_len
= SCSI_SENSE_BUFFERSIZE
;
1344 ldio
->sense_buf_phys_addr_hi
= 0;
1345 ldio
->sense_buf_phys_addr_lo
= cpu_to_le32(cmd
->sense_phys_addr
);
1348 * Compute the total number of frames this command consumes. FW uses
1349 * this number to pull sufficient number of frames from host memory.
1351 cmd
->frame_count
= megasas_get_frame_count(instance
,
1352 ldio
->sge_count
, IO_FRAME
);
1354 return cmd
->frame_count
;
1358 * megasas_is_ldio - Checks if the cmd is for logical drive
1359 * @scmd: SCSI command
1361 * Called by megasas_queue_command to find out if the command to be queued
1362 * is a logical drive command
1364 inline int megasas_is_ldio(struct scsi_cmnd
*cmd
)
1366 if (!MEGASAS_IS_LOGICAL(cmd
))
1368 switch (cmd
->cmnd
[0]) {
1384 * megasas_dump_pending_frames - Dumps the frame address of all pending cmds
1386 * @instance: Adapter soft state
1389 megasas_dump_pending_frames(struct megasas_instance
*instance
)
1391 struct megasas_cmd
*cmd
;
1393 union megasas_sgl
*mfi_sgl
;
1394 struct megasas_io_frame
*ldio
;
1395 struct megasas_pthru_frame
*pthru
;
1397 u32 max_cmd
= instance
->max_fw_cmds
;
1399 printk(KERN_ERR
"\nmegasas[%d]: Dumping Frame Phys Address of all pending cmds in FW\n",instance
->host
->host_no
);
1400 printk(KERN_ERR
"megasas[%d]: Total OS Pending cmds : %d\n",instance
->host
->host_no
,atomic_read(&instance
->fw_outstanding
));
1402 printk(KERN_ERR
"\nmegasas[%d]: 64 bit SGLs were sent to FW\n",instance
->host
->host_no
);
1404 printk(KERN_ERR
"\nmegasas[%d]: 32 bit SGLs were sent to FW\n",instance
->host
->host_no
);
1406 printk(KERN_ERR
"megasas[%d]: Pending OS cmds in FW : \n",instance
->host
->host_no
);
1407 for (i
= 0; i
< max_cmd
; i
++) {
1408 cmd
= instance
->cmd_list
[i
];
1411 printk(KERN_ERR
"megasas[%d]: Frame addr :0x%08lx : ",instance
->host
->host_no
,(unsigned long)cmd
->frame_phys_addr
);
1412 if (megasas_is_ldio(cmd
->scmd
)){
1413 ldio
= (struct megasas_io_frame
*)cmd
->frame
;
1414 mfi_sgl
= &ldio
->sgl
;
1415 sgcount
= ldio
->sge_count
;
1416 printk(KERN_ERR
"megasas[%d]: frame count : 0x%x, Cmd : 0x%x, Tgt id : 0x%x,"
1417 " lba lo : 0x%x, lba_hi : 0x%x, sense_buf addr : 0x%x,sge count : 0x%x\n",
1418 instance
->host
->host_no
, cmd
->frame_count
, ldio
->cmd
, ldio
->target_id
,
1419 le32_to_cpu(ldio
->start_lba_lo
), le32_to_cpu(ldio
->start_lba_hi
),
1420 le32_to_cpu(ldio
->sense_buf_phys_addr_lo
), sgcount
);
1423 pthru
= (struct megasas_pthru_frame
*) cmd
->frame
;
1424 mfi_sgl
= &pthru
->sgl
;
1425 sgcount
= pthru
->sge_count
;
1426 printk(KERN_ERR
"megasas[%d]: frame count : 0x%x, Cmd : 0x%x, Tgt id : 0x%x, "
1427 "lun : 0x%x, cdb_len : 0x%x, data xfer len : 0x%x, sense_buf addr : 0x%x,sge count : 0x%x\n",
1428 instance
->host
->host_no
, cmd
->frame_count
, pthru
->cmd
, pthru
->target_id
,
1429 pthru
->lun
, pthru
->cdb_len
, le32_to_cpu(pthru
->data_xfer_len
),
1430 le32_to_cpu(pthru
->sense_buf_phys_addr_lo
), sgcount
);
1432 if(megasas_dbg_lvl
& MEGASAS_DBG_LVL
){
1433 for (n
= 0; n
< sgcount
; n
++){
1435 printk(KERN_ERR
"megasas: sgl len : 0x%x, sgl addr : 0x%llx ",
1436 le32_to_cpu(mfi_sgl
->sge64
[n
].length
),
1437 le64_to_cpu(mfi_sgl
->sge64
[n
].phys_addr
));
1439 printk(KERN_ERR
"megasas: sgl len : 0x%x, sgl addr : 0x%x ",
1440 le32_to_cpu(mfi_sgl
->sge32
[n
].length
),
1441 le32_to_cpu(mfi_sgl
->sge32
[n
].phys_addr
));
1444 printk(KERN_ERR
"\n");
1446 printk(KERN_ERR
"\nmegasas[%d]: Pending Internal cmds in FW : \n",instance
->host
->host_no
);
1447 for (i
= 0; i
< max_cmd
; i
++) {
1449 cmd
= instance
->cmd_list
[i
];
1451 if(cmd
->sync_cmd
== 1){
1452 printk(KERN_ERR
"0x%08lx : ", (unsigned long)cmd
->frame_phys_addr
);
1455 printk(KERN_ERR
"megasas[%d]: Dumping Done.\n\n",instance
->host
->host_no
);
1459 megasas_build_and_issue_cmd(struct megasas_instance
*instance
,
1460 struct scsi_cmnd
*scmd
)
1462 struct megasas_cmd
*cmd
;
1465 cmd
= megasas_get_cmd(instance
);
1467 return SCSI_MLQUEUE_HOST_BUSY
;
1470 * Logical drive command
1472 if (megasas_is_ldio(scmd
))
1473 frame_count
= megasas_build_ldio(instance
, scmd
, cmd
);
1475 frame_count
= megasas_build_dcdb(instance
, scmd
, cmd
);
1478 goto out_return_cmd
;
1481 scmd
->SCp
.ptr
= (char *)cmd
;
1484 * Issue the command to the FW
1486 atomic_inc(&instance
->fw_outstanding
);
1488 instance
->instancet
->fire_cmd(instance
, cmd
->frame_phys_addr
,
1489 cmd
->frame_count
-1, instance
->reg_set
);
1493 megasas_return_cmd(instance
, cmd
);
1499 * megasas_queue_command - Queue entry point
1500 * @scmd: SCSI command to be queued
1501 * @done: Callback entry point
1504 megasas_queue_command_lck(struct scsi_cmnd
*scmd
, void (*done
) (struct scsi_cmnd
*))
1506 struct megasas_instance
*instance
;
1507 unsigned long flags
;
1509 instance
= (struct megasas_instance
*)
1510 scmd
->device
->host
->hostdata
;
1512 if (instance
->issuepend_done
== 0)
1513 return SCSI_MLQUEUE_HOST_BUSY
;
1515 spin_lock_irqsave(&instance
->hba_lock
, flags
);
1517 if (instance
->adprecovery
== MEGASAS_HW_CRITICAL_ERROR
) {
1518 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
1519 scmd
->result
= DID_ERROR
<< 16;
1524 if (instance
->adprecovery
!= MEGASAS_HBA_OPERATIONAL
) {
1525 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
1526 return SCSI_MLQUEUE_HOST_BUSY
;
1529 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
1531 scmd
->scsi_done
= done
;
1534 if (MEGASAS_IS_LOGICAL(scmd
) &&
1535 (scmd
->device
->id
>= MEGASAS_MAX_LD
|| scmd
->device
->lun
)) {
1536 scmd
->result
= DID_BAD_TARGET
<< 16;
1540 switch (scmd
->cmnd
[0]) {
1541 case SYNCHRONIZE_CACHE
:
1543 * FW takes care of flush cache on its own
1544 * No need to send it down
1546 scmd
->result
= DID_OK
<< 16;
1552 if (instance
->instancet
->build_and_issue_cmd(instance
, scmd
)) {
1553 printk(KERN_ERR
"megasas: Err returned from build_and_issue_cmd\n");
1554 return SCSI_MLQUEUE_HOST_BUSY
;
1564 static DEF_SCSI_QCMD(megasas_queue_command
)
1566 static struct megasas_instance
*megasas_lookup_instance(u16 host_no
)
1570 for (i
= 0; i
< megasas_mgmt_info
.max_index
; i
++) {
1572 if ((megasas_mgmt_info
.instance
[i
]) &&
1573 (megasas_mgmt_info
.instance
[i
]->host
->host_no
== host_no
))
1574 return megasas_mgmt_info
.instance
[i
];
1580 static int megasas_slave_configure(struct scsi_device
*sdev
)
1583 struct megasas_instance
*instance
;
1585 instance
= megasas_lookup_instance(sdev
->host
->host_no
);
1588 * Don't export physical disk devices to the disk driver.
1590 * FIXME: Currently we don't export them to the midlayer at all.
1591 * That will be fixed once LSI engineers have audited the
1592 * firmware for possible issues.
1594 if (sdev
->channel
< MEGASAS_MAX_PD_CHANNELS
&&
1595 sdev
->type
== TYPE_DISK
) {
1596 pd_index
= (sdev
->channel
* MEGASAS_MAX_DEV_PER_CHANNEL
) +
1598 if (instance
->pd_list
[pd_index
].driveState
==
1599 MR_PD_STATE_SYSTEM
) {
1600 blk_queue_rq_timeout(sdev
->request_queue
,
1601 MEGASAS_DEFAULT_CMD_TIMEOUT
* HZ
);
1608 * The RAID firmware may require extended timeouts.
1610 blk_queue_rq_timeout(sdev
->request_queue
,
1611 MEGASAS_DEFAULT_CMD_TIMEOUT
* HZ
);
1615 static int megasas_slave_alloc(struct scsi_device
*sdev
)
1618 struct megasas_instance
*instance
;
1619 instance
= megasas_lookup_instance(sdev
->host
->host_no
);
1620 if ((sdev
->channel
< MEGASAS_MAX_PD_CHANNELS
) &&
1621 (sdev
->type
== TYPE_DISK
)) {
1623 * Open the OS scan to the SYSTEM PD
1626 (sdev
->channel
* MEGASAS_MAX_DEV_PER_CHANNEL
) +
1628 if ((instance
->pd_list
[pd_index
].driveState
==
1629 MR_PD_STATE_SYSTEM
) &&
1630 (instance
->pd_list
[pd_index
].driveType
==
1639 void megaraid_sas_kill_hba(struct megasas_instance
*instance
)
1641 if ((instance
->pdev
->device
== PCI_DEVICE_ID_LSI_SAS0073SKINNY
) ||
1642 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_SAS0071SKINNY
) ||
1643 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FUSION
) ||
1644 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_INVADER
) ||
1645 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FURY
)) {
1646 writel(MFI_STOP_ADP
, &instance
->reg_set
->doorbell
);
1648 writel(MFI_STOP_ADP
, &instance
->reg_set
->inbound_doorbell
);
1653 * megasas_check_and_restore_queue_depth - Check if queue depth needs to be
1654 * restored to max value
1655 * @instance: Adapter soft state
1659 megasas_check_and_restore_queue_depth(struct megasas_instance
*instance
)
1661 unsigned long flags
;
1662 if (instance
->flag
& MEGASAS_FW_BUSY
1663 && time_after(jiffies
, instance
->last_time
+ 5 * HZ
)
1664 && atomic_read(&instance
->fw_outstanding
) <
1665 instance
->throttlequeuedepth
+ 1) {
1667 spin_lock_irqsave(instance
->host
->host_lock
, flags
);
1668 instance
->flag
&= ~MEGASAS_FW_BUSY
;
1669 if (instance
->is_imr
) {
1670 instance
->host
->can_queue
=
1671 instance
->max_fw_cmds
- MEGASAS_SKINNY_INT_CMDS
;
1673 instance
->host
->can_queue
=
1674 instance
->max_fw_cmds
- MEGASAS_INT_CMDS
;
1676 spin_unlock_irqrestore(instance
->host
->host_lock
, flags
);
1681 * megasas_complete_cmd_dpc - Returns FW's controller structure
1682 * @instance_addr: Address of adapter soft state
1684 * Tasklet to complete cmds
1686 static void megasas_complete_cmd_dpc(unsigned long instance_addr
)
1691 struct megasas_cmd
*cmd
;
1692 struct megasas_instance
*instance
=
1693 (struct megasas_instance
*)instance_addr
;
1694 unsigned long flags
;
1696 /* If we have already declared adapter dead, donot complete cmds */
1697 if (instance
->adprecovery
== MEGASAS_HW_CRITICAL_ERROR
)
1700 spin_lock_irqsave(&instance
->completion_lock
, flags
);
1702 producer
= le32_to_cpu(*instance
->producer
);
1703 consumer
= le32_to_cpu(*instance
->consumer
);
1705 while (consumer
!= producer
) {
1706 context
= le32_to_cpu(instance
->reply_queue
[consumer
]);
1707 if (context
>= instance
->max_fw_cmds
) {
1708 printk(KERN_ERR
"Unexpected context value %x\n",
1713 cmd
= instance
->cmd_list
[context
];
1715 megasas_complete_cmd(instance
, cmd
, DID_OK
);
1718 if (consumer
== (instance
->max_fw_cmds
+ 1)) {
1723 *instance
->consumer
= cpu_to_le32(producer
);
1725 spin_unlock_irqrestore(&instance
->completion_lock
, flags
);
1728 * Check if we can restore can_queue
1730 megasas_check_and_restore_queue_depth(instance
);
1734 megasas_internal_reset_defer_cmds(struct megasas_instance
*instance
);
1737 process_fw_state_change_wq(struct work_struct
*work
);
1739 void megasas_do_ocr(struct megasas_instance
*instance
)
1741 if ((instance
->pdev
->device
== PCI_DEVICE_ID_LSI_SAS1064R
) ||
1742 (instance
->pdev
->device
== PCI_DEVICE_ID_DELL_PERC5
) ||
1743 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_VERDE_ZCR
)) {
1744 *instance
->consumer
= cpu_to_le32(MEGASAS_ADPRESET_INPROG_SIGN
);
1746 instance
->instancet
->disable_intr(instance
);
1747 instance
->adprecovery
= MEGASAS_ADPRESET_SM_INFAULT
;
1748 instance
->issuepend_done
= 0;
1750 atomic_set(&instance
->fw_outstanding
, 0);
1751 megasas_internal_reset_defer_cmds(instance
);
1752 process_fw_state_change_wq(&instance
->work_init
);
1756 * megasas_wait_for_outstanding - Wait for all outstanding cmds
1757 * @instance: Adapter soft state
1759 * This function waits for up to MEGASAS_RESET_WAIT_TIME seconds for FW to
1760 * complete all its outstanding commands. Returns error if one or more IOs
1761 * are pending after this time period. It also marks the controller dead.
1763 static int megasas_wait_for_outstanding(struct megasas_instance
*instance
)
1767 u32 wait_time
= MEGASAS_RESET_WAIT_TIME
;
1769 unsigned long flags
;
1770 struct list_head clist_local
;
1771 struct megasas_cmd
*reset_cmd
;
1773 u8 kill_adapter_flag
;
1775 spin_lock_irqsave(&instance
->hba_lock
, flags
);
1776 adprecovery
= instance
->adprecovery
;
1777 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
1779 if (adprecovery
!= MEGASAS_HBA_OPERATIONAL
) {
1781 INIT_LIST_HEAD(&clist_local
);
1782 spin_lock_irqsave(&instance
->hba_lock
, flags
);
1783 list_splice_init(&instance
->internal_reset_pending_q
,
1785 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
1787 printk(KERN_NOTICE
"megasas: HBA reset wait ...\n");
1788 for (i
= 0; i
< wait_time
; i
++) {
1790 spin_lock_irqsave(&instance
->hba_lock
, flags
);
1791 adprecovery
= instance
->adprecovery
;
1792 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
1793 if (adprecovery
== MEGASAS_HBA_OPERATIONAL
)
1797 if (adprecovery
!= MEGASAS_HBA_OPERATIONAL
) {
1798 printk(KERN_NOTICE
"megasas: reset: Stopping HBA.\n");
1799 spin_lock_irqsave(&instance
->hba_lock
, flags
);
1800 instance
->adprecovery
= MEGASAS_HW_CRITICAL_ERROR
;
1801 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
1806 while (!list_empty(&clist_local
)) {
1807 reset_cmd
= list_entry((&clist_local
)->next
,
1808 struct megasas_cmd
, list
);
1809 list_del_init(&reset_cmd
->list
);
1810 if (reset_cmd
->scmd
) {
1811 reset_cmd
->scmd
->result
= DID_RESET
<< 16;
1812 printk(KERN_NOTICE
"%d:%p reset [%02x]\n",
1813 reset_index
, reset_cmd
,
1814 reset_cmd
->scmd
->cmnd
[0]);
1816 reset_cmd
->scmd
->scsi_done(reset_cmd
->scmd
);
1817 megasas_return_cmd(instance
, reset_cmd
);
1818 } else if (reset_cmd
->sync_cmd
) {
1819 printk(KERN_NOTICE
"megasas:%p synch cmds"
1823 reset_cmd
->cmd_status
= ENODATA
;
1824 instance
->instancet
->fire_cmd(instance
,
1825 reset_cmd
->frame_phys_addr
,
1826 0, instance
->reg_set
);
1828 printk(KERN_NOTICE
"megasas: %p unexpected"
1838 for (i
= 0; i
< resetwaittime
; i
++) {
1840 int outstanding
= atomic_read(&instance
->fw_outstanding
);
1845 if (!(i
% MEGASAS_RESET_NOTICE_INTERVAL
)) {
1846 printk(KERN_NOTICE
"megasas: [%2d]waiting for %d "
1847 "commands to complete\n",i
,outstanding
);
1849 * Call cmd completion routine. Cmd to be
1850 * be completed directly without depending on isr.
1852 megasas_complete_cmd_dpc((unsigned long)instance
);
1859 kill_adapter_flag
= 0;
1861 fw_state
= instance
->instancet
->read_fw_status_reg(
1862 instance
->reg_set
) & MFI_STATE_MASK
;
1863 if ((fw_state
== MFI_STATE_FAULT
) &&
1864 (instance
->disableOnlineCtrlReset
== 0)) {
1866 kill_adapter_flag
= 2;
1869 megasas_do_ocr(instance
);
1870 kill_adapter_flag
= 1;
1872 /* wait for 1 secs to let FW finish the pending cmds */
1878 if (atomic_read(&instance
->fw_outstanding
) &&
1879 !kill_adapter_flag
) {
1880 if (instance
->disableOnlineCtrlReset
== 0) {
1882 megasas_do_ocr(instance
);
1884 /* wait for 5 secs to let FW finish the pending cmds */
1885 for (i
= 0; i
< wait_time
; i
++) {
1887 atomic_read(&instance
->fw_outstanding
);
1895 if (atomic_read(&instance
->fw_outstanding
) ||
1896 (kill_adapter_flag
== 2)) {
1897 printk(KERN_NOTICE
"megaraid_sas: pending cmds after reset\n");
1899 * Send signal to FW to stop processing any pending cmds.
1900 * The controller will be taken offline by the OS now.
1902 if ((instance
->pdev
->device
==
1903 PCI_DEVICE_ID_LSI_SAS0073SKINNY
) ||
1904 (instance
->pdev
->device
==
1905 PCI_DEVICE_ID_LSI_SAS0071SKINNY
)) {
1906 writel(MFI_STOP_ADP
,
1907 &instance
->reg_set
->doorbell
);
1909 writel(MFI_STOP_ADP
,
1910 &instance
->reg_set
->inbound_doorbell
);
1912 megasas_dump_pending_frames(instance
);
1913 spin_lock_irqsave(&instance
->hba_lock
, flags
);
1914 instance
->adprecovery
= MEGASAS_HW_CRITICAL_ERROR
;
1915 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
1919 printk(KERN_NOTICE
"megaraid_sas: no pending cmds after reset\n");
1925 * megasas_generic_reset - Generic reset routine
1926 * @scmd: Mid-layer SCSI command
1928 * This routine implements a generic reset handler for device, bus and host
1929 * reset requests. Device, bus and host specific reset handlers can use this
1930 * function after they do their specific tasks.
1932 static int megasas_generic_reset(struct scsi_cmnd
*scmd
)
1935 struct megasas_instance
*instance
;
1937 instance
= (struct megasas_instance
*)scmd
->device
->host
->hostdata
;
1939 scmd_printk(KERN_NOTICE
, scmd
, "megasas: RESET cmd=%x retries=%x\n",
1940 scmd
->cmnd
[0], scmd
->retries
);
1942 if (instance
->adprecovery
== MEGASAS_HW_CRITICAL_ERROR
) {
1943 printk(KERN_ERR
"megasas: cannot recover from previous reset "
1948 ret_val
= megasas_wait_for_outstanding(instance
);
1949 if (ret_val
== SUCCESS
)
1950 printk(KERN_NOTICE
"megasas: reset successful \n");
1952 printk(KERN_ERR
"megasas: failed to do reset\n");
1958 * megasas_reset_timer - quiesce the adapter if required
1961 * Sets the FW busy flag and reduces the host->can_queue if the
1962 * cmd has not been completed within the timeout period.
1965 blk_eh_timer_return
megasas_reset_timer(struct scsi_cmnd
*scmd
)
1967 struct megasas_instance
*instance
;
1968 unsigned long flags
;
1970 if (time_after(jiffies
, scmd
->jiffies_at_alloc
+
1971 (MEGASAS_DEFAULT_CMD_TIMEOUT
* 2) * HZ
)) {
1972 return BLK_EH_NOT_HANDLED
;
1975 instance
= (struct megasas_instance
*)scmd
->device
->host
->hostdata
;
1976 if (!(instance
->flag
& MEGASAS_FW_BUSY
)) {
1977 /* FW is busy, throttle IO */
1978 spin_lock_irqsave(instance
->host
->host_lock
, flags
);
1980 instance
->host
->can_queue
= instance
->throttlequeuedepth
;
1981 instance
->last_time
= jiffies
;
1982 instance
->flag
|= MEGASAS_FW_BUSY
;
1984 spin_unlock_irqrestore(instance
->host
->host_lock
, flags
);
1986 return BLK_EH_RESET_TIMER
;
1990 * megasas_reset_device - Device reset handler entry point
1992 static int megasas_reset_device(struct scsi_cmnd
*scmd
)
1997 * First wait for all commands to complete
1999 ret
= megasas_generic_reset(scmd
);
2005 * megasas_reset_bus_host - Bus & host reset handler entry point
2007 static int megasas_reset_bus_host(struct scsi_cmnd
*scmd
)
2010 struct megasas_instance
*instance
;
2011 instance
= (struct megasas_instance
*)scmd
->device
->host
->hostdata
;
2014 * First wait for all commands to complete
2016 if ((instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FUSION
) ||
2017 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_INVADER
) ||
2018 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FURY
))
2019 ret
= megasas_reset_fusion(scmd
->device
->host
);
2021 ret
= megasas_generic_reset(scmd
);
2027 * megasas_bios_param - Returns disk geometry for a disk
2028 * @sdev: device handle
2029 * @bdev: block device
2030 * @capacity: drive capacity
2031 * @geom: geometry parameters
2034 megasas_bios_param(struct scsi_device
*sdev
, struct block_device
*bdev
,
2035 sector_t capacity
, int geom
[])
2041 /* Default heads (64) & sectors (32) */
2045 tmp
= heads
* sectors
;
2046 cylinders
= capacity
;
2048 sector_div(cylinders
, tmp
);
2051 * Handle extended translation size for logical drives > 1Gb
2054 if (capacity
>= 0x200000) {
2057 tmp
= heads
*sectors
;
2058 cylinders
= capacity
;
2059 sector_div(cylinders
, tmp
);
2064 geom
[2] = cylinders
;
2069 static void megasas_aen_polling(struct work_struct
*work
);
2072 * megasas_service_aen - Processes an event notification
2073 * @instance: Adapter soft state
2074 * @cmd: AEN command completed by the ISR
2076 * For AEN, driver sends a command down to FW that is held by the FW till an
2077 * event occurs. When an event of interest occurs, FW completes the command
2078 * that it was previously holding.
2080 * This routines sends SIGIO signal to processes that have registered with the
2084 megasas_service_aen(struct megasas_instance
*instance
, struct megasas_cmd
*cmd
)
2086 unsigned long flags
;
2088 * Don't signal app if it is just an aborted previously registered aen
2090 if ((!cmd
->abort_aen
) && (instance
->unload
== 0)) {
2091 spin_lock_irqsave(&poll_aen_lock
, flags
);
2092 megasas_poll_wait_aen
= 1;
2093 spin_unlock_irqrestore(&poll_aen_lock
, flags
);
2094 wake_up(&megasas_poll_wait
);
2095 kill_fasync(&megasas_async_queue
, SIGIO
, POLL_IN
);
2100 instance
->aen_cmd
= NULL
;
2101 megasas_return_cmd(instance
, cmd
);
2103 if ((instance
->unload
== 0) &&
2104 ((instance
->issuepend_done
== 1))) {
2105 struct megasas_aen_event
*ev
;
2106 ev
= kzalloc(sizeof(*ev
), GFP_ATOMIC
);
2108 printk(KERN_ERR
"megasas_service_aen: out of memory\n");
2110 ev
->instance
= instance
;
2112 INIT_DELAYED_WORK(&ev
->hotplug_work
,
2113 megasas_aen_polling
);
2114 schedule_delayed_work(&ev
->hotplug_work
, 0);
2119 static int megasas_change_queue_depth(struct scsi_device
*sdev
,
2120 int queue_depth
, int reason
)
2122 if (reason
!= SCSI_QDEPTH_DEFAULT
)
2125 if (queue_depth
> sdev
->host
->can_queue
)
2126 queue_depth
= sdev
->host
->can_queue
;
2127 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
),
2134 * Scsi host template for megaraid_sas driver
2136 static struct scsi_host_template megasas_template
= {
2138 .module
= THIS_MODULE
,
2139 .name
= "LSI SAS based MegaRAID driver",
2140 .proc_name
= "megaraid_sas",
2141 .slave_configure
= megasas_slave_configure
,
2142 .slave_alloc
= megasas_slave_alloc
,
2143 .queuecommand
= megasas_queue_command
,
2144 .eh_device_reset_handler
= megasas_reset_device
,
2145 .eh_bus_reset_handler
= megasas_reset_bus_host
,
2146 .eh_host_reset_handler
= megasas_reset_bus_host
,
2147 .eh_timed_out
= megasas_reset_timer
,
2148 .bios_param
= megasas_bios_param
,
2149 .use_clustering
= ENABLE_CLUSTERING
,
2150 .change_queue_depth
= megasas_change_queue_depth
,
2155 * megasas_complete_int_cmd - Completes an internal command
2156 * @instance: Adapter soft state
2157 * @cmd: Command to be completed
2159 * The megasas_issue_blocked_cmd() function waits for a command to complete
2160 * after it issues a command. This function wakes up that waiting routine by
2161 * calling wake_up() on the wait queue.
2164 megasas_complete_int_cmd(struct megasas_instance
*instance
,
2165 struct megasas_cmd
*cmd
)
2167 cmd
->cmd_status
= cmd
->frame
->io
.cmd_status
;
2169 if (cmd
->cmd_status
== ENODATA
) {
2170 cmd
->cmd_status
= 0;
2172 wake_up(&instance
->int_cmd_wait_q
);
2176 * megasas_complete_abort - Completes aborting a command
2177 * @instance: Adapter soft state
2178 * @cmd: Cmd that was issued to abort another cmd
2180 * The megasas_issue_blocked_abort_cmd() function waits on abort_cmd_wait_q
2181 * after it issues an abort on a previously issued command. This function
2182 * wakes up all functions waiting on the same wait queue.
2185 megasas_complete_abort(struct megasas_instance
*instance
,
2186 struct megasas_cmd
*cmd
)
2188 if (cmd
->sync_cmd
) {
2190 cmd
->cmd_status
= 0;
2191 wake_up(&instance
->abort_cmd_wait_q
);
2198 * megasas_complete_cmd - Completes a command
2199 * @instance: Adapter soft state
2200 * @cmd: Command to be completed
2201 * @alt_status: If non-zero, use this value as status to
2202 * SCSI mid-layer instead of the value returned
2203 * by the FW. This should be used if caller wants
2204 * an alternate status (as in the case of aborted
2208 megasas_complete_cmd(struct megasas_instance
*instance
, struct megasas_cmd
*cmd
,
2212 struct megasas_header
*hdr
= &cmd
->frame
->hdr
;
2213 unsigned long flags
;
2214 struct fusion_context
*fusion
= instance
->ctrl_context
;
2217 /* flag for the retry reset */
2218 cmd
->retry_for_fw_reset
= 0;
2221 cmd
->scmd
->SCp
.ptr
= NULL
;
2224 case MFI_CMD_INVALID
:
2225 /* Some older 1068 controller FW may keep a pended
2226 MR_DCMD_CTRL_EVENT_GET_INFO left over from the main kernel
2227 when booting the kdump kernel. Ignore this command to
2228 prevent a kernel panic on shutdown of the kdump kernel. */
2229 printk(KERN_WARNING
"megaraid_sas: MFI_CMD_INVALID command "
2231 printk(KERN_WARNING
"megaraid_sas: If you have a controller "
2232 "other than PERC5, please upgrade your firmware.\n");
2234 case MFI_CMD_PD_SCSI_IO
:
2235 case MFI_CMD_LD_SCSI_IO
:
2238 * MFI_CMD_PD_SCSI_IO and MFI_CMD_LD_SCSI_IO could have been
2239 * issued either through an IO path or an IOCTL path. If it
2240 * was via IOCTL, we will send it to internal completion.
2242 if (cmd
->sync_cmd
) {
2244 megasas_complete_int_cmd(instance
, cmd
);
2248 case MFI_CMD_LD_READ
:
2249 case MFI_CMD_LD_WRITE
:
2252 cmd
->scmd
->result
= alt_status
<< 16;
2258 atomic_dec(&instance
->fw_outstanding
);
2260 scsi_dma_unmap(cmd
->scmd
);
2261 cmd
->scmd
->scsi_done(cmd
->scmd
);
2262 megasas_return_cmd(instance
, cmd
);
2267 switch (hdr
->cmd_status
) {
2270 cmd
->scmd
->result
= DID_OK
<< 16;
2273 case MFI_STAT_SCSI_IO_FAILED
:
2274 case MFI_STAT_LD_INIT_IN_PROGRESS
:
2276 (DID_ERROR
<< 16) | hdr
->scsi_status
;
2279 case MFI_STAT_SCSI_DONE_WITH_ERROR
:
2281 cmd
->scmd
->result
= (DID_OK
<< 16) | hdr
->scsi_status
;
2283 if (hdr
->scsi_status
== SAM_STAT_CHECK_CONDITION
) {
2284 memset(cmd
->scmd
->sense_buffer
, 0,
2285 SCSI_SENSE_BUFFERSIZE
);
2286 memcpy(cmd
->scmd
->sense_buffer
, cmd
->sense
,
2289 cmd
->scmd
->result
|= DRIVER_SENSE
<< 24;
2294 case MFI_STAT_LD_OFFLINE
:
2295 case MFI_STAT_DEVICE_NOT_FOUND
:
2296 cmd
->scmd
->result
= DID_BAD_TARGET
<< 16;
2300 printk(KERN_DEBUG
"megasas: MFI FW status %#x\n",
2302 cmd
->scmd
->result
= DID_ERROR
<< 16;
2306 atomic_dec(&instance
->fw_outstanding
);
2308 scsi_dma_unmap(cmd
->scmd
);
2309 cmd
->scmd
->scsi_done(cmd
->scmd
);
2310 megasas_return_cmd(instance
, cmd
);
2317 opcode
= le32_to_cpu(cmd
->frame
->dcmd
.opcode
);
2318 /* Check for LD map update */
2319 if ((opcode
== MR_DCMD_LD_MAP_GET_INFO
)
2320 && (cmd
->frame
->dcmd
.mbox
.b
[1] == 1)) {
2321 fusion
->fast_path_io
= 0;
2322 spin_lock_irqsave(instance
->host
->host_lock
, flags
);
2323 if (cmd
->frame
->hdr
.cmd_status
!= 0) {
2324 if (cmd
->frame
->hdr
.cmd_status
!=
2326 printk(KERN_WARNING
"megasas: map sync"
2327 "failed, status = 0x%x.\n",
2328 cmd
->frame
->hdr
.cmd_status
);
2330 megasas_return_cmd(instance
, cmd
);
2331 spin_unlock_irqrestore(
2332 instance
->host
->host_lock
,
2338 megasas_return_cmd(instance
, cmd
);
2341 * Set fast path IO to ZERO.
2342 * Validate Map will set proper value.
2343 * Meanwhile all IOs will go as LD IO.
2345 if (MR_ValidateMapInfo(instance
))
2346 fusion
->fast_path_io
= 1;
2348 fusion
->fast_path_io
= 0;
2349 megasas_sync_map_info(instance
);
2350 spin_unlock_irqrestore(instance
->host
->host_lock
,
2354 if (opcode
== MR_DCMD_CTRL_EVENT_GET_INFO
||
2355 opcode
== MR_DCMD_CTRL_EVENT_GET
) {
2356 spin_lock_irqsave(&poll_aen_lock
, flags
);
2357 megasas_poll_wait_aen
= 0;
2358 spin_unlock_irqrestore(&poll_aen_lock
, flags
);
2362 * See if got an event notification
2364 if (opcode
== MR_DCMD_CTRL_EVENT_WAIT
)
2365 megasas_service_aen(instance
, cmd
);
2367 megasas_complete_int_cmd(instance
, cmd
);
2373 * Cmd issued to abort another cmd returned
2375 megasas_complete_abort(instance
, cmd
);
2379 printk("megasas: Unknown command completed! [0x%X]\n",
2386 * megasas_issue_pending_cmds_again - issue all pending cmds
2387 * in FW again because of the fw reset
2388 * @instance: Adapter soft state
2391 megasas_issue_pending_cmds_again(struct megasas_instance
*instance
)
2393 struct megasas_cmd
*cmd
;
2394 struct list_head clist_local
;
2395 union megasas_evt_class_locale class_locale
;
2396 unsigned long flags
;
2399 INIT_LIST_HEAD(&clist_local
);
2400 spin_lock_irqsave(&instance
->hba_lock
, flags
);
2401 list_splice_init(&instance
->internal_reset_pending_q
, &clist_local
);
2402 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
2404 while (!list_empty(&clist_local
)) {
2405 cmd
= list_entry((&clist_local
)->next
,
2406 struct megasas_cmd
, list
);
2407 list_del_init(&cmd
->list
);
2409 if (cmd
->sync_cmd
|| cmd
->scmd
) {
2410 printk(KERN_NOTICE
"megaraid_sas: command %p, %p:%d"
2411 "detected to be pending while HBA reset.\n",
2412 cmd
, cmd
->scmd
, cmd
->sync_cmd
);
2414 cmd
->retry_for_fw_reset
++;
2416 if (cmd
->retry_for_fw_reset
== 3) {
2417 printk(KERN_NOTICE
"megaraid_sas: cmd %p, %p:%d"
2418 "was tried multiple times during reset."
2419 "Shutting down the HBA\n",
2420 cmd
, cmd
->scmd
, cmd
->sync_cmd
);
2421 megaraid_sas_kill_hba(instance
);
2423 instance
->adprecovery
=
2424 MEGASAS_HW_CRITICAL_ERROR
;
2429 if (cmd
->sync_cmd
== 1) {
2431 printk(KERN_NOTICE
"megaraid_sas: unexpected"
2432 "cmd attached to internal command!\n");
2434 printk(KERN_NOTICE
"megasas: %p synchronous cmd"
2435 "on the internal reset queue,"
2436 "issue it again.\n", cmd
);
2437 cmd
->cmd_status
= ENODATA
;
2438 instance
->instancet
->fire_cmd(instance
,
2439 cmd
->frame_phys_addr
,
2440 0, instance
->reg_set
);
2441 } else if (cmd
->scmd
) {
2442 printk(KERN_NOTICE
"megasas: %p scsi cmd [%02x]"
2443 "detected on the internal queue, issue again.\n",
2444 cmd
, cmd
->scmd
->cmnd
[0]);
2446 atomic_inc(&instance
->fw_outstanding
);
2447 instance
->instancet
->fire_cmd(instance
,
2448 cmd
->frame_phys_addr
,
2449 cmd
->frame_count
-1, instance
->reg_set
);
2451 printk(KERN_NOTICE
"megasas: %p unexpected cmd on the"
2452 "internal reset defer list while re-issue!!\n",
2457 if (instance
->aen_cmd
) {
2458 printk(KERN_NOTICE
"megaraid_sas: aen_cmd in def process\n");
2459 megasas_return_cmd(instance
, instance
->aen_cmd
);
2461 instance
->aen_cmd
= NULL
;
2465 * Initiate AEN (Asynchronous Event Notification)
2467 seq_num
= instance
->last_seq_num
;
2468 class_locale
.members
.reserved
= 0;
2469 class_locale
.members
.locale
= MR_EVT_LOCALE_ALL
;
2470 class_locale
.members
.class = MR_EVT_CLASS_DEBUG
;
2472 megasas_register_aen(instance
, seq_num
, class_locale
.word
);
2476 * Move the internal reset pending commands to a deferred queue.
2478 * We move the commands pending at internal reset time to a
2479 * pending queue. This queue would be flushed after successful
2480 * completion of the internal reset sequence. if the internal reset
2481 * did not complete in time, the kernel reset handler would flush
2485 megasas_internal_reset_defer_cmds(struct megasas_instance
*instance
)
2487 struct megasas_cmd
*cmd
;
2489 u32 max_cmd
= instance
->max_fw_cmds
;
2491 unsigned long flags
;
2494 spin_lock_irqsave(&instance
->cmd_pool_lock
, flags
);
2495 for (i
= 0; i
< max_cmd
; i
++) {
2496 cmd
= instance
->cmd_list
[i
];
2497 if (cmd
->sync_cmd
== 1 || cmd
->scmd
) {
2498 printk(KERN_NOTICE
"megasas: moving cmd[%d]:%p:%d:%p"
2499 "on the defer queue as internal\n",
2500 defer_index
, cmd
, cmd
->sync_cmd
, cmd
->scmd
);
2502 if (!list_empty(&cmd
->list
)) {
2503 printk(KERN_NOTICE
"megaraid_sas: ERROR while"
2504 " moving this cmd:%p, %d %p, it was"
2505 "discovered on some list?\n",
2506 cmd
, cmd
->sync_cmd
, cmd
->scmd
);
2508 list_del_init(&cmd
->list
);
2511 list_add_tail(&cmd
->list
,
2512 &instance
->internal_reset_pending_q
);
2515 spin_unlock_irqrestore(&instance
->cmd_pool_lock
, flags
);
2520 process_fw_state_change_wq(struct work_struct
*work
)
2522 struct megasas_instance
*instance
=
2523 container_of(work
, struct megasas_instance
, work_init
);
2525 unsigned long flags
;
2527 if (instance
->adprecovery
!= MEGASAS_ADPRESET_SM_INFAULT
) {
2528 printk(KERN_NOTICE
"megaraid_sas: error, recovery st %x \n",
2529 instance
->adprecovery
);
2533 if (instance
->adprecovery
== MEGASAS_ADPRESET_SM_INFAULT
) {
2534 printk(KERN_NOTICE
"megaraid_sas: FW detected to be in fault"
2535 "state, restarting it...\n");
2537 instance
->instancet
->disable_intr(instance
);
2538 atomic_set(&instance
->fw_outstanding
, 0);
2540 atomic_set(&instance
->fw_reset_no_pci_access
, 1);
2541 instance
->instancet
->adp_reset(instance
, instance
->reg_set
);
2542 atomic_set(&instance
->fw_reset_no_pci_access
, 0 );
2544 printk(KERN_NOTICE
"megaraid_sas: FW restarted successfully,"
2545 "initiating next stage...\n");
2547 printk(KERN_NOTICE
"megaraid_sas: HBA recovery state machine,"
2548 "state 2 starting...\n");
2550 /*waitting for about 20 second before start the second init*/
2551 for (wait
= 0; wait
< 30; wait
++) {
2555 if (megasas_transition_to_ready(instance
, 1)) {
2556 printk(KERN_NOTICE
"megaraid_sas:adapter not ready\n");
2558 megaraid_sas_kill_hba(instance
);
2559 instance
->adprecovery
= MEGASAS_HW_CRITICAL_ERROR
;
2563 if ((instance
->pdev
->device
== PCI_DEVICE_ID_LSI_SAS1064R
) ||
2564 (instance
->pdev
->device
== PCI_DEVICE_ID_DELL_PERC5
) ||
2565 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_VERDE_ZCR
)
2567 *instance
->consumer
= *instance
->producer
;
2569 *instance
->consumer
= 0;
2570 *instance
->producer
= 0;
2573 megasas_issue_init_mfi(instance
);
2575 spin_lock_irqsave(&instance
->hba_lock
, flags
);
2576 instance
->adprecovery
= MEGASAS_HBA_OPERATIONAL
;
2577 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
2578 instance
->instancet
->enable_intr(instance
);
2580 megasas_issue_pending_cmds_again(instance
);
2581 instance
->issuepend_done
= 1;
2587 * megasas_deplete_reply_queue - Processes all completed commands
2588 * @instance: Adapter soft state
2589 * @alt_status: Alternate status to be returned to
2590 * SCSI mid-layer instead of the status
2591 * returned by the FW
2592 * Note: this must be called with hba lock held
2595 megasas_deplete_reply_queue(struct megasas_instance
*instance
,
2601 if ((mfiStatus
= instance
->instancet
->check_reset(instance
,
2602 instance
->reg_set
)) == 1) {
2606 if ((mfiStatus
= instance
->instancet
->clear_intr(
2609 /* Hardware may not set outbound_intr_status in MSI-X mode */
2610 if (!instance
->msix_vectors
)
2614 instance
->mfiStatus
= mfiStatus
;
2616 if ((mfiStatus
& MFI_INTR_FLAG_FIRMWARE_STATE_CHANGE
)) {
2617 fw_state
= instance
->instancet
->read_fw_status_reg(
2618 instance
->reg_set
) & MFI_STATE_MASK
;
2620 if (fw_state
!= MFI_STATE_FAULT
) {
2621 printk(KERN_NOTICE
"megaraid_sas: fw state:%x\n",
2625 if ((fw_state
== MFI_STATE_FAULT
) &&
2626 (instance
->disableOnlineCtrlReset
== 0)) {
2627 printk(KERN_NOTICE
"megaraid_sas: wait adp restart\n");
2629 if ((instance
->pdev
->device
==
2630 PCI_DEVICE_ID_LSI_SAS1064R
) ||
2631 (instance
->pdev
->device
==
2632 PCI_DEVICE_ID_DELL_PERC5
) ||
2633 (instance
->pdev
->device
==
2634 PCI_DEVICE_ID_LSI_VERDE_ZCR
)) {
2636 *instance
->consumer
=
2637 cpu_to_le32(MEGASAS_ADPRESET_INPROG_SIGN
);
2641 instance
->instancet
->disable_intr(instance
);
2642 instance
->adprecovery
= MEGASAS_ADPRESET_SM_INFAULT
;
2643 instance
->issuepend_done
= 0;
2645 atomic_set(&instance
->fw_outstanding
, 0);
2646 megasas_internal_reset_defer_cmds(instance
);
2648 printk(KERN_NOTICE
"megasas: fwState=%x, stage:%d\n",
2649 fw_state
, instance
->adprecovery
);
2651 schedule_work(&instance
->work_init
);
2655 printk(KERN_NOTICE
"megasas: fwstate:%x, dis_OCR=%x\n",
2656 fw_state
, instance
->disableOnlineCtrlReset
);
2660 tasklet_schedule(&instance
->isr_tasklet
);
2664 * megasas_isr - isr entry point
2666 static irqreturn_t
megasas_isr(int irq
, void *devp
)
2668 struct megasas_irq_context
*irq_context
= devp
;
2669 struct megasas_instance
*instance
= irq_context
->instance
;
2670 unsigned long flags
;
2673 if (atomic_read(&instance
->fw_reset_no_pci_access
))
2676 spin_lock_irqsave(&instance
->hba_lock
, flags
);
2677 rc
= megasas_deplete_reply_queue(instance
, DID_OK
);
2678 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
2684 * megasas_transition_to_ready - Move the FW to READY state
2685 * @instance: Adapter soft state
2687 * During the initialization, FW passes can potentially be in any one of
2688 * several possible states. If the FW in operational, waiting-for-handshake
2689 * states, driver must take steps to bring it to ready state. Otherwise, it
2690 * has to wait for the ready state.
2693 megasas_transition_to_ready(struct megasas_instance
*instance
, int ocr
)
2699 u32 abs_state
, curr_abs_state
;
2701 fw_state
= instance
->instancet
->read_fw_status_reg(instance
->reg_set
) & MFI_STATE_MASK
;
2703 if (fw_state
!= MFI_STATE_READY
)
2704 printk(KERN_INFO
"megasas: Waiting for FW to come to ready"
2707 while (fw_state
!= MFI_STATE_READY
) {
2710 instance
->instancet
->read_fw_status_reg(instance
->reg_set
);
2714 case MFI_STATE_FAULT
:
2715 printk(KERN_DEBUG
"megasas: FW in FAULT state!!\n");
2717 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2718 cur_state
= MFI_STATE_FAULT
;
2723 case MFI_STATE_WAIT_HANDSHAKE
:
2725 * Set the CLR bit in inbound doorbell
2727 if ((instance
->pdev
->device
==
2728 PCI_DEVICE_ID_LSI_SAS0073SKINNY
) ||
2729 (instance
->pdev
->device
==
2730 PCI_DEVICE_ID_LSI_SAS0071SKINNY
) ||
2731 (instance
->pdev
->device
==
2732 PCI_DEVICE_ID_LSI_FUSION
) ||
2733 (instance
->pdev
->device
==
2734 PCI_DEVICE_ID_LSI_INVADER
) ||
2735 (instance
->pdev
->device
==
2736 PCI_DEVICE_ID_LSI_FURY
)) {
2738 MFI_INIT_CLEAR_HANDSHAKE
|MFI_INIT_HOTPLUG
,
2739 &instance
->reg_set
->doorbell
);
2742 MFI_INIT_CLEAR_HANDSHAKE
|MFI_INIT_HOTPLUG
,
2743 &instance
->reg_set
->inbound_doorbell
);
2746 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2747 cur_state
= MFI_STATE_WAIT_HANDSHAKE
;
2750 case MFI_STATE_BOOT_MESSAGE_PENDING
:
2751 if ((instance
->pdev
->device
==
2752 PCI_DEVICE_ID_LSI_SAS0073SKINNY
) ||
2753 (instance
->pdev
->device
==
2754 PCI_DEVICE_ID_LSI_SAS0071SKINNY
) ||
2755 (instance
->pdev
->device
==
2756 PCI_DEVICE_ID_LSI_FUSION
) ||
2757 (instance
->pdev
->device
==
2758 PCI_DEVICE_ID_LSI_INVADER
) ||
2759 (instance
->pdev
->device
==
2760 PCI_DEVICE_ID_LSI_FURY
)) {
2761 writel(MFI_INIT_HOTPLUG
,
2762 &instance
->reg_set
->doorbell
);
2764 writel(MFI_INIT_HOTPLUG
,
2765 &instance
->reg_set
->inbound_doorbell
);
2767 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2768 cur_state
= MFI_STATE_BOOT_MESSAGE_PENDING
;
2771 case MFI_STATE_OPERATIONAL
:
2773 * Bring it to READY state; assuming max wait 10 secs
2775 instance
->instancet
->disable_intr(instance
);
2776 if ((instance
->pdev
->device
==
2777 PCI_DEVICE_ID_LSI_SAS0073SKINNY
) ||
2778 (instance
->pdev
->device
==
2779 PCI_DEVICE_ID_LSI_SAS0071SKINNY
) ||
2780 (instance
->pdev
->device
2781 == PCI_DEVICE_ID_LSI_FUSION
) ||
2782 (instance
->pdev
->device
2783 == PCI_DEVICE_ID_LSI_INVADER
) ||
2784 (instance
->pdev
->device
2785 == PCI_DEVICE_ID_LSI_FURY
)) {
2786 writel(MFI_RESET_FLAGS
,
2787 &instance
->reg_set
->doorbell
);
2788 if ((instance
->pdev
->device
==
2789 PCI_DEVICE_ID_LSI_FUSION
) ||
2790 (instance
->pdev
->device
==
2791 PCI_DEVICE_ID_LSI_INVADER
) ||
2792 (instance
->pdev
->device
==
2793 PCI_DEVICE_ID_LSI_FURY
)) {
2794 for (i
= 0; i
< (10 * 1000); i
+= 20) {
2805 writel(MFI_RESET_FLAGS
,
2806 &instance
->reg_set
->inbound_doorbell
);
2808 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2809 cur_state
= MFI_STATE_OPERATIONAL
;
2812 case MFI_STATE_UNDEFINED
:
2814 * This state should not last for more than 2 seconds
2816 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2817 cur_state
= MFI_STATE_UNDEFINED
;
2820 case MFI_STATE_BB_INIT
:
2821 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2822 cur_state
= MFI_STATE_BB_INIT
;
2825 case MFI_STATE_FW_INIT
:
2826 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2827 cur_state
= MFI_STATE_FW_INIT
;
2830 case MFI_STATE_FW_INIT_2
:
2831 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2832 cur_state
= MFI_STATE_FW_INIT_2
;
2835 case MFI_STATE_DEVICE_SCAN
:
2836 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2837 cur_state
= MFI_STATE_DEVICE_SCAN
;
2840 case MFI_STATE_FLUSH_CACHE
:
2841 max_wait
= MEGASAS_RESET_WAIT_TIME
;
2842 cur_state
= MFI_STATE_FLUSH_CACHE
;
2846 printk(KERN_DEBUG
"megasas: Unknown state 0x%x\n",
2852 * The cur_state should not last for more than max_wait secs
2854 for (i
= 0; i
< (max_wait
* 1000); i
++) {
2855 fw_state
= instance
->instancet
->read_fw_status_reg(instance
->reg_set
) &
2858 instance
->instancet
->read_fw_status_reg(instance
->reg_set
);
2860 if (abs_state
== curr_abs_state
) {
2867 * Return error if fw_state hasn't changed after max_wait
2869 if (curr_abs_state
== abs_state
) {
2870 printk(KERN_DEBUG
"FW state [%d] hasn't changed "
2871 "in %d secs\n", fw_state
, max_wait
);
2875 printk(KERN_INFO
"megasas: FW now in Ready state\n");
2881 * megasas_teardown_frame_pool - Destroy the cmd frame DMA pool
2882 * @instance: Adapter soft state
2884 static void megasas_teardown_frame_pool(struct megasas_instance
*instance
)
2887 u32 max_cmd
= instance
->max_mfi_cmds
;
2888 struct megasas_cmd
*cmd
;
2890 if (!instance
->frame_dma_pool
)
2894 * Return all frames to pool
2896 for (i
= 0; i
< max_cmd
; i
++) {
2898 cmd
= instance
->cmd_list
[i
];
2901 pci_pool_free(instance
->frame_dma_pool
, cmd
->frame
,
2902 cmd
->frame_phys_addr
);
2905 pci_pool_free(instance
->sense_dma_pool
, cmd
->sense
,
2906 cmd
->sense_phys_addr
);
2910 * Now destroy the pool itself
2912 pci_pool_destroy(instance
->frame_dma_pool
);
2913 pci_pool_destroy(instance
->sense_dma_pool
);
2915 instance
->frame_dma_pool
= NULL
;
2916 instance
->sense_dma_pool
= NULL
;
2920 * megasas_create_frame_pool - Creates DMA pool for cmd frames
2921 * @instance: Adapter soft state
2923 * Each command packet has an embedded DMA memory buffer that is used for
2924 * filling MFI frame and the SG list that immediately follows the frame. This
2925 * function creates those DMA memory buffers for each command packet by using
2926 * PCI pool facility.
2928 static int megasas_create_frame_pool(struct megasas_instance
*instance
)
2936 struct megasas_cmd
*cmd
;
2938 max_cmd
= instance
->max_mfi_cmds
;
2941 * Size of our frame is 64 bytes for MFI frame, followed by max SG
2942 * elements and finally SCSI_SENSE_BUFFERSIZE bytes for sense buffer
2944 sge_sz
= (IS_DMA64
) ? sizeof(struct megasas_sge64
) :
2945 sizeof(struct megasas_sge32
);
2947 if (instance
->flag_ieee
) {
2948 sge_sz
= sizeof(struct megasas_sge_skinny
);
2952 * Calculated the number of 64byte frames required for SGL
2954 sgl_sz
= sge_sz
* instance
->max_num_sge
;
2955 frame_count
= (sgl_sz
+ MEGAMFI_FRAME_SIZE
- 1) / MEGAMFI_FRAME_SIZE
;
2959 * We need one extra frame for the MFI command
2963 total_sz
= MEGAMFI_FRAME_SIZE
* frame_count
;
2965 * Use DMA pool facility provided by PCI layer
2967 instance
->frame_dma_pool
= pci_pool_create("megasas frame pool",
2968 instance
->pdev
, total_sz
, 64,
2971 if (!instance
->frame_dma_pool
) {
2972 printk(KERN_DEBUG
"megasas: failed to setup frame pool\n");
2976 instance
->sense_dma_pool
= pci_pool_create("megasas sense pool",
2977 instance
->pdev
, 128, 4, 0);
2979 if (!instance
->sense_dma_pool
) {
2980 printk(KERN_DEBUG
"megasas: failed to setup sense pool\n");
2982 pci_pool_destroy(instance
->frame_dma_pool
);
2983 instance
->frame_dma_pool
= NULL
;
2989 * Allocate and attach a frame to each of the commands in cmd_list.
2990 * By making cmd->index as the context instead of the &cmd, we can
2991 * always use 32bit context regardless of the architecture
2993 for (i
= 0; i
< max_cmd
; i
++) {
2995 cmd
= instance
->cmd_list
[i
];
2997 cmd
->frame
= pci_pool_alloc(instance
->frame_dma_pool
,
2998 GFP_KERNEL
, &cmd
->frame_phys_addr
);
3000 cmd
->sense
= pci_pool_alloc(instance
->sense_dma_pool
,
3001 GFP_KERNEL
, &cmd
->sense_phys_addr
);
3004 * megasas_teardown_frame_pool() takes care of freeing
3005 * whatever has been allocated
3007 if (!cmd
->frame
|| !cmd
->sense
) {
3008 printk(KERN_DEBUG
"megasas: pci_pool_alloc failed \n");
3009 megasas_teardown_frame_pool(instance
);
3013 memset(cmd
->frame
, 0, total_sz
);
3014 cmd
->frame
->io
.context
= cpu_to_le32(cmd
->index
);
3015 cmd
->frame
->io
.pad_0
= 0;
3016 if ((instance
->pdev
->device
!= PCI_DEVICE_ID_LSI_FUSION
) &&
3017 (instance
->pdev
->device
!= PCI_DEVICE_ID_LSI_INVADER
) &&
3018 (instance
->pdev
->device
!= PCI_DEVICE_ID_LSI_FURY
) &&
3020 cmd
->frame
->hdr
.cmd
= MFI_CMD_INVALID
;
3027 * megasas_free_cmds - Free all the cmds in the free cmd pool
3028 * @instance: Adapter soft state
3030 void megasas_free_cmds(struct megasas_instance
*instance
)
3033 /* First free the MFI frame pool */
3034 megasas_teardown_frame_pool(instance
);
3036 /* Free all the commands in the cmd_list */
3037 for (i
= 0; i
< instance
->max_mfi_cmds
; i
++)
3039 kfree(instance
->cmd_list
[i
]);
3041 /* Free the cmd_list buffer itself */
3042 kfree(instance
->cmd_list
);
3043 instance
->cmd_list
= NULL
;
3045 INIT_LIST_HEAD(&instance
->cmd_pool
);
3049 * megasas_alloc_cmds - Allocates the command packets
3050 * @instance: Adapter soft state
3052 * Each command that is issued to the FW, whether IO commands from the OS or
3053 * internal commands like IOCTLs, are wrapped in local data structure called
3054 * megasas_cmd. The frame embedded in this megasas_cmd is actually issued to
3057 * Each frame has a 32-bit field called context (tag). This context is used
3058 * to get back the megasas_cmd from the frame when a frame gets completed in
3059 * the ISR. Typically the address of the megasas_cmd itself would be used as
3060 * the context. But we wanted to keep the differences between 32 and 64 bit
3061 * systems to the mininum. We always use 32 bit integers for the context. In
3062 * this driver, the 32 bit values are the indices into an array cmd_list.
3063 * This array is used only to look up the megasas_cmd given the context. The
3064 * free commands themselves are maintained in a linked list called cmd_pool.
3066 int megasas_alloc_cmds(struct megasas_instance
*instance
)
3071 struct megasas_cmd
*cmd
;
3073 max_cmd
= instance
->max_mfi_cmds
;
3076 * instance->cmd_list is an array of struct megasas_cmd pointers.
3077 * Allocate the dynamic array first and then allocate individual
3080 instance
->cmd_list
= kcalloc(max_cmd
, sizeof(struct megasas_cmd
*), GFP_KERNEL
);
3082 if (!instance
->cmd_list
) {
3083 printk(KERN_DEBUG
"megasas: out of memory\n");
3087 memset(instance
->cmd_list
, 0, sizeof(struct megasas_cmd
*) *max_cmd
);
3089 for (i
= 0; i
< max_cmd
; i
++) {
3090 instance
->cmd_list
[i
] = kmalloc(sizeof(struct megasas_cmd
),
3093 if (!instance
->cmd_list
[i
]) {
3095 for (j
= 0; j
< i
; j
++)
3096 kfree(instance
->cmd_list
[j
]);
3098 kfree(instance
->cmd_list
);
3099 instance
->cmd_list
= NULL
;
3106 * Add all the commands to command pool (instance->cmd_pool)
3108 for (i
= 0; i
< max_cmd
; i
++) {
3109 cmd
= instance
->cmd_list
[i
];
3110 memset(cmd
, 0, sizeof(struct megasas_cmd
));
3113 cmd
->instance
= instance
;
3115 list_add_tail(&cmd
->list
, &instance
->cmd_pool
);
3119 * Create a frame pool and assign one frame to each cmd
3121 if (megasas_create_frame_pool(instance
)) {
3122 printk(KERN_DEBUG
"megasas: Error creating frame DMA pool\n");
3123 megasas_free_cmds(instance
);
3130 * megasas_get_pd_list_info - Returns FW's pd_list structure
3131 * @instance: Adapter soft state
3132 * @pd_list: pd_list structure
3134 * Issues an internal command (DCMD) to get the FW's controller PD
3135 * list structure. This information is mainly used to find out SYSTEM
3136 * supported by the FW.
3139 megasas_get_pd_list(struct megasas_instance
*instance
)
3141 int ret
= 0, pd_index
= 0;
3142 struct megasas_cmd
*cmd
;
3143 struct megasas_dcmd_frame
*dcmd
;
3144 struct MR_PD_LIST
*ci
;
3145 struct MR_PD_ADDRESS
*pd_addr
;
3146 dma_addr_t ci_h
= 0;
3148 cmd
= megasas_get_cmd(instance
);
3151 printk(KERN_DEBUG
"megasas (get_pd_list): Failed to get cmd\n");
3155 dcmd
= &cmd
->frame
->dcmd
;
3157 ci
= pci_alloc_consistent(instance
->pdev
,
3158 MEGASAS_MAX_PD
* sizeof(struct MR_PD_LIST
), &ci_h
);
3161 printk(KERN_DEBUG
"Failed to alloc mem for pd_list\n");
3162 megasas_return_cmd(instance
, cmd
);
3166 memset(ci
, 0, sizeof(*ci
));
3167 memset(dcmd
->mbox
.b
, 0, MFI_MBOX_SIZE
);
3169 dcmd
->mbox
.b
[0] = MR_PD_QUERY_TYPE_EXPOSED_TO_HOST
;
3170 dcmd
->mbox
.b
[1] = 0;
3171 dcmd
->cmd
= MFI_CMD_DCMD
;
3172 dcmd
->cmd_status
= 0xFF;
3173 dcmd
->sge_count
= 1;
3174 dcmd
->flags
= cpu_to_le16(MFI_FRAME_DIR_READ
);
3177 dcmd
->data_xfer_len
= cpu_to_le32(MEGASAS_MAX_PD
* sizeof(struct MR_PD_LIST
));
3178 dcmd
->opcode
= cpu_to_le32(MR_DCMD_PD_LIST_QUERY
);
3179 dcmd
->sgl
.sge32
[0].phys_addr
= cpu_to_le32(ci_h
);
3180 dcmd
->sgl
.sge32
[0].length
= cpu_to_le32(MEGASAS_MAX_PD
* sizeof(struct MR_PD_LIST
));
3182 if (!megasas_issue_polled(instance
, cmd
)) {
3189 * the following function will get the instance PD LIST.
3195 (le32_to_cpu(ci
->count
) <
3196 (MEGASAS_MAX_PD_CHANNELS
* MEGASAS_MAX_DEV_PER_CHANNEL
))) {
3198 memset(instance
->pd_list
, 0,
3199 MEGASAS_MAX_PD
* sizeof(struct megasas_pd_list
));
3201 for (pd_index
= 0; pd_index
< le32_to_cpu(ci
->count
); pd_index
++) {
3203 instance
->pd_list
[pd_addr
->deviceId
].tid
=
3204 le16_to_cpu(pd_addr
->deviceId
);
3205 instance
->pd_list
[pd_addr
->deviceId
].driveType
=
3206 pd_addr
->scsiDevType
;
3207 instance
->pd_list
[pd_addr
->deviceId
].driveState
=
3213 pci_free_consistent(instance
->pdev
,
3214 MEGASAS_MAX_PD
* sizeof(struct MR_PD_LIST
),
3216 megasas_return_cmd(instance
, cmd
);
3222 * megasas_get_ld_list_info - Returns FW's ld_list structure
3223 * @instance: Adapter soft state
3224 * @ld_list: ld_list structure
3226 * Issues an internal command (DCMD) to get the FW's controller PD
3227 * list structure. This information is mainly used to find out SYSTEM
3228 * supported by the FW.
3231 megasas_get_ld_list(struct megasas_instance
*instance
)
3233 int ret
= 0, ld_index
= 0, ids
= 0;
3234 struct megasas_cmd
*cmd
;
3235 struct megasas_dcmd_frame
*dcmd
;
3236 struct MR_LD_LIST
*ci
;
3237 dma_addr_t ci_h
= 0;
3240 cmd
= megasas_get_cmd(instance
);
3243 printk(KERN_DEBUG
"megasas_get_ld_list: Failed to get cmd\n");
3247 dcmd
= &cmd
->frame
->dcmd
;
3249 ci
= pci_alloc_consistent(instance
->pdev
,
3250 sizeof(struct MR_LD_LIST
),
3254 printk(KERN_DEBUG
"Failed to alloc mem in get_ld_list\n");
3255 megasas_return_cmd(instance
, cmd
);
3259 memset(ci
, 0, sizeof(*ci
));
3260 memset(dcmd
->mbox
.b
, 0, MFI_MBOX_SIZE
);
3262 dcmd
->cmd
= MFI_CMD_DCMD
;
3263 dcmd
->cmd_status
= 0xFF;
3264 dcmd
->sge_count
= 1;
3265 dcmd
->flags
= cpu_to_le16(MFI_FRAME_DIR_READ
);
3267 dcmd
->data_xfer_len
= cpu_to_le32(sizeof(struct MR_LD_LIST
));
3268 dcmd
->opcode
= cpu_to_le32(MR_DCMD_LD_GET_LIST
);
3269 dcmd
->sgl
.sge32
[0].phys_addr
= cpu_to_le32(ci_h
);
3270 dcmd
->sgl
.sge32
[0].length
= cpu_to_le32(sizeof(struct MR_LD_LIST
));
3273 if (!megasas_issue_polled(instance
, cmd
)) {
3279 ld_count
= le32_to_cpu(ci
->ldCount
);
3281 /* the following function will get the instance PD LIST */
3283 if ((ret
== 0) && (ld_count
<= MAX_LOGICAL_DRIVES
)) {
3284 memset(instance
->ld_ids
, 0xff, MEGASAS_MAX_LD_IDS
);
3286 for (ld_index
= 0; ld_index
< ld_count
; ld_index
++) {
3287 if (ci
->ldList
[ld_index
].state
!= 0) {
3288 ids
= ci
->ldList
[ld_index
].ref
.targetId
;
3289 instance
->ld_ids
[ids
] =
3290 ci
->ldList
[ld_index
].ref
.targetId
;
3295 pci_free_consistent(instance
->pdev
,
3296 sizeof(struct MR_LD_LIST
),
3300 megasas_return_cmd(instance
, cmd
);
3305 * megasas_ld_list_query - Returns FW's ld_list structure
3306 * @instance: Adapter soft state
3307 * @ld_list: ld_list structure
3309 * Issues an internal command (DCMD) to get the FW's controller PD
3310 * list structure. This information is mainly used to find out SYSTEM
3311 * supported by the FW.
3314 megasas_ld_list_query(struct megasas_instance
*instance
, u8 query_type
)
3316 int ret
= 0, ld_index
= 0, ids
= 0;
3317 struct megasas_cmd
*cmd
;
3318 struct megasas_dcmd_frame
*dcmd
;
3319 struct MR_LD_TARGETID_LIST
*ci
;
3320 dma_addr_t ci_h
= 0;
3323 cmd
= megasas_get_cmd(instance
);
3327 "megasas:(megasas_ld_list_query): Failed to get cmd\n");
3331 dcmd
= &cmd
->frame
->dcmd
;
3333 ci
= pci_alloc_consistent(instance
->pdev
,
3334 sizeof(struct MR_LD_TARGETID_LIST
), &ci_h
);
3338 "megasas: Failed to alloc mem for ld_list_query\n");
3339 megasas_return_cmd(instance
, cmd
);
3343 memset(ci
, 0, sizeof(*ci
));
3344 memset(dcmd
->mbox
.b
, 0, MFI_MBOX_SIZE
);
3346 dcmd
->mbox
.b
[0] = query_type
;
3348 dcmd
->cmd
= MFI_CMD_DCMD
;
3349 dcmd
->cmd_status
= 0xFF;
3350 dcmd
->sge_count
= 1;
3351 dcmd
->flags
= cpu_to_le16(MFI_FRAME_DIR_READ
);
3353 dcmd
->data_xfer_len
= cpu_to_le32(sizeof(struct MR_LD_TARGETID_LIST
));
3354 dcmd
->opcode
= cpu_to_le32(MR_DCMD_LD_LIST_QUERY
);
3355 dcmd
->sgl
.sge32
[0].phys_addr
= cpu_to_le32(ci_h
);
3356 dcmd
->sgl
.sge32
[0].length
= cpu_to_le32(sizeof(struct MR_LD_TARGETID_LIST
));
3359 if (!megasas_issue_polled(instance
, cmd
) && !dcmd
->cmd_status
) {
3362 /* On failure, call older LD list DCMD */
3366 tgtid_count
= le32_to_cpu(ci
->count
);
3368 if ((ret
== 0) && (tgtid_count
<= (MAX_LOGICAL_DRIVES
))) {
3369 memset(instance
->ld_ids
, 0xff, MEGASAS_MAX_LD_IDS
);
3370 for (ld_index
= 0; ld_index
< tgtid_count
; ld_index
++) {
3371 ids
= ci
->targetId
[ld_index
];
3372 instance
->ld_ids
[ids
] = ci
->targetId
[ld_index
];
3377 pci_free_consistent(instance
->pdev
, sizeof(struct MR_LD_TARGETID_LIST
),
3380 megasas_return_cmd(instance
, cmd
);
3386 * megasas_get_controller_info - Returns FW's controller structure
3387 * @instance: Adapter soft state
3388 * @ctrl_info: Controller information structure
3390 * Issues an internal command (DCMD) to get the FW's controller structure.
3391 * This information is mainly used to find out the maximum IO transfer per
3392 * command supported by the FW.
3395 megasas_get_ctrl_info(struct megasas_instance
*instance
,
3396 struct megasas_ctrl_info
*ctrl_info
)
3399 struct megasas_cmd
*cmd
;
3400 struct megasas_dcmd_frame
*dcmd
;
3401 struct megasas_ctrl_info
*ci
;
3402 dma_addr_t ci_h
= 0;
3404 cmd
= megasas_get_cmd(instance
);
3407 printk(KERN_DEBUG
"megasas: Failed to get a free cmd\n");
3411 dcmd
= &cmd
->frame
->dcmd
;
3413 ci
= pci_alloc_consistent(instance
->pdev
,
3414 sizeof(struct megasas_ctrl_info
), &ci_h
);
3417 printk(KERN_DEBUG
"Failed to alloc mem for ctrl info\n");
3418 megasas_return_cmd(instance
, cmd
);
3422 memset(ci
, 0, sizeof(*ci
));
3423 memset(dcmd
->mbox
.b
, 0, MFI_MBOX_SIZE
);
3425 dcmd
->cmd
= MFI_CMD_DCMD
;
3426 dcmd
->cmd_status
= 0xFF;
3427 dcmd
->sge_count
= 1;
3428 dcmd
->flags
= cpu_to_le16(MFI_FRAME_DIR_READ
);
3431 dcmd
->data_xfer_len
= cpu_to_le32(sizeof(struct megasas_ctrl_info
));
3432 dcmd
->opcode
= cpu_to_le32(MR_DCMD_CTRL_GET_INFO
);
3433 dcmd
->sgl
.sge32
[0].phys_addr
= cpu_to_le32(ci_h
);
3434 dcmd
->sgl
.sge32
[0].length
= cpu_to_le32(sizeof(struct megasas_ctrl_info
));
3436 if (!megasas_issue_polled(instance
, cmd
)) {
3438 memcpy(ctrl_info
, ci
, sizeof(struct megasas_ctrl_info
));
3443 pci_free_consistent(instance
->pdev
, sizeof(struct megasas_ctrl_info
),
3446 megasas_return_cmd(instance
, cmd
);
3451 * megasas_issue_init_mfi - Initializes the FW
3452 * @instance: Adapter soft state
3454 * Issues the INIT MFI cmd
3457 megasas_issue_init_mfi(struct megasas_instance
*instance
)
3461 struct megasas_cmd
*cmd
;
3463 struct megasas_init_frame
*init_frame
;
3464 struct megasas_init_queue_info
*initq_info
;
3465 dma_addr_t init_frame_h
;
3466 dma_addr_t initq_info_h
;
3469 * Prepare a init frame. Note the init frame points to queue info
3470 * structure. Each frame has SGL allocated after first 64 bytes. For
3471 * this frame - since we don't need any SGL - we use SGL's space as
3472 * queue info structure
3474 * We will not get a NULL command below. We just created the pool.
3476 cmd
= megasas_get_cmd(instance
);
3478 init_frame
= (struct megasas_init_frame
*)cmd
->frame
;
3479 initq_info
= (struct megasas_init_queue_info
*)
3480 ((unsigned long)init_frame
+ 64);
3482 init_frame_h
= cmd
->frame_phys_addr
;
3483 initq_info_h
= init_frame_h
+ 64;
3485 context
= init_frame
->context
;
3486 memset(init_frame
, 0, MEGAMFI_FRAME_SIZE
);
3487 memset(initq_info
, 0, sizeof(struct megasas_init_queue_info
));
3488 init_frame
->context
= context
;
3490 initq_info
->reply_queue_entries
= cpu_to_le32(instance
->max_fw_cmds
+ 1);
3491 initq_info
->reply_queue_start_phys_addr_lo
= cpu_to_le32(instance
->reply_queue_h
);
3493 initq_info
->producer_index_phys_addr_lo
= cpu_to_le32(instance
->producer_h
);
3494 initq_info
->consumer_index_phys_addr_lo
= cpu_to_le32(instance
->consumer_h
);
3496 init_frame
->cmd
= MFI_CMD_INIT
;
3497 init_frame
->cmd_status
= 0xFF;
3498 init_frame
->queue_info_new_phys_addr_lo
=
3499 cpu_to_le32(lower_32_bits(initq_info_h
));
3500 init_frame
->queue_info_new_phys_addr_hi
=
3501 cpu_to_le32(upper_32_bits(initq_info_h
));
3503 init_frame
->data_xfer_len
= cpu_to_le32(sizeof(struct megasas_init_queue_info
));
3506 * disable the intr before firing the init frame to FW
3508 instance
->instancet
->disable_intr(instance
);
3511 * Issue the init frame in polled mode
3514 if (megasas_issue_polled(instance
, cmd
)) {
3515 printk(KERN_ERR
"megasas: Failed to init firmware\n");
3516 megasas_return_cmd(instance
, cmd
);
3520 megasas_return_cmd(instance
, cmd
);
3529 megasas_init_adapter_mfi(struct megasas_instance
*instance
)
3531 struct megasas_register_set __iomem
*reg_set
;
3535 reg_set
= instance
->reg_set
;
3538 * Get various operational parameters from status register
3540 instance
->max_fw_cmds
= instance
->instancet
->read_fw_status_reg(reg_set
) & 0x00FFFF;
3542 * Reduce the max supported cmds by 1. This is to ensure that the
3543 * reply_q_sz (1 more than the max cmd that driver may send)
3544 * does not exceed max cmds that the FW can support
3546 instance
->max_fw_cmds
= instance
->max_fw_cmds
-1;
3547 instance
->max_mfi_cmds
= instance
->max_fw_cmds
;
3548 instance
->max_num_sge
= (instance
->instancet
->read_fw_status_reg(reg_set
) & 0xFF0000) >>
3551 * Create a pool of commands
3553 if (megasas_alloc_cmds(instance
))
3554 goto fail_alloc_cmds
;
3557 * Allocate memory for reply queue. Length of reply queue should
3558 * be _one_ more than the maximum commands handled by the firmware.
3560 * Note: When FW completes commands, it places corresponding contex
3561 * values in this circular reply queue. This circular queue is a fairly
3562 * typical producer-consumer queue. FW is the producer (of completed
3563 * commands) and the driver is the consumer.
3565 context_sz
= sizeof(u32
);
3566 reply_q_sz
= context_sz
* (instance
->max_fw_cmds
+ 1);
3568 instance
->reply_queue
= pci_alloc_consistent(instance
->pdev
,
3570 &instance
->reply_queue_h
);
3572 if (!instance
->reply_queue
) {
3573 printk(KERN_DEBUG
"megasas: Out of DMA mem for reply queue\n");
3574 goto fail_reply_queue
;
3577 if (megasas_issue_init_mfi(instance
))
3580 instance
->fw_support_ieee
= 0;
3581 instance
->fw_support_ieee
=
3582 (instance
->instancet
->read_fw_status_reg(reg_set
) &
3585 printk(KERN_NOTICE
"megasas_init_mfi: fw_support_ieee=%d",
3586 instance
->fw_support_ieee
);
3588 if (instance
->fw_support_ieee
)
3589 instance
->flag_ieee
= 1;
3595 pci_free_consistent(instance
->pdev
, reply_q_sz
,
3596 instance
->reply_queue
, instance
->reply_queue_h
);
3598 megasas_free_cmds(instance
);
3605 * megasas_init_fw - Initializes the FW
3606 * @instance: Adapter soft state
3608 * This is the main function for initializing firmware
3611 static int megasas_init_fw(struct megasas_instance
*instance
)
3615 u32 tmp_sectors
, msix_enable
, scratch_pad_2
;
3616 struct megasas_register_set __iomem
*reg_set
;
3617 struct megasas_ctrl_info
*ctrl_info
;
3618 unsigned long bar_list
;
3619 int i
, loop
, fw_msix_count
= 0;
3621 /* Find first memory bar */
3622 bar_list
= pci_select_bars(instance
->pdev
, IORESOURCE_MEM
);
3623 instance
->bar
= find_first_bit(&bar_list
, sizeof(unsigned long));
3624 instance
->base_addr
= pci_resource_start(instance
->pdev
, instance
->bar
);
3625 if (pci_request_selected_regions(instance
->pdev
, instance
->bar
,
3627 printk(KERN_DEBUG
"megasas: IO memory region busy!\n");
3631 instance
->reg_set
= ioremap_nocache(instance
->base_addr
, 8192);
3633 if (!instance
->reg_set
) {
3634 printk(KERN_DEBUG
"megasas: Failed to map IO mem\n");
3638 reg_set
= instance
->reg_set
;
3640 switch (instance
->pdev
->device
) {
3641 case PCI_DEVICE_ID_LSI_FUSION
:
3642 case PCI_DEVICE_ID_LSI_INVADER
:
3643 case PCI_DEVICE_ID_LSI_FURY
:
3644 instance
->instancet
= &megasas_instance_template_fusion
;
3646 case PCI_DEVICE_ID_LSI_SAS1078R
:
3647 case PCI_DEVICE_ID_LSI_SAS1078DE
:
3648 instance
->instancet
= &megasas_instance_template_ppc
;
3650 case PCI_DEVICE_ID_LSI_SAS1078GEN2
:
3651 case PCI_DEVICE_ID_LSI_SAS0079GEN2
:
3652 instance
->instancet
= &megasas_instance_template_gen2
;
3654 case PCI_DEVICE_ID_LSI_SAS0073SKINNY
:
3655 case PCI_DEVICE_ID_LSI_SAS0071SKINNY
:
3656 instance
->instancet
= &megasas_instance_template_skinny
;
3658 case PCI_DEVICE_ID_LSI_SAS1064R
:
3659 case PCI_DEVICE_ID_DELL_PERC5
:
3661 instance
->instancet
= &megasas_instance_template_xscale
;
3665 if (megasas_transition_to_ready(instance
, 0)) {
3666 atomic_set(&instance
->fw_reset_no_pci_access
, 1);
3667 instance
->instancet
->adp_reset
3668 (instance
, instance
->reg_set
);
3669 atomic_set(&instance
->fw_reset_no_pci_access
, 0);
3670 dev_info(&instance
->pdev
->dev
,
3671 "megasas: FW restarted successfully from %s!\n",
3674 /*waitting for about 30 second before retry*/
3677 if (megasas_transition_to_ready(instance
, 0))
3678 goto fail_ready_state
;
3682 * MSI-X host index 0 is common for all adapter.
3683 * It is used for all MPT based Adapters.
3685 instance
->reply_post_host_index_addr
[0] =
3686 (u32
*)((u8
*)instance
->reg_set
+
3687 MPI2_REPLY_POST_HOST_INDEX_OFFSET
);
3689 /* Check if MSI-X is supported while in ready state */
3690 msix_enable
= (instance
->instancet
->read_fw_status_reg(reg_set
) &
3692 if (msix_enable
&& !msix_disable
) {
3693 scratch_pad_2
= readl
3694 (&instance
->reg_set
->outbound_scratch_pad_2
);
3695 /* Check max MSI-X vectors */
3696 if (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FUSION
) {
3697 instance
->msix_vectors
= (scratch_pad_2
3698 & MR_MAX_REPLY_QUEUES_OFFSET
) + 1;
3699 fw_msix_count
= instance
->msix_vectors
;
3701 instance
->msix_vectors
=
3703 instance
->msix_vectors
);
3704 } else if ((instance
->pdev
->device
== PCI_DEVICE_ID_LSI_INVADER
)
3705 || (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FURY
)) {
3706 /* Invader/Fury supports more than 8 MSI-X */
3707 instance
->msix_vectors
= ((scratch_pad_2
3708 & MR_MAX_REPLY_QUEUES_EXT_OFFSET
)
3709 >> MR_MAX_REPLY_QUEUES_EXT_OFFSET_SHIFT
) + 1;
3710 fw_msix_count
= instance
->msix_vectors
;
3711 /* Save 1-15 reply post index address to local memory
3712 * Index 0 is already saved from reg offset
3713 * MPI2_REPLY_POST_HOST_INDEX_OFFSET
3715 for (loop
= 1; loop
< MR_MAX_MSIX_REG_ARRAY
; loop
++) {
3716 instance
->reply_post_host_index_addr
[loop
] =
3717 (u32
*)((u8
*)instance
->reg_set
+
3718 MPI2_SUP_REPLY_POST_HOST_INDEX_OFFSET
3722 instance
->msix_vectors
= min(msix_vectors
,
3723 instance
->msix_vectors
);
3725 instance
->msix_vectors
= 1;
3726 /* Don't bother allocating more MSI-X vectors than cpus */
3727 instance
->msix_vectors
= min(instance
->msix_vectors
,
3728 (unsigned int)num_online_cpus());
3729 for (i
= 0; i
< instance
->msix_vectors
; i
++)
3730 instance
->msixentry
[i
].entry
= i
;
3731 i
= pci_enable_msix(instance
->pdev
, instance
->msixentry
,
3732 instance
->msix_vectors
);
3735 if (!pci_enable_msix(instance
->pdev
,
3736 instance
->msixentry
, i
))
3737 instance
->msix_vectors
= i
;
3739 instance
->msix_vectors
= 0;
3742 instance
->msix_vectors
= 0;
3744 dev_info(&instance
->pdev
->dev
, "[scsi%d]: FW supports"
3745 "<%d> MSIX vector,Online CPUs: <%d>,"
3746 "Current MSIX <%d>\n", instance
->host
->host_no
,
3747 fw_msix_count
, (unsigned int)num_online_cpus(),
3748 instance
->msix_vectors
);
3751 /* Get operational params, sge flags, send init cmd to controller */
3752 if (instance
->instancet
->init_adapter(instance
))
3753 goto fail_init_adapter
;
3755 printk(KERN_ERR
"megasas: INIT adapter done\n");
3758 * the following function will get the PD LIST.
3761 memset(instance
->pd_list
, 0 ,
3762 (MEGASAS_MAX_PD
* sizeof(struct megasas_pd_list
)));
3763 megasas_get_pd_list(instance
);
3765 memset(instance
->ld_ids
, 0xff, MEGASAS_MAX_LD_IDS
);
3766 if (megasas_ld_list_query(instance
,
3767 MR_LD_QUERY_TYPE_EXPOSED_TO_HOST
))
3768 megasas_get_ld_list(instance
);
3770 ctrl_info
= kmalloc(sizeof(struct megasas_ctrl_info
), GFP_KERNEL
);
3773 * Compute the max allowed sectors per IO: The controller info has two
3774 * limits on max sectors. Driver should use the minimum of these two.
3776 * 1 << stripe_sz_ops.min = max sectors per strip
3778 * Note that older firmwares ( < FW ver 30) didn't report information
3779 * to calculate max_sectors_1. So the number ended up as zero always.
3782 if (ctrl_info
&& !megasas_get_ctrl_info(instance
, ctrl_info
)) {
3784 max_sectors_1
= (1 << ctrl_info
->stripe_sz_ops
.min
) *
3785 le16_to_cpu(ctrl_info
->max_strips_per_io
);
3786 max_sectors_2
= le32_to_cpu(ctrl_info
->max_request_size
);
3788 tmp_sectors
= min_t(u32
, max_sectors_1
, max_sectors_2
);
3790 /*Check whether controller is iMR or MR */
3791 if (ctrl_info
->memory_size
) {
3792 instance
->is_imr
= 0;
3793 dev_info(&instance
->pdev
->dev
, "Controller type: MR,"
3794 "Memory size is: %dMB\n",
3795 le16_to_cpu(ctrl_info
->memory_size
));
3797 instance
->is_imr
= 1;
3798 dev_info(&instance
->pdev
->dev
,
3799 "Controller type: iMR\n");
3801 /* OnOffProperties are converted into CPU arch*/
3802 le32_to_cpus((u32
*)&ctrl_info
->properties
.OnOffProperties
);
3803 instance
->disableOnlineCtrlReset
=
3804 ctrl_info
->properties
.OnOffProperties
.disableOnlineCtrlReset
;
3805 /* adapterOperations2 are converted into CPU arch*/
3806 le32_to_cpus((u32
*)&ctrl_info
->adapterOperations2
);
3807 instance
->UnevenSpanSupport
=
3808 ctrl_info
->adapterOperations2
.supportUnevenSpans
;
3809 if (instance
->UnevenSpanSupport
) {
3810 struct fusion_context
*fusion
= instance
->ctrl_context
;
3811 dev_info(&instance
->pdev
->dev
, "FW supports: "
3812 "UnevenSpanSupport=%x\n", instance
->UnevenSpanSupport
);
3813 if (MR_ValidateMapInfo(instance
))
3814 fusion
->fast_path_io
= 1;
3816 fusion
->fast_path_io
= 0;
3820 instance
->max_sectors_per_req
= instance
->max_num_sge
*
3822 if (tmp_sectors
&& (instance
->max_sectors_per_req
> tmp_sectors
))
3823 instance
->max_sectors_per_req
= tmp_sectors
;
3827 /* Check for valid throttlequeuedepth module parameter */
3828 if (instance
->is_imr
) {
3829 if (throttlequeuedepth
> (instance
->max_fw_cmds
-
3830 MEGASAS_SKINNY_INT_CMDS
))
3831 instance
->throttlequeuedepth
=
3832 MEGASAS_THROTTLE_QUEUE_DEPTH
;
3834 instance
->throttlequeuedepth
= throttlequeuedepth
;
3836 if (throttlequeuedepth
> (instance
->max_fw_cmds
-
3838 instance
->throttlequeuedepth
=
3839 MEGASAS_THROTTLE_QUEUE_DEPTH
;
3841 instance
->throttlequeuedepth
= throttlequeuedepth
;
3845 * Setup tasklet for cmd completion
3848 tasklet_init(&instance
->isr_tasklet
, instance
->instancet
->tasklet
,
3849 (unsigned long)instance
);
3855 iounmap(instance
->reg_set
);
3858 pci_release_selected_regions(instance
->pdev
, instance
->bar
);
3864 * megasas_release_mfi - Reverses the FW initialization
3865 * @intance: Adapter soft state
3867 static void megasas_release_mfi(struct megasas_instance
*instance
)
3869 u32 reply_q_sz
= sizeof(u32
) *(instance
->max_mfi_cmds
+ 1);
3871 if (instance
->reply_queue
)
3872 pci_free_consistent(instance
->pdev
, reply_q_sz
,
3873 instance
->reply_queue
, instance
->reply_queue_h
);
3875 megasas_free_cmds(instance
);
3877 iounmap(instance
->reg_set
);
3879 pci_release_selected_regions(instance
->pdev
, instance
->bar
);
3883 * megasas_get_seq_num - Gets latest event sequence numbers
3884 * @instance: Adapter soft state
3885 * @eli: FW event log sequence numbers information
3887 * FW maintains a log of all events in a non-volatile area. Upper layers would
3888 * usually find out the latest sequence number of the events, the seq number at
3889 * the boot etc. They would "read" all the events below the latest seq number
3890 * by issuing a direct fw cmd (DCMD). For the future events (beyond latest seq
3891 * number), they would subsribe to AEN (asynchronous event notification) and
3892 * wait for the events to happen.
3895 megasas_get_seq_num(struct megasas_instance
*instance
,
3896 struct megasas_evt_log_info
*eli
)
3898 struct megasas_cmd
*cmd
;
3899 struct megasas_dcmd_frame
*dcmd
;
3900 struct megasas_evt_log_info
*el_info
;
3901 dma_addr_t el_info_h
= 0;
3903 cmd
= megasas_get_cmd(instance
);
3909 dcmd
= &cmd
->frame
->dcmd
;
3910 el_info
= pci_alloc_consistent(instance
->pdev
,
3911 sizeof(struct megasas_evt_log_info
),
3915 megasas_return_cmd(instance
, cmd
);
3919 memset(el_info
, 0, sizeof(*el_info
));
3920 memset(dcmd
->mbox
.b
, 0, MFI_MBOX_SIZE
);
3922 dcmd
->cmd
= MFI_CMD_DCMD
;
3923 dcmd
->cmd_status
= 0x0;
3924 dcmd
->sge_count
= 1;
3925 dcmd
->flags
= cpu_to_le16(MFI_FRAME_DIR_READ
);
3928 dcmd
->data_xfer_len
= cpu_to_le32(sizeof(struct megasas_evt_log_info
));
3929 dcmd
->opcode
= cpu_to_le32(MR_DCMD_CTRL_EVENT_GET_INFO
);
3930 dcmd
->sgl
.sge32
[0].phys_addr
= cpu_to_le32(el_info_h
);
3931 dcmd
->sgl
.sge32
[0].length
= cpu_to_le32(sizeof(struct megasas_evt_log_info
));
3933 megasas_issue_blocked_cmd(instance
, cmd
);
3936 * Copy the data back into callers buffer
3938 eli
->newest_seq_num
= le32_to_cpu(el_info
->newest_seq_num
);
3939 eli
->oldest_seq_num
= le32_to_cpu(el_info
->oldest_seq_num
);
3940 eli
->clear_seq_num
= le32_to_cpu(el_info
->clear_seq_num
);
3941 eli
->shutdown_seq_num
= le32_to_cpu(el_info
->shutdown_seq_num
);
3942 eli
->boot_seq_num
= le32_to_cpu(el_info
->boot_seq_num
);
3944 pci_free_consistent(instance
->pdev
, sizeof(struct megasas_evt_log_info
),
3945 el_info
, el_info_h
);
3947 megasas_return_cmd(instance
, cmd
);
3953 * megasas_register_aen - Registers for asynchronous event notification
3954 * @instance: Adapter soft state
3955 * @seq_num: The starting sequence number
3956 * @class_locale: Class of the event
3958 * This function subscribes for AEN for events beyond the @seq_num. It requests
3959 * to be notified if and only if the event is of type @class_locale
3962 megasas_register_aen(struct megasas_instance
*instance
, u32 seq_num
,
3963 u32 class_locale_word
)
3966 struct megasas_cmd
*cmd
;
3967 struct megasas_dcmd_frame
*dcmd
;
3968 union megasas_evt_class_locale curr_aen
;
3969 union megasas_evt_class_locale prev_aen
;
3972 * If there an AEN pending already (aen_cmd), check if the
3973 * class_locale of that pending AEN is inclusive of the new
3974 * AEN request we currently have. If it is, then we don't have
3975 * to do anything. In other words, whichever events the current
3976 * AEN request is subscribing to, have already been subscribed
3979 * If the old_cmd is _not_ inclusive, then we have to abort
3980 * that command, form a class_locale that is superset of both
3981 * old and current and re-issue to the FW
3984 curr_aen
.word
= class_locale_word
;
3986 if (instance
->aen_cmd
) {
3988 prev_aen
.word
= instance
->aen_cmd
->frame
->dcmd
.mbox
.w
[1];
3989 prev_aen
.members
.locale
= le16_to_cpu(prev_aen
.members
.locale
);
3992 * A class whose enum value is smaller is inclusive of all
3993 * higher values. If a PROGRESS (= -1) was previously
3994 * registered, then a new registration requests for higher
3995 * classes need not be sent to FW. They are automatically
3998 * Locale numbers don't have such hierarchy. They are bitmap
4001 if ((prev_aen
.members
.class <= curr_aen
.members
.class) &&
4002 !((le16_to_cpu(prev_aen
.members
.locale
) & curr_aen
.members
.locale
) ^
4003 curr_aen
.members
.locale
)) {
4005 * Previously issued event registration includes
4006 * current request. Nothing to do.
4010 curr_aen
.members
.locale
|= le16_to_cpu(prev_aen
.members
.locale
);
4012 if (prev_aen
.members
.class < curr_aen
.members
.class)
4013 curr_aen
.members
.class = prev_aen
.members
.class;
4015 instance
->aen_cmd
->abort_aen
= 1;
4016 ret_val
= megasas_issue_blocked_abort_cmd(instance
,
4021 printk(KERN_DEBUG
"megasas: Failed to abort "
4022 "previous AEN command\n");
4028 cmd
= megasas_get_cmd(instance
);
4033 dcmd
= &cmd
->frame
->dcmd
;
4035 memset(instance
->evt_detail
, 0, sizeof(struct megasas_evt_detail
));
4038 * Prepare DCMD for aen registration
4040 memset(dcmd
->mbox
.b
, 0, MFI_MBOX_SIZE
);
4042 dcmd
->cmd
= MFI_CMD_DCMD
;
4043 dcmd
->cmd_status
= 0x0;
4044 dcmd
->sge_count
= 1;
4045 dcmd
->flags
= cpu_to_le16(MFI_FRAME_DIR_READ
);
4048 dcmd
->data_xfer_len
= cpu_to_le32(sizeof(struct megasas_evt_detail
));
4049 dcmd
->opcode
= cpu_to_le32(MR_DCMD_CTRL_EVENT_WAIT
);
4050 dcmd
->mbox
.w
[0] = cpu_to_le32(seq_num
);
4051 instance
->last_seq_num
= seq_num
;
4052 dcmd
->mbox
.w
[1] = cpu_to_le32(curr_aen
.word
);
4053 dcmd
->sgl
.sge32
[0].phys_addr
= cpu_to_le32(instance
->evt_detail_h
);
4054 dcmd
->sgl
.sge32
[0].length
= cpu_to_le32(sizeof(struct megasas_evt_detail
));
4056 if (instance
->aen_cmd
!= NULL
) {
4057 megasas_return_cmd(instance
, cmd
);
4062 * Store reference to the cmd used to register for AEN. When an
4063 * application wants us to register for AEN, we have to abort this
4064 * cmd and re-register with a new EVENT LOCALE supplied by that app
4066 instance
->aen_cmd
= cmd
;
4069 * Issue the aen registration frame
4071 instance
->instancet
->issue_dcmd(instance
, cmd
);
4077 * megasas_start_aen - Subscribes to AEN during driver load time
4078 * @instance: Adapter soft state
4080 static int megasas_start_aen(struct megasas_instance
*instance
)
4082 struct megasas_evt_log_info eli
;
4083 union megasas_evt_class_locale class_locale
;
4086 * Get the latest sequence number from FW
4088 memset(&eli
, 0, sizeof(eli
));
4090 if (megasas_get_seq_num(instance
, &eli
))
4094 * Register AEN with FW for latest sequence number plus 1
4096 class_locale
.members
.reserved
= 0;
4097 class_locale
.members
.locale
= MR_EVT_LOCALE_ALL
;
4098 class_locale
.members
.class = MR_EVT_CLASS_DEBUG
;
4100 return megasas_register_aen(instance
,
4101 le32_to_cpu(eli
.newest_seq_num
) + 1,
4106 * megasas_io_attach - Attaches this driver to SCSI mid-layer
4107 * @instance: Adapter soft state
4109 static int megasas_io_attach(struct megasas_instance
*instance
)
4111 struct Scsi_Host
*host
= instance
->host
;
4114 * Export parameters required by SCSI mid-layer
4116 host
->irq
= instance
->pdev
->irq
;
4117 host
->unique_id
= instance
->unique_id
;
4118 if (instance
->is_imr
) {
4120 instance
->max_fw_cmds
- MEGASAS_SKINNY_INT_CMDS
;
4123 instance
->max_fw_cmds
- MEGASAS_INT_CMDS
;
4124 host
->this_id
= instance
->init_id
;
4125 host
->sg_tablesize
= instance
->max_num_sge
;
4127 if (instance
->fw_support_ieee
)
4128 instance
->max_sectors_per_req
= MEGASAS_MAX_SECTORS_IEEE
;
4131 * Check if the module parameter value for max_sectors can be used
4133 if (max_sectors
&& max_sectors
< instance
->max_sectors_per_req
)
4134 instance
->max_sectors_per_req
= max_sectors
;
4137 if (((instance
->pdev
->device
==
4138 PCI_DEVICE_ID_LSI_SAS1078GEN2
) ||
4139 (instance
->pdev
->device
==
4140 PCI_DEVICE_ID_LSI_SAS0079GEN2
)) &&
4141 (max_sectors
<= MEGASAS_MAX_SECTORS
)) {
4142 instance
->max_sectors_per_req
= max_sectors
;
4144 printk(KERN_INFO
"megasas: max_sectors should be > 0"
4145 "and <= %d (or < 1MB for GEN2 controller)\n",
4146 instance
->max_sectors_per_req
);
4151 host
->max_sectors
= instance
->max_sectors_per_req
;
4152 host
->cmd_per_lun
= MEGASAS_DEFAULT_CMD_PER_LUN
;
4153 host
->max_channel
= MEGASAS_MAX_CHANNELS
- 1;
4154 host
->max_id
= MEGASAS_MAX_DEV_PER_CHANNEL
;
4155 host
->max_lun
= MEGASAS_MAX_LUN
;
4156 host
->max_cmd_len
= 16;
4158 /* Fusion only supports host reset */
4159 if ((instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FUSION
) ||
4160 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_INVADER
) ||
4161 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FURY
)) {
4162 host
->hostt
->eh_device_reset_handler
= NULL
;
4163 host
->hostt
->eh_bus_reset_handler
= NULL
;
4167 * Notify the mid-layer about the new controller
4169 if (scsi_add_host(host
, &instance
->pdev
->dev
)) {
4170 printk(KERN_DEBUG
"megasas: scsi_add_host failed\n");
4175 * Trigger SCSI to scan our drives
4177 scsi_scan_host(host
);
4182 megasas_set_dma_mask(struct pci_dev
*pdev
)
4185 * All our contollers are capable of performing 64-bit DMA
4188 if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(64)) != 0) {
4190 if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(32)) != 0)
4191 goto fail_set_dma_mask
;
4194 if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(32)) != 0)
4195 goto fail_set_dma_mask
;
4205 * megasas_probe_one - PCI hotplug entry point
4206 * @pdev: PCI device structure
4207 * @id: PCI ids of supported hotplugged adapter
4209 static int megasas_probe_one(struct pci_dev
*pdev
,
4210 const struct pci_device_id
*id
)
4212 int rval
, pos
, i
, j
;
4213 struct Scsi_Host
*host
;
4214 struct megasas_instance
*instance
;
4217 /* Reset MSI-X in the kdump kernel */
4218 if (reset_devices
) {
4219 pos
= pci_find_capability(pdev
, PCI_CAP_ID_MSIX
);
4221 pci_read_config_word(pdev
, pos
+ PCI_MSIX_FLAGS
,
4223 if (control
& PCI_MSIX_FLAGS_ENABLE
) {
4224 dev_info(&pdev
->dev
, "resetting MSI-X\n");
4225 pci_write_config_word(pdev
,
4226 pos
+ PCI_MSIX_FLAGS
,
4228 ~PCI_MSIX_FLAGS_ENABLE
);
4234 * Announce PCI information
4236 printk(KERN_INFO
"megasas: %#4.04x:%#4.04x:%#4.04x:%#4.04x: ",
4237 pdev
->vendor
, pdev
->device
, pdev
->subsystem_vendor
,
4238 pdev
->subsystem_device
);
4240 printk("bus %d:slot %d:func %d\n",
4241 pdev
->bus
->number
, PCI_SLOT(pdev
->devfn
), PCI_FUNC(pdev
->devfn
));
4244 * PCI prepping: enable device set bus mastering and dma mask
4246 rval
= pci_enable_device_mem(pdev
);
4252 pci_set_master(pdev
);
4254 if (megasas_set_dma_mask(pdev
))
4255 goto fail_set_dma_mask
;
4257 host
= scsi_host_alloc(&megasas_template
,
4258 sizeof(struct megasas_instance
));
4261 printk(KERN_DEBUG
"megasas: scsi_host_alloc failed\n");
4262 goto fail_alloc_instance
;
4265 instance
= (struct megasas_instance
*)host
->hostdata
;
4266 memset(instance
, 0, sizeof(*instance
));
4267 atomic_set( &instance
->fw_reset_no_pci_access
, 0 );
4268 instance
->pdev
= pdev
;
4270 switch (instance
->pdev
->device
) {
4271 case PCI_DEVICE_ID_LSI_FUSION
:
4272 case PCI_DEVICE_ID_LSI_INVADER
:
4273 case PCI_DEVICE_ID_LSI_FURY
:
4275 struct fusion_context
*fusion
;
4277 instance
->ctrl_context
=
4278 kzalloc(sizeof(struct fusion_context
), GFP_KERNEL
);
4279 if (!instance
->ctrl_context
) {
4280 printk(KERN_DEBUG
"megasas: Failed to allocate "
4281 "memory for Fusion context info\n");
4282 goto fail_alloc_dma_buf
;
4284 fusion
= instance
->ctrl_context
;
4285 INIT_LIST_HEAD(&fusion
->cmd_pool
);
4286 spin_lock_init(&fusion
->cmd_pool_lock
);
4289 default: /* For all other supported controllers */
4291 instance
->producer
=
4292 pci_alloc_consistent(pdev
, sizeof(u32
),
4293 &instance
->producer_h
);
4294 instance
->consumer
=
4295 pci_alloc_consistent(pdev
, sizeof(u32
),
4296 &instance
->consumer_h
);
4298 if (!instance
->producer
|| !instance
->consumer
) {
4299 printk(KERN_DEBUG
"megasas: Failed to allocate"
4300 "memory for producer, consumer\n");
4301 goto fail_alloc_dma_buf
;
4304 *instance
->producer
= 0;
4305 *instance
->consumer
= 0;
4309 megasas_poll_wait_aen
= 0;
4310 instance
->flag_ieee
= 0;
4311 instance
->ev
= NULL
;
4312 instance
->issuepend_done
= 1;
4313 instance
->adprecovery
= MEGASAS_HBA_OPERATIONAL
;
4314 instance
->is_imr
= 0;
4315 megasas_poll_wait_aen
= 0;
4317 instance
->evt_detail
= pci_alloc_consistent(pdev
,
4319 megasas_evt_detail
),
4320 &instance
->evt_detail_h
);
4322 if (!instance
->evt_detail
) {
4323 printk(KERN_DEBUG
"megasas: Failed to allocate memory for "
4324 "event detail structure\n");
4325 goto fail_alloc_dma_buf
;
4329 * Initialize locks and queues
4331 INIT_LIST_HEAD(&instance
->cmd_pool
);
4332 INIT_LIST_HEAD(&instance
->internal_reset_pending_q
);
4334 atomic_set(&instance
->fw_outstanding
,0);
4336 init_waitqueue_head(&instance
->int_cmd_wait_q
);
4337 init_waitqueue_head(&instance
->abort_cmd_wait_q
);
4339 spin_lock_init(&instance
->cmd_pool_lock
);
4340 spin_lock_init(&instance
->hba_lock
);
4341 spin_lock_init(&instance
->completion_lock
);
4343 mutex_init(&instance
->aen_mutex
);
4344 mutex_init(&instance
->reset_mutex
);
4347 * Initialize PCI related and misc parameters
4349 instance
->host
= host
;
4350 instance
->unique_id
= pdev
->bus
->number
<< 8 | pdev
->devfn
;
4351 instance
->init_id
= MEGASAS_DEFAULT_INIT_ID
;
4353 if ((instance
->pdev
->device
== PCI_DEVICE_ID_LSI_SAS0073SKINNY
) ||
4354 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_SAS0071SKINNY
)) {
4355 instance
->flag_ieee
= 1;
4356 sema_init(&instance
->ioctl_sem
, MEGASAS_SKINNY_INT_CMDS
);
4358 sema_init(&instance
->ioctl_sem
, MEGASAS_INT_CMDS
);
4360 megasas_dbg_lvl
= 0;
4362 instance
->unload
= 1;
4363 instance
->last_time
= 0;
4364 instance
->disableOnlineCtrlReset
= 1;
4365 instance
->UnevenSpanSupport
= 0;
4367 if ((instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FUSION
) ||
4368 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_INVADER
) ||
4369 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FURY
))
4370 INIT_WORK(&instance
->work_init
, megasas_fusion_ocr_wq
);
4372 INIT_WORK(&instance
->work_init
, process_fw_state_change_wq
);
4375 * Initialize MFI Firmware
4377 if (megasas_init_fw(instance
))
4384 if (instance
->msix_vectors
) {
4385 for (i
= 0 ; i
< instance
->msix_vectors
; i
++) {
4386 instance
->irq_context
[i
].instance
= instance
;
4387 instance
->irq_context
[i
].MSIxIndex
= i
;
4388 if (request_irq(instance
->msixentry
[i
].vector
,
4389 instance
->instancet
->service_isr
, 0,
4391 &instance
->irq_context
[i
])) {
4392 printk(KERN_DEBUG
"megasas: Failed to "
4393 "register IRQ for vector %d.\n", i
);
4394 for (j
= 0 ; j
< i
; j
++)
4396 instance
->msixentry
[j
].vector
,
4397 &instance
->irq_context
[j
]);
4398 /* Retry irq register for IO_APIC */
4399 instance
->msix_vectors
= 0;
4400 goto retry_irq_register
;
4404 instance
->irq_context
[0].instance
= instance
;
4405 instance
->irq_context
[0].MSIxIndex
= 0;
4406 if (request_irq(pdev
->irq
, instance
->instancet
->service_isr
,
4407 IRQF_SHARED
, "megasas",
4408 &instance
->irq_context
[0])) {
4409 printk(KERN_DEBUG
"megasas: Failed to register IRQ\n");
4414 instance
->instancet
->enable_intr(instance
);
4417 * Store instance in PCI softstate
4419 pci_set_drvdata(pdev
, instance
);
4422 * Add this controller to megasas_mgmt_info structure so that it
4423 * can be exported to management applications
4425 megasas_mgmt_info
.count
++;
4426 megasas_mgmt_info
.instance
[megasas_mgmt_info
.max_index
] = instance
;
4427 megasas_mgmt_info
.max_index
++;
4430 * Register with SCSI mid-layer
4432 if (megasas_io_attach(instance
))
4433 goto fail_io_attach
;
4435 instance
->unload
= 0;
4438 * Initiate AEN (Asynchronous Event Notification)
4440 if (megasas_start_aen(instance
)) {
4441 printk(KERN_DEBUG
"megasas: start aen failed\n");
4442 goto fail_start_aen
;
4449 megasas_mgmt_info
.count
--;
4450 megasas_mgmt_info
.instance
[megasas_mgmt_info
.max_index
] = NULL
;
4451 megasas_mgmt_info
.max_index
--;
4453 pci_set_drvdata(pdev
, NULL
);
4454 instance
->instancet
->disable_intr(instance
);
4455 if (instance
->msix_vectors
)
4456 for (i
= 0 ; i
< instance
->msix_vectors
; i
++)
4457 free_irq(instance
->msixentry
[i
].vector
,
4458 &instance
->irq_context
[i
]);
4460 free_irq(instance
->pdev
->irq
, &instance
->irq_context
[0]);
4462 if ((instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FUSION
) ||
4463 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_INVADER
) ||
4464 (instance
->pdev
->device
== PCI_DEVICE_ID_LSI_FURY
))
4465 megasas_release_fusion(instance
);
4467 megasas_release_mfi(instance
);
4469 if (instance
->msix_vectors
)
4470 pci_disable_msix(instance
->pdev
);
4472 if (instance
->evt_detail
)
4473 pci_free_consistent(pdev
, sizeof(struct megasas_evt_detail
),
4474 instance
->evt_detail
,
4475 instance
->evt_detail_h
);
4477 if (instance
->producer
)
4478 pci_free_consistent(pdev
, sizeof(u32
), instance
->producer
,
4479 instance
->producer_h
);
4480 if (instance
->consumer
)
4481 pci_free_consistent(pdev
, sizeof(u32
), instance
->consumer
,
4482 instance
->consumer_h
);
4483 scsi_host_put(host
);
4485 fail_alloc_instance
:
4487 pci_disable_device(pdev
);
4493 * megasas_flush_cache - Requests FW to flush all its caches
4494 * @instance: Adapter soft state
4496 static void megasas_flush_cache(struct megasas_instance
*instance
)
4498 struct megasas_cmd
*cmd
;
4499 struct megasas_dcmd_frame
*dcmd
;
4501 if (instance
->adprecovery
== MEGASAS_HW_CRITICAL_ERROR
)
4504 cmd
= megasas_get_cmd(instance
);
4509 dcmd
= &cmd
->frame
->dcmd
;
4511 memset(dcmd
->mbox
.b
, 0, MFI_MBOX_SIZE
);
4513 dcmd
->cmd
= MFI_CMD_DCMD
;
4514 dcmd
->cmd_status
= 0x0;
4515 dcmd
->sge_count
= 0;
4516 dcmd
->flags
= cpu_to_le16(MFI_FRAME_DIR_NONE
);
4519 dcmd
->data_xfer_len
= 0;
4520 dcmd
->opcode
= cpu_to_le32(MR_DCMD_CTRL_CACHE_FLUSH
);
4521 dcmd
->mbox
.b
[0] = MR_FLUSH_CTRL_CACHE
| MR_FLUSH_DISK_CACHE
;
4523 megasas_issue_blocked_cmd(instance
, cmd
);
4525 megasas_return_cmd(instance
, cmd
);
4531 * megasas_shutdown_controller - Instructs FW to shutdown the controller
4532 * @instance: Adapter soft state
4533 * @opcode: Shutdown/Hibernate
4535 static void megasas_shutdown_controller(struct megasas_instance
*instance
,
4538 struct megasas_cmd
*cmd
;
4539 struct megasas_dcmd_frame
*dcmd
;
4541 if (instance
->adprecovery
== MEGASAS_HW_CRITICAL_ERROR
)
4544 cmd
= megasas_get_cmd(instance
);
4549 if (instance
->aen_cmd
)
4550 megasas_issue_blocked_abort_cmd(instance
, instance
->aen_cmd
);
4551 if (instance
->map_update_cmd
)
4552 megasas_issue_blocked_abort_cmd(instance
,
4553 instance
->map_update_cmd
);
4554 dcmd
= &cmd
->frame
->dcmd
;
4556 memset(dcmd
->mbox
.b
, 0, MFI_MBOX_SIZE
);
4558 dcmd
->cmd
= MFI_CMD_DCMD
;
4559 dcmd
->cmd_status
= 0x0;
4560 dcmd
->sge_count
= 0;
4561 dcmd
->flags
= cpu_to_le16(MFI_FRAME_DIR_NONE
);
4564 dcmd
->data_xfer_len
= 0;
4565 dcmd
->opcode
= cpu_to_le32(opcode
);
4567 megasas_issue_blocked_cmd(instance
, cmd
);
4569 megasas_return_cmd(instance
, cmd
);
4576 * megasas_suspend - driver suspend entry point
4577 * @pdev: PCI device structure
4578 * @state: PCI power state to suspend routine
4581 megasas_suspend(struct pci_dev
*pdev
, pm_message_t state
)
4583 struct Scsi_Host
*host
;
4584 struct megasas_instance
*instance
;
4587 instance
= pci_get_drvdata(pdev
);
4588 host
= instance
->host
;
4589 instance
->unload
= 1;
4591 megasas_flush_cache(instance
);
4592 megasas_shutdown_controller(instance
, MR_DCMD_HIBERNATE_SHUTDOWN
);
4594 /* cancel the delayed work if this work still in queue */
4595 if (instance
->ev
!= NULL
) {
4596 struct megasas_aen_event
*ev
= instance
->ev
;
4597 cancel_delayed_work_sync(&ev
->hotplug_work
);
4598 instance
->ev
= NULL
;
4601 tasklet_kill(&instance
->isr_tasklet
);
4603 pci_set_drvdata(instance
->pdev
, instance
);
4604 instance
->instancet
->disable_intr(instance
);
4606 if (instance
->msix_vectors
)
4607 for (i
= 0 ; i
< instance
->msix_vectors
; i
++)
4608 free_irq(instance
->msixentry
[i
].vector
,
4609 &instance
->irq_context
[i
]);
4611 free_irq(instance
->pdev
->irq
, &instance
->irq_context
[0]);
4612 if (instance
->msix_vectors
)
4613 pci_disable_msix(instance
->pdev
);
4615 pci_save_state(pdev
);
4616 pci_disable_device(pdev
);
4618 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
4624 * megasas_resume- driver resume entry point
4625 * @pdev: PCI device structure
4628 megasas_resume(struct pci_dev
*pdev
)
4631 struct Scsi_Host
*host
;
4632 struct megasas_instance
*instance
;
4634 instance
= pci_get_drvdata(pdev
);
4635 host
= instance
->host
;
4636 pci_set_power_state(pdev
, PCI_D0
);
4637 pci_enable_wake(pdev
, PCI_D0
, 0);
4638 pci_restore_state(pdev
);
4641 * PCI prepping: enable device set bus mastering and dma mask
4643 rval
= pci_enable_device_mem(pdev
);
4646 printk(KERN_ERR
"megasas: Enable device failed\n");
4650 pci_set_master(pdev
);
4652 if (megasas_set_dma_mask(pdev
))
4653 goto fail_set_dma_mask
;
4656 * Initialize MFI Firmware
4659 atomic_set(&instance
->fw_outstanding
, 0);
4662 * We expect the FW state to be READY
4664 if (megasas_transition_to_ready(instance
, 0))
4665 goto fail_ready_state
;
4667 /* Now re-enable MSI-X */
4668 if (instance
->msix_vectors
)
4669 pci_enable_msix(instance
->pdev
, instance
->msixentry
,
4670 instance
->msix_vectors
);
4672 switch (instance
->pdev
->device
) {
4673 case PCI_DEVICE_ID_LSI_FUSION
:
4674 case PCI_DEVICE_ID_LSI_INVADER
:
4675 case PCI_DEVICE_ID_LSI_FURY
:
4677 megasas_reset_reply_desc(instance
);
4678 if (megasas_ioc_init_fusion(instance
)) {
4679 megasas_free_cmds(instance
);
4680 megasas_free_cmds_fusion(instance
);
4683 if (!megasas_get_map_info(instance
))
4684 megasas_sync_map_info(instance
);
4688 *instance
->producer
= 0;
4689 *instance
->consumer
= 0;
4690 if (megasas_issue_init_mfi(instance
))
4695 tasklet_init(&instance
->isr_tasklet
, instance
->instancet
->tasklet
,
4696 (unsigned long)instance
);
4701 if (instance
->msix_vectors
) {
4702 for (i
= 0 ; i
< instance
->msix_vectors
; i
++) {
4703 instance
->irq_context
[i
].instance
= instance
;
4704 instance
->irq_context
[i
].MSIxIndex
= i
;
4705 if (request_irq(instance
->msixentry
[i
].vector
,
4706 instance
->instancet
->service_isr
, 0,
4708 &instance
->irq_context
[i
])) {
4709 printk(KERN_DEBUG
"megasas: Failed to "
4710 "register IRQ for vector %d.\n", i
);
4711 for (j
= 0 ; j
< i
; j
++)
4713 instance
->msixentry
[j
].vector
,
4714 &instance
->irq_context
[j
]);
4719 instance
->irq_context
[0].instance
= instance
;
4720 instance
->irq_context
[0].MSIxIndex
= 0;
4721 if (request_irq(pdev
->irq
, instance
->instancet
->service_isr
,
4722 IRQF_SHARED
, "megasas",
4723 &instance
->irq_context
[0])) {
4724 printk(KERN_DEBUG
"megasas: Failed to register IRQ\n");
4729 instance
->instancet
->enable_intr(instance
);
4730 instance
->unload
= 0;
4733 * Initiate AEN (Asynchronous Event Notification)
4735 if (megasas_start_aen(instance
))
4736 printk(KERN_ERR
"megasas: Start AEN failed\n");
4742 if (instance
->evt_detail
)
4743 pci_free_consistent(pdev
, sizeof(struct megasas_evt_detail
),
4744 instance
->evt_detail
,
4745 instance
->evt_detail_h
);
4747 if (instance
->producer
)
4748 pci_free_consistent(pdev
, sizeof(u32
), instance
->producer
,
4749 instance
->producer_h
);
4750 if (instance
->consumer
)
4751 pci_free_consistent(pdev
, sizeof(u32
), instance
->consumer
,
4752 instance
->consumer_h
);
4753 scsi_host_put(host
);
4758 pci_disable_device(pdev
);
4763 #define megasas_suspend NULL
4764 #define megasas_resume NULL
4768 * megasas_detach_one - PCI hot"un"plug entry point
4769 * @pdev: PCI device structure
4771 static void megasas_detach_one(struct pci_dev
*pdev
)
4774 struct Scsi_Host
*host
;
4775 struct megasas_instance
*instance
;
4776 struct fusion_context
*fusion
;
4778 instance
= pci_get_drvdata(pdev
);
4779 instance
->unload
= 1;
4780 host
= instance
->host
;
4781 fusion
= instance
->ctrl_context
;
4783 scsi_remove_host(instance
->host
);
4784 megasas_flush_cache(instance
);
4785 megasas_shutdown_controller(instance
, MR_DCMD_CTRL_SHUTDOWN
);
4787 /* cancel the delayed work if this work still in queue*/
4788 if (instance
->ev
!= NULL
) {
4789 struct megasas_aen_event
*ev
= instance
->ev
;
4790 cancel_delayed_work_sync(&ev
->hotplug_work
);
4791 instance
->ev
= NULL
;
4794 tasklet_kill(&instance
->isr_tasklet
);
4797 * Take the instance off the instance array. Note that we will not
4798 * decrement the max_index. We let this array be sparse array
4800 for (i
= 0; i
< megasas_mgmt_info
.max_index
; i
++) {
4801 if (megasas_mgmt_info
.instance
[i
] == instance
) {
4802 megasas_mgmt_info
.count
--;
4803 megasas_mgmt_info
.instance
[i
] = NULL
;
4809 pci_set_drvdata(instance
->pdev
, NULL
);
4811 instance
->instancet
->disable_intr(instance
);
4813 if (instance
->msix_vectors
)
4814 for (i
= 0 ; i
< instance
->msix_vectors
; i
++)
4815 free_irq(instance
->msixentry
[i
].vector
,
4816 &instance
->irq_context
[i
]);
4818 free_irq(instance
->pdev
->irq
, &instance
->irq_context
[0]);
4819 if (instance
->msix_vectors
)
4820 pci_disable_msix(instance
->pdev
);
4822 switch (instance
->pdev
->device
) {
4823 case PCI_DEVICE_ID_LSI_FUSION
:
4824 case PCI_DEVICE_ID_LSI_INVADER
:
4825 case PCI_DEVICE_ID_LSI_FURY
:
4826 megasas_release_fusion(instance
);
4827 for (i
= 0; i
< 2 ; i
++)
4828 if (fusion
->ld_map
[i
])
4829 dma_free_coherent(&instance
->pdev
->dev
,
4834 kfree(instance
->ctrl_context
);
4837 megasas_release_mfi(instance
);
4838 pci_free_consistent(pdev
, sizeof(u32
),
4840 instance
->producer_h
);
4841 pci_free_consistent(pdev
, sizeof(u32
),
4843 instance
->consumer_h
);
4847 if (instance
->evt_detail
)
4848 pci_free_consistent(pdev
, sizeof(struct megasas_evt_detail
),
4849 instance
->evt_detail
, instance
->evt_detail_h
);
4850 scsi_host_put(host
);
4852 pci_set_drvdata(pdev
, NULL
);
4854 pci_disable_device(pdev
);
4860 * megasas_shutdown - Shutdown entry point
4861 * @device: Generic device structure
4863 static void megasas_shutdown(struct pci_dev
*pdev
)
4866 struct megasas_instance
*instance
= pci_get_drvdata(pdev
);
4868 instance
->unload
= 1;
4869 megasas_flush_cache(instance
);
4870 megasas_shutdown_controller(instance
, MR_DCMD_CTRL_SHUTDOWN
);
4871 instance
->instancet
->disable_intr(instance
);
4872 if (instance
->msix_vectors
)
4873 for (i
= 0 ; i
< instance
->msix_vectors
; i
++)
4874 free_irq(instance
->msixentry
[i
].vector
,
4875 &instance
->irq_context
[i
]);
4877 free_irq(instance
->pdev
->irq
, &instance
->irq_context
[0]);
4878 if (instance
->msix_vectors
)
4879 pci_disable_msix(instance
->pdev
);
4883 * megasas_mgmt_open - char node "open" entry point
4885 static int megasas_mgmt_open(struct inode
*inode
, struct file
*filep
)
4888 * Allow only those users with admin rights
4890 if (!capable(CAP_SYS_ADMIN
))
4897 * megasas_mgmt_fasync - Async notifier registration from applications
4899 * This function adds the calling process to a driver global queue. When an
4900 * event occurs, SIGIO will be sent to all processes in this queue.
4902 static int megasas_mgmt_fasync(int fd
, struct file
*filep
, int mode
)
4906 mutex_lock(&megasas_async_queue_mutex
);
4908 rc
= fasync_helper(fd
, filep
, mode
, &megasas_async_queue
);
4910 mutex_unlock(&megasas_async_queue_mutex
);
4913 /* For sanity check when we get ioctl */
4914 filep
->private_data
= filep
;
4918 printk(KERN_DEBUG
"megasas: fasync_helper failed [%d]\n", rc
);
4924 * megasas_mgmt_poll - char node "poll" entry point
4926 static unsigned int megasas_mgmt_poll(struct file
*file
, poll_table
*wait
)
4929 unsigned long flags
;
4930 poll_wait(file
, &megasas_poll_wait
, wait
);
4931 spin_lock_irqsave(&poll_aen_lock
, flags
);
4932 if (megasas_poll_wait_aen
)
4933 mask
= (POLLIN
| POLLRDNORM
);
4936 spin_unlock_irqrestore(&poll_aen_lock
, flags
);
4941 * megasas_mgmt_fw_ioctl - Issues management ioctls to FW
4942 * @instance: Adapter soft state
4943 * @argp: User's ioctl packet
4946 megasas_mgmt_fw_ioctl(struct megasas_instance
*instance
,
4947 struct megasas_iocpacket __user
* user_ioc
,
4948 struct megasas_iocpacket
*ioc
)
4950 struct megasas_sge32
*kern_sge32
;
4951 struct megasas_cmd
*cmd
;
4952 void *kbuff_arr
[MAX_IOCTL_SGE
];
4953 dma_addr_t buf_handle
= 0;
4956 dma_addr_t sense_handle
;
4957 unsigned long *sense_ptr
;
4959 memset(kbuff_arr
, 0, sizeof(kbuff_arr
));
4961 if (ioc
->sge_count
> MAX_IOCTL_SGE
) {
4962 printk(KERN_DEBUG
"megasas: SGE count [%d] > max limit [%d]\n",
4963 ioc
->sge_count
, MAX_IOCTL_SGE
);
4967 cmd
= megasas_get_cmd(instance
);
4969 printk(KERN_DEBUG
"megasas: Failed to get a cmd packet\n");
4974 * User's IOCTL packet has 2 frames (maximum). Copy those two
4975 * frames into our cmd's frames. cmd->frame's context will get
4976 * overwritten when we copy from user's frames. So set that value
4979 memcpy(cmd
->frame
, ioc
->frame
.raw
, 2 * MEGAMFI_FRAME_SIZE
);
4980 cmd
->frame
->hdr
.context
= cpu_to_le32(cmd
->index
);
4981 cmd
->frame
->hdr
.pad_0
= 0;
4982 cmd
->frame
->hdr
.flags
&= cpu_to_le16(~(MFI_FRAME_IEEE
|
4984 MFI_FRAME_SENSE64
));
4987 * The management interface between applications and the fw uses
4988 * MFI frames. E.g, RAID configuration changes, LD property changes
4989 * etc are accomplishes through different kinds of MFI frames. The
4990 * driver needs to care only about substituting user buffers with
4991 * kernel buffers in SGLs. The location of SGL is embedded in the
4992 * struct iocpacket itself.
4994 kern_sge32
= (struct megasas_sge32
*)
4995 ((unsigned long)cmd
->frame
+ ioc
->sgl_off
);
4998 * For each user buffer, create a mirror buffer and copy in
5000 for (i
= 0; i
< ioc
->sge_count
; i
++) {
5001 if (!ioc
->sgl
[i
].iov_len
)
5004 kbuff_arr
[i
] = dma_alloc_coherent(&instance
->pdev
->dev
,
5005 ioc
->sgl
[i
].iov_len
,
5006 &buf_handle
, GFP_KERNEL
);
5007 if (!kbuff_arr
[i
]) {
5008 printk(KERN_DEBUG
"megasas: Failed to alloc "
5009 "kernel SGL buffer for IOCTL \n");
5015 * We don't change the dma_coherent_mask, so
5016 * pci_alloc_consistent only returns 32bit addresses
5018 kern_sge32
[i
].phys_addr
= cpu_to_le32(buf_handle
);
5019 kern_sge32
[i
].length
= cpu_to_le32(ioc
->sgl
[i
].iov_len
);
5022 * We created a kernel buffer corresponding to the
5023 * user buffer. Now copy in from the user buffer
5025 if (copy_from_user(kbuff_arr
[i
], ioc
->sgl
[i
].iov_base
,
5026 (u32
) (ioc
->sgl
[i
].iov_len
))) {
5032 if (ioc
->sense_len
) {
5033 sense
= dma_alloc_coherent(&instance
->pdev
->dev
, ioc
->sense_len
,
5034 &sense_handle
, GFP_KERNEL
);
5041 (unsigned long *) ((unsigned long)cmd
->frame
+ ioc
->sense_off
);
5042 *sense_ptr
= cpu_to_le32(sense_handle
);
5046 * Set the sync_cmd flag so that the ISR knows not to complete this
5047 * cmd to the SCSI mid-layer
5050 megasas_issue_blocked_cmd(instance
, cmd
);
5054 * copy out the kernel buffers to user buffers
5056 for (i
= 0; i
< ioc
->sge_count
; i
++) {
5057 if (copy_to_user(ioc
->sgl
[i
].iov_base
, kbuff_arr
[i
],
5058 ioc
->sgl
[i
].iov_len
)) {
5065 * copy out the sense
5067 if (ioc
->sense_len
) {
5069 * sense_ptr points to the location that has the user
5070 * sense buffer address
5072 sense_ptr
= (unsigned long *) ((unsigned long)ioc
->frame
.raw
+
5075 if (copy_to_user((void __user
*)((unsigned long)(*sense_ptr
)),
5076 sense
, ioc
->sense_len
)) {
5077 printk(KERN_ERR
"megasas: Failed to copy out to user "
5085 * copy the status codes returned by the fw
5087 if (copy_to_user(&user_ioc
->frame
.hdr
.cmd_status
,
5088 &cmd
->frame
->hdr
.cmd_status
, sizeof(u8
))) {
5089 printk(KERN_DEBUG
"megasas: Error copying out cmd_status\n");
5095 dma_free_coherent(&instance
->pdev
->dev
, ioc
->sense_len
,
5096 sense
, sense_handle
);
5099 for (i
= 0; i
< ioc
->sge_count
; i
++) {
5101 dma_free_coherent(&instance
->pdev
->dev
,
5102 le32_to_cpu(kern_sge32
[i
].length
),
5104 le32_to_cpu(kern_sge32
[i
].phys_addr
));
5107 megasas_return_cmd(instance
, cmd
);
5111 static int megasas_mgmt_ioctl_fw(struct file
*file
, unsigned long arg
)
5113 struct megasas_iocpacket __user
*user_ioc
=
5114 (struct megasas_iocpacket __user
*)arg
;
5115 struct megasas_iocpacket
*ioc
;
5116 struct megasas_instance
*instance
;
5119 unsigned long flags
;
5120 u32 wait_time
= MEGASAS_RESET_WAIT_TIME
;
5122 ioc
= kmalloc(sizeof(*ioc
), GFP_KERNEL
);
5126 if (copy_from_user(ioc
, user_ioc
, sizeof(*ioc
))) {
5131 instance
= megasas_lookup_instance(ioc
->host_no
);
5137 if (instance
->adprecovery
== MEGASAS_HW_CRITICAL_ERROR
) {
5138 printk(KERN_ERR
"Controller in crit error\n");
5143 if (instance
->unload
== 1) {
5149 * We will allow only MEGASAS_INT_CMDS number of parallel ioctl cmds
5151 if (down_interruptible(&instance
->ioctl_sem
)) {
5152 error
= -ERESTARTSYS
;
5156 for (i
= 0; i
< wait_time
; i
++) {
5158 spin_lock_irqsave(&instance
->hba_lock
, flags
);
5159 if (instance
->adprecovery
== MEGASAS_HBA_OPERATIONAL
) {
5160 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
5163 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
5165 if (!(i
% MEGASAS_RESET_NOTICE_INTERVAL
)) {
5166 printk(KERN_NOTICE
"megasas: waiting"
5167 "for controller reset to finish\n");
5173 spin_lock_irqsave(&instance
->hba_lock
, flags
);
5174 if (instance
->adprecovery
!= MEGASAS_HBA_OPERATIONAL
) {
5175 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
5177 printk(KERN_ERR
"megaraid_sas: timed out while"
5178 "waiting for HBA to recover\n");
5182 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
5184 error
= megasas_mgmt_fw_ioctl(instance
, user_ioc
, ioc
);
5186 up(&instance
->ioctl_sem
);
5193 static int megasas_mgmt_ioctl_aen(struct file
*file
, unsigned long arg
)
5195 struct megasas_instance
*instance
;
5196 struct megasas_aen aen
;
5199 unsigned long flags
;
5200 u32 wait_time
= MEGASAS_RESET_WAIT_TIME
;
5202 if (file
->private_data
!= file
) {
5203 printk(KERN_DEBUG
"megasas: fasync_helper was not "
5208 if (copy_from_user(&aen
, (void __user
*)arg
, sizeof(aen
)))
5211 instance
= megasas_lookup_instance(aen
.host_no
);
5216 if (instance
->adprecovery
== MEGASAS_HW_CRITICAL_ERROR
) {
5220 if (instance
->unload
== 1) {
5224 for (i
= 0; i
< wait_time
; i
++) {
5226 spin_lock_irqsave(&instance
->hba_lock
, flags
);
5227 if (instance
->adprecovery
== MEGASAS_HBA_OPERATIONAL
) {
5228 spin_unlock_irqrestore(&instance
->hba_lock
,
5233 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
5235 if (!(i
% MEGASAS_RESET_NOTICE_INTERVAL
)) {
5236 printk(KERN_NOTICE
"megasas: waiting for"
5237 "controller reset to finish\n");
5243 spin_lock_irqsave(&instance
->hba_lock
, flags
);
5244 if (instance
->adprecovery
!= MEGASAS_HBA_OPERATIONAL
) {
5245 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
5246 printk(KERN_ERR
"megaraid_sas: timed out while waiting"
5247 "for HBA to recover.\n");
5250 spin_unlock_irqrestore(&instance
->hba_lock
, flags
);
5252 mutex_lock(&instance
->aen_mutex
);
5253 error
= megasas_register_aen(instance
, aen
.seq_num
,
5254 aen
.class_locale_word
);
5255 mutex_unlock(&instance
->aen_mutex
);
5260 * megasas_mgmt_ioctl - char node ioctl entry point
5263 megasas_mgmt_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
5266 case MEGASAS_IOC_FIRMWARE
:
5267 return megasas_mgmt_ioctl_fw(file
, arg
);
5269 case MEGASAS_IOC_GET_AEN
:
5270 return megasas_mgmt_ioctl_aen(file
, arg
);
5276 #ifdef CONFIG_COMPAT
5277 static int megasas_mgmt_compat_ioctl_fw(struct file
*file
, unsigned long arg
)
5279 struct compat_megasas_iocpacket __user
*cioc
=
5280 (struct compat_megasas_iocpacket __user
*)arg
;
5281 struct megasas_iocpacket __user
*ioc
=
5282 compat_alloc_user_space(sizeof(struct megasas_iocpacket
));
5287 if (clear_user(ioc
, sizeof(*ioc
)))
5290 if (copy_in_user(&ioc
->host_no
, &cioc
->host_no
, sizeof(u16
)) ||
5291 copy_in_user(&ioc
->sgl_off
, &cioc
->sgl_off
, sizeof(u32
)) ||
5292 copy_in_user(&ioc
->sense_off
, &cioc
->sense_off
, sizeof(u32
)) ||
5293 copy_in_user(&ioc
->sense_len
, &cioc
->sense_len
, sizeof(u32
)) ||
5294 copy_in_user(ioc
->frame
.raw
, cioc
->frame
.raw
, 128) ||
5295 copy_in_user(&ioc
->sge_count
, &cioc
->sge_count
, sizeof(u32
)))
5299 * The sense_ptr is used in megasas_mgmt_fw_ioctl only when
5300 * sense_len is not null, so prepare the 64bit value under
5301 * the same condition.
5303 if (ioc
->sense_len
) {
5304 void __user
**sense_ioc_ptr
=
5305 (void __user
**)(ioc
->frame
.raw
+ ioc
->sense_off
);
5306 compat_uptr_t
*sense_cioc_ptr
=
5307 (compat_uptr_t
*)(cioc
->frame
.raw
+ cioc
->sense_off
);
5308 if (get_user(ptr
, sense_cioc_ptr
) ||
5309 put_user(compat_ptr(ptr
), sense_ioc_ptr
))
5313 for (i
= 0; i
< MAX_IOCTL_SGE
; i
++) {
5314 if (get_user(ptr
, &cioc
->sgl
[i
].iov_base
) ||
5315 put_user(compat_ptr(ptr
), &ioc
->sgl
[i
].iov_base
) ||
5316 copy_in_user(&ioc
->sgl
[i
].iov_len
,
5317 &cioc
->sgl
[i
].iov_len
, sizeof(compat_size_t
)))
5321 error
= megasas_mgmt_ioctl_fw(file
, (unsigned long)ioc
);
5323 if (copy_in_user(&cioc
->frame
.hdr
.cmd_status
,
5324 &ioc
->frame
.hdr
.cmd_status
, sizeof(u8
))) {
5325 printk(KERN_DEBUG
"megasas: error copy_in_user cmd_status\n");
5332 megasas_mgmt_compat_ioctl(struct file
*file
, unsigned int cmd
,
5336 case MEGASAS_IOC_FIRMWARE32
:
5337 return megasas_mgmt_compat_ioctl_fw(file
, arg
);
5338 case MEGASAS_IOC_GET_AEN
:
5339 return megasas_mgmt_ioctl_aen(file
, arg
);
5347 * File operations structure for management interface
5349 static const struct file_operations megasas_mgmt_fops
= {
5350 .owner
= THIS_MODULE
,
5351 .open
= megasas_mgmt_open
,
5352 .fasync
= megasas_mgmt_fasync
,
5353 .unlocked_ioctl
= megasas_mgmt_ioctl
,
5354 .poll
= megasas_mgmt_poll
,
5355 #ifdef CONFIG_COMPAT
5356 .compat_ioctl
= megasas_mgmt_compat_ioctl
,
5358 .llseek
= noop_llseek
,
5362 * PCI hotplug support registration structure
5364 static struct pci_driver megasas_pci_driver
= {
5366 .name
= "megaraid_sas",
5367 .id_table
= megasas_pci_table
,
5368 .probe
= megasas_probe_one
,
5369 .remove
= megasas_detach_one
,
5370 .suspend
= megasas_suspend
,
5371 .resume
= megasas_resume
,
5372 .shutdown
= megasas_shutdown
,
5376 * Sysfs driver attributes
5378 static ssize_t
megasas_sysfs_show_version(struct device_driver
*dd
, char *buf
)
5380 return snprintf(buf
, strlen(MEGASAS_VERSION
) + 2, "%s\n",
5384 static DRIVER_ATTR(version
, S_IRUGO
, megasas_sysfs_show_version
, NULL
);
5387 megasas_sysfs_show_release_date(struct device_driver
*dd
, char *buf
)
5389 return snprintf(buf
, strlen(MEGASAS_RELDATE
) + 2, "%s\n",
5393 static DRIVER_ATTR(release_date
, S_IRUGO
, megasas_sysfs_show_release_date
,
5397 megasas_sysfs_show_support_poll_for_event(struct device_driver
*dd
, char *buf
)
5399 return sprintf(buf
, "%u\n", support_poll_for_event
);
5402 static DRIVER_ATTR(support_poll_for_event
, S_IRUGO
,
5403 megasas_sysfs_show_support_poll_for_event
, NULL
);
5406 megasas_sysfs_show_support_device_change(struct device_driver
*dd
, char *buf
)
5408 return sprintf(buf
, "%u\n", support_device_change
);
5411 static DRIVER_ATTR(support_device_change
, S_IRUGO
,
5412 megasas_sysfs_show_support_device_change
, NULL
);
5415 megasas_sysfs_show_dbg_lvl(struct device_driver
*dd
, char *buf
)
5417 return sprintf(buf
, "%u\n", megasas_dbg_lvl
);
5421 megasas_sysfs_set_dbg_lvl(struct device_driver
*dd
, const char *buf
, size_t count
)
5424 if(sscanf(buf
,"%u",&megasas_dbg_lvl
)<1){
5425 printk(KERN_ERR
"megasas: could not set dbg_lvl\n");
5431 static DRIVER_ATTR(dbg_lvl
, S_IRUGO
|S_IWUSR
, megasas_sysfs_show_dbg_lvl
,
5432 megasas_sysfs_set_dbg_lvl
);
5435 megasas_aen_polling(struct work_struct
*work
)
5437 struct megasas_aen_event
*ev
=
5438 container_of(work
, struct megasas_aen_event
, hotplug_work
.work
);
5439 struct megasas_instance
*instance
= ev
->instance
;
5440 union megasas_evt_class_locale class_locale
;
5441 struct Scsi_Host
*host
;
5442 struct scsi_device
*sdev1
;
5445 int i
, j
, doscan
= 0;
5450 printk(KERN_ERR
"invalid instance!\n");
5454 instance
->ev
= NULL
;
5455 host
= instance
->host
;
5456 if (instance
->evt_detail
) {
5458 switch (le32_to_cpu(instance
->evt_detail
->code
)) {
5459 case MR_EVT_PD_INSERTED
:
5460 if (megasas_get_pd_list(instance
) == 0) {
5461 for (i
= 0; i
< MEGASAS_MAX_PD_CHANNELS
; i
++) {
5463 j
< MEGASAS_MAX_DEV_PER_CHANNEL
;
5467 (i
* MEGASAS_MAX_DEV_PER_CHANNEL
) + j
;
5470 scsi_device_lookup(host
, i
, j
, 0);
5472 if (instance
->pd_list
[pd_index
].driveState
5473 == MR_PD_STATE_SYSTEM
) {
5475 scsi_add_device(host
, i
, j
, 0);
5479 scsi_device_put(sdev1
);
5487 case MR_EVT_PD_REMOVED
:
5488 if (megasas_get_pd_list(instance
) == 0) {
5489 for (i
= 0; i
< MEGASAS_MAX_PD_CHANNELS
; i
++) {
5491 j
< MEGASAS_MAX_DEV_PER_CHANNEL
;
5495 (i
* MEGASAS_MAX_DEV_PER_CHANNEL
) + j
;
5498 scsi_device_lookup(host
, i
, j
, 0);
5500 if (instance
->pd_list
[pd_index
].driveState
5501 == MR_PD_STATE_SYSTEM
) {
5503 scsi_device_put(sdev1
);
5507 scsi_remove_device(sdev1
);
5508 scsi_device_put(sdev1
);
5517 case MR_EVT_LD_OFFLINE
:
5518 case MR_EVT_CFG_CLEARED
:
5519 case MR_EVT_LD_DELETED
:
5520 if (megasas_ld_list_query(instance
,
5521 MR_LD_QUERY_TYPE_EXPOSED_TO_HOST
))
5522 megasas_get_ld_list(instance
);
5523 for (i
= 0; i
< MEGASAS_MAX_LD_CHANNELS
; i
++) {
5525 j
< MEGASAS_MAX_DEV_PER_CHANNEL
;
5529 (i
* MEGASAS_MAX_DEV_PER_CHANNEL
) + j
;
5531 sdev1
= scsi_device_lookup(host
,
5532 MEGASAS_MAX_PD_CHANNELS
+ i
,
5536 if (instance
->ld_ids
[ld_index
] != 0xff) {
5538 scsi_device_put(sdev1
);
5542 scsi_remove_device(sdev1
);
5543 scsi_device_put(sdev1
);
5550 case MR_EVT_LD_CREATED
:
5551 if (megasas_ld_list_query(instance
,
5552 MR_LD_QUERY_TYPE_EXPOSED_TO_HOST
))
5553 megasas_get_ld_list(instance
);
5554 for (i
= 0; i
< MEGASAS_MAX_LD_CHANNELS
; i
++) {
5556 j
< MEGASAS_MAX_DEV_PER_CHANNEL
;
5559 (i
* MEGASAS_MAX_DEV_PER_CHANNEL
) + j
;
5561 sdev1
= scsi_device_lookup(host
,
5562 MEGASAS_MAX_PD_CHANNELS
+ i
,
5565 if (instance
->ld_ids
[ld_index
] !=
5568 scsi_add_device(host
,
5569 MEGASAS_MAX_PD_CHANNELS
+ i
,
5574 scsi_device_put(sdev1
);
5580 case MR_EVT_CTRL_HOST_BUS_SCAN_REQUESTED
:
5581 case MR_EVT_FOREIGN_CFG_IMPORTED
:
5582 case MR_EVT_LD_STATE_CHANGE
:
5590 printk(KERN_ERR
"invalid evt_detail!\n");
5596 printk(KERN_INFO
"scanning ...\n");
5597 megasas_get_pd_list(instance
);
5598 for (i
= 0; i
< MEGASAS_MAX_PD_CHANNELS
; i
++) {
5599 for (j
= 0; j
< MEGASAS_MAX_DEV_PER_CHANNEL
; j
++) {
5600 pd_index
= i
*MEGASAS_MAX_DEV_PER_CHANNEL
+ j
;
5601 sdev1
= scsi_device_lookup(host
, i
, j
, 0);
5602 if (instance
->pd_list
[pd_index
].driveState
==
5603 MR_PD_STATE_SYSTEM
) {
5605 scsi_add_device(host
, i
, j
, 0);
5608 scsi_device_put(sdev1
);
5611 scsi_remove_device(sdev1
);
5612 scsi_device_put(sdev1
);
5618 if (megasas_ld_list_query(instance
,
5619 MR_LD_QUERY_TYPE_EXPOSED_TO_HOST
))
5620 megasas_get_ld_list(instance
);
5621 for (i
= 0; i
< MEGASAS_MAX_LD_CHANNELS
; i
++) {
5622 for (j
= 0; j
< MEGASAS_MAX_DEV_PER_CHANNEL
; j
++) {
5624 (i
* MEGASAS_MAX_DEV_PER_CHANNEL
) + j
;
5626 sdev1
= scsi_device_lookup(host
,
5627 MEGASAS_MAX_PD_CHANNELS
+ i
, j
, 0);
5628 if (instance
->ld_ids
[ld_index
] != 0xff) {
5630 scsi_add_device(host
,
5631 MEGASAS_MAX_PD_CHANNELS
+ i
,
5634 scsi_device_put(sdev1
);
5638 scsi_remove_device(sdev1
);
5639 scsi_device_put(sdev1
);
5646 if ( instance
->aen_cmd
!= NULL
) {
5651 seq_num
= le32_to_cpu(instance
->evt_detail
->seq_num
) + 1;
5653 /* Register AEN with FW for latest sequence number plus 1 */
5654 class_locale
.members
.reserved
= 0;
5655 class_locale
.members
.locale
= MR_EVT_LOCALE_ALL
;
5656 class_locale
.members
.class = MR_EVT_CLASS_DEBUG
;
5657 mutex_lock(&instance
->aen_mutex
);
5658 error
= megasas_register_aen(instance
, seq_num
,
5660 mutex_unlock(&instance
->aen_mutex
);
5663 printk(KERN_ERR
"register aen failed error %x\n", error
);
5669 * megasas_init - Driver load entry point
5671 static int __init
megasas_init(void)
5676 * Announce driver version and other information
5678 printk(KERN_INFO
"megasas: %s %s\n", MEGASAS_VERSION
,
5679 MEGASAS_EXT_VERSION
);
5681 spin_lock_init(&poll_aen_lock
);
5683 support_poll_for_event
= 2;
5684 support_device_change
= 1;
5686 memset(&megasas_mgmt_info
, 0, sizeof(megasas_mgmt_info
));
5689 * Register character device node
5691 rval
= register_chrdev(0, "megaraid_sas_ioctl", &megasas_mgmt_fops
);
5694 printk(KERN_DEBUG
"megasas: failed to open device node\n");
5698 megasas_mgmt_majorno
= rval
;
5701 * Register ourselves as PCI hotplug module
5703 rval
= pci_register_driver(&megasas_pci_driver
);
5706 printk(KERN_DEBUG
"megasas: PCI hotplug regisration failed \n");
5710 rval
= driver_create_file(&megasas_pci_driver
.driver
,
5711 &driver_attr_version
);
5713 goto err_dcf_attr_ver
;
5714 rval
= driver_create_file(&megasas_pci_driver
.driver
,
5715 &driver_attr_release_date
);
5717 goto err_dcf_rel_date
;
5719 rval
= driver_create_file(&megasas_pci_driver
.driver
,
5720 &driver_attr_support_poll_for_event
);
5722 goto err_dcf_support_poll_for_event
;
5724 rval
= driver_create_file(&megasas_pci_driver
.driver
,
5725 &driver_attr_dbg_lvl
);
5727 goto err_dcf_dbg_lvl
;
5728 rval
= driver_create_file(&megasas_pci_driver
.driver
,
5729 &driver_attr_support_device_change
);
5731 goto err_dcf_support_device_change
;
5735 err_dcf_support_device_change
:
5736 driver_remove_file(&megasas_pci_driver
.driver
,
5737 &driver_attr_dbg_lvl
);
5739 driver_remove_file(&megasas_pci_driver
.driver
,
5740 &driver_attr_support_poll_for_event
);
5742 err_dcf_support_poll_for_event
:
5743 driver_remove_file(&megasas_pci_driver
.driver
,
5744 &driver_attr_release_date
);
5747 driver_remove_file(&megasas_pci_driver
.driver
, &driver_attr_version
);
5749 pci_unregister_driver(&megasas_pci_driver
);
5751 unregister_chrdev(megasas_mgmt_majorno
, "megaraid_sas_ioctl");
5756 * megasas_exit - Driver unload entry point
5758 static void __exit
megasas_exit(void)
5760 driver_remove_file(&megasas_pci_driver
.driver
,
5761 &driver_attr_dbg_lvl
);
5762 driver_remove_file(&megasas_pci_driver
.driver
,
5763 &driver_attr_support_poll_for_event
);
5764 driver_remove_file(&megasas_pci_driver
.driver
,
5765 &driver_attr_support_device_change
);
5766 driver_remove_file(&megasas_pci_driver
.driver
,
5767 &driver_attr_release_date
);
5768 driver_remove_file(&megasas_pci_driver
.driver
, &driver_attr_version
);
5770 pci_unregister_driver(&megasas_pci_driver
);
5771 unregister_chrdev(megasas_mgmt_majorno
, "megaraid_sas_ioctl");
5774 module_init(megasas_init
);
5775 module_exit(megasas_exit
);