blob: 5afd651217258afb48c3287a4d3475606ba0fa86 [file] [log] [blame]
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001/*
2 *
3 * Linux MegaRAID driver for SAS based RAID controllers
4 *
bo yangf28cd7c2007-11-09 04:44:56 -05005 * Copyright (c) 2003-2005 LSI Corporation.
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04006 *
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
10 * 2 of the License, or (at your option) any later version.
11 *
12 * FILE : megaraid_sas.c
Yang, Bo6610a6b2008-08-10 12:42:38 -070013 * Version : v00.00.04.01-rc1
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040014 *
15 * Authors:
Sumant Patrocc5968c2007-02-14 13:05:42 -080016 * (email-id : megaraidlinux@lsi.com)
17 * Sreenivas Bagalkote
18 * Sumant Patro
19 * Bo Yang
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040020 *
21 * List of supported controllers
22 *
23 * OEM Product Name VID DID SSVID SSID
24 * --- ------------ --- --- ---- ----
25 */
26
27#include <linux/kernel.h>
28#include <linux/types.h>
29#include <linux/pci.h>
30#include <linux/list.h>
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040031#include <linux/moduleparam.h>
32#include <linux/module.h>
33#include <linux/spinlock.h>
34#include <linux/interrupt.h>
35#include <linux/delay.h>
Jonathan Corbetf2b98572008-05-18 15:32:43 -060036#include <linux/smp_lock.h>
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040037#include <linux/uio.h>
38#include <asm/uaccess.h>
Al Viro43399232005-10-04 17:36:04 +010039#include <linux/fs.h>
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040040#include <linux/compat.h>
Sumant Patrocf62a0a2007-02-14 12:41:55 -080041#include <linux/blkdev.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010042#include <linux/mutex.h>
Yang, Boc3518832009-10-06 14:18:02 -060043#include <linux/poll.h>
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040044
45#include <scsi/scsi.h>
46#include <scsi/scsi_cmnd.h>
47#include <scsi/scsi_device.h>
48#include <scsi/scsi_host.h>
49#include "megaraid_sas.h"
50
bo yangad84db22007-11-09 04:40:16 -050051/*
52 * poll_mode_io:1- schedule complete completion from q cmd
53 */
54static unsigned int poll_mode_io;
55module_param_named(poll_mode_io, poll_mode_io, int, 0);
56MODULE_PARM_DESC(poll_mode_io,
57 "Complete cmds from IO path, (default=0)");
58
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040059MODULE_LICENSE("GPL");
60MODULE_VERSION(MEGASAS_VERSION);
Sumant Patro3d6d1742006-12-29 08:13:54 -080061MODULE_AUTHOR("megaraidlinux@lsi.com");
bo yangf28cd7c2007-11-09 04:44:56 -050062MODULE_DESCRIPTION("LSI MegaRAID SAS Driver");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040063
64/*
65 * PCI ID table for all supported controllers
66 */
67static struct pci_device_id megasas_pci_table[] = {
68
Henrik Kretzschmarf3d72712006-08-15 11:17:21 +020069 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1064R)},
70 /* xscale IOP */
71 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078R)},
72 /* ppc IOP */
bo yangaf7a5642008-03-17 04:13:07 -040073 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078DE)},
74 /* ppc IOP */
Yang, Bo6610a6b2008-08-10 12:42:38 -070075 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS1078GEN2)},
76 /* gen2*/
77 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0079GEN2)},
78 /* gen2*/
Yang, Bo87911122009-10-06 14:31:54 -060079 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0073SKINNY)},
80 /* skinny*/
81 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_SAS0071SKINNY)},
82 /* skinny*/
Henrik Kretzschmarf3d72712006-08-15 11:17:21 +020083 {PCI_DEVICE(PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_VERDE_ZCR)},
84 /* xscale IOP, vega */
85 {PCI_DEVICE(PCI_VENDOR_ID_DELL, PCI_DEVICE_ID_DELL_PERC5)},
86 /* xscale IOP */
87 {}
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040088};
89
90MODULE_DEVICE_TABLE(pci, megasas_pci_table);
91
92static int megasas_mgmt_majorno;
93static struct megasas_mgmt_info megasas_mgmt_info;
94static struct fasync_struct *megasas_async_queue;
Arjan van de Ven0b950672006-01-11 13:16:10 +010095static DEFINE_MUTEX(megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -040096
Yang, Boc3518832009-10-06 14:18:02 -060097static int megasas_poll_wait_aen;
98static DECLARE_WAIT_QUEUE_HEAD(megasas_poll_wait);
Yang, Bo72c4fd32009-10-06 14:20:59 -060099static u32 support_poll_for_event;
Sumant Patro658dced2006-10-03 13:09:14 -0700100static u32 megasas_dbg_lvl;
101
Yang, Boc3518832009-10-06 14:18:02 -0600102/* define lock for aen poll */
103spinlock_t poll_aen_lock;
104
bo yang7343eb62007-11-09 04:35:44 -0500105static void
106megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd,
107 u8 alt_status);
108
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400109/**
110 * megasas_get_cmd - Get a command from the free pool
111 * @instance: Adapter soft state
112 *
113 * Returns a free command from the pool
114 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800115static struct megasas_cmd *megasas_get_cmd(struct megasas_instance
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400116 *instance)
117{
118 unsigned long flags;
119 struct megasas_cmd *cmd = NULL;
120
121 spin_lock_irqsave(&instance->cmd_pool_lock, flags);
122
123 if (!list_empty(&instance->cmd_pool)) {
124 cmd = list_entry((&instance->cmd_pool)->next,
125 struct megasas_cmd, list);
126 list_del_init(&cmd->list);
127 } else {
128 printk(KERN_ERR "megasas: Command pool empty!\n");
129 }
130
131 spin_unlock_irqrestore(&instance->cmd_pool_lock, flags);
132 return cmd;
133}
134
135/**
136 * megasas_return_cmd - Return a cmd to free command pool
137 * @instance: Adapter soft state
138 * @cmd: Command packet to be returned to free command pool
139 */
140static inline void
141megasas_return_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd)
142{
143 unsigned long flags;
144
145 spin_lock_irqsave(&instance->cmd_pool_lock, flags);
146
147 cmd->scmd = NULL;
148 list_add_tail(&cmd->list, &instance->cmd_pool);
149
150 spin_unlock_irqrestore(&instance->cmd_pool_lock, flags);
151}
152
Sumant Patro1341c932006-01-25 12:02:40 -0800153
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400154/**
Sumant Patro1341c932006-01-25 12:02:40 -0800155* The following functions are defined for xscale
156* (deviceid : 1064R, PERC5) controllers
157*/
158
159/**
160 * megasas_enable_intr_xscale - Enables interrupts
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400161 * @regs: MFI register set
162 */
163static inline void
Sumant Patro1341c932006-01-25 12:02:40 -0800164megasas_enable_intr_xscale(struct megasas_register_set __iomem * regs)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400165{
166 writel(1, &(regs)->outbound_intr_mask);
167
168 /* Dummy readl to force pci flush */
169 readl(&regs->outbound_intr_mask);
170}
171
172/**
Sumant Patrob274cab2006-10-03 12:52:12 -0700173 * megasas_disable_intr_xscale -Disables interrupt
174 * @regs: MFI register set
175 */
176static inline void
177megasas_disable_intr_xscale(struct megasas_register_set __iomem * regs)
178{
179 u32 mask = 0x1f;
180 writel(mask, &regs->outbound_intr_mask);
181 /* Dummy readl to force pci flush */
182 readl(&regs->outbound_intr_mask);
183}
184
185/**
Sumant Patro1341c932006-01-25 12:02:40 -0800186 * megasas_read_fw_status_reg_xscale - returns the current FW status value
187 * @regs: MFI register set
188 */
189static u32
190megasas_read_fw_status_reg_xscale(struct megasas_register_set __iomem * regs)
191{
192 return readl(&(regs)->outbound_msg_0);
193}
194/**
195 * megasas_clear_interrupt_xscale - Check & clear interrupt
196 * @regs: MFI register set
197 */
198static int
199megasas_clear_intr_xscale(struct megasas_register_set __iomem * regs)
200{
201 u32 status;
202 /*
203 * Check if it is our interrupt
204 */
205 status = readl(&regs->outbound_intr_status);
206
207 if (!(status & MFI_OB_INTR_STATUS_MASK)) {
208 return 1;
209 }
210
211 /*
212 * Clear the interrupt by writing back the same value
213 */
214 writel(status, &regs->outbound_intr_status);
215
Yang, Bo06f579d2008-08-10 12:42:37 -0700216 /* Dummy readl to force pci flush */
217 readl(&regs->outbound_intr_status);
218
Sumant Patro1341c932006-01-25 12:02:40 -0800219 return 0;
220}
221
222/**
223 * megasas_fire_cmd_xscale - Sends command to the FW
224 * @frame_phys_addr : Physical address of cmd
225 * @frame_count : Number of frames for the command
226 * @regs : MFI register set
227 */
228static inline void
229megasas_fire_cmd_xscale(dma_addr_t frame_phys_addr,u32 frame_count, struct megasas_register_set __iomem *regs)
230{
231 writel((frame_phys_addr >> 3)|(frame_count),
232 &(regs)->inbound_queue_port);
233}
234
235static struct megasas_instance_template megasas_instance_template_xscale = {
236
237 .fire_cmd = megasas_fire_cmd_xscale,
238 .enable_intr = megasas_enable_intr_xscale,
Sumant Patrob274cab2006-10-03 12:52:12 -0700239 .disable_intr = megasas_disable_intr_xscale,
Sumant Patro1341c932006-01-25 12:02:40 -0800240 .clear_intr = megasas_clear_intr_xscale,
241 .read_fw_status_reg = megasas_read_fw_status_reg_xscale,
242};
243
244/**
245* This is the end of set of functions & definitions specific
246* to xscale (deviceid : 1064R, PERC5) controllers
247*/
248
249/**
Sumant Patrof9876f02006-02-03 15:34:35 -0800250* The following functions are defined for ppc (deviceid : 0x60)
251* controllers
252*/
253
254/**
255 * megasas_enable_intr_ppc - Enables interrupts
256 * @regs: MFI register set
257 */
258static inline void
259megasas_enable_intr_ppc(struct megasas_register_set __iomem * regs)
260{
261 writel(0xFFFFFFFF, &(regs)->outbound_doorbell_clear);
262
263 writel(~0x80000004, &(regs)->outbound_intr_mask);
264
265 /* Dummy readl to force pci flush */
266 readl(&regs->outbound_intr_mask);
267}
268
269/**
Sumant Patrob274cab2006-10-03 12:52:12 -0700270 * megasas_disable_intr_ppc - Disable interrupt
271 * @regs: MFI register set
272 */
273static inline void
274megasas_disable_intr_ppc(struct megasas_register_set __iomem * regs)
275{
276 u32 mask = 0xFFFFFFFF;
277 writel(mask, &regs->outbound_intr_mask);
278 /* Dummy readl to force pci flush */
279 readl(&regs->outbound_intr_mask);
280}
281
282/**
Sumant Patrof9876f02006-02-03 15:34:35 -0800283 * megasas_read_fw_status_reg_ppc - returns the current FW status value
284 * @regs: MFI register set
285 */
286static u32
287megasas_read_fw_status_reg_ppc(struct megasas_register_set __iomem * regs)
288{
289 return readl(&(regs)->outbound_scratch_pad);
290}
291
292/**
293 * megasas_clear_interrupt_ppc - Check & clear interrupt
294 * @regs: MFI register set
295 */
296static int
297megasas_clear_intr_ppc(struct megasas_register_set __iomem * regs)
298{
299 u32 status;
300 /*
301 * Check if it is our interrupt
302 */
303 status = readl(&regs->outbound_intr_status);
304
305 if (!(status & MFI_REPLY_1078_MESSAGE_INTERRUPT)) {
306 return 1;
307 }
308
309 /*
310 * Clear the interrupt by writing back the same value
311 */
312 writel(status, &regs->outbound_doorbell_clear);
313
Yang, Bo06f579d2008-08-10 12:42:37 -0700314 /* Dummy readl to force pci flush */
315 readl(&regs->outbound_doorbell_clear);
316
Sumant Patrof9876f02006-02-03 15:34:35 -0800317 return 0;
318}
319/**
320 * megasas_fire_cmd_ppc - Sends command to the FW
321 * @frame_phys_addr : Physical address of cmd
322 * @frame_count : Number of frames for the command
323 * @regs : MFI register set
324 */
325static inline void
326megasas_fire_cmd_ppc(dma_addr_t frame_phys_addr, u32 frame_count, struct megasas_register_set __iomem *regs)
327{
328 writel((frame_phys_addr | (frame_count<<1))|1,
329 &(regs)->inbound_queue_port);
330}
331
332static struct megasas_instance_template megasas_instance_template_ppc = {
333
334 .fire_cmd = megasas_fire_cmd_ppc,
335 .enable_intr = megasas_enable_intr_ppc,
Sumant Patrob274cab2006-10-03 12:52:12 -0700336 .disable_intr = megasas_disable_intr_ppc,
Sumant Patrof9876f02006-02-03 15:34:35 -0800337 .clear_intr = megasas_clear_intr_ppc,
338 .read_fw_status_reg = megasas_read_fw_status_reg_ppc,
339};
340
341/**
Yang, Bo87911122009-10-06 14:31:54 -0600342 * megasas_enable_intr_skinny - Enables interrupts
343 * @regs: MFI register set
344 */
345static inline void
346megasas_enable_intr_skinny(struct megasas_register_set __iomem *regs)
347{
348 writel(0xFFFFFFFF, &(regs)->outbound_intr_mask);
349
350 writel(~MFI_SKINNY_ENABLE_INTERRUPT_MASK, &(regs)->outbound_intr_mask);
351
352 /* Dummy readl to force pci flush */
353 readl(&regs->outbound_intr_mask);
354}
355
356/**
357 * megasas_disable_intr_skinny - Disables interrupt
358 * @regs: MFI register set
359 */
360static inline void
361megasas_disable_intr_skinny(struct megasas_register_set __iomem *regs)
362{
363 u32 mask = 0xFFFFFFFF;
364 writel(mask, &regs->outbound_intr_mask);
365 /* Dummy readl to force pci flush */
366 readl(&regs->outbound_intr_mask);
367}
368
369/**
370 * megasas_read_fw_status_reg_skinny - returns the current FW status value
371 * @regs: MFI register set
372 */
373static u32
374megasas_read_fw_status_reg_skinny(struct megasas_register_set __iomem *regs)
375{
376 return readl(&(regs)->outbound_scratch_pad);
377}
378
379/**
380 * megasas_clear_interrupt_skinny - Check & clear interrupt
381 * @regs: MFI register set
382 */
383static int
384megasas_clear_intr_skinny(struct megasas_register_set __iomem *regs)
385{
386 u32 status;
387 /*
388 * Check if it is our interrupt
389 */
390 status = readl(&regs->outbound_intr_status);
391
392 if (!(status & MFI_SKINNY_ENABLE_INTERRUPT_MASK)) {
393 return 1;
394 }
395
396 /*
397 * Clear the interrupt by writing back the same value
398 */
399 writel(status, &regs->outbound_intr_status);
400
401 /*
402 * dummy read to flush PCI
403 */
404 readl(&regs->outbound_intr_status);
405
406 return 0;
407}
408
409/**
410 * megasas_fire_cmd_skinny - Sends command to the FW
411 * @frame_phys_addr : Physical address of cmd
412 * @frame_count : Number of frames for the command
413 * @regs : MFI register set
414 */
415static inline void
416megasas_fire_cmd_skinny(dma_addr_t frame_phys_addr, u32 frame_count,
417 struct megasas_register_set __iomem *regs)
418{
419 writel(0, &(regs)->inbound_high_queue_port);
420 writel((frame_phys_addr | (frame_count<<1))|1,
421 &(regs)->inbound_low_queue_port);
422}
423
424static struct megasas_instance_template megasas_instance_template_skinny = {
425
426 .fire_cmd = megasas_fire_cmd_skinny,
427 .enable_intr = megasas_enable_intr_skinny,
428 .disable_intr = megasas_disable_intr_skinny,
429 .clear_intr = megasas_clear_intr_skinny,
430 .read_fw_status_reg = megasas_read_fw_status_reg_skinny,
431};
432
433
434/**
Yang, Bo6610a6b2008-08-10 12:42:38 -0700435* The following functions are defined for gen2 (deviceid : 0x78 0x79)
436* controllers
437*/
438
439/**
440 * megasas_enable_intr_gen2 - Enables interrupts
441 * @regs: MFI register set
442 */
443static inline void
444megasas_enable_intr_gen2(struct megasas_register_set __iomem *regs)
445{
446 writel(0xFFFFFFFF, &(regs)->outbound_doorbell_clear);
447
448 /* write ~0x00000005 (4 & 1) to the intr mask*/
449 writel(~MFI_GEN2_ENABLE_INTERRUPT_MASK, &(regs)->outbound_intr_mask);
450
451 /* Dummy readl to force pci flush */
452 readl(&regs->outbound_intr_mask);
453}
454
455/**
456 * megasas_disable_intr_gen2 - Disables interrupt
457 * @regs: MFI register set
458 */
459static inline void
460megasas_disable_intr_gen2(struct megasas_register_set __iomem *regs)
461{
462 u32 mask = 0xFFFFFFFF;
463 writel(mask, &regs->outbound_intr_mask);
464 /* Dummy readl to force pci flush */
465 readl(&regs->outbound_intr_mask);
466}
467
468/**
469 * megasas_read_fw_status_reg_gen2 - returns the current FW status value
470 * @regs: MFI register set
471 */
472static u32
473megasas_read_fw_status_reg_gen2(struct megasas_register_set __iomem *regs)
474{
475 return readl(&(regs)->outbound_scratch_pad);
476}
477
478/**
479 * megasas_clear_interrupt_gen2 - Check & clear interrupt
480 * @regs: MFI register set
481 */
482static int
483megasas_clear_intr_gen2(struct megasas_register_set __iomem *regs)
484{
485 u32 status;
486 /*
487 * Check if it is our interrupt
488 */
489 status = readl(&regs->outbound_intr_status);
490
491 if (!(status & MFI_GEN2_ENABLE_INTERRUPT_MASK))
492 return 1;
493
494 /*
495 * Clear the interrupt by writing back the same value
496 */
497 writel(status, &regs->outbound_doorbell_clear);
498
499 /* Dummy readl to force pci flush */
500 readl(&regs->outbound_intr_status);
501
502 return 0;
503}
504/**
505 * megasas_fire_cmd_gen2 - Sends command to the FW
506 * @frame_phys_addr : Physical address of cmd
507 * @frame_count : Number of frames for the command
508 * @regs : MFI register set
509 */
510static inline void
511megasas_fire_cmd_gen2(dma_addr_t frame_phys_addr, u32 frame_count,
512 struct megasas_register_set __iomem *regs)
513{
514 writel((frame_phys_addr | (frame_count<<1))|1,
515 &(regs)->inbound_queue_port);
516}
517
518static struct megasas_instance_template megasas_instance_template_gen2 = {
519
520 .fire_cmd = megasas_fire_cmd_gen2,
521 .enable_intr = megasas_enable_intr_gen2,
522 .disable_intr = megasas_disable_intr_gen2,
523 .clear_intr = megasas_clear_intr_gen2,
524 .read_fw_status_reg = megasas_read_fw_status_reg_gen2,
525};
526
527/**
Sumant Patrof9876f02006-02-03 15:34:35 -0800528* This is the end of set of functions & definitions
529* specific to ppc (deviceid : 0x60) controllers
530*/
531
532/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400533 * megasas_issue_polled - Issues a polling command
534 * @instance: Adapter soft state
535 * @cmd: Command packet to be issued
536 *
537 * For polling, MFI requires the cmd_status to be set to 0xFF before posting.
538 */
539static int
540megasas_issue_polled(struct megasas_instance *instance, struct megasas_cmd *cmd)
541{
542 int i;
543 u32 msecs = MFI_POLL_TIMEOUT_SECS * 1000;
544
545 struct megasas_header *frame_hdr = &cmd->frame->hdr;
546
547 frame_hdr->cmd_status = 0xFF;
548 frame_hdr->flags |= MFI_FRAME_DONT_POST_IN_REPLY_QUEUE;
549
550 /*
551 * Issue the frame using inbound queue port
552 */
Sumant Patro1341c932006-01-25 12:02:40 -0800553 instance->instancet->fire_cmd(cmd->frame_phys_addr ,0,instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400554
555 /*
556 * Wait for cmd_status to change
557 */
558 for (i = 0; (i < msecs) && (frame_hdr->cmd_status == 0xff); i++) {
559 rmb();
560 msleep(1);
561 }
562
563 if (frame_hdr->cmd_status == 0xff)
564 return -ETIME;
565
566 return 0;
567}
568
569/**
570 * megasas_issue_blocked_cmd - Synchronous wrapper around regular FW cmds
571 * @instance: Adapter soft state
572 * @cmd: Command to be issued
573 *
574 * This function waits on an event for the command to be returned from ISR.
Sumant Patro2a3681e2006-10-03 13:19:21 -0700575 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400576 * Used to issue ioctl commands.
577 */
578static int
579megasas_issue_blocked_cmd(struct megasas_instance *instance,
580 struct megasas_cmd *cmd)
581{
582 cmd->cmd_status = ENODATA;
583
Sumant Patro1341c932006-01-25 12:02:40 -0800584 instance->instancet->fire_cmd(cmd->frame_phys_addr ,0,instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400585
Sumant Patro2a3681e2006-10-03 13:19:21 -0700586 wait_event_timeout(instance->int_cmd_wait_q, (cmd->cmd_status != ENODATA),
587 MEGASAS_INTERNAL_CMD_WAIT_TIME*HZ);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400588
589 return 0;
590}
591
592/**
593 * megasas_issue_blocked_abort_cmd - Aborts previously issued cmd
594 * @instance: Adapter soft state
595 * @cmd_to_abort: Previously issued cmd to be aborted
596 *
597 * MFI firmware can abort previously issued AEN comamnd (automatic event
598 * notification). The megasas_issue_blocked_abort_cmd() issues such abort
Sumant Patro2a3681e2006-10-03 13:19:21 -0700599 * cmd and waits for return status.
600 * Max wait time is MEGASAS_INTERNAL_CMD_WAIT_TIME secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400601 */
602static int
603megasas_issue_blocked_abort_cmd(struct megasas_instance *instance,
604 struct megasas_cmd *cmd_to_abort)
605{
606 struct megasas_cmd *cmd;
607 struct megasas_abort_frame *abort_fr;
608
609 cmd = megasas_get_cmd(instance);
610
611 if (!cmd)
612 return -1;
613
614 abort_fr = &cmd->frame->abort;
615
616 /*
617 * Prepare and issue the abort frame
618 */
619 abort_fr->cmd = MFI_CMD_ABORT;
620 abort_fr->cmd_status = 0xFF;
621 abort_fr->flags = 0;
622 abort_fr->abort_context = cmd_to_abort->index;
623 abort_fr->abort_mfi_phys_addr_lo = cmd_to_abort->frame_phys_addr;
624 abort_fr->abort_mfi_phys_addr_hi = 0;
625
626 cmd->sync_cmd = 1;
627 cmd->cmd_status = 0xFF;
628
Sumant Patro1341c932006-01-25 12:02:40 -0800629 instance->instancet->fire_cmd(cmd->frame_phys_addr ,0,instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400630
631 /*
632 * Wait for this cmd to complete
633 */
Sumant Patro2a3681e2006-10-03 13:19:21 -0700634 wait_event_timeout(instance->abort_cmd_wait_q, (cmd->cmd_status != 0xFF),
635 MEGASAS_INTERNAL_CMD_WAIT_TIME*HZ);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400636
637 megasas_return_cmd(instance, cmd);
638 return 0;
639}
640
641/**
642 * megasas_make_sgl32 - Prepares 32-bit SGL
643 * @instance: Adapter soft state
644 * @scp: SCSI command from the mid-layer
645 * @mfi_sgl: SGL to be filled in
646 *
647 * If successful, this function returns the number of SG elements. Otherwise,
648 * it returnes -1.
649 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800650static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400651megasas_make_sgl32(struct megasas_instance *instance, struct scsi_cmnd *scp,
652 union megasas_sgl *mfi_sgl)
653{
654 int i;
655 int sge_count;
656 struct scatterlist *os_sgl;
657
FUJITA Tomonori155d98f2007-05-26 05:04:08 +0900658 sge_count = scsi_dma_map(scp);
659 BUG_ON(sge_count < 0);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400660
FUJITA Tomonori155d98f2007-05-26 05:04:08 +0900661 if (sge_count) {
662 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
663 mfi_sgl->sge32[i].length = sg_dma_len(os_sgl);
664 mfi_sgl->sge32[i].phys_addr = sg_dma_address(os_sgl);
665 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400666 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400667 return sge_count;
668}
669
670/**
671 * megasas_make_sgl64 - Prepares 64-bit SGL
672 * @instance: Adapter soft state
673 * @scp: SCSI command from the mid-layer
674 * @mfi_sgl: SGL to be filled in
675 *
676 * If successful, this function returns the number of SG elements. Otherwise,
677 * it returnes -1.
678 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800679static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400680megasas_make_sgl64(struct megasas_instance *instance, struct scsi_cmnd *scp,
681 union megasas_sgl *mfi_sgl)
682{
683 int i;
684 int sge_count;
685 struct scatterlist *os_sgl;
686
FUJITA Tomonori155d98f2007-05-26 05:04:08 +0900687 sge_count = scsi_dma_map(scp);
688 BUG_ON(sge_count < 0);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400689
FUJITA Tomonori155d98f2007-05-26 05:04:08 +0900690 if (sge_count) {
691 scsi_for_each_sg(scp, os_sgl, sge_count, i) {
692 mfi_sgl->sge64[i].length = sg_dma_len(os_sgl);
693 mfi_sgl->sge64[i].phys_addr = sg_dma_address(os_sgl);
694 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400695 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400696 return sge_count;
697}
698
Sumant Patrob1df99d2006-10-03 12:40:47 -0700699 /**
700 * megasas_get_frame_count - Computes the number of frames
bo yangd532dbe2008-03-17 03:36:43 -0400701 * @frame_type : type of frame- io or pthru frame
Sumant Patrob1df99d2006-10-03 12:40:47 -0700702 * @sge_count : number of sg elements
703 *
704 * Returns the number of frames required for numnber of sge's (sge_count)
705 */
706
bo yangd532dbe2008-03-17 03:36:43 -0400707static u32 megasas_get_frame_count(u8 sge_count, u8 frame_type)
Sumant Patrob1df99d2006-10-03 12:40:47 -0700708{
709 int num_cnt;
710 int sge_bytes;
711 u32 sge_sz;
712 u32 frame_count=0;
713
714 sge_sz = (IS_DMA64) ? sizeof(struct megasas_sge64) :
715 sizeof(struct megasas_sge32);
716
717 /*
bo yangd532dbe2008-03-17 03:36:43 -0400718 * Main frame can contain 2 SGEs for 64-bit SGLs and
719 * 3 SGEs for 32-bit SGLs for ldio &
720 * 1 SGEs for 64-bit SGLs and
721 * 2 SGEs for 32-bit SGLs for pthru frame
722 */
723 if (unlikely(frame_type == PTHRU_FRAME)) {
724 if (IS_DMA64)
725 num_cnt = sge_count - 1;
726 else
727 num_cnt = sge_count - 2;
728 } else {
729 if (IS_DMA64)
730 num_cnt = sge_count - 2;
731 else
732 num_cnt = sge_count - 3;
733 }
Sumant Patrob1df99d2006-10-03 12:40:47 -0700734
735 if(num_cnt>0){
736 sge_bytes = sge_sz * num_cnt;
737
738 frame_count = (sge_bytes / MEGAMFI_FRAME_SIZE) +
739 ((sge_bytes % MEGAMFI_FRAME_SIZE) ? 1 : 0) ;
740 }
741 /* Main frame */
742 frame_count +=1;
743
744 if (frame_count > 7)
745 frame_count = 8;
746 return frame_count;
747}
748
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400749/**
750 * megasas_build_dcdb - Prepares a direct cdb (DCDB) command
751 * @instance: Adapter soft state
752 * @scp: SCSI command
753 * @cmd: Command to be prepared in
754 *
755 * This function prepares CDB commands. These are typcially pass-through
756 * commands to the devices.
757 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800758static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400759megasas_build_dcdb(struct megasas_instance *instance, struct scsi_cmnd *scp,
760 struct megasas_cmd *cmd)
761{
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400762 u32 is_logical;
763 u32 device_id;
764 u16 flags = 0;
765 struct megasas_pthru_frame *pthru;
766
767 is_logical = MEGASAS_IS_LOGICAL(scp);
768 device_id = MEGASAS_DEV_INDEX(instance, scp);
769 pthru = (struct megasas_pthru_frame *)cmd->frame;
770
771 if (scp->sc_data_direction == PCI_DMA_TODEVICE)
772 flags = MFI_FRAME_DIR_WRITE;
773 else if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
774 flags = MFI_FRAME_DIR_READ;
775 else if (scp->sc_data_direction == PCI_DMA_NONE)
776 flags = MFI_FRAME_DIR_NONE;
777
778 /*
779 * Prepare the DCDB frame
780 */
781 pthru->cmd = (is_logical) ? MFI_CMD_LD_SCSI_IO : MFI_CMD_PD_SCSI_IO;
782 pthru->cmd_status = 0x0;
783 pthru->scsi_status = 0x0;
784 pthru->target_id = device_id;
785 pthru->lun = scp->device->lun;
786 pthru->cdb_len = scp->cmd_len;
787 pthru->timeout = 0;
788 pthru->flags = flags;
FUJITA Tomonori155d98f2007-05-26 05:04:08 +0900789 pthru->data_xfer_len = scsi_bufflen(scp);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400790
791 memcpy(pthru->cdb, scp->cmnd, scp->cmd_len);
792
793 /*
Yang, Bo8d568252009-10-06 14:12:21 -0600794 * If the command is for the tape device, set the
795 * pthru timeout to the os layer timeout value.
796 */
797 if (scp->device->type == TYPE_TAPE) {
798 if ((scp->request->timeout / HZ) > 0xFFFF)
799 pthru->timeout = 0xFFFF;
800 else
801 pthru->timeout = scp->request->timeout / HZ;
802 }
803
804 /*
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400805 * Construct SGL
806 */
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400807 if (IS_DMA64) {
808 pthru->flags |= MFI_FRAME_SGL64;
809 pthru->sge_count = megasas_make_sgl64(instance, scp,
810 &pthru->sgl);
811 } else
812 pthru->sge_count = megasas_make_sgl32(instance, scp,
813 &pthru->sgl);
814
815 /*
816 * Sense info specific
817 */
818 pthru->sense_len = SCSI_SENSE_BUFFERSIZE;
819 pthru->sense_buf_phys_addr_hi = 0;
820 pthru->sense_buf_phys_addr_lo = cmd->sense_phys_addr;
821
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400822 /*
823 * Compute the total number of frames this command consumes. FW uses
824 * this number to pull sufficient number of frames from host memory.
825 */
bo yangd532dbe2008-03-17 03:36:43 -0400826 cmd->frame_count = megasas_get_frame_count(pthru->sge_count,
827 PTHRU_FRAME);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400828
829 return cmd->frame_count;
830}
831
832/**
833 * megasas_build_ldio - Prepares IOs to logical devices
834 * @instance: Adapter soft state
835 * @scp: SCSI command
Anand Gadiyarfd589a82009-07-16 17:13:03 +0200836 * @cmd: Command to be prepared
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400837 *
838 * Frames (and accompanying SGLs) for regular SCSI IOs use this function.
839 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800840static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400841megasas_build_ldio(struct megasas_instance *instance, struct scsi_cmnd *scp,
842 struct megasas_cmd *cmd)
843{
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400844 u32 device_id;
845 u8 sc = scp->cmnd[0];
846 u16 flags = 0;
847 struct megasas_io_frame *ldio;
848
849 device_id = MEGASAS_DEV_INDEX(instance, scp);
850 ldio = (struct megasas_io_frame *)cmd->frame;
851
852 if (scp->sc_data_direction == PCI_DMA_TODEVICE)
853 flags = MFI_FRAME_DIR_WRITE;
854 else if (scp->sc_data_direction == PCI_DMA_FROMDEVICE)
855 flags = MFI_FRAME_DIR_READ;
856
857 /*
Sumant Patrob1df99d2006-10-03 12:40:47 -0700858 * Prepare the Logical IO frame: 2nd bit is zero for all read cmds
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400859 */
860 ldio->cmd = (sc & 0x02) ? MFI_CMD_LD_WRITE : MFI_CMD_LD_READ;
861 ldio->cmd_status = 0x0;
862 ldio->scsi_status = 0x0;
863 ldio->target_id = device_id;
864 ldio->timeout = 0;
865 ldio->reserved_0 = 0;
866 ldio->pad_0 = 0;
867 ldio->flags = flags;
868 ldio->start_lba_hi = 0;
869 ldio->access_byte = (scp->cmd_len != 6) ? scp->cmnd[1] : 0;
870
871 /*
872 * 6-byte READ(0x08) or WRITE(0x0A) cdb
873 */
874 if (scp->cmd_len == 6) {
875 ldio->lba_count = (u32) scp->cmnd[4];
876 ldio->start_lba_lo = ((u32) scp->cmnd[1] << 16) |
877 ((u32) scp->cmnd[2] << 8) | (u32) scp->cmnd[3];
878
879 ldio->start_lba_lo &= 0x1FFFFF;
880 }
881
882 /*
883 * 10-byte READ(0x28) or WRITE(0x2A) cdb
884 */
885 else if (scp->cmd_len == 10) {
886 ldio->lba_count = (u32) scp->cmnd[8] |
887 ((u32) scp->cmnd[7] << 8);
888 ldio->start_lba_lo = ((u32) scp->cmnd[2] << 24) |
889 ((u32) scp->cmnd[3] << 16) |
890 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
891 }
892
893 /*
894 * 12-byte READ(0xA8) or WRITE(0xAA) cdb
895 */
896 else if (scp->cmd_len == 12) {
897 ldio->lba_count = ((u32) scp->cmnd[6] << 24) |
898 ((u32) scp->cmnd[7] << 16) |
899 ((u32) scp->cmnd[8] << 8) | (u32) scp->cmnd[9];
900
901 ldio->start_lba_lo = ((u32) scp->cmnd[2] << 24) |
902 ((u32) scp->cmnd[3] << 16) |
903 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
904 }
905
906 /*
907 * 16-byte READ(0x88) or WRITE(0x8A) cdb
908 */
909 else if (scp->cmd_len == 16) {
910 ldio->lba_count = ((u32) scp->cmnd[10] << 24) |
911 ((u32) scp->cmnd[11] << 16) |
912 ((u32) scp->cmnd[12] << 8) | (u32) scp->cmnd[13];
913
914 ldio->start_lba_lo = ((u32) scp->cmnd[6] << 24) |
915 ((u32) scp->cmnd[7] << 16) |
916 ((u32) scp->cmnd[8] << 8) | (u32) scp->cmnd[9];
917
918 ldio->start_lba_hi = ((u32) scp->cmnd[2] << 24) |
919 ((u32) scp->cmnd[3] << 16) |
920 ((u32) scp->cmnd[4] << 8) | (u32) scp->cmnd[5];
921
922 }
923
924 /*
925 * Construct SGL
926 */
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400927 if (IS_DMA64) {
928 ldio->flags |= MFI_FRAME_SGL64;
929 ldio->sge_count = megasas_make_sgl64(instance, scp, &ldio->sgl);
930 } else
931 ldio->sge_count = megasas_make_sgl32(instance, scp, &ldio->sgl);
932
933 /*
934 * Sense info specific
935 */
936 ldio->sense_len = SCSI_SENSE_BUFFERSIZE;
937 ldio->sense_buf_phys_addr_hi = 0;
938 ldio->sense_buf_phys_addr_lo = cmd->sense_phys_addr;
939
Sumant Patrob1df99d2006-10-03 12:40:47 -0700940 /*
941 * Compute the total number of frames this command consumes. FW uses
942 * this number to pull sufficient number of frames from host memory.
943 */
bo yangd532dbe2008-03-17 03:36:43 -0400944 cmd->frame_count = megasas_get_frame_count(ldio->sge_count, IO_FRAME);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400945
946 return cmd->frame_count;
947}
948
949/**
Sumant Patrocb59aa62006-01-25 11:53:25 -0800950 * megasas_is_ldio - Checks if the cmd is for logical drive
951 * @scmd: SCSI command
952 *
953 * Called by megasas_queue_command to find out if the command to be queued
954 * is a logical drive command
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400955 */
Sumant Patrocb59aa62006-01-25 11:53:25 -0800956static inline int megasas_is_ldio(struct scsi_cmnd *cmd)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400957{
Sumant Patrocb59aa62006-01-25 11:53:25 -0800958 if (!MEGASAS_IS_LOGICAL(cmd))
959 return 0;
960 switch (cmd->cmnd[0]) {
961 case READ_10:
962 case WRITE_10:
963 case READ_12:
964 case WRITE_12:
965 case READ_6:
966 case WRITE_6:
967 case READ_16:
968 case WRITE_16:
969 return 1;
970 default:
971 return 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400972 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -0400973}
974
Sumant Patro658dced2006-10-03 13:09:14 -0700975 /**
976 * megasas_dump_pending_frames - Dumps the frame address of all pending cmds
977 * in FW
978 * @instance: Adapter soft state
979 */
980static inline void
981megasas_dump_pending_frames(struct megasas_instance *instance)
982{
983 struct megasas_cmd *cmd;
984 int i,n;
985 union megasas_sgl *mfi_sgl;
986 struct megasas_io_frame *ldio;
987 struct megasas_pthru_frame *pthru;
988 u32 sgcount;
989 u32 max_cmd = instance->max_fw_cmds;
990
991 printk(KERN_ERR "\nmegasas[%d]: Dumping Frame Phys Address of all pending cmds in FW\n",instance->host->host_no);
992 printk(KERN_ERR "megasas[%d]: Total OS Pending cmds : %d\n",instance->host->host_no,atomic_read(&instance->fw_outstanding));
993 if (IS_DMA64)
994 printk(KERN_ERR "\nmegasas[%d]: 64 bit SGLs were sent to FW\n",instance->host->host_no);
995 else
996 printk(KERN_ERR "\nmegasas[%d]: 32 bit SGLs were sent to FW\n",instance->host->host_no);
997
998 printk(KERN_ERR "megasas[%d]: Pending OS cmds in FW : \n",instance->host->host_no);
999 for (i = 0; i < max_cmd; i++) {
1000 cmd = instance->cmd_list[i];
1001 if(!cmd->scmd)
1002 continue;
1003 printk(KERN_ERR "megasas[%d]: Frame addr :0x%08lx : ",instance->host->host_no,(unsigned long)cmd->frame_phys_addr);
1004 if (megasas_is_ldio(cmd->scmd)){
1005 ldio = (struct megasas_io_frame *)cmd->frame;
1006 mfi_sgl = &ldio->sgl;
1007 sgcount = ldio->sge_count;
1008 printk(KERN_ERR "megasas[%d]: frame count : 0x%x, Cmd : 0x%x, Tgt id : 0x%x, lba lo : 0x%x, lba_hi : 0x%x, sense_buf addr : 0x%x,sge count : 0x%x\n",instance->host->host_no, cmd->frame_count,ldio->cmd,ldio->target_id, ldio->start_lba_lo,ldio->start_lba_hi,ldio->sense_buf_phys_addr_lo,sgcount);
1009 }
1010 else {
1011 pthru = (struct megasas_pthru_frame *) cmd->frame;
1012 mfi_sgl = &pthru->sgl;
1013 sgcount = pthru->sge_count;
1014 printk(KERN_ERR "megasas[%d]: frame count : 0x%x, Cmd : 0x%x, Tgt id : 0x%x, lun : 0x%x, cdb_len : 0x%x, data xfer len : 0x%x, sense_buf addr : 0x%x,sge count : 0x%x\n",instance->host->host_no,cmd->frame_count,pthru->cmd,pthru->target_id,pthru->lun,pthru->cdb_len , pthru->data_xfer_len,pthru->sense_buf_phys_addr_lo,sgcount);
1015 }
1016 if(megasas_dbg_lvl & MEGASAS_DBG_LVL){
1017 for (n = 0; n < sgcount; n++){
1018 if (IS_DMA64)
1019 printk(KERN_ERR "megasas: sgl len : 0x%x, sgl addr : 0x%08lx ",mfi_sgl->sge64[n].length , (unsigned long)mfi_sgl->sge64[n].phys_addr) ;
1020 else
1021 printk(KERN_ERR "megasas: sgl len : 0x%x, sgl addr : 0x%x ",mfi_sgl->sge32[n].length , mfi_sgl->sge32[n].phys_addr) ;
1022 }
1023 }
1024 printk(KERN_ERR "\n");
1025 } /*for max_cmd*/
1026 printk(KERN_ERR "\nmegasas[%d]: Pending Internal cmds in FW : \n",instance->host->host_no);
1027 for (i = 0; i < max_cmd; i++) {
1028
1029 cmd = instance->cmd_list[i];
1030
1031 if(cmd->sync_cmd == 1){
1032 printk(KERN_ERR "0x%08lx : ", (unsigned long)cmd->frame_phys_addr);
1033 }
1034 }
1035 printk(KERN_ERR "megasas[%d]: Dumping Done.\n\n",instance->host->host_no);
1036}
1037
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001038/**
1039 * megasas_queue_command - Queue entry point
1040 * @scmd: SCSI command to be queued
1041 * @done: Callback entry point
1042 */
1043static int
1044megasas_queue_command(struct scsi_cmnd *scmd, void (*done) (struct scsi_cmnd *))
1045{
1046 u32 frame_count;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001047 struct megasas_cmd *cmd;
1048 struct megasas_instance *instance;
1049
1050 instance = (struct megasas_instance *)
1051 scmd->device->host->hostdata;
Sumant Patroaf37acf2007-02-14 12:34:46 -08001052
1053 /* Don't process if we have already declared adapter dead */
1054 if (instance->hw_crit_error)
1055 return SCSI_MLQUEUE_HOST_BUSY;
1056
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001057 scmd->scsi_done = done;
1058 scmd->result = 0;
1059
Sumant Patrocb59aa62006-01-25 11:53:25 -08001060 if (MEGASAS_IS_LOGICAL(scmd) &&
1061 (scmd->device->id >= MEGASAS_MAX_LD || scmd->device->lun)) {
1062 scmd->result = DID_BAD_TARGET << 16;
1063 goto out_done;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001064 }
1065
Sumant Patro02b01e02007-02-14 13:00:55 -08001066 switch (scmd->cmnd[0]) {
1067 case SYNCHRONIZE_CACHE:
1068 /*
1069 * FW takes care of flush cache on its own
1070 * No need to send it down
1071 */
1072 scmd->result = DID_OK << 16;
1073 goto out_done;
1074 default:
1075 break;
1076 }
1077
Sumant Patrocb59aa62006-01-25 11:53:25 -08001078 cmd = megasas_get_cmd(instance);
1079 if (!cmd)
1080 return SCSI_MLQUEUE_HOST_BUSY;
1081
1082 /*
1083 * Logical drive command
1084 */
1085 if (megasas_is_ldio(scmd))
1086 frame_count = megasas_build_ldio(instance, scmd, cmd);
1087 else
1088 frame_count = megasas_build_dcdb(instance, scmd, cmd);
1089
1090 if (!frame_count)
1091 goto out_return_cmd;
1092
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001093 cmd->scmd = scmd;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001094 scmd->SCp.ptr = (char *)cmd;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001095
1096 /*
1097 * Issue the command to the FW
1098 */
Sumant Patroe4a082c2006-05-30 12:03:37 -07001099 atomic_inc(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001100
Sumant Patro1341c932006-01-25 12:02:40 -08001101 instance->instancet->fire_cmd(cmd->frame_phys_addr ,cmd->frame_count-1,instance->reg_set);
bo yangad84db22007-11-09 04:40:16 -05001102 /*
1103 * Check if we have pend cmds to be completed
1104 */
1105 if (poll_mode_io && atomic_read(&instance->fw_outstanding))
1106 tasklet_schedule(&instance->isr_tasklet);
1107
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001108
1109 return 0;
Sumant Patrocb59aa62006-01-25 11:53:25 -08001110
1111 out_return_cmd:
1112 megasas_return_cmd(instance, cmd);
1113 out_done:
1114 done(scmd);
1115 return 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001116}
1117
Yang, Bo044833b2009-10-06 14:33:06 -06001118static struct megasas_instance *megasas_lookup_instance(u16 host_no)
1119{
1120 int i;
1121
1122 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
1123
1124 if ((megasas_mgmt_info.instance[i]) &&
1125 (megasas_mgmt_info.instance[i]->host->host_no == host_no))
1126 return megasas_mgmt_info.instance[i];
1127 }
1128
1129 return NULL;
1130}
1131
Christoph Hellwig147aab62006-02-17 12:13:48 +01001132static int megasas_slave_configure(struct scsi_device *sdev)
1133{
Yang, Bo044833b2009-10-06 14:33:06 -06001134 u16 pd_index = 0;
1135 struct megasas_instance *instance ;
1136
1137 instance = megasas_lookup_instance(sdev->host->host_no);
Christoph Hellwige5b3a652006-03-10 17:08:57 +01001138
1139 /*
Yang, Bo044833b2009-10-06 14:33:06 -06001140 * Don't export physical disk devices to the disk driver.
1141 *
1142 * FIXME: Currently we don't export them to the midlayer at all.
1143 * That will be fixed once LSI engineers have audited the
1144 * firmware for possible issues.
1145 */
1146 if (sdev->channel < MEGASAS_MAX_PD_CHANNELS &&
1147 sdev->type == TYPE_DISK) {
1148 pd_index = (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) +
1149 sdev->id;
1150 if (instance->pd_list[pd_index].driveState ==
1151 MR_PD_STATE_SYSTEM) {
1152 blk_queue_rq_timeout(sdev->request_queue,
1153 MEGASAS_DEFAULT_CMD_TIMEOUT * HZ);
1154 return 0;
1155 }
1156 return -ENXIO;
1157 }
1158
1159 /*
1160 * The RAID firmware may require extended timeouts.
1161 */
1162 blk_queue_rq_timeout(sdev->request_queue,
1163 MEGASAS_DEFAULT_CMD_TIMEOUT * HZ);
1164 return 0;
1165}
1166
1167static int megasas_slave_alloc(struct scsi_device *sdev)
1168{
1169 u16 pd_index = 0;
1170 struct megasas_instance *instance ;
1171 instance = megasas_lookup_instance(sdev->host->host_no);
1172 if ((sdev->channel < MEGASAS_MAX_PD_CHANNELS) &&
1173 (sdev->type == TYPE_DISK)) {
1174 /*
1175 * Open the OS scan to the SYSTEM PD
1176 */
1177 pd_index =
1178 (sdev->channel * MEGASAS_MAX_DEV_PER_CHANNEL) +
1179 sdev->id;
1180 if ((instance->pd_list[pd_index].driveState ==
1181 MR_PD_STATE_SYSTEM) &&
1182 (instance->pd_list[pd_index].driveType ==
1183 TYPE_DISK)) {
1184 return 0;
1185 }
1186 return -ENXIO;
1187 }
Christoph Hellwig147aab62006-02-17 12:13:48 +01001188 return 0;
1189}
1190
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001191/**
bo yang7343eb62007-11-09 04:35:44 -05001192 * megasas_complete_cmd_dpc - Returns FW's controller structure
1193 * @instance_addr: Address of adapter soft state
1194 *
1195 * Tasklet to complete cmds
1196 */
1197static void megasas_complete_cmd_dpc(unsigned long instance_addr)
1198{
1199 u32 producer;
1200 u32 consumer;
1201 u32 context;
1202 struct megasas_cmd *cmd;
1203 struct megasas_instance *instance =
1204 (struct megasas_instance *)instance_addr;
1205 unsigned long flags;
1206
1207 /* If we have already declared adapter dead, donot complete cmds */
1208 if (instance->hw_crit_error)
1209 return;
1210
1211 spin_lock_irqsave(&instance->completion_lock, flags);
1212
1213 producer = *instance->producer;
1214 consumer = *instance->consumer;
1215
1216 while (consumer != producer) {
1217 context = instance->reply_queue[consumer];
1218
1219 cmd = instance->cmd_list[context];
1220
1221 megasas_complete_cmd(instance, cmd, DID_OK);
1222
1223 consumer++;
1224 if (consumer == (instance->max_fw_cmds + 1)) {
1225 consumer = 0;
1226 }
1227 }
1228
1229 *instance->consumer = producer;
1230
1231 spin_unlock_irqrestore(&instance->completion_lock, flags);
1232
1233 /*
1234 * Check if we can restore can_queue
1235 */
1236 if (instance->flag & MEGASAS_FW_BUSY
1237 && time_after(jiffies, instance->last_time + 5 * HZ)
1238 && atomic_read(&instance->fw_outstanding) < 17) {
1239
1240 spin_lock_irqsave(instance->host->host_lock, flags);
1241 instance->flag &= ~MEGASAS_FW_BUSY;
Yang, Bo7bebf5c2009-10-06 14:40:58 -06001242 if ((instance->pdev->device ==
1243 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1244 (instance->pdev->device ==
1245 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
1246 instance->host->can_queue =
1247 instance->max_fw_cmds - MEGASAS_SKINNY_INT_CMDS;
1248 } else
1249 instance->host->can_queue =
bo yang7343eb62007-11-09 04:35:44 -05001250 instance->max_fw_cmds - MEGASAS_INT_CMDS;
1251
1252 spin_unlock_irqrestore(instance->host->host_lock, flags);
1253 }
1254}
1255
1256/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001257 * megasas_wait_for_outstanding - Wait for all outstanding cmds
1258 * @instance: Adapter soft state
1259 *
1260 * This function waits for upto MEGASAS_RESET_WAIT_TIME seconds for FW to
1261 * complete all its outstanding commands. Returns error if one or more IOs
1262 * are pending after this time period. It also marks the controller dead.
1263 */
1264static int megasas_wait_for_outstanding(struct megasas_instance *instance)
1265{
1266 int i;
1267 u32 wait_time = MEGASAS_RESET_WAIT_TIME;
1268
1269 for (i = 0; i < wait_time; i++) {
1270
Sumant Patroe4a082c2006-05-30 12:03:37 -07001271 int outstanding = atomic_read(&instance->fw_outstanding);
1272
1273 if (!outstanding)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001274 break;
1275
1276 if (!(i % MEGASAS_RESET_NOTICE_INTERVAL)) {
1277 printk(KERN_NOTICE "megasas: [%2d]waiting for %d "
Sumant Patroe4a082c2006-05-30 12:03:37 -07001278 "commands to complete\n",i,outstanding);
bo yang7343eb62007-11-09 04:35:44 -05001279 /*
1280 * Call cmd completion routine. Cmd to be
1281 * be completed directly without depending on isr.
1282 */
1283 megasas_complete_cmd_dpc((unsigned long)instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001284 }
1285
1286 msleep(1000);
1287 }
1288
Sumant Patroe4a082c2006-05-30 12:03:37 -07001289 if (atomic_read(&instance->fw_outstanding)) {
Sumant Patroe3bbff92006-10-03 12:28:49 -07001290 /*
1291 * Send signal to FW to stop processing any pending cmds.
1292 * The controller will be taken offline by the OS now.
1293 */
1294 writel(MFI_STOP_ADP,
1295 &instance->reg_set->inbound_doorbell);
Sumant Patro658dced2006-10-03 13:09:14 -07001296 megasas_dump_pending_frames(instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001297 instance->hw_crit_error = 1;
1298 return FAILED;
1299 }
1300
1301 return SUCCESS;
1302}
1303
1304/**
1305 * megasas_generic_reset - Generic reset routine
1306 * @scmd: Mid-layer SCSI command
1307 *
1308 * This routine implements a generic reset handler for device, bus and host
1309 * reset requests. Device, bus and host specific reset handlers can use this
1310 * function after they do their specific tasks.
1311 */
1312static int megasas_generic_reset(struct scsi_cmnd *scmd)
1313{
1314 int ret_val;
1315 struct megasas_instance *instance;
1316
1317 instance = (struct megasas_instance *)scmd->device->host->hostdata;
1318
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001319 scmd_printk(KERN_NOTICE, scmd, "megasas: RESET -%ld cmd=%x retries=%x\n",
1320 scmd->serial_number, scmd->cmnd[0], scmd->retries);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001321
1322 if (instance->hw_crit_error) {
1323 printk(KERN_ERR "megasas: cannot recover from previous reset "
1324 "failures\n");
1325 return FAILED;
1326 }
1327
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001328 ret_val = megasas_wait_for_outstanding(instance);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001329 if (ret_val == SUCCESS)
1330 printk(KERN_NOTICE "megasas: reset successful \n");
1331 else
1332 printk(KERN_ERR "megasas: failed to do reset\n");
1333
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001334 return ret_val;
1335}
1336
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001337/**
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001338 * megasas_reset_timer - quiesce the adapter if required
1339 * @scmd: scsi cmnd
1340 *
1341 * Sets the FW busy flag and reduces the host->can_queue if the
1342 * cmd has not been completed within the timeout period.
1343 */
1344static enum
Jens Axboe242f9dc2008-09-14 05:55:09 -07001345blk_eh_timer_return megasas_reset_timer(struct scsi_cmnd *scmd)
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001346{
1347 struct megasas_cmd *cmd = (struct megasas_cmd *)scmd->SCp.ptr;
1348 struct megasas_instance *instance;
1349 unsigned long flags;
1350
1351 if (time_after(jiffies, scmd->jiffies_at_alloc +
1352 (MEGASAS_DEFAULT_CMD_TIMEOUT * 2) * HZ)) {
Jens Axboe242f9dc2008-09-14 05:55:09 -07001353 return BLK_EH_NOT_HANDLED;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001354 }
1355
1356 instance = cmd->instance;
1357 if (!(instance->flag & MEGASAS_FW_BUSY)) {
1358 /* FW is busy, throttle IO */
1359 spin_lock_irqsave(instance->host->host_lock, flags);
1360
1361 instance->host->can_queue = 16;
1362 instance->last_time = jiffies;
1363 instance->flag |= MEGASAS_FW_BUSY;
1364
1365 spin_unlock_irqrestore(instance->host->host_lock, flags);
1366 }
Jens Axboe242f9dc2008-09-14 05:55:09 -07001367 return BLK_EH_RESET_TIMER;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001368}
1369
1370/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001371 * megasas_reset_device - Device reset handler entry point
1372 */
1373static int megasas_reset_device(struct scsi_cmnd *scmd)
1374{
1375 int ret;
1376
1377 /*
1378 * First wait for all commands to complete
1379 */
1380 ret = megasas_generic_reset(scmd);
1381
1382 return ret;
1383}
1384
1385/**
1386 * megasas_reset_bus_host - Bus & host reset handler entry point
1387 */
1388static int megasas_reset_bus_host(struct scsi_cmnd *scmd)
1389{
1390 int ret;
1391
1392 /*
Uwe Zeisberger80682fa2006-03-22 00:21:33 +01001393 * First wait for all commands to complete
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001394 */
1395 ret = megasas_generic_reset(scmd);
1396
1397 return ret;
1398}
1399
1400/**
Sumant Patrocf62a0a2007-02-14 12:41:55 -08001401 * megasas_bios_param - Returns disk geometry for a disk
1402 * @sdev: device handle
1403 * @bdev: block device
1404 * @capacity: drive capacity
1405 * @geom: geometry parameters
1406 */
1407static int
1408megasas_bios_param(struct scsi_device *sdev, struct block_device *bdev,
1409 sector_t capacity, int geom[])
1410{
1411 int heads;
1412 int sectors;
1413 sector_t cylinders;
1414 unsigned long tmp;
1415 /* Default heads (64) & sectors (32) */
1416 heads = 64;
1417 sectors = 32;
1418
1419 tmp = heads * sectors;
1420 cylinders = capacity;
1421
1422 sector_div(cylinders, tmp);
1423
1424 /*
1425 * Handle extended translation size for logical drives > 1Gb
1426 */
1427
1428 if (capacity >= 0x200000) {
1429 heads = 255;
1430 sectors = 63;
1431 tmp = heads*sectors;
1432 cylinders = capacity;
1433 sector_div(cylinders, tmp);
1434 }
1435
1436 geom[0] = heads;
1437 geom[1] = sectors;
1438 geom[2] = cylinders;
1439
1440 return 0;
1441}
1442
1443/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001444 * megasas_service_aen - Processes an event notification
1445 * @instance: Adapter soft state
1446 * @cmd: AEN command completed by the ISR
1447 *
1448 * For AEN, driver sends a command down to FW that is held by the FW till an
1449 * event occurs. When an event of interest occurs, FW completes the command
1450 * that it was previously holding.
1451 *
1452 * This routines sends SIGIO signal to processes that have registered with the
1453 * driver for AEN.
1454 */
1455static void
1456megasas_service_aen(struct megasas_instance *instance, struct megasas_cmd *cmd)
1457{
Yang, Boc3518832009-10-06 14:18:02 -06001458 unsigned long flags;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001459 /*
1460 * Don't signal app if it is just an aborted previously registered aen
1461 */
Yang, Boc3518832009-10-06 14:18:02 -06001462 if ((!cmd->abort_aen) && (instance->unload == 0)) {
1463 spin_lock_irqsave(&poll_aen_lock, flags);
1464 megasas_poll_wait_aen = 1;
1465 spin_unlock_irqrestore(&poll_aen_lock, flags);
1466 wake_up(&megasas_poll_wait);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001467 kill_fasync(&megasas_async_queue, SIGIO, POLL_IN);
Yang, Boc3518832009-10-06 14:18:02 -06001468 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001469 else
1470 cmd->abort_aen = 0;
1471
1472 instance->aen_cmd = NULL;
1473 megasas_return_cmd(instance, cmd);
1474}
1475
1476/*
1477 * Scsi host template for megaraid_sas driver
1478 */
1479static struct scsi_host_template megasas_template = {
1480
1481 .module = THIS_MODULE,
bo yangf28cd7c2007-11-09 04:44:56 -05001482 .name = "LSI SAS based MegaRAID driver",
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001483 .proc_name = "megaraid_sas",
Christoph Hellwig147aab62006-02-17 12:13:48 +01001484 .slave_configure = megasas_slave_configure,
Yang, Bo044833b2009-10-06 14:33:06 -06001485 .slave_alloc = megasas_slave_alloc,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001486 .queuecommand = megasas_queue_command,
1487 .eh_device_reset_handler = megasas_reset_device,
1488 .eh_bus_reset_handler = megasas_reset_bus_host,
1489 .eh_host_reset_handler = megasas_reset_bus_host,
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001490 .eh_timed_out = megasas_reset_timer,
Sumant Patrocf62a0a2007-02-14 12:41:55 -08001491 .bios_param = megasas_bios_param,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001492 .use_clustering = ENABLE_CLUSTERING,
1493};
1494
1495/**
1496 * megasas_complete_int_cmd - Completes an internal command
1497 * @instance: Adapter soft state
1498 * @cmd: Command to be completed
1499 *
1500 * The megasas_issue_blocked_cmd() function waits for a command to complete
1501 * after it issues a command. This function wakes up that waiting routine by
1502 * calling wake_up() on the wait queue.
1503 */
1504static void
1505megasas_complete_int_cmd(struct megasas_instance *instance,
1506 struct megasas_cmd *cmd)
1507{
1508 cmd->cmd_status = cmd->frame->io.cmd_status;
1509
1510 if (cmd->cmd_status == ENODATA) {
1511 cmd->cmd_status = 0;
1512 }
1513 wake_up(&instance->int_cmd_wait_q);
1514}
1515
1516/**
1517 * megasas_complete_abort - Completes aborting a command
1518 * @instance: Adapter soft state
1519 * @cmd: Cmd that was issued to abort another cmd
1520 *
1521 * The megasas_issue_blocked_abort_cmd() function waits on abort_cmd_wait_q
1522 * after it issues an abort on a previously issued command. This function
1523 * wakes up all functions waiting on the same wait queue.
1524 */
1525static void
1526megasas_complete_abort(struct megasas_instance *instance,
1527 struct megasas_cmd *cmd)
1528{
1529 if (cmd->sync_cmd) {
1530 cmd->sync_cmd = 0;
1531 cmd->cmd_status = 0;
1532 wake_up(&instance->abort_cmd_wait_q);
1533 }
1534
1535 return;
1536}
1537
1538/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001539 * megasas_complete_cmd - Completes a command
1540 * @instance: Adapter soft state
1541 * @cmd: Command to be completed
1542 * @alt_status: If non-zero, use this value as status to
1543 * SCSI mid-layer instead of the value returned
1544 * by the FW. This should be used if caller wants
1545 * an alternate status (as in the case of aborted
1546 * commands)
1547 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001548static void
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001549megasas_complete_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd,
1550 u8 alt_status)
1551{
1552 int exception = 0;
1553 struct megasas_header *hdr = &cmd->frame->hdr;
Yang, Boc3518832009-10-06 14:18:02 -06001554 unsigned long flags;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001555
Sumant Patro05e9ebb2007-05-17 05:47:51 -07001556 if (cmd->scmd)
1557 cmd->scmd->SCp.ptr = NULL;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001558
1559 switch (hdr->cmd) {
1560
1561 case MFI_CMD_PD_SCSI_IO:
1562 case MFI_CMD_LD_SCSI_IO:
1563
1564 /*
1565 * MFI_CMD_PD_SCSI_IO and MFI_CMD_LD_SCSI_IO could have been
1566 * issued either through an IO path or an IOCTL path. If it
1567 * was via IOCTL, we will send it to internal completion.
1568 */
1569 if (cmd->sync_cmd) {
1570 cmd->sync_cmd = 0;
1571 megasas_complete_int_cmd(instance, cmd);
1572 break;
1573 }
1574
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001575 case MFI_CMD_LD_READ:
1576 case MFI_CMD_LD_WRITE:
1577
1578 if (alt_status) {
1579 cmd->scmd->result = alt_status << 16;
1580 exception = 1;
1581 }
1582
1583 if (exception) {
1584
Sumant Patroe4a082c2006-05-30 12:03:37 -07001585 atomic_dec(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001586
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09001587 scsi_dma_unmap(cmd->scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001588 cmd->scmd->scsi_done(cmd->scmd);
1589 megasas_return_cmd(instance, cmd);
1590
1591 break;
1592 }
1593
1594 switch (hdr->cmd_status) {
1595
1596 case MFI_STAT_OK:
1597 cmd->scmd->result = DID_OK << 16;
1598 break;
1599
1600 case MFI_STAT_SCSI_IO_FAILED:
1601 case MFI_STAT_LD_INIT_IN_PROGRESS:
1602 cmd->scmd->result =
1603 (DID_ERROR << 16) | hdr->scsi_status;
1604 break;
1605
1606 case MFI_STAT_SCSI_DONE_WITH_ERROR:
1607
1608 cmd->scmd->result = (DID_OK << 16) | hdr->scsi_status;
1609
1610 if (hdr->scsi_status == SAM_STAT_CHECK_CONDITION) {
1611 memset(cmd->scmd->sense_buffer, 0,
1612 SCSI_SENSE_BUFFERSIZE);
1613 memcpy(cmd->scmd->sense_buffer, cmd->sense,
1614 hdr->sense_len);
1615
1616 cmd->scmd->result |= DRIVER_SENSE << 24;
1617 }
1618
1619 break;
1620
1621 case MFI_STAT_LD_OFFLINE:
1622 case MFI_STAT_DEVICE_NOT_FOUND:
1623 cmd->scmd->result = DID_BAD_TARGET << 16;
1624 break;
1625
1626 default:
1627 printk(KERN_DEBUG "megasas: MFI FW status %#x\n",
1628 hdr->cmd_status);
1629 cmd->scmd->result = DID_ERROR << 16;
1630 break;
1631 }
1632
Sumant Patroe4a082c2006-05-30 12:03:37 -07001633 atomic_dec(&instance->fw_outstanding);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001634
FUJITA Tomonori155d98f2007-05-26 05:04:08 +09001635 scsi_dma_unmap(cmd->scmd);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001636 cmd->scmd->scsi_done(cmd->scmd);
1637 megasas_return_cmd(instance, cmd);
1638
1639 break;
1640
1641 case MFI_CMD_SMP:
1642 case MFI_CMD_STP:
1643 case MFI_CMD_DCMD:
Yang, Boc3518832009-10-06 14:18:02 -06001644 if (cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_GET_INFO ||
1645 cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_GET) {
1646 spin_lock_irqsave(&poll_aen_lock, flags);
1647 megasas_poll_wait_aen = 0;
1648 spin_unlock_irqrestore(&poll_aen_lock, flags);
1649 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001650
1651 /*
1652 * See if got an event notification
1653 */
1654 if (cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_WAIT)
1655 megasas_service_aen(instance, cmd);
1656 else
1657 megasas_complete_int_cmd(instance, cmd);
1658
1659 break;
1660
1661 case MFI_CMD_ABORT:
1662 /*
1663 * Cmd issued to abort another cmd returned
1664 */
1665 megasas_complete_abort(instance, cmd);
1666 break;
1667
1668 default:
1669 printk("megasas: Unknown command completed! [0x%X]\n",
1670 hdr->cmd);
1671 break;
1672 }
1673}
1674
1675/**
1676 * megasas_deplete_reply_queue - Processes all completed commands
1677 * @instance: Adapter soft state
1678 * @alt_status: Alternate status to be returned to
1679 * SCSI mid-layer instead of the status
1680 * returned by the FW
1681 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001682static int
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001683megasas_deplete_reply_queue(struct megasas_instance *instance, u8 alt_status)
1684{
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001685 /*
1686 * Check if it is our interrupt
Sumant Patro1341c932006-01-25 12:02:40 -08001687 * Clear the interrupt
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001688 */
Sumant Patro1341c932006-01-25 12:02:40 -08001689 if(instance->instancet->clear_intr(instance->reg_set))
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001690 return IRQ_NONE;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001691
Sumant Patroaf37acf2007-02-14 12:34:46 -08001692 if (instance->hw_crit_error)
1693 goto out_done;
Sumant Patro5d018ad2006-10-03 13:13:18 -07001694 /*
1695 * Schedule the tasklet for cmd completion
1696 */
1697 tasklet_schedule(&instance->isr_tasklet);
Sumant Patroaf37acf2007-02-14 12:34:46 -08001698out_done:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001699 return IRQ_HANDLED;
1700}
1701
1702/**
1703 * megasas_isr - isr entry point
1704 */
David Howells7d12e782006-10-05 14:55:46 +01001705static irqreturn_t megasas_isr(int irq, void *devp)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001706{
1707 return megasas_deplete_reply_queue((struct megasas_instance *)devp,
1708 DID_OK);
1709}
1710
1711/**
1712 * megasas_transition_to_ready - Move the FW to READY state
Sumant Patro1341c932006-01-25 12:02:40 -08001713 * @instance: Adapter soft state
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001714 *
1715 * During the initialization, FW passes can potentially be in any one of
1716 * several possible states. If the FW in operational, waiting-for-handshake
1717 * states, driver must take steps to bring it to ready state. Otherwise, it
1718 * has to wait for the ready state.
1719 */
1720static int
Sumant Patro1341c932006-01-25 12:02:40 -08001721megasas_transition_to_ready(struct megasas_instance* instance)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001722{
1723 int i;
1724 u8 max_wait;
1725 u32 fw_state;
1726 u32 cur_state;
1727
Sumant Patro1341c932006-01-25 12:02:40 -08001728 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) & MFI_STATE_MASK;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001729
Sumant Patroe3bbff92006-10-03 12:28:49 -07001730 if (fw_state != MFI_STATE_READY)
1731 printk(KERN_INFO "megasas: Waiting for FW to come to ready"
1732 " state\n");
1733
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001734 while (fw_state != MFI_STATE_READY) {
1735
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001736 switch (fw_state) {
1737
1738 case MFI_STATE_FAULT:
1739
1740 printk(KERN_DEBUG "megasas: FW in FAULT state!!\n");
1741 return -ENODEV;
1742
1743 case MFI_STATE_WAIT_HANDSHAKE:
1744 /*
1745 * Set the CLR bit in inbound doorbell
1746 */
Yang, Bo87911122009-10-06 14:31:54 -06001747 if ((instance->pdev->device == \
1748 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1749 (instance->pdev->device ==
1750 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
1751
1752 writel(
1753 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
1754 &instance->reg_set->reserved_0[0]);
1755 } else {
1756 writel(
1757 MFI_INIT_CLEAR_HANDSHAKE|MFI_INIT_HOTPLUG,
1758 &instance->reg_set->inbound_doorbell);
1759 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001760
1761 max_wait = 2;
1762 cur_state = MFI_STATE_WAIT_HANDSHAKE;
1763 break;
1764
Sumant Patroe3bbff92006-10-03 12:28:49 -07001765 case MFI_STATE_BOOT_MESSAGE_PENDING:
Yang, Bo87911122009-10-06 14:31:54 -06001766 if ((instance->pdev->device ==
1767 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1768 (instance->pdev->device ==
1769 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
1770 writel(MFI_INIT_HOTPLUG,
1771 &instance->reg_set->reserved_0[0]);
1772 } else
1773 writel(MFI_INIT_HOTPLUG,
1774 &instance->reg_set->inbound_doorbell);
Sumant Patroe3bbff92006-10-03 12:28:49 -07001775
1776 max_wait = 10;
1777 cur_state = MFI_STATE_BOOT_MESSAGE_PENDING;
1778 break;
1779
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001780 case MFI_STATE_OPERATIONAL:
1781 /*
Sumant Patroe3bbff92006-10-03 12:28:49 -07001782 * Bring it to READY state; assuming max wait 10 secs
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001783 */
Sumant Patrob274cab2006-10-03 12:52:12 -07001784 instance->instancet->disable_intr(instance->reg_set);
Yang, Bo87911122009-10-06 14:31:54 -06001785 if ((instance->pdev->device ==
1786 PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
1787 (instance->pdev->device ==
1788 PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
1789 writel(MFI_RESET_FLAGS,
1790 &instance->reg_set->reserved_0[0]);
1791 } else
1792 writel(MFI_RESET_FLAGS,
1793 &instance->reg_set->inbound_doorbell);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001794
bo yangaf7a5642008-03-17 04:13:07 -04001795 max_wait = 60;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001796 cur_state = MFI_STATE_OPERATIONAL;
1797 break;
1798
1799 case MFI_STATE_UNDEFINED:
1800 /*
1801 * This state should not last for more than 2 seconds
1802 */
1803 max_wait = 2;
1804 cur_state = MFI_STATE_UNDEFINED;
1805 break;
1806
1807 case MFI_STATE_BB_INIT:
1808 max_wait = 2;
1809 cur_state = MFI_STATE_BB_INIT;
1810 break;
1811
1812 case MFI_STATE_FW_INIT:
1813 max_wait = 20;
1814 cur_state = MFI_STATE_FW_INIT;
1815 break;
1816
1817 case MFI_STATE_FW_INIT_2:
1818 max_wait = 20;
1819 cur_state = MFI_STATE_FW_INIT_2;
1820 break;
1821
1822 case MFI_STATE_DEVICE_SCAN:
1823 max_wait = 20;
1824 cur_state = MFI_STATE_DEVICE_SCAN;
1825 break;
1826
1827 case MFI_STATE_FLUSH_CACHE:
1828 max_wait = 20;
1829 cur_state = MFI_STATE_FLUSH_CACHE;
1830 break;
1831
1832 default:
1833 printk(KERN_DEBUG "megasas: Unknown state 0x%x\n",
1834 fw_state);
1835 return -ENODEV;
1836 }
1837
1838 /*
1839 * The cur_state should not last for more than max_wait secs
1840 */
1841 for (i = 0; i < (max_wait * 1000); i++) {
Sumant Patro1341c932006-01-25 12:02:40 -08001842 fw_state = instance->instancet->read_fw_status_reg(instance->reg_set) &
1843 MFI_STATE_MASK ;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001844
1845 if (fw_state == cur_state) {
1846 msleep(1);
1847 } else
1848 break;
1849 }
1850
1851 /*
1852 * Return error if fw_state hasn't changed after max_wait
1853 */
1854 if (fw_state == cur_state) {
1855 printk(KERN_DEBUG "FW state [%d] hasn't changed "
1856 "in %d secs\n", fw_state, max_wait);
1857 return -ENODEV;
1858 }
1859 };
Sumant Patroe3bbff92006-10-03 12:28:49 -07001860 printk(KERN_INFO "megasas: FW now in Ready state\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001861
1862 return 0;
1863}
1864
1865/**
1866 * megasas_teardown_frame_pool - Destroy the cmd frame DMA pool
1867 * @instance: Adapter soft state
1868 */
1869static void megasas_teardown_frame_pool(struct megasas_instance *instance)
1870{
1871 int i;
1872 u32 max_cmd = instance->max_fw_cmds;
1873 struct megasas_cmd *cmd;
1874
1875 if (!instance->frame_dma_pool)
1876 return;
1877
1878 /*
1879 * Return all frames to pool
1880 */
1881 for (i = 0; i < max_cmd; i++) {
1882
1883 cmd = instance->cmd_list[i];
1884
1885 if (cmd->frame)
1886 pci_pool_free(instance->frame_dma_pool, cmd->frame,
1887 cmd->frame_phys_addr);
1888
1889 if (cmd->sense)
Sumant Patroe3bbff92006-10-03 12:28:49 -07001890 pci_pool_free(instance->sense_dma_pool, cmd->sense,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04001891 cmd->sense_phys_addr);
1892 }
1893
1894 /*
1895 * Now destroy the pool itself
1896 */
1897 pci_pool_destroy(instance->frame_dma_pool);
1898 pci_pool_destroy(instance->sense_dma_pool);
1899
1900 instance->frame_dma_pool = NULL;
1901 instance->sense_dma_pool = NULL;
1902}
1903
1904/**
1905 * megasas_create_frame_pool - Creates DMA pool for cmd frames
1906 * @instance: Adapter soft state
1907 *
1908 * Each command packet has an embedded DMA memory buffer that is used for
1909 * filling MFI frame and the SG list that immediately follows the frame. This
1910 * function creates those DMA memory buffers for each command packet by using
1911 * PCI pool facility.
1912 */
1913static int megasas_create_frame_pool(struct megasas_instance *instance)
1914{
1915 int i;
1916 u32 max_cmd;
1917 u32 sge_sz;
1918 u32 sgl_sz;
1919 u32 total_sz;
1920 u32 frame_count;
1921 struct megasas_cmd *cmd;
1922
1923 max_cmd = instance->max_fw_cmds;
1924
1925 /*
1926 * Size of our frame is 64 bytes for MFI frame, followed by max SG
1927 * elements and finally SCSI_SENSE_BUFFERSIZE bytes for sense buffer
1928 */
1929 sge_sz = (IS_DMA64) ? sizeof(struct megasas_sge64) :
1930 sizeof(struct megasas_sge32);
1931
1932 /*
1933 * Calculated the number of 64byte frames required for SGL
1934 */
1935 sgl_sz = sge_sz * instance->max_num_sge;
1936 frame_count = (sgl_sz + MEGAMFI_FRAME_SIZE - 1) / MEGAMFI_FRAME_SIZE;
1937
1938 /*
1939 * We need one extra frame for the MFI command
1940 */
1941 frame_count++;
1942
1943 total_sz = MEGAMFI_FRAME_SIZE * frame_count;
1944 /*
1945 * Use DMA pool facility provided by PCI layer
1946 */
1947 instance->frame_dma_pool = pci_pool_create("megasas frame pool",
1948 instance->pdev, total_sz, 64,
1949 0);
1950
1951 if (!instance->frame_dma_pool) {
1952 printk(KERN_DEBUG "megasas: failed to setup frame pool\n");
1953 return -ENOMEM;
1954 }
1955
1956 instance->sense_dma_pool = pci_pool_create("megasas sense pool",
1957 instance->pdev, 128, 4, 0);
1958
1959 if (!instance->sense_dma_pool) {
1960 printk(KERN_DEBUG "megasas: failed to setup sense pool\n");
1961
1962 pci_pool_destroy(instance->frame_dma_pool);
1963 instance->frame_dma_pool = NULL;
1964
1965 return -ENOMEM;
1966 }
1967
1968 /*
1969 * Allocate and attach a frame to each of the commands in cmd_list.
1970 * By making cmd->index as the context instead of the &cmd, we can
1971 * always use 32bit context regardless of the architecture
1972 */
1973 for (i = 0; i < max_cmd; i++) {
1974
1975 cmd = instance->cmd_list[i];
1976
1977 cmd->frame = pci_pool_alloc(instance->frame_dma_pool,
1978 GFP_KERNEL, &cmd->frame_phys_addr);
1979
1980 cmd->sense = pci_pool_alloc(instance->sense_dma_pool,
1981 GFP_KERNEL, &cmd->sense_phys_addr);
1982
1983 /*
1984 * megasas_teardown_frame_pool() takes care of freeing
1985 * whatever has been allocated
1986 */
1987 if (!cmd->frame || !cmd->sense) {
1988 printk(KERN_DEBUG "megasas: pci_pool_alloc failed \n");
1989 megasas_teardown_frame_pool(instance);
1990 return -ENOMEM;
1991 }
1992
1993 cmd->frame->io.context = cmd->index;
1994 }
1995
1996 return 0;
1997}
1998
1999/**
2000 * megasas_free_cmds - Free all the cmds in the free cmd pool
2001 * @instance: Adapter soft state
2002 */
2003static void megasas_free_cmds(struct megasas_instance *instance)
2004{
2005 int i;
2006 /* First free the MFI frame pool */
2007 megasas_teardown_frame_pool(instance);
2008
2009 /* Free all the commands in the cmd_list */
2010 for (i = 0; i < instance->max_fw_cmds; i++)
2011 kfree(instance->cmd_list[i]);
2012
2013 /* Free the cmd_list buffer itself */
2014 kfree(instance->cmd_list);
2015 instance->cmd_list = NULL;
2016
2017 INIT_LIST_HEAD(&instance->cmd_pool);
2018}
2019
2020/**
2021 * megasas_alloc_cmds - Allocates the command packets
2022 * @instance: Adapter soft state
2023 *
2024 * Each command that is issued to the FW, whether IO commands from the OS or
2025 * internal commands like IOCTLs, are wrapped in local data structure called
2026 * megasas_cmd. The frame embedded in this megasas_cmd is actually issued to
2027 * the FW.
2028 *
2029 * Each frame has a 32-bit field called context (tag). This context is used
2030 * to get back the megasas_cmd from the frame when a frame gets completed in
2031 * the ISR. Typically the address of the megasas_cmd itself would be used as
2032 * the context. But we wanted to keep the differences between 32 and 64 bit
2033 * systems to the mininum. We always use 32 bit integers for the context. In
2034 * this driver, the 32 bit values are the indices into an array cmd_list.
2035 * This array is used only to look up the megasas_cmd given the context. The
2036 * free commands themselves are maintained in a linked list called cmd_pool.
2037 */
2038static int megasas_alloc_cmds(struct megasas_instance *instance)
2039{
2040 int i;
2041 int j;
2042 u32 max_cmd;
2043 struct megasas_cmd *cmd;
2044
2045 max_cmd = instance->max_fw_cmds;
2046
2047 /*
2048 * instance->cmd_list is an array of struct megasas_cmd pointers.
2049 * Allocate the dynamic array first and then allocate individual
2050 * commands.
2051 */
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07002052 instance->cmd_list = kcalloc(max_cmd, sizeof(struct megasas_cmd*), GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002053
2054 if (!instance->cmd_list) {
2055 printk(KERN_DEBUG "megasas: out of memory\n");
2056 return -ENOMEM;
2057 }
2058
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002059
2060 for (i = 0; i < max_cmd; i++) {
2061 instance->cmd_list[i] = kmalloc(sizeof(struct megasas_cmd),
2062 GFP_KERNEL);
2063
2064 if (!instance->cmd_list[i]) {
2065
2066 for (j = 0; j < i; j++)
2067 kfree(instance->cmd_list[j]);
2068
2069 kfree(instance->cmd_list);
2070 instance->cmd_list = NULL;
2071
2072 return -ENOMEM;
2073 }
2074 }
2075
2076 /*
2077 * Add all the commands to command pool (instance->cmd_pool)
2078 */
2079 for (i = 0; i < max_cmd; i++) {
2080 cmd = instance->cmd_list[i];
2081 memset(cmd, 0, sizeof(struct megasas_cmd));
2082 cmd->index = i;
2083 cmd->instance = instance;
2084
2085 list_add_tail(&cmd->list, &instance->cmd_pool);
2086 }
2087
2088 /*
2089 * Create a frame pool and assign one frame to each cmd
2090 */
2091 if (megasas_create_frame_pool(instance)) {
2092 printk(KERN_DEBUG "megasas: Error creating frame DMA pool\n");
2093 megasas_free_cmds(instance);
2094 }
2095
2096 return 0;
2097}
2098
Yang, Bo81e403c2009-10-06 14:27:54 -06002099/*
2100 * megasas_get_pd_list_info - Returns FW's pd_list structure
2101 * @instance: Adapter soft state
2102 * @pd_list: pd_list structure
2103 *
2104 * Issues an internal command (DCMD) to get the FW's controller PD
2105 * list structure. This information is mainly used to find out SYSTEM
2106 * supported by the FW.
2107 */
2108static int
2109megasas_get_pd_list(struct megasas_instance *instance)
2110{
2111 int ret = 0, pd_index = 0;
2112 struct megasas_cmd *cmd;
2113 struct megasas_dcmd_frame *dcmd;
2114 struct MR_PD_LIST *ci;
2115 struct MR_PD_ADDRESS *pd_addr;
2116 dma_addr_t ci_h = 0;
2117
2118 cmd = megasas_get_cmd(instance);
2119
2120 if (!cmd) {
2121 printk(KERN_DEBUG "megasas (get_pd_list): Failed to get cmd\n");
2122 return -ENOMEM;
2123 }
2124
2125 dcmd = &cmd->frame->dcmd;
2126
2127 ci = pci_alloc_consistent(instance->pdev,
2128 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST), &ci_h);
2129
2130 if (!ci) {
2131 printk(KERN_DEBUG "Failed to alloc mem for pd_list\n");
2132 megasas_return_cmd(instance, cmd);
2133 return -ENOMEM;
2134 }
2135
2136 memset(ci, 0, sizeof(*ci));
2137 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2138
2139 dcmd->mbox.b[0] = MR_PD_QUERY_TYPE_EXPOSED_TO_HOST;
2140 dcmd->mbox.b[1] = 0;
2141 dcmd->cmd = MFI_CMD_DCMD;
2142 dcmd->cmd_status = 0xFF;
2143 dcmd->sge_count = 1;
2144 dcmd->flags = MFI_FRAME_DIR_READ;
2145 dcmd->timeout = 0;
2146 dcmd->data_xfer_len = MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST);
2147 dcmd->opcode = MR_DCMD_PD_LIST_QUERY;
2148 dcmd->sgl.sge32[0].phys_addr = ci_h;
2149 dcmd->sgl.sge32[0].length = MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST);
2150
2151 if (!megasas_issue_polled(instance, cmd)) {
2152 ret = 0;
2153 } else {
2154 ret = -1;
2155 }
2156
2157 /*
2158 * the following function will get the instance PD LIST.
2159 */
2160
2161 pd_addr = ci->addr;
2162
2163 if ( ret == 0 &&
2164 (ci->count <
2165 (MEGASAS_MAX_PD_CHANNELS * MEGASAS_MAX_DEV_PER_CHANNEL))) {
2166
2167 memset(instance->pd_list, 0,
2168 MEGASAS_MAX_PD * sizeof(struct megasas_pd_list));
2169
2170 for (pd_index = 0; pd_index < ci->count; pd_index++) {
2171
2172 instance->pd_list[pd_addr->deviceId].tid =
2173 pd_addr->deviceId;
2174 instance->pd_list[pd_addr->deviceId].driveType =
2175 pd_addr->scsiDevType;
2176 instance->pd_list[pd_addr->deviceId].driveState =
2177 MR_PD_STATE_SYSTEM;
2178 pd_addr++;
2179 }
2180 }
2181
2182 pci_free_consistent(instance->pdev,
2183 MEGASAS_MAX_PD * sizeof(struct MR_PD_LIST),
2184 ci, ci_h);
2185 megasas_return_cmd(instance, cmd);
2186
2187 return ret;
2188}
2189
2190
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002191/**
2192 * megasas_get_controller_info - Returns FW's controller structure
2193 * @instance: Adapter soft state
2194 * @ctrl_info: Controller information structure
2195 *
2196 * Issues an internal command (DCMD) to get the FW's controller structure.
2197 * This information is mainly used to find out the maximum IO transfer per
2198 * command supported by the FW.
2199 */
2200static int
2201megasas_get_ctrl_info(struct megasas_instance *instance,
2202 struct megasas_ctrl_info *ctrl_info)
2203{
2204 int ret = 0;
2205 struct megasas_cmd *cmd;
2206 struct megasas_dcmd_frame *dcmd;
2207 struct megasas_ctrl_info *ci;
2208 dma_addr_t ci_h = 0;
2209
2210 cmd = megasas_get_cmd(instance);
2211
2212 if (!cmd) {
2213 printk(KERN_DEBUG "megasas: Failed to get a free cmd\n");
2214 return -ENOMEM;
2215 }
2216
2217 dcmd = &cmd->frame->dcmd;
2218
2219 ci = pci_alloc_consistent(instance->pdev,
2220 sizeof(struct megasas_ctrl_info), &ci_h);
2221
2222 if (!ci) {
2223 printk(KERN_DEBUG "Failed to alloc mem for ctrl info\n");
2224 megasas_return_cmd(instance, cmd);
2225 return -ENOMEM;
2226 }
2227
2228 memset(ci, 0, sizeof(*ci));
2229 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2230
2231 dcmd->cmd = MFI_CMD_DCMD;
2232 dcmd->cmd_status = 0xFF;
2233 dcmd->sge_count = 1;
2234 dcmd->flags = MFI_FRAME_DIR_READ;
2235 dcmd->timeout = 0;
2236 dcmd->data_xfer_len = sizeof(struct megasas_ctrl_info);
2237 dcmd->opcode = MR_DCMD_CTRL_GET_INFO;
2238 dcmd->sgl.sge32[0].phys_addr = ci_h;
2239 dcmd->sgl.sge32[0].length = sizeof(struct megasas_ctrl_info);
2240
2241 if (!megasas_issue_polled(instance, cmd)) {
2242 ret = 0;
2243 memcpy(ctrl_info, ci, sizeof(struct megasas_ctrl_info));
2244 } else {
2245 ret = -1;
2246 }
2247
2248 pci_free_consistent(instance->pdev, sizeof(struct megasas_ctrl_info),
2249 ci, ci_h);
2250
2251 megasas_return_cmd(instance, cmd);
2252 return ret;
2253}
2254
2255/**
bo yang31ea7082007-11-07 12:09:50 -05002256 * megasas_issue_init_mfi - Initializes the FW
2257 * @instance: Adapter soft state
2258 *
2259 * Issues the INIT MFI cmd
2260 */
2261static int
2262megasas_issue_init_mfi(struct megasas_instance *instance)
2263{
2264 u32 context;
2265
2266 struct megasas_cmd *cmd;
2267
2268 struct megasas_init_frame *init_frame;
2269 struct megasas_init_queue_info *initq_info;
2270 dma_addr_t init_frame_h;
2271 dma_addr_t initq_info_h;
2272
2273 /*
2274 * Prepare a init frame. Note the init frame points to queue info
2275 * structure. Each frame has SGL allocated after first 64 bytes. For
2276 * this frame - since we don't need any SGL - we use SGL's space as
2277 * queue info structure
2278 *
2279 * We will not get a NULL command below. We just created the pool.
2280 */
2281 cmd = megasas_get_cmd(instance);
2282
2283 init_frame = (struct megasas_init_frame *)cmd->frame;
2284 initq_info = (struct megasas_init_queue_info *)
2285 ((unsigned long)init_frame + 64);
2286
2287 init_frame_h = cmd->frame_phys_addr;
2288 initq_info_h = init_frame_h + 64;
2289
2290 context = init_frame->context;
2291 memset(init_frame, 0, MEGAMFI_FRAME_SIZE);
2292 memset(initq_info, 0, sizeof(struct megasas_init_queue_info));
2293 init_frame->context = context;
2294
2295 initq_info->reply_queue_entries = instance->max_fw_cmds + 1;
2296 initq_info->reply_queue_start_phys_addr_lo = instance->reply_queue_h;
2297
2298 initq_info->producer_index_phys_addr_lo = instance->producer_h;
2299 initq_info->consumer_index_phys_addr_lo = instance->consumer_h;
2300
2301 init_frame->cmd = MFI_CMD_INIT;
2302 init_frame->cmd_status = 0xFF;
2303 init_frame->queue_info_new_phys_addr_lo = initq_info_h;
2304
2305 init_frame->data_xfer_len = sizeof(struct megasas_init_queue_info);
2306
2307 /*
2308 * disable the intr before firing the init frame to FW
2309 */
2310 instance->instancet->disable_intr(instance->reg_set);
2311
2312 /*
2313 * Issue the init frame in polled mode
2314 */
2315
2316 if (megasas_issue_polled(instance, cmd)) {
2317 printk(KERN_ERR "megasas: Failed to init firmware\n");
2318 megasas_return_cmd(instance, cmd);
2319 goto fail_fw_init;
2320 }
2321
2322 megasas_return_cmd(instance, cmd);
2323
2324 return 0;
2325
2326fail_fw_init:
2327 return -EINVAL;
2328}
2329
2330/**
bo yangad84db22007-11-09 04:40:16 -05002331 * megasas_start_timer - Initializes a timer object
2332 * @instance: Adapter soft state
2333 * @timer: timer object to be initialized
2334 * @fn: timer function
2335 * @interval: time interval between timer function call
2336 */
2337static inline void
2338megasas_start_timer(struct megasas_instance *instance,
2339 struct timer_list *timer,
2340 void *fn, unsigned long interval)
2341{
2342 init_timer(timer);
2343 timer->expires = jiffies + interval;
2344 timer->data = (unsigned long)instance;
2345 timer->function = fn;
2346 add_timer(timer);
2347}
2348
2349/**
2350 * megasas_io_completion_timer - Timer fn
2351 * @instance_addr: Address of adapter soft state
2352 *
2353 * Schedules tasklet for cmd completion
2354 * if poll_mode_io is set
2355 */
2356static void
2357megasas_io_completion_timer(unsigned long instance_addr)
2358{
2359 struct megasas_instance *instance =
2360 (struct megasas_instance *)instance_addr;
2361
2362 if (atomic_read(&instance->fw_outstanding))
2363 tasklet_schedule(&instance->isr_tasklet);
2364
2365 /* Restart timer */
2366 if (poll_mode_io)
2367 mod_timer(&instance->io_completion_timer,
2368 jiffies + MEGASAS_COMPLETION_TIMER_INTERVAL);
2369}
2370
2371/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002372 * megasas_init_mfi - Initializes the FW
2373 * @instance: Adapter soft state
2374 *
2375 * This is the main function for initializing MFI firmware.
2376 */
2377static int megasas_init_mfi(struct megasas_instance *instance)
2378{
2379 u32 context_sz;
2380 u32 reply_q_sz;
2381 u32 max_sectors_1;
2382 u32 max_sectors_2;
bo yang14faea92007-11-09 04:14:00 -05002383 u32 tmp_sectors;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002384 struct megasas_register_set __iomem *reg_set;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002385 struct megasas_ctrl_info *ctrl_info;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002386 /*
2387 * Map the message registers
2388 */
Yang, Bo6610a6b2008-08-10 12:42:38 -07002389 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS1078GEN2) ||
Yang, Bo87911122009-10-06 14:31:54 -06002390 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY) ||
2391 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
Yang, Bo6610a6b2008-08-10 12:42:38 -07002392 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0079GEN2)) {
2393 instance->base_addr = pci_resource_start(instance->pdev, 1);
2394 } else {
2395 instance->base_addr = pci_resource_start(instance->pdev, 0);
2396 }
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002397
bo yangf28cd7c2007-11-09 04:44:56 -05002398 if (pci_request_regions(instance->pdev, "megasas: LSI")) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002399 printk(KERN_DEBUG "megasas: IO memory region busy!\n");
2400 return -EBUSY;
2401 }
2402
2403 instance->reg_set = ioremap_nocache(instance->base_addr, 8192);
2404
2405 if (!instance->reg_set) {
2406 printk(KERN_DEBUG "megasas: Failed to map IO mem\n");
2407 goto fail_ioremap;
2408 }
2409
2410 reg_set = instance->reg_set;
2411
Sumant Patrof9876f02006-02-03 15:34:35 -08002412 switch(instance->pdev->device)
2413 {
bo yangaf7a5642008-03-17 04:13:07 -04002414 case PCI_DEVICE_ID_LSI_SAS1078R:
2415 case PCI_DEVICE_ID_LSI_SAS1078DE:
Sumant Patrof9876f02006-02-03 15:34:35 -08002416 instance->instancet = &megasas_instance_template_ppc;
2417 break;
Yang, Bo6610a6b2008-08-10 12:42:38 -07002418 case PCI_DEVICE_ID_LSI_SAS1078GEN2:
2419 case PCI_DEVICE_ID_LSI_SAS0079GEN2:
2420 instance->instancet = &megasas_instance_template_gen2;
2421 break;
Yang, Bo87911122009-10-06 14:31:54 -06002422 case PCI_DEVICE_ID_LSI_SAS0073SKINNY:
2423 case PCI_DEVICE_ID_LSI_SAS0071SKINNY:
2424 instance->instancet = &megasas_instance_template_skinny;
2425 break;
Sumant Patrof9876f02006-02-03 15:34:35 -08002426 case PCI_DEVICE_ID_LSI_SAS1064R:
2427 case PCI_DEVICE_ID_DELL_PERC5:
2428 default:
2429 instance->instancet = &megasas_instance_template_xscale;
2430 break;
2431 }
Sumant Patro1341c932006-01-25 12:02:40 -08002432
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002433 /*
2434 * We expect the FW state to be READY
2435 */
Sumant Patro1341c932006-01-25 12:02:40 -08002436 if (megasas_transition_to_ready(instance))
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002437 goto fail_ready_state;
2438
2439 /*
2440 * Get various operational parameters from status register
2441 */
Sumant Patro1341c932006-01-25 12:02:40 -08002442 instance->max_fw_cmds = instance->instancet->read_fw_status_reg(reg_set) & 0x00FFFF;
Sumant Patroe3bbff92006-10-03 12:28:49 -07002443 /*
2444 * Reduce the max supported cmds by 1. This is to ensure that the
2445 * reply_q_sz (1 more than the max cmd that driver may send)
2446 * does not exceed max cmds that the FW can support
2447 */
2448 instance->max_fw_cmds = instance->max_fw_cmds-1;
Sumant Patro1341c932006-01-25 12:02:40 -08002449 instance->max_num_sge = (instance->instancet->read_fw_status_reg(reg_set) & 0xFF0000) >>
2450 0x10;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002451 /*
2452 * Create a pool of commands
2453 */
2454 if (megasas_alloc_cmds(instance))
2455 goto fail_alloc_cmds;
2456
2457 /*
2458 * Allocate memory for reply queue. Length of reply queue should
2459 * be _one_ more than the maximum commands handled by the firmware.
2460 *
2461 * Note: When FW completes commands, it places corresponding contex
2462 * values in this circular reply queue. This circular queue is a fairly
2463 * typical producer-consumer queue. FW is the producer (of completed
2464 * commands) and the driver is the consumer.
2465 */
2466 context_sz = sizeof(u32);
2467 reply_q_sz = context_sz * (instance->max_fw_cmds + 1);
2468
2469 instance->reply_queue = pci_alloc_consistent(instance->pdev,
2470 reply_q_sz,
2471 &instance->reply_queue_h);
2472
2473 if (!instance->reply_queue) {
2474 printk(KERN_DEBUG "megasas: Out of DMA mem for reply queue\n");
2475 goto fail_reply_queue;
2476 }
2477
bo yang31ea7082007-11-07 12:09:50 -05002478 if (megasas_issue_init_mfi(instance))
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002479 goto fail_fw_init;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002480
Yang, Bo81e403c2009-10-06 14:27:54 -06002481 memset(instance->pd_list, 0 ,
2482 (MEGASAS_MAX_PD * sizeof(struct megasas_pd_list)));
2483 megasas_get_pd_list(instance);
2484
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002485 ctrl_info = kmalloc(sizeof(struct megasas_ctrl_info), GFP_KERNEL);
2486
2487 /*
2488 * Compute the max allowed sectors per IO: The controller info has two
2489 * limits on max sectors. Driver should use the minimum of these two.
2490 *
2491 * 1 << stripe_sz_ops.min = max sectors per strip
2492 *
2493 * Note that older firmwares ( < FW ver 30) didn't report information
2494 * to calculate max_sectors_1. So the number ended up as zero always.
2495 */
bo yang14faea92007-11-09 04:14:00 -05002496 tmp_sectors = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002497 if (ctrl_info && !megasas_get_ctrl_info(instance, ctrl_info)) {
2498
2499 max_sectors_1 = (1 << ctrl_info->stripe_sz_ops.min) *
2500 ctrl_info->max_strips_per_io;
2501 max_sectors_2 = ctrl_info->max_request_size;
2502
bo yang14faea92007-11-09 04:14:00 -05002503 tmp_sectors = min_t(u32, max_sectors_1 , max_sectors_2);
2504 }
2505
2506 instance->max_sectors_per_req = instance->max_num_sge *
2507 PAGE_SIZE / 512;
2508 if (tmp_sectors && (instance->max_sectors_per_req > tmp_sectors))
2509 instance->max_sectors_per_req = tmp_sectors;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002510
2511 kfree(ctrl_info);
2512
Sumant Patro5d018ad2006-10-03 13:13:18 -07002513 /*
2514 * Setup tasklet for cmd completion
2515 */
2516
bo yangad84db22007-11-09 04:40:16 -05002517 tasklet_init(&instance->isr_tasklet, megasas_complete_cmd_dpc,
2518 (unsigned long)instance);
2519
2520 /* Initialize the cmd completion timer */
2521 if (poll_mode_io)
2522 megasas_start_timer(instance, &instance->io_completion_timer,
2523 megasas_io_completion_timer,
2524 MEGASAS_COMPLETION_TIMER_INTERVAL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002525 return 0;
2526
2527 fail_fw_init:
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002528
2529 pci_free_consistent(instance->pdev, reply_q_sz,
2530 instance->reply_queue, instance->reply_queue_h);
2531 fail_reply_queue:
2532 megasas_free_cmds(instance);
2533
2534 fail_alloc_cmds:
2535 fail_ready_state:
2536 iounmap(instance->reg_set);
2537
2538 fail_ioremap:
2539 pci_release_regions(instance->pdev);
2540
2541 return -EINVAL;
2542}
2543
2544/**
2545 * megasas_release_mfi - Reverses the FW initialization
2546 * @intance: Adapter soft state
2547 */
2548static void megasas_release_mfi(struct megasas_instance *instance)
2549{
2550 u32 reply_q_sz = sizeof(u32) * (instance->max_fw_cmds + 1);
2551
2552 pci_free_consistent(instance->pdev, reply_q_sz,
2553 instance->reply_queue, instance->reply_queue_h);
2554
2555 megasas_free_cmds(instance);
2556
2557 iounmap(instance->reg_set);
2558
2559 pci_release_regions(instance->pdev);
2560}
2561
2562/**
2563 * megasas_get_seq_num - Gets latest event sequence numbers
2564 * @instance: Adapter soft state
2565 * @eli: FW event log sequence numbers information
2566 *
2567 * FW maintains a log of all events in a non-volatile area. Upper layers would
2568 * usually find out the latest sequence number of the events, the seq number at
2569 * the boot etc. They would "read" all the events below the latest seq number
2570 * by issuing a direct fw cmd (DCMD). For the future events (beyond latest seq
2571 * number), they would subsribe to AEN (asynchronous event notification) and
2572 * wait for the events to happen.
2573 */
2574static int
2575megasas_get_seq_num(struct megasas_instance *instance,
2576 struct megasas_evt_log_info *eli)
2577{
2578 struct megasas_cmd *cmd;
2579 struct megasas_dcmd_frame *dcmd;
2580 struct megasas_evt_log_info *el_info;
2581 dma_addr_t el_info_h = 0;
2582
2583 cmd = megasas_get_cmd(instance);
2584
2585 if (!cmd) {
2586 return -ENOMEM;
2587 }
2588
2589 dcmd = &cmd->frame->dcmd;
2590 el_info = pci_alloc_consistent(instance->pdev,
2591 sizeof(struct megasas_evt_log_info),
2592 &el_info_h);
2593
2594 if (!el_info) {
2595 megasas_return_cmd(instance, cmd);
2596 return -ENOMEM;
2597 }
2598
2599 memset(el_info, 0, sizeof(*el_info));
2600 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2601
2602 dcmd->cmd = MFI_CMD_DCMD;
2603 dcmd->cmd_status = 0x0;
2604 dcmd->sge_count = 1;
2605 dcmd->flags = MFI_FRAME_DIR_READ;
2606 dcmd->timeout = 0;
2607 dcmd->data_xfer_len = sizeof(struct megasas_evt_log_info);
2608 dcmd->opcode = MR_DCMD_CTRL_EVENT_GET_INFO;
2609 dcmd->sgl.sge32[0].phys_addr = el_info_h;
2610 dcmd->sgl.sge32[0].length = sizeof(struct megasas_evt_log_info);
2611
2612 megasas_issue_blocked_cmd(instance, cmd);
2613
2614 /*
2615 * Copy the data back into callers buffer
2616 */
2617 memcpy(eli, el_info, sizeof(struct megasas_evt_log_info));
2618
2619 pci_free_consistent(instance->pdev, sizeof(struct megasas_evt_log_info),
2620 el_info, el_info_h);
2621
2622 megasas_return_cmd(instance, cmd);
2623
2624 return 0;
2625}
2626
2627/**
2628 * megasas_register_aen - Registers for asynchronous event notification
2629 * @instance: Adapter soft state
2630 * @seq_num: The starting sequence number
2631 * @class_locale: Class of the event
2632 *
2633 * This function subscribes for AEN for events beyond the @seq_num. It requests
2634 * to be notified if and only if the event is of type @class_locale
2635 */
2636static int
2637megasas_register_aen(struct megasas_instance *instance, u32 seq_num,
2638 u32 class_locale_word)
2639{
2640 int ret_val;
2641 struct megasas_cmd *cmd;
2642 struct megasas_dcmd_frame *dcmd;
2643 union megasas_evt_class_locale curr_aen;
2644 union megasas_evt_class_locale prev_aen;
2645
2646 /*
2647 * If there an AEN pending already (aen_cmd), check if the
2648 * class_locale of that pending AEN is inclusive of the new
2649 * AEN request we currently have. If it is, then we don't have
2650 * to do anything. In other words, whichever events the current
2651 * AEN request is subscribing to, have already been subscribed
2652 * to.
2653 *
2654 * If the old_cmd is _not_ inclusive, then we have to abort
2655 * that command, form a class_locale that is superset of both
2656 * old and current and re-issue to the FW
2657 */
2658
2659 curr_aen.word = class_locale_word;
2660
2661 if (instance->aen_cmd) {
2662
2663 prev_aen.word = instance->aen_cmd->frame->dcmd.mbox.w[1];
2664
2665 /*
2666 * A class whose enum value is smaller is inclusive of all
2667 * higher values. If a PROGRESS (= -1) was previously
2668 * registered, then a new registration requests for higher
2669 * classes need not be sent to FW. They are automatically
2670 * included.
2671 *
2672 * Locale numbers don't have such hierarchy. They are bitmap
2673 * values
2674 */
2675 if ((prev_aen.members.class <= curr_aen.members.class) &&
2676 !((prev_aen.members.locale & curr_aen.members.locale) ^
2677 curr_aen.members.locale)) {
2678 /*
2679 * Previously issued event registration includes
2680 * current request. Nothing to do.
2681 */
2682 return 0;
2683 } else {
2684 curr_aen.members.locale |= prev_aen.members.locale;
2685
2686 if (prev_aen.members.class < curr_aen.members.class)
2687 curr_aen.members.class = prev_aen.members.class;
2688
2689 instance->aen_cmd->abort_aen = 1;
2690 ret_val = megasas_issue_blocked_abort_cmd(instance,
2691 instance->
2692 aen_cmd);
2693
2694 if (ret_val) {
2695 printk(KERN_DEBUG "megasas: Failed to abort "
2696 "previous AEN command\n");
2697 return ret_val;
2698 }
2699 }
2700 }
2701
2702 cmd = megasas_get_cmd(instance);
2703
2704 if (!cmd)
2705 return -ENOMEM;
2706
2707 dcmd = &cmd->frame->dcmd;
2708
2709 memset(instance->evt_detail, 0, sizeof(struct megasas_evt_detail));
2710
2711 /*
2712 * Prepare DCMD for aen registration
2713 */
2714 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
2715
2716 dcmd->cmd = MFI_CMD_DCMD;
2717 dcmd->cmd_status = 0x0;
2718 dcmd->sge_count = 1;
2719 dcmd->flags = MFI_FRAME_DIR_READ;
2720 dcmd->timeout = 0;
2721 dcmd->data_xfer_len = sizeof(struct megasas_evt_detail);
2722 dcmd->opcode = MR_DCMD_CTRL_EVENT_WAIT;
2723 dcmd->mbox.w[0] = seq_num;
2724 dcmd->mbox.w[1] = curr_aen.word;
2725 dcmd->sgl.sge32[0].phys_addr = (u32) instance->evt_detail_h;
2726 dcmd->sgl.sge32[0].length = sizeof(struct megasas_evt_detail);
2727
2728 /*
2729 * Store reference to the cmd used to register for AEN. When an
2730 * application wants us to register for AEN, we have to abort this
2731 * cmd and re-register with a new EVENT LOCALE supplied by that app
2732 */
2733 instance->aen_cmd = cmd;
2734
2735 /*
2736 * Issue the aen registration frame
2737 */
Sumant Patro1341c932006-01-25 12:02:40 -08002738 instance->instancet->fire_cmd(cmd->frame_phys_addr ,0,instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002739
2740 return 0;
2741}
2742
2743/**
2744 * megasas_start_aen - Subscribes to AEN during driver load time
2745 * @instance: Adapter soft state
2746 */
2747static int megasas_start_aen(struct megasas_instance *instance)
2748{
2749 struct megasas_evt_log_info eli;
2750 union megasas_evt_class_locale class_locale;
2751
2752 /*
2753 * Get the latest sequence number from FW
2754 */
2755 memset(&eli, 0, sizeof(eli));
2756
2757 if (megasas_get_seq_num(instance, &eli))
2758 return -1;
2759
2760 /*
2761 * Register AEN with FW for latest sequence number plus 1
2762 */
2763 class_locale.members.reserved = 0;
2764 class_locale.members.locale = MR_EVT_LOCALE_ALL;
2765 class_locale.members.class = MR_EVT_CLASS_DEBUG;
2766
2767 return megasas_register_aen(instance, eli.newest_seq_num + 1,
2768 class_locale.word);
2769}
2770
2771/**
2772 * megasas_io_attach - Attaches this driver to SCSI mid-layer
2773 * @instance: Adapter soft state
2774 */
2775static int megasas_io_attach(struct megasas_instance *instance)
2776{
2777 struct Scsi_Host *host = instance->host;
2778
2779 /*
2780 * Export parameters required by SCSI mid-layer
2781 */
2782 host->irq = instance->pdev->irq;
2783 host->unique_id = instance->unique_id;
Yang, Bo7bebf5c2009-10-06 14:40:58 -06002784 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
2785 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
2786 host->can_queue =
2787 instance->max_fw_cmds - MEGASAS_SKINNY_INT_CMDS;
2788 } else
2789 host->can_queue =
2790 instance->max_fw_cmds - MEGASAS_INT_CMDS;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002791 host->this_id = instance->init_id;
2792 host->sg_tablesize = instance->max_num_sge;
2793 host->max_sectors = instance->max_sectors_per_req;
2794 host->cmd_per_lun = 128;
2795 host->max_channel = MEGASAS_MAX_CHANNELS - 1;
2796 host->max_id = MEGASAS_MAX_DEV_PER_CHANNEL;
2797 host->max_lun = MEGASAS_MAX_LUN;
Joshua Giles122da302006-02-03 15:34:17 -08002798 host->max_cmd_len = 16;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002799
2800 /*
2801 * Notify the mid-layer about the new controller
2802 */
2803 if (scsi_add_host(host, &instance->pdev->dev)) {
2804 printk(KERN_DEBUG "megasas: scsi_add_host failed\n");
2805 return -ENODEV;
2806 }
2807
2808 /*
2809 * Trigger SCSI to scan our drives
2810 */
2811 scsi_scan_host(host);
2812 return 0;
2813}
2814
bo yang31ea7082007-11-07 12:09:50 -05002815static int
2816megasas_set_dma_mask(struct pci_dev *pdev)
2817{
2818 /*
2819 * All our contollers are capable of performing 64-bit DMA
2820 */
2821 if (IS_DMA64) {
Yang Hongyang6a355282009-04-06 19:01:13 -07002822 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) {
bo yang31ea7082007-11-07 12:09:50 -05002823
Yang Hongyang284901a2009-04-06 19:01:15 -07002824 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
bo yang31ea7082007-11-07 12:09:50 -05002825 goto fail_set_dma_mask;
2826 }
2827 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07002828 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)
bo yang31ea7082007-11-07 12:09:50 -05002829 goto fail_set_dma_mask;
2830 }
2831 return 0;
2832
2833fail_set_dma_mask:
2834 return 1;
2835}
2836
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002837/**
2838 * megasas_probe_one - PCI hotplug entry point
2839 * @pdev: PCI device structure
2840 * @id: PCI ids of supported hotplugged adapter
2841 */
2842static int __devinit
2843megasas_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
2844{
2845 int rval;
2846 struct Scsi_Host *host;
2847 struct megasas_instance *instance;
2848
2849 /*
2850 * Announce PCI information
2851 */
2852 printk(KERN_INFO "megasas: %#4.04x:%#4.04x:%#4.04x:%#4.04x: ",
2853 pdev->vendor, pdev->device, pdev->subsystem_vendor,
2854 pdev->subsystem_device);
2855
2856 printk("bus %d:slot %d:func %d\n",
2857 pdev->bus->number, PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
2858
2859 /*
2860 * PCI prepping: enable device set bus mastering and dma mask
2861 */
2862 rval = pci_enable_device(pdev);
2863
2864 if (rval) {
2865 return rval;
2866 }
2867
2868 pci_set_master(pdev);
2869
bo yang31ea7082007-11-07 12:09:50 -05002870 if (megasas_set_dma_mask(pdev))
2871 goto fail_set_dma_mask;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002872
2873 host = scsi_host_alloc(&megasas_template,
2874 sizeof(struct megasas_instance));
2875
2876 if (!host) {
2877 printk(KERN_DEBUG "megasas: scsi_host_alloc failed\n");
2878 goto fail_alloc_instance;
2879 }
2880
2881 instance = (struct megasas_instance *)host->hostdata;
2882 memset(instance, 0, sizeof(*instance));
2883
2884 instance->producer = pci_alloc_consistent(pdev, sizeof(u32),
2885 &instance->producer_h);
2886 instance->consumer = pci_alloc_consistent(pdev, sizeof(u32),
2887 &instance->consumer_h);
2888
2889 if (!instance->producer || !instance->consumer) {
2890 printk(KERN_DEBUG "megasas: Failed to allocate memory for "
2891 "producer, consumer\n");
2892 goto fail_alloc_dma_buf;
2893 }
2894
2895 *instance->producer = 0;
2896 *instance->consumer = 0;
Yang, Boc3518832009-10-06 14:18:02 -06002897 megasas_poll_wait_aen = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002898
2899 instance->evt_detail = pci_alloc_consistent(pdev,
2900 sizeof(struct
2901 megasas_evt_detail),
2902 &instance->evt_detail_h);
2903
2904 if (!instance->evt_detail) {
2905 printk(KERN_DEBUG "megasas: Failed to allocate memory for "
2906 "event detail structure\n");
2907 goto fail_alloc_dma_buf;
2908 }
2909
2910 /*
2911 * Initialize locks and queues
2912 */
2913 INIT_LIST_HEAD(&instance->cmd_pool);
2914
Sumant Patroe4a082c2006-05-30 12:03:37 -07002915 atomic_set(&instance->fw_outstanding,0);
2916
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002917 init_waitqueue_head(&instance->int_cmd_wait_q);
2918 init_waitqueue_head(&instance->abort_cmd_wait_q);
2919
2920 spin_lock_init(&instance->cmd_pool_lock);
bo yang7343eb62007-11-09 04:35:44 -05002921 spin_lock_init(&instance->completion_lock);
Yang, Boc3518832009-10-06 14:18:02 -06002922 spin_lock_init(&poll_aen_lock);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002923
Matthias Kaehlckee5a69e22007-10-27 09:48:46 +02002924 mutex_init(&instance->aen_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002925
2926 /*
2927 * Initialize PCI related and misc parameters
2928 */
2929 instance->pdev = pdev;
2930 instance->host = host;
2931 instance->unique_id = pdev->bus->number << 8 | pdev->devfn;
2932 instance->init_id = MEGASAS_DEFAULT_INIT_ID;
2933
Yang, Bo7bebf5c2009-10-06 14:40:58 -06002934 if ((instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0073SKINNY) ||
2935 (instance->pdev->device == PCI_DEVICE_ID_LSI_SAS0071SKINNY)) {
2936 sema_init(&instance->ioctl_sem, MEGASAS_SKINNY_INT_CMDS);
2937 } else
2938 sema_init(&instance->ioctl_sem, MEGASAS_INT_CMDS);
2939
Sumant Patro658dced2006-10-03 13:09:14 -07002940 megasas_dbg_lvl = 0;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002941 instance->flag = 0;
Yang, Boc3518832009-10-06 14:18:02 -06002942 instance->unload = 0;
Sumant Patro05e9ebb2007-05-17 05:47:51 -07002943 instance->last_time = 0;
Sumant Patro658dced2006-10-03 13:09:14 -07002944
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002945 /*
2946 * Initialize MFI Firmware
2947 */
2948 if (megasas_init_mfi(instance))
2949 goto fail_init_mfi;
2950
2951 /*
2952 * Register IRQ
2953 */
Thomas Gleixner1d6f3592006-07-01 19:29:42 -07002954 if (request_irq(pdev->irq, megasas_isr, IRQF_SHARED, "megasas", instance)) {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002955 printk(KERN_DEBUG "megasas: Failed to register IRQ\n");
2956 goto fail_irq;
2957 }
2958
Sumant Patro1341c932006-01-25 12:02:40 -08002959 instance->instancet->enable_intr(instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002960
2961 /*
2962 * Store instance in PCI softstate
2963 */
2964 pci_set_drvdata(pdev, instance);
2965
2966 /*
2967 * Add this controller to megasas_mgmt_info structure so that it
2968 * can be exported to management applications
2969 */
2970 megasas_mgmt_info.count++;
2971 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = instance;
2972 megasas_mgmt_info.max_index++;
2973
2974 /*
2975 * Initiate AEN (Asynchronous Event Notification)
2976 */
2977 if (megasas_start_aen(instance)) {
2978 printk(KERN_DEBUG "megasas: start aen failed\n");
2979 goto fail_start_aen;
2980 }
2981
2982 /*
2983 * Register with SCSI mid-layer
2984 */
2985 if (megasas_io_attach(instance))
2986 goto fail_io_attach;
2987
2988 return 0;
2989
2990 fail_start_aen:
2991 fail_io_attach:
2992 megasas_mgmt_info.count--;
2993 megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = NULL;
2994 megasas_mgmt_info.max_index--;
2995
2996 pci_set_drvdata(pdev, NULL);
Sumant Patrob274cab2006-10-03 12:52:12 -07002997 instance->instancet->disable_intr(instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04002998 free_irq(instance->pdev->irq, instance);
2999
3000 megasas_release_mfi(instance);
3001
3002 fail_irq:
3003 fail_init_mfi:
3004 fail_alloc_dma_buf:
3005 if (instance->evt_detail)
3006 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
3007 instance->evt_detail,
3008 instance->evt_detail_h);
3009
3010 if (instance->producer)
3011 pci_free_consistent(pdev, sizeof(u32), instance->producer,
3012 instance->producer_h);
3013 if (instance->consumer)
3014 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
3015 instance->consumer_h);
3016 scsi_host_put(host);
3017
3018 fail_alloc_instance:
3019 fail_set_dma_mask:
3020 pci_disable_device(pdev);
3021
3022 return -ENODEV;
3023}
3024
3025/**
3026 * megasas_flush_cache - Requests FW to flush all its caches
3027 * @instance: Adapter soft state
3028 */
3029static void megasas_flush_cache(struct megasas_instance *instance)
3030{
3031 struct megasas_cmd *cmd;
3032 struct megasas_dcmd_frame *dcmd;
3033
3034 cmd = megasas_get_cmd(instance);
3035
3036 if (!cmd)
3037 return;
3038
3039 dcmd = &cmd->frame->dcmd;
3040
3041 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3042
3043 dcmd->cmd = MFI_CMD_DCMD;
3044 dcmd->cmd_status = 0x0;
3045 dcmd->sge_count = 0;
3046 dcmd->flags = MFI_FRAME_DIR_NONE;
3047 dcmd->timeout = 0;
3048 dcmd->data_xfer_len = 0;
3049 dcmd->opcode = MR_DCMD_CTRL_CACHE_FLUSH;
3050 dcmd->mbox.b[0] = MR_FLUSH_CTRL_CACHE | MR_FLUSH_DISK_CACHE;
3051
3052 megasas_issue_blocked_cmd(instance, cmd);
3053
3054 megasas_return_cmd(instance, cmd);
3055
3056 return;
3057}
3058
3059/**
3060 * megasas_shutdown_controller - Instructs FW to shutdown the controller
3061 * @instance: Adapter soft state
bo yang31ea7082007-11-07 12:09:50 -05003062 * @opcode: Shutdown/Hibernate
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003063 */
bo yang31ea7082007-11-07 12:09:50 -05003064static void megasas_shutdown_controller(struct megasas_instance *instance,
3065 u32 opcode)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003066{
3067 struct megasas_cmd *cmd;
3068 struct megasas_dcmd_frame *dcmd;
3069
3070 cmd = megasas_get_cmd(instance);
3071
3072 if (!cmd)
3073 return;
3074
3075 if (instance->aen_cmd)
3076 megasas_issue_blocked_abort_cmd(instance, instance->aen_cmd);
3077
3078 dcmd = &cmd->frame->dcmd;
3079
3080 memset(dcmd->mbox.b, 0, MFI_MBOX_SIZE);
3081
3082 dcmd->cmd = MFI_CMD_DCMD;
3083 dcmd->cmd_status = 0x0;
3084 dcmd->sge_count = 0;
3085 dcmd->flags = MFI_FRAME_DIR_NONE;
3086 dcmd->timeout = 0;
3087 dcmd->data_xfer_len = 0;
bo yang31ea7082007-11-07 12:09:50 -05003088 dcmd->opcode = opcode;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003089
3090 megasas_issue_blocked_cmd(instance, cmd);
3091
3092 megasas_return_cmd(instance, cmd);
3093
3094 return;
3095}
3096
Jiri Slaby33139b22008-05-01 17:56:02 +02003097#ifdef CONFIG_PM
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003098/**
bo yangad84db22007-11-09 04:40:16 -05003099 * megasas_suspend - driver suspend entry point
3100 * @pdev: PCI device structure
bo yang31ea7082007-11-07 12:09:50 -05003101 * @state: PCI power state to suspend routine
3102 */
Jiri Slaby33139b22008-05-01 17:56:02 +02003103static int
bo yang31ea7082007-11-07 12:09:50 -05003104megasas_suspend(struct pci_dev *pdev, pm_message_t state)
3105{
3106 struct Scsi_Host *host;
3107 struct megasas_instance *instance;
3108
3109 instance = pci_get_drvdata(pdev);
3110 host = instance->host;
3111
bo yangad84db22007-11-09 04:40:16 -05003112 if (poll_mode_io)
3113 del_timer_sync(&instance->io_completion_timer);
3114
bo yang31ea7082007-11-07 12:09:50 -05003115 megasas_flush_cache(instance);
3116 megasas_shutdown_controller(instance, MR_DCMD_HIBERNATE_SHUTDOWN);
3117 tasklet_kill(&instance->isr_tasklet);
3118
3119 pci_set_drvdata(instance->pdev, instance);
3120 instance->instancet->disable_intr(instance->reg_set);
3121 free_irq(instance->pdev->irq, instance);
3122
3123 pci_save_state(pdev);
3124 pci_disable_device(pdev);
3125
3126 pci_set_power_state(pdev, pci_choose_state(pdev, state));
3127
3128 return 0;
3129}
3130
3131/**
3132 * megasas_resume- driver resume entry point
3133 * @pdev: PCI device structure
3134 */
Jiri Slaby33139b22008-05-01 17:56:02 +02003135static int
bo yang31ea7082007-11-07 12:09:50 -05003136megasas_resume(struct pci_dev *pdev)
3137{
3138 int rval;
3139 struct Scsi_Host *host;
3140 struct megasas_instance *instance;
3141
3142 instance = pci_get_drvdata(pdev);
3143 host = instance->host;
3144 pci_set_power_state(pdev, PCI_D0);
3145 pci_enable_wake(pdev, PCI_D0, 0);
3146 pci_restore_state(pdev);
3147
3148 /*
3149 * PCI prepping: enable device set bus mastering and dma mask
3150 */
3151 rval = pci_enable_device(pdev);
3152
3153 if (rval) {
3154 printk(KERN_ERR "megasas: Enable device failed\n");
3155 return rval;
3156 }
3157
3158 pci_set_master(pdev);
3159
3160 if (megasas_set_dma_mask(pdev))
3161 goto fail_set_dma_mask;
3162
3163 /*
3164 * Initialize MFI Firmware
3165 */
3166
3167 *instance->producer = 0;
3168 *instance->consumer = 0;
3169
3170 atomic_set(&instance->fw_outstanding, 0);
3171
3172 /*
3173 * We expect the FW state to be READY
3174 */
3175 if (megasas_transition_to_ready(instance))
3176 goto fail_ready_state;
3177
3178 if (megasas_issue_init_mfi(instance))
3179 goto fail_init_mfi;
3180
3181 tasklet_init(&instance->isr_tasklet, megasas_complete_cmd_dpc,
3182 (unsigned long)instance);
3183
3184 /*
3185 * Register IRQ
3186 */
3187 if (request_irq(pdev->irq, megasas_isr, IRQF_SHARED,
3188 "megasas", instance)) {
3189 printk(KERN_ERR "megasas: Failed to register IRQ\n");
3190 goto fail_irq;
3191 }
3192
3193 instance->instancet->enable_intr(instance->reg_set);
3194
3195 /*
3196 * Initiate AEN (Asynchronous Event Notification)
3197 */
3198 if (megasas_start_aen(instance))
3199 printk(KERN_ERR "megasas: Start AEN failed\n");
3200
bo yangad84db22007-11-09 04:40:16 -05003201 /* Initialize the cmd completion timer */
3202 if (poll_mode_io)
3203 megasas_start_timer(instance, &instance->io_completion_timer,
3204 megasas_io_completion_timer,
3205 MEGASAS_COMPLETION_TIMER_INTERVAL);
bo yang31ea7082007-11-07 12:09:50 -05003206 return 0;
3207
3208fail_irq:
3209fail_init_mfi:
3210 if (instance->evt_detail)
3211 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
3212 instance->evt_detail,
3213 instance->evt_detail_h);
3214
3215 if (instance->producer)
3216 pci_free_consistent(pdev, sizeof(u32), instance->producer,
3217 instance->producer_h);
3218 if (instance->consumer)
3219 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
3220 instance->consumer_h);
3221 scsi_host_put(host);
3222
3223fail_set_dma_mask:
3224fail_ready_state:
3225
3226 pci_disable_device(pdev);
3227
3228 return -ENODEV;
3229}
Jiri Slaby33139b22008-05-01 17:56:02 +02003230#else
3231#define megasas_suspend NULL
3232#define megasas_resume NULL
3233#endif
bo yang31ea7082007-11-07 12:09:50 -05003234
3235/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003236 * megasas_detach_one - PCI hot"un"plug entry point
3237 * @pdev: PCI device structure
3238 */
Jiri Slaby33139b22008-05-01 17:56:02 +02003239static void __devexit megasas_detach_one(struct pci_dev *pdev)
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003240{
3241 int i;
3242 struct Scsi_Host *host;
3243 struct megasas_instance *instance;
3244
3245 instance = pci_get_drvdata(pdev);
Yang, Boc3518832009-10-06 14:18:02 -06003246 instance->unload = 1;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003247 host = instance->host;
3248
bo yangad84db22007-11-09 04:40:16 -05003249 if (poll_mode_io)
3250 del_timer_sync(&instance->io_completion_timer);
3251
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003252 scsi_remove_host(instance->host);
3253 megasas_flush_cache(instance);
bo yang31ea7082007-11-07 12:09:50 -05003254 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
Sumant Patro5d018ad2006-10-03 13:13:18 -07003255 tasklet_kill(&instance->isr_tasklet);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003256
3257 /*
3258 * Take the instance off the instance array. Note that we will not
3259 * decrement the max_index. We let this array be sparse array
3260 */
3261 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
3262 if (megasas_mgmt_info.instance[i] == instance) {
3263 megasas_mgmt_info.count--;
3264 megasas_mgmt_info.instance[i] = NULL;
3265
3266 break;
3267 }
3268 }
3269
3270 pci_set_drvdata(instance->pdev, NULL);
3271
Sumant Patrob274cab2006-10-03 12:52:12 -07003272 instance->instancet->disable_intr(instance->reg_set);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003273
3274 free_irq(instance->pdev->irq, instance);
3275
3276 megasas_release_mfi(instance);
3277
3278 pci_free_consistent(pdev, sizeof(struct megasas_evt_detail),
3279 instance->evt_detail, instance->evt_detail_h);
3280
3281 pci_free_consistent(pdev, sizeof(u32), instance->producer,
3282 instance->producer_h);
3283
3284 pci_free_consistent(pdev, sizeof(u32), instance->consumer,
3285 instance->consumer_h);
3286
3287 scsi_host_put(host);
3288
3289 pci_set_drvdata(pdev, NULL);
3290
3291 pci_disable_device(pdev);
3292
3293 return;
3294}
3295
3296/**
3297 * megasas_shutdown - Shutdown entry point
3298 * @device: Generic device structure
3299 */
3300static void megasas_shutdown(struct pci_dev *pdev)
3301{
3302 struct megasas_instance *instance = pci_get_drvdata(pdev);
3303 megasas_flush_cache(instance);
Yang, Bo530e6fc2008-08-10 12:42:37 -07003304 megasas_shutdown_controller(instance, MR_DCMD_CTRL_SHUTDOWN);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003305}
3306
3307/**
3308 * megasas_mgmt_open - char node "open" entry point
3309 */
3310static int megasas_mgmt_open(struct inode *inode, struct file *filep)
3311{
Jonathan Corbetf2b98572008-05-18 15:32:43 -06003312 cycle_kernel_lock();
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003313 /*
3314 * Allow only those users with admin rights
3315 */
3316 if (!capable(CAP_SYS_ADMIN))
3317 return -EACCES;
3318
3319 return 0;
3320}
3321
3322/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003323 * megasas_mgmt_fasync - Async notifier registration from applications
3324 *
3325 * This function adds the calling process to a driver global queue. When an
3326 * event occurs, SIGIO will be sent to all processes in this queue.
3327 */
3328static int megasas_mgmt_fasync(int fd, struct file *filep, int mode)
3329{
3330 int rc;
3331
Arjan van de Ven0b950672006-01-11 13:16:10 +01003332 mutex_lock(&megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003333
3334 rc = fasync_helper(fd, filep, mode, &megasas_async_queue);
3335
Arjan van de Ven0b950672006-01-11 13:16:10 +01003336 mutex_unlock(&megasas_async_queue_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003337
3338 if (rc >= 0) {
3339 /* For sanity check when we get ioctl */
3340 filep->private_data = filep;
3341 return 0;
3342 }
3343
3344 printk(KERN_DEBUG "megasas: fasync_helper failed [%d]\n", rc);
3345
3346 return rc;
3347}
3348
3349/**
Yang, Boc3518832009-10-06 14:18:02 -06003350 * megasas_mgmt_poll - char node "poll" entry point
3351 * */
3352static unsigned int megasas_mgmt_poll(struct file *file, poll_table *wait)
3353{
3354 unsigned int mask;
3355 unsigned long flags;
3356 poll_wait(file, &megasas_poll_wait, wait);
3357 spin_lock_irqsave(&poll_aen_lock, flags);
3358 if (megasas_poll_wait_aen)
3359 mask = (POLLIN | POLLRDNORM);
3360 else
3361 mask = 0;
3362 spin_unlock_irqrestore(&poll_aen_lock, flags);
3363 return mask;
3364}
3365
3366/**
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003367 * megasas_mgmt_fw_ioctl - Issues management ioctls to FW
3368 * @instance: Adapter soft state
3369 * @argp: User's ioctl packet
3370 */
3371static int
3372megasas_mgmt_fw_ioctl(struct megasas_instance *instance,
3373 struct megasas_iocpacket __user * user_ioc,
3374 struct megasas_iocpacket *ioc)
3375{
3376 struct megasas_sge32 *kern_sge32;
3377 struct megasas_cmd *cmd;
3378 void *kbuff_arr[MAX_IOCTL_SGE];
3379 dma_addr_t buf_handle = 0;
3380 int error = 0, i;
3381 void *sense = NULL;
3382 dma_addr_t sense_handle;
3383 u32 *sense_ptr;
3384
3385 memset(kbuff_arr, 0, sizeof(kbuff_arr));
3386
3387 if (ioc->sge_count > MAX_IOCTL_SGE) {
3388 printk(KERN_DEBUG "megasas: SGE count [%d] > max limit [%d]\n",
3389 ioc->sge_count, MAX_IOCTL_SGE);
3390 return -EINVAL;
3391 }
3392
3393 cmd = megasas_get_cmd(instance);
3394 if (!cmd) {
3395 printk(KERN_DEBUG "megasas: Failed to get a cmd packet\n");
3396 return -ENOMEM;
3397 }
3398
3399 /*
3400 * User's IOCTL packet has 2 frames (maximum). Copy those two
3401 * frames into our cmd's frames. cmd->frame's context will get
3402 * overwritten when we copy from user's frames. So set that value
3403 * alone separately
3404 */
3405 memcpy(cmd->frame, ioc->frame.raw, 2 * MEGAMFI_FRAME_SIZE);
3406 cmd->frame->hdr.context = cmd->index;
Yang, Boc3518832009-10-06 14:18:02 -06003407 cmd->frame->hdr.pad_0 = 0;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003408
3409 /*
3410 * The management interface between applications and the fw uses
3411 * MFI frames. E.g, RAID configuration changes, LD property changes
3412 * etc are accomplishes through different kinds of MFI frames. The
3413 * driver needs to care only about substituting user buffers with
3414 * kernel buffers in SGLs. The location of SGL is embedded in the
3415 * struct iocpacket itself.
3416 */
3417 kern_sge32 = (struct megasas_sge32 *)
3418 ((unsigned long)cmd->frame + ioc->sgl_off);
3419
3420 /*
3421 * For each user buffer, create a mirror buffer and copy in
3422 */
3423 for (i = 0; i < ioc->sge_count; i++) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08003424 kbuff_arr[i] = dma_alloc_coherent(&instance->pdev->dev,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003425 ioc->sgl[i].iov_len,
Sumant Patro9f35fa82007-02-14 12:55:45 -08003426 &buf_handle, GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003427 if (!kbuff_arr[i]) {
3428 printk(KERN_DEBUG "megasas: Failed to alloc "
3429 "kernel SGL buffer for IOCTL \n");
3430 error = -ENOMEM;
3431 goto out;
3432 }
3433
3434 /*
3435 * We don't change the dma_coherent_mask, so
3436 * pci_alloc_consistent only returns 32bit addresses
3437 */
3438 kern_sge32[i].phys_addr = (u32) buf_handle;
3439 kern_sge32[i].length = ioc->sgl[i].iov_len;
3440
3441 /*
3442 * We created a kernel buffer corresponding to the
3443 * user buffer. Now copy in from the user buffer
3444 */
3445 if (copy_from_user(kbuff_arr[i], ioc->sgl[i].iov_base,
3446 (u32) (ioc->sgl[i].iov_len))) {
3447 error = -EFAULT;
3448 goto out;
3449 }
3450 }
3451
3452 if (ioc->sense_len) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08003453 sense = dma_alloc_coherent(&instance->pdev->dev, ioc->sense_len,
3454 &sense_handle, GFP_KERNEL);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003455 if (!sense) {
3456 error = -ENOMEM;
3457 goto out;
3458 }
3459
3460 sense_ptr =
3461 (u32 *) ((unsigned long)cmd->frame + ioc->sense_off);
3462 *sense_ptr = sense_handle;
3463 }
3464
3465 /*
3466 * Set the sync_cmd flag so that the ISR knows not to complete this
3467 * cmd to the SCSI mid-layer
3468 */
3469 cmd->sync_cmd = 1;
3470 megasas_issue_blocked_cmd(instance, cmd);
3471 cmd->sync_cmd = 0;
3472
3473 /*
3474 * copy out the kernel buffers to user buffers
3475 */
3476 for (i = 0; i < ioc->sge_count; i++) {
3477 if (copy_to_user(ioc->sgl[i].iov_base, kbuff_arr[i],
3478 ioc->sgl[i].iov_len)) {
3479 error = -EFAULT;
3480 goto out;
3481 }
3482 }
3483
3484 /*
3485 * copy out the sense
3486 */
3487 if (ioc->sense_len) {
3488 /*
bo yangb70a41e2008-03-18 03:13:06 -04003489 * sense_ptr points to the location that has the user
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003490 * sense buffer address
3491 */
bo yangb70a41e2008-03-18 03:13:06 -04003492 sense_ptr = (u32 *) ((unsigned long)ioc->frame.raw +
3493 ioc->sense_off);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003494
bo yangb70a41e2008-03-18 03:13:06 -04003495 if (copy_to_user((void __user *)((unsigned long)(*sense_ptr)),
3496 sense, ioc->sense_len)) {
bo yangb10c36a2007-11-09 04:28:47 -05003497 printk(KERN_ERR "megasas: Failed to copy out to user "
3498 "sense data\n");
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003499 error = -EFAULT;
3500 goto out;
3501 }
3502 }
3503
3504 /*
3505 * copy the status codes returned by the fw
3506 */
3507 if (copy_to_user(&user_ioc->frame.hdr.cmd_status,
3508 &cmd->frame->hdr.cmd_status, sizeof(u8))) {
3509 printk(KERN_DEBUG "megasas: Error copying out cmd_status\n");
3510 error = -EFAULT;
3511 }
3512
3513 out:
3514 if (sense) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08003515 dma_free_coherent(&instance->pdev->dev, ioc->sense_len,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003516 sense, sense_handle);
3517 }
3518
3519 for (i = 0; i < ioc->sge_count && kbuff_arr[i]; i++) {
Sumant Patro9f35fa82007-02-14 12:55:45 -08003520 dma_free_coherent(&instance->pdev->dev,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003521 kern_sge32[i].length,
3522 kbuff_arr[i], kern_sge32[i].phys_addr);
3523 }
3524
3525 megasas_return_cmd(instance, cmd);
3526 return error;
3527}
3528
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003529static int megasas_mgmt_ioctl_fw(struct file *file, unsigned long arg)
3530{
3531 struct megasas_iocpacket __user *user_ioc =
3532 (struct megasas_iocpacket __user *)arg;
3533 struct megasas_iocpacket *ioc;
3534 struct megasas_instance *instance;
3535 int error;
3536
3537 ioc = kmalloc(sizeof(*ioc), GFP_KERNEL);
3538 if (!ioc)
3539 return -ENOMEM;
3540
3541 if (copy_from_user(ioc, user_ioc, sizeof(*ioc))) {
3542 error = -EFAULT;
3543 goto out_kfree_ioc;
3544 }
3545
3546 instance = megasas_lookup_instance(ioc->host_no);
3547 if (!instance) {
3548 error = -ENODEV;
3549 goto out_kfree_ioc;
3550 }
3551
3552 /*
3553 * We will allow only MEGASAS_INT_CMDS number of parallel ioctl cmds
3554 */
3555 if (down_interruptible(&instance->ioctl_sem)) {
3556 error = -ERESTARTSYS;
3557 goto out_kfree_ioc;
3558 }
3559 error = megasas_mgmt_fw_ioctl(instance, user_ioc, ioc);
3560 up(&instance->ioctl_sem);
3561
3562 out_kfree_ioc:
3563 kfree(ioc);
3564 return error;
3565}
3566
3567static int megasas_mgmt_ioctl_aen(struct file *file, unsigned long arg)
3568{
3569 struct megasas_instance *instance;
3570 struct megasas_aen aen;
3571 int error;
3572
3573 if (file->private_data != file) {
3574 printk(KERN_DEBUG "megasas: fasync_helper was not "
3575 "called first\n");
3576 return -EINVAL;
3577 }
3578
3579 if (copy_from_user(&aen, (void __user *)arg, sizeof(aen)))
3580 return -EFAULT;
3581
3582 instance = megasas_lookup_instance(aen.host_no);
3583
3584 if (!instance)
3585 return -ENODEV;
3586
Matthias Kaehlckee5a69e22007-10-27 09:48:46 +02003587 mutex_lock(&instance->aen_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003588 error = megasas_register_aen(instance, aen.seq_num,
3589 aen.class_locale_word);
Matthias Kaehlckee5a69e22007-10-27 09:48:46 +02003590 mutex_unlock(&instance->aen_mutex);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003591 return error;
3592}
3593
3594/**
3595 * megasas_mgmt_ioctl - char node ioctl entry point
3596 */
3597static long
3598megasas_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3599{
3600 switch (cmd) {
3601 case MEGASAS_IOC_FIRMWARE:
3602 return megasas_mgmt_ioctl_fw(file, arg);
3603
3604 case MEGASAS_IOC_GET_AEN:
3605 return megasas_mgmt_ioctl_aen(file, arg);
3606 }
3607
3608 return -ENOTTY;
3609}
3610
3611#ifdef CONFIG_COMPAT
3612static int megasas_mgmt_compat_ioctl_fw(struct file *file, unsigned long arg)
3613{
3614 struct compat_megasas_iocpacket __user *cioc =
3615 (struct compat_megasas_iocpacket __user *)arg;
3616 struct megasas_iocpacket __user *ioc =
3617 compat_alloc_user_space(sizeof(struct megasas_iocpacket));
3618 int i;
3619 int error = 0;
3620
Jeff Garzik83aabc12006-10-04 06:34:03 -04003621 if (clear_user(ioc, sizeof(*ioc)))
3622 return -EFAULT;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003623
3624 if (copy_in_user(&ioc->host_no, &cioc->host_no, sizeof(u16)) ||
3625 copy_in_user(&ioc->sgl_off, &cioc->sgl_off, sizeof(u32)) ||
3626 copy_in_user(&ioc->sense_off, &cioc->sense_off, sizeof(u32)) ||
3627 copy_in_user(&ioc->sense_len, &cioc->sense_len, sizeof(u32)) ||
3628 copy_in_user(ioc->frame.raw, cioc->frame.raw, 128) ||
3629 copy_in_user(&ioc->sge_count, &cioc->sge_count, sizeof(u32)))
3630 return -EFAULT;
3631
3632 for (i = 0; i < MAX_IOCTL_SGE; i++) {
3633 compat_uptr_t ptr;
3634
3635 if (get_user(ptr, &cioc->sgl[i].iov_base) ||
3636 put_user(compat_ptr(ptr), &ioc->sgl[i].iov_base) ||
3637 copy_in_user(&ioc->sgl[i].iov_len,
3638 &cioc->sgl[i].iov_len, sizeof(compat_size_t)))
3639 return -EFAULT;
3640 }
3641
3642 error = megasas_mgmt_ioctl_fw(file, (unsigned long)ioc);
3643
3644 if (copy_in_user(&cioc->frame.hdr.cmd_status,
3645 &ioc->frame.hdr.cmd_status, sizeof(u8))) {
3646 printk(KERN_DEBUG "megasas: error copy_in_user cmd_status\n");
3647 return -EFAULT;
3648 }
3649 return error;
3650}
3651
3652static long
3653megasas_mgmt_compat_ioctl(struct file *file, unsigned int cmd,
3654 unsigned long arg)
3655{
3656 switch (cmd) {
Sumant Patrocb59aa62006-01-25 11:53:25 -08003657 case MEGASAS_IOC_FIRMWARE32:
3658 return megasas_mgmt_compat_ioctl_fw(file, arg);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003659 case MEGASAS_IOC_GET_AEN:
3660 return megasas_mgmt_ioctl_aen(file, arg);
3661 }
3662
3663 return -ENOTTY;
3664}
3665#endif
3666
3667/*
3668 * File operations structure for management interface
3669 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08003670static const struct file_operations megasas_mgmt_fops = {
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003671 .owner = THIS_MODULE,
3672 .open = megasas_mgmt_open,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003673 .fasync = megasas_mgmt_fasync,
3674 .unlocked_ioctl = megasas_mgmt_ioctl,
Yang, Boc3518832009-10-06 14:18:02 -06003675 .poll = megasas_mgmt_poll,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003676#ifdef CONFIG_COMPAT
3677 .compat_ioctl = megasas_mgmt_compat_ioctl,
3678#endif
3679};
3680
3681/*
3682 * PCI hotplug support registration structure
3683 */
3684static struct pci_driver megasas_pci_driver = {
3685
3686 .name = "megaraid_sas",
3687 .id_table = megasas_pci_table,
3688 .probe = megasas_probe_one,
3689 .remove = __devexit_p(megasas_detach_one),
bo yang31ea7082007-11-07 12:09:50 -05003690 .suspend = megasas_suspend,
3691 .resume = megasas_resume,
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003692 .shutdown = megasas_shutdown,
3693};
3694
3695/*
3696 * Sysfs driver attributes
3697 */
3698static ssize_t megasas_sysfs_show_version(struct device_driver *dd, char *buf)
3699{
3700 return snprintf(buf, strlen(MEGASAS_VERSION) + 2, "%s\n",
3701 MEGASAS_VERSION);
3702}
3703
3704static DRIVER_ATTR(version, S_IRUGO, megasas_sysfs_show_version, NULL);
3705
3706static ssize_t
3707megasas_sysfs_show_release_date(struct device_driver *dd, char *buf)
3708{
3709 return snprintf(buf, strlen(MEGASAS_RELDATE) + 2, "%s\n",
3710 MEGASAS_RELDATE);
3711}
3712
3713static DRIVER_ATTR(release_date, S_IRUGO, megasas_sysfs_show_release_date,
3714 NULL);
3715
Sumant Patro658dced2006-10-03 13:09:14 -07003716static ssize_t
Yang, Bo72c4fd32009-10-06 14:20:59 -06003717megasas_sysfs_show_support_poll_for_event(struct device_driver *dd, char *buf)
3718{
3719 return sprintf(buf, "%u\n", support_poll_for_event);
3720}
3721
3722static DRIVER_ATTR(support_poll_for_event, S_IRUGO,
3723 megasas_sysfs_show_support_poll_for_event, NULL);
3724
3725static ssize_t
Sumant Patro658dced2006-10-03 13:09:14 -07003726megasas_sysfs_show_dbg_lvl(struct device_driver *dd, char *buf)
3727{
bo yangad84db22007-11-09 04:40:16 -05003728 return sprintf(buf, "%u\n", megasas_dbg_lvl);
Sumant Patro658dced2006-10-03 13:09:14 -07003729}
3730
3731static ssize_t
3732megasas_sysfs_set_dbg_lvl(struct device_driver *dd, const char *buf, size_t count)
3733{
3734 int retval = count;
3735 if(sscanf(buf,"%u",&megasas_dbg_lvl)<1){
3736 printk(KERN_ERR "megasas: could not set dbg_lvl\n");
3737 retval = -EINVAL;
3738 }
3739 return retval;
3740}
3741
Joe Malicki66dca9b2008-08-14 17:14:48 -04003742static DRIVER_ATTR(dbg_lvl, S_IRUGO|S_IWUSR, megasas_sysfs_show_dbg_lvl,
bo yangad84db22007-11-09 04:40:16 -05003743 megasas_sysfs_set_dbg_lvl);
3744
3745static ssize_t
3746megasas_sysfs_show_poll_mode_io(struct device_driver *dd, char *buf)
3747{
3748 return sprintf(buf, "%u\n", poll_mode_io);
3749}
3750
3751static ssize_t
3752megasas_sysfs_set_poll_mode_io(struct device_driver *dd,
3753 const char *buf, size_t count)
3754{
3755 int retval = count;
3756 int tmp = poll_mode_io;
3757 int i;
3758 struct megasas_instance *instance;
3759
3760 if (sscanf(buf, "%u", &poll_mode_io) < 1) {
3761 printk(KERN_ERR "megasas: could not set poll_mode_io\n");
3762 retval = -EINVAL;
3763 }
3764
3765 /*
3766 * Check if poll_mode_io is already set or is same as previous value
3767 */
3768 if ((tmp && poll_mode_io) || (tmp == poll_mode_io))
3769 goto out;
3770
3771 if (poll_mode_io) {
3772 /*
3773 * Start timers for all adapters
3774 */
3775 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
3776 instance = megasas_mgmt_info.instance[i];
3777 if (instance) {
3778 megasas_start_timer(instance,
3779 &instance->io_completion_timer,
3780 megasas_io_completion_timer,
3781 MEGASAS_COMPLETION_TIMER_INTERVAL);
3782 }
3783 }
3784 } else {
3785 /*
3786 * Delete timers for all adapters
3787 */
3788 for (i = 0; i < megasas_mgmt_info.max_index; i++) {
3789 instance = megasas_mgmt_info.instance[i];
3790 if (instance)
3791 del_timer_sync(&instance->io_completion_timer);
3792 }
3793 }
3794
3795out:
3796 return retval;
3797}
3798
3799static DRIVER_ATTR(poll_mode_io, S_IRUGO|S_IWUGO,
3800 megasas_sysfs_show_poll_mode_io,
3801 megasas_sysfs_set_poll_mode_io);
Sumant Patro658dced2006-10-03 13:09:14 -07003802
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003803/**
3804 * megasas_init - Driver load entry point
3805 */
3806static int __init megasas_init(void)
3807{
3808 int rval;
3809
3810 /*
3811 * Announce driver version and other information
3812 */
3813 printk(KERN_INFO "megasas: %s %s\n", MEGASAS_VERSION,
3814 MEGASAS_EXT_VERSION);
3815
Yang, Bo72c4fd32009-10-06 14:20:59 -06003816 support_poll_for_event = 2;
3817
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003818 memset(&megasas_mgmt_info, 0, sizeof(megasas_mgmt_info));
3819
3820 /*
3821 * Register character device node
3822 */
3823 rval = register_chrdev(0, "megaraid_sas_ioctl", &megasas_mgmt_fops);
3824
3825 if (rval < 0) {
3826 printk(KERN_DEBUG "megasas: failed to open device node\n");
3827 return rval;
3828 }
3829
3830 megasas_mgmt_majorno = rval;
3831
3832 /*
3833 * Register ourselves as PCI hotplug module
3834 */
Michal Piotrowski4041b9c2006-08-17 13:28:22 +00003835 rval = pci_register_driver(&megasas_pci_driver);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003836
3837 if (rval) {
3838 printk(KERN_DEBUG "megasas: PCI hotplug regisration failed \n");
Jeff Garzik83aabc12006-10-04 06:34:03 -04003839 goto err_pcidrv;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003840 }
3841
Jeff Garzik83aabc12006-10-04 06:34:03 -04003842 rval = driver_create_file(&megasas_pci_driver.driver,
3843 &driver_attr_version);
3844 if (rval)
3845 goto err_dcf_attr_ver;
3846 rval = driver_create_file(&megasas_pci_driver.driver,
3847 &driver_attr_release_date);
3848 if (rval)
3849 goto err_dcf_rel_date;
Yang, Bo72c4fd32009-10-06 14:20:59 -06003850
3851 rval = driver_create_file(&megasas_pci_driver.driver,
3852 &driver_attr_support_poll_for_event);
3853 if (rval)
3854 goto err_dcf_support_poll_for_event;
3855
Jeff Garzik83aabc12006-10-04 06:34:03 -04003856 rval = driver_create_file(&megasas_pci_driver.driver,
3857 &driver_attr_dbg_lvl);
3858 if (rval)
3859 goto err_dcf_dbg_lvl;
bo yangad84db22007-11-09 04:40:16 -05003860 rval = driver_create_file(&megasas_pci_driver.driver,
3861 &driver_attr_poll_mode_io);
3862 if (rval)
3863 goto err_dcf_poll_mode_io;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003864
3865 return rval;
bo yangad84db22007-11-09 04:40:16 -05003866
3867err_dcf_poll_mode_io:
3868 driver_remove_file(&megasas_pci_driver.driver,
3869 &driver_attr_dbg_lvl);
Jeff Garzik83aabc12006-10-04 06:34:03 -04003870err_dcf_dbg_lvl:
3871 driver_remove_file(&megasas_pci_driver.driver,
Yang, Bo72c4fd32009-10-06 14:20:59 -06003872 &driver_attr_support_poll_for_event);
3873
3874err_dcf_support_poll_for_event:
3875 driver_remove_file(&megasas_pci_driver.driver,
Jeff Garzik83aabc12006-10-04 06:34:03 -04003876 &driver_attr_release_date);
Yang, Bo72c4fd32009-10-06 14:20:59 -06003877
Jeff Garzik83aabc12006-10-04 06:34:03 -04003878err_dcf_rel_date:
3879 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
3880err_dcf_attr_ver:
3881 pci_unregister_driver(&megasas_pci_driver);
3882err_pcidrv:
3883 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
3884 return rval;
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003885}
3886
3887/**
3888 * megasas_exit - Driver unload entry point
3889 */
3890static void __exit megasas_exit(void)
3891{
Sumant Patro658dced2006-10-03 13:09:14 -07003892 driver_remove_file(&megasas_pci_driver.driver,
bo yangad84db22007-11-09 04:40:16 -05003893 &driver_attr_poll_mode_io);
3894 driver_remove_file(&megasas_pci_driver.driver,
Sumant Patro658dced2006-10-03 13:09:14 -07003895 &driver_attr_dbg_lvl);
Jeff Garzik83aabc12006-10-04 06:34:03 -04003896 driver_remove_file(&megasas_pci_driver.driver,
3897 &driver_attr_release_date);
3898 driver_remove_file(&megasas_pci_driver.driver, &driver_attr_version);
Bagalkote, Sreenivasc4a3e0a2005-09-20 17:46:58 -04003899
3900 pci_unregister_driver(&megasas_pci_driver);
3901 unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
3902}
3903
3904module_init(megasas_init);
3905module_exit(megasas_exit);