drm/i915: range-restricted eviction support
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / mvsas / mv_init.c
blob19ad34f381a59e5b08264eb28398b3d7cf1e4f63
1 /*
2 * Marvell 88SE64xx/88SE94xx pci init
4 * Copyright 2007 Red Hat, Inc.
5 * Copyright 2008 Marvell. <kewei@marvell.com>
7 * This file is licensed under GPLv2.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; version 2 of the
12 * License.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
26 #include "mv_sas.h"
28 static struct scsi_transport_template *mvs_stt;
29 static const struct mvs_chip_info mvs_chips[] = {
30 [chip_6320] = { 1, 2, 0x400, 17, 16, 9, &mvs_64xx_dispatch, },
31 [chip_6440] = { 1, 4, 0x400, 17, 16, 9, &mvs_64xx_dispatch, },
32 [chip_6485] = { 1, 8, 0x800, 33, 32, 10, &mvs_64xx_dispatch, },
33 [chip_9180] = { 2, 4, 0x800, 17, 64, 9, &mvs_94xx_dispatch, },
34 [chip_9480] = { 2, 4, 0x800, 17, 64, 9, &mvs_94xx_dispatch, },
35 [chip_1300] = { 1, 4, 0x400, 17, 16, 9, &mvs_64xx_dispatch, },
36 [chip_1320] = { 2, 4, 0x800, 17, 64, 9, &mvs_94xx_dispatch, },
39 #define SOC_SAS_NUM 2
40 #define SG_MX 64
42 static struct scsi_host_template mvs_sht = {
43 .module = THIS_MODULE,
44 .name = DRV_NAME,
45 .queuecommand = sas_queuecommand,
46 .target_alloc = sas_target_alloc,
47 .slave_configure = mvs_slave_configure,
48 .slave_destroy = sas_slave_destroy,
49 .scan_finished = mvs_scan_finished,
50 .scan_start = mvs_scan_start,
51 .change_queue_depth = sas_change_queue_depth,
52 .change_queue_type = sas_change_queue_type,
53 .bios_param = sas_bios_param,
54 .can_queue = 1,
55 .cmd_per_lun = 1,
56 .this_id = -1,
57 .sg_tablesize = SG_MX,
58 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
59 .use_clustering = ENABLE_CLUSTERING,
60 .eh_device_reset_handler = sas_eh_device_reset_handler,
61 .eh_bus_reset_handler = sas_eh_bus_reset_handler,
62 .slave_alloc = mvs_slave_alloc,
63 .target_destroy = sas_target_destroy,
64 .ioctl = sas_ioctl,
67 static struct sas_domain_function_template mvs_transport_ops = {
68 .lldd_dev_found = mvs_dev_found,
69 .lldd_dev_gone = mvs_dev_gone,
70 .lldd_execute_task = mvs_queue_command,
71 .lldd_control_phy = mvs_phy_control,
73 .lldd_abort_task = mvs_abort_task,
74 .lldd_abort_task_set = mvs_abort_task_set,
75 .lldd_clear_aca = mvs_clear_aca,
76 .lldd_clear_task_set = mvs_clear_task_set,
77 .lldd_I_T_nexus_reset = mvs_I_T_nexus_reset,
78 .lldd_lu_reset = mvs_lu_reset,
79 .lldd_query_task = mvs_query_task,
80 .lldd_port_formed = mvs_port_formed,
81 .lldd_port_deformed = mvs_port_deformed,
85 static void __devinit mvs_phy_init(struct mvs_info *mvi, int phy_id)
87 struct mvs_phy *phy = &mvi->phy[phy_id];
88 struct asd_sas_phy *sas_phy = &phy->sas_phy;
90 phy->mvi = mvi;
91 init_timer(&phy->timer);
92 sas_phy->enabled = (phy_id < mvi->chip->n_phy) ? 1 : 0;
93 sas_phy->class = SAS;
94 sas_phy->iproto = SAS_PROTOCOL_ALL;
95 sas_phy->tproto = 0;
96 sas_phy->type = PHY_TYPE_PHYSICAL;
97 sas_phy->role = PHY_ROLE_INITIATOR;
98 sas_phy->oob_mode = OOB_NOT_CONNECTED;
99 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
101 sas_phy->id = phy_id;
102 sas_phy->sas_addr = &mvi->sas_addr[0];
103 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
104 sas_phy->ha = (struct sas_ha_struct *)mvi->shost->hostdata;
105 sas_phy->lldd_phy = phy;
108 static void mvs_free(struct mvs_info *mvi)
110 int i;
111 struct mvs_wq *mwq;
112 int slot_nr;
114 if (!mvi)
115 return;
117 if (mvi->flags & MVF_FLAG_SOC)
118 slot_nr = MVS_SOC_SLOTS;
119 else
120 slot_nr = MVS_SLOTS;
122 for (i = 0; i < mvi->tags_num; i++) {
123 struct mvs_slot_info *slot = &mvi->slot_info[i];
124 if (slot->buf)
125 dma_free_coherent(mvi->dev, MVS_SLOT_BUF_SZ,
126 slot->buf, slot->buf_dma);
129 if (mvi->tx)
130 dma_free_coherent(mvi->dev,
131 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
132 mvi->tx, mvi->tx_dma);
133 if (mvi->rx_fis)
134 dma_free_coherent(mvi->dev, MVS_RX_FISL_SZ,
135 mvi->rx_fis, mvi->rx_fis_dma);
136 if (mvi->rx)
137 dma_free_coherent(mvi->dev,
138 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
139 mvi->rx, mvi->rx_dma);
140 if (mvi->slot)
141 dma_free_coherent(mvi->dev,
142 sizeof(*mvi->slot) * slot_nr,
143 mvi->slot, mvi->slot_dma);
144 #ifndef DISABLE_HOTPLUG_DMA_FIX
145 if (mvi->bulk_buffer)
146 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
147 mvi->bulk_buffer, mvi->bulk_buffer_dma);
148 #endif
150 MVS_CHIP_DISP->chip_iounmap(mvi);
151 if (mvi->shost)
152 scsi_host_put(mvi->shost);
153 list_for_each_entry(mwq, &mvi->wq_list, entry)
154 cancel_delayed_work(&mwq->work_q);
155 kfree(mvi);
158 #ifdef MVS_USE_TASKLET
159 struct tasklet_struct mv_tasklet;
160 static void mvs_tasklet(unsigned long opaque)
162 unsigned long flags;
163 u32 stat;
164 u16 core_nr, i = 0;
166 struct mvs_info *mvi;
167 struct sas_ha_struct *sha = (struct sas_ha_struct *)opaque;
169 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
170 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
172 if (unlikely(!mvi))
173 BUG_ON(1);
175 for (i = 0; i < core_nr; i++) {
176 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
177 stat = MVS_CHIP_DISP->isr_status(mvi, mvi->irq);
178 if (stat)
179 MVS_CHIP_DISP->isr(mvi, mvi->irq, stat);
183 #endif
185 static irqreturn_t mvs_interrupt(int irq, void *opaque)
187 u32 core_nr, i = 0;
188 u32 stat;
189 struct mvs_info *mvi;
190 struct sas_ha_struct *sha = opaque;
192 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
193 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
195 if (unlikely(!mvi))
196 return IRQ_NONE;
198 stat = MVS_CHIP_DISP->isr_status(mvi, irq);
199 if (!stat)
200 return IRQ_NONE;
202 #ifdef MVS_USE_TASKLET
203 tasklet_schedule(&mv_tasklet);
204 #else
205 for (i = 0; i < core_nr; i++) {
206 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
207 MVS_CHIP_DISP->isr(mvi, irq, stat);
209 #endif
210 return IRQ_HANDLED;
213 static int __devinit mvs_alloc(struct mvs_info *mvi, struct Scsi_Host *shost)
215 int i = 0, slot_nr;
217 if (mvi->flags & MVF_FLAG_SOC)
218 slot_nr = MVS_SOC_SLOTS;
219 else
220 slot_nr = MVS_SLOTS;
222 spin_lock_init(&mvi->lock);
223 for (i = 0; i < mvi->chip->n_phy; i++) {
224 mvs_phy_init(mvi, i);
225 mvi->port[i].wide_port_phymap = 0;
226 mvi->port[i].port_attached = 0;
227 INIT_LIST_HEAD(&mvi->port[i].list);
229 for (i = 0; i < MVS_MAX_DEVICES; i++) {
230 mvi->devices[i].taskfileset = MVS_ID_NOT_MAPPED;
231 mvi->devices[i].dev_type = NO_DEVICE;
232 mvi->devices[i].device_id = i;
233 mvi->devices[i].dev_status = MVS_DEV_NORMAL;
234 init_timer(&mvi->devices[i].timer);
238 * alloc and init our DMA areas
240 mvi->tx = dma_alloc_coherent(mvi->dev,
241 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
242 &mvi->tx_dma, GFP_KERNEL);
243 if (!mvi->tx)
244 goto err_out;
245 memset(mvi->tx, 0, sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ);
246 mvi->rx_fis = dma_alloc_coherent(mvi->dev, MVS_RX_FISL_SZ,
247 &mvi->rx_fis_dma, GFP_KERNEL);
248 if (!mvi->rx_fis)
249 goto err_out;
250 memset(mvi->rx_fis, 0, MVS_RX_FISL_SZ);
252 mvi->rx = dma_alloc_coherent(mvi->dev,
253 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
254 &mvi->rx_dma, GFP_KERNEL);
255 if (!mvi->rx)
256 goto err_out;
257 memset(mvi->rx, 0, sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1));
258 mvi->rx[0] = cpu_to_le32(0xfff);
259 mvi->rx_cons = 0xfff;
261 mvi->slot = dma_alloc_coherent(mvi->dev,
262 sizeof(*mvi->slot) * slot_nr,
263 &mvi->slot_dma, GFP_KERNEL);
264 if (!mvi->slot)
265 goto err_out;
266 memset(mvi->slot, 0, sizeof(*mvi->slot) * slot_nr);
268 #ifndef DISABLE_HOTPLUG_DMA_FIX
269 mvi->bulk_buffer = dma_alloc_coherent(mvi->dev,
270 TRASH_BUCKET_SIZE,
271 &mvi->bulk_buffer_dma, GFP_KERNEL);
272 if (!mvi->bulk_buffer)
273 goto err_out;
274 #endif
275 for (i = 0; i < slot_nr; i++) {
276 struct mvs_slot_info *slot = &mvi->slot_info[i];
278 slot->buf = dma_alloc_coherent(mvi->dev, MVS_SLOT_BUF_SZ,
279 &slot->buf_dma, GFP_KERNEL);
280 if (!slot->buf) {
281 printk(KERN_DEBUG"failed to allocate slot->buf.\n");
282 goto err_out;
284 memset(slot->buf, 0, MVS_SLOT_BUF_SZ);
285 ++mvi->tags_num;
287 /* Initialize tags */
288 mvs_tag_init(mvi);
289 return 0;
290 err_out:
291 return 1;
295 int mvs_ioremap(struct mvs_info *mvi, int bar, int bar_ex)
297 unsigned long res_start, res_len, res_flag, res_flag_ex = 0;
298 struct pci_dev *pdev = mvi->pdev;
299 if (bar_ex != -1) {
301 * ioremap main and peripheral registers
303 res_start = pci_resource_start(pdev, bar_ex);
304 res_len = pci_resource_len(pdev, bar_ex);
305 if (!res_start || !res_len)
306 goto err_out;
308 res_flag_ex = pci_resource_flags(pdev, bar_ex);
309 if (res_flag_ex & IORESOURCE_MEM) {
310 if (res_flag_ex & IORESOURCE_CACHEABLE)
311 mvi->regs_ex = ioremap(res_start, res_len);
312 else
313 mvi->regs_ex = ioremap_nocache(res_start,
314 res_len);
315 } else
316 mvi->regs_ex = (void *)res_start;
317 if (!mvi->regs_ex)
318 goto err_out;
321 res_start = pci_resource_start(pdev, bar);
322 res_len = pci_resource_len(pdev, bar);
323 if (!res_start || !res_len)
324 goto err_out;
326 res_flag = pci_resource_flags(pdev, bar);
327 if (res_flag & IORESOURCE_CACHEABLE)
328 mvi->regs = ioremap(res_start, res_len);
329 else
330 mvi->regs = ioremap_nocache(res_start, res_len);
332 if (!mvi->regs) {
333 if (mvi->regs_ex && (res_flag_ex & IORESOURCE_MEM))
334 iounmap(mvi->regs_ex);
335 mvi->regs_ex = NULL;
336 goto err_out;
339 return 0;
340 err_out:
341 return -1;
344 void mvs_iounmap(void __iomem *regs)
346 iounmap(regs);
349 static struct mvs_info *__devinit 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;
354 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
356 mvi = kzalloc(sizeof(*mvi) + MVS_SLOTS * sizeof(struct mvs_slot_info),
357 GFP_KERNEL);
358 if (!mvi)
359 return NULL;
361 mvi->pdev = pdev;
362 mvi->dev = &pdev->dev;
363 mvi->chip_id = ent->driver_data;
364 mvi->chip = &mvs_chips[mvi->chip_id];
365 INIT_LIST_HEAD(&mvi->wq_list);
366 mvi->irq = pdev->irq;
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;
371 mvi->id = id;
372 mvi->sas = sha;
373 mvi->shost = shost;
374 #ifdef MVS_USE_TASKLET
375 tasklet_init(&mv_tasklet, mvs_tasklet, (unsigned long)sha);
376 #endif
378 if (MVS_CHIP_DISP->chip_ioremap(mvi))
379 goto err_out;
380 if (!mvs_alloc(mvi, shost))
381 return mvi;
382 err_out:
383 mvs_free(mvi);
384 return NULL;
387 /* move to PCI layer or libata core? */
388 static int pci_go_64(struct pci_dev *pdev)
390 int rc;
392 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
393 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
394 if (rc) {
395 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
396 if (rc) {
397 dev_printk(KERN_ERR, &pdev->dev,
398 "64-bit DMA enable failed\n");
399 return rc;
402 } else {
403 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
404 if (rc) {
405 dev_printk(KERN_ERR, &pdev->dev,
406 "32-bit DMA enable failed\n");
407 return rc;
409 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
410 if (rc) {
411 dev_printk(KERN_ERR, &pdev->dev,
412 "32-bit consistent DMA enable failed\n");
413 return rc;
417 return rc;
420 static int __devinit mvs_prep_sas_ha_init(struct Scsi_Host *shost,
421 const struct mvs_chip_info *chip_info)
423 int phy_nr, port_nr; unsigned short core_nr;
424 struct asd_sas_phy **arr_phy;
425 struct asd_sas_port **arr_port;
426 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
428 core_nr = chip_info->n_host;
429 phy_nr = core_nr * chip_info->n_phy;
430 port_nr = phy_nr;
432 memset(sha, 0x00, sizeof(struct sas_ha_struct));
433 arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
434 arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
435 if (!arr_phy || !arr_port)
436 goto exit_free;
438 sha->sas_phy = arr_phy;
439 sha->sas_port = arr_port;
440 sha->core.shost = shost;
442 sha->lldd_ha = kzalloc(sizeof(struct mvs_prv_info), GFP_KERNEL);
443 if (!sha->lldd_ha)
444 goto exit_free;
446 ((struct mvs_prv_info *)sha->lldd_ha)->n_host = core_nr;
448 shost->transportt = mvs_stt;
449 shost->max_id = 128;
450 shost->max_lun = ~0;
451 shost->max_channel = 1;
452 shost->max_cmd_len = 16;
454 return 0;
455 exit_free:
456 kfree(arr_phy);
457 kfree(arr_port);
458 return -1;
462 static void __devinit mvs_post_sas_ha_init(struct Scsi_Host *shost,
463 const struct mvs_chip_info *chip_info)
465 int can_queue, i = 0, j = 0;
466 struct mvs_info *mvi = NULL;
467 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
468 unsigned short nr_core = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
470 for (j = 0; j < nr_core; j++) {
471 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[j];
472 for (i = 0; i < chip_info->n_phy; i++) {
473 sha->sas_phy[j * chip_info->n_phy + i] =
474 &mvi->phy[i].sas_phy;
475 sha->sas_port[j * chip_info->n_phy + i] =
476 &mvi->port[i].sas_port;
480 sha->sas_ha_name = DRV_NAME;
481 sha->dev = mvi->dev;
482 sha->lldd_module = THIS_MODULE;
483 sha->sas_addr = &mvi->sas_addr[0];
485 sha->num_phys = nr_core * chip_info->n_phy;
487 sha->lldd_max_execute_num = 1;
489 if (mvi->flags & MVF_FLAG_SOC)
490 can_queue = MVS_SOC_CAN_QUEUE;
491 else
492 can_queue = MVS_CAN_QUEUE;
494 sha->lldd_queue_size = can_queue;
495 shost->can_queue = can_queue;
496 mvi->shost->cmd_per_lun = MVS_SLOTS/sha->num_phys;
497 sha->core.shost = mvi->shost;
500 static void mvs_init_sas_add(struct mvs_info *mvi)
502 u8 i;
503 for (i = 0; i < mvi->chip->n_phy; i++) {
504 mvi->phy[i].dev_sas_addr = 0x5005043011ab0000ULL;
505 mvi->phy[i].dev_sas_addr =
506 cpu_to_be64((u64)(*(u64 *)&mvi->phy[i].dev_sas_addr));
509 memcpy(mvi->sas_addr, &mvi->phy[0].dev_sas_addr, SAS_ADDR_SIZE);
512 static int __devinit mvs_pci_init(struct pci_dev *pdev,
513 const struct pci_device_id *ent)
515 unsigned int rc, nhost = 0;
516 struct mvs_info *mvi;
517 irq_handler_t irq_handler = mvs_interrupt;
518 struct Scsi_Host *shost = NULL;
519 const struct mvs_chip_info *chip;
521 dev_printk(KERN_INFO, &pdev->dev,
522 "mvsas: driver version %s\n", DRV_VERSION);
523 rc = pci_enable_device(pdev);
524 if (rc)
525 goto err_out_enable;
527 pci_set_master(pdev);
529 rc = pci_request_regions(pdev, DRV_NAME);
530 if (rc)
531 goto err_out_disable;
533 rc = pci_go_64(pdev);
534 if (rc)
535 goto err_out_regions;
537 shost = scsi_host_alloc(&mvs_sht, sizeof(void *));
538 if (!shost) {
539 rc = -ENOMEM;
540 goto err_out_regions;
543 chip = &mvs_chips[ent->driver_data];
544 SHOST_TO_SAS_HA(shost) =
545 kcalloc(1, sizeof(struct sas_ha_struct), GFP_KERNEL);
546 if (!SHOST_TO_SAS_HA(shost)) {
547 kfree(shost);
548 rc = -ENOMEM;
549 goto err_out_regions;
552 rc = mvs_prep_sas_ha_init(shost, chip);
553 if (rc) {
554 kfree(shost);
555 rc = -ENOMEM;
556 goto err_out_regions;
559 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
561 do {
562 mvi = mvs_pci_alloc(pdev, ent, shost, nhost);
563 if (!mvi) {
564 rc = -ENOMEM;
565 goto err_out_regions;
568 mvs_init_sas_add(mvi);
570 mvi->instance = nhost;
571 rc = MVS_CHIP_DISP->chip_init(mvi);
572 if (rc) {
573 mvs_free(mvi);
574 goto err_out_regions;
576 nhost++;
577 } while (nhost < chip->n_host);
578 #ifdef MVS_USE_TASKLET
579 tasklet_init(&mv_tasklet, mvs_tasklet,
580 (unsigned long)SHOST_TO_SAS_HA(shost));
581 #endif
583 mvs_post_sas_ha_init(shost, chip);
585 rc = scsi_add_host(shost, &pdev->dev);
586 if (rc)
587 goto err_out_shost;
589 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
590 if (rc)
591 goto err_out_shost;
592 rc = request_irq(pdev->irq, irq_handler, IRQF_SHARED,
593 DRV_NAME, SHOST_TO_SAS_HA(shost));
594 if (rc)
595 goto err_not_sas;
597 MVS_CHIP_DISP->interrupt_enable(mvi);
599 scsi_scan_host(mvi->shost);
601 return 0;
603 err_not_sas:
604 sas_unregister_ha(SHOST_TO_SAS_HA(shost));
605 err_out_shost:
606 scsi_remove_host(mvi->shost);
607 err_out_regions:
608 pci_release_regions(pdev);
609 err_out_disable:
610 pci_disable_device(pdev);
611 err_out_enable:
612 return rc;
615 static void __devexit mvs_pci_remove(struct pci_dev *pdev)
617 unsigned short core_nr, i = 0;
618 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
619 struct mvs_info *mvi = NULL;
621 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
622 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
624 #ifdef MVS_USE_TASKLET
625 tasklet_kill(&mv_tasklet);
626 #endif
628 pci_set_drvdata(pdev, NULL);
629 sas_unregister_ha(sha);
630 sas_remove_host(mvi->shost);
631 scsi_remove_host(mvi->shost);
633 MVS_CHIP_DISP->interrupt_disable(mvi);
634 free_irq(mvi->irq, sha);
635 for (i = 0; i < core_nr; i++) {
636 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
637 mvs_free(mvi);
639 kfree(sha->sas_phy);
640 kfree(sha->sas_port);
641 kfree(sha);
642 pci_release_regions(pdev);
643 pci_disable_device(pdev);
644 return;
647 static struct pci_device_id __devinitdata mvs_pci_table[] = {
648 { PCI_VDEVICE(MARVELL, 0x6320), chip_6320 },
649 { PCI_VDEVICE(MARVELL, 0x6340), chip_6440 },
651 .vendor = PCI_VENDOR_ID_MARVELL,
652 .device = 0x6440,
653 .subvendor = PCI_ANY_ID,
654 .subdevice = 0x6480,
655 .class = 0,
656 .class_mask = 0,
657 .driver_data = chip_6485,
659 { PCI_VDEVICE(MARVELL, 0x6440), chip_6440 },
660 { PCI_VDEVICE(MARVELL, 0x6485), chip_6485 },
661 { PCI_VDEVICE(MARVELL, 0x9480), chip_9480 },
662 { PCI_VDEVICE(MARVELL, 0x9180), chip_9180 },
663 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1300), chip_1300 },
664 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1320), chip_1320 },
665 { PCI_VDEVICE(ADAPTEC2, 0x0450), chip_6440 },
667 { } /* terminate list */
670 static struct pci_driver mvs_pci_driver = {
671 .name = DRV_NAME,
672 .id_table = mvs_pci_table,
673 .probe = mvs_pci_init,
674 .remove = __devexit_p(mvs_pci_remove),
677 /* task handler */
678 struct task_struct *mvs_th;
679 static int __init mvs_init(void)
681 int rc;
682 mvs_stt = sas_domain_attach_transport(&mvs_transport_ops);
683 if (!mvs_stt)
684 return -ENOMEM;
686 rc = pci_register_driver(&mvs_pci_driver);
688 if (rc)
689 goto err_out;
691 return 0;
693 err_out:
694 sas_release_transport(mvs_stt);
695 return rc;
698 static void __exit mvs_exit(void)
700 pci_unregister_driver(&mvs_pci_driver);
701 sas_release_transport(mvs_stt);
704 module_init(mvs_init);
705 module_exit(mvs_exit);
707 MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
708 MODULE_DESCRIPTION("Marvell 88SE6440 SAS/SATA controller driver");
709 MODULE_VERSION(DRV_VERSION);
710 MODULE_LICENSE("GPL");
711 #ifdef CONFIG_PCI
712 MODULE_DEVICE_TABLE(pci, mvs_pci_table);
713 #endif