blob: eacee48a955c56903b98b3f1c61b55219df0e2c9 [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,
Dan Williamse211e2c2011-09-20 15:10:55 -070062 .slave_configure = sas_slave_configure,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040063 .scan_finished = mvs_scan_finished,
64 .scan_start = mvs_scan_start,
65 .change_queue_depth = sas_change_queue_depth,
66 .change_queue_type = sas_change_queue_type,
67 .bios_param = sas_bios_param,
68 .can_queue = 1,
69 .cmd_per_lun = 1,
70 .this_id = -1,
Xiangliang Yub89e8f52011-05-24 22:35:09 +080071 .sg_tablesize = SG_ALL,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040072 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
73 .use_clustering = ENABLE_CLUSTERING,
Srinivas9dc9fd92010-02-15 00:00:00 -060074 .eh_device_reset_handler = sas_eh_device_reset_handler,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040075 .eh_bus_reset_handler = sas_eh_bus_reset_handler,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040076 .target_destroy = sas_target_destroy,
77 .ioctl = sas_ioctl,
Xiangliang Yu83c7b612011-05-24 22:31:47 +080078 .shost_attrs = mvst_host_attrs,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040079};
80
81static struct sas_domain_function_template mvs_transport_ops = {
Andy Yan20b09c22009-05-08 17:46:40 -040082 .lldd_dev_found = mvs_dev_found,
Srinivas9dc9fd92010-02-15 00:00:00 -060083 .lldd_dev_gone = mvs_dev_gone,
Andy Yan20b09c22009-05-08 17:46:40 -040084 .lldd_execute_task = mvs_queue_command,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040085 .lldd_control_phy = mvs_phy_control,
Andy Yan20b09c22009-05-08 17:46:40 -040086
87 .lldd_abort_task = mvs_abort_task,
88 .lldd_abort_task_set = mvs_abort_task_set,
89 .lldd_clear_aca = mvs_clear_aca,
Srinivas9dc9fd92010-02-15 00:00:00 -060090 .lldd_clear_task_set = mvs_clear_task_set,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040091 .lldd_I_T_nexus_reset = mvs_I_T_nexus_reset,
Andy Yan20b09c22009-05-08 17:46:40 -040092 .lldd_lu_reset = mvs_lu_reset,
93 .lldd_query_task = mvs_query_task,
Andy Yan20b09c22009-05-08 17:46:40 -040094 .lldd_port_formed = mvs_port_formed,
95 .lldd_port_deformed = mvs_port_deformed,
96
Jeff Garzikdd4969a2009-05-08 17:44:01 -040097};
98
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080099static void mvs_phy_init(struct mvs_info *mvi, int phy_id)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400100{
101 struct mvs_phy *phy = &mvi->phy[phy_id];
102 struct asd_sas_phy *sas_phy = &phy->sas_phy;
103
Andy Yan20b09c22009-05-08 17:46:40 -0400104 phy->mvi = mvi;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800105 phy->port = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -0400106 init_timer(&phy->timer);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400107 sas_phy->enabled = (phy_id < mvi->chip->n_phy) ? 1 : 0;
108 sas_phy->class = SAS;
109 sas_phy->iproto = SAS_PROTOCOL_ALL;
110 sas_phy->tproto = 0;
111 sas_phy->type = PHY_TYPE_PHYSICAL;
112 sas_phy->role = PHY_ROLE_INITIATOR;
113 sas_phy->oob_mode = OOB_NOT_CONNECTED;
114 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
115
116 sas_phy->id = phy_id;
117 sas_phy->sas_addr = &mvi->sas_addr[0];
118 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
Andy Yan20b09c22009-05-08 17:46:40 -0400119 sas_phy->ha = (struct sas_ha_struct *)mvi->shost->hostdata;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400120 sas_phy->lldd_phy = phy;
121}
122
123static void mvs_free(struct mvs_info *mvi)
124{
Andy Yan20b09c22009-05-08 17:46:40 -0400125 struct mvs_wq *mwq;
126 int slot_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400127
128 if (!mvi)
129 return;
130
Andy Yan20b09c22009-05-08 17:46:40 -0400131 if (mvi->flags & MVF_FLAG_SOC)
132 slot_nr = MVS_SOC_SLOTS;
133 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800134 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400135
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700136 if (mvi->dma_pool)
137 pci_pool_destroy(mvi->dma_pool);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400138
139 if (mvi->tx)
Andy Yan20b09c22009-05-08 17:46:40 -0400140 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400141 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
142 mvi->tx, mvi->tx_dma);
143 if (mvi->rx_fis)
Andy Yan20b09c22009-05-08 17:46:40 -0400144 dma_free_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400145 mvi->rx_fis, mvi->rx_fis_dma);
146 if (mvi->rx)
Andy Yan20b09c22009-05-08 17:46:40 -0400147 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400148 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
149 mvi->rx, mvi->rx_dma);
150 if (mvi->slot)
Andy Yan20b09c22009-05-08 17:46:40 -0400151 dma_free_coherent(mvi->dev,
152 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400153 mvi->slot, mvi->slot_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800154
Andy Yan20b09c22009-05-08 17:46:40 -0400155 if (mvi->bulk_buffer)
156 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
157 mvi->bulk_buffer, mvi->bulk_buffer_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800158 if (mvi->bulk_buffer1)
159 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
160 mvi->bulk_buffer1, mvi->bulk_buffer_dma1);
Andy Yan20b09c22009-05-08 17:46:40 -0400161
162 MVS_CHIP_DISP->chip_iounmap(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400163 if (mvi->shost)
164 scsi_host_put(mvi->shost);
Andy Yan20b09c22009-05-08 17:46:40 -0400165 list_for_each_entry(mwq, &mvi->wq_list, entry)
166 cancel_delayed_work(&mwq->work_q);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800167 kfree(mvi->tags);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400168 kfree(mvi);
169}
170
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800171#ifdef CONFIG_SCSI_MVSAS_TASKLET
Andy Yan20b09c22009-05-08 17:46:40 -0400172static void mvs_tasklet(unsigned long opaque)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400173{
Andy Yan20b09c22009-05-08 17:46:40 -0400174 u32 stat;
175 u16 core_nr, i = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400176
Andy Yan20b09c22009-05-08 17:46:40 -0400177 struct mvs_info *mvi;
178 struct sas_ha_struct *sha = (struct sas_ha_struct *)opaque;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400179
Andy Yan20b09c22009-05-08 17:46:40 -0400180 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
181 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
182
183 if (unlikely(!mvi))
184 BUG_ON(1);
185
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800186 stat = MVS_CHIP_DISP->isr_status(mvi, mvi->pdev->irq);
187 if (!stat)
188 goto out;
189
Andy Yan20b09c22009-05-08 17:46:40 -0400190 for (i = 0; i < core_nr; i++) {
191 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800192 MVS_CHIP_DISP->isr(mvi, mvi->pdev->irq, stat);
Andy Yan20b09c22009-05-08 17:46:40 -0400193 }
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800194out:
195 MVS_CHIP_DISP->interrupt_enable(mvi);
Andy Yan20b09c22009-05-08 17:46:40 -0400196
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400197}
198#endif
199
200static irqreturn_t mvs_interrupt(int irq, void *opaque)
201{
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800202 u32 core_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400203 u32 stat;
Andy Yan20b09c22009-05-08 17:46:40 -0400204 struct mvs_info *mvi;
205 struct sas_ha_struct *sha = opaque;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800206#ifndef CONFIG_SCSI_MVSAS_TASKLET
207 u32 i;
208#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400209
Andy Yan20b09c22009-05-08 17:46:40 -0400210 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
211 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400212
Andy Yan20b09c22009-05-08 17:46:40 -0400213 if (unlikely(!mvi))
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400214 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800215#ifdef CONFIG_SCSI_MVSAS_TASKLET
216 MVS_CHIP_DISP->interrupt_disable(mvi);
217#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400218
Andy Yan20b09c22009-05-08 17:46:40 -0400219 stat = MVS_CHIP_DISP->isr_status(mvi, irq);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800220 if (!stat) {
221 #ifdef CONFIG_SCSI_MVSAS_TASKLET
222 MVS_CHIP_DISP->interrupt_enable(mvi);
223 #endif
Andy Yan20b09c22009-05-08 17:46:40 -0400224 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800225 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400226
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800227#ifdef CONFIG_SCSI_MVSAS_TASKLET
228 tasklet_schedule(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400229#else
Andy Yan20b09c22009-05-08 17:46:40 -0400230 for (i = 0; i < core_nr; i++) {
231 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
232 MVS_CHIP_DISP->isr(mvi, irq, stat);
233 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400234#endif
235 return IRQ_HANDLED;
236}
237
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800238static int mvs_alloc(struct mvs_info *mvi, struct Scsi_Host *shost)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400239{
Srinivas9dc9fd92010-02-15 00:00:00 -0600240 int i = 0, slot_nr;
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700241 char pool_name[32];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400242
Andy Yan20b09c22009-05-08 17:46:40 -0400243 if (mvi->flags & MVF_FLAG_SOC)
244 slot_nr = MVS_SOC_SLOTS;
245 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800246 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400247
248 spin_lock_init(&mvi->lock);
Andy Yan20b09c22009-05-08 17:46:40 -0400249 for (i = 0; i < mvi->chip->n_phy; i++) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400250 mvs_phy_init(mvi, i);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400251 mvi->port[i].wide_port_phymap = 0;
252 mvi->port[i].port_attached = 0;
253 INIT_LIST_HEAD(&mvi->port[i].list);
254 }
Andy Yan20b09c22009-05-08 17:46:40 -0400255 for (i = 0; i < MVS_MAX_DEVICES; i++) {
256 mvi->devices[i].taskfileset = MVS_ID_NOT_MAPPED;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700257 mvi->devices[i].dev_type = SAS_PHY_UNUSED;
Andy Yan20b09c22009-05-08 17:46:40 -0400258 mvi->devices[i].device_id = i;
259 mvi->devices[i].dev_status = MVS_DEV_NORMAL;
Srinivas9dc9fd92010-02-15 00:00:00 -0600260 init_timer(&mvi->devices[i].timer);
Andy Yan20b09c22009-05-08 17:46:40 -0400261 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400262
263 /*
264 * alloc and init our DMA areas
265 */
Andy Yan20b09c22009-05-08 17:46:40 -0400266 mvi->tx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400267 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
268 &mvi->tx_dma, GFP_KERNEL);
269 if (!mvi->tx)
270 goto err_out;
271 memset(mvi->tx, 0, sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ);
Andy Yan20b09c22009-05-08 17:46:40 -0400272 mvi->rx_fis = dma_alloc_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400273 &mvi->rx_fis_dma, GFP_KERNEL);
274 if (!mvi->rx_fis)
275 goto err_out;
276 memset(mvi->rx_fis, 0, MVS_RX_FISL_SZ);
277
Andy Yan20b09c22009-05-08 17:46:40 -0400278 mvi->rx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400279 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
280 &mvi->rx_dma, GFP_KERNEL);
281 if (!mvi->rx)
282 goto err_out;
283 memset(mvi->rx, 0, sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400284 mvi->rx[0] = cpu_to_le32(0xfff);
285 mvi->rx_cons = 0xfff;
286
Andy Yan20b09c22009-05-08 17:46:40 -0400287 mvi->slot = dma_alloc_coherent(mvi->dev,
288 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400289 &mvi->slot_dma, GFP_KERNEL);
290 if (!mvi->slot)
291 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400292 memset(mvi->slot, 0, sizeof(*mvi->slot) * slot_nr);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400293
Andy Yan20b09c22009-05-08 17:46:40 -0400294 mvi->bulk_buffer = dma_alloc_coherent(mvi->dev,
295 TRASH_BUCKET_SIZE,
296 &mvi->bulk_buffer_dma, GFP_KERNEL);
297 if (!mvi->bulk_buffer)
298 goto err_out;
Xiangliang Yu8882f082011-05-24 22:33:11 +0800299
300 mvi->bulk_buffer1 = dma_alloc_coherent(mvi->dev,
301 TRASH_BUCKET_SIZE,
302 &mvi->bulk_buffer_dma1, GFP_KERNEL);
303 if (!mvi->bulk_buffer1)
304 goto err_out;
305
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700306 sprintf(pool_name, "%s%d", "mvs_dma_pool", mvi->id);
307 mvi->dma_pool = pci_pool_create(pool_name, mvi->pdev, MVS_SLOT_BUF_SZ, 16, 0);
308 if (!mvi->dma_pool) {
309 printk(KERN_DEBUG "failed to create dma pool %s.\n", pool_name);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400310 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400311 }
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700312 mvi->tags_num = slot_nr;
313
Andy Yan20b09c22009-05-08 17:46:40 -0400314 /* Initialize tags */
315 mvs_tag_init(mvi);
316 return 0;
317err_out:
318 return 1;
319}
320
321
322int mvs_ioremap(struct mvs_info *mvi, int bar, int bar_ex)
323{
324 unsigned long res_start, res_len, res_flag, res_flag_ex = 0;
325 struct pci_dev *pdev = mvi->pdev;
326 if (bar_ex != -1) {
327 /*
328 * ioremap main and peripheral registers
329 */
330 res_start = pci_resource_start(pdev, bar_ex);
331 res_len = pci_resource_len(pdev, bar_ex);
332 if (!res_start || !res_len)
333 goto err_out;
334
335 res_flag_ex = pci_resource_flags(pdev, bar_ex);
336 if (res_flag_ex & IORESOURCE_MEM) {
337 if (res_flag_ex & IORESOURCE_CACHEABLE)
338 mvi->regs_ex = ioremap(res_start, res_len);
339 else
340 mvi->regs_ex = ioremap_nocache(res_start,
341 res_len);
342 } else
343 mvi->regs_ex = (void *)res_start;
344 if (!mvi->regs_ex)
345 goto err_out;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400346 }
347
Andy Yan20b09c22009-05-08 17:46:40 -0400348 res_start = pci_resource_start(pdev, bar);
349 res_len = pci_resource_len(pdev, bar);
350 if (!res_start || !res_len)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400351 goto err_out;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400352
Andy Yan20b09c22009-05-08 17:46:40 -0400353 res_flag = pci_resource_flags(pdev, bar);
354 if (res_flag & IORESOURCE_CACHEABLE)
355 mvi->regs = ioremap(res_start, res_len);
356 else
357 mvi->regs = ioremap_nocache(res_start, res_len);
358
359 if (!mvi->regs) {
360 if (mvi->regs_ex && (res_flag_ex & IORESOURCE_MEM))
361 iounmap(mvi->regs_ex);
362 mvi->regs_ex = NULL;
363 goto err_out;
364 }
365
366 return 0;
367err_out:
368 return -1;
369}
370
371void mvs_iounmap(void __iomem *regs)
372{
373 iounmap(regs);
374}
375
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800376static struct mvs_info *mvs_pci_alloc(struct pci_dev *pdev,
Andy Yan20b09c22009-05-08 17:46:40 -0400377 const struct pci_device_id *ent,
378 struct Scsi_Host *shost, unsigned int id)
379{
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800380 struct mvs_info *mvi = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -0400381 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
382
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800383 mvi = kzalloc(sizeof(*mvi) +
384 (1L << mvs_chips[ent->driver_data].slot_width) *
385 sizeof(struct mvs_slot_info), GFP_KERNEL);
Andy Yan20b09c22009-05-08 17:46:40 -0400386 if (!mvi)
387 return NULL;
388
389 mvi->pdev = pdev;
390 mvi->dev = &pdev->dev;
391 mvi->chip_id = ent->driver_data;
392 mvi->chip = &mvs_chips[mvi->chip_id];
393 INIT_LIST_HEAD(&mvi->wq_list);
Andy Yan20b09c22009-05-08 17:46:40 -0400394
395 ((struct mvs_prv_info *)sha->lldd_ha)->mvi[id] = mvi;
396 ((struct mvs_prv_info *)sha->lldd_ha)->n_phy = mvi->chip->n_phy;
397
398 mvi->id = id;
399 mvi->sas = sha;
400 mvi->shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400401
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800402 mvi->tags = kzalloc(MVS_CHIP_SLOT_SZ>>3, GFP_KERNEL);
403 if (!mvi->tags)
404 goto err_out;
405
Andy Yan20b09c22009-05-08 17:46:40 -0400406 if (MVS_CHIP_DISP->chip_ioremap(mvi))
407 goto err_out;
408 if (!mvs_alloc(mvi, shost))
409 return mvi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400410err_out:
411 mvs_free(mvi);
412 return NULL;
413}
414
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400415static int pci_go_64(struct pci_dev *pdev)
416{
417 int rc;
418
419 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
420 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
421 if (rc) {
422 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
423 if (rc) {
424 dev_printk(KERN_ERR, &pdev->dev,
425 "64-bit DMA enable failed\n");
426 return rc;
427 }
428 }
429 } else {
430 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
431 if (rc) {
432 dev_printk(KERN_ERR, &pdev->dev,
433 "32-bit DMA enable failed\n");
434 return rc;
435 }
436 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
437 if (rc) {
438 dev_printk(KERN_ERR, &pdev->dev,
439 "32-bit consistent DMA enable failed\n");
440 return rc;
441 }
442 }
443
444 return rc;
445}
446
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800447static int mvs_prep_sas_ha_init(struct Scsi_Host *shost,
Andy Yan20b09c22009-05-08 17:46:40 -0400448 const struct mvs_chip_info *chip_info)
449{
450 int phy_nr, port_nr; unsigned short core_nr;
451 struct asd_sas_phy **arr_phy;
452 struct asd_sas_port **arr_port;
453 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
454
455 core_nr = chip_info->n_host;
456 phy_nr = core_nr * chip_info->n_phy;
457 port_nr = phy_nr;
458
459 memset(sha, 0x00, sizeof(struct sas_ha_struct));
460 arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
461 arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
462 if (!arr_phy || !arr_port)
463 goto exit_free;
464
465 sha->sas_phy = arr_phy;
466 sha->sas_port = arr_port;
Srinivas9dc9fd92010-02-15 00:00:00 -0600467 sha->core.shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400468
469 sha->lldd_ha = kzalloc(sizeof(struct mvs_prv_info), GFP_KERNEL);
470 if (!sha->lldd_ha)
471 goto exit_free;
472
473 ((struct mvs_prv_info *)sha->lldd_ha)->n_host = core_nr;
474
475 shost->transportt = mvs_stt;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800476 shost->max_id = MVS_MAX_DEVICES;
Andy Yan20b09c22009-05-08 17:46:40 -0400477 shost->max_lun = ~0;
478 shost->max_channel = 1;
479 shost->max_cmd_len = 16;
480
481 return 0;
482exit_free:
483 kfree(arr_phy);
484 kfree(arr_port);
485 return -1;
486
487}
488
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800489static void mvs_post_sas_ha_init(struct Scsi_Host *shost,
Andy Yan20b09c22009-05-08 17:46:40 -0400490 const struct mvs_chip_info *chip_info)
491{
492 int can_queue, i = 0, j = 0;
493 struct mvs_info *mvi = NULL;
494 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
495 unsigned short nr_core = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
496
497 for (j = 0; j < nr_core; j++) {
498 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[j];
499 for (i = 0; i < chip_info->n_phy; i++) {
500 sha->sas_phy[j * chip_info->n_phy + i] =
501 &mvi->phy[i].sas_phy;
502 sha->sas_port[j * chip_info->n_phy + i] =
503 &mvi->port[i].sas_port;
504 }
505 }
506
507 sha->sas_ha_name = DRV_NAME;
508 sha->dev = mvi->dev;
509 sha->lldd_module = THIS_MODULE;
510 sha->sas_addr = &mvi->sas_addr[0];
511
512 sha->num_phys = nr_core * chip_info->n_phy;
513
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700514 sha->lldd_max_execute_num = lldd_max_execute_num;
Andy Yan20b09c22009-05-08 17:46:40 -0400515
516 if (mvi->flags & MVF_FLAG_SOC)
517 can_queue = MVS_SOC_CAN_QUEUE;
518 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800519 can_queue = MVS_CHIP_SLOT_SZ;
Andy Yan20b09c22009-05-08 17:46:40 -0400520
521 sha->lldd_queue_size = can_queue;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800522 shost->sg_tablesize = min_t(u16, SG_ALL, MVS_MAX_SG);
Andy Yan20b09c22009-05-08 17:46:40 -0400523 shost->can_queue = can_queue;
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800524 mvi->shost->cmd_per_lun = MVS_QUEUE_SIZE;
Andy Yan20b09c22009-05-08 17:46:40 -0400525 sha->core.shost = mvi->shost;
526}
527
528static void mvs_init_sas_add(struct mvs_info *mvi)
529{
530 u8 i;
531 for (i = 0; i < mvi->chip->n_phy; i++) {
532 mvi->phy[i].dev_sas_addr = 0x5005043011ab0000ULL;
533 mvi->phy[i].dev_sas_addr =
534 cpu_to_be64((u64)(*(u64 *)&mvi->phy[i].dev_sas_addr));
535 }
536
537 memcpy(mvi->sas_addr, &mvi->phy[0].dev_sas_addr, SAS_ADDR_SIZE);
538}
539
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800540static int mvs_pci_init(struct pci_dev *pdev, const struct pci_device_id *ent)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400541{
Andy Yan20b09c22009-05-08 17:46:40 -0400542 unsigned int rc, nhost = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400543 struct mvs_info *mvi;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800544 struct mvs_prv_info *mpi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400545 irq_handler_t irq_handler = mvs_interrupt;
Andy Yan20b09c22009-05-08 17:46:40 -0400546 struct Scsi_Host *shost = NULL;
547 const struct mvs_chip_info *chip;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400548
Andy Yan20b09c22009-05-08 17:46:40 -0400549 dev_printk(KERN_INFO, &pdev->dev,
550 "mvsas: driver version %s\n", DRV_VERSION);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400551 rc = pci_enable_device(pdev);
552 if (rc)
Andy Yan20b09c22009-05-08 17:46:40 -0400553 goto err_out_enable;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400554
555 pci_set_master(pdev);
556
557 rc = pci_request_regions(pdev, DRV_NAME);
558 if (rc)
559 goto err_out_disable;
560
561 rc = pci_go_64(pdev);
562 if (rc)
563 goto err_out_regions;
564
Andy Yan20b09c22009-05-08 17:46:40 -0400565 shost = scsi_host_alloc(&mvs_sht, sizeof(void *));
566 if (!shost) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400567 rc = -ENOMEM;
568 goto err_out_regions;
569 }
570
Andy Yan20b09c22009-05-08 17:46:40 -0400571 chip = &mvs_chips[ent->driver_data];
572 SHOST_TO_SAS_HA(shost) =
573 kcalloc(1, sizeof(struct sas_ha_struct), GFP_KERNEL);
574 if (!SHOST_TO_SAS_HA(shost)) {
575 kfree(shost);
576 rc = -ENOMEM;
577 goto err_out_regions;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400578 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400579
Andy Yan20b09c22009-05-08 17:46:40 -0400580 rc = mvs_prep_sas_ha_init(shost, chip);
581 if (rc) {
582 kfree(shost);
583 rc = -ENOMEM;
584 goto err_out_regions;
585 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400586
Andy Yan20b09c22009-05-08 17:46:40 -0400587 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400588
Andy Yan20b09c22009-05-08 17:46:40 -0400589 do {
590 mvi = mvs_pci_alloc(pdev, ent, shost, nhost);
591 if (!mvi) {
592 rc = -ENOMEM;
593 goto err_out_regions;
594 }
595
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800596 memset(&mvi->hba_info_param, 0xFF,
597 sizeof(struct hba_info_page));
598
Andy Yan20b09c22009-05-08 17:46:40 -0400599 mvs_init_sas_add(mvi);
600
601 mvi->instance = nhost;
602 rc = MVS_CHIP_DISP->chip_init(mvi);
603 if (rc) {
604 mvs_free(mvi);
605 goto err_out_regions;
606 }
607 nhost++;
608 } while (nhost < chip->n_host);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800609 mpi = (struct mvs_prv_info *)(SHOST_TO_SAS_HA(shost)->lldd_ha);
610#ifdef CONFIG_SCSI_MVSAS_TASKLET
611 tasklet_init(&(mpi->mv_tasklet), mvs_tasklet,
Srinivas9dc9fd92010-02-15 00:00:00 -0600612 (unsigned long)SHOST_TO_SAS_HA(shost));
613#endif
Andy Yan20b09c22009-05-08 17:46:40 -0400614
615 mvs_post_sas_ha_init(shost, chip);
616
617 rc = scsi_add_host(shost, &pdev->dev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400618 if (rc)
619 goto err_out_shost;
620
Andy Yan20b09c22009-05-08 17:46:40 -0400621 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
622 if (rc)
623 goto err_out_shost;
624 rc = request_irq(pdev->irq, irq_handler, IRQF_SHARED,
625 DRV_NAME, SHOST_TO_SAS_HA(shost));
626 if (rc)
627 goto err_not_sas;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400628
Andy Yan20b09c22009-05-08 17:46:40 -0400629 MVS_CHIP_DISP->interrupt_enable(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400630
631 scsi_scan_host(mvi->shost);
632
633 return 0;
634
Andy Yan20b09c22009-05-08 17:46:40 -0400635err_not_sas:
636 sas_unregister_ha(SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400637err_out_shost:
638 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400639err_out_regions:
640 pci_release_regions(pdev);
641err_out_disable:
642 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400643err_out_enable:
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400644 return rc;
645}
646
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800647static void mvs_pci_remove(struct pci_dev *pdev)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400648{
Andy Yan20b09c22009-05-08 17:46:40 -0400649 unsigned short core_nr, i = 0;
650 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
651 struct mvs_info *mvi = NULL;
652
653 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
654 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
655
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800656#ifdef CONFIG_SCSI_MVSAS_TASKLET
657 tasklet_kill(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Andy Yan20b09c22009-05-08 17:46:40 -0400658#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400659
Andy Yan20b09c22009-05-08 17:46:40 -0400660 sas_unregister_ha(sha);
661 sas_remove_host(mvi->shost);
662 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400663
Andy Yan20b09c22009-05-08 17:46:40 -0400664 MVS_CHIP_DISP->interrupt_disable(mvi);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800665 free_irq(mvi->pdev->irq, sha);
Andy Yan20b09c22009-05-08 17:46:40 -0400666 for (i = 0; i < core_nr; i++) {
667 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400668 mvs_free(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400669 }
Andy Yan20b09c22009-05-08 17:46:40 -0400670 kfree(sha->sas_phy);
671 kfree(sha->sas_port);
672 kfree(sha);
673 pci_release_regions(pdev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400674 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400675 return;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400676}
677
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800678static struct pci_device_id mvs_pci_table[] = {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400679 { PCI_VDEVICE(MARVELL, 0x6320), chip_6320 },
680 { PCI_VDEVICE(MARVELL, 0x6340), chip_6440 },
681 {
682 .vendor = PCI_VENDOR_ID_MARVELL,
683 .device = 0x6440,
684 .subvendor = PCI_ANY_ID,
685 .subdevice = 0x6480,
686 .class = 0,
687 .class_mask = 0,
Andy Yan20b09c22009-05-08 17:46:40 -0400688 .driver_data = chip_6485,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400689 },
690 { PCI_VDEVICE(MARVELL, 0x6440), chip_6440 },
Andy Yan20b09c22009-05-08 17:46:40 -0400691 { PCI_VDEVICE(MARVELL, 0x6485), chip_6485 },
692 { PCI_VDEVICE(MARVELL, 0x9480), chip_9480 },
693 { PCI_VDEVICE(MARVELL, 0x9180), chip_9180 },
Nick Chengf31491d2009-09-08 19:03:07 +0800694 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1300), chip_1300 },
695 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1320), chip_1320 },
Srinivas7ec4ad02009-11-24 20:07:39 +0530696 { PCI_VDEVICE(ADAPTEC2, 0x0450), chip_6440 },
HighPoint Linux Team463b8972011-02-23 16:28:44 +0800697 { PCI_VDEVICE(TTI, 0x2710), chip_9480 },
698 { PCI_VDEVICE(TTI, 0x2720), chip_9480 },
699 { PCI_VDEVICE(TTI, 0x2721), chip_9480 },
700 { PCI_VDEVICE(TTI, 0x2722), chip_9480 },
701 { PCI_VDEVICE(TTI, 0x2740), chip_9480 },
702 { PCI_VDEVICE(TTI, 0x2744), chip_9480 },
703 { PCI_VDEVICE(TTI, 0x2760), chip_9480 },
Xiangliang Yu82140282011-04-26 06:34:01 -0700704 {
Myron Stowe412e7042013-04-08 11:35:44 -0600705 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yuf7e45b62011-09-29 00:33:24 -0700706 .device = 0x9480,
707 .subvendor = PCI_ANY_ID,
708 .subdevice = 0x9480,
709 .class = 0,
710 .class_mask = 0,
711 .driver_data = chip_9480,
712 },
713 {
Myron Stowe412e7042013-04-08 11:35:44 -0600714 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yu82140282011-04-26 06:34:01 -0700715 .device = 0x9445,
716 .subvendor = PCI_ANY_ID,
717 .subdevice = 0x9480,
718 .class = 0,
719 .class_mask = 0,
720 .driver_data = chip_9445,
721 },
722 {
Myron Stowe412e7042013-04-08 11:35:44 -0600723 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yu82140282011-04-26 06:34:01 -0700724 .device = 0x9485,
725 .subvendor = PCI_ANY_ID,
726 .subdevice = 0x9480,
727 .class = 0,
728 .class_mask = 0,
729 .driver_data = chip_9485,
730 },
Ben Hutchingse90b25f2014-02-19 01:06:42 +0000731 {
732 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
733 .device = 0x9485,
734 .subvendor = PCI_ANY_ID,
735 .subdevice = 0x9485,
736 .class = 0,
737 .class_mask = 0,
738 .driver_data = chip_9485,
739 },
Robin H. Johnson99a700b2011-10-24 22:30:08 +0000740 { PCI_VDEVICE(OCZ, 0x1021), chip_9485}, /* OCZ RevoDrive3 */
741 { PCI_VDEVICE(OCZ, 0x1022), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
742 { PCI_VDEVICE(OCZ, 0x1040), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
743 { PCI_VDEVICE(OCZ, 0x1041), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
744 { PCI_VDEVICE(OCZ, 0x1042), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
745 { PCI_VDEVICE(OCZ, 0x1043), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
746 { PCI_VDEVICE(OCZ, 0x1044), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
747 { PCI_VDEVICE(OCZ, 0x1080), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
748 { PCI_VDEVICE(OCZ, 0x1083), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
749 { PCI_VDEVICE(OCZ, 0x1084), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400750
751 { } /* terminate list */
752};
753
754static struct pci_driver mvs_pci_driver = {
755 .name = DRV_NAME,
756 .id_table = mvs_pci_table,
757 .probe = mvs_pci_init,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800758 .remove = mvs_pci_remove,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400759};
760
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800761static ssize_t
762mvs_show_driver_version(struct device *cdev,
763 struct device_attribute *attr, char *buffer)
764{
765 return snprintf(buffer, PAGE_SIZE, "%s\n", DRV_VERSION);
766}
767
768static DEVICE_ATTR(driver_version,
769 S_IRUGO,
770 mvs_show_driver_version,
771 NULL);
772
773static ssize_t
774mvs_store_interrupt_coalescing(struct device *cdev,
775 struct device_attribute *attr,
776 const char *buffer, size_t size)
777{
778 int val = 0;
779 struct mvs_info *mvi = NULL;
780 struct Scsi_Host *shost = class_to_shost(cdev);
781 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
782 u8 i, core_nr;
783 if (buffer == NULL)
784 return size;
785
786 if (sscanf(buffer, "%d", &val) != 1)
787 return -EINVAL;
788
789 if (val >= 0x10000) {
790 mv_dprintk("interrupt coalescing timer %d us is"
791 "too long\n", val);
792 return strlen(buffer);
793 }
794
795 interrupt_coalescing = val;
796
797 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
798 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
799
800 if (unlikely(!mvi))
801 return -EINVAL;
802
803 for (i = 0; i < core_nr; i++) {
804 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
805 if (MVS_CHIP_DISP->tune_interrupt)
806 MVS_CHIP_DISP->tune_interrupt(mvi,
807 interrupt_coalescing);
808 }
809 mv_dprintk("set interrupt coalescing time to %d us\n",
810 interrupt_coalescing);
811 return strlen(buffer);
812}
813
814static ssize_t mvs_show_interrupt_coalescing(struct device *cdev,
815 struct device_attribute *attr, char *buffer)
816{
817 return snprintf(buffer, PAGE_SIZE, "%d\n", interrupt_coalescing);
818}
819
820static DEVICE_ATTR(interrupt_coalescing,
821 S_IRUGO|S_IWUSR,
822 mvs_show_interrupt_coalescing,
823 mvs_store_interrupt_coalescing);
824
Andy Yan20b09c22009-05-08 17:46:40 -0400825/* task handler */
826struct task_struct *mvs_th;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400827static int __init mvs_init(void)
828{
829 int rc;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400830 mvs_stt = sas_domain_attach_transport(&mvs_transport_ops);
831 if (!mvs_stt)
832 return -ENOMEM;
833
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700834 mvs_task_list_cache = kmem_cache_create("mvs_task_list", sizeof(struct mvs_task_list),
835 0, SLAB_HWCACHE_ALIGN, NULL);
836 if (!mvs_task_list_cache) {
837 rc = -ENOMEM;
838 mv_printk("%s: mvs_task_list_cache alloc failed! \n", __func__);
839 goto err_out;
840 }
841
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400842 rc = pci_register_driver(&mvs_pci_driver);
Andy Yan20b09c22009-05-08 17:46:40 -0400843
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400844 if (rc)
845 goto err_out;
846
847 return 0;
848
849err_out:
850 sas_release_transport(mvs_stt);
851 return rc;
852}
853
854static void __exit mvs_exit(void)
855{
856 pci_unregister_driver(&mvs_pci_driver);
857 sas_release_transport(mvs_stt);
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700858 kmem_cache_destroy(mvs_task_list_cache);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400859}
860
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800861struct device_attribute *mvst_host_attrs[] = {
862 &dev_attr_driver_version,
863 &dev_attr_interrupt_coalescing,
864 NULL,
865};
866
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400867module_init(mvs_init);
868module_exit(mvs_exit);
869
870MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
871MODULE_DESCRIPTION("Marvell 88SE6440 SAS/SATA controller driver");
872MODULE_VERSION(DRV_VERSION);
873MODULE_LICENSE("GPL");
Andy Yan20b09c22009-05-08 17:46:40 -0400874#ifdef CONFIG_PCI
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400875MODULE_DEVICE_TABLE(pci, mvs_pci_table);
Andy Yan20b09c22009-05-08 17:46:40 -0400876#endif