1 // SPDX-License-Identifier: GPL-2.0-only
3 * Marvell 88SE64xx/88SE94xx pci init
5 * Copyright 2007 Red Hat, Inc.
6 * Copyright 2008 Marvell. <kewei@marvell.com>
7 * Copyright 2009-2011 Marvell. <yuxiangl@marvell.com>
13 int interrupt_coalescing
= 0x80;
15 static struct scsi_transport_template
*mvs_stt
;
16 static const struct mvs_chip_info mvs_chips
[] = {
17 [chip_6320
] = { 1, 2, 0x400, 17, 16, 6, 9, &mvs_64xx_dispatch
, },
18 [chip_6440
] = { 1, 4, 0x400, 17, 16, 6, 9, &mvs_64xx_dispatch
, },
19 [chip_6485
] = { 1, 8, 0x800, 33, 32, 6, 10, &mvs_64xx_dispatch
, },
20 [chip_9180
] = { 2, 4, 0x800, 17, 64, 8, 9, &mvs_94xx_dispatch
, },
21 [chip_9480
] = { 2, 4, 0x800, 17, 64, 8, 9, &mvs_94xx_dispatch
, },
22 [chip_9445
] = { 1, 4, 0x800, 17, 64, 8, 11, &mvs_94xx_dispatch
, },
23 [chip_9485
] = { 2, 4, 0x800, 17, 64, 8, 11, &mvs_94xx_dispatch
, },
24 [chip_1300
] = { 1, 4, 0x400, 17, 16, 6, 9, &mvs_64xx_dispatch
, },
25 [chip_1320
] = { 2, 4, 0x800, 17, 64, 8, 9, &mvs_94xx_dispatch
, },
28 static struct device_attribute
*mvst_host_attrs
[];
32 static struct scsi_host_template mvs_sht
= {
33 .module
= THIS_MODULE
,
35 .queuecommand
= sas_queuecommand
,
36 .dma_need_drain
= ata_scsi_dma_need_drain
,
37 .target_alloc
= sas_target_alloc
,
38 .slave_configure
= sas_slave_configure
,
39 .scan_finished
= mvs_scan_finished
,
40 .scan_start
= mvs_scan_start
,
41 .change_queue_depth
= sas_change_queue_depth
,
42 .bios_param
= sas_bios_param
,
45 .sg_tablesize
= SG_ALL
,
46 .max_sectors
= SCSI_DEFAULT_MAX_SECTORS
,
47 .eh_device_reset_handler
= sas_eh_device_reset_handler
,
48 .eh_target_reset_handler
= sas_eh_target_reset_handler
,
49 .target_destroy
= sas_target_destroy
,
52 .compat_ioctl
= sas_ioctl
,
54 .shost_attrs
= mvst_host_attrs
,
55 .track_queue_depth
= 1,
58 static struct sas_domain_function_template mvs_transport_ops
= {
59 .lldd_dev_found
= mvs_dev_found
,
60 .lldd_dev_gone
= mvs_dev_gone
,
61 .lldd_execute_task
= mvs_queue_command
,
62 .lldd_control_phy
= mvs_phy_control
,
64 .lldd_abort_task
= mvs_abort_task
,
65 .lldd_abort_task_set
= mvs_abort_task_set
,
66 .lldd_clear_aca
= mvs_clear_aca
,
67 .lldd_clear_task_set
= mvs_clear_task_set
,
68 .lldd_I_T_nexus_reset
= mvs_I_T_nexus_reset
,
69 .lldd_lu_reset
= mvs_lu_reset
,
70 .lldd_query_task
= mvs_query_task
,
71 .lldd_port_formed
= mvs_port_formed
,
72 .lldd_port_deformed
= mvs_port_deformed
,
74 .lldd_write_gpio
= mvs_gpio_write
,
78 static void mvs_phy_init(struct mvs_info
*mvi
, int phy_id
)
80 struct mvs_phy
*phy
= &mvi
->phy
[phy_id
];
81 struct asd_sas_phy
*sas_phy
= &phy
->sas_phy
;
85 timer_setup(&phy
->timer
, NULL
, 0);
86 sas_phy
->enabled
= (phy_id
< mvi
->chip
->n_phy
) ? 1 : 0;
88 sas_phy
->iproto
= SAS_PROTOCOL_ALL
;
90 sas_phy
->type
= PHY_TYPE_PHYSICAL
;
91 sas_phy
->role
= PHY_ROLE_INITIATOR
;
92 sas_phy
->oob_mode
= OOB_NOT_CONNECTED
;
93 sas_phy
->linkrate
= SAS_LINK_RATE_UNKNOWN
;
96 sas_phy
->sas_addr
= &mvi
->sas_addr
[0];
97 sas_phy
->frame_rcvd
= &phy
->frame_rcvd
[0];
98 sas_phy
->ha
= (struct sas_ha_struct
*)mvi
->shost
->hostdata
;
99 sas_phy
->lldd_phy
= phy
;
102 static void mvs_free(struct mvs_info
*mvi
)
110 if (mvi
->flags
& MVF_FLAG_SOC
)
111 slot_nr
= MVS_SOC_SLOTS
;
113 slot_nr
= MVS_CHIP_SLOT_SZ
;
115 dma_pool_destroy(mvi
->dma_pool
);
118 dma_free_coherent(mvi
->dev
,
119 sizeof(*mvi
->tx
) * MVS_CHIP_SLOT_SZ
,
120 mvi
->tx
, mvi
->tx_dma
);
122 dma_free_coherent(mvi
->dev
, MVS_RX_FISL_SZ
,
123 mvi
->rx_fis
, mvi
->rx_fis_dma
);
125 dma_free_coherent(mvi
->dev
,
126 sizeof(*mvi
->rx
) * (MVS_RX_RING_SZ
+ 1),
127 mvi
->rx
, mvi
->rx_dma
);
129 dma_free_coherent(mvi
->dev
,
130 sizeof(*mvi
->slot
) * slot_nr
,
131 mvi
->slot
, mvi
->slot_dma
);
133 if (mvi
->bulk_buffer
)
134 dma_free_coherent(mvi
->dev
, TRASH_BUCKET_SIZE
,
135 mvi
->bulk_buffer
, mvi
->bulk_buffer_dma
);
136 if (mvi
->bulk_buffer1
)
137 dma_free_coherent(mvi
->dev
, TRASH_BUCKET_SIZE
,
138 mvi
->bulk_buffer1
, mvi
->bulk_buffer_dma1
);
140 MVS_CHIP_DISP
->chip_iounmap(mvi
);
142 scsi_host_put(mvi
->shost
);
143 list_for_each_entry(mwq
, &mvi
->wq_list
, entry
)
144 cancel_delayed_work(&mwq
->work_q
);
149 #ifdef CONFIG_SCSI_MVSAS_TASKLET
150 static void mvs_tasklet(unsigned long opaque
)
155 struct mvs_info
*mvi
;
156 struct sas_ha_struct
*sha
= (struct sas_ha_struct
*)opaque
;
158 core_nr
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
;
159 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[0];
164 stat
= MVS_CHIP_DISP
->isr_status(mvi
, mvi
->pdev
->irq
);
168 for (i
= 0; i
< core_nr
; i
++) {
169 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[i
];
170 MVS_CHIP_DISP
->isr(mvi
, mvi
->pdev
->irq
, stat
);
173 MVS_CHIP_DISP
->interrupt_enable(mvi
);
178 static irqreturn_t
mvs_interrupt(int irq
, void *opaque
)
181 struct mvs_info
*mvi
;
182 struct sas_ha_struct
*sha
= opaque
;
183 #ifndef CONFIG_SCSI_MVSAS_TASKLET
187 core_nr
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
;
190 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[0];
194 #ifdef CONFIG_SCSI_MVSAS_TASKLET
195 MVS_CHIP_DISP
->interrupt_disable(mvi
);
198 stat
= MVS_CHIP_DISP
->isr_status(mvi
, irq
);
200 #ifdef CONFIG_SCSI_MVSAS_TASKLET
201 MVS_CHIP_DISP
->interrupt_enable(mvi
);
206 #ifdef CONFIG_SCSI_MVSAS_TASKLET
207 tasklet_schedule(&((struct mvs_prv_info
*)sha
->lldd_ha
)->mv_tasklet
);
209 for (i
= 0; i
< core_nr
; i
++) {
210 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[i
];
211 MVS_CHIP_DISP
->isr(mvi
, irq
, stat
);
217 static int mvs_alloc(struct mvs_info
*mvi
, struct Scsi_Host
*shost
)
222 if (mvi
->flags
& MVF_FLAG_SOC
)
223 slot_nr
= MVS_SOC_SLOTS
;
225 slot_nr
= MVS_CHIP_SLOT_SZ
;
227 spin_lock_init(&mvi
->lock
);
228 for (i
= 0; i
< mvi
->chip
->n_phy
; i
++) {
229 mvs_phy_init(mvi
, i
);
230 mvi
->port
[i
].wide_port_phymap
= 0;
231 mvi
->port
[i
].port_attached
= 0;
232 INIT_LIST_HEAD(&mvi
->port
[i
].list
);
234 for (i
= 0; i
< MVS_MAX_DEVICES
; i
++) {
235 mvi
->devices
[i
].taskfileset
= MVS_ID_NOT_MAPPED
;
236 mvi
->devices
[i
].dev_type
= SAS_PHY_UNUSED
;
237 mvi
->devices
[i
].device_id
= i
;
238 mvi
->devices
[i
].dev_status
= MVS_DEV_NORMAL
;
242 * alloc and init our DMA areas
244 mvi
->tx
= dma_alloc_coherent(mvi
->dev
,
245 sizeof(*mvi
->tx
) * MVS_CHIP_SLOT_SZ
,
246 &mvi
->tx_dma
, GFP_KERNEL
);
249 mvi
->rx_fis
= dma_alloc_coherent(mvi
->dev
, MVS_RX_FISL_SZ
,
250 &mvi
->rx_fis_dma
, GFP_KERNEL
);
254 mvi
->rx
= dma_alloc_coherent(mvi
->dev
,
255 sizeof(*mvi
->rx
) * (MVS_RX_RING_SZ
+ 1),
256 &mvi
->rx_dma
, GFP_KERNEL
);
259 mvi
->rx
[0] = cpu_to_le32(0xfff);
260 mvi
->rx_cons
= 0xfff;
262 mvi
->slot
= dma_alloc_coherent(mvi
->dev
,
263 sizeof(*mvi
->slot
) * slot_nr
,
264 &mvi
->slot_dma
, GFP_KERNEL
);
268 mvi
->bulk_buffer
= dma_alloc_coherent(mvi
->dev
,
270 &mvi
->bulk_buffer_dma
, GFP_KERNEL
);
271 if (!mvi
->bulk_buffer
)
274 mvi
->bulk_buffer1
= dma_alloc_coherent(mvi
->dev
,
276 &mvi
->bulk_buffer_dma1
, GFP_KERNEL
);
277 if (!mvi
->bulk_buffer1
)
280 sprintf(pool_name
, "%s%d", "mvs_dma_pool", mvi
->id
);
281 mvi
->dma_pool
= dma_pool_create(pool_name
, &mvi
->pdev
->dev
,
282 MVS_SLOT_BUF_SZ
, 16, 0);
283 if (!mvi
->dma_pool
) {
284 printk(KERN_DEBUG
"failed to create dma pool %s.\n", pool_name
);
287 mvi
->tags_num
= slot_nr
;
289 /* Initialize tags */
297 int mvs_ioremap(struct mvs_info
*mvi
, int bar
, int bar_ex
)
299 unsigned long res_start
, res_len
, res_flag_ex
= 0;
300 struct pci_dev
*pdev
= mvi
->pdev
;
303 * ioremap main and peripheral registers
305 res_start
= pci_resource_start(pdev
, bar_ex
);
306 res_len
= pci_resource_len(pdev
, bar_ex
);
307 if (!res_start
|| !res_len
)
310 res_flag_ex
= pci_resource_flags(pdev
, bar_ex
);
311 if (res_flag_ex
& IORESOURCE_MEM
)
312 mvi
->regs_ex
= ioremap(res_start
, res_len
);
314 mvi
->regs_ex
= (void *)res_start
;
319 res_start
= pci_resource_start(pdev
, bar
);
320 res_len
= pci_resource_len(pdev
, bar
);
321 if (!res_start
|| !res_len
) {
322 iounmap(mvi
->regs_ex
);
327 mvi
->regs
= ioremap(res_start
, res_len
);
330 if (mvi
->regs_ex
&& (res_flag_ex
& IORESOURCE_MEM
))
331 iounmap(mvi
->regs_ex
);
341 void mvs_iounmap(void __iomem
*regs
)
346 static struct mvs_info
*mvs_pci_alloc(struct pci_dev
*pdev
,
347 const struct pci_device_id
*ent
,
348 struct Scsi_Host
*shost
, unsigned int id
)
350 struct mvs_info
*mvi
= NULL
;
351 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
353 mvi
= kzalloc(sizeof(*mvi
) +
354 (1L << mvs_chips
[ent
->driver_data
].slot_width
) *
355 sizeof(struct mvs_slot_info
), GFP_KERNEL
);
360 mvi
->dev
= &pdev
->dev
;
361 mvi
->chip_id
= ent
->driver_data
;
362 mvi
->chip
= &mvs_chips
[mvi
->chip_id
];
363 INIT_LIST_HEAD(&mvi
->wq_list
);
365 ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[id
] = mvi
;
366 ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_phy
= mvi
->chip
->n_phy
;
372 mvi
->tags
= kzalloc(MVS_CHIP_SLOT_SZ
>>3, GFP_KERNEL
);
376 if (MVS_CHIP_DISP
->chip_ioremap(mvi
))
378 if (!mvs_alloc(mvi
, shost
))
385 static int pci_go_64(struct pci_dev
*pdev
)
389 rc
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(64));
391 rc
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
393 dev_printk(KERN_ERR
, &pdev
->dev
,
394 "32-bit DMA enable failed\n");
402 static int mvs_prep_sas_ha_init(struct Scsi_Host
*shost
,
403 const struct mvs_chip_info
*chip_info
)
405 int phy_nr
, port_nr
; unsigned short core_nr
;
406 struct asd_sas_phy
**arr_phy
;
407 struct asd_sas_port
**arr_port
;
408 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
410 core_nr
= chip_info
->n_host
;
411 phy_nr
= core_nr
* chip_info
->n_phy
;
414 memset(sha
, 0x00, sizeof(struct sas_ha_struct
));
415 arr_phy
= kcalloc(phy_nr
, sizeof(void *), GFP_KERNEL
);
416 arr_port
= kcalloc(port_nr
, sizeof(void *), GFP_KERNEL
);
417 if (!arr_phy
|| !arr_port
)
420 sha
->sas_phy
= arr_phy
;
421 sha
->sas_port
= arr_port
;
422 sha
->core
.shost
= shost
;
424 sha
->lldd_ha
= kzalloc(sizeof(struct mvs_prv_info
), GFP_KERNEL
);
428 ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
= core_nr
;
430 shost
->transportt
= mvs_stt
;
431 shost
->max_id
= MVS_MAX_DEVICES
;
433 shost
->max_channel
= 1;
434 shost
->max_cmd_len
= 16;
444 static void mvs_post_sas_ha_init(struct Scsi_Host
*shost
,
445 const struct mvs_chip_info
*chip_info
)
447 int can_queue
, i
= 0, j
= 0;
448 struct mvs_info
*mvi
= NULL
;
449 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
450 unsigned short nr_core
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
;
452 for (j
= 0; j
< nr_core
; j
++) {
453 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[j
];
454 for (i
= 0; i
< chip_info
->n_phy
; i
++) {
455 sha
->sas_phy
[j
* chip_info
->n_phy
+ i
] =
456 &mvi
->phy
[i
].sas_phy
;
457 sha
->sas_port
[j
* chip_info
->n_phy
+ i
] =
458 &mvi
->port
[i
].sas_port
;
462 sha
->sas_ha_name
= DRV_NAME
;
464 sha
->lldd_module
= THIS_MODULE
;
465 sha
->sas_addr
= &mvi
->sas_addr
[0];
467 sha
->num_phys
= nr_core
* chip_info
->n_phy
;
469 if (mvi
->flags
& MVF_FLAG_SOC
)
470 can_queue
= MVS_SOC_CAN_QUEUE
;
472 can_queue
= MVS_CHIP_SLOT_SZ
;
474 shost
->sg_tablesize
= min_t(u16
, SG_ALL
, MVS_MAX_SG
);
475 shost
->can_queue
= can_queue
;
476 mvi
->shost
->cmd_per_lun
= MVS_QUEUE_SIZE
;
477 sha
->core
.shost
= mvi
->shost
;
480 static void mvs_init_sas_add(struct mvs_info
*mvi
)
483 for (i
= 0; i
< mvi
->chip
->n_phy
; i
++) {
484 mvi
->phy
[i
].dev_sas_addr
= 0x5005043011ab0000ULL
;
485 mvi
->phy
[i
].dev_sas_addr
=
486 cpu_to_be64((u64
)(*(u64
*)&mvi
->phy
[i
].dev_sas_addr
));
489 memcpy(mvi
->sas_addr
, &mvi
->phy
[0].dev_sas_addr
, SAS_ADDR_SIZE
);
492 static int mvs_pci_init(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
494 unsigned int rc
, nhost
= 0;
495 struct mvs_info
*mvi
;
496 struct mvs_prv_info
*mpi
;
497 irq_handler_t irq_handler
= mvs_interrupt
;
498 struct Scsi_Host
*shost
= NULL
;
499 const struct mvs_chip_info
*chip
;
501 dev_printk(KERN_INFO
, &pdev
->dev
,
502 "mvsas: driver version %s\n", DRV_VERSION
);
503 rc
= pci_enable_device(pdev
);
507 pci_set_master(pdev
);
509 rc
= pci_request_regions(pdev
, DRV_NAME
);
511 goto err_out_disable
;
513 rc
= pci_go_64(pdev
);
515 goto err_out_regions
;
517 shost
= scsi_host_alloc(&mvs_sht
, sizeof(void *));
520 goto err_out_regions
;
523 chip
= &mvs_chips
[ent
->driver_data
];
524 SHOST_TO_SAS_HA(shost
) =
525 kcalloc(1, sizeof(struct sas_ha_struct
), GFP_KERNEL
);
526 if (!SHOST_TO_SAS_HA(shost
)) {
527 scsi_host_put(shost
);
529 goto err_out_regions
;
532 rc
= mvs_prep_sas_ha_init(shost
, chip
);
534 scsi_host_put(shost
);
536 goto err_out_regions
;
539 pci_set_drvdata(pdev
, SHOST_TO_SAS_HA(shost
));
542 mvi
= mvs_pci_alloc(pdev
, ent
, shost
, nhost
);
545 goto err_out_regions
;
548 memset(&mvi
->hba_info_param
, 0xFF,
549 sizeof(struct hba_info_page
));
551 mvs_init_sas_add(mvi
);
553 mvi
->instance
= nhost
;
554 rc
= MVS_CHIP_DISP
->chip_init(mvi
);
557 goto err_out_regions
;
560 } while (nhost
< chip
->n_host
);
561 mpi
= (struct mvs_prv_info
*)(SHOST_TO_SAS_HA(shost
)->lldd_ha
);
562 #ifdef CONFIG_SCSI_MVSAS_TASKLET
563 tasklet_init(&(mpi
->mv_tasklet
), mvs_tasklet
,
564 (unsigned long)SHOST_TO_SAS_HA(shost
));
567 mvs_post_sas_ha_init(shost
, chip
);
569 rc
= scsi_add_host(shost
, &pdev
->dev
);
573 rc
= sas_register_ha(SHOST_TO_SAS_HA(shost
));
576 rc
= request_irq(pdev
->irq
, irq_handler
, IRQF_SHARED
,
577 DRV_NAME
, SHOST_TO_SAS_HA(shost
));
581 MVS_CHIP_DISP
->interrupt_enable(mvi
);
583 scsi_scan_host(mvi
->shost
);
588 sas_unregister_ha(SHOST_TO_SAS_HA(shost
));
590 scsi_remove_host(mvi
->shost
);
592 pci_release_regions(pdev
);
594 pci_disable_device(pdev
);
599 static void mvs_pci_remove(struct pci_dev
*pdev
)
601 unsigned short core_nr
, i
= 0;
602 struct sas_ha_struct
*sha
= pci_get_drvdata(pdev
);
603 struct mvs_info
*mvi
= NULL
;
605 core_nr
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
;
606 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[0];
608 #ifdef CONFIG_SCSI_MVSAS_TASKLET
609 tasklet_kill(&((struct mvs_prv_info
*)sha
->lldd_ha
)->mv_tasklet
);
612 sas_unregister_ha(sha
);
613 sas_remove_host(mvi
->shost
);
615 MVS_CHIP_DISP
->interrupt_disable(mvi
);
616 free_irq(mvi
->pdev
->irq
, sha
);
617 for (i
= 0; i
< core_nr
; i
++) {
618 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[i
];
622 kfree(sha
->sas_port
);
624 pci_release_regions(pdev
);
625 pci_disable_device(pdev
);
629 static struct pci_device_id mvs_pci_table
[] = {
630 { PCI_VDEVICE(MARVELL
, 0x6320), chip_6320
},
631 { PCI_VDEVICE(MARVELL
, 0x6340), chip_6440
},
633 .vendor
= PCI_VENDOR_ID_MARVELL
,
635 .subvendor
= PCI_ANY_ID
,
639 .driver_data
= chip_6485
,
641 { PCI_VDEVICE(MARVELL
, 0x6440), chip_6440
},
642 { PCI_VDEVICE(MARVELL
, 0x6485), chip_6485
},
643 { PCI_VDEVICE(MARVELL
, 0x9480), chip_9480
},
644 { PCI_VDEVICE(MARVELL
, 0x9180), chip_9180
},
645 { PCI_VDEVICE(ARECA
, PCI_DEVICE_ID_ARECA_1300
), chip_1300
},
646 { PCI_VDEVICE(ARECA
, PCI_DEVICE_ID_ARECA_1320
), chip_1320
},
647 { PCI_VDEVICE(ADAPTEC2
, 0x0450), chip_6440
},
648 { PCI_VDEVICE(TTI
, 0x2710), chip_9480
},
649 { PCI_VDEVICE(TTI
, 0x2720), chip_9480
},
650 { PCI_VDEVICE(TTI
, 0x2721), chip_9480
},
651 { PCI_VDEVICE(TTI
, 0x2722), chip_9480
},
652 { PCI_VDEVICE(TTI
, 0x2740), chip_9480
},
653 { PCI_VDEVICE(TTI
, 0x2744), chip_9480
},
654 { PCI_VDEVICE(TTI
, 0x2760), chip_9480
},
656 .vendor
= PCI_VENDOR_ID_MARVELL_EXT
,
658 .subvendor
= PCI_ANY_ID
,
662 .driver_data
= chip_9480
,
665 .vendor
= PCI_VENDOR_ID_MARVELL_EXT
,
667 .subvendor
= PCI_ANY_ID
,
671 .driver_data
= chip_9445
,
673 { PCI_VDEVICE(MARVELL_EXT
, 0x9485), chip_9485
}, /* Marvell 9480/9485 (any vendor/model) */
674 { PCI_VDEVICE(OCZ
, 0x1021), chip_9485
}, /* OCZ RevoDrive3 */
675 { PCI_VDEVICE(OCZ
, 0x1022), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
676 { PCI_VDEVICE(OCZ
, 0x1040), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
677 { PCI_VDEVICE(OCZ
, 0x1041), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
678 { PCI_VDEVICE(OCZ
, 0x1042), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
679 { PCI_VDEVICE(OCZ
, 0x1043), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
680 { PCI_VDEVICE(OCZ
, 0x1044), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
681 { PCI_VDEVICE(OCZ
, 0x1080), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
682 { PCI_VDEVICE(OCZ
, 0x1083), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
683 { PCI_VDEVICE(OCZ
, 0x1084), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
685 { } /* terminate list */
688 static struct pci_driver mvs_pci_driver
= {
690 .id_table
= mvs_pci_table
,
691 .probe
= mvs_pci_init
,
692 .remove
= mvs_pci_remove
,
696 mvs_show_driver_version(struct device
*cdev
,
697 struct device_attribute
*attr
, char *buffer
)
699 return snprintf(buffer
, PAGE_SIZE
, "%s\n", DRV_VERSION
);
702 static DEVICE_ATTR(driver_version
,
704 mvs_show_driver_version
,
708 mvs_store_interrupt_coalescing(struct device
*cdev
,
709 struct device_attribute
*attr
,
710 const char *buffer
, size_t size
)
712 unsigned int val
= 0;
713 struct mvs_info
*mvi
= NULL
;
714 struct Scsi_Host
*shost
= class_to_shost(cdev
);
715 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
720 if (sscanf(buffer
, "%u", &val
) != 1)
723 if (val
>= 0x10000) {
724 mv_dprintk("interrupt coalescing timer %d us is"
726 return strlen(buffer
);
729 interrupt_coalescing
= val
;
731 core_nr
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
;
732 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[0];
737 for (i
= 0; i
< core_nr
; i
++) {
738 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[i
];
739 if (MVS_CHIP_DISP
->tune_interrupt
)
740 MVS_CHIP_DISP
->tune_interrupt(mvi
,
741 interrupt_coalescing
);
743 mv_dprintk("set interrupt coalescing time to %d us\n",
744 interrupt_coalescing
);
745 return strlen(buffer
);
748 static ssize_t
mvs_show_interrupt_coalescing(struct device
*cdev
,
749 struct device_attribute
*attr
, char *buffer
)
751 return snprintf(buffer
, PAGE_SIZE
, "%d\n", interrupt_coalescing
);
754 static DEVICE_ATTR(interrupt_coalescing
,
756 mvs_show_interrupt_coalescing
,
757 mvs_store_interrupt_coalescing
);
759 static int __init
mvs_init(void)
762 mvs_stt
= sas_domain_attach_transport(&mvs_transport_ops
);
766 rc
= pci_register_driver(&mvs_pci_driver
);
773 sas_release_transport(mvs_stt
);
777 static void __exit
mvs_exit(void)
779 pci_unregister_driver(&mvs_pci_driver
);
780 sas_release_transport(mvs_stt
);
783 static struct device_attribute
*mvst_host_attrs
[] = {
784 &dev_attr_driver_version
,
785 &dev_attr_interrupt_coalescing
,
789 module_init(mvs_init
);
790 module_exit(mvs_exit
);
792 MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
793 MODULE_DESCRIPTION("Marvell 88SE6440 SAS/SATA controller driver");
794 MODULE_VERSION(DRV_VERSION
);
795 MODULE_LICENSE("GPL");
797 MODULE_DEVICE_TABLE(pci
, mvs_pci_table
);