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 struct device_attribute
*mvst_host_attrs
[];
32 static struct scsi_host_template mvs_sht
= {
33 .module
= THIS_MODULE
,
35 .queuecommand
= sas_queuecommand
,
36 .target_alloc
= sas_target_alloc
,
37 .slave_configure
= sas_slave_configure
,
38 .scan_finished
= mvs_scan_finished
,
39 .scan_start
= mvs_scan_start
,
40 .change_queue_depth
= sas_change_queue_depth
,
41 .bios_param
= sas_bios_param
,
44 .sg_tablesize
= SG_ALL
,
45 .max_sectors
= SCSI_DEFAULT_MAX_SECTORS
,
46 .eh_device_reset_handler
= sas_eh_device_reset_handler
,
47 .eh_target_reset_handler
= sas_eh_target_reset_handler
,
48 .target_destroy
= sas_target_destroy
,
51 .compat_ioctl
= sas_ioctl
,
53 .shost_attrs
= mvst_host_attrs
,
54 .track_queue_depth
= 1,
57 static struct sas_domain_function_template mvs_transport_ops
= {
58 .lldd_dev_found
= mvs_dev_found
,
59 .lldd_dev_gone
= mvs_dev_gone
,
60 .lldd_execute_task
= mvs_queue_command
,
61 .lldd_control_phy
= mvs_phy_control
,
63 .lldd_abort_task
= mvs_abort_task
,
64 .lldd_abort_task_set
= mvs_abort_task_set
,
65 .lldd_clear_aca
= mvs_clear_aca
,
66 .lldd_clear_task_set
= mvs_clear_task_set
,
67 .lldd_I_T_nexus_reset
= mvs_I_T_nexus_reset
,
68 .lldd_lu_reset
= mvs_lu_reset
,
69 .lldd_query_task
= mvs_query_task
,
70 .lldd_port_formed
= mvs_port_formed
,
71 .lldd_port_deformed
= mvs_port_deformed
,
73 .lldd_write_gpio
= mvs_gpio_write
,
77 static void mvs_phy_init(struct mvs_info
*mvi
, int phy_id
)
79 struct mvs_phy
*phy
= &mvi
->phy
[phy_id
];
80 struct asd_sas_phy
*sas_phy
= &phy
->sas_phy
;
84 timer_setup(&phy
->timer
, NULL
, 0);
85 sas_phy
->enabled
= (phy_id
< mvi
->chip
->n_phy
) ? 1 : 0;
87 sas_phy
->iproto
= SAS_PROTOCOL_ALL
;
89 sas_phy
->type
= PHY_TYPE_PHYSICAL
;
90 sas_phy
->role
= PHY_ROLE_INITIATOR
;
91 sas_phy
->oob_mode
= OOB_NOT_CONNECTED
;
92 sas_phy
->linkrate
= SAS_LINK_RATE_UNKNOWN
;
95 sas_phy
->sas_addr
= &mvi
->sas_addr
[0];
96 sas_phy
->frame_rcvd
= &phy
->frame_rcvd
[0];
97 sas_phy
->ha
= (struct sas_ha_struct
*)mvi
->shost
->hostdata
;
98 sas_phy
->lldd_phy
= phy
;
101 static void mvs_free(struct mvs_info
*mvi
)
109 if (mvi
->flags
& MVF_FLAG_SOC
)
110 slot_nr
= MVS_SOC_SLOTS
;
112 slot_nr
= MVS_CHIP_SLOT_SZ
;
114 dma_pool_destroy(mvi
->dma_pool
);
117 dma_free_coherent(mvi
->dev
,
118 sizeof(*mvi
->tx
) * MVS_CHIP_SLOT_SZ
,
119 mvi
->tx
, mvi
->tx_dma
);
121 dma_free_coherent(mvi
->dev
, MVS_RX_FISL_SZ
,
122 mvi
->rx_fis
, mvi
->rx_fis_dma
);
124 dma_free_coherent(mvi
->dev
,
125 sizeof(*mvi
->rx
) * (MVS_RX_RING_SZ
+ 1),
126 mvi
->rx
, mvi
->rx_dma
);
128 dma_free_coherent(mvi
->dev
,
129 sizeof(*mvi
->slot
) * slot_nr
,
130 mvi
->slot
, mvi
->slot_dma
);
132 if (mvi
->bulk_buffer
)
133 dma_free_coherent(mvi
->dev
, TRASH_BUCKET_SIZE
,
134 mvi
->bulk_buffer
, mvi
->bulk_buffer_dma
);
135 if (mvi
->bulk_buffer1
)
136 dma_free_coherent(mvi
->dev
, TRASH_BUCKET_SIZE
,
137 mvi
->bulk_buffer1
, mvi
->bulk_buffer_dma1
);
139 MVS_CHIP_DISP
->chip_iounmap(mvi
);
141 scsi_host_put(mvi
->shost
);
142 list_for_each_entry(mwq
, &mvi
->wq_list
, entry
)
143 cancel_delayed_work(&mwq
->work_q
);
148 #ifdef CONFIG_SCSI_MVSAS_TASKLET
149 static void mvs_tasklet(unsigned long opaque
)
154 struct mvs_info
*mvi
;
155 struct sas_ha_struct
*sha
= (struct sas_ha_struct
*)opaque
;
157 core_nr
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
;
158 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[0];
163 stat
= MVS_CHIP_DISP
->isr_status(mvi
, mvi
->pdev
->irq
);
167 for (i
= 0; i
< core_nr
; i
++) {
168 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[i
];
169 MVS_CHIP_DISP
->isr(mvi
, mvi
->pdev
->irq
, stat
);
172 MVS_CHIP_DISP
->interrupt_enable(mvi
);
177 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
;
188 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[0];
192 #ifdef CONFIG_SCSI_MVSAS_TASKLET
193 MVS_CHIP_DISP
->interrupt_disable(mvi
);
196 stat
= MVS_CHIP_DISP
->isr_status(mvi
, irq
);
198 #ifdef CONFIG_SCSI_MVSAS_TASKLET
199 MVS_CHIP_DISP
->interrupt_enable(mvi
);
204 #ifdef CONFIG_SCSI_MVSAS_TASKLET
205 tasklet_schedule(&((struct mvs_prv_info
*)sha
->lldd_ha
)->mv_tasklet
);
207 for (i
= 0; i
< core_nr
; i
++) {
208 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[i
];
209 MVS_CHIP_DISP
->isr(mvi
, irq
, stat
);
215 static int mvs_alloc(struct mvs_info
*mvi
, struct Scsi_Host
*shost
)
220 if (mvi
->flags
& MVF_FLAG_SOC
)
221 slot_nr
= MVS_SOC_SLOTS
;
223 slot_nr
= MVS_CHIP_SLOT_SZ
;
225 spin_lock_init(&mvi
->lock
);
226 for (i
= 0; i
< mvi
->chip
->n_phy
; i
++) {
227 mvs_phy_init(mvi
, i
);
228 mvi
->port
[i
].wide_port_phymap
= 0;
229 mvi
->port
[i
].port_attached
= 0;
230 INIT_LIST_HEAD(&mvi
->port
[i
].list
);
232 for (i
= 0; i
< MVS_MAX_DEVICES
; i
++) {
233 mvi
->devices
[i
].taskfileset
= MVS_ID_NOT_MAPPED
;
234 mvi
->devices
[i
].dev_type
= SAS_PHY_UNUSED
;
235 mvi
->devices
[i
].device_id
= i
;
236 mvi
->devices
[i
].dev_status
= MVS_DEV_NORMAL
;
240 * alloc and init our DMA areas
242 mvi
->tx
= dma_alloc_coherent(mvi
->dev
,
243 sizeof(*mvi
->tx
) * MVS_CHIP_SLOT_SZ
,
244 &mvi
->tx_dma
, GFP_KERNEL
);
247 memset(mvi
->tx
, 0, sizeof(*mvi
->tx
) * MVS_CHIP_SLOT_SZ
);
248 mvi
->rx_fis
= dma_alloc_coherent(mvi
->dev
, MVS_RX_FISL_SZ
,
249 &mvi
->rx_fis_dma
, GFP_KERNEL
);
252 memset(mvi
->rx_fis
, 0, MVS_RX_FISL_SZ
);
254 mvi
->rx
= dma_alloc_coherent(mvi
->dev
,
255 sizeof(*mvi
->rx
) * (MVS_RX_RING_SZ
+ 1),
256 &mvi
->rx_dma
, GFP_KERNEL
);
259 memset(mvi
->rx
, 0, sizeof(*mvi
->rx
) * (MVS_RX_RING_SZ
+ 1));
260 mvi
->rx
[0] = cpu_to_le32(0xfff);
261 mvi
->rx_cons
= 0xfff;
263 mvi
->slot
= dma_alloc_coherent(mvi
->dev
,
264 sizeof(*mvi
->slot
) * slot_nr
,
265 &mvi
->slot_dma
, GFP_KERNEL
);
268 memset(mvi
->slot
, 0, sizeof(*mvi
->slot
) * slot_nr
);
270 mvi
->bulk_buffer
= dma_alloc_coherent(mvi
->dev
,
272 &mvi
->bulk_buffer_dma
, GFP_KERNEL
);
273 if (!mvi
->bulk_buffer
)
276 mvi
->bulk_buffer1
= dma_alloc_coherent(mvi
->dev
,
278 &mvi
->bulk_buffer_dma1
, GFP_KERNEL
);
279 if (!mvi
->bulk_buffer1
)
282 sprintf(pool_name
, "%s%d", "mvs_dma_pool", mvi
->id
);
283 mvi
->dma_pool
= dma_pool_create(pool_name
, &mvi
->pdev
->dev
,
284 MVS_SLOT_BUF_SZ
, 16, 0);
285 if (!mvi
->dma_pool
) {
286 printk(KERN_DEBUG
"failed to create dma pool %s.\n", pool_name
);
289 mvi
->tags_num
= slot_nr
;
291 /* Initialize tags */
299 int mvs_ioremap(struct mvs_info
*mvi
, int bar
, int bar_ex
)
301 unsigned long res_start
, res_len
, res_flag
, res_flag_ex
= 0;
302 struct pci_dev
*pdev
= mvi
->pdev
;
305 * ioremap main and peripheral registers
307 res_start
= pci_resource_start(pdev
, bar_ex
);
308 res_len
= pci_resource_len(pdev
, bar_ex
);
309 if (!res_start
|| !res_len
)
312 res_flag_ex
= pci_resource_flags(pdev
, bar_ex
);
313 if (res_flag_ex
& IORESOURCE_MEM
)
314 mvi
->regs_ex
= ioremap(res_start
, res_len
);
316 mvi
->regs_ex
= (void *)res_start
;
321 res_start
= pci_resource_start(pdev
, bar
);
322 res_len
= pci_resource_len(pdev
, bar
);
323 if (!res_start
|| !res_len
) {
324 iounmap(mvi
->regs_ex
);
329 res_flag
= pci_resource_flags(pdev
, bar
);
330 mvi
->regs
= ioremap(res_start
, res_len
);
333 if (mvi
->regs_ex
&& (res_flag_ex
& IORESOURCE_MEM
))
334 iounmap(mvi
->regs_ex
);
344 void mvs_iounmap(void __iomem
*regs
)
349 static struct mvs_info
*mvs_pci_alloc(struct pci_dev
*pdev
,
350 const struct pci_device_id
*ent
,
351 struct Scsi_Host
*shost
, unsigned int id
)
353 struct mvs_info
*mvi
= NULL
;
354 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
356 mvi
= kzalloc(sizeof(*mvi
) +
357 (1L << mvs_chips
[ent
->driver_data
].slot_width
) *
358 sizeof(struct mvs_slot_info
), GFP_KERNEL
);
363 mvi
->dev
= &pdev
->dev
;
364 mvi
->chip_id
= ent
->driver_data
;
365 mvi
->chip
= &mvs_chips
[mvi
->chip_id
];
366 INIT_LIST_HEAD(&mvi
->wq_list
);
368 ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[id
] = mvi
;
369 ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_phy
= mvi
->chip
->n_phy
;
375 mvi
->tags
= kzalloc(MVS_CHIP_SLOT_SZ
>>3, GFP_KERNEL
);
379 if (MVS_CHIP_DISP
->chip_ioremap(mvi
))
381 if (!mvs_alloc(mvi
, shost
))
388 static int pci_go_64(struct pci_dev
*pdev
)
392 rc
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(64));
394 rc
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
396 dev_printk(KERN_ERR
, &pdev
->dev
,
397 "32-bit DMA enable failed\n");
405 static int mvs_prep_sas_ha_init(struct Scsi_Host
*shost
,
406 const struct mvs_chip_info
*chip_info
)
408 int phy_nr
, port_nr
; unsigned short core_nr
;
409 struct asd_sas_phy
**arr_phy
;
410 struct asd_sas_port
**arr_port
;
411 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
413 core_nr
= chip_info
->n_host
;
414 phy_nr
= core_nr
* chip_info
->n_phy
;
417 memset(sha
, 0x00, sizeof(struct sas_ha_struct
));
418 arr_phy
= kcalloc(phy_nr
, sizeof(void *), GFP_KERNEL
);
419 arr_port
= kcalloc(port_nr
, sizeof(void *), GFP_KERNEL
);
420 if (!arr_phy
|| !arr_port
)
423 sha
->sas_phy
= arr_phy
;
424 sha
->sas_port
= arr_port
;
425 sha
->core
.shost
= shost
;
427 sha
->lldd_ha
= kzalloc(sizeof(struct mvs_prv_info
), GFP_KERNEL
);
431 ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
= core_nr
;
433 shost
->transportt
= mvs_stt
;
434 shost
->max_id
= MVS_MAX_DEVICES
;
436 shost
->max_channel
= 1;
437 shost
->max_cmd_len
= 16;
447 static void mvs_post_sas_ha_init(struct Scsi_Host
*shost
,
448 const struct mvs_chip_info
*chip_info
)
450 int can_queue
, i
= 0, j
= 0;
451 struct mvs_info
*mvi
= NULL
;
452 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
453 unsigned short nr_core
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
;
455 for (j
= 0; j
< nr_core
; j
++) {
456 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[j
];
457 for (i
= 0; i
< chip_info
->n_phy
; i
++) {
458 sha
->sas_phy
[j
* chip_info
->n_phy
+ i
] =
459 &mvi
->phy
[i
].sas_phy
;
460 sha
->sas_port
[j
* chip_info
->n_phy
+ i
] =
461 &mvi
->port
[i
].sas_port
;
465 sha
->sas_ha_name
= DRV_NAME
;
467 sha
->lldd_module
= THIS_MODULE
;
468 sha
->sas_addr
= &mvi
->sas_addr
[0];
470 sha
->num_phys
= nr_core
* chip_info
->n_phy
;
472 if (mvi
->flags
& MVF_FLAG_SOC
)
473 can_queue
= MVS_SOC_CAN_QUEUE
;
475 can_queue
= MVS_CHIP_SLOT_SZ
;
477 shost
->sg_tablesize
= min_t(u16
, SG_ALL
, MVS_MAX_SG
);
478 shost
->can_queue
= can_queue
;
479 mvi
->shost
->cmd_per_lun
= MVS_QUEUE_SIZE
;
480 sha
->core
.shost
= mvi
->shost
;
483 static void mvs_init_sas_add(struct mvs_info
*mvi
)
486 for (i
= 0; i
< mvi
->chip
->n_phy
; i
++) {
487 mvi
->phy
[i
].dev_sas_addr
= 0x5005043011ab0000ULL
;
488 mvi
->phy
[i
].dev_sas_addr
=
489 cpu_to_be64((u64
)(*(u64
*)&mvi
->phy
[i
].dev_sas_addr
));
492 memcpy(mvi
->sas_addr
, &mvi
->phy
[0].dev_sas_addr
, SAS_ADDR_SIZE
);
495 static int mvs_pci_init(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
497 unsigned int rc
, nhost
= 0;
498 struct mvs_info
*mvi
;
499 struct mvs_prv_info
*mpi
;
500 irq_handler_t irq_handler
= mvs_interrupt
;
501 struct Scsi_Host
*shost
= NULL
;
502 const struct mvs_chip_info
*chip
;
504 dev_printk(KERN_INFO
, &pdev
->dev
,
505 "mvsas: driver version %s\n", DRV_VERSION
);
506 rc
= pci_enable_device(pdev
);
510 pci_set_master(pdev
);
512 rc
= pci_request_regions(pdev
, DRV_NAME
);
514 goto err_out_disable
;
516 rc
= pci_go_64(pdev
);
518 goto err_out_regions
;
520 shost
= scsi_host_alloc(&mvs_sht
, sizeof(void *));
523 goto err_out_regions
;
526 chip
= &mvs_chips
[ent
->driver_data
];
527 SHOST_TO_SAS_HA(shost
) =
528 kcalloc(1, sizeof(struct sas_ha_struct
), GFP_KERNEL
);
529 if (!SHOST_TO_SAS_HA(shost
)) {
530 scsi_host_put(shost
);
532 goto err_out_regions
;
535 rc
= mvs_prep_sas_ha_init(shost
, chip
);
537 scsi_host_put(shost
);
539 goto err_out_regions
;
542 pci_set_drvdata(pdev
, SHOST_TO_SAS_HA(shost
));
545 mvi
= mvs_pci_alloc(pdev
, ent
, shost
, nhost
);
548 goto err_out_regions
;
551 memset(&mvi
->hba_info_param
, 0xFF,
552 sizeof(struct hba_info_page
));
554 mvs_init_sas_add(mvi
);
556 mvi
->instance
= nhost
;
557 rc
= MVS_CHIP_DISP
->chip_init(mvi
);
560 goto err_out_regions
;
563 } while (nhost
< chip
->n_host
);
564 mpi
= (struct mvs_prv_info
*)(SHOST_TO_SAS_HA(shost
)->lldd_ha
);
565 #ifdef CONFIG_SCSI_MVSAS_TASKLET
566 tasklet_init(&(mpi
->mv_tasklet
), mvs_tasklet
,
567 (unsigned long)SHOST_TO_SAS_HA(shost
));
570 mvs_post_sas_ha_init(shost
, chip
);
572 rc
= scsi_add_host(shost
, &pdev
->dev
);
576 rc
= sas_register_ha(SHOST_TO_SAS_HA(shost
));
579 rc
= request_irq(pdev
->irq
, irq_handler
, IRQF_SHARED
,
580 DRV_NAME
, SHOST_TO_SAS_HA(shost
));
584 MVS_CHIP_DISP
->interrupt_enable(mvi
);
586 scsi_scan_host(mvi
->shost
);
591 sas_unregister_ha(SHOST_TO_SAS_HA(shost
));
593 scsi_remove_host(mvi
->shost
);
595 pci_release_regions(pdev
);
597 pci_disable_device(pdev
);
602 static void mvs_pci_remove(struct pci_dev
*pdev
)
604 unsigned short core_nr
, i
= 0;
605 struct sas_ha_struct
*sha
= pci_get_drvdata(pdev
);
606 struct mvs_info
*mvi
= NULL
;
608 core_nr
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
;
609 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[0];
611 #ifdef CONFIG_SCSI_MVSAS_TASKLET
612 tasklet_kill(&((struct mvs_prv_info
*)sha
->lldd_ha
)->mv_tasklet
);
615 sas_unregister_ha(sha
);
616 sas_remove_host(mvi
->shost
);
618 MVS_CHIP_DISP
->interrupt_disable(mvi
);
619 free_irq(mvi
->pdev
->irq
, sha
);
620 for (i
= 0; i
< core_nr
; i
++) {
621 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[i
];
625 kfree(sha
->sas_port
);
627 pci_release_regions(pdev
);
628 pci_disable_device(pdev
);
632 static struct pci_device_id mvs_pci_table
[] = {
633 { PCI_VDEVICE(MARVELL
, 0x6320), chip_6320
},
634 { PCI_VDEVICE(MARVELL
, 0x6340), chip_6440
},
636 .vendor
= PCI_VENDOR_ID_MARVELL
,
638 .subvendor
= PCI_ANY_ID
,
642 .driver_data
= chip_6485
,
644 { PCI_VDEVICE(MARVELL
, 0x6440), chip_6440
},
645 { PCI_VDEVICE(MARVELL
, 0x6485), chip_6485
},
646 { PCI_VDEVICE(MARVELL
, 0x9480), chip_9480
},
647 { PCI_VDEVICE(MARVELL
, 0x9180), chip_9180
},
648 { PCI_VDEVICE(ARECA
, PCI_DEVICE_ID_ARECA_1300
), chip_1300
},
649 { PCI_VDEVICE(ARECA
, PCI_DEVICE_ID_ARECA_1320
), chip_1320
},
650 { PCI_VDEVICE(ADAPTEC2
, 0x0450), chip_6440
},
651 { PCI_VDEVICE(TTI
, 0x2710), chip_9480
},
652 { PCI_VDEVICE(TTI
, 0x2720), chip_9480
},
653 { PCI_VDEVICE(TTI
, 0x2721), chip_9480
},
654 { PCI_VDEVICE(TTI
, 0x2722), chip_9480
},
655 { PCI_VDEVICE(TTI
, 0x2740), chip_9480
},
656 { PCI_VDEVICE(TTI
, 0x2744), chip_9480
},
657 { PCI_VDEVICE(TTI
, 0x2760), chip_9480
},
659 .vendor
= PCI_VENDOR_ID_MARVELL_EXT
,
661 .subvendor
= PCI_ANY_ID
,
665 .driver_data
= chip_9480
,
668 .vendor
= PCI_VENDOR_ID_MARVELL_EXT
,
670 .subvendor
= PCI_ANY_ID
,
674 .driver_data
= chip_9445
,
676 { PCI_VDEVICE(MARVELL_EXT
, 0x9485), chip_9485
}, /* Marvell 9480/9485 (any vendor/model) */
677 { PCI_VDEVICE(OCZ
, 0x1021), chip_9485
}, /* OCZ RevoDrive3 */
678 { PCI_VDEVICE(OCZ
, 0x1022), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
679 { PCI_VDEVICE(OCZ
, 0x1040), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
680 { PCI_VDEVICE(OCZ
, 0x1041), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
681 { PCI_VDEVICE(OCZ
, 0x1042), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
682 { PCI_VDEVICE(OCZ
, 0x1043), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
683 { PCI_VDEVICE(OCZ
, 0x1044), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
684 { PCI_VDEVICE(OCZ
, 0x1080), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
685 { PCI_VDEVICE(OCZ
, 0x1083), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
686 { PCI_VDEVICE(OCZ
, 0x1084), chip_9485
}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
688 { } /* terminate list */
691 static struct pci_driver mvs_pci_driver
= {
693 .id_table
= mvs_pci_table
,
694 .probe
= mvs_pci_init
,
695 .remove
= mvs_pci_remove
,
699 mvs_show_driver_version(struct device
*cdev
,
700 struct device_attribute
*attr
, char *buffer
)
702 return snprintf(buffer
, PAGE_SIZE
, "%s\n", DRV_VERSION
);
705 static DEVICE_ATTR(driver_version
,
707 mvs_show_driver_version
,
711 mvs_store_interrupt_coalescing(struct device
*cdev
,
712 struct device_attribute
*attr
,
713 const char *buffer
, size_t size
)
715 unsigned int val
= 0;
716 struct mvs_info
*mvi
= NULL
;
717 struct Scsi_Host
*shost
= class_to_shost(cdev
);
718 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
723 if (sscanf(buffer
, "%u", &val
) != 1)
726 if (val
>= 0x10000) {
727 mv_dprintk("interrupt coalescing timer %d us is"
729 return strlen(buffer
);
732 interrupt_coalescing
= val
;
734 core_nr
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->n_host
;
735 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[0];
740 for (i
= 0; i
< core_nr
; i
++) {
741 mvi
= ((struct mvs_prv_info
*)sha
->lldd_ha
)->mvi
[i
];
742 if (MVS_CHIP_DISP
->tune_interrupt
)
743 MVS_CHIP_DISP
->tune_interrupt(mvi
,
744 interrupt_coalescing
);
746 mv_dprintk("set interrupt coalescing time to %d us\n",
747 interrupt_coalescing
);
748 return strlen(buffer
);
751 static ssize_t
mvs_show_interrupt_coalescing(struct device
*cdev
,
752 struct device_attribute
*attr
, char *buffer
)
754 return snprintf(buffer
, PAGE_SIZE
, "%d\n", interrupt_coalescing
);
757 static DEVICE_ATTR(interrupt_coalescing
,
759 mvs_show_interrupt_coalescing
,
760 mvs_store_interrupt_coalescing
);
763 struct task_struct
*mvs_th
;
764 static int __init
mvs_init(void)
767 mvs_stt
= sas_domain_attach_transport(&mvs_transport_ops
);
771 rc
= pci_register_driver(&mvs_pci_driver
);
778 sas_release_transport(mvs_stt
);
782 static void __exit
mvs_exit(void)
784 pci_unregister_driver(&mvs_pci_driver
);
785 sas_release_transport(mvs_stt
);
788 struct device_attribute
*mvst_host_attrs
[] = {
789 &dev_attr_driver_version
,
790 &dev_attr_interrupt_coalescing
,
794 module_init(mvs_init
);
795 module_exit(mvs_exit
);
797 MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
798 MODULE_DESCRIPTION("Marvell 88SE6440 SAS/SATA controller driver");
799 MODULE_VERSION(DRV_VERSION
);
800 MODULE_LICENSE("GPL");
802 MODULE_DEVICE_TABLE(pci
, mvs_pci_table
);