net/mlx5e: Make function mlx5e_change_rep_mtu() static
[linux-2.6/btrfs-unstable.git] / drivers / scsi / megaraid / megaraid_sas_fusion.c
blobf4d988dd1e9d1a8389f4486a9b08bdfe9eb31a84
1 /*
2 * Linux MegaRAID driver for SAS based RAID controllers
4 * Copyright (c) 2009-2013 LSI Corporation
5 * Copyright (c) 2013-2014 Avago Technologies
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 * FILE: megaraid_sas_fusion.c
22 * Authors: Avago Technologies
23 * Sumant Patro
24 * Adam Radford
25 * Kashyap Desai <kashyap.desai@avagotech.com>
26 * Sumit Saxena <sumit.saxena@avagotech.com>
28 * Send feedback to: megaraidlinux.pdl@avagotech.com
30 * Mail to: Avago Technologies, 350 West Trimble Road, Building 90,
31 * San Jose, California 95131
34 #include <linux/kernel.h>
35 #include <linux/types.h>
36 #include <linux/pci.h>
37 #include <linux/list.h>
38 #include <linux/moduleparam.h>
39 #include <linux/module.h>
40 #include <linux/spinlock.h>
41 #include <linux/interrupt.h>
42 #include <linux/delay.h>
43 #include <linux/uio.h>
44 #include <linux/uaccess.h>
45 #include <linux/fs.h>
46 #include <linux/compat.h>
47 #include <linux/blkdev.h>
48 #include <linux/mutex.h>
49 #include <linux/poll.h>
50 #include <linux/vmalloc.h>
52 #include <scsi/scsi.h>
53 #include <scsi/scsi_cmnd.h>
54 #include <scsi/scsi_device.h>
55 #include <scsi/scsi_host.h>
56 #include <scsi/scsi_dbg.h>
57 #include <linux/dmi.h>
59 #include "megaraid_sas_fusion.h"
60 #include "megaraid_sas.h"
63 extern void megasas_free_cmds(struct megasas_instance *instance);
64 extern struct megasas_cmd *megasas_get_cmd(struct megasas_instance
65 *instance);
66 extern void
67 megasas_complete_cmd(struct megasas_instance *instance,
68 struct megasas_cmd *cmd, u8 alt_status);
69 int
70 wait_and_poll(struct megasas_instance *instance, struct megasas_cmd *cmd,
71 int seconds);
73 void
74 megasas_return_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd);
75 int megasas_alloc_cmds(struct megasas_instance *instance);
76 int
77 megasas_clear_intr_fusion(struct megasas_register_set __iomem *regs);
78 int
79 megasas_issue_polled(struct megasas_instance *instance,
80 struct megasas_cmd *cmd);
81 void
82 megasas_check_and_restore_queue_depth(struct megasas_instance *instance);
84 int megasas_transition_to_ready(struct megasas_instance *instance, int ocr);
85 void megaraid_sas_kill_hba(struct megasas_instance *instance);
87 extern u32 megasas_dbg_lvl;
88 int megasas_sriov_start_heartbeat(struct megasas_instance *instance,
89 int initial);
90 void megasas_start_timer(struct megasas_instance *instance);
91 extern struct megasas_mgmt_info megasas_mgmt_info;
92 extern unsigned int resetwaittime;
93 extern unsigned int dual_qdepth_disable;
94 static void megasas_free_rdpq_fusion(struct megasas_instance *instance);
95 static void megasas_free_reply_fusion(struct megasas_instance *instance);
96 static inline
97 void megasas_configure_queue_sizes(struct megasas_instance *instance);
99 /**
100 * megasas_check_same_4gb_region - check if allocation
101 * crosses same 4GB boundary or not
102 * @instance - adapter's soft instance
103 * start_addr - start address of DMA allocation
104 * size - size of allocation in bytes
105 * return - true : allocation does not cross same
106 * 4GB boundary
107 * false: allocation crosses same
108 * 4GB boundary
110 static inline bool megasas_check_same_4gb_region
111 (struct megasas_instance *instance, dma_addr_t start_addr, size_t size)
113 dma_addr_t end_addr;
115 end_addr = start_addr + size;
117 if (upper_32_bits(start_addr) != upper_32_bits(end_addr)) {
118 dev_err(&instance->pdev->dev,
119 "Failed to get same 4GB boundary: start_addr: 0x%llx end_addr: 0x%llx\n",
120 (unsigned long long)start_addr,
121 (unsigned long long)end_addr);
122 return false;
125 return true;
129 * megasas_enable_intr_fusion - Enables interrupts
130 * @regs: MFI register set
132 void
133 megasas_enable_intr_fusion(struct megasas_instance *instance)
135 struct megasas_register_set __iomem *regs;
136 regs = instance->reg_set;
138 instance->mask_interrupts = 0;
139 /* For Thunderbolt/Invader also clear intr on enable */
140 writel(~0, &regs->outbound_intr_status);
141 readl(&regs->outbound_intr_status);
143 writel(~MFI_FUSION_ENABLE_INTERRUPT_MASK, &(regs)->outbound_intr_mask);
145 /* Dummy readl to force pci flush */
146 readl(&regs->outbound_intr_mask);
150 * megasas_disable_intr_fusion - Disables interrupt
151 * @regs: MFI register set
153 void
154 megasas_disable_intr_fusion(struct megasas_instance *instance)
156 u32 mask = 0xFFFFFFFF;
157 u32 status;
158 struct megasas_register_set __iomem *regs;
159 regs = instance->reg_set;
160 instance->mask_interrupts = 1;
162 writel(mask, &regs->outbound_intr_mask);
163 /* Dummy readl to force pci flush */
164 status = readl(&regs->outbound_intr_mask);
168 megasas_clear_intr_fusion(struct megasas_register_set __iomem *regs)
170 u32 status;
172 * Check if it is our interrupt
174 status = readl(&regs->outbound_intr_status);
176 if (status & 1) {
177 writel(status, &regs->outbound_intr_status);
178 readl(&regs->outbound_intr_status);
179 return 1;
181 if (!(status & MFI_FUSION_ENABLE_INTERRUPT_MASK))
182 return 0;
184 return 1;
188 * megasas_get_cmd_fusion - Get a command from the free pool
189 * @instance: Adapter soft state
191 * Returns a blk_tag indexed mpt frame
193 inline struct megasas_cmd_fusion *megasas_get_cmd_fusion(struct megasas_instance
194 *instance, u32 blk_tag)
196 struct fusion_context *fusion;
198 fusion = instance->ctrl_context;
199 return fusion->cmd_list[blk_tag];
203 * megasas_return_cmd_fusion - Return a cmd to free command pool
204 * @instance: Adapter soft state
205 * @cmd: Command packet to be returned to free command pool
207 inline void megasas_return_cmd_fusion(struct megasas_instance *instance,
208 struct megasas_cmd_fusion *cmd)
210 cmd->scmd = NULL;
211 memset(cmd->io_request, 0, MEGA_MPI2_RAID_DEFAULT_IO_FRAME_SIZE);
212 cmd->r1_alt_dev_handle = MR_DEVHANDLE_INVALID;
213 cmd->cmd_completed = false;
217 * megasas_fire_cmd_fusion - Sends command to the FW
218 * @instance: Adapter soft state
219 * @req_desc: 64bit Request descriptor
221 * Perform PCI Write.
224 static void
225 megasas_fire_cmd_fusion(struct megasas_instance *instance,
226 union MEGASAS_REQUEST_DESCRIPTOR_UNION *req_desc)
228 #if defined(writeq) && defined(CONFIG_64BIT)
229 u64 req_data = (((u64)le32_to_cpu(req_desc->u.high) << 32) |
230 le32_to_cpu(req_desc->u.low));
232 writeq(req_data, &instance->reg_set->inbound_low_queue_port);
233 #else
234 unsigned long flags;
235 spin_lock_irqsave(&instance->hba_lock, flags);
236 writel(le32_to_cpu(req_desc->u.low),
237 &instance->reg_set->inbound_low_queue_port);
238 writel(le32_to_cpu(req_desc->u.high),
239 &instance->reg_set->inbound_high_queue_port);
240 mmiowb();
241 spin_unlock_irqrestore(&instance->hba_lock, flags);
242 #endif
246 * megasas_fusion_update_can_queue - Do all Adapter Queue depth related calculations here
247 * @instance: Adapter soft state
248 * fw_boot_context: Whether this function called during probe or after OCR
250 * This function is only for fusion controllers.
251 * Update host can queue, if firmware downgrade max supported firmware commands.
252 * Firmware upgrade case will be skiped because underlying firmware has
253 * more resource than exposed to the OS.
256 static void
257 megasas_fusion_update_can_queue(struct megasas_instance *instance, int fw_boot_context)
259 u16 cur_max_fw_cmds = 0;
260 u16 ldio_threshold = 0;
261 struct megasas_register_set __iomem *reg_set;
263 reg_set = instance->reg_set;
265 /* ventura FW does not fill outbound_scratch_pad_3 with queue depth */
266 if (instance->adapter_type < VENTURA_SERIES)
267 cur_max_fw_cmds =
268 readl(&instance->reg_set->outbound_scratch_pad_3) & 0x00FFFF;
270 if (dual_qdepth_disable || !cur_max_fw_cmds)
271 cur_max_fw_cmds = instance->instancet->read_fw_status_reg(reg_set) & 0x00FFFF;
272 else
273 ldio_threshold =
274 (instance->instancet->read_fw_status_reg(reg_set) & 0x00FFFF) - MEGASAS_FUSION_IOCTL_CMDS;
276 dev_info(&instance->pdev->dev,
277 "Current firmware supports maximum commands: %d\t LDIO threshold: %d\n",
278 cur_max_fw_cmds, ldio_threshold);
280 if (fw_boot_context == OCR_CONTEXT) {
281 cur_max_fw_cmds = cur_max_fw_cmds - 1;
282 if (cur_max_fw_cmds < instance->max_fw_cmds) {
283 instance->cur_can_queue =
284 cur_max_fw_cmds - (MEGASAS_FUSION_INTERNAL_CMDS +
285 MEGASAS_FUSION_IOCTL_CMDS);
286 instance->host->can_queue = instance->cur_can_queue;
287 instance->ldio_threshold = ldio_threshold;
289 } else {
290 instance->max_fw_cmds = cur_max_fw_cmds;
291 instance->ldio_threshold = ldio_threshold;
293 if (reset_devices)
294 instance->max_fw_cmds = min(instance->max_fw_cmds,
295 (u16)MEGASAS_KDUMP_QUEUE_DEPTH);
297 * Reduce the max supported cmds by 1. This is to ensure that the
298 * reply_q_sz (1 more than the max cmd that driver may send)
299 * does not exceed max cmds that the FW can support
301 instance->max_fw_cmds = instance->max_fw_cmds-1;
305 * megasas_free_cmds_fusion - Free all the cmds in the free cmd pool
306 * @instance: Adapter soft state
308 void
309 megasas_free_cmds_fusion(struct megasas_instance *instance)
311 int i;
312 struct fusion_context *fusion = instance->ctrl_context;
313 struct megasas_cmd_fusion *cmd;
315 if (fusion->sense)
316 dma_pool_free(fusion->sense_dma_pool, fusion->sense,
317 fusion->sense_phys_addr);
319 /* SG */
320 if (fusion->cmd_list) {
321 for (i = 0; i < instance->max_mpt_cmds; i++) {
322 cmd = fusion->cmd_list[i];
323 if (cmd) {
324 if (cmd->sg_frame)
325 dma_pool_free(fusion->sg_dma_pool,
326 cmd->sg_frame,
327 cmd->sg_frame_phys_addr);
329 kfree(cmd);
331 kfree(fusion->cmd_list);
334 if (fusion->sg_dma_pool) {
335 dma_pool_destroy(fusion->sg_dma_pool);
336 fusion->sg_dma_pool = NULL;
338 if (fusion->sense_dma_pool) {
339 dma_pool_destroy(fusion->sense_dma_pool);
340 fusion->sense_dma_pool = NULL;
344 /* Reply Frame, Desc*/
345 if (instance->is_rdpq)
346 megasas_free_rdpq_fusion(instance);
347 else
348 megasas_free_reply_fusion(instance);
350 /* Request Frame, Desc*/
351 if (fusion->req_frames_desc)
352 dma_free_coherent(&instance->pdev->dev,
353 fusion->request_alloc_sz, fusion->req_frames_desc,
354 fusion->req_frames_desc_phys);
355 if (fusion->io_request_frames)
356 dma_pool_free(fusion->io_request_frames_pool,
357 fusion->io_request_frames,
358 fusion->io_request_frames_phys);
359 if (fusion->io_request_frames_pool) {
360 dma_pool_destroy(fusion->io_request_frames_pool);
361 fusion->io_request_frames_pool = NULL;
366 * megasas_create_sg_sense_fusion - Creates DMA pool for cmd frames
367 * @instance: Adapter soft state
370 static int megasas_create_sg_sense_fusion(struct megasas_instance *instance)
372 int i;
373 u16 max_cmd;
374 struct fusion_context *fusion;
375 struct megasas_cmd_fusion *cmd;
376 int sense_sz;
377 u32 offset;
379 fusion = instance->ctrl_context;
380 max_cmd = instance->max_fw_cmds;
381 sense_sz = instance->max_mpt_cmds * SCSI_SENSE_BUFFERSIZE;
383 fusion->sg_dma_pool =
384 dma_pool_create("mr_sg", &instance->pdev->dev,
385 instance->max_chain_frame_sz,
386 MR_DEFAULT_NVME_PAGE_SIZE, 0);
387 /* SCSI_SENSE_BUFFERSIZE = 96 bytes */
388 fusion->sense_dma_pool =
389 dma_pool_create("mr_sense", &instance->pdev->dev,
390 sense_sz, 64, 0);
392 if (!fusion->sense_dma_pool || !fusion->sg_dma_pool) {
393 dev_err(&instance->pdev->dev,
394 "Failed from %s %d\n", __func__, __LINE__);
395 return -ENOMEM;
398 fusion->sense = dma_pool_alloc(fusion->sense_dma_pool,
399 GFP_KERNEL, &fusion->sense_phys_addr);
400 if (!fusion->sense) {
401 dev_err(&instance->pdev->dev,
402 "failed from %s %d\n", __func__, __LINE__);
403 return -ENOMEM;
406 /* sense buffer, request frame and reply desc pool requires to be in
407 * same 4 gb region. Below function will check this.
408 * In case of failure, new pci pool will be created with updated
409 * alignment.
410 * Older allocation and pool will be destroyed.
411 * Alignment will be used such a way that next allocation if success,
412 * will always meet same 4gb region requirement.
413 * Actual requirement is not alignment, but we need start and end of
414 * DMA address must have same upper 32 bit address.
417 if (!megasas_check_same_4gb_region(instance, fusion->sense_phys_addr,
418 sense_sz)) {
419 dma_pool_free(fusion->sense_dma_pool, fusion->sense,
420 fusion->sense_phys_addr);
421 fusion->sense = NULL;
422 dma_pool_destroy(fusion->sense_dma_pool);
424 fusion->sense_dma_pool =
425 dma_pool_create("mr_sense_align", &instance->pdev->dev,
426 sense_sz, roundup_pow_of_two(sense_sz),
428 if (!fusion->sense_dma_pool) {
429 dev_err(&instance->pdev->dev,
430 "Failed from %s %d\n", __func__, __LINE__);
431 return -ENOMEM;
433 fusion->sense = dma_pool_alloc(fusion->sense_dma_pool,
434 GFP_KERNEL,
435 &fusion->sense_phys_addr);
436 if (!fusion->sense) {
437 dev_err(&instance->pdev->dev,
438 "failed from %s %d\n", __func__, __LINE__);
439 return -ENOMEM;
444 * Allocate and attach a frame to each of the commands in cmd_list
446 for (i = 0; i < max_cmd; i++) {
447 cmd = fusion->cmd_list[i];
448 cmd->sg_frame = dma_pool_alloc(fusion->sg_dma_pool,
449 GFP_KERNEL, &cmd->sg_frame_phys_addr);
451 offset = SCSI_SENSE_BUFFERSIZE * i;
452 cmd->sense = (u8 *)fusion->sense + offset;
453 cmd->sense_phys_addr = fusion->sense_phys_addr + offset;
455 if (!cmd->sg_frame) {
456 dev_err(&instance->pdev->dev,
457 "Failed from %s %d\n", __func__, __LINE__);
458 return -ENOMEM;
462 /* create sense buffer for the raid 1/10 fp */
463 for (i = max_cmd; i < instance->max_mpt_cmds; i++) {
464 cmd = fusion->cmd_list[i];
465 offset = SCSI_SENSE_BUFFERSIZE * i;
466 cmd->sense = (u8 *)fusion->sense + offset;
467 cmd->sense_phys_addr = fusion->sense_phys_addr + offset;
471 return 0;
475 megasas_alloc_cmdlist_fusion(struct megasas_instance *instance)
477 u32 max_mpt_cmd, i, j;
478 struct fusion_context *fusion;
480 fusion = instance->ctrl_context;
482 max_mpt_cmd = instance->max_mpt_cmds;
485 * fusion->cmd_list is an array of struct megasas_cmd_fusion pointers.
486 * Allocate the dynamic array first and then allocate individual
487 * commands.
489 fusion->cmd_list =
490 kzalloc(sizeof(struct megasas_cmd_fusion *) * max_mpt_cmd,
491 GFP_KERNEL);
492 if (!fusion->cmd_list) {
493 dev_err(&instance->pdev->dev,
494 "Failed from %s %d\n", __func__, __LINE__);
495 return -ENOMEM;
498 for (i = 0; i < max_mpt_cmd; i++) {
499 fusion->cmd_list[i] = kzalloc(sizeof(struct megasas_cmd_fusion),
500 GFP_KERNEL);
501 if (!fusion->cmd_list[i]) {
502 for (j = 0; j < i; j++)
503 kfree(fusion->cmd_list[j]);
504 kfree(fusion->cmd_list);
505 dev_err(&instance->pdev->dev,
506 "Failed from %s %d\n", __func__, __LINE__);
507 return -ENOMEM;
511 return 0;
514 megasas_alloc_request_fusion(struct megasas_instance *instance)
516 struct fusion_context *fusion;
518 fusion = instance->ctrl_context;
520 retry_alloc:
521 fusion->io_request_frames_pool =
522 dma_pool_create("mr_ioreq", &instance->pdev->dev,
523 fusion->io_frames_alloc_sz, 16, 0);
525 if (!fusion->io_request_frames_pool) {
526 dev_err(&instance->pdev->dev,
527 "Failed from %s %d\n", __func__, __LINE__);
528 return -ENOMEM;
531 fusion->io_request_frames =
532 dma_pool_alloc(fusion->io_request_frames_pool,
533 GFP_KERNEL, &fusion->io_request_frames_phys);
534 if (!fusion->io_request_frames) {
535 if (instance->max_fw_cmds >= (MEGASAS_REDUCE_QD_COUNT * 2)) {
536 instance->max_fw_cmds -= MEGASAS_REDUCE_QD_COUNT;
537 dma_pool_destroy(fusion->io_request_frames_pool);
538 megasas_configure_queue_sizes(instance);
539 goto retry_alloc;
540 } else {
541 dev_err(&instance->pdev->dev,
542 "Failed from %s %d\n", __func__, __LINE__);
543 return -ENOMEM;
547 if (!megasas_check_same_4gb_region(instance,
548 fusion->io_request_frames_phys,
549 fusion->io_frames_alloc_sz)) {
550 dma_pool_free(fusion->io_request_frames_pool,
551 fusion->io_request_frames,
552 fusion->io_request_frames_phys);
553 fusion->io_request_frames = NULL;
554 dma_pool_destroy(fusion->io_request_frames_pool);
556 fusion->io_request_frames_pool =
557 dma_pool_create("mr_ioreq_align",
558 &instance->pdev->dev,
559 fusion->io_frames_alloc_sz,
560 roundup_pow_of_two(fusion->io_frames_alloc_sz),
563 if (!fusion->io_request_frames_pool) {
564 dev_err(&instance->pdev->dev,
565 "Failed from %s %d\n", __func__, __LINE__);
566 return -ENOMEM;
569 fusion->io_request_frames =
570 dma_pool_alloc(fusion->io_request_frames_pool,
571 GFP_KERNEL,
572 &fusion->io_request_frames_phys);
574 if (!fusion->io_request_frames) {
575 dev_err(&instance->pdev->dev,
576 "Failed from %s %d\n", __func__, __LINE__);
577 return -ENOMEM;
581 fusion->req_frames_desc =
582 dma_alloc_coherent(&instance->pdev->dev,
583 fusion->request_alloc_sz,
584 &fusion->req_frames_desc_phys, GFP_KERNEL);
585 if (!fusion->req_frames_desc) {
586 dev_err(&instance->pdev->dev,
587 "Failed from %s %d\n", __func__, __LINE__);
588 return -ENOMEM;
591 return 0;
595 megasas_alloc_reply_fusion(struct megasas_instance *instance)
597 int i, count;
598 struct fusion_context *fusion;
599 union MPI2_REPLY_DESCRIPTORS_UNION *reply_desc;
600 fusion = instance->ctrl_context;
602 count = instance->msix_vectors > 0 ? instance->msix_vectors : 1;
603 fusion->reply_frames_desc_pool =
604 dma_pool_create("mr_reply", &instance->pdev->dev,
605 fusion->reply_alloc_sz * count, 16, 0);
607 if (!fusion->reply_frames_desc_pool) {
608 dev_err(&instance->pdev->dev,
609 "Failed from %s %d\n", __func__, __LINE__);
610 return -ENOMEM;
613 fusion->reply_frames_desc[0] =
614 dma_pool_alloc(fusion->reply_frames_desc_pool,
615 GFP_KERNEL, &fusion->reply_frames_desc_phys[0]);
616 if (!fusion->reply_frames_desc[0]) {
617 dev_err(&instance->pdev->dev,
618 "Failed from %s %d\n", __func__, __LINE__);
619 return -ENOMEM;
622 if (!megasas_check_same_4gb_region(instance,
623 fusion->reply_frames_desc_phys[0],
624 (fusion->reply_alloc_sz * count))) {
625 dma_pool_free(fusion->reply_frames_desc_pool,
626 fusion->reply_frames_desc[0],
627 fusion->reply_frames_desc_phys[0]);
628 fusion->reply_frames_desc[0] = NULL;
629 dma_pool_destroy(fusion->reply_frames_desc_pool);
631 fusion->reply_frames_desc_pool =
632 dma_pool_create("mr_reply_align",
633 &instance->pdev->dev,
634 fusion->reply_alloc_sz * count,
635 roundup_pow_of_two(fusion->reply_alloc_sz * count),
638 if (!fusion->reply_frames_desc_pool) {
639 dev_err(&instance->pdev->dev,
640 "Failed from %s %d\n", __func__, __LINE__);
641 return -ENOMEM;
644 fusion->reply_frames_desc[0] =
645 dma_pool_alloc(fusion->reply_frames_desc_pool,
646 GFP_KERNEL,
647 &fusion->reply_frames_desc_phys[0]);
649 if (!fusion->reply_frames_desc[0]) {
650 dev_err(&instance->pdev->dev,
651 "Failed from %s %d\n", __func__, __LINE__);
652 return -ENOMEM;
656 reply_desc = fusion->reply_frames_desc[0];
657 for (i = 0; i < fusion->reply_q_depth * count; i++, reply_desc++)
658 reply_desc->Words = cpu_to_le64(ULLONG_MAX);
660 /* This is not a rdpq mode, but driver still populate
661 * reply_frame_desc array to use same msix index in ISR path.
663 for (i = 0; i < (count - 1); i++)
664 fusion->reply_frames_desc[i + 1] =
665 fusion->reply_frames_desc[i] +
666 (fusion->reply_alloc_sz)/sizeof(union MPI2_REPLY_DESCRIPTORS_UNION);
668 return 0;
672 megasas_alloc_rdpq_fusion(struct megasas_instance *instance)
674 int i, j, k, msix_count;
675 struct fusion_context *fusion;
676 union MPI2_REPLY_DESCRIPTORS_UNION *reply_desc;
677 union MPI2_REPLY_DESCRIPTORS_UNION *rdpq_chunk_virt[RDPQ_MAX_CHUNK_COUNT];
678 dma_addr_t rdpq_chunk_phys[RDPQ_MAX_CHUNK_COUNT];
679 u8 dma_alloc_count, abs_index;
680 u32 chunk_size, array_size, offset;
682 fusion = instance->ctrl_context;
683 chunk_size = fusion->reply_alloc_sz * RDPQ_MAX_INDEX_IN_ONE_CHUNK;
684 array_size = sizeof(struct MPI2_IOC_INIT_RDPQ_ARRAY_ENTRY) *
685 MAX_MSIX_QUEUES_FUSION;
687 fusion->rdpq_virt = pci_alloc_consistent(instance->pdev, array_size,
688 &fusion->rdpq_phys);
689 if (!fusion->rdpq_virt) {
690 dev_err(&instance->pdev->dev,
691 "Failed from %s %d\n", __func__, __LINE__);
692 return -ENOMEM;
695 memset(fusion->rdpq_virt, 0, array_size);
696 msix_count = instance->msix_vectors > 0 ? instance->msix_vectors : 1;
698 fusion->reply_frames_desc_pool = dma_pool_create("mr_rdpq",
699 &instance->pdev->dev,
700 chunk_size, 16, 0);
701 fusion->reply_frames_desc_pool_align =
702 dma_pool_create("mr_rdpq_align",
703 &instance->pdev->dev,
704 chunk_size,
705 roundup_pow_of_two(chunk_size),
708 if (!fusion->reply_frames_desc_pool ||
709 !fusion->reply_frames_desc_pool_align) {
710 dev_err(&instance->pdev->dev,
711 "Failed from %s %d\n", __func__, __LINE__);
712 return -ENOMEM;
716 * For INVADER_SERIES each set of 8 reply queues(0-7, 8-15, ..) and
717 * VENTURA_SERIES each set of 16 reply queues(0-15, 16-31, ..) should be
718 * within 4GB boundary and also reply queues in a set must have same
719 * upper 32-bits in their memory address. so here driver is allocating the
720 * DMA'able memory for reply queues according. Driver uses limitation of
721 * VENTURA_SERIES to manage INVADER_SERIES as well.
723 dma_alloc_count = DIV_ROUND_UP(msix_count, RDPQ_MAX_INDEX_IN_ONE_CHUNK);
725 for (i = 0; i < dma_alloc_count; i++) {
726 rdpq_chunk_virt[i] =
727 dma_pool_alloc(fusion->reply_frames_desc_pool,
728 GFP_KERNEL, &rdpq_chunk_phys[i]);
729 if (!rdpq_chunk_virt[i]) {
730 dev_err(&instance->pdev->dev,
731 "Failed from %s %d\n", __func__, __LINE__);
732 return -ENOMEM;
734 /* reply desc pool requires to be in same 4 gb region.
735 * Below function will check this.
736 * In case of failure, new pci pool will be created with updated
737 * alignment.
738 * For RDPQ buffers, driver always allocate two separate pci pool.
739 * Alignment will be used such a way that next allocation if
740 * success, will always meet same 4gb region requirement.
741 * rdpq_tracker keep track of each buffer's physical,
742 * virtual address and pci pool descriptor. It will help driver
743 * while freeing the resources.
746 if (!megasas_check_same_4gb_region(instance, rdpq_chunk_phys[i],
747 chunk_size)) {
748 dma_pool_free(fusion->reply_frames_desc_pool,
749 rdpq_chunk_virt[i],
750 rdpq_chunk_phys[i]);
752 rdpq_chunk_virt[i] =
753 dma_pool_alloc(fusion->reply_frames_desc_pool_align,
754 GFP_KERNEL, &rdpq_chunk_phys[i]);
755 if (!rdpq_chunk_virt[i]) {
756 dev_err(&instance->pdev->dev,
757 "Failed from %s %d\n",
758 __func__, __LINE__);
759 return -ENOMEM;
761 fusion->rdpq_tracker[i].dma_pool_ptr =
762 fusion->reply_frames_desc_pool_align;
763 } else {
764 fusion->rdpq_tracker[i].dma_pool_ptr =
765 fusion->reply_frames_desc_pool;
768 fusion->rdpq_tracker[i].pool_entry_phys = rdpq_chunk_phys[i];
769 fusion->rdpq_tracker[i].pool_entry_virt = rdpq_chunk_virt[i];
772 for (k = 0; k < dma_alloc_count; k++) {
773 for (i = 0; i < RDPQ_MAX_INDEX_IN_ONE_CHUNK; i++) {
774 abs_index = (k * RDPQ_MAX_INDEX_IN_ONE_CHUNK) + i;
776 if (abs_index == msix_count)
777 break;
778 offset = fusion->reply_alloc_sz * i;
779 fusion->rdpq_virt[abs_index].RDPQBaseAddress =
780 cpu_to_le64(rdpq_chunk_phys[k] + offset);
781 fusion->reply_frames_desc_phys[abs_index] =
782 rdpq_chunk_phys[k] + offset;
783 fusion->reply_frames_desc[abs_index] =
784 (union MPI2_REPLY_DESCRIPTORS_UNION *)((u8 *)rdpq_chunk_virt[k] + offset);
786 reply_desc = fusion->reply_frames_desc[abs_index];
787 for (j = 0; j < fusion->reply_q_depth; j++, reply_desc++)
788 reply_desc->Words = ULLONG_MAX;
792 return 0;
795 static void
796 megasas_free_rdpq_fusion(struct megasas_instance *instance) {
798 int i;
799 struct fusion_context *fusion;
801 fusion = instance->ctrl_context;
803 for (i = 0; i < RDPQ_MAX_CHUNK_COUNT; i++) {
804 if (fusion->rdpq_tracker[i].pool_entry_virt)
805 dma_pool_free(fusion->rdpq_tracker[i].dma_pool_ptr,
806 fusion->rdpq_tracker[i].pool_entry_virt,
807 fusion->rdpq_tracker[i].pool_entry_phys);
811 if (fusion->reply_frames_desc_pool)
812 dma_pool_destroy(fusion->reply_frames_desc_pool);
813 if (fusion->reply_frames_desc_pool_align)
814 dma_pool_destroy(fusion->reply_frames_desc_pool_align);
816 if (fusion->rdpq_virt)
817 pci_free_consistent(instance->pdev,
818 sizeof(struct MPI2_IOC_INIT_RDPQ_ARRAY_ENTRY) * MAX_MSIX_QUEUES_FUSION,
819 fusion->rdpq_virt, fusion->rdpq_phys);
822 static void
823 megasas_free_reply_fusion(struct megasas_instance *instance) {
825 struct fusion_context *fusion;
827 fusion = instance->ctrl_context;
829 if (fusion->reply_frames_desc[0])
830 dma_pool_free(fusion->reply_frames_desc_pool,
831 fusion->reply_frames_desc[0],
832 fusion->reply_frames_desc_phys[0]);
834 if (fusion->reply_frames_desc_pool)
835 dma_pool_destroy(fusion->reply_frames_desc_pool);
841 * megasas_alloc_cmds_fusion - Allocates the command packets
842 * @instance: Adapter soft state
845 * Each frame has a 32-bit field called context. This context is used to get
846 * back the megasas_cmd_fusion from the frame when a frame gets completed
847 * In this driver, the 32 bit values are the indices into an array cmd_list.
848 * This array is used only to look up the megasas_cmd_fusion given the context.
849 * The free commands themselves are maintained in a linked list called cmd_pool.
851 * cmds are formed in the io_request and sg_frame members of the
852 * megasas_cmd_fusion. The context field is used to get a request descriptor
853 * and is used as SMID of the cmd.
854 * SMID value range is from 1 to max_fw_cmds.
857 megasas_alloc_cmds_fusion(struct megasas_instance *instance)
859 int i;
860 struct fusion_context *fusion;
861 struct megasas_cmd_fusion *cmd;
862 u32 offset;
863 dma_addr_t io_req_base_phys;
864 u8 *io_req_base;
867 fusion = instance->ctrl_context;
869 if (megasas_alloc_request_fusion(instance))
870 goto fail_exit;
872 if (instance->is_rdpq) {
873 if (megasas_alloc_rdpq_fusion(instance))
874 goto fail_exit;
875 } else
876 if (megasas_alloc_reply_fusion(instance))
877 goto fail_exit;
879 if (megasas_alloc_cmdlist_fusion(instance))
880 goto fail_exit;
882 dev_info(&instance->pdev->dev, "Configured max firmware commands: %d\n",
883 instance->max_fw_cmds);
885 /* The first 256 bytes (SMID 0) is not used. Don't add to the cmd list */
886 io_req_base = fusion->io_request_frames + MEGA_MPI2_RAID_DEFAULT_IO_FRAME_SIZE;
887 io_req_base_phys = fusion->io_request_frames_phys + MEGA_MPI2_RAID_DEFAULT_IO_FRAME_SIZE;
890 * Add all the commands to command pool (fusion->cmd_pool)
893 /* SMID 0 is reserved. Set SMID/index from 1 */
894 for (i = 0; i < instance->max_mpt_cmds; i++) {
895 cmd = fusion->cmd_list[i];
896 offset = MEGA_MPI2_RAID_DEFAULT_IO_FRAME_SIZE * i;
897 memset(cmd, 0, sizeof(struct megasas_cmd_fusion));
898 cmd->index = i + 1;
899 cmd->scmd = NULL;
900 cmd->sync_cmd_idx =
901 (i >= instance->max_scsi_cmds && i < instance->max_fw_cmds) ?
902 (i - instance->max_scsi_cmds) :
903 (u32)ULONG_MAX; /* Set to Invalid */
904 cmd->instance = instance;
905 cmd->io_request =
906 (struct MPI2_RAID_SCSI_IO_REQUEST *)
907 (io_req_base + offset);
908 memset(cmd->io_request, 0,
909 sizeof(struct MPI2_RAID_SCSI_IO_REQUEST));
910 cmd->io_request_phys_addr = io_req_base_phys + offset;
911 cmd->r1_alt_dev_handle = MR_DEVHANDLE_INVALID;
914 if (megasas_create_sg_sense_fusion(instance))
915 goto fail_exit;
917 return 0;
919 fail_exit:
920 megasas_free_cmds_fusion(instance);
921 return -ENOMEM;
925 * wait_and_poll - Issues a polling command
926 * @instance: Adapter soft state
927 * @cmd: Command packet to be issued
929 * For polling, MFI requires the cmd_status to be set to 0xFF before posting.
932 wait_and_poll(struct megasas_instance *instance, struct megasas_cmd *cmd,
933 int seconds)
935 int i;
936 struct megasas_header *frame_hdr = &cmd->frame->hdr;
937 struct fusion_context *fusion;
939 u32 msecs = seconds * 1000;
941 fusion = instance->ctrl_context;
943 * Wait for cmd_status to change
945 for (i = 0; (i < msecs) && (frame_hdr->cmd_status == 0xff); i += 20) {
946 rmb();
947 msleep(20);
950 if (frame_hdr->cmd_status == MFI_STAT_INVALID_STATUS)
951 return DCMD_TIMEOUT;
952 else if (frame_hdr->cmd_status == MFI_STAT_OK)
953 return DCMD_SUCCESS;
954 else
955 return DCMD_FAILED;
959 * megasas_ioc_init_fusion - Initializes the FW
960 * @instance: Adapter soft state
962 * Issues the IOC Init cmd
965 megasas_ioc_init_fusion(struct megasas_instance *instance)
967 struct megasas_init_frame *init_frame;
968 struct MPI2_IOC_INIT_REQUEST *IOCInitMessage = NULL;
969 dma_addr_t ioc_init_handle;
970 struct megasas_cmd *cmd;
971 u8 ret, cur_rdpq_mode;
972 struct fusion_context *fusion;
973 union MEGASAS_REQUEST_DESCRIPTOR_UNION req_desc;
974 int i;
975 struct megasas_header *frame_hdr;
976 const char *sys_info;
977 MFI_CAPABILITIES *drv_ops;
978 u32 scratch_pad_2;
979 ktime_t time;
980 bool cur_fw_64bit_dma_capable;
982 fusion = instance->ctrl_context;
984 ioc_init_handle = fusion->ioc_init_request_phys;
985 IOCInitMessage = fusion->ioc_init_request;
987 cmd = fusion->ioc_init_cmd;
989 scratch_pad_2 = readl
990 (&instance->reg_set->outbound_scratch_pad_2);
992 cur_rdpq_mode = (scratch_pad_2 & MR_RDPQ_MODE_OFFSET) ? 1 : 0;
994 if (instance->adapter_type == INVADER_SERIES) {
995 cur_fw_64bit_dma_capable =
996 (scratch_pad_2 & MR_CAN_HANDLE_64_BIT_DMA_OFFSET) ? true : false;
998 if (instance->consistent_mask_64bit && !cur_fw_64bit_dma_capable) {
999 dev_err(&instance->pdev->dev, "Driver was operating on 64bit "
1000 "DMA mask, but upcoming FW does not support 64bit DMA mask\n");
1001 megaraid_sas_kill_hba(instance);
1002 ret = 1;
1003 goto fail_fw_init;
1007 if (instance->is_rdpq && !cur_rdpq_mode) {
1008 dev_err(&instance->pdev->dev, "Firmware downgrade *NOT SUPPORTED*"
1009 " from RDPQ mode to non RDPQ mode\n");
1010 ret = 1;
1011 goto fail_fw_init;
1014 instance->fw_sync_cache_support = (scratch_pad_2 &
1015 MR_CAN_HANDLE_SYNC_CACHE_OFFSET) ? 1 : 0;
1016 dev_info(&instance->pdev->dev, "FW supports sync cache\t: %s\n",
1017 instance->fw_sync_cache_support ? "Yes" : "No");
1019 memset(IOCInitMessage, 0, sizeof(struct MPI2_IOC_INIT_REQUEST));
1021 IOCInitMessage->Function = MPI2_FUNCTION_IOC_INIT;
1022 IOCInitMessage->WhoInit = MPI2_WHOINIT_HOST_DRIVER;
1023 IOCInitMessage->MsgVersion = cpu_to_le16(MPI2_VERSION);
1024 IOCInitMessage->HeaderVersion = cpu_to_le16(MPI2_HEADER_VERSION);
1025 IOCInitMessage->SystemRequestFrameSize = cpu_to_le16(MEGA_MPI2_RAID_DEFAULT_IO_FRAME_SIZE / 4);
1027 IOCInitMessage->ReplyDescriptorPostQueueDepth = cpu_to_le16(fusion->reply_q_depth);
1028 IOCInitMessage->ReplyDescriptorPostQueueAddress = instance->is_rdpq ?
1029 cpu_to_le64(fusion->rdpq_phys) :
1030 cpu_to_le64(fusion->reply_frames_desc_phys[0]);
1031 IOCInitMessage->MsgFlags = instance->is_rdpq ?
1032 MPI2_IOCINIT_MSGFLAG_RDPQ_ARRAY_MODE : 0;
1033 IOCInitMessage->SystemRequestFrameBaseAddress = cpu_to_le64(fusion->io_request_frames_phys);
1034 IOCInitMessage->SenseBufferAddressHigh = cpu_to_le32(upper_32_bits(fusion->sense_phys_addr));
1035 IOCInitMessage->HostMSIxVectors = instance->msix_vectors;
1036 IOCInitMessage->HostPageSize = MR_DEFAULT_NVME_PAGE_SHIFT;
1038 time = ktime_get_real();
1039 /* Convert to milliseconds as per FW requirement */
1040 IOCInitMessage->TimeStamp = cpu_to_le64(ktime_to_ms(time));
1042 init_frame = (struct megasas_init_frame *)cmd->frame;
1043 memset(init_frame, 0, IOC_INIT_FRAME_SIZE);
1045 frame_hdr = &cmd->frame->hdr;
1046 frame_hdr->cmd_status = 0xFF;
1047 frame_hdr->flags = cpu_to_le16(
1048 le16_to_cpu(frame_hdr->flags) |
1049 MFI_FRAME_DONT_POST_IN_REPLY_QUEUE);
1051 init_frame->cmd = MFI_CMD_INIT;
1052 init_frame->cmd_status = 0xFF;
1054 drv_ops = (MFI_CAPABILITIES *) &(init_frame->driver_operations);
1056 /* driver support Extended MSIX */
1057 if (instance->adapter_type >= INVADER_SERIES)
1058 drv_ops->mfi_capabilities.support_additional_msix = 1;
1059 /* driver supports HA / Remote LUN over Fast Path interface */
1060 drv_ops->mfi_capabilities.support_fp_remote_lun = 1;
1062 drv_ops->mfi_capabilities.support_max_255lds = 1;
1063 drv_ops->mfi_capabilities.support_ndrive_r1_lb = 1;
1064 drv_ops->mfi_capabilities.security_protocol_cmds_fw = 1;
1066 if (instance->max_chain_frame_sz > MEGASAS_CHAIN_FRAME_SZ_MIN)
1067 drv_ops->mfi_capabilities.support_ext_io_size = 1;
1069 drv_ops->mfi_capabilities.support_fp_rlbypass = 1;
1070 if (!dual_qdepth_disable)
1071 drv_ops->mfi_capabilities.support_ext_queue_depth = 1;
1073 drv_ops->mfi_capabilities.support_qd_throttling = 1;
1074 drv_ops->mfi_capabilities.support_pd_map_target_id = 1;
1075 drv_ops->mfi_capabilities.support_nvme_passthru = 1;
1077 if (instance->consistent_mask_64bit)
1078 drv_ops->mfi_capabilities.support_64bit_mode = 1;
1080 /* Convert capability to LE32 */
1081 cpu_to_le32s((u32 *)&init_frame->driver_operations.mfi_capabilities);
1083 sys_info = dmi_get_system_info(DMI_PRODUCT_UUID);
1084 if (instance->system_info_buf && sys_info) {
1085 memcpy(instance->system_info_buf->systemId, sys_info,
1086 strlen(sys_info) > 64 ? 64 : strlen(sys_info));
1087 instance->system_info_buf->systemIdLength =
1088 strlen(sys_info) > 64 ? 64 : strlen(sys_info);
1089 init_frame->system_info_lo = cpu_to_le32(lower_32_bits(instance->system_info_h));
1090 init_frame->system_info_hi = cpu_to_le32(upper_32_bits(instance->system_info_h));
1093 init_frame->queue_info_new_phys_addr_hi =
1094 cpu_to_le32(upper_32_bits(ioc_init_handle));
1095 init_frame->queue_info_new_phys_addr_lo =
1096 cpu_to_le32(lower_32_bits(ioc_init_handle));
1097 init_frame->data_xfer_len = cpu_to_le32(sizeof(struct MPI2_IOC_INIT_REQUEST));
1099 req_desc.u.low = cpu_to_le32(lower_32_bits(cmd->frame_phys_addr));
1100 req_desc.u.high = cpu_to_le32(upper_32_bits(cmd->frame_phys_addr));
1101 req_desc.MFAIo.RequestFlags =
1102 (MEGASAS_REQ_DESCRIPT_FLAGS_MFA <<
1103 MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
1106 * disable the intr before firing the init frame
1108 instance->instancet->disable_intr(instance);
1110 for (i = 0; i < (10 * 1000); i += 20) {
1111 if (readl(&instance->reg_set->doorbell) & 1)
1112 msleep(20);
1113 else
1114 break;
1117 megasas_fire_cmd_fusion(instance, &req_desc);
1119 wait_and_poll(instance, cmd, MFI_POLL_TIMEOUT_SECS);
1121 frame_hdr = &cmd->frame->hdr;
1122 if (frame_hdr->cmd_status != 0) {
1123 ret = 1;
1124 goto fail_fw_init;
1127 return 0;
1129 fail_fw_init:
1130 dev_err(&instance->pdev->dev,
1131 "Init cmd return status FAILED for SCSI host %d\n",
1132 instance->host->host_no);
1134 return ret;
1138 * megasas_sync_pd_seq_num - JBOD SEQ MAP
1139 * @instance: Adapter soft state
1140 * @pend: set to 1, if it is pended jbod map.
1142 * Issue Jbod map to the firmware. If it is pended command,
1143 * issue command and return. If it is first instance of jbod map
1144 * issue and receive command.
1147 megasas_sync_pd_seq_num(struct megasas_instance *instance, bool pend) {
1148 int ret = 0;
1149 u32 pd_seq_map_sz;
1150 struct megasas_cmd *cmd;
1151 struct megasas_dcmd_frame *dcmd;
1152 struct fusion_context *fusion = instance->ctrl_context;
1153 struct MR_PD_CFG_SEQ_NUM_SYNC *pd_sync;
1154 dma_addr_t pd_seq_h;
1156 pd_sync = (void *)fusion->pd_seq_sync[(instance->pd_seq_map_id & 1)];
1157 pd_seq_h = fusion->pd_seq_phys[(instance->pd_seq_map_id & 1)];
1158 pd_seq_map_sz = sizeof(struct MR_PD_CFG_SEQ_NUM_SYNC) +
1159 (sizeof(struct MR_PD_CFG_SEQ) *
1160 (MAX_PHYSICAL_DEVICES - 1));
1162 cmd = megasas_get_cmd(instance);
1163 if (!cmd) {
1164 dev_err(&instance->pdev->dev,
1165 "Could not get mfi cmd. Fail from %s %d\n",
1166 __func__, __LINE__);
1167 return -ENOMEM;
1170 dcmd = &cmd->frame->dcmd;
1172 memset(pd_sync, 0, pd_seq_map_sz);
1173 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
1175 if (pend) {
1176 dcmd->mbox.b[0] = MEGASAS_DCMD_MBOX_PEND_FLAG;
1177 dcmd->flags = MFI_FRAME_DIR_WRITE;
1178 instance->jbod_seq_cmd = cmd;
1179 } else {
1180 dcmd->flags = MFI_FRAME_DIR_READ;
1183 dcmd->cmd = MFI_CMD_DCMD;
1184 dcmd->cmd_status = 0xFF;
1185 dcmd->sge_count = 1;
1186 dcmd->timeout = 0;
1187 dcmd->pad_0 = 0;
1188 dcmd->data_xfer_len = cpu_to_le32(pd_seq_map_sz);
1189 dcmd->opcode = cpu_to_le32(MR_DCMD_SYSTEM_PD_MAP_GET_INFO);
1191 megasas_set_dma_settings(instance, dcmd, pd_seq_h, pd_seq_map_sz);
1193 if (pend) {
1194 instance->instancet->issue_dcmd(instance, cmd);
1195 return 0;
1198 /* Below code is only for non pended DCMD */
1199 if (!instance->mask_interrupts)
1200 ret = megasas_issue_blocked_cmd(instance, cmd,
1201 MFI_IO_TIMEOUT_SECS);
1202 else
1203 ret = megasas_issue_polled(instance, cmd);
1205 if (le32_to_cpu(pd_sync->count) > MAX_PHYSICAL_DEVICES) {
1206 dev_warn(&instance->pdev->dev,
1207 "driver supports max %d JBOD, but FW reports %d\n",
1208 MAX_PHYSICAL_DEVICES, le32_to_cpu(pd_sync->count));
1209 ret = -EINVAL;
1212 if (ret == DCMD_TIMEOUT)
1213 megaraid_sas_kill_hba(instance);
1215 if (ret == DCMD_SUCCESS)
1216 instance->pd_seq_map_id++;
1218 megasas_return_cmd(instance, cmd);
1219 return ret;
1223 * megasas_get_ld_map_info - Returns FW's ld_map structure
1224 * @instance: Adapter soft state
1225 * @pend: Pend the command or not
1226 * Issues an internal command (DCMD) to get the FW's controller PD
1227 * list structure. This information is mainly used to find out SYSTEM
1228 * supported by the FW.
1229 * dcmd.mbox value setting for MR_DCMD_LD_MAP_GET_INFO
1230 * dcmd.mbox.b[0] - number of LDs being sync'd
1231 * dcmd.mbox.b[1] - 0 - complete command immediately.
1232 * - 1 - pend till config change
1233 * dcmd.mbox.b[2] - 0 - supports max 64 lds and uses legacy MR_FW_RAID_MAP
1234 * - 1 - supports max MAX_LOGICAL_DRIVES_EXT lds and
1235 * uses extended struct MR_FW_RAID_MAP_EXT
1237 static int
1238 megasas_get_ld_map_info(struct megasas_instance *instance)
1240 int ret = 0;
1241 struct megasas_cmd *cmd;
1242 struct megasas_dcmd_frame *dcmd;
1243 void *ci;
1244 dma_addr_t ci_h = 0;
1245 u32 size_map_info;
1246 struct fusion_context *fusion;
1248 cmd = megasas_get_cmd(instance);
1250 if (!cmd) {
1251 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to get cmd for map info\n");
1252 return -ENOMEM;
1255 fusion = instance->ctrl_context;
1257 if (!fusion) {
1258 megasas_return_cmd(instance, cmd);
1259 return -ENXIO;
1262 dcmd = &cmd->frame->dcmd;
1264 size_map_info = fusion->current_map_sz;
1266 ci = (void *) fusion->ld_map[(instance->map_id & 1)];
1267 ci_h = fusion->ld_map_phys[(instance->map_id & 1)];
1269 if (!ci) {
1270 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to alloc mem for ld_map_info\n");
1271 megasas_return_cmd(instance, cmd);
1272 return -ENOMEM;
1275 memset(ci, 0, fusion->max_map_sz);
1276 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
1277 dcmd->cmd = MFI_CMD_DCMD;
1278 dcmd->cmd_status = 0xFF;
1279 dcmd->sge_count = 1;
1280 dcmd->flags = MFI_FRAME_DIR_READ;
1281 dcmd->timeout = 0;
1282 dcmd->pad_0 = 0;
1283 dcmd->data_xfer_len = cpu_to_le32(size_map_info);
1284 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_MAP_GET_INFO);
1286 megasas_set_dma_settings(instance, dcmd, ci_h, size_map_info);
1288 if (!instance->mask_interrupts)
1289 ret = megasas_issue_blocked_cmd(instance, cmd,
1290 MFI_IO_TIMEOUT_SECS);
1291 else
1292 ret = megasas_issue_polled(instance, cmd);
1294 if (ret == DCMD_TIMEOUT)
1295 megaraid_sas_kill_hba(instance);
1297 megasas_return_cmd(instance, cmd);
1299 return ret;
1303 megasas_get_map_info(struct megasas_instance *instance)
1305 struct fusion_context *fusion = instance->ctrl_context;
1307 fusion->fast_path_io = 0;
1308 if (!megasas_get_ld_map_info(instance)) {
1309 if (MR_ValidateMapInfo(instance, instance->map_id)) {
1310 fusion->fast_path_io = 1;
1311 return 0;
1314 return 1;
1318 * megasas_sync_map_info - Returns FW's ld_map structure
1319 * @instance: Adapter soft state
1321 * Issues an internal command (DCMD) to get the FW's controller PD
1322 * list structure. This information is mainly used to find out SYSTEM
1323 * supported by the FW.
1326 megasas_sync_map_info(struct megasas_instance *instance)
1328 int i;
1329 struct megasas_cmd *cmd;
1330 struct megasas_dcmd_frame *dcmd;
1331 u16 num_lds;
1332 u32 size_sync_info;
1333 struct fusion_context *fusion;
1334 struct MR_LD_TARGET_SYNC *ci = NULL;
1335 struct MR_DRV_RAID_MAP_ALL *map;
1336 struct MR_LD_RAID *raid;
1337 struct MR_LD_TARGET_SYNC *ld_sync;
1338 dma_addr_t ci_h = 0;
1339 u32 size_map_info;
1341 cmd = megasas_get_cmd(instance);
1343 if (!cmd) {
1344 dev_printk(KERN_DEBUG, &instance->pdev->dev, "Failed to get cmd for sync info\n");
1345 return -ENOMEM;
1348 fusion = instance->ctrl_context;
1350 if (!fusion) {
1351 megasas_return_cmd(instance, cmd);
1352 return 1;
1355 map = fusion->ld_drv_map[instance->map_id & 1];
1357 num_lds = le16_to_cpu(map->raidMap.ldCount);
1359 dcmd = &cmd->frame->dcmd;
1361 size_sync_info = sizeof(struct MR_LD_TARGET_SYNC) *num_lds;
1363 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
1365 ci = (struct MR_LD_TARGET_SYNC *)
1366 fusion->ld_map[(instance->map_id - 1) & 1];
1367 memset(ci, 0, fusion->max_map_sz);
1369 ci_h = fusion->ld_map_phys[(instance->map_id - 1) & 1];
1371 ld_sync = (struct MR_LD_TARGET_SYNC *)ci;
1373 for (i = 0; i < num_lds; i++, ld_sync++) {
1374 raid = MR_LdRaidGet(i, map);
1375 ld_sync->targetId = MR_GetLDTgtId(i, map);
1376 ld_sync->seqNum = raid->seqNum;
1379 size_map_info = fusion->current_map_sz;
1381 dcmd->cmd = MFI_CMD_DCMD;
1382 dcmd->cmd_status = 0xFF;
1383 dcmd->sge_count = 1;
1384 dcmd->flags = MFI_FRAME_DIR_WRITE;
1385 dcmd->timeout = 0;
1386 dcmd->pad_0 = 0;
1387 dcmd->data_xfer_len = cpu_to_le32(size_map_info);
1388 dcmd->mbox.b[0] = num_lds;
1389 dcmd->mbox.b[1] = MEGASAS_DCMD_MBOX_PEND_FLAG;
1390 dcmd->opcode = cpu_to_le32(MR_DCMD_LD_MAP_GET_INFO);
1392 megasas_set_dma_settings(instance, dcmd, ci_h, size_map_info);
1394 instance->map_update_cmd = cmd;
1396 instance->instancet->issue_dcmd(instance, cmd);
1398 return 0;
1402 * meagasas_display_intel_branding - Display branding string
1403 * @instance: per adapter object
1405 * Return nothing.
1407 static void
1408 megasas_display_intel_branding(struct megasas_instance *instance)
1410 if (instance->pdev->subsystem_vendor != PCI_VENDOR_ID_INTEL)
1411 return;
1413 switch (instance->pdev->device) {
1414 case PCI_DEVICE_ID_LSI_INVADER:
1415 switch (instance->pdev->subsystem_device) {
1416 case MEGARAID_INTEL_RS3DC080_SSDID:
1417 dev_info(&instance->pdev->dev, "scsi host %d: %s\n",
1418 instance->host->host_no,
1419 MEGARAID_INTEL_RS3DC080_BRANDING);
1420 break;
1421 case MEGARAID_INTEL_RS3DC040_SSDID:
1422 dev_info(&instance->pdev->dev, "scsi host %d: %s\n",
1423 instance->host->host_no,
1424 MEGARAID_INTEL_RS3DC040_BRANDING);
1425 break;
1426 case MEGARAID_INTEL_RS3SC008_SSDID:
1427 dev_info(&instance->pdev->dev, "scsi host %d: %s\n",
1428 instance->host->host_no,
1429 MEGARAID_INTEL_RS3SC008_BRANDING);
1430 break;
1431 case MEGARAID_INTEL_RS3MC044_SSDID:
1432 dev_info(&instance->pdev->dev, "scsi host %d: %s\n",
1433 instance->host->host_no,
1434 MEGARAID_INTEL_RS3MC044_BRANDING);
1435 break;
1436 default:
1437 break;
1439 break;
1440 case PCI_DEVICE_ID_LSI_FURY:
1441 switch (instance->pdev->subsystem_device) {
1442 case MEGARAID_INTEL_RS3WC080_SSDID:
1443 dev_info(&instance->pdev->dev, "scsi host %d: %s\n",
1444 instance->host->host_no,
1445 MEGARAID_INTEL_RS3WC080_BRANDING);
1446 break;
1447 case MEGARAID_INTEL_RS3WC040_SSDID:
1448 dev_info(&instance->pdev->dev, "scsi host %d: %s\n",
1449 instance->host->host_no,
1450 MEGARAID_INTEL_RS3WC040_BRANDING);
1451 break;
1452 default:
1453 break;
1455 break;
1456 case PCI_DEVICE_ID_LSI_CUTLASS_52:
1457 case PCI_DEVICE_ID_LSI_CUTLASS_53:
1458 switch (instance->pdev->subsystem_device) {
1459 case MEGARAID_INTEL_RMS3BC160_SSDID:
1460 dev_info(&instance->pdev->dev, "scsi host %d: %s\n",
1461 instance->host->host_no,
1462 MEGARAID_INTEL_RMS3BC160_BRANDING);
1463 break;
1464 default:
1465 break;
1467 break;
1468 default:
1469 break;
1474 * megasas_allocate_raid_maps - Allocate memory for RAID maps
1475 * @instance: Adapter soft state
1477 * return: if success: return 0
1478 * failed: return -ENOMEM
1480 static inline int megasas_allocate_raid_maps(struct megasas_instance *instance)
1482 struct fusion_context *fusion;
1483 int i = 0;
1485 fusion = instance->ctrl_context;
1487 fusion->drv_map_pages = get_order(fusion->drv_map_sz);
1489 for (i = 0; i < 2; i++) {
1490 fusion->ld_map[i] = NULL;
1492 fusion->ld_drv_map[i] = (void *)
1493 __get_free_pages(__GFP_ZERO | GFP_KERNEL,
1494 fusion->drv_map_pages);
1496 if (!fusion->ld_drv_map[i]) {
1497 fusion->ld_drv_map[i] = vzalloc(fusion->drv_map_sz);
1499 if (!fusion->ld_drv_map[i]) {
1500 dev_err(&instance->pdev->dev,
1501 "Could not allocate memory for local map"
1502 " size requested: %d\n",
1503 fusion->drv_map_sz);
1504 goto ld_drv_map_alloc_fail;
1509 for (i = 0; i < 2; i++) {
1510 fusion->ld_map[i] = dma_alloc_coherent(&instance->pdev->dev,
1511 fusion->max_map_sz,
1512 &fusion->ld_map_phys[i],
1513 GFP_KERNEL);
1514 if (!fusion->ld_map[i]) {
1515 dev_err(&instance->pdev->dev,
1516 "Could not allocate memory for map info %s:%d\n",
1517 __func__, __LINE__);
1518 goto ld_map_alloc_fail;
1522 return 0;
1524 ld_map_alloc_fail:
1525 for (i = 0; i < 2; i++) {
1526 if (fusion->ld_map[i])
1527 dma_free_coherent(&instance->pdev->dev,
1528 fusion->max_map_sz,
1529 fusion->ld_map[i],
1530 fusion->ld_map_phys[i]);
1533 ld_drv_map_alloc_fail:
1534 for (i = 0; i < 2; i++) {
1535 if (fusion->ld_drv_map[i]) {
1536 if (is_vmalloc_addr(fusion->ld_drv_map[i]))
1537 vfree(fusion->ld_drv_map[i]);
1538 else
1539 free_pages((ulong)fusion->ld_drv_map[i],
1540 fusion->drv_map_pages);
1544 return -ENOMEM;
1548 * megasas_configure_queue_sizes - Calculate size of request desc queue,
1549 * reply desc queue,
1550 * IO request frame queue, set can_queue.
1551 * @instance: Adapter soft state
1552 * @return: void
1554 static inline
1555 void megasas_configure_queue_sizes(struct megasas_instance *instance)
1557 struct fusion_context *fusion;
1558 u16 max_cmd;
1560 fusion = instance->ctrl_context;
1561 max_cmd = instance->max_fw_cmds;
1563 if (instance->adapter_type == VENTURA_SERIES)
1564 instance->max_mpt_cmds = instance->max_fw_cmds * RAID_1_PEER_CMDS;
1565 else
1566 instance->max_mpt_cmds = instance->max_fw_cmds;
1568 instance->max_scsi_cmds = instance->max_fw_cmds -
1569 (MEGASAS_FUSION_INTERNAL_CMDS +
1570 MEGASAS_FUSION_IOCTL_CMDS);
1571 instance->cur_can_queue = instance->max_scsi_cmds;
1572 instance->host->can_queue = instance->cur_can_queue;
1574 fusion->reply_q_depth = 2 * ((max_cmd + 1 + 15) / 16) * 16;
1576 fusion->request_alloc_sz = sizeof(union MEGASAS_REQUEST_DESCRIPTOR_UNION) *
1577 instance->max_mpt_cmds;
1578 fusion->reply_alloc_sz = sizeof(union MPI2_REPLY_DESCRIPTORS_UNION) *
1579 (fusion->reply_q_depth);
1580 fusion->io_frames_alloc_sz = MEGA_MPI2_RAID_DEFAULT_IO_FRAME_SIZE +
1581 (MEGA_MPI2_RAID_DEFAULT_IO_FRAME_SIZE
1582 * (instance->max_mpt_cmds + 1)); /* Extra 1 for SMID 0 */
1585 static int megasas_alloc_ioc_init_frame(struct megasas_instance *instance)
1587 struct fusion_context *fusion;
1588 struct megasas_cmd *cmd;
1590 fusion = instance->ctrl_context;
1592 cmd = kzalloc(sizeof(struct megasas_cmd), GFP_KERNEL);
1594 if (!cmd) {
1595 dev_err(&instance->pdev->dev, "Failed from func: %s line: %d\n",
1596 __func__, __LINE__);
1597 return -ENOMEM;
1600 cmd->frame = dma_alloc_coherent(&instance->pdev->dev,
1601 IOC_INIT_FRAME_SIZE,
1602 &cmd->frame_phys_addr, GFP_KERNEL);
1604 if (!cmd->frame) {
1605 dev_err(&instance->pdev->dev, "Failed from func: %s line: %d\n",
1606 __func__, __LINE__);
1607 kfree(cmd);
1608 return -ENOMEM;
1611 fusion->ioc_init_cmd = cmd;
1612 return 0;
1616 * megasas_free_ioc_init_cmd - Free IOC INIT command frame
1617 * @instance: Adapter soft state
1619 static inline void megasas_free_ioc_init_cmd(struct megasas_instance *instance)
1621 struct fusion_context *fusion;
1623 fusion = instance->ctrl_context;
1625 if (fusion->ioc_init_cmd && fusion->ioc_init_cmd->frame)
1626 dma_free_coherent(&instance->pdev->dev,
1627 IOC_INIT_FRAME_SIZE,
1628 fusion->ioc_init_cmd->frame,
1629 fusion->ioc_init_cmd->frame_phys_addr);
1631 if (fusion->ioc_init_cmd)
1632 kfree(fusion->ioc_init_cmd);
1636 * megasas_init_adapter_fusion - Initializes the FW
1637 * @instance: Adapter soft state
1639 * This is the main function for initializing firmware.
1642 megasas_init_adapter_fusion(struct megasas_instance *instance)
1644 struct megasas_register_set __iomem *reg_set;
1645 struct fusion_context *fusion;
1646 u32 scratch_pad_2;
1647 int i = 0, count;
1649 fusion = instance->ctrl_context;
1651 reg_set = instance->reg_set;
1653 megasas_fusion_update_can_queue(instance, PROBE_CONTEXT);
1656 * Only Driver's internal DCMDs and IOCTL DCMDs needs to have MFI frames
1658 instance->max_mfi_cmds =
1659 MEGASAS_FUSION_INTERNAL_CMDS + MEGASAS_FUSION_IOCTL_CMDS;
1661 megasas_configure_queue_sizes(instance);
1663 scratch_pad_2 = readl(&instance->reg_set->outbound_scratch_pad_2);
1664 /* If scratch_pad_2 & MEGASAS_MAX_CHAIN_SIZE_UNITS_MASK is set,
1665 * Firmware support extended IO chain frame which is 4 times more than
1666 * legacy Firmware.
1667 * Legacy Firmware - Frame size is (8 * 128) = 1K
1668 * 1M IO Firmware - Frame size is (8 * 128 * 4) = 4K
1670 if (scratch_pad_2 & MEGASAS_MAX_CHAIN_SIZE_UNITS_MASK)
1671 instance->max_chain_frame_sz =
1672 ((scratch_pad_2 & MEGASAS_MAX_CHAIN_SIZE_MASK) >>
1673 MEGASAS_MAX_CHAIN_SHIFT) * MEGASAS_1MB_IO;
1674 else
1675 instance->max_chain_frame_sz =
1676 ((scratch_pad_2 & MEGASAS_MAX_CHAIN_SIZE_MASK) >>
1677 MEGASAS_MAX_CHAIN_SHIFT) * MEGASAS_256K_IO;
1679 if (instance->max_chain_frame_sz < MEGASAS_CHAIN_FRAME_SZ_MIN) {
1680 dev_warn(&instance->pdev->dev, "frame size %d invalid, fall back to legacy max frame size %d\n",
1681 instance->max_chain_frame_sz,
1682 MEGASAS_CHAIN_FRAME_SZ_MIN);
1683 instance->max_chain_frame_sz = MEGASAS_CHAIN_FRAME_SZ_MIN;
1686 fusion->max_sge_in_main_msg =
1687 (MEGA_MPI2_RAID_DEFAULT_IO_FRAME_SIZE
1688 - offsetof(struct MPI2_RAID_SCSI_IO_REQUEST, SGL))/16;
1690 fusion->max_sge_in_chain =
1691 instance->max_chain_frame_sz
1692 / sizeof(union MPI2_SGE_IO_UNION);
1694 instance->max_num_sge =
1695 rounddown_pow_of_two(fusion->max_sge_in_main_msg
1696 + fusion->max_sge_in_chain - 2);
1698 /* Used for pass thru MFI frame (DCMD) */
1699 fusion->chain_offset_mfi_pthru =
1700 offsetof(struct MPI2_RAID_SCSI_IO_REQUEST, SGL)/16;
1702 fusion->chain_offset_io_request =
1703 (MEGA_MPI2_RAID_DEFAULT_IO_FRAME_SIZE -
1704 sizeof(union MPI2_SGE_IO_UNION))/16;
1706 count = instance->msix_vectors > 0 ? instance->msix_vectors : 1;
1707 for (i = 0 ; i < count; i++)
1708 fusion->last_reply_idx[i] = 0;
1711 * For fusion adapters, 3 commands for IOCTL and 8 commands
1712 * for driver's internal DCMDs.
1714 instance->max_scsi_cmds = instance->max_fw_cmds -
1715 (MEGASAS_FUSION_INTERNAL_CMDS +
1716 MEGASAS_FUSION_IOCTL_CMDS);
1717 sema_init(&instance->ioctl_sem, MEGASAS_FUSION_IOCTL_CMDS);
1719 if (megasas_alloc_ioc_init_frame(instance))
1720 return 1;
1723 * Allocate memory for descriptors
1724 * Create a pool of commands
1726 if (megasas_alloc_cmds(instance))
1727 goto fail_alloc_mfi_cmds;
1728 if (megasas_alloc_cmds_fusion(instance))
1729 goto fail_alloc_cmds;
1731 if (megasas_ioc_init_fusion(instance))
1732 goto fail_ioc_init;
1734 megasas_display_intel_branding(instance);
1735 if (megasas_get_ctrl_info(instance)) {
1736 dev_err(&instance->pdev->dev,
1737 "Could not get controller info. Fail from %s %d\n",
1738 __func__, __LINE__);
1739 goto fail_ioc_init;
1742 instance->flag_ieee = 1;
1743 instance->r1_ldio_hint_default = MR_R1_LDIO_PIGGYBACK_DEFAULT;
1744 fusion->fast_path_io = 0;
1746 if (megasas_allocate_raid_maps(instance))
1747 goto fail_ioc_init;
1749 if (!megasas_get_map_info(instance))
1750 megasas_sync_map_info(instance);
1752 return 0;
1754 fail_ioc_init:
1755 megasas_free_cmds_fusion(instance);
1756 fail_alloc_cmds:
1757 megasas_free_cmds(instance);
1758 fail_alloc_mfi_cmds:
1759 megasas_free_ioc_init_cmd(instance);
1760 return 1;
1764 * map_cmd_status - Maps FW cmd status to OS cmd status
1765 * @cmd : Pointer to cmd
1766 * @status : status of cmd returned by FW
1767 * @ext_status : ext status of cmd returned by FW
1770 void
1771 map_cmd_status(struct fusion_context *fusion,
1772 struct scsi_cmnd *scmd, u8 status, u8 ext_status,
1773 u32 data_length, u8 *sense)
1775 u8 cmd_type;
1776 int resid;
1778 cmd_type = megasas_cmd_type(scmd);
1779 switch (status) {
1781 case MFI_STAT_OK:
1782 scmd->result = DID_OK << 16;
1783 break;
1785 case MFI_STAT_SCSI_IO_FAILED:
1786 case MFI_STAT_LD_INIT_IN_PROGRESS:
1787 scmd->result = (DID_ERROR << 16) | ext_status;
1788 break;
1790 case MFI_STAT_SCSI_DONE_WITH_ERROR:
1792 scmd->result = (DID_OK << 16) | ext_status;
1793 if (ext_status == SAM_STAT_CHECK_CONDITION) {
1794 memset(scmd->sense_buffer, 0,
1795 SCSI_SENSE_BUFFERSIZE);
1796 memcpy(scmd->sense_buffer, sense,
1797 SCSI_SENSE_BUFFERSIZE);
1798 scmd->result |= DRIVER_SENSE << 24;
1802 * If the IO request is partially completed, then MR FW will
1803 * update "io_request->DataLength" field with actual number of
1804 * bytes transferred.Driver will set residual bytes count in
1805 * SCSI command structure.
1807 resid = (scsi_bufflen(scmd) - data_length);
1808 scsi_set_resid(scmd, resid);
1810 if (resid &&
1811 ((cmd_type == READ_WRITE_LDIO) ||
1812 (cmd_type == READ_WRITE_SYSPDIO)))
1813 scmd_printk(KERN_INFO, scmd, "BRCM Debug mfi stat 0x%x, data len"
1814 " requested/completed 0x%x/0x%x\n",
1815 status, scsi_bufflen(scmd), data_length);
1816 break;
1818 case MFI_STAT_LD_OFFLINE:
1819 case MFI_STAT_DEVICE_NOT_FOUND:
1820 scmd->result = DID_BAD_TARGET << 16;
1821 break;
1822 case MFI_STAT_CONFIG_SEQ_MISMATCH:
1823 scmd->result = DID_IMM_RETRY << 16;
1824 break;
1825 default:
1826 scmd->result = DID_ERROR << 16;
1827 break;
1832 * megasas_is_prp_possible -
1833 * Checks if native NVMe PRPs can be built for the IO
1835 * @instance: Adapter soft state
1836 * @scmd: SCSI command from the mid-layer
1837 * @sge_count: scatter gather element count.
1839 * Returns: true: PRPs can be built
1840 * false: IEEE SGLs needs to be built
1842 static bool
1843 megasas_is_prp_possible(struct megasas_instance *instance,
1844 struct scsi_cmnd *scmd, int sge_count)
1846 struct fusion_context *fusion;
1847 int i;
1848 u32 data_length = 0;
1849 struct scatterlist *sg_scmd;
1850 bool build_prp = false;
1851 u32 mr_nvme_pg_size;
1853 mr_nvme_pg_size = max_t(u32, instance->nvme_page_size,
1854 MR_DEFAULT_NVME_PAGE_SIZE);
1855 fusion = instance->ctrl_context;
1856 data_length = scsi_bufflen(scmd);
1857 sg_scmd = scsi_sglist(scmd);
1860 * NVMe uses one PRP for each page (or part of a page)
1861 * look at the data length - if 4 pages or less then IEEE is OK
1862 * if > 5 pages then we need to build a native SGL
1863 * if > 4 and <= 5 pages, then check physical address of 1st SG entry
1864 * if this first size in the page is >= the residual beyond 4 pages
1865 * then use IEEE, otherwise use native SGL
1868 if (data_length > (mr_nvme_pg_size * 5)) {
1869 build_prp = true;
1870 } else if ((data_length > (mr_nvme_pg_size * 4)) &&
1871 (data_length <= (mr_nvme_pg_size * 5))) {
1872 /* check if 1st SG entry size is < residual beyond 4 pages */
1873 if (sg_dma_len(sg_scmd) < (data_length - (mr_nvme_pg_size * 4)))
1874 build_prp = true;
1878 * Below code detects gaps/holes in IO data buffers.
1879 * What does holes/gaps mean?
1880 * Any SGE except first one in a SGL starts at non NVME page size
1881 * aligned address OR Any SGE except last one in a SGL ends at
1882 * non NVME page size boundary.
1884 * Driver has already informed block layer by setting boundary rules for
1885 * bio merging done at NVME page size boundary calling kernel API
1886 * blk_queue_virt_boundary inside slave_config.
1887 * Still there is possibility of IO coming with holes to driver because of
1888 * IO merging done by IO scheduler.
1890 * With SCSI BLK MQ enabled, there will be no IO with holes as there is no
1891 * IO scheduling so no IO merging.
1893 * With SCSI BLK MQ disabled, IO scheduler may attempt to merge IOs and
1894 * then sending IOs with holes.
1896 * Though driver can request block layer to disable IO merging by calling-
1897 * blk_queue_flag_set(QUEUE_FLAG_NOMERGES, sdev->request_queue) but
1898 * user may tune sysfs parameter- nomerges again to 0 or 1.
1900 * If in future IO scheduling is enabled with SCSI BLK MQ,
1901 * this algorithm to detect holes will be required in driver
1902 * for SCSI BLK MQ enabled case as well.
1906 scsi_for_each_sg(scmd, sg_scmd, sge_count, i) {
1907 if ((i != 0) && (i != (sge_count - 1))) {
1908 if (mega_mod64(sg_dma_len(sg_scmd), mr_nvme_pg_size) ||
1909 mega_mod64(sg_dma_address(sg_scmd),
1910 mr_nvme_pg_size)) {
1911 build_prp = false;
1912 atomic_inc(&instance->sge_holes_type1);
1913 break;
1917 if ((sge_count > 1) && (i == 0)) {
1918 if ((mega_mod64((sg_dma_address(sg_scmd) +
1919 sg_dma_len(sg_scmd)),
1920 mr_nvme_pg_size))) {
1921 build_prp = false;
1922 atomic_inc(&instance->sge_holes_type2);
1923 break;
1927 if ((sge_count > 1) && (i == (sge_count - 1))) {
1928 if (mega_mod64(sg_dma_address(sg_scmd),
1929 mr_nvme_pg_size)) {
1930 build_prp = false;
1931 atomic_inc(&instance->sge_holes_type3);
1932 break;
1937 return build_prp;
1941 * megasas_make_prp_nvme -
1942 * Prepare PRPs(Physical Region Page)- SGLs specific to NVMe drives only
1944 * @instance: Adapter soft state
1945 * @scmd: SCSI command from the mid-layer
1946 * @sgl_ptr: SGL to be filled in
1947 * @cmd: Fusion command frame
1948 * @sge_count: scatter gather element count.
1950 * Returns: true: PRPs are built
1951 * false: IEEE SGLs needs to be built
1953 static bool
1954 megasas_make_prp_nvme(struct megasas_instance *instance, struct scsi_cmnd *scmd,
1955 struct MPI25_IEEE_SGE_CHAIN64 *sgl_ptr,
1956 struct megasas_cmd_fusion *cmd, int sge_count)
1958 int sge_len, offset, num_prp_in_chain = 0;
1959 struct MPI25_IEEE_SGE_CHAIN64 *main_chain_element, *ptr_first_sgl;
1960 u64 *ptr_sgl;
1961 dma_addr_t ptr_sgl_phys;
1962 u64 sge_addr;
1963 u32 page_mask, page_mask_result;
1964 struct scatterlist *sg_scmd;
1965 u32 first_prp_len;
1966 bool build_prp = false;
1967 int data_len = scsi_bufflen(scmd);
1968 struct fusion_context *fusion;
1969 u32 mr_nvme_pg_size = max_t(u32, instance->nvme_page_size,
1970 MR_DEFAULT_NVME_PAGE_SIZE);
1972 fusion = instance->ctrl_context;
1974 build_prp = megasas_is_prp_possible(instance, scmd, sge_count);
1976 if (!build_prp)
1977 return false;
1980 * Nvme has a very convoluted prp format. One prp is required
1981 * for each page or partial page. Driver need to split up OS sg_list
1982 * entries if it is longer than one page or cross a page
1983 * boundary. Driver also have to insert a PRP list pointer entry as
1984 * the last entry in each physical page of the PRP list.
1986 * NOTE: The first PRP "entry" is actually placed in the first
1987 * SGL entry in the main message as IEEE 64 format. The 2nd
1988 * entry in the main message is the chain element, and the rest
1989 * of the PRP entries are built in the contiguous pcie buffer.
1991 page_mask = mr_nvme_pg_size - 1;
1992 ptr_sgl = (u64 *)cmd->sg_frame;
1993 ptr_sgl_phys = cmd->sg_frame_phys_addr;
1994 memset(ptr_sgl, 0, instance->max_chain_frame_sz);
1996 /* Build chain frame element which holds all prps except first*/
1997 main_chain_element = (struct MPI25_IEEE_SGE_CHAIN64 *)
1998 ((u8 *)sgl_ptr + sizeof(struct MPI25_IEEE_SGE_CHAIN64));
2000 main_chain_element->Address = cpu_to_le64(ptr_sgl_phys);
2001 main_chain_element->NextChainOffset = 0;
2002 main_chain_element->Flags = IEEE_SGE_FLAGS_CHAIN_ELEMENT |
2003 IEEE_SGE_FLAGS_SYSTEM_ADDR |
2004 MPI26_IEEE_SGE_FLAGS_NSF_NVME_PRP;
2006 /* Build first prp, sge need not to be page aligned*/
2007 ptr_first_sgl = sgl_ptr;
2008 sg_scmd = scsi_sglist(scmd);
2009 sge_addr = sg_dma_address(sg_scmd);
2010 sge_len = sg_dma_len(sg_scmd);
2012 offset = (u32)(sge_addr & page_mask);
2013 first_prp_len = mr_nvme_pg_size - offset;
2015 ptr_first_sgl->Address = cpu_to_le64(sge_addr);
2016 ptr_first_sgl->Length = cpu_to_le32(first_prp_len);
2018 data_len -= first_prp_len;
2020 if (sge_len > first_prp_len) {
2021 sge_addr += first_prp_len;
2022 sge_len -= first_prp_len;
2023 } else if (sge_len == first_prp_len) {
2024 sg_scmd = sg_next(sg_scmd);
2025 sge_addr = sg_dma_address(sg_scmd);
2026 sge_len = sg_dma_len(sg_scmd);
2029 for (;;) {
2030 offset = (u32)(sge_addr & page_mask);
2032 /* Put PRP pointer due to page boundary*/
2033 page_mask_result = (uintptr_t)(ptr_sgl + 1) & page_mask;
2034 if (unlikely(!page_mask_result)) {
2035 scmd_printk(KERN_NOTICE,
2036 scmd, "page boundary ptr_sgl: 0x%p\n",
2037 ptr_sgl);
2038 ptr_sgl_phys += 8;
2039 *ptr_sgl = cpu_to_le64(ptr_sgl_phys);
2040 ptr_sgl++;
2041 num_prp_in_chain++;
2044 *ptr_sgl = cpu_to_le64(sge_addr);
2045 ptr_sgl++;
2046 ptr_sgl_phys += 8;
2047 num_prp_in_chain++;
2049 sge_addr += mr_nvme_pg_size;
2050 sge_len -= mr_nvme_pg_size;
2051 data_len -= mr_nvme_pg_size;
2053 if (data_len <= 0)
2054 break;
2056 if (sge_len > 0)
2057 continue;
2059 sg_scmd = sg_next(sg_scmd);
2060 sge_addr = sg_dma_address(sg_scmd);
2061 sge_len = sg_dma_len(sg_scmd);
2064 main_chain_element->Length =
2065 cpu_to_le32(num_prp_in_chain * sizeof(u64));
2067 atomic_inc(&instance->prp_sgl);
2068 return build_prp;
2072 * megasas_make_sgl_fusion - Prepares 32-bit SGL
2073 * @instance: Adapter soft state
2074 * @scp: SCSI command from the mid-layer
2075 * @sgl_ptr: SGL to be filled in
2076 * @cmd: cmd we are working on
2077 * @sge_count sge count
2080 static void
2081 megasas_make_sgl_fusion(struct megasas_instance *instance,
2082 struct scsi_cmnd *scp,
2083 struct MPI25_IEEE_SGE_CHAIN64 *sgl_ptr,
2084 struct megasas_cmd_fusion *cmd, int sge_count)
2086 int i, sg_processed;
2087 struct scatterlist *os_sgl;
2088 struct fusion_context *fusion;
2090 fusion = instance->ctrl_context;
2092 if (instance->adapter_type >= INVADER_SERIES) {
2093 struct MPI25_IEEE_SGE_CHAIN64 *sgl_ptr_end = sgl_ptr;
2094 sgl_ptr_end += fusion->max_sge_in_main_msg - 1;
2095 sgl_ptr_end->Flags = 0;
2098 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
2099 sgl_ptr->Length = cpu_to_le32(sg_dma_len(os_sgl));
2100 sgl_ptr->Address = cpu_to_le64(sg_dma_address(os_sgl));
2101 sgl_ptr->Flags = 0;
2102 if (instance->adapter_type >= INVADER_SERIES)
2103 if (i == sge_count - 1)
2104 sgl_ptr->Flags = IEEE_SGE_FLAGS_END_OF_LIST;
2105 sgl_ptr++;
2106 sg_processed = i + 1;
2108 if ((sg_processed == (fusion->max_sge_in_main_msg - 1)) &&
2109 (sge_count > fusion->max_sge_in_main_msg)) {
2111 struct MPI25_IEEE_SGE_CHAIN64 *sg_chain;
2112 if (instance->adapter_type >= INVADER_SERIES) {
2113 if ((le16_to_cpu(cmd->io_request->IoFlags) &
2114 MPI25_SAS_DEVICE0_FLAGS_ENABLED_FAST_PATH) !=
2115 MPI25_SAS_DEVICE0_FLAGS_ENABLED_FAST_PATH)
2116 cmd->io_request->ChainOffset =
2117 fusion->
2118 chain_offset_io_request;
2119 else
2120 cmd->io_request->ChainOffset = 0;
2121 } else
2122 cmd->io_request->ChainOffset =
2123 fusion->chain_offset_io_request;
2125 sg_chain = sgl_ptr;
2126 /* Prepare chain element */
2127 sg_chain->NextChainOffset = 0;
2128 if (instance->adapter_type >= INVADER_SERIES)
2129 sg_chain->Flags = IEEE_SGE_FLAGS_CHAIN_ELEMENT;
2130 else
2131 sg_chain->Flags =
2132 (IEEE_SGE_FLAGS_CHAIN_ELEMENT |
2133 MPI2_IEEE_SGE_FLAGS_IOCPLBNTA_ADDR);
2134 sg_chain->Length = cpu_to_le32((sizeof(union MPI2_SGE_IO_UNION) * (sge_count - sg_processed)));
2135 sg_chain->Address = cpu_to_le64(cmd->sg_frame_phys_addr);
2137 sgl_ptr =
2138 (struct MPI25_IEEE_SGE_CHAIN64 *)cmd->sg_frame;
2139 memset(sgl_ptr, 0, instance->max_chain_frame_sz);
2142 atomic_inc(&instance->ieee_sgl);
2146 * megasas_make_sgl - Build Scatter Gather List(SGLs)
2147 * @scp: SCSI command pointer
2148 * @instance: Soft instance of controller
2149 * @cmd: Fusion command pointer
2151 * This function will build sgls based on device type.
2152 * For nvme drives, there is different way of building sgls in nvme native
2153 * format- PRPs(Physical Region Page).
2155 * Returns the number of sg lists actually used, zero if the sg lists
2156 * is NULL, or -ENOMEM if the mapping failed
2158 static
2159 int megasas_make_sgl(struct megasas_instance *instance, struct scsi_cmnd *scp,
2160 struct megasas_cmd_fusion *cmd)
2162 int sge_count;
2163 bool build_prp = false;
2164 struct MPI25_IEEE_SGE_CHAIN64 *sgl_chain64;
2166 sge_count = scsi_dma_map(scp);
2168 if ((sge_count > instance->max_num_sge) || (sge_count <= 0))
2169 return sge_count;
2171 sgl_chain64 = (struct MPI25_IEEE_SGE_CHAIN64 *)&cmd->io_request->SGL;
2172 if ((le16_to_cpu(cmd->io_request->IoFlags) &
2173 MPI25_SAS_DEVICE0_FLAGS_ENABLED_FAST_PATH) &&
2174 (cmd->pd_interface == NVME_PD))
2175 build_prp = megasas_make_prp_nvme(instance, scp, sgl_chain64,
2176 cmd, sge_count);
2178 if (!build_prp)
2179 megasas_make_sgl_fusion(instance, scp, sgl_chain64,
2180 cmd, sge_count);
2182 return sge_count;
2186 * megasas_set_pd_lba - Sets PD LBA
2187 * @cdb: CDB
2188 * @cdb_len: cdb length
2189 * @start_blk: Start block of IO
2191 * Used to set the PD LBA in CDB for FP IOs
2193 void
2194 megasas_set_pd_lba(struct MPI2_RAID_SCSI_IO_REQUEST *io_request, u8 cdb_len,
2195 struct IO_REQUEST_INFO *io_info, struct scsi_cmnd *scp,
2196 struct MR_DRV_RAID_MAP_ALL *local_map_ptr, u32 ref_tag)
2198 struct MR_LD_RAID *raid;
2199 u16 ld;
2200 u64 start_blk = io_info->pdBlock;
2201 u8 *cdb = io_request->CDB.CDB32;
2202 u32 num_blocks = io_info->numBlocks;
2203 u8 opcode = 0, flagvals = 0, groupnum = 0, control = 0;
2205 /* Check if T10 PI (DIF) is enabled for this LD */
2206 ld = MR_TargetIdToLdGet(io_info->ldTgtId, local_map_ptr);
2207 raid = MR_LdRaidGet(ld, local_map_ptr);
2208 if (raid->capability.ldPiMode == MR_PROT_INFO_TYPE_CONTROLLER) {
2209 memset(cdb, 0, sizeof(io_request->CDB.CDB32));
2210 cdb[0] = MEGASAS_SCSI_VARIABLE_LENGTH_CMD;
2211 cdb[7] = MEGASAS_SCSI_ADDL_CDB_LEN;
2213 if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
2214 cdb[9] = MEGASAS_SCSI_SERVICE_ACTION_READ32;
2215 else
2216 cdb[9] = MEGASAS_SCSI_SERVICE_ACTION_WRITE32;
2217 cdb[10] = MEGASAS_RD_WR_PROTECT_CHECK_ALL;
2219 /* LBA */
2220 cdb[12] = (u8)((start_blk >> 56) & 0xff);
2221 cdb[13] = (u8)((start_blk >> 48) & 0xff);
2222 cdb[14] = (u8)((start_blk >> 40) & 0xff);
2223 cdb[15] = (u8)((start_blk >> 32) & 0xff);
2224 cdb[16] = (u8)((start_blk >> 24) & 0xff);
2225 cdb[17] = (u8)((start_blk >> 16) & 0xff);
2226 cdb[18] = (u8)((start_blk >> 8) & 0xff);
2227 cdb[19] = (u8)(start_blk & 0xff);
2229 /* Logical block reference tag */
2230 io_request->CDB.EEDP32.PrimaryReferenceTag =
2231 cpu_to_be32(ref_tag);
2232 io_request->CDB.EEDP32.PrimaryApplicationTagMask = cpu_to_be16(0xffff);
2233 io_request->IoFlags = cpu_to_le16(32); /* Specify 32-byte cdb */
2235 /* Transfer length */
2236 cdb[28] = (u8)((num_blocks >> 24) & 0xff);
2237 cdb[29] = (u8)((num_blocks >> 16) & 0xff);
2238 cdb[30] = (u8)((num_blocks >> 8) & 0xff);
2239 cdb[31] = (u8)(num_blocks & 0xff);
2241 /* set SCSI IO EEDPFlags */
2242 if (scp->sc_data_direction == PCI_DMA_FROMDEVICE) {
2243 io_request->EEDPFlags = cpu_to_le16(
2244 MPI2_SCSIIO_EEDPFLAGS_INC_PRI_REFTAG |
2245 MPI2_SCSIIO_EEDPFLAGS_CHECK_REFTAG |
2246 MPI2_SCSIIO_EEDPFLAGS_CHECK_REMOVE_OP |
2247 MPI2_SCSIIO_EEDPFLAGS_CHECK_APPTAG |
2248 MPI25_SCSIIO_EEDPFLAGS_DO_NOT_DISABLE_MODE |
2249 MPI2_SCSIIO_EEDPFLAGS_CHECK_GUARD);
2250 } else {
2251 io_request->EEDPFlags = cpu_to_le16(
2252 MPI2_SCSIIO_EEDPFLAGS_INC_PRI_REFTAG |
2253 MPI2_SCSIIO_EEDPFLAGS_INSERT_OP);
2255 io_request->Control |= cpu_to_le32((0x4 << 26));
2256 io_request->EEDPBlockSize = cpu_to_le32(scp->device->sector_size);
2257 } else {
2258 /* Some drives don't support 16/12 byte CDB's, convert to 10 */
2259 if (((cdb_len == 12) || (cdb_len == 16)) &&
2260 (start_blk <= 0xffffffff)) {
2261 if (cdb_len == 16) {
2262 opcode = cdb[0] == READ_16 ? READ_10 : WRITE_10;
2263 flagvals = cdb[1];
2264 groupnum = cdb[14];
2265 control = cdb[15];
2266 } else {
2267 opcode = cdb[0] == READ_12 ? READ_10 : WRITE_10;
2268 flagvals = cdb[1];
2269 groupnum = cdb[10];
2270 control = cdb[11];
2273 memset(cdb, 0, sizeof(io_request->CDB.CDB32));
2275 cdb[0] = opcode;
2276 cdb[1] = flagvals;
2277 cdb[6] = groupnum;
2278 cdb[9] = control;
2280 /* Transfer length */
2281 cdb[8] = (u8)(num_blocks & 0xff);
2282 cdb[7] = (u8)((num_blocks >> 8) & 0xff);
2284 io_request->IoFlags = cpu_to_le16(10); /* Specify 10-byte cdb */
2285 cdb_len = 10;
2286 } else if ((cdb_len < 16) && (start_blk > 0xffffffff)) {
2287 /* Convert to 16 byte CDB for large LBA's */
2288 switch (cdb_len) {
2289 case 6:
2290 opcode = cdb[0] == READ_6 ? READ_16 : WRITE_16;
2291 control = cdb[5];
2292 break;
2293 case 10:
2294 opcode =
2295 cdb[0] == READ_10 ? READ_16 : WRITE_16;
2296 flagvals = cdb[1];
2297 groupnum = cdb[6];
2298 control = cdb[9];
2299 break;
2300 case 12:
2301 opcode =
2302 cdb[0] == READ_12 ? READ_16 : WRITE_16;
2303 flagvals = cdb[1];
2304 groupnum = cdb[10];
2305 control = cdb[11];
2306 break;
2309 memset(cdb, 0, sizeof(io_request->CDB.CDB32));
2311 cdb[0] = opcode;
2312 cdb[1] = flagvals;
2313 cdb[14] = groupnum;
2314 cdb[15] = control;
2316 /* Transfer length */
2317 cdb[13] = (u8)(num_blocks & 0xff);
2318 cdb[12] = (u8)((num_blocks >> 8) & 0xff);
2319 cdb[11] = (u8)((num_blocks >> 16) & 0xff);
2320 cdb[10] = (u8)((num_blocks >> 24) & 0xff);
2322 io_request->IoFlags = cpu_to_le16(16); /* Specify 16-byte cdb */
2323 cdb_len = 16;
2326 /* Normal case, just load LBA here */
2327 switch (cdb_len) {
2328 case 6:
2330 u8 val = cdb[1] & 0xE0;
2331 cdb[3] = (u8)(start_blk & 0xff);
2332 cdb[2] = (u8)((start_blk >> 8) & 0xff);
2333 cdb[1] = val | ((u8)(start_blk >> 16) & 0x1f);
2334 break;
2336 case 10:
2337 cdb[5] = (u8)(start_blk & 0xff);
2338 cdb[4] = (u8)((start_blk >> 8) & 0xff);
2339 cdb[3] = (u8)((start_blk >> 16) & 0xff);
2340 cdb[2] = (u8)((start_blk >> 24) & 0xff);
2341 break;
2342 case 12:
2343 cdb[5] = (u8)(start_blk & 0xff);
2344 cdb[4] = (u8)((start_blk >> 8) & 0xff);
2345 cdb[3] = (u8)((start_blk >> 16) & 0xff);
2346 cdb[2] = (u8)((start_blk >> 24) & 0xff);
2347 break;
2348 case 16:
2349 cdb[9] = (u8)(start_blk & 0xff);
2350 cdb[8] = (u8)((start_blk >> 8) & 0xff);
2351 cdb[7] = (u8)((start_blk >> 16) & 0xff);
2352 cdb[6] = (u8)((start_blk >> 24) & 0xff);
2353 cdb[5] = (u8)((start_blk >> 32) & 0xff);
2354 cdb[4] = (u8)((start_blk >> 40) & 0xff);
2355 cdb[3] = (u8)((start_blk >> 48) & 0xff);
2356 cdb[2] = (u8)((start_blk >> 56) & 0xff);
2357 break;
2363 * megasas_stream_detect - stream detection on read and and write IOs
2364 * @instance: Adapter soft state
2365 * @cmd: Command to be prepared
2366 * @io_info: IO Request info
2370 /** stream detection on read and and write IOs */
2371 static void megasas_stream_detect(struct megasas_instance *instance,
2372 struct megasas_cmd_fusion *cmd,
2373 struct IO_REQUEST_INFO *io_info)
2375 struct fusion_context *fusion = instance->ctrl_context;
2376 u32 device_id = io_info->ldTgtId;
2377 struct LD_STREAM_DETECT *current_ld_sd
2378 = fusion->stream_detect_by_ld[device_id];
2379 u32 *track_stream = &current_ld_sd->mru_bit_map, stream_num;
2380 u32 shifted_values, unshifted_values;
2381 u32 index_value_mask, shifted_values_mask;
2382 int i;
2383 bool is_read_ahead = false;
2384 struct STREAM_DETECT *current_sd;
2385 /* find possible stream */
2386 for (i = 0; i < MAX_STREAMS_TRACKED; ++i) {
2387 stream_num = (*track_stream >>
2388 (i * BITS_PER_INDEX_STREAM)) &
2389 STREAM_MASK;
2390 current_sd = &current_ld_sd->stream_track[stream_num];
2391 /* if we found a stream, update the raid
2392 * context and also update the mruBitMap
2394 /* boundary condition */
2395 if ((current_sd->next_seq_lba) &&
2396 (io_info->ldStartBlock >= current_sd->next_seq_lba) &&
2397 (io_info->ldStartBlock <= (current_sd->next_seq_lba + 32)) &&
2398 (current_sd->is_read == io_info->isRead)) {
2400 if ((io_info->ldStartBlock != current_sd->next_seq_lba) &&
2401 ((!io_info->isRead) || (!is_read_ahead)))
2403 * Once the API availible we need to change this.
2404 * At this point we are not allowing any gap
2406 continue;
2408 SET_STREAM_DETECTED(cmd->io_request->RaidContext.raid_context_g35);
2409 current_sd->next_seq_lba =
2410 io_info->ldStartBlock + io_info->numBlocks;
2412 * update the mruBitMap LRU
2414 shifted_values_mask =
2415 (1 << i * BITS_PER_INDEX_STREAM) - 1;
2416 shifted_values = ((*track_stream & shifted_values_mask)
2417 << BITS_PER_INDEX_STREAM);
2418 index_value_mask =
2419 STREAM_MASK << i * BITS_PER_INDEX_STREAM;
2420 unshifted_values =
2421 *track_stream & ~(shifted_values_mask |
2422 index_value_mask);
2423 *track_stream =
2424 unshifted_values | shifted_values | stream_num;
2425 return;
2429 * if we did not find any stream, create a new one
2430 * from the least recently used
2432 stream_num = (*track_stream >>
2433 ((MAX_STREAMS_TRACKED - 1) * BITS_PER_INDEX_STREAM)) &
2434 STREAM_MASK;
2435 current_sd = &current_ld_sd->stream_track[stream_num];
2436 current_sd->is_read = io_info->isRead;
2437 current_sd->next_seq_lba = io_info->ldStartBlock + io_info->numBlocks;
2438 *track_stream = (((*track_stream & ZERO_LAST_STREAM) << 4) | stream_num);
2439 return;
2443 * megasas_set_raidflag_cpu_affinity - This function sets the cpu
2444 * affinity (cpu of the controller) and raid_flags in the raid context
2445 * based on IO type.
2447 * @praid_context: IO RAID context
2448 * @raid: LD raid map
2449 * @fp_possible: Is fast path possible?
2450 * @is_read: Is read IO?
2453 static void
2454 megasas_set_raidflag_cpu_affinity(union RAID_CONTEXT_UNION *praid_context,
2455 struct MR_LD_RAID *raid, bool fp_possible,
2456 u8 is_read, u32 scsi_buff_len)
2458 u8 cpu_sel = MR_RAID_CTX_CPUSEL_0;
2459 struct RAID_CONTEXT_G35 *rctx_g35;
2461 rctx_g35 = &praid_context->raid_context_g35;
2462 if (fp_possible) {
2463 if (is_read) {
2464 if ((raid->cpuAffinity.pdRead.cpu0) &&
2465 (raid->cpuAffinity.pdRead.cpu1))
2466 cpu_sel = MR_RAID_CTX_CPUSEL_FCFS;
2467 else if (raid->cpuAffinity.pdRead.cpu1)
2468 cpu_sel = MR_RAID_CTX_CPUSEL_1;
2469 } else {
2470 if ((raid->cpuAffinity.pdWrite.cpu0) &&
2471 (raid->cpuAffinity.pdWrite.cpu1))
2472 cpu_sel = MR_RAID_CTX_CPUSEL_FCFS;
2473 else if (raid->cpuAffinity.pdWrite.cpu1)
2474 cpu_sel = MR_RAID_CTX_CPUSEL_1;
2475 /* Fast path cache by pass capable R0/R1 VD */
2476 if ((raid->level <= 1) &&
2477 (raid->capability.fp_cache_bypass_capable)) {
2478 rctx_g35->routing_flags |=
2479 (1 << MR_RAID_CTX_ROUTINGFLAGS_SLD_SHIFT);
2480 rctx_g35->raid_flags =
2481 (MR_RAID_FLAGS_IO_SUB_TYPE_CACHE_BYPASS
2482 << MR_RAID_CTX_RAID_FLAGS_IO_SUB_TYPE_SHIFT);
2485 } else {
2486 if (is_read) {
2487 if ((raid->cpuAffinity.ldRead.cpu0) &&
2488 (raid->cpuAffinity.ldRead.cpu1))
2489 cpu_sel = MR_RAID_CTX_CPUSEL_FCFS;
2490 else if (raid->cpuAffinity.ldRead.cpu1)
2491 cpu_sel = MR_RAID_CTX_CPUSEL_1;
2492 } else {
2493 if ((raid->cpuAffinity.ldWrite.cpu0) &&
2494 (raid->cpuAffinity.ldWrite.cpu1))
2495 cpu_sel = MR_RAID_CTX_CPUSEL_FCFS;
2496 else if (raid->cpuAffinity.ldWrite.cpu1)
2497 cpu_sel = MR_RAID_CTX_CPUSEL_1;
2499 if (is_stream_detected(rctx_g35) &&
2500 ((raid->level == 5) || (raid->level == 6)) &&
2501 (raid->writeMode == MR_RL_WRITE_THROUGH_MODE) &&
2502 (cpu_sel == MR_RAID_CTX_CPUSEL_FCFS))
2503 cpu_sel = MR_RAID_CTX_CPUSEL_0;
2507 rctx_g35->routing_flags |=
2508 (cpu_sel << MR_RAID_CTX_ROUTINGFLAGS_CPUSEL_SHIFT);
2510 /* Always give priority to MR_RAID_FLAGS_IO_SUB_TYPE_LDIO_BW_LIMIT
2511 * vs MR_RAID_FLAGS_IO_SUB_TYPE_CACHE_BYPASS.
2512 * IO Subtype is not bitmap.
2514 if ((raid->level == 1) && (!is_read)) {
2515 if (scsi_buff_len > MR_LARGE_IO_MIN_SIZE)
2516 praid_context->raid_context_g35.raid_flags =
2517 (MR_RAID_FLAGS_IO_SUB_TYPE_LDIO_BW_LIMIT
2518 << MR_RAID_CTX_RAID_FLAGS_IO_SUB_TYPE_SHIFT);
2523 * megasas_build_ldio_fusion - Prepares IOs to devices
2524 * @instance: Adapter soft state
2525 * @scp: SCSI command
2526 * @cmd: Command to be prepared
2528 * Prepares the io_request and chain elements (sg_frame) for IO
2529 * The IO can be for PD (Fast Path) or LD
2531 void
2532 megasas_build_ldio_fusion(struct megasas_instance *instance,
2533 struct scsi_cmnd *scp,
2534 struct megasas_cmd_fusion *cmd)
2536 bool fp_possible;
2537 u16 ld;
2538 u32 start_lba_lo, start_lba_hi, device_id, datalength = 0;
2539 u32 scsi_buff_len;
2540 struct MPI2_RAID_SCSI_IO_REQUEST *io_request;
2541 union MEGASAS_REQUEST_DESCRIPTOR_UNION *req_desc;
2542 struct IO_REQUEST_INFO io_info;
2543 struct fusion_context *fusion;
2544 struct MR_DRV_RAID_MAP_ALL *local_map_ptr;
2545 u8 *raidLUN;
2546 unsigned long spinlock_flags;
2547 union RAID_CONTEXT_UNION *praid_context;
2548 struct MR_LD_RAID *raid = NULL;
2549 struct MR_PRIV_DEVICE *mrdev_priv;
2551 device_id = MEGASAS_DEV_INDEX(scp);
2553 fusion = instance->ctrl_context;
2555 io_request = cmd->io_request;
2556 io_request->RaidContext.raid_context.virtual_disk_tgt_id =
2557 cpu_to_le16(device_id);
2558 io_request->RaidContext.raid_context.status = 0;
2559 io_request->RaidContext.raid_context.ex_status = 0;
2561 req_desc = (union MEGASAS_REQUEST_DESCRIPTOR_UNION *)cmd->request_desc;
2563 start_lba_lo = 0;
2564 start_lba_hi = 0;
2565 fp_possible = false;
2568 * 6-byte READ(0x08) or WRITE(0x0A) cdb
2570 if (scp->cmd_len == 6) {
2571 datalength = (u32) scp->cmnd[4];
2572 start_lba_lo = ((u32) scp->cmnd[1] << 16) |
2573 ((u32) scp->cmnd[2] << 8) | (u32) scp->cmnd[3];
2575 start_lba_lo &= 0x1FFFFF;
2579 * 10-byte READ(0x28) or WRITE(0x2A) cdb
2581 else if (scp->cmd_len == 10) {
2582 datalength = (u32) scp->cmnd[8] |
2583 ((u32) scp->cmnd[7] << 8);
2584 start_lba_lo = ((u32) scp->cmnd[2] << 24) |
2585 ((u32) scp->cmnd[3] << 16) |
2586 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
2590 * 12-byte READ(0xA8) or WRITE(0xAA) cdb
2592 else if (scp->cmd_len == 12) {
2593 datalength = ((u32) scp->cmnd[6] << 24) |
2594 ((u32) scp->cmnd[7] << 16) |
2595 ((u32) scp->cmnd[8] << 8) | (u32) scp->cmnd[9];
2596 start_lba_lo = ((u32) scp->cmnd[2] << 24) |
2597 ((u32) scp->cmnd[3] << 16) |
2598 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
2602 * 16-byte READ(0x88) or WRITE(0x8A) cdb
2604 else if (scp->cmd_len == 16) {
2605 datalength = ((u32) scp->cmnd[10] << 24) |
2606 ((u32) scp->cmnd[11] << 16) |
2607 ((u32) scp->cmnd[12] << 8) | (u32) scp->cmnd[13];
2608 start_lba_lo = ((u32) scp->cmnd[6] << 24) |
2609 ((u32) scp->cmnd[7] << 16) |
2610 ((u32) scp->cmnd[8] << 8) | (u32) scp->cmnd[9];
2612 start_lba_hi = ((u32) scp->cmnd[2] << 24) |
2613 ((u32) scp->cmnd[3] << 16) |
2614 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
2617 memset(&io_info, 0, sizeof(struct IO_REQUEST_INFO));
2618 io_info.ldStartBlock = ((u64)start_lba_hi << 32) | start_lba_lo;
2619 io_info.numBlocks = datalength;
2620 io_info.ldTgtId = device_id;
2621 io_info.r1_alt_dev_handle = MR_DEVHANDLE_INVALID;
2622 scsi_buff_len = scsi_bufflen(scp);
2623 io_request->DataLength = cpu_to_le32(scsi_buff_len);
2625 if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
2626 io_info.isRead = 1;
2628 local_map_ptr = fusion->ld_drv_map[(instance->map_id & 1)];
2629 ld = MR_TargetIdToLdGet(device_id, local_map_ptr);
2631 if (ld < instance->fw_supported_vd_count)
2632 raid = MR_LdRaidGet(ld, local_map_ptr);
2634 if (!raid || (!fusion->fast_path_io)) {
2635 io_request->RaidContext.raid_context.reg_lock_flags = 0;
2636 fp_possible = false;
2637 } else {
2638 if (MR_BuildRaidContext(instance, &io_info,
2639 &io_request->RaidContext.raid_context,
2640 local_map_ptr, &raidLUN))
2641 fp_possible = (io_info.fpOkForIo > 0) ? true : false;
2644 cmd->request_desc->SCSIIO.MSIxIndex =
2645 instance->reply_map[raw_smp_processor_id()];
2647 praid_context = &io_request->RaidContext;
2649 if (instance->adapter_type == VENTURA_SERIES) {
2650 /* FP for Optimal raid level 1.
2651 * All large RAID-1 writes (> 32 KiB, both WT and WB modes)
2652 * are built by the driver as LD I/Os.
2653 * All small RAID-1 WT writes (<= 32 KiB) are built as FP I/Os
2654 * (there is never a reason to process these as buffered writes)
2655 * All small RAID-1 WB writes (<= 32 KiB) are built as FP I/Os
2656 * with the SLD bit asserted.
2658 if (io_info.r1_alt_dev_handle != MR_DEVHANDLE_INVALID) {
2659 mrdev_priv = scp->device->hostdata;
2661 if (atomic_inc_return(&instance->fw_outstanding) >
2662 (instance->host->can_queue)) {
2663 fp_possible = false;
2664 atomic_dec(&instance->fw_outstanding);
2665 } else if ((scsi_buff_len > MR_LARGE_IO_MIN_SIZE) ||
2666 (atomic_dec_if_positive(&mrdev_priv->r1_ldio_hint) > 0)) {
2667 fp_possible = false;
2668 atomic_dec(&instance->fw_outstanding);
2669 if (scsi_buff_len > MR_LARGE_IO_MIN_SIZE)
2670 atomic_set(&mrdev_priv->r1_ldio_hint,
2671 instance->r1_ldio_hint_default);
2675 if (!fp_possible ||
2676 (io_info.isRead && io_info.ra_capable)) {
2677 spin_lock_irqsave(&instance->stream_lock,
2678 spinlock_flags);
2679 megasas_stream_detect(instance, cmd, &io_info);
2680 spin_unlock_irqrestore(&instance->stream_lock,
2681 spinlock_flags);
2682 /* In ventura if stream detected for a read and it is
2683 * read ahead capable make this IO as LDIO
2685 if (is_stream_detected(&io_request->RaidContext.raid_context_g35))
2686 fp_possible = false;
2689 /* If raid is NULL, set CPU affinity to default CPU0 */
2690 if (raid)
2691 megasas_set_raidflag_cpu_affinity(praid_context,
2692 raid, fp_possible, io_info.isRead,
2693 scsi_buff_len);
2694 else
2695 praid_context->raid_context_g35.routing_flags |=
2696 (MR_RAID_CTX_CPUSEL_0 << MR_RAID_CTX_ROUTINGFLAGS_CPUSEL_SHIFT);
2699 if (fp_possible) {
2700 megasas_set_pd_lba(io_request, scp->cmd_len, &io_info, scp,
2701 local_map_ptr, start_lba_lo);
2702 io_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
2703 cmd->request_desc->SCSIIO.RequestFlags =
2704 (MPI2_REQ_DESCRIPT_FLAGS_FP_IO
2705 << MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
2706 if (instance->adapter_type == INVADER_SERIES) {
2707 if (io_request->RaidContext.raid_context.reg_lock_flags ==
2708 REGION_TYPE_UNUSED)
2709 cmd->request_desc->SCSIIO.RequestFlags =
2710 (MEGASAS_REQ_DESCRIPT_FLAGS_NO_LOCK <<
2711 MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
2712 io_request->RaidContext.raid_context.type
2713 = MPI2_TYPE_CUDA;
2714 io_request->RaidContext.raid_context.nseg = 0x1;
2715 io_request->IoFlags |= cpu_to_le16(MPI25_SAS_DEVICE0_FLAGS_ENABLED_FAST_PATH);
2716 io_request->RaidContext.raid_context.reg_lock_flags |=
2717 (MR_RL_FLAGS_GRANT_DESTINATION_CUDA |
2718 MR_RL_FLAGS_SEQ_NUM_ENABLE);
2719 } else if (instance->adapter_type == VENTURA_SERIES) {
2720 io_request->RaidContext.raid_context_g35.nseg_type |=
2721 (1 << RAID_CONTEXT_NSEG_SHIFT);
2722 io_request->RaidContext.raid_context_g35.nseg_type |=
2723 (MPI2_TYPE_CUDA << RAID_CONTEXT_TYPE_SHIFT);
2724 io_request->RaidContext.raid_context_g35.routing_flags |=
2725 (1 << MR_RAID_CTX_ROUTINGFLAGS_SQN_SHIFT);
2726 io_request->IoFlags |=
2727 cpu_to_le16(MPI25_SAS_DEVICE0_FLAGS_ENABLED_FAST_PATH);
2729 if (fusion->load_balance_info &&
2730 (fusion->load_balance_info[device_id].loadBalanceFlag) &&
2731 (io_info.isRead)) {
2732 io_info.devHandle =
2733 get_updated_dev_handle(instance,
2734 &fusion->load_balance_info[device_id],
2735 &io_info, local_map_ptr);
2736 scp->SCp.Status |= MEGASAS_LOAD_BALANCE_FLAG;
2737 cmd->pd_r1_lb = io_info.pd_after_lb;
2738 if (instance->adapter_type == VENTURA_SERIES)
2739 io_request->RaidContext.raid_context_g35.span_arm
2740 = io_info.span_arm;
2741 else
2742 io_request->RaidContext.raid_context.span_arm
2743 = io_info.span_arm;
2745 } else
2746 scp->SCp.Status &= ~MEGASAS_LOAD_BALANCE_FLAG;
2748 if (instance->adapter_type == VENTURA_SERIES)
2749 cmd->r1_alt_dev_handle = io_info.r1_alt_dev_handle;
2750 else
2751 cmd->r1_alt_dev_handle = MR_DEVHANDLE_INVALID;
2753 if ((raidLUN[0] == 1) &&
2754 (local_map_ptr->raidMap.devHndlInfo[io_info.pd_after_lb].validHandles > 1)) {
2755 instance->dev_handle = !(instance->dev_handle);
2756 io_info.devHandle =
2757 local_map_ptr->raidMap.devHndlInfo[io_info.pd_after_lb].devHandle[instance->dev_handle];
2760 cmd->request_desc->SCSIIO.DevHandle = io_info.devHandle;
2761 io_request->DevHandle = io_info.devHandle;
2762 cmd->pd_interface = io_info.pd_interface;
2763 /* populate the LUN field */
2764 memcpy(io_request->LUN, raidLUN, 8);
2765 } else {
2766 io_request->RaidContext.raid_context.timeout_value =
2767 cpu_to_le16(local_map_ptr->raidMap.fpPdIoTimeoutSec);
2768 cmd->request_desc->SCSIIO.RequestFlags =
2769 (MEGASAS_REQ_DESCRIPT_FLAGS_LD_IO
2770 << MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
2771 if (instance->adapter_type == INVADER_SERIES) {
2772 if (io_info.do_fp_rlbypass ||
2773 (io_request->RaidContext.raid_context.reg_lock_flags
2774 == REGION_TYPE_UNUSED))
2775 cmd->request_desc->SCSIIO.RequestFlags =
2776 (MEGASAS_REQ_DESCRIPT_FLAGS_NO_LOCK <<
2777 MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
2778 io_request->RaidContext.raid_context.type
2779 = MPI2_TYPE_CUDA;
2780 io_request->RaidContext.raid_context.reg_lock_flags |=
2781 (MR_RL_FLAGS_GRANT_DESTINATION_CPU0 |
2782 MR_RL_FLAGS_SEQ_NUM_ENABLE);
2783 io_request->RaidContext.raid_context.nseg = 0x1;
2784 } else if (instance->adapter_type == VENTURA_SERIES) {
2785 io_request->RaidContext.raid_context_g35.routing_flags |=
2786 (1 << MR_RAID_CTX_ROUTINGFLAGS_SQN_SHIFT);
2787 io_request->RaidContext.raid_context_g35.nseg_type |=
2788 (1 << RAID_CONTEXT_NSEG_SHIFT);
2789 io_request->RaidContext.raid_context_g35.nseg_type |=
2790 (MPI2_TYPE_CUDA << RAID_CONTEXT_TYPE_SHIFT);
2792 io_request->Function = MEGASAS_MPI2_FUNCTION_LD_IO_REQUEST;
2793 io_request->DevHandle = cpu_to_le16(device_id);
2795 } /* Not FP */
2799 * megasas_build_ld_nonrw_fusion - prepares non rw ios for virtual disk
2800 * @instance: Adapter soft state
2801 * @scp: SCSI command
2802 * @cmd: Command to be prepared
2804 * Prepares the io_request frame for non-rw io cmds for vd.
2806 static void megasas_build_ld_nonrw_fusion(struct megasas_instance *instance,
2807 struct scsi_cmnd *scmd, struct megasas_cmd_fusion *cmd)
2809 u32 device_id;
2810 struct MPI2_RAID_SCSI_IO_REQUEST *io_request;
2811 u16 ld;
2812 struct MR_DRV_RAID_MAP_ALL *local_map_ptr;
2813 struct fusion_context *fusion = instance->ctrl_context;
2814 u8 span, physArm;
2815 __le16 devHandle;
2816 u32 arRef, pd;
2817 struct MR_LD_RAID *raid;
2818 struct RAID_CONTEXT *pRAID_Context;
2819 u8 fp_possible = 1;
2821 io_request = cmd->io_request;
2822 device_id = MEGASAS_DEV_INDEX(scmd);
2823 local_map_ptr = fusion->ld_drv_map[(instance->map_id & 1)];
2824 io_request->DataLength = cpu_to_le32(scsi_bufflen(scmd));
2825 /* get RAID_Context pointer */
2826 pRAID_Context = &io_request->RaidContext.raid_context;
2827 /* Check with FW team */
2828 pRAID_Context->virtual_disk_tgt_id = cpu_to_le16(device_id);
2829 pRAID_Context->reg_lock_row_lba = 0;
2830 pRAID_Context->reg_lock_length = 0;
2832 if (fusion->fast_path_io && (
2833 device_id < instance->fw_supported_vd_count)) {
2835 ld = MR_TargetIdToLdGet(device_id, local_map_ptr);
2836 if (ld >= instance->fw_supported_vd_count)
2837 fp_possible = 0;
2838 else {
2839 raid = MR_LdRaidGet(ld, local_map_ptr);
2840 if (!(raid->capability.fpNonRWCapable))
2841 fp_possible = 0;
2843 } else
2844 fp_possible = 0;
2846 if (!fp_possible) {
2847 io_request->Function = MEGASAS_MPI2_FUNCTION_LD_IO_REQUEST;
2848 io_request->DevHandle = cpu_to_le16(device_id);
2849 io_request->LUN[1] = scmd->device->lun;
2850 pRAID_Context->timeout_value =
2851 cpu_to_le16 (scmd->request->timeout / HZ);
2852 cmd->request_desc->SCSIIO.RequestFlags =
2853 (MPI2_REQ_DESCRIPT_FLAGS_SCSI_IO <<
2854 MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
2855 } else {
2857 /* set RAID context values */
2858 pRAID_Context->config_seq_num = raid->seqNum;
2859 if (instance->adapter_type != VENTURA_SERIES)
2860 pRAID_Context->reg_lock_flags = REGION_TYPE_SHARED_READ;
2861 pRAID_Context->timeout_value =
2862 cpu_to_le16(raid->fpIoTimeoutForLd);
2864 /* get the DevHandle for the PD (since this is
2865 fpNonRWCapable, this is a single disk RAID0) */
2866 span = physArm = 0;
2867 arRef = MR_LdSpanArrayGet(ld, span, local_map_ptr);
2868 pd = MR_ArPdGet(arRef, physArm, local_map_ptr);
2869 devHandle = MR_PdDevHandleGet(pd, local_map_ptr);
2871 /* build request descriptor */
2872 cmd->request_desc->SCSIIO.RequestFlags =
2873 (MPI2_REQ_DESCRIPT_FLAGS_FP_IO <<
2874 MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
2875 cmd->request_desc->SCSIIO.DevHandle = devHandle;
2877 /* populate the LUN field */
2878 memcpy(io_request->LUN, raid->LUN, 8);
2880 /* build the raidScsiIO structure */
2881 io_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
2882 io_request->DevHandle = devHandle;
2887 * megasas_build_syspd_fusion - prepares rw/non-rw ios for syspd
2888 * @instance: Adapter soft state
2889 * @scp: SCSI command
2890 * @cmd: Command to be prepared
2891 * @fp_possible: parameter to detect fast path or firmware path io.
2893 * Prepares the io_request frame for rw/non-rw io cmds for syspds
2895 static void
2896 megasas_build_syspd_fusion(struct megasas_instance *instance,
2897 struct scsi_cmnd *scmd, struct megasas_cmd_fusion *cmd,
2898 bool fp_possible)
2900 u32 device_id;
2901 struct MPI2_RAID_SCSI_IO_REQUEST *io_request;
2902 u16 pd_index = 0;
2903 u16 os_timeout_value;
2904 u16 timeout_limit;
2905 struct MR_DRV_RAID_MAP_ALL *local_map_ptr;
2906 struct RAID_CONTEXT *pRAID_Context;
2907 struct MR_PD_CFG_SEQ_NUM_SYNC *pd_sync;
2908 struct MR_PRIV_DEVICE *mr_device_priv_data;
2909 struct fusion_context *fusion = instance->ctrl_context;
2910 pd_sync = (void *)fusion->pd_seq_sync[(instance->pd_seq_map_id - 1) & 1];
2912 device_id = MEGASAS_DEV_INDEX(scmd);
2913 pd_index = MEGASAS_PD_INDEX(scmd);
2914 os_timeout_value = scmd->request->timeout / HZ;
2915 mr_device_priv_data = scmd->device->hostdata;
2916 cmd->pd_interface = mr_device_priv_data->interface_type;
2918 io_request = cmd->io_request;
2919 /* get RAID_Context pointer */
2920 pRAID_Context = &io_request->RaidContext.raid_context;
2921 pRAID_Context->reg_lock_flags = 0;
2922 pRAID_Context->reg_lock_row_lba = 0;
2923 pRAID_Context->reg_lock_length = 0;
2924 io_request->DataLength = cpu_to_le32(scsi_bufflen(scmd));
2925 io_request->LUN[1] = scmd->device->lun;
2926 pRAID_Context->raid_flags = MR_RAID_FLAGS_IO_SUB_TYPE_SYSTEM_PD
2927 << MR_RAID_CTX_RAID_FLAGS_IO_SUB_TYPE_SHIFT;
2929 /* If FW supports PD sequence number */
2930 if (instance->use_seqnum_jbod_fp &&
2931 instance->pd_list[pd_index].driveType == TYPE_DISK) {
2932 /* TgtId must be incremented by 255 as jbod seq number is index
2933 * below raid map
2935 /* More than 256 PD/JBOD support for Ventura */
2936 if (instance->support_morethan256jbod)
2937 pRAID_Context->virtual_disk_tgt_id =
2938 pd_sync->seq[pd_index].pd_target_id;
2939 else
2940 pRAID_Context->virtual_disk_tgt_id =
2941 cpu_to_le16(device_id + (MAX_PHYSICAL_DEVICES - 1));
2942 pRAID_Context->config_seq_num = pd_sync->seq[pd_index].seqNum;
2943 io_request->DevHandle = pd_sync->seq[pd_index].devHandle;
2944 if (instance->adapter_type == VENTURA_SERIES) {
2945 io_request->RaidContext.raid_context_g35.routing_flags |=
2946 (1 << MR_RAID_CTX_ROUTINGFLAGS_SQN_SHIFT);
2947 io_request->RaidContext.raid_context_g35.nseg_type |=
2948 (1 << RAID_CONTEXT_NSEG_SHIFT);
2949 io_request->RaidContext.raid_context_g35.nseg_type |=
2950 (MPI2_TYPE_CUDA << RAID_CONTEXT_TYPE_SHIFT);
2951 } else {
2952 pRAID_Context->type = MPI2_TYPE_CUDA;
2953 pRAID_Context->nseg = 0x1;
2954 pRAID_Context->reg_lock_flags |=
2955 (MR_RL_FLAGS_SEQ_NUM_ENABLE|MR_RL_FLAGS_GRANT_DESTINATION_CUDA);
2957 } else if (fusion->fast_path_io) {
2958 pRAID_Context->virtual_disk_tgt_id = cpu_to_le16(device_id);
2959 pRAID_Context->config_seq_num = 0;
2960 local_map_ptr = fusion->ld_drv_map[(instance->map_id & 1)];
2961 io_request->DevHandle =
2962 local_map_ptr->raidMap.devHndlInfo[device_id].curDevHdl;
2963 } else {
2964 /* Want to send all IO via FW path */
2965 pRAID_Context->virtual_disk_tgt_id = cpu_to_le16(device_id);
2966 pRAID_Context->config_seq_num = 0;
2967 io_request->DevHandle = cpu_to_le16(0xFFFF);
2970 cmd->request_desc->SCSIIO.DevHandle = io_request->DevHandle;
2972 cmd->request_desc->SCSIIO.MSIxIndex =
2973 instance->reply_map[raw_smp_processor_id()];
2975 if (!fp_possible) {
2976 /* system pd firmware path */
2977 io_request->Function = MEGASAS_MPI2_FUNCTION_LD_IO_REQUEST;
2978 cmd->request_desc->SCSIIO.RequestFlags =
2979 (MPI2_REQ_DESCRIPT_FLAGS_SCSI_IO <<
2980 MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
2981 pRAID_Context->timeout_value = cpu_to_le16(os_timeout_value);
2982 pRAID_Context->virtual_disk_tgt_id = cpu_to_le16(device_id);
2983 } else {
2984 /* system pd Fast Path */
2985 io_request->Function = MPI2_FUNCTION_SCSI_IO_REQUEST;
2986 timeout_limit = (scmd->device->type == TYPE_DISK) ?
2987 255 : 0xFFFF;
2988 pRAID_Context->timeout_value =
2989 cpu_to_le16((os_timeout_value > timeout_limit) ?
2990 timeout_limit : os_timeout_value);
2991 if (instance->adapter_type >= INVADER_SERIES)
2992 io_request->IoFlags |=
2993 cpu_to_le16(MPI25_SAS_DEVICE0_FLAGS_ENABLED_FAST_PATH);
2995 cmd->request_desc->SCSIIO.RequestFlags =
2996 (MPI2_REQ_DESCRIPT_FLAGS_FP_IO <<
2997 MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
3002 * megasas_build_io_fusion - Prepares IOs to devices
3003 * @instance: Adapter soft state
3004 * @scp: SCSI command
3005 * @cmd: Command to be prepared
3007 * Invokes helper functions to prepare request frames
3008 * and sets flags appropriate for IO/Non-IO cmd
3011 megasas_build_io_fusion(struct megasas_instance *instance,
3012 struct scsi_cmnd *scp,
3013 struct megasas_cmd_fusion *cmd)
3015 int sge_count;
3016 u8 cmd_type;
3017 struct MPI2_RAID_SCSI_IO_REQUEST *io_request = cmd->io_request;
3018 struct MR_PRIV_DEVICE *mr_device_priv_data;
3019 mr_device_priv_data = scp->device->hostdata;
3021 /* Zero out some fields so they don't get reused */
3022 memset(io_request->LUN, 0x0, 8);
3023 io_request->CDB.EEDP32.PrimaryReferenceTag = 0;
3024 io_request->CDB.EEDP32.PrimaryApplicationTagMask = 0;
3025 io_request->EEDPFlags = 0;
3026 io_request->Control = 0;
3027 io_request->EEDPBlockSize = 0;
3028 io_request->ChainOffset = 0;
3029 io_request->RaidContext.raid_context.raid_flags = 0;
3030 io_request->RaidContext.raid_context.type = 0;
3031 io_request->RaidContext.raid_context.nseg = 0;
3033 memcpy(io_request->CDB.CDB32, scp->cmnd, scp->cmd_len);
3035 * Just the CDB length,rest of the Flags are zero
3036 * This will be modified for FP in build_ldio_fusion
3038 io_request->IoFlags = cpu_to_le16(scp->cmd_len);
3040 switch (cmd_type = megasas_cmd_type(scp)) {
3041 case READ_WRITE_LDIO:
3042 megasas_build_ldio_fusion(instance, scp, cmd);
3043 break;
3044 case NON_READ_WRITE_LDIO:
3045 megasas_build_ld_nonrw_fusion(instance, scp, cmd);
3046 break;
3047 case READ_WRITE_SYSPDIO:
3048 megasas_build_syspd_fusion(instance, scp, cmd, true);
3049 break;
3050 case NON_READ_WRITE_SYSPDIO:
3051 if (instance->secure_jbod_support ||
3052 mr_device_priv_data->is_tm_capable)
3053 megasas_build_syspd_fusion(instance, scp, cmd, false);
3054 else
3055 megasas_build_syspd_fusion(instance, scp, cmd, true);
3056 break;
3057 default:
3058 break;
3062 * Construct SGL
3065 sge_count = megasas_make_sgl(instance, scp, cmd);
3067 if (sge_count > instance->max_num_sge || (sge_count < 0)) {
3068 dev_err(&instance->pdev->dev,
3069 "%s %d sge_count (%d) is out of range. Range is: 0-%d\n",
3070 __func__, __LINE__, sge_count, instance->max_num_sge);
3071 return 1;
3074 if (instance->adapter_type == VENTURA_SERIES) {
3075 set_num_sge(&io_request->RaidContext.raid_context_g35, sge_count);
3076 cpu_to_le16s(&io_request->RaidContext.raid_context_g35.routing_flags);
3077 cpu_to_le16s(&io_request->RaidContext.raid_context_g35.nseg_type);
3078 } else {
3079 /* numSGE store lower 8 bit of sge_count.
3080 * numSGEExt store higher 8 bit of sge_count
3082 io_request->RaidContext.raid_context.num_sge = sge_count;
3083 io_request->RaidContext.raid_context.num_sge_ext =
3084 (u8)(sge_count >> 8);
3087 io_request->SGLFlags = cpu_to_le16(MPI2_SGE_FLAGS_64_BIT_ADDRESSING);
3089 if (scp->sc_data_direction == PCI_DMA_TODEVICE)
3090 io_request->Control |= cpu_to_le32(MPI2_SCSIIO_CONTROL_WRITE);
3091 else if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
3092 io_request->Control |= cpu_to_le32(MPI2_SCSIIO_CONTROL_READ);
3094 io_request->SGLOffset0 =
3095 offsetof(struct MPI2_RAID_SCSI_IO_REQUEST, SGL) / 4;
3097 io_request->SenseBufferLowAddress =
3098 cpu_to_le32(lower_32_bits(cmd->sense_phys_addr));
3099 io_request->SenseBufferLength = SCSI_SENSE_BUFFERSIZE;
3101 cmd->scmd = scp;
3102 scp->SCp.ptr = (char *)cmd;
3104 return 0;
3107 static union MEGASAS_REQUEST_DESCRIPTOR_UNION *
3108 megasas_get_request_descriptor(struct megasas_instance *instance, u16 index)
3110 u8 *p;
3111 struct fusion_context *fusion;
3113 fusion = instance->ctrl_context;
3114 p = fusion->req_frames_desc +
3115 sizeof(union MEGASAS_REQUEST_DESCRIPTOR_UNION) * index;
3117 return (union MEGASAS_REQUEST_DESCRIPTOR_UNION *)p;
3121 /* megasas_prepate_secondRaid1_IO
3122 * It prepares the raid 1 second IO
3124 void megasas_prepare_secondRaid1_IO(struct megasas_instance *instance,
3125 struct megasas_cmd_fusion *cmd,
3126 struct megasas_cmd_fusion *r1_cmd)
3128 union MEGASAS_REQUEST_DESCRIPTOR_UNION *req_desc, *req_desc2 = NULL;
3129 struct fusion_context *fusion;
3130 fusion = instance->ctrl_context;
3131 req_desc = cmd->request_desc;
3132 /* copy the io request frame as well as 8 SGEs data for r1 command*/
3133 memcpy(r1_cmd->io_request, cmd->io_request,
3134 (sizeof(struct MPI2_RAID_SCSI_IO_REQUEST)));
3135 memcpy(&r1_cmd->io_request->SGL, &cmd->io_request->SGL,
3136 (fusion->max_sge_in_main_msg * sizeof(union MPI2_SGE_IO_UNION)));
3137 /*sense buffer is different for r1 command*/
3138 r1_cmd->io_request->SenseBufferLowAddress =
3139 cpu_to_le32(lower_32_bits(r1_cmd->sense_phys_addr));
3140 r1_cmd->scmd = cmd->scmd;
3141 req_desc2 = megasas_get_request_descriptor(instance,
3142 (r1_cmd->index - 1));
3143 req_desc2->Words = 0;
3144 r1_cmd->request_desc = req_desc2;
3145 req_desc2->SCSIIO.SMID = cpu_to_le16(r1_cmd->index);
3146 req_desc2->SCSIIO.RequestFlags = req_desc->SCSIIO.RequestFlags;
3147 r1_cmd->request_desc->SCSIIO.DevHandle = cmd->r1_alt_dev_handle;
3148 r1_cmd->io_request->DevHandle = cmd->r1_alt_dev_handle;
3149 r1_cmd->r1_alt_dev_handle = cmd->io_request->DevHandle;
3150 cmd->io_request->RaidContext.raid_context_g35.smid.peer_smid =
3151 cpu_to_le16(r1_cmd->index);
3152 r1_cmd->io_request->RaidContext.raid_context_g35.smid.peer_smid =
3153 cpu_to_le16(cmd->index);
3154 /*MSIxIndex of both commands request descriptors should be same*/
3155 r1_cmd->request_desc->SCSIIO.MSIxIndex =
3156 cmd->request_desc->SCSIIO.MSIxIndex;
3157 /*span arm is different for r1 cmd*/
3158 r1_cmd->io_request->RaidContext.raid_context_g35.span_arm =
3159 cmd->io_request->RaidContext.raid_context_g35.span_arm + 1;
3163 * megasas_build_and_issue_cmd_fusion -Main routine for building and
3164 * issuing non IOCTL cmd
3165 * @instance: Adapter soft state
3166 * @scmd: pointer to scsi cmd from OS
3168 static u32
3169 megasas_build_and_issue_cmd_fusion(struct megasas_instance *instance,
3170 struct scsi_cmnd *scmd)
3172 struct megasas_cmd_fusion *cmd, *r1_cmd = NULL;
3173 union MEGASAS_REQUEST_DESCRIPTOR_UNION *req_desc;
3174 u32 index;
3175 struct fusion_context *fusion;
3177 fusion = instance->ctrl_context;
3179 if ((megasas_cmd_type(scmd) == READ_WRITE_LDIO) &&
3180 instance->ldio_threshold &&
3181 (atomic_inc_return(&instance->ldio_outstanding) >
3182 instance->ldio_threshold)) {
3183 atomic_dec(&instance->ldio_outstanding);
3184 return SCSI_MLQUEUE_DEVICE_BUSY;
3187 if (atomic_inc_return(&instance->fw_outstanding) >
3188 instance->host->can_queue) {
3189 atomic_dec(&instance->fw_outstanding);
3190 return SCSI_MLQUEUE_HOST_BUSY;
3193 cmd = megasas_get_cmd_fusion(instance, scmd->request->tag);
3195 if (!cmd) {
3196 atomic_dec(&instance->fw_outstanding);
3197 return SCSI_MLQUEUE_HOST_BUSY;
3200 index = cmd->index;
3202 req_desc = megasas_get_request_descriptor(instance, index-1);
3204 req_desc->Words = 0;
3205 cmd->request_desc = req_desc;
3207 if (megasas_build_io_fusion(instance, scmd, cmd)) {
3208 megasas_return_cmd_fusion(instance, cmd);
3209 dev_err(&instance->pdev->dev, "Error building command\n");
3210 cmd->request_desc = NULL;
3211 atomic_dec(&instance->fw_outstanding);
3212 return SCSI_MLQUEUE_HOST_BUSY;
3215 req_desc = cmd->request_desc;
3216 req_desc->SCSIIO.SMID = cpu_to_le16(index);
3218 if (cmd->io_request->ChainOffset != 0 &&
3219 cmd->io_request->ChainOffset != 0xF)
3220 dev_err(&instance->pdev->dev, "The chain offset value is not "
3221 "correct : %x\n", cmd->io_request->ChainOffset);
3223 * if it is raid 1/10 fp write capable.
3224 * try to get second command from pool and construct it.
3225 * From FW, it has confirmed that lba values of two PDs
3226 * corresponds to single R1/10 LD are always same
3229 /* driver side count always should be less than max_fw_cmds
3230 * to get new command
3232 if (cmd->r1_alt_dev_handle != MR_DEVHANDLE_INVALID) {
3233 r1_cmd = megasas_get_cmd_fusion(instance,
3234 (scmd->request->tag + instance->max_fw_cmds));
3235 megasas_prepare_secondRaid1_IO(instance, cmd, r1_cmd);
3240 * Issue the command to the FW
3243 megasas_fire_cmd_fusion(instance, req_desc);
3245 if (r1_cmd)
3246 megasas_fire_cmd_fusion(instance, r1_cmd->request_desc);
3249 return 0;
3253 * megasas_complete_r1_command -
3254 * completes R1 FP write commands which has valid peer smid
3255 * @instance: Adapter soft state
3256 * @cmd_fusion: MPT command frame
3259 static inline void
3260 megasas_complete_r1_command(struct megasas_instance *instance,
3261 struct megasas_cmd_fusion *cmd)
3263 u8 *sense, status, ex_status;
3264 u32 data_length;
3265 u16 peer_smid;
3266 struct fusion_context *fusion;
3267 struct megasas_cmd_fusion *r1_cmd = NULL;
3268 struct scsi_cmnd *scmd_local = NULL;
3269 struct RAID_CONTEXT_G35 *rctx_g35;
3271 rctx_g35 = &cmd->io_request->RaidContext.raid_context_g35;
3272 fusion = instance->ctrl_context;
3273 peer_smid = le16_to_cpu(rctx_g35->smid.peer_smid);
3275 r1_cmd = fusion->cmd_list[peer_smid - 1];
3276 scmd_local = cmd->scmd;
3277 status = rctx_g35->status;
3278 ex_status = rctx_g35->ex_status;
3279 data_length = cmd->io_request->DataLength;
3280 sense = cmd->sense;
3282 cmd->cmd_completed = true;
3284 /* Check if peer command is completed or not*/
3285 if (r1_cmd->cmd_completed) {
3286 rctx_g35 = &r1_cmd->io_request->RaidContext.raid_context_g35;
3287 if (rctx_g35->status != MFI_STAT_OK) {
3288 status = rctx_g35->status;
3289 ex_status = rctx_g35->ex_status;
3290 data_length = r1_cmd->io_request->DataLength;
3291 sense = r1_cmd->sense;
3294 megasas_return_cmd_fusion(instance, r1_cmd);
3295 map_cmd_status(fusion, scmd_local, status, ex_status,
3296 le32_to_cpu(data_length), sense);
3297 if (instance->ldio_threshold &&
3298 megasas_cmd_type(scmd_local) == READ_WRITE_LDIO)
3299 atomic_dec(&instance->ldio_outstanding);
3300 scmd_local->SCp.ptr = NULL;
3301 megasas_return_cmd_fusion(instance, cmd);
3302 scsi_dma_unmap(scmd_local);
3303 scmd_local->scsi_done(scmd_local);
3308 * complete_cmd_fusion - Completes command
3309 * @instance: Adapter soft state
3310 * Completes all commands that is in reply descriptor queue
3313 complete_cmd_fusion(struct megasas_instance *instance, u32 MSIxIndex)
3315 union MPI2_REPLY_DESCRIPTORS_UNION *desc;
3316 struct MPI2_SCSI_IO_SUCCESS_REPLY_DESCRIPTOR *reply_desc;
3317 struct MPI2_RAID_SCSI_IO_REQUEST *scsi_io_req;
3318 struct fusion_context *fusion;
3319 struct megasas_cmd *cmd_mfi;
3320 struct megasas_cmd_fusion *cmd_fusion;
3321 u16 smid, num_completed;
3322 u8 reply_descript_type, *sense, status, extStatus;
3323 u32 device_id, data_length;
3324 union desc_value d_val;
3325 struct LD_LOAD_BALANCE_INFO *lbinfo;
3326 int threshold_reply_count = 0;
3327 struct scsi_cmnd *scmd_local = NULL;
3328 struct MR_TASK_MANAGE_REQUEST *mr_tm_req;
3329 struct MPI2_SCSI_TASK_MANAGE_REQUEST *mpi_tm_req;
3331 fusion = instance->ctrl_context;
3333 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR)
3334 return IRQ_HANDLED;
3336 desc = fusion->reply_frames_desc[MSIxIndex] +
3337 fusion->last_reply_idx[MSIxIndex];
3339 reply_desc = (struct MPI2_SCSI_IO_SUCCESS_REPLY_DESCRIPTOR *)desc;
3341 d_val.word = desc->Words;
3343 reply_descript_type = reply_desc->ReplyFlags &
3344 MPI2_RPY_DESCRIPT_FLAGS_TYPE_MASK;
3346 if (reply_descript_type == MPI2_RPY_DESCRIPT_FLAGS_UNUSED)
3347 return IRQ_NONE;
3349 num_completed = 0;
3351 while (d_val.u.low != cpu_to_le32(UINT_MAX) &&
3352 d_val.u.high != cpu_to_le32(UINT_MAX)) {
3354 smid = le16_to_cpu(reply_desc->SMID);
3355 cmd_fusion = fusion->cmd_list[smid - 1];
3356 scsi_io_req = (struct MPI2_RAID_SCSI_IO_REQUEST *)
3357 cmd_fusion->io_request;
3359 scmd_local = cmd_fusion->scmd;
3360 status = scsi_io_req->RaidContext.raid_context.status;
3361 extStatus = scsi_io_req->RaidContext.raid_context.ex_status;
3362 sense = cmd_fusion->sense;
3363 data_length = scsi_io_req->DataLength;
3365 switch (scsi_io_req->Function) {
3366 case MPI2_FUNCTION_SCSI_TASK_MGMT:
3367 mr_tm_req = (struct MR_TASK_MANAGE_REQUEST *)
3368 cmd_fusion->io_request;
3369 mpi_tm_req = (struct MPI2_SCSI_TASK_MANAGE_REQUEST *)
3370 &mr_tm_req->TmRequest;
3371 dev_dbg(&instance->pdev->dev, "TM completion:"
3372 "type: 0x%x TaskMID: 0x%x\n",
3373 mpi_tm_req->TaskType, mpi_tm_req->TaskMID);
3374 complete(&cmd_fusion->done);
3375 break;
3376 case MPI2_FUNCTION_SCSI_IO_REQUEST: /*Fast Path IO.*/
3377 /* Update load balancing info */
3378 if (fusion->load_balance_info &&
3379 (cmd_fusion->scmd->SCp.Status &
3380 MEGASAS_LOAD_BALANCE_FLAG)) {
3381 device_id = MEGASAS_DEV_INDEX(scmd_local);
3382 lbinfo = &fusion->load_balance_info[device_id];
3383 atomic_dec(&lbinfo->scsi_pending_cmds[cmd_fusion->pd_r1_lb]);
3384 cmd_fusion->scmd->SCp.Status &= ~MEGASAS_LOAD_BALANCE_FLAG;
3386 //Fall thru and complete IO
3387 case MEGASAS_MPI2_FUNCTION_LD_IO_REQUEST: /* LD-IO Path */
3388 atomic_dec(&instance->fw_outstanding);
3389 if (cmd_fusion->r1_alt_dev_handle == MR_DEVHANDLE_INVALID) {
3390 map_cmd_status(fusion, scmd_local, status,
3391 extStatus, le32_to_cpu(data_length),
3392 sense);
3393 if (instance->ldio_threshold &&
3394 (megasas_cmd_type(scmd_local) == READ_WRITE_LDIO))
3395 atomic_dec(&instance->ldio_outstanding);
3396 scmd_local->SCp.ptr = NULL;
3397 megasas_return_cmd_fusion(instance, cmd_fusion);
3398 scsi_dma_unmap(scmd_local);
3399 scmd_local->scsi_done(scmd_local);
3400 } else /* Optimal VD - R1 FP command completion. */
3401 megasas_complete_r1_command(instance, cmd_fusion);
3402 break;
3403 case MEGASAS_MPI2_FUNCTION_PASSTHRU_IO_REQUEST: /*MFI command */
3404 cmd_mfi = instance->cmd_list[cmd_fusion->sync_cmd_idx];
3405 /* Poll mode. Dummy free.
3406 * In case of Interrupt mode, caller has reverse check.
3408 if (cmd_mfi->flags & DRV_DCMD_POLLED_MODE) {
3409 cmd_mfi->flags &= ~DRV_DCMD_POLLED_MODE;
3410 megasas_return_cmd(instance, cmd_mfi);
3411 } else
3412 megasas_complete_cmd(instance, cmd_mfi, DID_OK);
3413 break;
3416 fusion->last_reply_idx[MSIxIndex]++;
3417 if (fusion->last_reply_idx[MSIxIndex] >=
3418 fusion->reply_q_depth)
3419 fusion->last_reply_idx[MSIxIndex] = 0;
3421 desc->Words = cpu_to_le64(ULLONG_MAX);
3422 num_completed++;
3423 threshold_reply_count++;
3425 /* Get the next reply descriptor */
3426 if (!fusion->last_reply_idx[MSIxIndex])
3427 desc = fusion->reply_frames_desc[MSIxIndex];
3428 else
3429 desc++;
3431 reply_desc =
3432 (struct MPI2_SCSI_IO_SUCCESS_REPLY_DESCRIPTOR *)desc;
3434 d_val.word = desc->Words;
3436 reply_descript_type = reply_desc->ReplyFlags &
3437 MPI2_RPY_DESCRIPT_FLAGS_TYPE_MASK;
3439 if (reply_descript_type == MPI2_RPY_DESCRIPT_FLAGS_UNUSED)
3440 break;
3442 * Write to reply post host index register after completing threshold
3443 * number of reply counts and still there are more replies in reply queue
3444 * pending to be completed
3446 if (threshold_reply_count >= THRESHOLD_REPLY_COUNT) {
3447 if (instance->msix_combined)
3448 writel(((MSIxIndex & 0x7) << 24) |
3449 fusion->last_reply_idx[MSIxIndex],
3450 instance->reply_post_host_index_addr[MSIxIndex/8]);
3451 else
3452 writel((MSIxIndex << 24) |
3453 fusion->last_reply_idx[MSIxIndex],
3454 instance->reply_post_host_index_addr[0]);
3455 threshold_reply_count = 0;
3459 if (!num_completed)
3460 return IRQ_NONE;
3462 wmb();
3463 if (instance->msix_combined)
3464 writel(((MSIxIndex & 0x7) << 24) |
3465 fusion->last_reply_idx[MSIxIndex],
3466 instance->reply_post_host_index_addr[MSIxIndex/8]);
3467 else
3468 writel((MSIxIndex << 24) |
3469 fusion->last_reply_idx[MSIxIndex],
3470 instance->reply_post_host_index_addr[0]);
3471 megasas_check_and_restore_queue_depth(instance);
3472 return IRQ_HANDLED;
3476 * megasas_sync_irqs - Synchronizes all IRQs owned by adapter
3477 * @instance: Adapter soft state
3479 void megasas_sync_irqs(unsigned long instance_addr)
3481 u32 count, i;
3482 struct megasas_instance *instance =
3483 (struct megasas_instance *)instance_addr;
3485 count = instance->msix_vectors > 0 ? instance->msix_vectors : 1;
3487 for (i = 0; i < count; i++)
3488 synchronize_irq(pci_irq_vector(instance->pdev, i));
3492 * megasas_complete_cmd_dpc_fusion - Completes command
3493 * @instance: Adapter soft state
3495 * Tasklet to complete cmds
3497 void
3498 megasas_complete_cmd_dpc_fusion(unsigned long instance_addr)
3500 struct megasas_instance *instance =
3501 (struct megasas_instance *)instance_addr;
3502 unsigned long flags;
3503 u32 count, MSIxIndex;
3505 count = instance->msix_vectors > 0 ? instance->msix_vectors : 1;
3507 /* If we have already declared adapter dead, donot complete cmds */
3508 spin_lock_irqsave(&instance->hba_lock, flags);
3509 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
3510 spin_unlock_irqrestore(&instance->hba_lock, flags);
3511 return;
3513 spin_unlock_irqrestore(&instance->hba_lock, flags);
3515 for (MSIxIndex = 0 ; MSIxIndex < count; MSIxIndex++)
3516 complete_cmd_fusion(instance, MSIxIndex);
3520 * megasas_isr_fusion - isr entry point
3522 irqreturn_t megasas_isr_fusion(int irq, void *devp)
3524 struct megasas_irq_context *irq_context = devp;
3525 struct megasas_instance *instance = irq_context->instance;
3526 u32 mfiStatus, fw_state, dma_state;
3528 if (instance->mask_interrupts)
3529 return IRQ_NONE;
3531 if (!instance->msix_vectors) {
3532 mfiStatus = instance->instancet->clear_intr(instance->reg_set);
3533 if (!mfiStatus)
3534 return IRQ_NONE;
3537 /* If we are resetting, bail */
3538 if (test_bit(MEGASAS_FUSION_IN_RESET, &instance->reset_flags)) {
3539 instance->instancet->clear_intr(instance->reg_set);
3540 return IRQ_HANDLED;
3543 if (!complete_cmd_fusion(instance, irq_context->MSIxIndex)) {
3544 instance->instancet->clear_intr(instance->reg_set);
3545 /* If we didn't complete any commands, check for FW fault */
3546 fw_state = instance->instancet->read_fw_status_reg(
3547 instance->reg_set) & MFI_STATE_MASK;
3548 dma_state = instance->instancet->read_fw_status_reg
3549 (instance->reg_set) & MFI_STATE_DMADONE;
3550 if (instance->crash_dump_drv_support &&
3551 instance->crash_dump_app_support) {
3552 /* Start collecting crash, if DMA bit is done */
3553 if ((fw_state == MFI_STATE_FAULT) && dma_state)
3554 schedule_work(&instance->crash_init);
3555 else if (fw_state == MFI_STATE_FAULT) {
3556 if (instance->unload == 0)
3557 schedule_work(&instance->work_init);
3559 } else if (fw_state == MFI_STATE_FAULT) {
3560 dev_warn(&instance->pdev->dev, "Iop2SysDoorbellInt"
3561 "for scsi%d\n", instance->host->host_no);
3562 if (instance->unload == 0)
3563 schedule_work(&instance->work_init);
3567 return IRQ_HANDLED;
3571 * build_mpt_mfi_pass_thru - builds a cmd fo MFI Pass thru
3572 * @instance: Adapter soft state
3573 * mfi_cmd: megasas_cmd pointer
3576 void
3577 build_mpt_mfi_pass_thru(struct megasas_instance *instance,
3578 struct megasas_cmd *mfi_cmd)
3580 struct MPI25_IEEE_SGE_CHAIN64 *mpi25_ieee_chain;
3581 struct MPI2_RAID_SCSI_IO_REQUEST *io_req;
3582 struct megasas_cmd_fusion *cmd;
3583 struct fusion_context *fusion;
3584 struct megasas_header *frame_hdr = &mfi_cmd->frame->hdr;
3586 fusion = instance->ctrl_context;
3588 cmd = megasas_get_cmd_fusion(instance,
3589 instance->max_scsi_cmds + mfi_cmd->index);
3591 /* Save the smid. To be used for returning the cmd */
3592 mfi_cmd->context.smid = cmd->index;
3595 * For cmds where the flag is set, store the flag and check
3596 * on completion. For cmds with this flag, don't call
3597 * megasas_complete_cmd
3600 if (frame_hdr->flags & cpu_to_le16(MFI_FRAME_DONT_POST_IN_REPLY_QUEUE))
3601 mfi_cmd->flags |= DRV_DCMD_POLLED_MODE;
3603 io_req = cmd->io_request;
3605 if (instance->adapter_type >= INVADER_SERIES) {
3606 struct MPI25_IEEE_SGE_CHAIN64 *sgl_ptr_end =
3607 (struct MPI25_IEEE_SGE_CHAIN64 *)&io_req->SGL;
3608 sgl_ptr_end += fusion->max_sge_in_main_msg - 1;
3609 sgl_ptr_end->Flags = 0;
3612 mpi25_ieee_chain =
3613 (struct MPI25_IEEE_SGE_CHAIN64 *)&io_req->SGL.IeeeChain;
3615 io_req->Function = MEGASAS_MPI2_FUNCTION_PASSTHRU_IO_REQUEST;
3616 io_req->SGLOffset0 = offsetof(struct MPI2_RAID_SCSI_IO_REQUEST,
3617 SGL) / 4;
3618 io_req->ChainOffset = fusion->chain_offset_mfi_pthru;
3620 mpi25_ieee_chain->Address = cpu_to_le64(mfi_cmd->frame_phys_addr);
3622 mpi25_ieee_chain->Flags = IEEE_SGE_FLAGS_CHAIN_ELEMENT |
3623 MPI2_IEEE_SGE_FLAGS_IOCPLBNTA_ADDR;
3625 mpi25_ieee_chain->Length = cpu_to_le32(instance->mfi_frame_size);
3629 * build_mpt_cmd - Calls helper function to build a cmd MFI Pass thru cmd
3630 * @instance: Adapter soft state
3631 * @cmd: mfi cmd to build
3634 union MEGASAS_REQUEST_DESCRIPTOR_UNION *
3635 build_mpt_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd)
3637 union MEGASAS_REQUEST_DESCRIPTOR_UNION *req_desc = NULL;
3638 u16 index;
3640 build_mpt_mfi_pass_thru(instance, cmd);
3641 index = cmd->context.smid;
3643 req_desc = megasas_get_request_descriptor(instance, index - 1);
3645 req_desc->Words = 0;
3646 req_desc->SCSIIO.RequestFlags = (MPI2_REQ_DESCRIPT_FLAGS_SCSI_IO <<
3647 MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
3649 req_desc->SCSIIO.SMID = cpu_to_le16(index);
3651 return req_desc;
3655 * megasas_issue_dcmd_fusion - Issues a MFI Pass thru cmd
3656 * @instance: Adapter soft state
3657 * @cmd: mfi cmd pointer
3660 void
3661 megasas_issue_dcmd_fusion(struct megasas_instance *instance,
3662 struct megasas_cmd *cmd)
3664 union MEGASAS_REQUEST_DESCRIPTOR_UNION *req_desc;
3666 req_desc = build_mpt_cmd(instance, cmd);
3668 megasas_fire_cmd_fusion(instance, req_desc);
3669 return;
3673 * megasas_release_fusion - Reverses the FW initialization
3674 * @instance: Adapter soft state
3676 void
3677 megasas_release_fusion(struct megasas_instance *instance)
3679 megasas_free_ioc_init_cmd(instance);
3680 megasas_free_cmds(instance);
3681 megasas_free_cmds_fusion(instance);
3683 iounmap(instance->reg_set);
3685 pci_release_selected_regions(instance->pdev, 1<<instance->bar);
3689 * megasas_read_fw_status_reg_fusion - returns the current FW status value
3690 * @regs: MFI register set
3692 static u32
3693 megasas_read_fw_status_reg_fusion(struct megasas_register_set __iomem *regs)
3695 return readl(&(regs)->outbound_scratch_pad);
3699 * megasas_alloc_host_crash_buffer - Host buffers for Crash dump collection from Firmware
3700 * @instance: Controller's soft instance
3701 * return: Number of allocated host crash buffers
3703 static void
3704 megasas_alloc_host_crash_buffer(struct megasas_instance *instance)
3706 unsigned int i;
3708 for (i = 0; i < MAX_CRASH_DUMP_SIZE; i++) {
3709 instance->crash_buf[i] = vzalloc(CRASH_DMA_BUF_SIZE);
3710 if (!instance->crash_buf[i]) {
3711 dev_info(&instance->pdev->dev, "Firmware crash dump "
3712 "memory allocation failed at index %d\n", i);
3713 break;
3716 instance->drv_buf_alloc = i;
3720 * megasas_free_host_crash_buffer - Host buffers for Crash dump collection from Firmware
3721 * @instance: Controller's soft instance
3723 void
3724 megasas_free_host_crash_buffer(struct megasas_instance *instance)
3726 unsigned int i;
3727 for (i = 0; i < instance->drv_buf_alloc; i++) {
3728 if (instance->crash_buf[i])
3729 vfree(instance->crash_buf[i]);
3731 instance->drv_buf_index = 0;
3732 instance->drv_buf_alloc = 0;
3733 instance->fw_crash_state = UNAVAILABLE;
3734 instance->fw_crash_buffer_size = 0;
3738 * megasas_adp_reset_fusion - For controller reset
3739 * @regs: MFI register set
3741 static int
3742 megasas_adp_reset_fusion(struct megasas_instance *instance,
3743 struct megasas_register_set __iomem *regs)
3745 u32 host_diag, abs_state, retry;
3747 /* Now try to reset the chip */
3748 writel(MPI2_WRSEQ_FLUSH_KEY_VALUE, &instance->reg_set->fusion_seq_offset);
3749 writel(MPI2_WRSEQ_1ST_KEY_VALUE, &instance->reg_set->fusion_seq_offset);
3750 writel(MPI2_WRSEQ_2ND_KEY_VALUE, &instance->reg_set->fusion_seq_offset);
3751 writel(MPI2_WRSEQ_3RD_KEY_VALUE, &instance->reg_set->fusion_seq_offset);
3752 writel(MPI2_WRSEQ_4TH_KEY_VALUE, &instance->reg_set->fusion_seq_offset);
3753 writel(MPI2_WRSEQ_5TH_KEY_VALUE, &instance->reg_set->fusion_seq_offset);
3754 writel(MPI2_WRSEQ_6TH_KEY_VALUE, &instance->reg_set->fusion_seq_offset);
3756 /* Check that the diag write enable (DRWE) bit is on */
3757 host_diag = readl(&instance->reg_set->fusion_host_diag);
3758 retry = 0;
3759 while (!(host_diag & HOST_DIAG_WRITE_ENABLE)) {
3760 msleep(100);
3761 host_diag = readl(&instance->reg_set->fusion_host_diag);
3762 if (retry++ == 100) {
3763 dev_warn(&instance->pdev->dev,
3764 "Host diag unlock failed from %s %d\n",
3765 __func__, __LINE__);
3766 break;
3769 if (!(host_diag & HOST_DIAG_WRITE_ENABLE))
3770 return -1;
3772 /* Send chip reset command */
3773 writel(host_diag | HOST_DIAG_RESET_ADAPTER,
3774 &instance->reg_set->fusion_host_diag);
3775 msleep(3000);
3777 /* Make sure reset adapter bit is cleared */
3778 host_diag = readl(&instance->reg_set->fusion_host_diag);
3779 retry = 0;
3780 while (host_diag & HOST_DIAG_RESET_ADAPTER) {
3781 msleep(100);
3782 host_diag = readl(&instance->reg_set->fusion_host_diag);
3783 if (retry++ == 1000) {
3784 dev_warn(&instance->pdev->dev,
3785 "Diag reset adapter never cleared %s %d\n",
3786 __func__, __LINE__);
3787 break;
3790 if (host_diag & HOST_DIAG_RESET_ADAPTER)
3791 return -1;
3793 abs_state = instance->instancet->read_fw_status_reg(instance->reg_set)
3794 & MFI_STATE_MASK;
3795 retry = 0;
3797 while ((abs_state <= MFI_STATE_FW_INIT) && (retry++ < 1000)) {
3798 msleep(100);
3799 abs_state = instance->instancet->
3800 read_fw_status_reg(instance->reg_set) & MFI_STATE_MASK;
3802 if (abs_state <= MFI_STATE_FW_INIT) {
3803 dev_warn(&instance->pdev->dev,
3804 "fw state < MFI_STATE_FW_INIT, state = 0x%x %s %d\n",
3805 abs_state, __func__, __LINE__);
3806 return -1;
3809 return 0;
3813 * megasas_check_reset_fusion - For controller reset check
3814 * @regs: MFI register set
3816 static int
3817 megasas_check_reset_fusion(struct megasas_instance *instance,
3818 struct megasas_register_set __iomem *regs)
3820 return 0;
3823 /* This function waits for outstanding commands on fusion to complete */
3824 int megasas_wait_for_outstanding_fusion(struct megasas_instance *instance,
3825 int reason, int *convert)
3827 int i, outstanding, retval = 0, hb_seconds_missed = 0;
3828 u32 fw_state;
3830 for (i = 0; i < resetwaittime; i++) {
3831 /* Check if firmware is in fault state */
3832 fw_state = instance->instancet->read_fw_status_reg(
3833 instance->reg_set) & MFI_STATE_MASK;
3834 if (fw_state == MFI_STATE_FAULT) {
3835 dev_warn(&instance->pdev->dev, "Found FW in FAULT state,"
3836 " will reset adapter scsi%d.\n",
3837 instance->host->host_no);
3838 megasas_complete_cmd_dpc_fusion((unsigned long)instance);
3839 if (instance->requestorId && reason) {
3840 dev_warn(&instance->pdev->dev, "SR-IOV Found FW in FAULT"
3841 " state while polling during"
3842 " I/O timeout handling for %d\n",
3843 instance->host->host_no);
3844 *convert = 1;
3847 retval = 1;
3848 goto out;
3851 if (reason == MFI_IO_TIMEOUT_OCR) {
3852 dev_info(&instance->pdev->dev,
3853 "MFI IO is timed out, initiating OCR\n");
3854 megasas_complete_cmd_dpc_fusion((unsigned long)instance);
3855 retval = 1;
3856 goto out;
3859 /* If SR-IOV VF mode & heartbeat timeout, don't wait */
3860 if (instance->requestorId && !reason) {
3861 retval = 1;
3862 goto out;
3865 /* If SR-IOV VF mode & I/O timeout, check for HB timeout */
3866 if (instance->requestorId && (reason == SCSIIO_TIMEOUT_OCR)) {
3867 if (instance->hb_host_mem->HB.fwCounter !=
3868 instance->hb_host_mem->HB.driverCounter) {
3869 instance->hb_host_mem->HB.driverCounter =
3870 instance->hb_host_mem->HB.fwCounter;
3871 hb_seconds_missed = 0;
3872 } else {
3873 hb_seconds_missed++;
3874 if (hb_seconds_missed ==
3875 (MEGASAS_SRIOV_HEARTBEAT_INTERVAL_VF/HZ)) {
3876 dev_warn(&instance->pdev->dev, "SR-IOV:"
3877 " Heartbeat never completed "
3878 " while polling during I/O "
3879 " timeout handling for "
3880 "scsi%d.\n",
3881 instance->host->host_no);
3882 *convert = 1;
3883 retval = 1;
3884 goto out;
3889 megasas_complete_cmd_dpc_fusion((unsigned long)instance);
3890 outstanding = atomic_read(&instance->fw_outstanding);
3891 if (!outstanding)
3892 goto out;
3894 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
3895 dev_notice(&instance->pdev->dev, "[%2d]waiting for %d "
3896 "commands to complete for scsi%d\n", i,
3897 outstanding, instance->host->host_no);
3899 msleep(1000);
3902 if (atomic_read(&instance->fw_outstanding)) {
3903 dev_err(&instance->pdev->dev, "pending commands remain after waiting, "
3904 "will reset adapter scsi%d.\n",
3905 instance->host->host_no);
3906 *convert = 1;
3907 retval = 1;
3909 out:
3910 return retval;
3913 void megasas_reset_reply_desc(struct megasas_instance *instance)
3915 int i, j, count;
3916 struct fusion_context *fusion;
3917 union MPI2_REPLY_DESCRIPTORS_UNION *reply_desc;
3919 fusion = instance->ctrl_context;
3920 count = instance->msix_vectors > 0 ? instance->msix_vectors : 1;
3921 for (i = 0 ; i < count ; i++) {
3922 fusion->last_reply_idx[i] = 0;
3923 reply_desc = fusion->reply_frames_desc[i];
3924 for (j = 0 ; j < fusion->reply_q_depth; j++, reply_desc++)
3925 reply_desc->Words = cpu_to_le64(ULLONG_MAX);
3930 * megasas_refire_mgmt_cmd : Re-fire management commands
3931 * @instance: Controller's soft instance
3933 void megasas_refire_mgmt_cmd(struct megasas_instance *instance)
3935 int j;
3936 struct megasas_cmd_fusion *cmd_fusion;
3937 struct fusion_context *fusion;
3938 struct megasas_cmd *cmd_mfi;
3939 union MEGASAS_REQUEST_DESCRIPTOR_UNION *req_desc;
3940 u16 smid;
3941 bool refire_cmd = 0;
3942 u8 result;
3943 u32 opcode = 0;
3945 fusion = instance->ctrl_context;
3947 /* Re-fire management commands.
3948 * Do not traverse complet MPT frame pool. Start from max_scsi_cmds.
3950 for (j = instance->max_scsi_cmds ; j < instance->max_fw_cmds; j++) {
3951 cmd_fusion = fusion->cmd_list[j];
3952 cmd_mfi = instance->cmd_list[cmd_fusion->sync_cmd_idx];
3953 smid = le16_to_cpu(cmd_mfi->context.smid);
3954 result = REFIRE_CMD;
3956 if (!smid)
3957 continue;
3959 req_desc = megasas_get_request_descriptor(instance, smid - 1);
3961 switch (cmd_mfi->frame->hdr.cmd) {
3962 case MFI_CMD_DCMD:
3963 opcode = le32_to_cpu(cmd_mfi->frame->dcmd.opcode);
3964 /* Do not refire shutdown command */
3965 if (opcode == MR_DCMD_CTRL_SHUTDOWN) {
3966 cmd_mfi->frame->dcmd.cmd_status = MFI_STAT_OK;
3967 result = COMPLETE_CMD;
3968 break;
3971 refire_cmd = ((opcode != MR_DCMD_LD_MAP_GET_INFO)) &&
3972 (opcode != MR_DCMD_SYSTEM_PD_MAP_GET_INFO) &&
3973 !(cmd_mfi->flags & DRV_DCMD_SKIP_REFIRE);
3975 if (!refire_cmd)
3976 result = RETURN_CMD;
3978 break;
3979 case MFI_CMD_NVME:
3980 if (!instance->support_nvme_passthru) {
3981 cmd_mfi->frame->hdr.cmd_status = MFI_STAT_INVALID_CMD;
3982 result = COMPLETE_CMD;
3985 break;
3986 default:
3987 break;
3990 switch (result) {
3991 case REFIRE_CMD:
3992 megasas_fire_cmd_fusion(instance, req_desc);
3993 break;
3994 case RETURN_CMD:
3995 megasas_return_cmd(instance, cmd_mfi);
3996 break;
3997 case COMPLETE_CMD:
3998 megasas_complete_cmd(instance, cmd_mfi, DID_OK);
3999 break;
4005 * megasas_track_scsiio : Track SCSI IOs outstanding to a SCSI device
4006 * @instance: per adapter struct
4007 * @channel: the channel assigned by the OS
4008 * @id: the id assigned by the OS
4010 * Returns SUCCESS if no IOs pending to SCSI device, else return FAILED
4013 static int megasas_track_scsiio(struct megasas_instance *instance,
4014 int id, int channel)
4016 int i, found = 0;
4017 struct megasas_cmd_fusion *cmd_fusion;
4018 struct fusion_context *fusion;
4019 fusion = instance->ctrl_context;
4021 for (i = 0 ; i < instance->max_scsi_cmds; i++) {
4022 cmd_fusion = fusion->cmd_list[i];
4023 if (cmd_fusion->scmd &&
4024 (cmd_fusion->scmd->device->id == id &&
4025 cmd_fusion->scmd->device->channel == channel)) {
4026 dev_info(&instance->pdev->dev,
4027 "SCSI commands pending to target"
4028 "channel %d id %d \tSMID: 0x%x\n",
4029 channel, id, cmd_fusion->index);
4030 scsi_print_command(cmd_fusion->scmd);
4031 found = 1;
4032 break;
4036 return found ? FAILED : SUCCESS;
4040 * megasas_tm_response_code - translation of device response code
4041 * @ioc: per adapter object
4042 * @mpi_reply: MPI reply returned by firmware
4044 * Return nothing.
4046 static void
4047 megasas_tm_response_code(struct megasas_instance *instance,
4048 struct MPI2_SCSI_TASK_MANAGE_REPLY *mpi_reply)
4050 char *desc;
4052 switch (mpi_reply->ResponseCode) {
4053 case MPI2_SCSITASKMGMT_RSP_TM_COMPLETE:
4054 desc = "task management request completed";
4055 break;
4056 case MPI2_SCSITASKMGMT_RSP_INVALID_FRAME:
4057 desc = "invalid frame";
4058 break;
4059 case MPI2_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED:
4060 desc = "task management request not supported";
4061 break;
4062 case MPI2_SCSITASKMGMT_RSP_TM_FAILED:
4063 desc = "task management request failed";
4064 break;
4065 case MPI2_SCSITASKMGMT_RSP_TM_SUCCEEDED:
4066 desc = "task management request succeeded";
4067 break;
4068 case MPI2_SCSITASKMGMT_RSP_TM_INVALID_LUN:
4069 desc = "invalid lun";
4070 break;
4071 case 0xA:
4072 desc = "overlapped tag attempted";
4073 break;
4074 case MPI2_SCSITASKMGMT_RSP_IO_QUEUED_ON_IOC:
4075 desc = "task queued, however not sent to target";
4076 break;
4077 default:
4078 desc = "unknown";
4079 break;
4081 dev_dbg(&instance->pdev->dev, "response_code(%01x): %s\n",
4082 mpi_reply->ResponseCode, desc);
4083 dev_dbg(&instance->pdev->dev,
4084 "TerminationCount/DevHandle/Function/TaskType/IOCStat/IOCLoginfo"
4085 " 0x%x/0x%x/0x%x/0x%x/0x%x/0x%x\n",
4086 mpi_reply->TerminationCount, mpi_reply->DevHandle,
4087 mpi_reply->Function, mpi_reply->TaskType,
4088 mpi_reply->IOCStatus, mpi_reply->IOCLogInfo);
4092 * megasas_issue_tm - main routine for sending tm requests
4093 * @instance: per adapter struct
4094 * @device_handle: device handle
4095 * @channel: the channel assigned by the OS
4096 * @id: the id assigned by the OS
4097 * @type: MPI2_SCSITASKMGMT_TASKTYPE__XXX (defined in megaraid_sas_fusion.c)
4098 * @smid_task: smid assigned to the task
4099 * @m_type: TM_MUTEX_ON or TM_MUTEX_OFF
4100 * Context: user
4102 * MegaRaid use MPT interface for Task Magement request.
4103 * A generic API for sending task management requests to firmware.
4105 * Return SUCCESS or FAILED.
4107 static int
4108 megasas_issue_tm(struct megasas_instance *instance, u16 device_handle,
4109 uint channel, uint id, u16 smid_task, u8 type)
4111 struct MR_TASK_MANAGE_REQUEST *mr_request;
4112 struct MPI2_SCSI_TASK_MANAGE_REQUEST *mpi_request;
4113 unsigned long timeleft;
4114 struct megasas_cmd_fusion *cmd_fusion;
4115 struct megasas_cmd *cmd_mfi;
4116 union MEGASAS_REQUEST_DESCRIPTOR_UNION *req_desc;
4117 struct fusion_context *fusion = NULL;
4118 struct megasas_cmd_fusion *scsi_lookup;
4119 int rc;
4120 struct MPI2_SCSI_TASK_MANAGE_REPLY *mpi_reply;
4122 fusion = instance->ctrl_context;
4124 cmd_mfi = megasas_get_cmd(instance);
4126 if (!cmd_mfi) {
4127 dev_err(&instance->pdev->dev, "Failed from %s %d\n",
4128 __func__, __LINE__);
4129 return -ENOMEM;
4132 cmd_fusion = megasas_get_cmd_fusion(instance,
4133 instance->max_scsi_cmds + cmd_mfi->index);
4135 /* Save the smid. To be used for returning the cmd */
4136 cmd_mfi->context.smid = cmd_fusion->index;
4138 req_desc = megasas_get_request_descriptor(instance,
4139 (cmd_fusion->index - 1));
4141 cmd_fusion->request_desc = req_desc;
4142 req_desc->Words = 0;
4144 mr_request = (struct MR_TASK_MANAGE_REQUEST *) cmd_fusion->io_request;
4145 memset(mr_request, 0, sizeof(struct MR_TASK_MANAGE_REQUEST));
4146 mpi_request = (struct MPI2_SCSI_TASK_MANAGE_REQUEST *) &mr_request->TmRequest;
4147 mpi_request->Function = MPI2_FUNCTION_SCSI_TASK_MGMT;
4148 mpi_request->DevHandle = cpu_to_le16(device_handle);
4149 mpi_request->TaskType = type;
4150 mpi_request->TaskMID = cpu_to_le16(smid_task);
4151 mpi_request->LUN[1] = 0;
4154 req_desc = cmd_fusion->request_desc;
4155 req_desc->HighPriority.SMID = cpu_to_le16(cmd_fusion->index);
4156 req_desc->HighPriority.RequestFlags =
4157 (MPI2_REQ_DESCRIPT_FLAGS_HIGH_PRIORITY <<
4158 MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT);
4159 req_desc->HighPriority.MSIxIndex = 0;
4160 req_desc->HighPriority.LMID = 0;
4161 req_desc->HighPriority.Reserved1 = 0;
4163 if (channel < MEGASAS_MAX_PD_CHANNELS)
4164 mr_request->tmReqFlags.isTMForPD = 1;
4165 else
4166 mr_request->tmReqFlags.isTMForLD = 1;
4168 init_completion(&cmd_fusion->done);
4169 megasas_fire_cmd_fusion(instance, req_desc);
4171 timeleft = wait_for_completion_timeout(&cmd_fusion->done, 50 * HZ);
4173 if (!timeleft) {
4174 dev_err(&instance->pdev->dev,
4175 "task mgmt type 0x%x timed out\n", type);
4176 cmd_mfi->flags |= DRV_DCMD_SKIP_REFIRE;
4177 mutex_unlock(&instance->reset_mutex);
4178 rc = megasas_reset_fusion(instance->host, MFI_IO_TIMEOUT_OCR);
4179 mutex_lock(&instance->reset_mutex);
4180 return rc;
4183 mpi_reply = (struct MPI2_SCSI_TASK_MANAGE_REPLY *) &mr_request->TMReply;
4184 megasas_tm_response_code(instance, mpi_reply);
4186 megasas_return_cmd(instance, cmd_mfi);
4187 rc = SUCCESS;
4188 switch (type) {
4189 case MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK:
4190 scsi_lookup = fusion->cmd_list[smid_task - 1];
4192 if (scsi_lookup->scmd == NULL)
4193 break;
4194 else {
4195 instance->instancet->disable_intr(instance);
4196 megasas_sync_irqs((unsigned long)instance);
4197 instance->instancet->enable_intr(instance);
4198 if (scsi_lookup->scmd == NULL)
4199 break;
4201 rc = FAILED;
4202 break;
4204 case MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET:
4205 if ((channel == 0xFFFFFFFF) && (id == 0xFFFFFFFF))
4206 break;
4207 instance->instancet->disable_intr(instance);
4208 megasas_sync_irqs((unsigned long)instance);
4209 rc = megasas_track_scsiio(instance, id, channel);
4210 instance->instancet->enable_intr(instance);
4212 break;
4213 case MPI2_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET:
4214 case MPI2_SCSITASKMGMT_TASKTYPE_QUERY_TASK:
4215 break;
4216 default:
4217 rc = FAILED;
4218 break;
4221 return rc;
4226 * megasas_fusion_smid_lookup : Look for fusion command correpspodning to SCSI
4227 * @instance: per adapter struct
4229 * Return Non Zero index, if SMID found in outstanding commands
4231 static u16 megasas_fusion_smid_lookup(struct scsi_cmnd *scmd)
4233 int i, ret = 0;
4234 struct megasas_instance *instance;
4235 struct megasas_cmd_fusion *cmd_fusion;
4236 struct fusion_context *fusion;
4238 instance = (struct megasas_instance *)scmd->device->host->hostdata;
4240 fusion = instance->ctrl_context;
4242 for (i = 0; i < instance->max_scsi_cmds; i++) {
4243 cmd_fusion = fusion->cmd_list[i];
4244 if (cmd_fusion->scmd && (cmd_fusion->scmd == scmd)) {
4245 scmd_printk(KERN_NOTICE, scmd, "Abort request is for"
4246 " SMID: %d\n", cmd_fusion->index);
4247 ret = cmd_fusion->index;
4248 break;
4252 return ret;
4256 * megasas_get_tm_devhandle - Get devhandle for TM request
4257 * @sdev- OS provided scsi device
4259 * Returns- devhandle/targetID of SCSI device
4261 static u16 megasas_get_tm_devhandle(struct scsi_device *sdev)
4263 u16 pd_index = 0;
4264 u32 device_id;
4265 struct megasas_instance *instance;
4266 struct fusion_context *fusion;
4267 struct MR_PD_CFG_SEQ_NUM_SYNC *pd_sync;
4268 u16 devhandle = (u16)ULONG_MAX;
4270 instance = (struct megasas_instance *)sdev->host->hostdata;
4271 fusion = instance->ctrl_context;
4273 if (!MEGASAS_IS_LOGICAL(sdev)) {
4274 if (instance->use_seqnum_jbod_fp) {
4275 pd_index = (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL)
4276 + sdev->id;
4277 pd_sync = (void *)fusion->pd_seq_sync
4278 [(instance->pd_seq_map_id - 1) & 1];
4279 devhandle = pd_sync->seq[pd_index].devHandle;
4280 } else
4281 sdev_printk(KERN_ERR, sdev, "Firmware expose tmCapable"
4282 " without JBOD MAP support from %s %d\n", __func__, __LINE__);
4283 } else {
4284 device_id = ((sdev->channel % 2) * MEGASAS_MAX_DEV_PER_CHANNEL)
4285 + sdev->id;
4286 devhandle = device_id;
4289 return devhandle;
4293 * megasas_task_abort_fusion : SCSI task abort function for fusion adapters
4294 * @scmd : pointer to scsi command object
4296 * Return SUCCESS, if command aborted else FAILED
4299 int megasas_task_abort_fusion(struct scsi_cmnd *scmd)
4301 struct megasas_instance *instance;
4302 u16 smid, devhandle;
4303 struct fusion_context *fusion;
4304 int ret;
4305 struct MR_PRIV_DEVICE *mr_device_priv_data;
4306 mr_device_priv_data = scmd->device->hostdata;
4309 instance = (struct megasas_instance *)scmd->device->host->hostdata;
4310 fusion = instance->ctrl_context;
4312 scmd_printk(KERN_INFO, scmd, "task abort called for scmd(%p)\n", scmd);
4313 scsi_print_command(scmd);
4315 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
4316 dev_err(&instance->pdev->dev, "Controller is not OPERATIONAL,"
4317 "SCSI host:%d\n", instance->host->host_no);
4318 ret = FAILED;
4319 return ret;
4322 if (!mr_device_priv_data) {
4323 sdev_printk(KERN_INFO, scmd->device, "device been deleted! "
4324 "scmd(%p)\n", scmd);
4325 scmd->result = DID_NO_CONNECT << 16;
4326 ret = SUCCESS;
4327 goto out;
4331 if (!mr_device_priv_data->is_tm_capable) {
4332 ret = FAILED;
4333 goto out;
4336 mutex_lock(&instance->reset_mutex);
4338 smid = megasas_fusion_smid_lookup(scmd);
4340 if (!smid) {
4341 ret = SUCCESS;
4342 scmd_printk(KERN_NOTICE, scmd, "Command for which abort is"
4343 " issued is not found in oustanding commands\n");
4344 mutex_unlock(&instance->reset_mutex);
4345 goto out;
4348 devhandle = megasas_get_tm_devhandle(scmd->device);
4350 if (devhandle == (u16)ULONG_MAX) {
4351 ret = SUCCESS;
4352 sdev_printk(KERN_INFO, scmd->device,
4353 "task abort issued for invalid devhandle\n");
4354 mutex_unlock(&instance->reset_mutex);
4355 goto out;
4357 sdev_printk(KERN_INFO, scmd->device,
4358 "attempting task abort! scmd(%p) tm_dev_handle 0x%x\n",
4359 scmd, devhandle);
4361 mr_device_priv_data->tm_busy = 1;
4362 ret = megasas_issue_tm(instance, devhandle,
4363 scmd->device->channel, scmd->device->id, smid,
4364 MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK);
4365 mr_device_priv_data->tm_busy = 0;
4367 mutex_unlock(&instance->reset_mutex);
4368 out:
4369 sdev_printk(KERN_INFO, scmd->device, "task abort: %s scmd(%p)\n",
4370 ((ret == SUCCESS) ? "SUCCESS" : "FAILED"), scmd);
4372 return ret;
4376 * megasas_reset_target_fusion : target reset function for fusion adapters
4377 * scmd: SCSI command pointer
4379 * Returns SUCCESS if all commands associated with target aborted else FAILED
4382 int megasas_reset_target_fusion(struct scsi_cmnd *scmd)
4385 struct megasas_instance *instance;
4386 int ret = FAILED;
4387 u16 devhandle;
4388 struct fusion_context *fusion;
4389 struct MR_PRIV_DEVICE *mr_device_priv_data;
4390 mr_device_priv_data = scmd->device->hostdata;
4392 instance = (struct megasas_instance *)scmd->device->host->hostdata;
4393 fusion = instance->ctrl_context;
4395 sdev_printk(KERN_INFO, scmd->device,
4396 "target reset called for scmd(%p)\n", scmd);
4398 if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) {
4399 dev_err(&instance->pdev->dev, "Controller is not OPERATIONAL,"
4400 "SCSI host:%d\n", instance->host->host_no);
4401 ret = FAILED;
4402 return ret;
4405 if (!mr_device_priv_data) {
4406 sdev_printk(KERN_INFO, scmd->device, "device been deleted! "
4407 "scmd(%p)\n", scmd);
4408 scmd->result = DID_NO_CONNECT << 16;
4409 ret = SUCCESS;
4410 goto out;
4414 if (!mr_device_priv_data->is_tm_capable) {
4415 ret = FAILED;
4416 goto out;
4419 mutex_lock(&instance->reset_mutex);
4420 devhandle = megasas_get_tm_devhandle(scmd->device);
4422 if (devhandle == (u16)ULONG_MAX) {
4423 ret = SUCCESS;
4424 sdev_printk(KERN_INFO, scmd->device,
4425 "target reset issued for invalid devhandle\n");
4426 mutex_unlock(&instance->reset_mutex);
4427 goto out;
4430 sdev_printk(KERN_INFO, scmd->device,
4431 "attempting target reset! scmd(%p) tm_dev_handle 0x%x\n",
4432 scmd, devhandle);
4433 mr_device_priv_data->tm_busy = 1;
4434 ret = megasas_issue_tm(instance, devhandle,
4435 scmd->device->channel, scmd->device->id, 0,
4436 MPI2_SCSITASKMGMT_TASKTYPE_TARGET_RESET);
4437 mr_device_priv_data->tm_busy = 0;
4438 mutex_unlock(&instance->reset_mutex);
4439 out:
4440 scmd_printk(KERN_NOTICE, scmd, "megasas: target reset %s!!\n",
4441 (ret == SUCCESS) ? "SUCCESS" : "FAILED");
4443 return ret;
4446 /*SRIOV get other instance in cluster if any*/
4447 struct megasas_instance *megasas_get_peer_instance(struct megasas_instance *instance)
4449 int i;
4451 for (i = 0; i < MAX_MGMT_ADAPTERS; i++) {
4452 if (megasas_mgmt_info.instance[i] &&
4453 (megasas_mgmt_info.instance[i] != instance) &&
4454 megasas_mgmt_info.instance[i]->requestorId &&
4455 megasas_mgmt_info.instance[i]->peerIsPresent &&
4456 (memcmp((megasas_mgmt_info.instance[i]->clusterId),
4457 instance->clusterId, MEGASAS_CLUSTER_ID_SIZE) == 0))
4458 return megasas_mgmt_info.instance[i];
4460 return NULL;
4463 /* Check for a second path that is currently UP */
4464 int megasas_check_mpio_paths(struct megasas_instance *instance,
4465 struct scsi_cmnd *scmd)
4467 struct megasas_instance *peer_instance = NULL;
4468 int retval = (DID_REQUEUE << 16);
4470 if (instance->peerIsPresent) {
4471 peer_instance = megasas_get_peer_instance(instance);
4472 if ((peer_instance) &&
4473 (atomic_read(&peer_instance->adprecovery) ==
4474 MEGASAS_HBA_OPERATIONAL))
4475 retval = (DID_NO_CONNECT << 16);
4477 return retval;
4480 /* Core fusion reset function */
4481 int megasas_reset_fusion(struct Scsi_Host *shost, int reason)
4483 int retval = SUCCESS, i, j, convert = 0;
4484 struct megasas_instance *instance;
4485 struct megasas_cmd_fusion *cmd_fusion, *r1_cmd;
4486 struct fusion_context *fusion;
4487 u32 abs_state, status_reg, reset_adapter;
4488 u32 io_timeout_in_crash_mode = 0;
4489 struct scsi_cmnd *scmd_local = NULL;
4490 struct scsi_device *sdev;
4492 instance = (struct megasas_instance *)shost->hostdata;
4493 fusion = instance->ctrl_context;
4495 mutex_lock(&instance->reset_mutex);
4497 if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) {
4498 dev_warn(&instance->pdev->dev, "Hardware critical error, "
4499 "returning FAILED for scsi%d.\n",
4500 instance->host->host_no);
4501 mutex_unlock(&instance->reset_mutex);
4502 return FAILED;
4504 status_reg = instance->instancet->read_fw_status_reg(instance->reg_set);
4505 abs_state = status_reg & MFI_STATE_MASK;
4507 /* IO timeout detected, forcibly put FW in FAULT state */
4508 if (abs_state != MFI_STATE_FAULT && instance->crash_dump_buf &&
4509 instance->crash_dump_app_support && reason) {
4510 dev_info(&instance->pdev->dev, "IO/DCMD timeout is detected, "
4511 "forcibly FAULT Firmware\n");
4512 atomic_set(&instance->adprecovery, MEGASAS_ADPRESET_SM_INFAULT);
4513 status_reg = readl(&instance->reg_set->doorbell);
4514 writel(status_reg | MFI_STATE_FORCE_OCR,
4515 &instance->reg_set->doorbell);
4516 readl(&instance->reg_set->doorbell);
4517 mutex_unlock(&instance->reset_mutex);
4518 do {
4519 ssleep(3);
4520 io_timeout_in_crash_mode++;
4521 dev_dbg(&instance->pdev->dev, "waiting for [%d] "
4522 "seconds for crash dump collection and OCR "
4523 "to be done\n", (io_timeout_in_crash_mode * 3));
4524 } while ((atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) &&
4525 (io_timeout_in_crash_mode < 80));
4527 if (atomic_read(&instance->adprecovery) == MEGASAS_HBA_OPERATIONAL) {
4528 dev_info(&instance->pdev->dev, "OCR done for IO "
4529 "timeout case\n");
4530 retval = SUCCESS;
4531 } else {
4532 dev_info(&instance->pdev->dev, "Controller is not "
4533 "operational after 240 seconds wait for IO "
4534 "timeout case in FW crash dump mode\n do "
4535 "OCR/kill adapter\n");
4536 retval = megasas_reset_fusion(shost, 0);
4538 return retval;
4541 if (instance->requestorId && !instance->skip_heartbeat_timer_del)
4542 del_timer_sync(&instance->sriov_heartbeat_timer);
4543 set_bit(MEGASAS_FUSION_IN_RESET, &instance->reset_flags);
4544 atomic_set(&instance->adprecovery, MEGASAS_ADPRESET_SM_POLLING);
4545 instance->instancet->disable_intr(instance);
4546 megasas_sync_irqs((unsigned long)instance);
4548 /* First try waiting for commands to complete */
4549 if (megasas_wait_for_outstanding_fusion(instance, reason,
4550 &convert)) {
4551 atomic_set(&instance->adprecovery, MEGASAS_ADPRESET_SM_INFAULT);
4552 dev_warn(&instance->pdev->dev, "resetting fusion "
4553 "adapter scsi%d.\n", instance->host->host_no);
4554 if (convert)
4555 reason = 0;
4557 if (megasas_dbg_lvl & OCR_LOGS)
4558 dev_info(&instance->pdev->dev, "\nPending SCSI commands:\n");
4560 /* Now return commands back to the OS */
4561 for (i = 0 ; i < instance->max_scsi_cmds; i++) {
4562 cmd_fusion = fusion->cmd_list[i];
4563 /*check for extra commands issued by driver*/
4564 if (instance->adapter_type == VENTURA_SERIES) {
4565 r1_cmd = fusion->cmd_list[i + instance->max_fw_cmds];
4566 megasas_return_cmd_fusion(instance, r1_cmd);
4568 scmd_local = cmd_fusion->scmd;
4569 if (cmd_fusion->scmd) {
4570 if (megasas_dbg_lvl & OCR_LOGS) {
4571 sdev_printk(KERN_INFO,
4572 cmd_fusion->scmd->device, "SMID: 0x%x\n",
4573 cmd_fusion->index);
4574 scsi_print_command(cmd_fusion->scmd);
4577 scmd_local->result =
4578 megasas_check_mpio_paths(instance,
4579 scmd_local);
4580 if (instance->ldio_threshold &&
4581 megasas_cmd_type(scmd_local) == READ_WRITE_LDIO)
4582 atomic_dec(&instance->ldio_outstanding);
4583 megasas_return_cmd_fusion(instance, cmd_fusion);
4584 scsi_dma_unmap(scmd_local);
4585 scmd_local->scsi_done(scmd_local);
4589 atomic_set(&instance->fw_outstanding, 0);
4591 status_reg = instance->instancet->read_fw_status_reg(
4592 instance->reg_set);
4593 abs_state = status_reg & MFI_STATE_MASK;
4594 reset_adapter = status_reg & MFI_RESET_ADAPTER;
4595 if (instance->disableOnlineCtrlReset ||
4596 (abs_state == MFI_STATE_FAULT && !reset_adapter)) {
4597 /* Reset not supported, kill adapter */
4598 dev_warn(&instance->pdev->dev, "Reset not supported"
4599 ", killing adapter scsi%d.\n",
4600 instance->host->host_no);
4601 megaraid_sas_kill_hba(instance);
4602 instance->skip_heartbeat_timer_del = 1;
4603 retval = FAILED;
4604 goto out;
4607 /* Let SR-IOV VF & PF sync up if there was a HB failure */
4608 if (instance->requestorId && !reason) {
4609 msleep(MEGASAS_OCR_SETTLE_TIME_VF);
4610 goto transition_to_ready;
4613 /* Now try to reset the chip */
4614 for (i = 0; i < MEGASAS_FUSION_MAX_RESET_TRIES; i++) {
4616 if (instance->instancet->adp_reset
4617 (instance, instance->reg_set))
4618 continue;
4619 transition_to_ready:
4620 /* Wait for FW to become ready */
4621 if (megasas_transition_to_ready(instance, 1)) {
4622 dev_warn(&instance->pdev->dev,
4623 "Failed to transition controller to ready for "
4624 "scsi%d.\n", instance->host->host_no);
4625 if (instance->requestorId && !reason)
4626 goto fail_kill_adapter;
4627 else
4628 continue;
4630 megasas_reset_reply_desc(instance);
4631 megasas_fusion_update_can_queue(instance, OCR_CONTEXT);
4633 if (megasas_ioc_init_fusion(instance)) {
4634 if (instance->requestorId && !reason)
4635 goto fail_kill_adapter;
4636 else
4637 continue;
4640 if (megasas_get_ctrl_info(instance)) {
4641 dev_info(&instance->pdev->dev,
4642 "Failed from %s %d\n",
4643 __func__, __LINE__);
4644 megaraid_sas_kill_hba(instance);
4645 retval = FAILED;
4646 goto out;
4649 megasas_refire_mgmt_cmd(instance);
4651 /* Reset load balance info */
4652 if (fusion->load_balance_info)
4653 memset(fusion->load_balance_info, 0,
4654 (sizeof(struct LD_LOAD_BALANCE_INFO) *
4655 MAX_LOGICAL_DRIVES_EXT));
4657 if (!megasas_get_map_info(instance))
4658 megasas_sync_map_info(instance);
4660 megasas_setup_jbod_map(instance);
4662 shost_for_each_device(sdev, shost)
4663 megasas_set_dynamic_target_properties(sdev);
4665 /* reset stream detection array */
4666 if (instance->adapter_type == VENTURA_SERIES) {
4667 for (j = 0; j < MAX_LOGICAL_DRIVES_EXT; ++j) {
4668 memset(fusion->stream_detect_by_ld[j],
4669 0, sizeof(struct LD_STREAM_DETECT));
4670 fusion->stream_detect_by_ld[j]->mru_bit_map
4671 = MR_STREAM_BITMAP;
4675 clear_bit(MEGASAS_FUSION_IN_RESET,
4676 &instance->reset_flags);
4677 instance->instancet->enable_intr(instance);
4678 atomic_set(&instance->adprecovery, MEGASAS_HBA_OPERATIONAL);
4680 dev_info(&instance->pdev->dev, "Interrupts are enabled and"
4681 " controller is OPERATIONAL for scsi:%d\n",
4682 instance->host->host_no);
4684 /* Restart SR-IOV heartbeat */
4685 if (instance->requestorId) {
4686 if (!megasas_sriov_start_heartbeat(instance, 0))
4687 megasas_start_timer(instance);
4688 else
4689 instance->skip_heartbeat_timer_del = 1;
4692 if (instance->crash_dump_drv_support &&
4693 instance->crash_dump_app_support)
4694 megasas_set_crash_dump_params(instance,
4695 MR_CRASH_BUF_TURN_ON);
4696 else
4697 megasas_set_crash_dump_params(instance,
4698 MR_CRASH_BUF_TURN_OFF);
4700 retval = SUCCESS;
4702 /* Adapter reset completed successfully */
4703 dev_warn(&instance->pdev->dev,
4704 "Reset successful for scsi%d.\n",
4705 instance->host->host_no);
4707 goto out;
4709 fail_kill_adapter:
4710 /* Reset failed, kill the adapter */
4711 dev_warn(&instance->pdev->dev, "Reset failed, killing "
4712 "adapter scsi%d.\n", instance->host->host_no);
4713 megaraid_sas_kill_hba(instance);
4714 instance->skip_heartbeat_timer_del = 1;
4715 retval = FAILED;
4716 } else {
4717 /* For VF: Restart HB timer if we didn't OCR */
4718 if (instance->requestorId) {
4719 megasas_start_timer(instance);
4721 clear_bit(MEGASAS_FUSION_IN_RESET, &instance->reset_flags);
4722 instance->instancet->enable_intr(instance);
4723 atomic_set(&instance->adprecovery, MEGASAS_HBA_OPERATIONAL);
4725 out:
4726 clear_bit(MEGASAS_FUSION_IN_RESET, &instance->reset_flags);
4727 mutex_unlock(&instance->reset_mutex);
4728 return retval;
4731 /* Fusion Crash dump collection work queue */
4732 void megasas_fusion_crash_dump_wq(struct work_struct *work)
4734 struct megasas_instance *instance =
4735 container_of(work, struct megasas_instance, crash_init);
4736 u32 status_reg;
4737 u8 partial_copy = 0;
4740 status_reg = instance->instancet->read_fw_status_reg(instance->reg_set);
4743 * Allocate host crash buffers to copy data from 1 MB DMA crash buffer
4744 * to host crash buffers
4746 if (instance->drv_buf_index == 0) {
4747 /* Buffer is already allocated for old Crash dump.
4748 * Do OCR and do not wait for crash dump collection
4750 if (instance->drv_buf_alloc) {
4751 dev_info(&instance->pdev->dev, "earlier crash dump is "
4752 "not yet copied by application, ignoring this "
4753 "crash dump and initiating OCR\n");
4754 status_reg |= MFI_STATE_CRASH_DUMP_DONE;
4755 writel(status_reg,
4756 &instance->reg_set->outbound_scratch_pad);
4757 readl(&instance->reg_set->outbound_scratch_pad);
4758 return;
4760 megasas_alloc_host_crash_buffer(instance);
4761 dev_info(&instance->pdev->dev, "Number of host crash buffers "
4762 "allocated: %d\n", instance->drv_buf_alloc);
4766 * Driver has allocated max buffers, which can be allocated
4767 * and FW has more crash dump data, then driver will
4768 * ignore the data.
4770 if (instance->drv_buf_index >= (instance->drv_buf_alloc)) {
4771 dev_info(&instance->pdev->dev, "Driver is done copying "
4772 "the buffer: %d\n", instance->drv_buf_alloc);
4773 status_reg |= MFI_STATE_CRASH_DUMP_DONE;
4774 partial_copy = 1;
4775 } else {
4776 memcpy(instance->crash_buf[instance->drv_buf_index],
4777 instance->crash_dump_buf, CRASH_DMA_BUF_SIZE);
4778 instance->drv_buf_index++;
4779 status_reg &= ~MFI_STATE_DMADONE;
4782 if (status_reg & MFI_STATE_CRASH_DUMP_DONE) {
4783 dev_info(&instance->pdev->dev, "Crash Dump is available,number "
4784 "of copied buffers: %d\n", instance->drv_buf_index);
4785 instance->fw_crash_buffer_size = instance->drv_buf_index;
4786 instance->fw_crash_state = AVAILABLE;
4787 instance->drv_buf_index = 0;
4788 writel(status_reg, &instance->reg_set->outbound_scratch_pad);
4789 readl(&instance->reg_set->outbound_scratch_pad);
4790 if (!partial_copy)
4791 megasas_reset_fusion(instance->host, 0);
4792 } else {
4793 writel(status_reg, &instance->reg_set->outbound_scratch_pad);
4794 readl(&instance->reg_set->outbound_scratch_pad);
4799 /* Fusion OCR work queue */
4800 void megasas_fusion_ocr_wq(struct work_struct *work)
4802 struct megasas_instance *instance =
4803 container_of(work, struct megasas_instance, work_init);
4805 megasas_reset_fusion(instance->host, 0);
4808 /* Allocate fusion context */
4810 megasas_alloc_fusion_context(struct megasas_instance *instance)
4812 struct fusion_context *fusion;
4814 instance->ctrl_context = kzalloc(sizeof(struct fusion_context),
4815 GFP_KERNEL);
4816 if (!instance->ctrl_context) {
4817 dev_err(&instance->pdev->dev, "Failed from %s %d\n",
4818 __func__, __LINE__);
4819 return -ENOMEM;
4822 fusion = instance->ctrl_context;
4824 fusion->log_to_span_pages = get_order(MAX_LOGICAL_DRIVES_EXT *
4825 sizeof(LD_SPAN_INFO));
4826 fusion->log_to_span =
4827 (PLD_SPAN_INFO)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
4828 fusion->log_to_span_pages);
4829 if (!fusion->log_to_span) {
4830 fusion->log_to_span = vzalloc(MAX_LOGICAL_DRIVES_EXT *
4831 sizeof(LD_SPAN_INFO));
4832 if (!fusion->log_to_span) {
4833 dev_err(&instance->pdev->dev, "Failed from %s %d\n",
4834 __func__, __LINE__);
4835 return -ENOMEM;
4839 fusion->load_balance_info_pages = get_order(MAX_LOGICAL_DRIVES_EXT *
4840 sizeof(struct LD_LOAD_BALANCE_INFO));
4841 fusion->load_balance_info =
4842 (struct LD_LOAD_BALANCE_INFO *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
4843 fusion->load_balance_info_pages);
4844 if (!fusion->load_balance_info) {
4845 fusion->load_balance_info = vzalloc(MAX_LOGICAL_DRIVES_EXT *
4846 sizeof(struct LD_LOAD_BALANCE_INFO));
4847 if (!fusion->load_balance_info)
4848 dev_err(&instance->pdev->dev, "Failed to allocate load_balance_info, "
4849 "continuing without Load Balance support\n");
4852 return 0;
4855 void
4856 megasas_free_fusion_context(struct megasas_instance *instance)
4858 struct fusion_context *fusion = instance->ctrl_context;
4860 if (fusion) {
4861 if (fusion->load_balance_info) {
4862 if (is_vmalloc_addr(fusion->load_balance_info))
4863 vfree(fusion->load_balance_info);
4864 else
4865 free_pages((ulong)fusion->load_balance_info,
4866 fusion->load_balance_info_pages);
4869 if (fusion->log_to_span) {
4870 if (is_vmalloc_addr(fusion->log_to_span))
4871 vfree(fusion->log_to_span);
4872 else
4873 free_pages((ulong)fusion->log_to_span,
4874 fusion->log_to_span_pages);
4877 kfree(fusion);
4881 struct megasas_instance_template megasas_instance_template_fusion = {
4882 .enable_intr = megasas_enable_intr_fusion,
4883 .disable_intr = megasas_disable_intr_fusion,
4884 .clear_intr = megasas_clear_intr_fusion,
4885 .read_fw_status_reg = megasas_read_fw_status_reg_fusion,
4886 .adp_reset = megasas_adp_reset_fusion,
4887 .check_reset = megasas_check_reset_fusion,
4888 .service_isr = megasas_isr_fusion,
4889 .tasklet = megasas_complete_cmd_dpc_fusion,
4890 .init_adapter = megasas_init_adapter_fusion,
4891 .build_and_issue_cmd = megasas_build_and_issue_cmd_fusion,
4892 .issue_dcmd = megasas_issue_dcmd_fusion,