blob: 53030b0e8015d833719b276adad1d8898cb89780 [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 Yu83c7b612011-05-24 22:31:47 +080029int interrupt_coalescing = 0x80;
30
Jeff Garzikdd4969a2009-05-08 17:44:01 -040031static struct scsi_transport_template *mvs_stt;
Jeff Garzikdd4969a2009-05-08 17:44:01 -040032static const struct mvs_chip_info mvs_chips[] = {
Xiangliang Yua4632aa2011-05-24 22:36:02 +080033 [chip_6320] = { 1, 2, 0x400, 17, 16, 6, 9, &mvs_64xx_dispatch, },
34 [chip_6440] = { 1, 4, 0x400, 17, 16, 6, 9, &mvs_64xx_dispatch, },
35 [chip_6485] = { 1, 8, 0x800, 33, 32, 6, 10, &mvs_64xx_dispatch, },
36 [chip_9180] = { 2, 4, 0x800, 17, 64, 8, 9, &mvs_94xx_dispatch, },
37 [chip_9480] = { 2, 4, 0x800, 17, 64, 8, 9, &mvs_94xx_dispatch, },
38 [chip_9445] = { 1, 4, 0x800, 17, 64, 8, 11, &mvs_94xx_dispatch, },
39 [chip_9485] = { 2, 4, 0x800, 17, 64, 8, 11, &mvs_94xx_dispatch, },
40 [chip_1300] = { 1, 4, 0x400, 17, 16, 6, 9, &mvs_64xx_dispatch, },
41 [chip_1320] = { 2, 4, 0x800, 17, 64, 8, 9, &mvs_94xx_dispatch, },
Jeff Garzikdd4969a2009-05-08 17:44:01 -040042};
43
Xiangliang Yu83c7b612011-05-24 22:31:47 +080044struct device_attribute *mvst_host_attrs[];
45
Andy Yan20b09c22009-05-08 17:46:40 -040046#define SOC_SAS_NUM 2
47
Jeff Garzikdd4969a2009-05-08 17:44:01 -040048static struct scsi_host_template mvs_sht = {
49 .module = THIS_MODULE,
50 .name = DRV_NAME,
51 .queuecommand = sas_queuecommand,
52 .target_alloc = sas_target_alloc,
Dan Williamse211e2c2011-09-20 15:10:55 -070053 .slave_configure = sas_slave_configure,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040054 .scan_finished = mvs_scan_finished,
55 .scan_start = mvs_scan_start,
56 .change_queue_depth = sas_change_queue_depth,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040057 .bios_param = sas_bios_param,
58 .can_queue = 1,
59 .cmd_per_lun = 1,
60 .this_id = -1,
Xiangliang Yub89e8f52011-05-24 22:35:09 +080061 .sg_tablesize = SG_ALL,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040062 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
63 .use_clustering = ENABLE_CLUSTERING,
Srinivas9dc9fd92010-02-15 00:00:00 -060064 .eh_device_reset_handler = sas_eh_device_reset_handler,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040065 .eh_bus_reset_handler = sas_eh_bus_reset_handler,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040066 .target_destroy = sas_target_destroy,
67 .ioctl = sas_ioctl,
Xiangliang Yu83c7b612011-05-24 22:31:47 +080068 .shost_attrs = mvst_host_attrs,
Christoph Hellwig2ecb2042014-11-03 14:09:02 +010069 .use_blk_tags = 1,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +010070 .track_queue_depth = 1,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040071};
72
73static struct sas_domain_function_template mvs_transport_ops = {
Andy Yan20b09c22009-05-08 17:46:40 -040074 .lldd_dev_found = mvs_dev_found,
Srinivas9dc9fd92010-02-15 00:00:00 -060075 .lldd_dev_gone = mvs_dev_gone,
Andy Yan20b09c22009-05-08 17:46:40 -040076 .lldd_execute_task = mvs_queue_command,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040077 .lldd_control_phy = mvs_phy_control,
Andy Yan20b09c22009-05-08 17:46:40 -040078
79 .lldd_abort_task = mvs_abort_task,
80 .lldd_abort_task_set = mvs_abort_task_set,
81 .lldd_clear_aca = mvs_clear_aca,
Srinivas9dc9fd92010-02-15 00:00:00 -060082 .lldd_clear_task_set = mvs_clear_task_set,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040083 .lldd_I_T_nexus_reset = mvs_I_T_nexus_reset,
Andy Yan20b09c22009-05-08 17:46:40 -040084 .lldd_lu_reset = mvs_lu_reset,
85 .lldd_query_task = mvs_query_task,
Andy Yan20b09c22009-05-08 17:46:40 -040086 .lldd_port_formed = mvs_port_formed,
87 .lldd_port_deformed = mvs_port_deformed,
88
Jeff Garzikdd4969a2009-05-08 17:44:01 -040089};
90
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080091static void mvs_phy_init(struct mvs_info *mvi, int phy_id)
Jeff Garzikdd4969a2009-05-08 17:44:01 -040092{
93 struct mvs_phy *phy = &mvi->phy[phy_id];
94 struct asd_sas_phy *sas_phy = &phy->sas_phy;
95
Andy Yan20b09c22009-05-08 17:46:40 -040096 phy->mvi = mvi;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +080097 phy->port = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -040098 init_timer(&phy->timer);
Jeff Garzikdd4969a2009-05-08 17:44:01 -040099 sas_phy->enabled = (phy_id < mvi->chip->n_phy) ? 1 : 0;
100 sas_phy->class = SAS;
101 sas_phy->iproto = SAS_PROTOCOL_ALL;
102 sas_phy->tproto = 0;
103 sas_phy->type = PHY_TYPE_PHYSICAL;
104 sas_phy->role = PHY_ROLE_INITIATOR;
105 sas_phy->oob_mode = OOB_NOT_CONNECTED;
106 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
107
108 sas_phy->id = phy_id;
109 sas_phy->sas_addr = &mvi->sas_addr[0];
110 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
Andy Yan20b09c22009-05-08 17:46:40 -0400111 sas_phy->ha = (struct sas_ha_struct *)mvi->shost->hostdata;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400112 sas_phy->lldd_phy = phy;
113}
114
115static void mvs_free(struct mvs_info *mvi)
116{
Andy Yan20b09c22009-05-08 17:46:40 -0400117 struct mvs_wq *mwq;
118 int slot_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400119
120 if (!mvi)
121 return;
122
Andy Yan20b09c22009-05-08 17:46:40 -0400123 if (mvi->flags & MVF_FLAG_SOC)
124 slot_nr = MVS_SOC_SLOTS;
125 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800126 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400127
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700128 if (mvi->dma_pool)
129 pci_pool_destroy(mvi->dma_pool);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400130
131 if (mvi->tx)
Andy Yan20b09c22009-05-08 17:46:40 -0400132 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400133 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
134 mvi->tx, mvi->tx_dma);
135 if (mvi->rx_fis)
Andy Yan20b09c22009-05-08 17:46:40 -0400136 dma_free_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400137 mvi->rx_fis, mvi->rx_fis_dma);
138 if (mvi->rx)
Andy Yan20b09c22009-05-08 17:46:40 -0400139 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400140 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
141 mvi->rx, mvi->rx_dma);
142 if (mvi->slot)
Andy Yan20b09c22009-05-08 17:46:40 -0400143 dma_free_coherent(mvi->dev,
144 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400145 mvi->slot, mvi->slot_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800146
Andy Yan20b09c22009-05-08 17:46:40 -0400147 if (mvi->bulk_buffer)
148 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
149 mvi->bulk_buffer, mvi->bulk_buffer_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800150 if (mvi->bulk_buffer1)
151 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
152 mvi->bulk_buffer1, mvi->bulk_buffer_dma1);
Andy Yan20b09c22009-05-08 17:46:40 -0400153
154 MVS_CHIP_DISP->chip_iounmap(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400155 if (mvi->shost)
156 scsi_host_put(mvi->shost);
Andy Yan20b09c22009-05-08 17:46:40 -0400157 list_for_each_entry(mwq, &mvi->wq_list, entry)
158 cancel_delayed_work(&mwq->work_q);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800159 kfree(mvi->tags);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400160 kfree(mvi);
161}
162
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800163#ifdef CONFIG_SCSI_MVSAS_TASKLET
Andy Yan20b09c22009-05-08 17:46:40 -0400164static void mvs_tasklet(unsigned long opaque)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400165{
Andy Yan20b09c22009-05-08 17:46:40 -0400166 u32 stat;
167 u16 core_nr, i = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400168
Andy Yan20b09c22009-05-08 17:46:40 -0400169 struct mvs_info *mvi;
170 struct sas_ha_struct *sha = (struct sas_ha_struct *)opaque;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400171
Andy Yan20b09c22009-05-08 17:46:40 -0400172 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
173 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
174
175 if (unlikely(!mvi))
176 BUG_ON(1);
177
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800178 stat = MVS_CHIP_DISP->isr_status(mvi, mvi->pdev->irq);
179 if (!stat)
180 goto out;
181
Andy Yan20b09c22009-05-08 17:46:40 -0400182 for (i = 0; i < core_nr; i++) {
183 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800184 MVS_CHIP_DISP->isr(mvi, mvi->pdev->irq, stat);
Andy Yan20b09c22009-05-08 17:46:40 -0400185 }
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800186out:
187 MVS_CHIP_DISP->interrupt_enable(mvi);
Andy Yan20b09c22009-05-08 17:46:40 -0400188
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400189}
190#endif
191
192static irqreturn_t mvs_interrupt(int irq, void *opaque)
193{
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800194 u32 core_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400195 u32 stat;
Andy Yan20b09c22009-05-08 17:46:40 -0400196 struct mvs_info *mvi;
197 struct sas_ha_struct *sha = opaque;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800198#ifndef CONFIG_SCSI_MVSAS_TASKLET
199 u32 i;
200#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400201
Andy Yan20b09c22009-05-08 17:46:40 -0400202 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
203 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400204
Andy Yan20b09c22009-05-08 17:46:40 -0400205 if (unlikely(!mvi))
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400206 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800207#ifdef CONFIG_SCSI_MVSAS_TASKLET
208 MVS_CHIP_DISP->interrupt_disable(mvi);
209#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400210
Andy Yan20b09c22009-05-08 17:46:40 -0400211 stat = MVS_CHIP_DISP->isr_status(mvi, irq);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800212 if (!stat) {
213 #ifdef CONFIG_SCSI_MVSAS_TASKLET
214 MVS_CHIP_DISP->interrupt_enable(mvi);
215 #endif
Andy Yan20b09c22009-05-08 17:46:40 -0400216 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800217 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400218
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800219#ifdef CONFIG_SCSI_MVSAS_TASKLET
220 tasklet_schedule(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400221#else
Andy Yan20b09c22009-05-08 17:46:40 -0400222 for (i = 0; i < core_nr; i++) {
223 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
224 MVS_CHIP_DISP->isr(mvi, irq, stat);
225 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400226#endif
227 return IRQ_HANDLED;
228}
229
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800230static int mvs_alloc(struct mvs_info *mvi, struct Scsi_Host *shost)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400231{
Srinivas9dc9fd92010-02-15 00:00:00 -0600232 int i = 0, slot_nr;
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700233 char pool_name[32];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400234
Andy Yan20b09c22009-05-08 17:46:40 -0400235 if (mvi->flags & MVF_FLAG_SOC)
236 slot_nr = MVS_SOC_SLOTS;
237 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800238 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400239
240 spin_lock_init(&mvi->lock);
Andy Yan20b09c22009-05-08 17:46:40 -0400241 for (i = 0; i < mvi->chip->n_phy; i++) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400242 mvs_phy_init(mvi, i);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400243 mvi->port[i].wide_port_phymap = 0;
244 mvi->port[i].port_attached = 0;
245 INIT_LIST_HEAD(&mvi->port[i].list);
246 }
Andy Yan20b09c22009-05-08 17:46:40 -0400247 for (i = 0; i < MVS_MAX_DEVICES; i++) {
248 mvi->devices[i].taskfileset = MVS_ID_NOT_MAPPED;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700249 mvi->devices[i].dev_type = SAS_PHY_UNUSED;
Andy Yan20b09c22009-05-08 17:46:40 -0400250 mvi->devices[i].device_id = i;
251 mvi->devices[i].dev_status = MVS_DEV_NORMAL;
Srinivas9dc9fd92010-02-15 00:00:00 -0600252 init_timer(&mvi->devices[i].timer);
Andy Yan20b09c22009-05-08 17:46:40 -0400253 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400254
255 /*
256 * alloc and init our DMA areas
257 */
Andy Yan20b09c22009-05-08 17:46:40 -0400258 mvi->tx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400259 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
260 &mvi->tx_dma, GFP_KERNEL);
261 if (!mvi->tx)
262 goto err_out;
263 memset(mvi->tx, 0, sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ);
Andy Yan20b09c22009-05-08 17:46:40 -0400264 mvi->rx_fis = dma_alloc_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400265 &mvi->rx_fis_dma, GFP_KERNEL);
266 if (!mvi->rx_fis)
267 goto err_out;
268 memset(mvi->rx_fis, 0, MVS_RX_FISL_SZ);
269
Andy Yan20b09c22009-05-08 17:46:40 -0400270 mvi->rx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400271 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
272 &mvi->rx_dma, GFP_KERNEL);
273 if (!mvi->rx)
274 goto err_out;
275 memset(mvi->rx, 0, sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400276 mvi->rx[0] = cpu_to_le32(0xfff);
277 mvi->rx_cons = 0xfff;
278
Andy Yan20b09c22009-05-08 17:46:40 -0400279 mvi->slot = dma_alloc_coherent(mvi->dev,
280 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400281 &mvi->slot_dma, GFP_KERNEL);
282 if (!mvi->slot)
283 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400284 memset(mvi->slot, 0, sizeof(*mvi->slot) * slot_nr);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400285
Andy Yan20b09c22009-05-08 17:46:40 -0400286 mvi->bulk_buffer = dma_alloc_coherent(mvi->dev,
287 TRASH_BUCKET_SIZE,
288 &mvi->bulk_buffer_dma, GFP_KERNEL);
289 if (!mvi->bulk_buffer)
290 goto err_out;
Xiangliang Yu8882f082011-05-24 22:33:11 +0800291
292 mvi->bulk_buffer1 = dma_alloc_coherent(mvi->dev,
293 TRASH_BUCKET_SIZE,
294 &mvi->bulk_buffer_dma1, GFP_KERNEL);
295 if (!mvi->bulk_buffer1)
296 goto err_out;
297
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700298 sprintf(pool_name, "%s%d", "mvs_dma_pool", mvi->id);
299 mvi->dma_pool = pci_pool_create(pool_name, mvi->pdev, MVS_SLOT_BUF_SZ, 16, 0);
300 if (!mvi->dma_pool) {
301 printk(KERN_DEBUG "failed to create dma pool %s.\n", pool_name);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400302 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400303 }
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700304 mvi->tags_num = slot_nr;
305
Andy Yan20b09c22009-05-08 17:46:40 -0400306 /* Initialize tags */
307 mvs_tag_init(mvi);
308 return 0;
309err_out:
310 return 1;
311}
312
313
314int mvs_ioremap(struct mvs_info *mvi, int bar, int bar_ex)
315{
316 unsigned long res_start, res_len, res_flag, res_flag_ex = 0;
317 struct pci_dev *pdev = mvi->pdev;
318 if (bar_ex != -1) {
319 /*
320 * ioremap main and peripheral registers
321 */
322 res_start = pci_resource_start(pdev, bar_ex);
323 res_len = pci_resource_len(pdev, bar_ex);
324 if (!res_start || !res_len)
325 goto err_out;
326
327 res_flag_ex = pci_resource_flags(pdev, bar_ex);
328 if (res_flag_ex & IORESOURCE_MEM) {
329 if (res_flag_ex & IORESOURCE_CACHEABLE)
330 mvi->regs_ex = ioremap(res_start, res_len);
331 else
332 mvi->regs_ex = ioremap_nocache(res_start,
333 res_len);
334 } else
335 mvi->regs_ex = (void *)res_start;
336 if (!mvi->regs_ex)
337 goto err_out;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400338 }
339
Andy Yan20b09c22009-05-08 17:46:40 -0400340 res_start = pci_resource_start(pdev, bar);
341 res_len = pci_resource_len(pdev, bar);
342 if (!res_start || !res_len)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400343 goto err_out;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400344
Andy Yan20b09c22009-05-08 17:46:40 -0400345 res_flag = pci_resource_flags(pdev, bar);
346 if (res_flag & IORESOURCE_CACHEABLE)
347 mvi->regs = ioremap(res_start, res_len);
348 else
349 mvi->regs = ioremap_nocache(res_start, res_len);
350
351 if (!mvi->regs) {
352 if (mvi->regs_ex && (res_flag_ex & IORESOURCE_MEM))
353 iounmap(mvi->regs_ex);
354 mvi->regs_ex = NULL;
355 goto err_out;
356 }
357
358 return 0;
359err_out:
360 return -1;
361}
362
363void mvs_iounmap(void __iomem *regs)
364{
365 iounmap(regs);
366}
367
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800368static struct mvs_info *mvs_pci_alloc(struct pci_dev *pdev,
Andy Yan20b09c22009-05-08 17:46:40 -0400369 const struct pci_device_id *ent,
370 struct Scsi_Host *shost, unsigned int id)
371{
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800372 struct mvs_info *mvi = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -0400373 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
374
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800375 mvi = kzalloc(sizeof(*mvi) +
376 (1L << mvs_chips[ent->driver_data].slot_width) *
377 sizeof(struct mvs_slot_info), GFP_KERNEL);
Andy Yan20b09c22009-05-08 17:46:40 -0400378 if (!mvi)
379 return NULL;
380
381 mvi->pdev = pdev;
382 mvi->dev = &pdev->dev;
383 mvi->chip_id = ent->driver_data;
384 mvi->chip = &mvs_chips[mvi->chip_id];
385 INIT_LIST_HEAD(&mvi->wq_list);
Andy Yan20b09c22009-05-08 17:46:40 -0400386
387 ((struct mvs_prv_info *)sha->lldd_ha)->mvi[id] = mvi;
388 ((struct mvs_prv_info *)sha->lldd_ha)->n_phy = mvi->chip->n_phy;
389
390 mvi->id = id;
391 mvi->sas = sha;
392 mvi->shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400393
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800394 mvi->tags = kzalloc(MVS_CHIP_SLOT_SZ>>3, GFP_KERNEL);
395 if (!mvi->tags)
396 goto err_out;
397
Andy Yan20b09c22009-05-08 17:46:40 -0400398 if (MVS_CHIP_DISP->chip_ioremap(mvi))
399 goto err_out;
400 if (!mvs_alloc(mvi, shost))
401 return mvi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400402err_out:
403 mvs_free(mvi);
404 return NULL;
405}
406
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400407static int pci_go_64(struct pci_dev *pdev)
408{
409 int rc;
410
411 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
412 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
413 if (rc) {
414 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
415 if (rc) {
416 dev_printk(KERN_ERR, &pdev->dev,
417 "64-bit DMA enable failed\n");
418 return rc;
419 }
420 }
421 } else {
422 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
423 if (rc) {
424 dev_printk(KERN_ERR, &pdev->dev,
425 "32-bit DMA enable failed\n");
426 return rc;
427 }
428 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
429 if (rc) {
430 dev_printk(KERN_ERR, &pdev->dev,
431 "32-bit consistent DMA enable failed\n");
432 return rc;
433 }
434 }
435
436 return rc;
437}
438
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800439static int mvs_prep_sas_ha_init(struct Scsi_Host *shost,
Andy Yan20b09c22009-05-08 17:46:40 -0400440 const struct mvs_chip_info *chip_info)
441{
442 int phy_nr, port_nr; unsigned short core_nr;
443 struct asd_sas_phy **arr_phy;
444 struct asd_sas_port **arr_port;
445 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
446
447 core_nr = chip_info->n_host;
448 phy_nr = core_nr * chip_info->n_phy;
449 port_nr = phy_nr;
450
451 memset(sha, 0x00, sizeof(struct sas_ha_struct));
452 arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
453 arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
454 if (!arr_phy || !arr_port)
455 goto exit_free;
456
457 sha->sas_phy = arr_phy;
458 sha->sas_port = arr_port;
Srinivas9dc9fd92010-02-15 00:00:00 -0600459 sha->core.shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400460
461 sha->lldd_ha = kzalloc(sizeof(struct mvs_prv_info), GFP_KERNEL);
462 if (!sha->lldd_ha)
463 goto exit_free;
464
465 ((struct mvs_prv_info *)sha->lldd_ha)->n_host = core_nr;
466
467 shost->transportt = mvs_stt;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800468 shost->max_id = MVS_MAX_DEVICES;
Andy Yan20b09c22009-05-08 17:46:40 -0400469 shost->max_lun = ~0;
470 shost->max_channel = 1;
471 shost->max_cmd_len = 16;
472
473 return 0;
474exit_free:
475 kfree(arr_phy);
476 kfree(arr_port);
477 return -1;
478
479}
480
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800481static void mvs_post_sas_ha_init(struct Scsi_Host *shost,
Andy Yan20b09c22009-05-08 17:46:40 -0400482 const struct mvs_chip_info *chip_info)
483{
484 int can_queue, i = 0, j = 0;
485 struct mvs_info *mvi = NULL;
486 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
487 unsigned short nr_core = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
488
489 for (j = 0; j < nr_core; j++) {
490 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[j];
491 for (i = 0; i < chip_info->n_phy; i++) {
492 sha->sas_phy[j * chip_info->n_phy + i] =
493 &mvi->phy[i].sas_phy;
494 sha->sas_port[j * chip_info->n_phy + i] =
495 &mvi->port[i].sas_port;
496 }
497 }
498
499 sha->sas_ha_name = DRV_NAME;
500 sha->dev = mvi->dev;
501 sha->lldd_module = THIS_MODULE;
502 sha->sas_addr = &mvi->sas_addr[0];
503
504 sha->num_phys = nr_core * chip_info->n_phy;
505
Andy Yan20b09c22009-05-08 17:46:40 -0400506 if (mvi->flags & MVF_FLAG_SOC)
507 can_queue = MVS_SOC_CAN_QUEUE;
508 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800509 can_queue = MVS_CHIP_SLOT_SZ;
Andy Yan20b09c22009-05-08 17:46:40 -0400510
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800511 shost->sg_tablesize = min_t(u16, SG_ALL, MVS_MAX_SG);
Andy Yan20b09c22009-05-08 17:46:40 -0400512 shost->can_queue = can_queue;
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800513 mvi->shost->cmd_per_lun = MVS_QUEUE_SIZE;
Andy Yan20b09c22009-05-08 17:46:40 -0400514 sha->core.shost = mvi->shost;
515}
516
517static void mvs_init_sas_add(struct mvs_info *mvi)
518{
519 u8 i;
520 for (i = 0; i < mvi->chip->n_phy; i++) {
521 mvi->phy[i].dev_sas_addr = 0x5005043011ab0000ULL;
522 mvi->phy[i].dev_sas_addr =
523 cpu_to_be64((u64)(*(u64 *)&mvi->phy[i].dev_sas_addr));
524 }
525
526 memcpy(mvi->sas_addr, &mvi->phy[0].dev_sas_addr, SAS_ADDR_SIZE);
527}
528
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800529static int mvs_pci_init(struct pci_dev *pdev, const struct pci_device_id *ent)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400530{
Andy Yan20b09c22009-05-08 17:46:40 -0400531 unsigned int rc, nhost = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400532 struct mvs_info *mvi;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800533 struct mvs_prv_info *mpi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400534 irq_handler_t irq_handler = mvs_interrupt;
Andy Yan20b09c22009-05-08 17:46:40 -0400535 struct Scsi_Host *shost = NULL;
536 const struct mvs_chip_info *chip;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400537
Andy Yan20b09c22009-05-08 17:46:40 -0400538 dev_printk(KERN_INFO, &pdev->dev,
539 "mvsas: driver version %s\n", DRV_VERSION);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400540 rc = pci_enable_device(pdev);
541 if (rc)
Andy Yan20b09c22009-05-08 17:46:40 -0400542 goto err_out_enable;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400543
544 pci_set_master(pdev);
545
546 rc = pci_request_regions(pdev, DRV_NAME);
547 if (rc)
548 goto err_out_disable;
549
550 rc = pci_go_64(pdev);
551 if (rc)
552 goto err_out_regions;
553
Andy Yan20b09c22009-05-08 17:46:40 -0400554 shost = scsi_host_alloc(&mvs_sht, sizeof(void *));
555 if (!shost) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400556 rc = -ENOMEM;
557 goto err_out_regions;
558 }
559
Andy Yan20b09c22009-05-08 17:46:40 -0400560 chip = &mvs_chips[ent->driver_data];
561 SHOST_TO_SAS_HA(shost) =
562 kcalloc(1, sizeof(struct sas_ha_struct), GFP_KERNEL);
563 if (!SHOST_TO_SAS_HA(shost)) {
564 kfree(shost);
565 rc = -ENOMEM;
566 goto err_out_regions;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400567 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400568
Andy Yan20b09c22009-05-08 17:46:40 -0400569 rc = mvs_prep_sas_ha_init(shost, chip);
570 if (rc) {
571 kfree(shost);
572 rc = -ENOMEM;
573 goto err_out_regions;
574 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400575
Andy Yan20b09c22009-05-08 17:46:40 -0400576 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400577
Andy Yan20b09c22009-05-08 17:46:40 -0400578 do {
579 mvi = mvs_pci_alloc(pdev, ent, shost, nhost);
580 if (!mvi) {
581 rc = -ENOMEM;
582 goto err_out_regions;
583 }
584
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800585 memset(&mvi->hba_info_param, 0xFF,
586 sizeof(struct hba_info_page));
587
Andy Yan20b09c22009-05-08 17:46:40 -0400588 mvs_init_sas_add(mvi);
589
590 mvi->instance = nhost;
591 rc = MVS_CHIP_DISP->chip_init(mvi);
592 if (rc) {
593 mvs_free(mvi);
594 goto err_out_regions;
595 }
596 nhost++;
597 } while (nhost < chip->n_host);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800598 mpi = (struct mvs_prv_info *)(SHOST_TO_SAS_HA(shost)->lldd_ha);
599#ifdef CONFIG_SCSI_MVSAS_TASKLET
600 tasklet_init(&(mpi->mv_tasklet), mvs_tasklet,
Srinivas9dc9fd92010-02-15 00:00:00 -0600601 (unsigned long)SHOST_TO_SAS_HA(shost));
602#endif
Andy Yan20b09c22009-05-08 17:46:40 -0400603
604 mvs_post_sas_ha_init(shost, chip);
605
606 rc = scsi_add_host(shost, &pdev->dev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400607 if (rc)
608 goto err_out_shost;
609
Andy Yan20b09c22009-05-08 17:46:40 -0400610 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
611 if (rc)
612 goto err_out_shost;
613 rc = request_irq(pdev->irq, irq_handler, IRQF_SHARED,
614 DRV_NAME, SHOST_TO_SAS_HA(shost));
615 if (rc)
616 goto err_not_sas;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400617
Andy Yan20b09c22009-05-08 17:46:40 -0400618 MVS_CHIP_DISP->interrupt_enable(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400619
620 scsi_scan_host(mvi->shost);
621
622 return 0;
623
Andy Yan20b09c22009-05-08 17:46:40 -0400624err_not_sas:
625 sas_unregister_ha(SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400626err_out_shost:
627 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400628err_out_regions:
629 pci_release_regions(pdev);
630err_out_disable:
631 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400632err_out_enable:
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400633 return rc;
634}
635
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800636static void mvs_pci_remove(struct pci_dev *pdev)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400637{
Andy Yan20b09c22009-05-08 17:46:40 -0400638 unsigned short core_nr, i = 0;
639 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
640 struct mvs_info *mvi = NULL;
641
642 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
643 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
644
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800645#ifdef CONFIG_SCSI_MVSAS_TASKLET
646 tasklet_kill(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Andy Yan20b09c22009-05-08 17:46:40 -0400647#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400648
Andy Yan20b09c22009-05-08 17:46:40 -0400649 sas_unregister_ha(sha);
650 sas_remove_host(mvi->shost);
651 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400652
Andy Yan20b09c22009-05-08 17:46:40 -0400653 MVS_CHIP_DISP->interrupt_disable(mvi);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800654 free_irq(mvi->pdev->irq, sha);
Andy Yan20b09c22009-05-08 17:46:40 -0400655 for (i = 0; i < core_nr; i++) {
656 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400657 mvs_free(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400658 }
Andy Yan20b09c22009-05-08 17:46:40 -0400659 kfree(sha->sas_phy);
660 kfree(sha->sas_port);
661 kfree(sha);
662 pci_release_regions(pdev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400663 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400664 return;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400665}
666
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800667static struct pci_device_id mvs_pci_table[] = {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400668 { PCI_VDEVICE(MARVELL, 0x6320), chip_6320 },
669 { PCI_VDEVICE(MARVELL, 0x6340), chip_6440 },
670 {
671 .vendor = PCI_VENDOR_ID_MARVELL,
672 .device = 0x6440,
673 .subvendor = PCI_ANY_ID,
674 .subdevice = 0x6480,
675 .class = 0,
676 .class_mask = 0,
Andy Yan20b09c22009-05-08 17:46:40 -0400677 .driver_data = chip_6485,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400678 },
679 { PCI_VDEVICE(MARVELL, 0x6440), chip_6440 },
Andy Yan20b09c22009-05-08 17:46:40 -0400680 { PCI_VDEVICE(MARVELL, 0x6485), chip_6485 },
681 { PCI_VDEVICE(MARVELL, 0x9480), chip_9480 },
682 { PCI_VDEVICE(MARVELL, 0x9180), chip_9180 },
Nick Chengf31491d2009-09-08 19:03:07 +0800683 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1300), chip_1300 },
684 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1320), chip_1320 },
Srinivas7ec4ad02009-11-24 20:07:39 +0530685 { PCI_VDEVICE(ADAPTEC2, 0x0450), chip_6440 },
HighPoint Linux Team463b8972011-02-23 16:28:44 +0800686 { PCI_VDEVICE(TTI, 0x2710), chip_9480 },
687 { PCI_VDEVICE(TTI, 0x2720), chip_9480 },
688 { PCI_VDEVICE(TTI, 0x2721), chip_9480 },
689 { PCI_VDEVICE(TTI, 0x2722), chip_9480 },
690 { PCI_VDEVICE(TTI, 0x2740), chip_9480 },
691 { PCI_VDEVICE(TTI, 0x2744), chip_9480 },
692 { PCI_VDEVICE(TTI, 0x2760), chip_9480 },
Xiangliang Yu82140282011-04-26 06:34:01 -0700693 {
Myron Stowe412e7042013-04-08 11:35:44 -0600694 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yuf7e45b62011-09-29 00:33:24 -0700695 .device = 0x9480,
696 .subvendor = PCI_ANY_ID,
697 .subdevice = 0x9480,
698 .class = 0,
699 .class_mask = 0,
700 .driver_data = chip_9480,
701 },
702 {
Myron Stowe412e7042013-04-08 11:35:44 -0600703 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yu82140282011-04-26 06:34:01 -0700704 .device = 0x9445,
705 .subvendor = PCI_ANY_ID,
706 .subdevice = 0x9480,
707 .class = 0,
708 .class_mask = 0,
709 .driver_data = chip_9445,
710 },
711 {
Myron Stowe412e7042013-04-08 11:35:44 -0600712 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yu82140282011-04-26 06:34:01 -0700713 .device = 0x9485,
714 .subvendor = PCI_ANY_ID,
715 .subdevice = 0x9480,
716 .class = 0,
717 .class_mask = 0,
718 .driver_data = chip_9485,
719 },
Ben Hutchingse90b25f2014-02-19 01:06:42 +0000720 {
721 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
722 .device = 0x9485,
723 .subvendor = PCI_ANY_ID,
724 .subdevice = 0x9485,
725 .class = 0,
726 .class_mask = 0,
727 .driver_data = chip_9485,
728 },
Robin H. Johnson99a700b2011-10-24 22:30:08 +0000729 { PCI_VDEVICE(OCZ, 0x1021), chip_9485}, /* OCZ RevoDrive3 */
730 { PCI_VDEVICE(OCZ, 0x1022), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
731 { PCI_VDEVICE(OCZ, 0x1040), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
732 { PCI_VDEVICE(OCZ, 0x1041), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
733 { PCI_VDEVICE(OCZ, 0x1042), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
734 { PCI_VDEVICE(OCZ, 0x1043), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
735 { PCI_VDEVICE(OCZ, 0x1044), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
736 { PCI_VDEVICE(OCZ, 0x1080), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
737 { PCI_VDEVICE(OCZ, 0x1083), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
738 { PCI_VDEVICE(OCZ, 0x1084), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400739
740 { } /* terminate list */
741};
742
743static struct pci_driver mvs_pci_driver = {
744 .name = DRV_NAME,
745 .id_table = mvs_pci_table,
746 .probe = mvs_pci_init,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800747 .remove = mvs_pci_remove,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400748};
749
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800750static ssize_t
751mvs_show_driver_version(struct device *cdev,
752 struct device_attribute *attr, char *buffer)
753{
754 return snprintf(buffer, PAGE_SIZE, "%s\n", DRV_VERSION);
755}
756
757static DEVICE_ATTR(driver_version,
758 S_IRUGO,
759 mvs_show_driver_version,
760 NULL);
761
762static ssize_t
763mvs_store_interrupt_coalescing(struct device *cdev,
764 struct device_attribute *attr,
765 const char *buffer, size_t size)
766{
767 int val = 0;
768 struct mvs_info *mvi = NULL;
769 struct Scsi_Host *shost = class_to_shost(cdev);
770 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
771 u8 i, core_nr;
772 if (buffer == NULL)
773 return size;
774
775 if (sscanf(buffer, "%d", &val) != 1)
776 return -EINVAL;
777
778 if (val >= 0x10000) {
779 mv_dprintk("interrupt coalescing timer %d us is"
780 "too long\n", val);
781 return strlen(buffer);
782 }
783
784 interrupt_coalescing = val;
785
786 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
787 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
788
789 if (unlikely(!mvi))
790 return -EINVAL;
791
792 for (i = 0; i < core_nr; i++) {
793 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
794 if (MVS_CHIP_DISP->tune_interrupt)
795 MVS_CHIP_DISP->tune_interrupt(mvi,
796 interrupt_coalescing);
797 }
798 mv_dprintk("set interrupt coalescing time to %d us\n",
799 interrupt_coalescing);
800 return strlen(buffer);
801}
802
803static ssize_t mvs_show_interrupt_coalescing(struct device *cdev,
804 struct device_attribute *attr, char *buffer)
805{
806 return snprintf(buffer, PAGE_SIZE, "%d\n", interrupt_coalescing);
807}
808
809static DEVICE_ATTR(interrupt_coalescing,
810 S_IRUGO|S_IWUSR,
811 mvs_show_interrupt_coalescing,
812 mvs_store_interrupt_coalescing);
813
Andy Yan20b09c22009-05-08 17:46:40 -0400814/* task handler */
815struct task_struct *mvs_th;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400816static int __init mvs_init(void)
817{
818 int rc;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400819 mvs_stt = sas_domain_attach_transport(&mvs_transport_ops);
820 if (!mvs_stt)
821 return -ENOMEM;
822
823 rc = pci_register_driver(&mvs_pci_driver);
824 if (rc)
825 goto err_out;
826
827 return 0;
828
829err_out:
830 sas_release_transport(mvs_stt);
831 return rc;
832}
833
834static void __exit mvs_exit(void)
835{
836 pci_unregister_driver(&mvs_pci_driver);
837 sas_release_transport(mvs_stt);
838}
839
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800840struct device_attribute *mvst_host_attrs[] = {
841 &dev_attr_driver_version,
842 &dev_attr_interrupt_coalescing,
843 NULL,
844};
845
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400846module_init(mvs_init);
847module_exit(mvs_exit);
848
849MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
850MODULE_DESCRIPTION("Marvell 88SE6440 SAS/SATA controller driver");
851MODULE_VERSION(DRV_VERSION);
852MODULE_LICENSE("GPL");
Andy Yan20b09c22009-05-08 17:46:40 -0400853#ifdef CONFIG_PCI
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400854MODULE_DEVICE_TABLE(pci, mvs_pci_table);
Andy Yan20b09c22009-05-08 17:46:40 -0400855#endif