blob: 4e9af66fd1d3ecf2ac6e996f0a9c31c1e55de379 [file] [log] [blame]
Jeff Garzikdd4969a2009-05-08 17:44:01 -04001/*
Andy Yan20b09c22009-05-08 17:46:40 -04002 * Marvell 88SE64xx/88SE94xx pci init
3 *
4 * Copyright 2007 Red Hat, Inc.
5 * Copyright 2008 Marvell. <kewei@marvell.com>
Xiangliang Yu0b15fb12011-04-26 06:36:51 -07006 * Copyright 2009-2011 Marvell. <yuxiangl@marvell.com>
Andy Yan20b09c22009-05-08 17:46:40 -04007 *
8 * This file is licensed under GPLv2.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; version 2 of the
13 * License.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24*/
Jeff Garzikdd4969a2009-05-08 17:44:01 -040025
Jeff Garzikdd4969a2009-05-08 17:44:01 -040026
27#include "mv_sas.h"
Jeff Garzikdd4969a2009-05-08 17:44:01 -040028
Xiangliang Yu0b15fb12011-04-26 06:36:51 -070029static int lldd_max_execute_num = 1;
30module_param_named(collector, lldd_max_execute_num, int, S_IRUGO);
31MODULE_PARM_DESC(collector, "\n"
32 "\tIf greater than one, tells the SAS Layer to run in Task Collector\n"
33 "\tMode. If 1 or 0, tells the SAS Layer to run in Direct Mode.\n"
34 "\tThe mvsas SAS LLDD supports both modes.\n"
35 "\tDefault: 1 (Direct Mode).\n");
36
Xiangliang Yu83c7b612011-05-24 22:31:47 +080037int interrupt_coalescing = 0x80;
38
Jeff Garzikdd4969a2009-05-08 17:44:01 -040039static struct scsi_transport_template *mvs_stt;
Xiangliang Yu0b15fb12011-04-26 06:36:51 -070040struct kmem_cache *mvs_task_list_cache;
Jeff Garzikdd4969a2009-05-08 17:44:01 -040041static const struct mvs_chip_info mvs_chips[] = {
Xiangliang Yua4632aa2011-05-24 22:36:02 +080042 [chip_6320] = { 1, 2, 0x400, 17, 16, 6, 9, &mvs_64xx_dispatch, },
43 [chip_6440] = { 1, 4, 0x400, 17, 16, 6, 9, &mvs_64xx_dispatch, },
44 [chip_6485] = { 1, 8, 0x800, 33, 32, 6, 10, &mvs_64xx_dispatch, },
45 [chip_9180] = { 2, 4, 0x800, 17, 64, 8, 9, &mvs_94xx_dispatch, },
46 [chip_9480] = { 2, 4, 0x800, 17, 64, 8, 9, &mvs_94xx_dispatch, },
47 [chip_9445] = { 1, 4, 0x800, 17, 64, 8, 11, &mvs_94xx_dispatch, },
48 [chip_9485] = { 2, 4, 0x800, 17, 64, 8, 11, &mvs_94xx_dispatch, },
49 [chip_1300] = { 1, 4, 0x400, 17, 16, 6, 9, &mvs_64xx_dispatch, },
50 [chip_1320] = { 2, 4, 0x800, 17, 64, 8, 9, &mvs_94xx_dispatch, },
Jeff Garzikdd4969a2009-05-08 17:44:01 -040051};
52
Xiangliang Yu83c7b612011-05-24 22:31:47 +080053struct device_attribute *mvst_host_attrs[];
54
Andy Yan20b09c22009-05-08 17:46:40 -040055#define SOC_SAS_NUM 2
56
Jeff Garzikdd4969a2009-05-08 17:44:01 -040057static struct scsi_host_template mvs_sht = {
58 .module = THIS_MODULE,
59 .name = DRV_NAME,
60 .queuecommand = sas_queuecommand,
61 .target_alloc = sas_target_alloc,
62 .slave_configure = mvs_slave_configure,
63 .slave_destroy = sas_slave_destroy,
64 .scan_finished = mvs_scan_finished,
65 .scan_start = mvs_scan_start,
66 .change_queue_depth = sas_change_queue_depth,
67 .change_queue_type = sas_change_queue_type,
68 .bios_param = sas_bios_param,
69 .can_queue = 1,
70 .cmd_per_lun = 1,
71 .this_id = -1,
Xiangliang Yub89e8f52011-05-24 22:35:09 +080072 .sg_tablesize = SG_ALL,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040073 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
74 .use_clustering = ENABLE_CLUSTERING,
Srinivas9dc9fd92010-02-15 00:00:00 -060075 .eh_device_reset_handler = sas_eh_device_reset_handler,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040076 .eh_bus_reset_handler = sas_eh_bus_reset_handler,
Andy Yan20b09c22009-05-08 17:46:40 -040077 .slave_alloc = mvs_slave_alloc,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040078 .target_destroy = sas_target_destroy,
79 .ioctl = sas_ioctl,
Xiangliang Yu83c7b612011-05-24 22:31:47 +080080 .shost_attrs = mvst_host_attrs,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040081};
82
83static struct sas_domain_function_template mvs_transport_ops = {
Andy Yan20b09c22009-05-08 17:46:40 -040084 .lldd_dev_found = mvs_dev_found,
Srinivas9dc9fd92010-02-15 00:00:00 -060085 .lldd_dev_gone = mvs_dev_gone,
Andy Yan20b09c22009-05-08 17:46:40 -040086 .lldd_execute_task = mvs_queue_command,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040087 .lldd_control_phy = mvs_phy_control,
Andy Yan20b09c22009-05-08 17:46:40 -040088
89 .lldd_abort_task = mvs_abort_task,
90 .lldd_abort_task_set = mvs_abort_task_set,
91 .lldd_clear_aca = mvs_clear_aca,
Srinivas9dc9fd92010-02-15 00:00:00 -060092 .lldd_clear_task_set = mvs_clear_task_set,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040093 .lldd_I_T_nexus_reset = mvs_I_T_nexus_reset,
Andy Yan20b09c22009-05-08 17:46:40 -040094 .lldd_lu_reset = mvs_lu_reset,
95 .lldd_query_task = mvs_query_task,
Andy Yan20b09c22009-05-08 17:46:40 -040096 .lldd_port_formed = mvs_port_formed,
97 .lldd_port_deformed = mvs_port_deformed,
98
Jeff Garzikdd4969a2009-05-08 17:44:01 -040099};
100
101static void __devinit mvs_phy_init(struct mvs_info *mvi, int phy_id)
102{
103 struct mvs_phy *phy = &mvi->phy[phy_id];
104 struct asd_sas_phy *sas_phy = &phy->sas_phy;
105
Andy Yan20b09c22009-05-08 17:46:40 -0400106 phy->mvi = mvi;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800107 phy->port = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -0400108 init_timer(&phy->timer);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400109 sas_phy->enabled = (phy_id < mvi->chip->n_phy) ? 1 : 0;
110 sas_phy->class = SAS;
111 sas_phy->iproto = SAS_PROTOCOL_ALL;
112 sas_phy->tproto = 0;
113 sas_phy->type = PHY_TYPE_PHYSICAL;
114 sas_phy->role = PHY_ROLE_INITIATOR;
115 sas_phy->oob_mode = OOB_NOT_CONNECTED;
116 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
117
118 sas_phy->id = phy_id;
119 sas_phy->sas_addr = &mvi->sas_addr[0];
120 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
Andy Yan20b09c22009-05-08 17:46:40 -0400121 sas_phy->ha = (struct sas_ha_struct *)mvi->shost->hostdata;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400122 sas_phy->lldd_phy = phy;
123}
124
125static void mvs_free(struct mvs_info *mvi)
126{
Andy Yan20b09c22009-05-08 17:46:40 -0400127 struct mvs_wq *mwq;
128 int slot_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400129
130 if (!mvi)
131 return;
132
Andy Yan20b09c22009-05-08 17:46:40 -0400133 if (mvi->flags & MVF_FLAG_SOC)
134 slot_nr = MVS_SOC_SLOTS;
135 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800136 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400137
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700138 if (mvi->dma_pool)
139 pci_pool_destroy(mvi->dma_pool);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400140
141 if (mvi->tx)
Andy Yan20b09c22009-05-08 17:46:40 -0400142 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400143 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
144 mvi->tx, mvi->tx_dma);
145 if (mvi->rx_fis)
Andy Yan20b09c22009-05-08 17:46:40 -0400146 dma_free_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400147 mvi->rx_fis, mvi->rx_fis_dma);
148 if (mvi->rx)
Andy Yan20b09c22009-05-08 17:46:40 -0400149 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400150 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
151 mvi->rx, mvi->rx_dma);
152 if (mvi->slot)
Andy Yan20b09c22009-05-08 17:46:40 -0400153 dma_free_coherent(mvi->dev,
154 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400155 mvi->slot, mvi->slot_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800156
Andy Yan20b09c22009-05-08 17:46:40 -0400157 if (mvi->bulk_buffer)
158 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
159 mvi->bulk_buffer, mvi->bulk_buffer_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800160 if (mvi->bulk_buffer1)
161 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
162 mvi->bulk_buffer1, mvi->bulk_buffer_dma1);
Andy Yan20b09c22009-05-08 17:46:40 -0400163
164 MVS_CHIP_DISP->chip_iounmap(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400165 if (mvi->shost)
166 scsi_host_put(mvi->shost);
Andy Yan20b09c22009-05-08 17:46:40 -0400167 list_for_each_entry(mwq, &mvi->wq_list, entry)
168 cancel_delayed_work(&mwq->work_q);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800169 kfree(mvi->tags);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400170 kfree(mvi);
171}
172
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800173#ifdef CONFIG_SCSI_MVSAS_TASKLET
Andy Yan20b09c22009-05-08 17:46:40 -0400174static void mvs_tasklet(unsigned long opaque)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400175{
Andy Yan20b09c22009-05-08 17:46:40 -0400176 u32 stat;
177 u16 core_nr, i = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400178
Andy Yan20b09c22009-05-08 17:46:40 -0400179 struct mvs_info *mvi;
180 struct sas_ha_struct *sha = (struct sas_ha_struct *)opaque;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400181
Andy Yan20b09c22009-05-08 17:46:40 -0400182 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
183 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
184
185 if (unlikely(!mvi))
186 BUG_ON(1);
187
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800188 stat = MVS_CHIP_DISP->isr_status(mvi, mvi->pdev->irq);
189 if (!stat)
190 goto out;
191
Andy Yan20b09c22009-05-08 17:46:40 -0400192 for (i = 0; i < core_nr; i++) {
193 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800194 MVS_CHIP_DISP->isr(mvi, mvi->pdev->irq, stat);
Andy Yan20b09c22009-05-08 17:46:40 -0400195 }
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800196out:
197 MVS_CHIP_DISP->interrupt_enable(mvi);
Andy Yan20b09c22009-05-08 17:46:40 -0400198
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400199}
200#endif
201
202static irqreturn_t mvs_interrupt(int irq, void *opaque)
203{
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800204 u32 core_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400205 u32 stat;
Andy Yan20b09c22009-05-08 17:46:40 -0400206 struct mvs_info *mvi;
207 struct sas_ha_struct *sha = opaque;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800208#ifndef CONFIG_SCSI_MVSAS_TASKLET
209 u32 i;
210#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400211
Andy Yan20b09c22009-05-08 17:46:40 -0400212 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
213 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400214
Andy Yan20b09c22009-05-08 17:46:40 -0400215 if (unlikely(!mvi))
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400216 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800217#ifdef CONFIG_SCSI_MVSAS_TASKLET
218 MVS_CHIP_DISP->interrupt_disable(mvi);
219#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400220
Andy Yan20b09c22009-05-08 17:46:40 -0400221 stat = MVS_CHIP_DISP->isr_status(mvi, irq);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800222 if (!stat) {
223 #ifdef CONFIG_SCSI_MVSAS_TASKLET
224 MVS_CHIP_DISP->interrupt_enable(mvi);
225 #endif
Andy Yan20b09c22009-05-08 17:46:40 -0400226 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800227 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400228
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800229#ifdef CONFIG_SCSI_MVSAS_TASKLET
230 tasklet_schedule(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400231#else
Andy Yan20b09c22009-05-08 17:46:40 -0400232 for (i = 0; i < core_nr; i++) {
233 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
234 MVS_CHIP_DISP->isr(mvi, irq, stat);
235 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400236#endif
237 return IRQ_HANDLED;
238}
239
Andy Yan20b09c22009-05-08 17:46:40 -0400240static int __devinit mvs_alloc(struct mvs_info *mvi, struct Scsi_Host *shost)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400241{
Srinivas9dc9fd92010-02-15 00:00:00 -0600242 int i = 0, slot_nr;
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700243 char pool_name[32];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400244
Andy Yan20b09c22009-05-08 17:46:40 -0400245 if (mvi->flags & MVF_FLAG_SOC)
246 slot_nr = MVS_SOC_SLOTS;
247 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800248 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400249
250 spin_lock_init(&mvi->lock);
Andy Yan20b09c22009-05-08 17:46:40 -0400251 for (i = 0; i < mvi->chip->n_phy; i++) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400252 mvs_phy_init(mvi, i);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400253 mvi->port[i].wide_port_phymap = 0;
254 mvi->port[i].port_attached = 0;
255 INIT_LIST_HEAD(&mvi->port[i].list);
256 }
Andy Yan20b09c22009-05-08 17:46:40 -0400257 for (i = 0; i < MVS_MAX_DEVICES; i++) {
258 mvi->devices[i].taskfileset = MVS_ID_NOT_MAPPED;
259 mvi->devices[i].dev_type = NO_DEVICE;
260 mvi->devices[i].device_id = i;
261 mvi->devices[i].dev_status = MVS_DEV_NORMAL;
Srinivas9dc9fd92010-02-15 00:00:00 -0600262 init_timer(&mvi->devices[i].timer);
Andy Yan20b09c22009-05-08 17:46:40 -0400263 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400264
265 /*
266 * alloc and init our DMA areas
267 */
Andy Yan20b09c22009-05-08 17:46:40 -0400268 mvi->tx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400269 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
270 &mvi->tx_dma, GFP_KERNEL);
271 if (!mvi->tx)
272 goto err_out;
273 memset(mvi->tx, 0, sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ);
Andy Yan20b09c22009-05-08 17:46:40 -0400274 mvi->rx_fis = dma_alloc_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400275 &mvi->rx_fis_dma, GFP_KERNEL);
276 if (!mvi->rx_fis)
277 goto err_out;
278 memset(mvi->rx_fis, 0, MVS_RX_FISL_SZ);
279
Andy Yan20b09c22009-05-08 17:46:40 -0400280 mvi->rx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400281 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
282 &mvi->rx_dma, GFP_KERNEL);
283 if (!mvi->rx)
284 goto err_out;
285 memset(mvi->rx, 0, sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400286 mvi->rx[0] = cpu_to_le32(0xfff);
287 mvi->rx_cons = 0xfff;
288
Andy Yan20b09c22009-05-08 17:46:40 -0400289 mvi->slot = dma_alloc_coherent(mvi->dev,
290 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400291 &mvi->slot_dma, GFP_KERNEL);
292 if (!mvi->slot)
293 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400294 memset(mvi->slot, 0, sizeof(*mvi->slot) * slot_nr);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400295
Andy Yan20b09c22009-05-08 17:46:40 -0400296 mvi->bulk_buffer = dma_alloc_coherent(mvi->dev,
297 TRASH_BUCKET_SIZE,
298 &mvi->bulk_buffer_dma, GFP_KERNEL);
299 if (!mvi->bulk_buffer)
300 goto err_out;
Xiangliang Yu8882f082011-05-24 22:33:11 +0800301
302 mvi->bulk_buffer1 = dma_alloc_coherent(mvi->dev,
303 TRASH_BUCKET_SIZE,
304 &mvi->bulk_buffer_dma1, GFP_KERNEL);
305 if (!mvi->bulk_buffer1)
306 goto err_out;
307
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700308 sprintf(pool_name, "%s%d", "mvs_dma_pool", mvi->id);
309 mvi->dma_pool = pci_pool_create(pool_name, mvi->pdev, MVS_SLOT_BUF_SZ, 16, 0);
310 if (!mvi->dma_pool) {
311 printk(KERN_DEBUG "failed to create dma pool %s.\n", pool_name);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400312 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400313 }
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700314 mvi->tags_num = slot_nr;
315
Andy Yan20b09c22009-05-08 17:46:40 -0400316 /* Initialize tags */
317 mvs_tag_init(mvi);
318 return 0;
319err_out:
320 return 1;
321}
322
323
324int mvs_ioremap(struct mvs_info *mvi, int bar, int bar_ex)
325{
326 unsigned long res_start, res_len, res_flag, res_flag_ex = 0;
327 struct pci_dev *pdev = mvi->pdev;
328 if (bar_ex != -1) {
329 /*
330 * ioremap main and peripheral registers
331 */
332 res_start = pci_resource_start(pdev, bar_ex);
333 res_len = pci_resource_len(pdev, bar_ex);
334 if (!res_start || !res_len)
335 goto err_out;
336
337 res_flag_ex = pci_resource_flags(pdev, bar_ex);
338 if (res_flag_ex & IORESOURCE_MEM) {
339 if (res_flag_ex & IORESOURCE_CACHEABLE)
340 mvi->regs_ex = ioremap(res_start, res_len);
341 else
342 mvi->regs_ex = ioremap_nocache(res_start,
343 res_len);
344 } else
345 mvi->regs_ex = (void *)res_start;
346 if (!mvi->regs_ex)
347 goto err_out;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400348 }
349
Andy Yan20b09c22009-05-08 17:46:40 -0400350 res_start = pci_resource_start(pdev, bar);
351 res_len = pci_resource_len(pdev, bar);
352 if (!res_start || !res_len)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400353 goto err_out;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400354
Andy Yan20b09c22009-05-08 17:46:40 -0400355 res_flag = pci_resource_flags(pdev, bar);
356 if (res_flag & IORESOURCE_CACHEABLE)
357 mvi->regs = ioremap(res_start, res_len);
358 else
359 mvi->regs = ioremap_nocache(res_start, res_len);
360
361 if (!mvi->regs) {
362 if (mvi->regs_ex && (res_flag_ex & IORESOURCE_MEM))
363 iounmap(mvi->regs_ex);
364 mvi->regs_ex = NULL;
365 goto err_out;
366 }
367
368 return 0;
369err_out:
370 return -1;
371}
372
373void mvs_iounmap(void __iomem *regs)
374{
375 iounmap(regs);
376}
377
378static struct mvs_info *__devinit mvs_pci_alloc(struct pci_dev *pdev,
379 const struct pci_device_id *ent,
380 struct Scsi_Host *shost, unsigned int id)
381{
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800382 struct mvs_info *mvi = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -0400383 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
384
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800385 mvi = kzalloc(sizeof(*mvi) +
386 (1L << mvs_chips[ent->driver_data].slot_width) *
387 sizeof(struct mvs_slot_info), GFP_KERNEL);
Andy Yan20b09c22009-05-08 17:46:40 -0400388 if (!mvi)
389 return NULL;
390
391 mvi->pdev = pdev;
392 mvi->dev = &pdev->dev;
393 mvi->chip_id = ent->driver_data;
394 mvi->chip = &mvs_chips[mvi->chip_id];
395 INIT_LIST_HEAD(&mvi->wq_list);
Andy Yan20b09c22009-05-08 17:46:40 -0400396
397 ((struct mvs_prv_info *)sha->lldd_ha)->mvi[id] = mvi;
398 ((struct mvs_prv_info *)sha->lldd_ha)->n_phy = mvi->chip->n_phy;
399
400 mvi->id = id;
401 mvi->sas = sha;
402 mvi->shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400403
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800404 mvi->tags = kzalloc(MVS_CHIP_SLOT_SZ>>3, GFP_KERNEL);
405 if (!mvi->tags)
406 goto err_out;
407
Andy Yan20b09c22009-05-08 17:46:40 -0400408 if (MVS_CHIP_DISP->chip_ioremap(mvi))
409 goto err_out;
410 if (!mvs_alloc(mvi, shost))
411 return mvi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400412err_out:
413 mvs_free(mvi);
414 return NULL;
415}
416
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400417static int pci_go_64(struct pci_dev *pdev)
418{
419 int rc;
420
421 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
422 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
423 if (rc) {
424 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
425 if (rc) {
426 dev_printk(KERN_ERR, &pdev->dev,
427 "64-bit DMA enable failed\n");
428 return rc;
429 }
430 }
431 } else {
432 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
433 if (rc) {
434 dev_printk(KERN_ERR, &pdev->dev,
435 "32-bit DMA enable failed\n");
436 return rc;
437 }
438 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
439 if (rc) {
440 dev_printk(KERN_ERR, &pdev->dev,
441 "32-bit consistent DMA enable failed\n");
442 return rc;
443 }
444 }
445
446 return rc;
447}
448
Andy Yan20b09c22009-05-08 17:46:40 -0400449static int __devinit mvs_prep_sas_ha_init(struct Scsi_Host *shost,
450 const struct mvs_chip_info *chip_info)
451{
452 int phy_nr, port_nr; unsigned short core_nr;
453 struct asd_sas_phy **arr_phy;
454 struct asd_sas_port **arr_port;
455 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
456
457 core_nr = chip_info->n_host;
458 phy_nr = core_nr * chip_info->n_phy;
459 port_nr = phy_nr;
460
461 memset(sha, 0x00, sizeof(struct sas_ha_struct));
462 arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
463 arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
464 if (!arr_phy || !arr_port)
465 goto exit_free;
466
467 sha->sas_phy = arr_phy;
468 sha->sas_port = arr_port;
Srinivas9dc9fd92010-02-15 00:00:00 -0600469 sha->core.shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400470
471 sha->lldd_ha = kzalloc(sizeof(struct mvs_prv_info), GFP_KERNEL);
472 if (!sha->lldd_ha)
473 goto exit_free;
474
475 ((struct mvs_prv_info *)sha->lldd_ha)->n_host = core_nr;
476
477 shost->transportt = mvs_stt;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800478 shost->max_id = MVS_MAX_DEVICES;
Andy Yan20b09c22009-05-08 17:46:40 -0400479 shost->max_lun = ~0;
480 shost->max_channel = 1;
481 shost->max_cmd_len = 16;
482
483 return 0;
484exit_free:
485 kfree(arr_phy);
486 kfree(arr_port);
487 return -1;
488
489}
490
491static void __devinit mvs_post_sas_ha_init(struct Scsi_Host *shost,
492 const struct mvs_chip_info *chip_info)
493{
494 int can_queue, i = 0, j = 0;
495 struct mvs_info *mvi = NULL;
496 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
497 unsigned short nr_core = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
498
499 for (j = 0; j < nr_core; j++) {
500 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[j];
501 for (i = 0; i < chip_info->n_phy; i++) {
502 sha->sas_phy[j * chip_info->n_phy + i] =
503 &mvi->phy[i].sas_phy;
504 sha->sas_port[j * chip_info->n_phy + i] =
505 &mvi->port[i].sas_port;
506 }
507 }
508
509 sha->sas_ha_name = DRV_NAME;
510 sha->dev = mvi->dev;
511 sha->lldd_module = THIS_MODULE;
512 sha->sas_addr = &mvi->sas_addr[0];
513
514 sha->num_phys = nr_core * chip_info->n_phy;
515
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700516 sha->lldd_max_execute_num = lldd_max_execute_num;
Andy Yan20b09c22009-05-08 17:46:40 -0400517
518 if (mvi->flags & MVF_FLAG_SOC)
519 can_queue = MVS_SOC_CAN_QUEUE;
520 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800521 can_queue = MVS_CHIP_SLOT_SZ;
Andy Yan20b09c22009-05-08 17:46:40 -0400522
523 sha->lldd_queue_size = can_queue;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800524 shost->sg_tablesize = min_t(u16, SG_ALL, MVS_MAX_SG);
Andy Yan20b09c22009-05-08 17:46:40 -0400525 shost->can_queue = can_queue;
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800526 mvi->shost->cmd_per_lun = MVS_QUEUE_SIZE;
Andy Yan20b09c22009-05-08 17:46:40 -0400527 sha->core.shost = mvi->shost;
528}
529
530static void mvs_init_sas_add(struct mvs_info *mvi)
531{
532 u8 i;
533 for (i = 0; i < mvi->chip->n_phy; i++) {
534 mvi->phy[i].dev_sas_addr = 0x5005043011ab0000ULL;
535 mvi->phy[i].dev_sas_addr =
536 cpu_to_be64((u64)(*(u64 *)&mvi->phy[i].dev_sas_addr));
537 }
538
539 memcpy(mvi->sas_addr, &mvi->phy[0].dev_sas_addr, SAS_ADDR_SIZE);
540}
541
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400542static int __devinit mvs_pci_init(struct pci_dev *pdev,
543 const struct pci_device_id *ent)
544{
Andy Yan20b09c22009-05-08 17:46:40 -0400545 unsigned int rc, nhost = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400546 struct mvs_info *mvi;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800547 struct mvs_prv_info *mpi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400548 irq_handler_t irq_handler = mvs_interrupt;
Andy Yan20b09c22009-05-08 17:46:40 -0400549 struct Scsi_Host *shost = NULL;
550 const struct mvs_chip_info *chip;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400551
Andy Yan20b09c22009-05-08 17:46:40 -0400552 dev_printk(KERN_INFO, &pdev->dev,
553 "mvsas: driver version %s\n", DRV_VERSION);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400554 rc = pci_enable_device(pdev);
555 if (rc)
Andy Yan20b09c22009-05-08 17:46:40 -0400556 goto err_out_enable;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400557
558 pci_set_master(pdev);
559
560 rc = pci_request_regions(pdev, DRV_NAME);
561 if (rc)
562 goto err_out_disable;
563
564 rc = pci_go_64(pdev);
565 if (rc)
566 goto err_out_regions;
567
Andy Yan20b09c22009-05-08 17:46:40 -0400568 shost = scsi_host_alloc(&mvs_sht, sizeof(void *));
569 if (!shost) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400570 rc = -ENOMEM;
571 goto err_out_regions;
572 }
573
Andy Yan20b09c22009-05-08 17:46:40 -0400574 chip = &mvs_chips[ent->driver_data];
575 SHOST_TO_SAS_HA(shost) =
576 kcalloc(1, sizeof(struct sas_ha_struct), GFP_KERNEL);
577 if (!SHOST_TO_SAS_HA(shost)) {
578 kfree(shost);
579 rc = -ENOMEM;
580 goto err_out_regions;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400581 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400582
Andy Yan20b09c22009-05-08 17:46:40 -0400583 rc = mvs_prep_sas_ha_init(shost, chip);
584 if (rc) {
585 kfree(shost);
586 rc = -ENOMEM;
587 goto err_out_regions;
588 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400589
Andy Yan20b09c22009-05-08 17:46:40 -0400590 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400591
Andy Yan20b09c22009-05-08 17:46:40 -0400592 do {
593 mvi = mvs_pci_alloc(pdev, ent, shost, nhost);
594 if (!mvi) {
595 rc = -ENOMEM;
596 goto err_out_regions;
597 }
598
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800599 memset(&mvi->hba_info_param, 0xFF,
600 sizeof(struct hba_info_page));
601
Andy Yan20b09c22009-05-08 17:46:40 -0400602 mvs_init_sas_add(mvi);
603
604 mvi->instance = nhost;
605 rc = MVS_CHIP_DISP->chip_init(mvi);
606 if (rc) {
607 mvs_free(mvi);
608 goto err_out_regions;
609 }
610 nhost++;
611 } while (nhost < chip->n_host);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800612 mpi = (struct mvs_prv_info *)(SHOST_TO_SAS_HA(shost)->lldd_ha);
613#ifdef CONFIG_SCSI_MVSAS_TASKLET
614 tasklet_init(&(mpi->mv_tasklet), mvs_tasklet,
Srinivas9dc9fd92010-02-15 00:00:00 -0600615 (unsigned long)SHOST_TO_SAS_HA(shost));
616#endif
Andy Yan20b09c22009-05-08 17:46:40 -0400617
618 mvs_post_sas_ha_init(shost, chip);
619
620 rc = scsi_add_host(shost, &pdev->dev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400621 if (rc)
622 goto err_out_shost;
623
Andy Yan20b09c22009-05-08 17:46:40 -0400624 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
625 if (rc)
626 goto err_out_shost;
627 rc = request_irq(pdev->irq, irq_handler, IRQF_SHARED,
628 DRV_NAME, SHOST_TO_SAS_HA(shost));
629 if (rc)
630 goto err_not_sas;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400631
Andy Yan20b09c22009-05-08 17:46:40 -0400632 MVS_CHIP_DISP->interrupt_enable(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400633
634 scsi_scan_host(mvi->shost);
635
636 return 0;
637
Andy Yan20b09c22009-05-08 17:46:40 -0400638err_not_sas:
639 sas_unregister_ha(SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400640err_out_shost:
641 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400642err_out_regions:
643 pci_release_regions(pdev);
644err_out_disable:
645 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400646err_out_enable:
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400647 return rc;
648}
649
650static void __devexit mvs_pci_remove(struct pci_dev *pdev)
651{
Andy Yan20b09c22009-05-08 17:46:40 -0400652 unsigned short core_nr, i = 0;
653 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
654 struct mvs_info *mvi = NULL;
655
656 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
657 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
658
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800659#ifdef CONFIG_SCSI_MVSAS_TASKLET
660 tasklet_kill(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Andy Yan20b09c22009-05-08 17:46:40 -0400661#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400662
663 pci_set_drvdata(pdev, NULL);
Andy Yan20b09c22009-05-08 17:46:40 -0400664 sas_unregister_ha(sha);
665 sas_remove_host(mvi->shost);
666 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400667
Andy Yan20b09c22009-05-08 17:46:40 -0400668 MVS_CHIP_DISP->interrupt_disable(mvi);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800669 free_irq(mvi->pdev->irq, sha);
Andy Yan20b09c22009-05-08 17:46:40 -0400670 for (i = 0; i < core_nr; i++) {
671 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400672 mvs_free(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400673 }
Andy Yan20b09c22009-05-08 17:46:40 -0400674 kfree(sha->sas_phy);
675 kfree(sha->sas_port);
676 kfree(sha);
677 pci_release_regions(pdev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400678 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400679 return;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400680}
681
682static struct pci_device_id __devinitdata mvs_pci_table[] = {
683 { PCI_VDEVICE(MARVELL, 0x6320), chip_6320 },
684 { PCI_VDEVICE(MARVELL, 0x6340), chip_6440 },
685 {
686 .vendor = PCI_VENDOR_ID_MARVELL,
687 .device = 0x6440,
688 .subvendor = PCI_ANY_ID,
689 .subdevice = 0x6480,
690 .class = 0,
691 .class_mask = 0,
Andy Yan20b09c22009-05-08 17:46:40 -0400692 .driver_data = chip_6485,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400693 },
694 { PCI_VDEVICE(MARVELL, 0x6440), chip_6440 },
Andy Yan20b09c22009-05-08 17:46:40 -0400695 { PCI_VDEVICE(MARVELL, 0x6485), chip_6485 },
696 { PCI_VDEVICE(MARVELL, 0x9480), chip_9480 },
697 { PCI_VDEVICE(MARVELL, 0x9180), chip_9180 },
Nick Chengf31491d2009-09-08 19:03:07 +0800698 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1300), chip_1300 },
699 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1320), chip_1320 },
Srinivas7ec4ad02009-11-24 20:07:39 +0530700 { PCI_VDEVICE(ADAPTEC2, 0x0450), chip_6440 },
HighPoint Linux Team463b8972011-02-23 16:28:44 +0800701 { PCI_VDEVICE(TTI, 0x2710), chip_9480 },
702 { PCI_VDEVICE(TTI, 0x2720), chip_9480 },
703 { PCI_VDEVICE(TTI, 0x2721), chip_9480 },
704 { PCI_VDEVICE(TTI, 0x2722), chip_9480 },
705 { PCI_VDEVICE(TTI, 0x2740), chip_9480 },
706 { PCI_VDEVICE(TTI, 0x2744), chip_9480 },
707 { PCI_VDEVICE(TTI, 0x2760), chip_9480 },
Xiangliang Yu82140282011-04-26 06:34:01 -0700708 {
709 .vendor = 0x1b4b,
710 .device = 0x9445,
711 .subvendor = PCI_ANY_ID,
712 .subdevice = 0x9480,
713 .class = 0,
714 .class_mask = 0,
715 .driver_data = chip_9445,
716 },
717 {
718 .vendor = 0x1b4b,
719 .device = 0x9485,
720 .subvendor = PCI_ANY_ID,
721 .subdevice = 0x9480,
722 .class = 0,
723 .class_mask = 0,
724 .driver_data = chip_9485,
725 },
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400726
727 { } /* terminate list */
728};
729
730static struct pci_driver mvs_pci_driver = {
731 .name = DRV_NAME,
732 .id_table = mvs_pci_table,
733 .probe = mvs_pci_init,
734 .remove = __devexit_p(mvs_pci_remove),
735};
736
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800737static ssize_t
738mvs_show_driver_version(struct device *cdev,
739 struct device_attribute *attr, char *buffer)
740{
741 return snprintf(buffer, PAGE_SIZE, "%s\n", DRV_VERSION);
742}
743
744static DEVICE_ATTR(driver_version,
745 S_IRUGO,
746 mvs_show_driver_version,
747 NULL);
748
749static ssize_t
750mvs_store_interrupt_coalescing(struct device *cdev,
751 struct device_attribute *attr,
752 const char *buffer, size_t size)
753{
754 int val = 0;
755 struct mvs_info *mvi = NULL;
756 struct Scsi_Host *shost = class_to_shost(cdev);
757 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
758 u8 i, core_nr;
759 if (buffer == NULL)
760 return size;
761
762 if (sscanf(buffer, "%d", &val) != 1)
763 return -EINVAL;
764
765 if (val >= 0x10000) {
766 mv_dprintk("interrupt coalescing timer %d us is"
767 "too long\n", val);
768 return strlen(buffer);
769 }
770
771 interrupt_coalescing = val;
772
773 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
774 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
775
776 if (unlikely(!mvi))
777 return -EINVAL;
778
779 for (i = 0; i < core_nr; i++) {
780 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
781 if (MVS_CHIP_DISP->tune_interrupt)
782 MVS_CHIP_DISP->tune_interrupt(mvi,
783 interrupt_coalescing);
784 }
785 mv_dprintk("set interrupt coalescing time to %d us\n",
786 interrupt_coalescing);
787 return strlen(buffer);
788}
789
790static ssize_t mvs_show_interrupt_coalescing(struct device *cdev,
791 struct device_attribute *attr, char *buffer)
792{
793 return snprintf(buffer, PAGE_SIZE, "%d\n", interrupt_coalescing);
794}
795
796static DEVICE_ATTR(interrupt_coalescing,
797 S_IRUGO|S_IWUSR,
798 mvs_show_interrupt_coalescing,
799 mvs_store_interrupt_coalescing);
800
Andy Yan20b09c22009-05-08 17:46:40 -0400801/* task handler */
802struct task_struct *mvs_th;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400803static int __init mvs_init(void)
804{
805 int rc;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400806 mvs_stt = sas_domain_attach_transport(&mvs_transport_ops);
807 if (!mvs_stt)
808 return -ENOMEM;
809
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700810 mvs_task_list_cache = kmem_cache_create("mvs_task_list", sizeof(struct mvs_task_list),
811 0, SLAB_HWCACHE_ALIGN, NULL);
812 if (!mvs_task_list_cache) {
813 rc = -ENOMEM;
814 mv_printk("%s: mvs_task_list_cache alloc failed! \n", __func__);
815 goto err_out;
816 }
817
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400818 rc = pci_register_driver(&mvs_pci_driver);
Andy Yan20b09c22009-05-08 17:46:40 -0400819
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400820 if (rc)
821 goto err_out;
822
823 return 0;
824
825err_out:
826 sas_release_transport(mvs_stt);
827 return rc;
828}
829
830static void __exit mvs_exit(void)
831{
832 pci_unregister_driver(&mvs_pci_driver);
833 sas_release_transport(mvs_stt);
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700834 kmem_cache_destroy(mvs_task_list_cache);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400835}
836
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800837struct device_attribute *mvst_host_attrs[] = {
838 &dev_attr_driver_version,
839 &dev_attr_interrupt_coalescing,
840 NULL,
841};
842
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400843module_init(mvs_init);
844module_exit(mvs_exit);
845
846MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
847MODULE_DESCRIPTION("Marvell 88SE6440 SAS/SATA controller driver");
848MODULE_VERSION(DRV_VERSION);
849MODULE_LICENSE("GPL");
Andy Yan20b09c22009-05-08 17:46:40 -0400850#ifdef CONFIG_PCI
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400851MODULE_DEVICE_TABLE(pci, mvs_pci_table);
Andy Yan20b09c22009-05-08 17:46:40 -0400852#endif