blob: 52405ce58ade87ee4a887c1ebb1ae52473276c35 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Marvell 88SE64xx/88SE94xx pci init
4 *
5 * Copyright 2007 Red Hat, Inc.
6 * Copyright 2008 Marvell. <kewei@marvell.com>
7 * Copyright 2009-2011 Marvell. <yuxiangl@marvell.com>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00008*/
9
10
11#include "mv_sas.h"
12
13int interrupt_coalescing = 0x80;
14
15static struct scsi_transport_template *mvs_stt;
16static 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, },
26};
27
28struct device_attribute *mvst_host_attrs[];
29
30#define SOC_SAS_NUM 2
31
32static struct scsi_host_template mvs_sht = {
33 .module = THIS_MODULE,
34 .name = DRV_NAME,
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,
42 .can_queue = 1,
43 .this_id = -1,
44 .sg_tablesize = SG_ALL,
45 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000046 .eh_device_reset_handler = sas_eh_device_reset_handler,
47 .eh_target_reset_handler = sas_eh_target_reset_handler,
Olivier Deprez0e641232021-09-23 10:07:05 +020048 .slave_alloc = sas_slave_alloc,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000049 .target_destroy = sas_target_destroy,
50 .ioctl = sas_ioctl,
51 .shost_attrs = mvst_host_attrs,
52 .track_queue_depth = 1,
53};
54
55static struct sas_domain_function_template mvs_transport_ops = {
56 .lldd_dev_found = mvs_dev_found,
57 .lldd_dev_gone = mvs_dev_gone,
58 .lldd_execute_task = mvs_queue_command,
59 .lldd_control_phy = mvs_phy_control,
60
61 .lldd_abort_task = mvs_abort_task,
62 .lldd_abort_task_set = mvs_abort_task_set,
63 .lldd_clear_aca = mvs_clear_aca,
64 .lldd_clear_task_set = mvs_clear_task_set,
65 .lldd_I_T_nexus_reset = mvs_I_T_nexus_reset,
66 .lldd_lu_reset = mvs_lu_reset,
67 .lldd_query_task = mvs_query_task,
68 .lldd_port_formed = mvs_port_formed,
69 .lldd_port_deformed = mvs_port_deformed,
70
71 .lldd_write_gpio = mvs_gpio_write,
72
73};
74
75static void mvs_phy_init(struct mvs_info *mvi, int phy_id)
76{
77 struct mvs_phy *phy = &mvi->phy[phy_id];
78 struct asd_sas_phy *sas_phy = &phy->sas_phy;
79
80 phy->mvi = mvi;
81 phy->port = NULL;
82 timer_setup(&phy->timer, NULL, 0);
83 sas_phy->enabled = (phy_id < mvi->chip->n_phy) ? 1 : 0;
84 sas_phy->class = SAS;
85 sas_phy->iproto = SAS_PROTOCOL_ALL;
86 sas_phy->tproto = 0;
87 sas_phy->type = PHY_TYPE_PHYSICAL;
88 sas_phy->role = PHY_ROLE_INITIATOR;
89 sas_phy->oob_mode = OOB_NOT_CONNECTED;
90 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
91
92 sas_phy->id = phy_id;
93 sas_phy->sas_addr = &mvi->sas_addr[0];
94 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
95 sas_phy->ha = (struct sas_ha_struct *)mvi->shost->hostdata;
96 sas_phy->lldd_phy = phy;
97}
98
99static void mvs_free(struct mvs_info *mvi)
100{
101 struct mvs_wq *mwq;
102 int slot_nr;
103
104 if (!mvi)
105 return;
106
107 if (mvi->flags & MVF_FLAG_SOC)
108 slot_nr = MVS_SOC_SLOTS;
109 else
110 slot_nr = MVS_CHIP_SLOT_SZ;
111
112 dma_pool_destroy(mvi->dma_pool);
113
114 if (mvi->tx)
115 dma_free_coherent(mvi->dev,
116 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
117 mvi->tx, mvi->tx_dma);
118 if (mvi->rx_fis)
119 dma_free_coherent(mvi->dev, MVS_RX_FISL_SZ,
120 mvi->rx_fis, mvi->rx_fis_dma);
121 if (mvi->rx)
122 dma_free_coherent(mvi->dev,
123 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
124 mvi->rx, mvi->rx_dma);
125 if (mvi->slot)
126 dma_free_coherent(mvi->dev,
127 sizeof(*mvi->slot) * slot_nr,
128 mvi->slot, mvi->slot_dma);
129
130 if (mvi->bulk_buffer)
131 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
132 mvi->bulk_buffer, mvi->bulk_buffer_dma);
133 if (mvi->bulk_buffer1)
134 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
135 mvi->bulk_buffer1, mvi->bulk_buffer_dma1);
136
137 MVS_CHIP_DISP->chip_iounmap(mvi);
138 if (mvi->shost)
139 scsi_host_put(mvi->shost);
140 list_for_each_entry(mwq, &mvi->wq_list, entry)
141 cancel_delayed_work(&mwq->work_q);
142 kfree(mvi->tags);
143 kfree(mvi);
144}
145
146#ifdef CONFIG_SCSI_MVSAS_TASKLET
147static void mvs_tasklet(unsigned long opaque)
148{
149 u32 stat;
150 u16 core_nr, i = 0;
151
152 struct mvs_info *mvi;
153 struct sas_ha_struct *sha = (struct sas_ha_struct *)opaque;
154
155 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
156 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
157
158 if (unlikely(!mvi))
159 BUG_ON(1);
160
161 stat = MVS_CHIP_DISP->isr_status(mvi, mvi->pdev->irq);
162 if (!stat)
163 goto out;
164
165 for (i = 0; i < core_nr; i++) {
166 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
167 MVS_CHIP_DISP->isr(mvi, mvi->pdev->irq, stat);
168 }
169out:
170 MVS_CHIP_DISP->interrupt_enable(mvi);
171
172}
173#endif
174
175static irqreturn_t mvs_interrupt(int irq, void *opaque)
176{
177 u32 core_nr;
178 u32 stat;
179 struct mvs_info *mvi;
180 struct sas_ha_struct *sha = opaque;
181#ifndef CONFIG_SCSI_MVSAS_TASKLET
182 u32 i;
183#endif
184
185 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
186 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
187
188 if (unlikely(!mvi))
189 return IRQ_NONE;
190#ifdef CONFIG_SCSI_MVSAS_TASKLET
191 MVS_CHIP_DISP->interrupt_disable(mvi);
192#endif
193
194 stat = MVS_CHIP_DISP->isr_status(mvi, irq);
195 if (!stat) {
196 #ifdef CONFIG_SCSI_MVSAS_TASKLET
197 MVS_CHIP_DISP->interrupt_enable(mvi);
198 #endif
199 return IRQ_NONE;
200 }
201
202#ifdef CONFIG_SCSI_MVSAS_TASKLET
203 tasklet_schedule(&((struct mvs_prv_info *)sha->lldd_ha)->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);
208 }
209#endif
210 return IRQ_HANDLED;
211}
212
213static int mvs_alloc(struct mvs_info *mvi, struct Scsi_Host *shost)
214{
215 int i = 0, slot_nr;
216 char pool_name[32];
217
218 if (mvi->flags & MVF_FLAG_SOC)
219 slot_nr = MVS_SOC_SLOTS;
220 else
221 slot_nr = MVS_CHIP_SLOT_SZ;
222
223 spin_lock_init(&mvi->lock);
224 for (i = 0; i < mvi->chip->n_phy; i++) {
225 mvs_phy_init(mvi, i);
226 mvi->port[i].wide_port_phymap = 0;
227 mvi->port[i].port_attached = 0;
228 INIT_LIST_HEAD(&mvi->port[i].list);
229 }
230 for (i = 0; i < MVS_MAX_DEVICES; i++) {
231 mvi->devices[i].taskfileset = MVS_ID_NOT_MAPPED;
232 mvi->devices[i].dev_type = SAS_PHY_UNUSED;
233 mvi->devices[i].device_id = i;
234 mvi->devices[i].dev_status = MVS_DEV_NORMAL;
235 }
236
237 /*
238 * alloc and init our DMA areas
239 */
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);
251
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;
260
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);
267
268 mvi->bulk_buffer = dma_alloc_coherent(mvi->dev,
269 TRASH_BUCKET_SIZE,
270 &mvi->bulk_buffer_dma, GFP_KERNEL);
271 if (!mvi->bulk_buffer)
272 goto err_out;
273
274 mvi->bulk_buffer1 = dma_alloc_coherent(mvi->dev,
275 TRASH_BUCKET_SIZE,
276 &mvi->bulk_buffer_dma1, GFP_KERNEL);
277 if (!mvi->bulk_buffer1)
278 goto err_out;
279
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);
285 goto err_out;
286 }
287 mvi->tags_num = slot_nr;
288
289 /* Initialize tags */
290 mvs_tag_init(mvi);
291 return 0;
292err_out:
293 return 1;
294}
295
296
297int mvs_ioremap(struct mvs_info *mvi, int bar, int bar_ex)
298{
299 unsigned long res_start, res_len, res_flag, res_flag_ex = 0;
300 struct pci_dev *pdev = mvi->pdev;
301 if (bar_ex != -1) {
302 /*
303 * ioremap main and peripheral registers
304 */
305 res_start = pci_resource_start(pdev, bar_ex);
306 res_len = pci_resource_len(pdev, bar_ex);
307 if (!res_start || !res_len)
308 goto err_out;
309
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);
313 else
314 mvi->regs_ex = (void *)res_start;
315 if (!mvi->regs_ex)
316 goto err_out;
317 }
318
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);
323 mvi->regs_ex = NULL;
324 goto err_out;
325 }
326
327 res_flag = pci_resource_flags(pdev, bar);
328 mvi->regs = ioremap(res_start, res_len);
329
330 if (!mvi->regs) {
331 if (mvi->regs_ex && (res_flag_ex & IORESOURCE_MEM))
332 iounmap(mvi->regs_ex);
333 mvi->regs_ex = NULL;
334 goto err_out;
335 }
336
337 return 0;
338err_out:
339 return -1;
340}
341
342void mvs_iounmap(void __iomem *regs)
343{
344 iounmap(regs);
345}
346
347static struct mvs_info *mvs_pci_alloc(struct pci_dev *pdev,
348 const struct pci_device_id *ent,
349 struct Scsi_Host *shost, unsigned int id)
350{
351 struct mvs_info *mvi = NULL;
352 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
353
354 mvi = kzalloc(sizeof(*mvi) +
355 (1L << mvs_chips[ent->driver_data].slot_width) *
356 sizeof(struct mvs_slot_info), GFP_KERNEL);
357 if (!mvi)
358 return NULL;
359
360 mvi->pdev = pdev;
361 mvi->dev = &pdev->dev;
362 mvi->chip_id = ent->driver_data;
363 mvi->chip = &mvs_chips[mvi->chip_id];
364 INIT_LIST_HEAD(&mvi->wq_list);
365
366 ((struct mvs_prv_info *)sha->lldd_ha)->mvi[id] = mvi;
367 ((struct mvs_prv_info *)sha->lldd_ha)->n_phy = mvi->chip->n_phy;
368
369 mvi->id = id;
370 mvi->sas = sha;
371 mvi->shost = shost;
372
373 mvi->tags = kzalloc(MVS_CHIP_SLOT_SZ>>3, GFP_KERNEL);
374 if (!mvi->tags)
375 goto err_out;
376
377 if (MVS_CHIP_DISP->chip_ioremap(mvi))
378 goto err_out;
379 if (!mvs_alloc(mvi, shost))
380 return mvi;
381err_out:
382 mvs_free(mvi);
383 return NULL;
384}
385
386static int pci_go_64(struct pci_dev *pdev)
387{
388 int rc;
389
David Brazdil0f672f62019-12-10 10:32:29 +0000390 rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
391 if (rc) {
392 rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000393 if (rc) {
394 dev_printk(KERN_ERR, &pdev->dev,
395 "32-bit DMA enable failed\n");
396 return rc;
397 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000398 }
399
400 return rc;
401}
402
403static int mvs_prep_sas_ha_init(struct Scsi_Host *shost,
404 const struct mvs_chip_info *chip_info)
405{
406 int phy_nr, port_nr; unsigned short core_nr;
407 struct asd_sas_phy **arr_phy;
408 struct asd_sas_port **arr_port;
409 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
410
411 core_nr = chip_info->n_host;
412 phy_nr = core_nr * chip_info->n_phy;
413 port_nr = phy_nr;
414
415 memset(sha, 0x00, sizeof(struct sas_ha_struct));
416 arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
417 arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
418 if (!arr_phy || !arr_port)
419 goto exit_free;
420
421 sha->sas_phy = arr_phy;
422 sha->sas_port = arr_port;
423 sha->core.shost = shost;
424
425 sha->lldd_ha = kzalloc(sizeof(struct mvs_prv_info), GFP_KERNEL);
426 if (!sha->lldd_ha)
427 goto exit_free;
428
429 ((struct mvs_prv_info *)sha->lldd_ha)->n_host = core_nr;
430
431 shost->transportt = mvs_stt;
432 shost->max_id = MVS_MAX_DEVICES;
433 shost->max_lun = ~0;
434 shost->max_channel = 1;
435 shost->max_cmd_len = 16;
436
437 return 0;
438exit_free:
439 kfree(arr_phy);
440 kfree(arr_port);
441 return -1;
442
443}
444
445static void mvs_post_sas_ha_init(struct Scsi_Host *shost,
446 const struct mvs_chip_info *chip_info)
447{
448 int can_queue, i = 0, j = 0;
449 struct mvs_info *mvi = NULL;
450 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
451 unsigned short nr_core = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
452
453 for (j = 0; j < nr_core; j++) {
454 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[j];
455 for (i = 0; i < chip_info->n_phy; i++) {
456 sha->sas_phy[j * chip_info->n_phy + i] =
457 &mvi->phy[i].sas_phy;
458 sha->sas_port[j * chip_info->n_phy + i] =
459 &mvi->port[i].sas_port;
460 }
461 }
462
463 sha->sas_ha_name = DRV_NAME;
464 sha->dev = mvi->dev;
465 sha->lldd_module = THIS_MODULE;
466 sha->sas_addr = &mvi->sas_addr[0];
467
468 sha->num_phys = nr_core * chip_info->n_phy;
469
470 if (mvi->flags & MVF_FLAG_SOC)
471 can_queue = MVS_SOC_CAN_QUEUE;
472 else
473 can_queue = MVS_CHIP_SLOT_SZ;
474
475 shost->sg_tablesize = min_t(u16, SG_ALL, MVS_MAX_SG);
476 shost->can_queue = can_queue;
477 mvi->shost->cmd_per_lun = MVS_QUEUE_SIZE;
478 sha->core.shost = mvi->shost;
479}
480
481static void mvs_init_sas_add(struct mvs_info *mvi)
482{
483 u8 i;
484 for (i = 0; i < mvi->chip->n_phy; i++) {
485 mvi->phy[i].dev_sas_addr = 0x5005043011ab0000ULL;
486 mvi->phy[i].dev_sas_addr =
487 cpu_to_be64((u64)(*(u64 *)&mvi->phy[i].dev_sas_addr));
488 }
489
490 memcpy(mvi->sas_addr, &mvi->phy[0].dev_sas_addr, SAS_ADDR_SIZE);
491}
492
493static int mvs_pci_init(struct pci_dev *pdev, const struct pci_device_id *ent)
494{
495 unsigned int rc, nhost = 0;
496 struct mvs_info *mvi;
497 struct mvs_prv_info *mpi;
498 irq_handler_t irq_handler = mvs_interrupt;
499 struct Scsi_Host *shost = NULL;
500 const struct mvs_chip_info *chip;
501
502 dev_printk(KERN_INFO, &pdev->dev,
503 "mvsas: driver version %s\n", DRV_VERSION);
504 rc = pci_enable_device(pdev);
505 if (rc)
506 goto err_out_enable;
507
508 pci_set_master(pdev);
509
510 rc = pci_request_regions(pdev, DRV_NAME);
511 if (rc)
512 goto err_out_disable;
513
514 rc = pci_go_64(pdev);
515 if (rc)
516 goto err_out_regions;
517
518 shost = scsi_host_alloc(&mvs_sht, sizeof(void *));
519 if (!shost) {
520 rc = -ENOMEM;
521 goto err_out_regions;
522 }
523
524 chip = &mvs_chips[ent->driver_data];
525 SHOST_TO_SAS_HA(shost) =
526 kcalloc(1, sizeof(struct sas_ha_struct), GFP_KERNEL);
527 if (!SHOST_TO_SAS_HA(shost)) {
528 scsi_host_put(shost);
529 rc = -ENOMEM;
530 goto err_out_regions;
531 }
532
533 rc = mvs_prep_sas_ha_init(shost, chip);
534 if (rc) {
535 scsi_host_put(shost);
536 rc = -ENOMEM;
537 goto err_out_regions;
538 }
539
540 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
541
542 do {
543 mvi = mvs_pci_alloc(pdev, ent, shost, nhost);
544 if (!mvi) {
545 rc = -ENOMEM;
546 goto err_out_regions;
547 }
548
549 memset(&mvi->hba_info_param, 0xFF,
550 sizeof(struct hba_info_page));
551
552 mvs_init_sas_add(mvi);
553
554 mvi->instance = nhost;
555 rc = MVS_CHIP_DISP->chip_init(mvi);
556 if (rc) {
557 mvs_free(mvi);
558 goto err_out_regions;
559 }
560 nhost++;
561 } while (nhost < chip->n_host);
562 mpi = (struct mvs_prv_info *)(SHOST_TO_SAS_HA(shost)->lldd_ha);
563#ifdef CONFIG_SCSI_MVSAS_TASKLET
564 tasklet_init(&(mpi->mv_tasklet), mvs_tasklet,
565 (unsigned long)SHOST_TO_SAS_HA(shost));
566#endif
567
568 mvs_post_sas_ha_init(shost, chip);
569
570 rc = scsi_add_host(shost, &pdev->dev);
571 if (rc)
572 goto err_out_shost;
573
574 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
575 if (rc)
576 goto err_out_shost;
577 rc = request_irq(pdev->irq, irq_handler, IRQF_SHARED,
578 DRV_NAME, SHOST_TO_SAS_HA(shost));
579 if (rc)
580 goto err_not_sas;
581
582 MVS_CHIP_DISP->interrupt_enable(mvi);
583
584 scsi_scan_host(mvi->shost);
585
586 return 0;
587
588err_not_sas:
589 sas_unregister_ha(SHOST_TO_SAS_HA(shost));
590err_out_shost:
591 scsi_remove_host(mvi->shost);
592err_out_regions:
593 pci_release_regions(pdev);
594err_out_disable:
595 pci_disable_device(pdev);
596err_out_enable:
597 return rc;
598}
599
600static void mvs_pci_remove(struct pci_dev *pdev)
601{
602 unsigned short core_nr, i = 0;
603 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
604 struct mvs_info *mvi = NULL;
605
606 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
607 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
608
609#ifdef CONFIG_SCSI_MVSAS_TASKLET
610 tasklet_kill(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
611#endif
612
613 sas_unregister_ha(sha);
614 sas_remove_host(mvi->shost);
615
616 MVS_CHIP_DISP->interrupt_disable(mvi);
617 free_irq(mvi->pdev->irq, sha);
618 for (i = 0; i < core_nr; i++) {
619 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
620 mvs_free(mvi);
621 }
622 kfree(sha->sas_phy);
623 kfree(sha->sas_port);
624 kfree(sha);
625 pci_release_regions(pdev);
626 pci_disable_device(pdev);
627 return;
628}
629
630static struct pci_device_id mvs_pci_table[] = {
631 { PCI_VDEVICE(MARVELL, 0x6320), chip_6320 },
632 { PCI_VDEVICE(MARVELL, 0x6340), chip_6440 },
633 {
634 .vendor = PCI_VENDOR_ID_MARVELL,
635 .device = 0x6440,
636 .subvendor = PCI_ANY_ID,
637 .subdevice = 0x6480,
638 .class = 0,
639 .class_mask = 0,
640 .driver_data = chip_6485,
641 },
642 { PCI_VDEVICE(MARVELL, 0x6440), chip_6440 },
643 { PCI_VDEVICE(MARVELL, 0x6485), chip_6485 },
644 { PCI_VDEVICE(MARVELL, 0x9480), chip_9480 },
645 { PCI_VDEVICE(MARVELL, 0x9180), chip_9180 },
646 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1300), chip_1300 },
647 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1320), chip_1320 },
648 { PCI_VDEVICE(ADAPTEC2, 0x0450), chip_6440 },
649 { PCI_VDEVICE(TTI, 0x2710), chip_9480 },
650 { PCI_VDEVICE(TTI, 0x2720), chip_9480 },
651 { PCI_VDEVICE(TTI, 0x2721), chip_9480 },
652 { PCI_VDEVICE(TTI, 0x2722), chip_9480 },
653 { PCI_VDEVICE(TTI, 0x2740), chip_9480 },
654 { PCI_VDEVICE(TTI, 0x2744), chip_9480 },
655 { PCI_VDEVICE(TTI, 0x2760), chip_9480 },
656 {
657 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
658 .device = 0x9480,
659 .subvendor = PCI_ANY_ID,
660 .subdevice = 0x9480,
661 .class = 0,
662 .class_mask = 0,
663 .driver_data = chip_9480,
664 },
665 {
666 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
667 .device = 0x9445,
668 .subvendor = PCI_ANY_ID,
669 .subdevice = 0x9480,
670 .class = 0,
671 .class_mask = 0,
672 .driver_data = chip_9445,
673 },
674 { PCI_VDEVICE(MARVELL_EXT, 0x9485), chip_9485 }, /* Marvell 9480/9485 (any vendor/model) */
675 { PCI_VDEVICE(OCZ, 0x1021), chip_9485}, /* OCZ RevoDrive3 */
676 { PCI_VDEVICE(OCZ, 0x1022), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
677 { PCI_VDEVICE(OCZ, 0x1040), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
678 { PCI_VDEVICE(OCZ, 0x1041), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
679 { PCI_VDEVICE(OCZ, 0x1042), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
680 { PCI_VDEVICE(OCZ, 0x1043), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
681 { PCI_VDEVICE(OCZ, 0x1044), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
682 { PCI_VDEVICE(OCZ, 0x1080), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
683 { PCI_VDEVICE(OCZ, 0x1083), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
684 { PCI_VDEVICE(OCZ, 0x1084), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
685
686 { } /* terminate list */
687};
688
689static struct pci_driver mvs_pci_driver = {
690 .name = DRV_NAME,
691 .id_table = mvs_pci_table,
692 .probe = mvs_pci_init,
693 .remove = mvs_pci_remove,
694};
695
696static ssize_t
697mvs_show_driver_version(struct device *cdev,
698 struct device_attribute *attr, char *buffer)
699{
700 return snprintf(buffer, PAGE_SIZE, "%s\n", DRV_VERSION);
701}
702
703static DEVICE_ATTR(driver_version,
704 S_IRUGO,
705 mvs_show_driver_version,
706 NULL);
707
708static ssize_t
709mvs_store_interrupt_coalescing(struct device *cdev,
710 struct device_attribute *attr,
711 const char *buffer, size_t size)
712{
713 unsigned int val = 0;
714 struct mvs_info *mvi = NULL;
715 struct Scsi_Host *shost = class_to_shost(cdev);
716 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
717 u8 i, core_nr;
718 if (buffer == NULL)
719 return size;
720
721 if (sscanf(buffer, "%u", &val) != 1)
722 return -EINVAL;
723
724 if (val >= 0x10000) {
725 mv_dprintk("interrupt coalescing timer %d us is"
726 "too long\n", val);
727 return strlen(buffer);
728 }
729
730 interrupt_coalescing = val;
731
732 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
733 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
734
735 if (unlikely(!mvi))
736 return -EINVAL;
737
738 for (i = 0; i < core_nr; i++) {
739 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
740 if (MVS_CHIP_DISP->tune_interrupt)
741 MVS_CHIP_DISP->tune_interrupt(mvi,
742 interrupt_coalescing);
743 }
744 mv_dprintk("set interrupt coalescing time to %d us\n",
745 interrupt_coalescing);
746 return strlen(buffer);
747}
748
749static ssize_t mvs_show_interrupt_coalescing(struct device *cdev,
750 struct device_attribute *attr, char *buffer)
751{
752 return snprintf(buffer, PAGE_SIZE, "%d\n", interrupt_coalescing);
753}
754
755static DEVICE_ATTR(interrupt_coalescing,
756 S_IRUGO|S_IWUSR,
757 mvs_show_interrupt_coalescing,
758 mvs_store_interrupt_coalescing);
759
760/* task handler */
761struct task_struct *mvs_th;
762static int __init mvs_init(void)
763{
764 int rc;
765 mvs_stt = sas_domain_attach_transport(&mvs_transport_ops);
766 if (!mvs_stt)
767 return -ENOMEM;
768
769 rc = pci_register_driver(&mvs_pci_driver);
770 if (rc)
771 goto err_out;
772
773 return 0;
774
775err_out:
776 sas_release_transport(mvs_stt);
777 return rc;
778}
779
780static void __exit mvs_exit(void)
781{
782 pci_unregister_driver(&mvs_pci_driver);
783 sas_release_transport(mvs_stt);
784}
785
786struct device_attribute *mvst_host_attrs[] = {
787 &dev_attr_driver_version,
788 &dev_attr_interrupt_coalescing,
789 NULL,
790};
791
792module_init(mvs_init);
793module_exit(mvs_exit);
794
795MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
796MODULE_DESCRIPTION("Marvell 88SE6440 SAS/SATA controller driver");
797MODULE_VERSION(DRV_VERSION);
798MODULE_LICENSE("GPL");
799#ifdef CONFIG_PCI
800MODULE_DEVICE_TABLE(pci, mvs_pci_table);
801#endif