blob: d3c1fa5e76fb3f13f29fefb1cf379d89b820e531 [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,
Christoph Hellwig2ecb2042014-11-03 14:09:02 +010079 .use_blk_tags = 1,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040080};
81
82static struct sas_domain_function_template mvs_transport_ops = {
Andy Yan20b09c22009-05-08 17:46:40 -040083 .lldd_dev_found = mvs_dev_found,
Srinivas9dc9fd92010-02-15 00:00:00 -060084 .lldd_dev_gone = mvs_dev_gone,
Andy Yan20b09c22009-05-08 17:46:40 -040085 .lldd_execute_task = mvs_queue_command,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040086 .lldd_control_phy = mvs_phy_control,
Andy Yan20b09c22009-05-08 17:46:40 -040087
88 .lldd_abort_task = mvs_abort_task,
89 .lldd_abort_task_set = mvs_abort_task_set,
90 .lldd_clear_aca = mvs_clear_aca,
Srinivas9dc9fd92010-02-15 00:00:00 -060091 .lldd_clear_task_set = mvs_clear_task_set,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040092 .lldd_I_T_nexus_reset = mvs_I_T_nexus_reset,
Andy Yan20b09c22009-05-08 17:46:40 -040093 .lldd_lu_reset = mvs_lu_reset,
94 .lldd_query_task = mvs_query_task,
Andy Yan20b09c22009-05-08 17:46:40 -040095 .lldd_port_formed = mvs_port_formed,
96 .lldd_port_deformed = mvs_port_deformed,
97
Jeff Garzikdd4969a2009-05-08 17:44:01 -040098};
99
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800100static void mvs_phy_init(struct mvs_info *mvi, int phy_id)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400101{
102 struct mvs_phy *phy = &mvi->phy[phy_id];
103 struct asd_sas_phy *sas_phy = &phy->sas_phy;
104
Andy Yan20b09c22009-05-08 17:46:40 -0400105 phy->mvi = mvi;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800106 phy->port = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -0400107 init_timer(&phy->timer);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400108 sas_phy->enabled = (phy_id < mvi->chip->n_phy) ? 1 : 0;
109 sas_phy->class = SAS;
110 sas_phy->iproto = SAS_PROTOCOL_ALL;
111 sas_phy->tproto = 0;
112 sas_phy->type = PHY_TYPE_PHYSICAL;
113 sas_phy->role = PHY_ROLE_INITIATOR;
114 sas_phy->oob_mode = OOB_NOT_CONNECTED;
115 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
116
117 sas_phy->id = phy_id;
118 sas_phy->sas_addr = &mvi->sas_addr[0];
119 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
Andy Yan20b09c22009-05-08 17:46:40 -0400120 sas_phy->ha = (struct sas_ha_struct *)mvi->shost->hostdata;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400121 sas_phy->lldd_phy = phy;
122}
123
124static void mvs_free(struct mvs_info *mvi)
125{
Andy Yan20b09c22009-05-08 17:46:40 -0400126 struct mvs_wq *mwq;
127 int slot_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400128
129 if (!mvi)
130 return;
131
Andy Yan20b09c22009-05-08 17:46:40 -0400132 if (mvi->flags & MVF_FLAG_SOC)
133 slot_nr = MVS_SOC_SLOTS;
134 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800135 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400136
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700137 if (mvi->dma_pool)
138 pci_pool_destroy(mvi->dma_pool);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400139
140 if (mvi->tx)
Andy Yan20b09c22009-05-08 17:46:40 -0400141 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400142 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
143 mvi->tx, mvi->tx_dma);
144 if (mvi->rx_fis)
Andy Yan20b09c22009-05-08 17:46:40 -0400145 dma_free_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400146 mvi->rx_fis, mvi->rx_fis_dma);
147 if (mvi->rx)
Andy Yan20b09c22009-05-08 17:46:40 -0400148 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400149 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
150 mvi->rx, mvi->rx_dma);
151 if (mvi->slot)
Andy Yan20b09c22009-05-08 17:46:40 -0400152 dma_free_coherent(mvi->dev,
153 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400154 mvi->slot, mvi->slot_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800155
Andy Yan20b09c22009-05-08 17:46:40 -0400156 if (mvi->bulk_buffer)
157 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
158 mvi->bulk_buffer, mvi->bulk_buffer_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800159 if (mvi->bulk_buffer1)
160 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
161 mvi->bulk_buffer1, mvi->bulk_buffer_dma1);
Andy Yan20b09c22009-05-08 17:46:40 -0400162
163 MVS_CHIP_DISP->chip_iounmap(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400164 if (mvi->shost)
165 scsi_host_put(mvi->shost);
Andy Yan20b09c22009-05-08 17:46:40 -0400166 list_for_each_entry(mwq, &mvi->wq_list, entry)
167 cancel_delayed_work(&mwq->work_q);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800168 kfree(mvi->tags);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400169 kfree(mvi);
170}
171
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800172#ifdef CONFIG_SCSI_MVSAS_TASKLET
Andy Yan20b09c22009-05-08 17:46:40 -0400173static void mvs_tasklet(unsigned long opaque)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400174{
Andy Yan20b09c22009-05-08 17:46:40 -0400175 u32 stat;
176 u16 core_nr, i = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400177
Andy Yan20b09c22009-05-08 17:46:40 -0400178 struct mvs_info *mvi;
179 struct sas_ha_struct *sha = (struct sas_ha_struct *)opaque;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400180
Andy Yan20b09c22009-05-08 17:46:40 -0400181 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
182 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
183
184 if (unlikely(!mvi))
185 BUG_ON(1);
186
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800187 stat = MVS_CHIP_DISP->isr_status(mvi, mvi->pdev->irq);
188 if (!stat)
189 goto out;
190
Andy Yan20b09c22009-05-08 17:46:40 -0400191 for (i = 0; i < core_nr; i++) {
192 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800193 MVS_CHIP_DISP->isr(mvi, mvi->pdev->irq, stat);
Andy Yan20b09c22009-05-08 17:46:40 -0400194 }
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800195out:
196 MVS_CHIP_DISP->interrupt_enable(mvi);
Andy Yan20b09c22009-05-08 17:46:40 -0400197
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400198}
199#endif
200
201static irqreturn_t mvs_interrupt(int irq, void *opaque)
202{
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800203 u32 core_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400204 u32 stat;
Andy Yan20b09c22009-05-08 17:46:40 -0400205 struct mvs_info *mvi;
206 struct sas_ha_struct *sha = opaque;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800207#ifndef CONFIG_SCSI_MVSAS_TASKLET
208 u32 i;
209#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400210
Andy Yan20b09c22009-05-08 17:46:40 -0400211 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
212 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400213
Andy Yan20b09c22009-05-08 17:46:40 -0400214 if (unlikely(!mvi))
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400215 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800216#ifdef CONFIG_SCSI_MVSAS_TASKLET
217 MVS_CHIP_DISP->interrupt_disable(mvi);
218#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400219
Andy Yan20b09c22009-05-08 17:46:40 -0400220 stat = MVS_CHIP_DISP->isr_status(mvi, irq);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800221 if (!stat) {
222 #ifdef CONFIG_SCSI_MVSAS_TASKLET
223 MVS_CHIP_DISP->interrupt_enable(mvi);
224 #endif
Andy Yan20b09c22009-05-08 17:46:40 -0400225 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800226 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400227
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800228#ifdef CONFIG_SCSI_MVSAS_TASKLET
229 tasklet_schedule(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400230#else
Andy Yan20b09c22009-05-08 17:46:40 -0400231 for (i = 0; i < core_nr; i++) {
232 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
233 MVS_CHIP_DISP->isr(mvi, irq, stat);
234 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400235#endif
236 return IRQ_HANDLED;
237}
238
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800239static int mvs_alloc(struct mvs_info *mvi, struct Scsi_Host *shost)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400240{
Srinivas9dc9fd92010-02-15 00:00:00 -0600241 int i = 0, slot_nr;
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700242 char pool_name[32];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400243
Andy Yan20b09c22009-05-08 17:46:40 -0400244 if (mvi->flags & MVF_FLAG_SOC)
245 slot_nr = MVS_SOC_SLOTS;
246 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800247 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400248
249 spin_lock_init(&mvi->lock);
Andy Yan20b09c22009-05-08 17:46:40 -0400250 for (i = 0; i < mvi->chip->n_phy; i++) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400251 mvs_phy_init(mvi, i);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400252 mvi->port[i].wide_port_phymap = 0;
253 mvi->port[i].port_attached = 0;
254 INIT_LIST_HEAD(&mvi->port[i].list);
255 }
Andy Yan20b09c22009-05-08 17:46:40 -0400256 for (i = 0; i < MVS_MAX_DEVICES; i++) {
257 mvi->devices[i].taskfileset = MVS_ID_NOT_MAPPED;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700258 mvi->devices[i].dev_type = SAS_PHY_UNUSED;
Andy Yan20b09c22009-05-08 17:46:40 -0400259 mvi->devices[i].device_id = i;
260 mvi->devices[i].dev_status = MVS_DEV_NORMAL;
Srinivas9dc9fd92010-02-15 00:00:00 -0600261 init_timer(&mvi->devices[i].timer);
Andy Yan20b09c22009-05-08 17:46:40 -0400262 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400263
264 /*
265 * alloc and init our DMA areas
266 */
Andy Yan20b09c22009-05-08 17:46:40 -0400267 mvi->tx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400268 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
269 &mvi->tx_dma, GFP_KERNEL);
270 if (!mvi->tx)
271 goto err_out;
272 memset(mvi->tx, 0, sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ);
Andy Yan20b09c22009-05-08 17:46:40 -0400273 mvi->rx_fis = dma_alloc_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400274 &mvi->rx_fis_dma, GFP_KERNEL);
275 if (!mvi->rx_fis)
276 goto err_out;
277 memset(mvi->rx_fis, 0, MVS_RX_FISL_SZ);
278
Andy Yan20b09c22009-05-08 17:46:40 -0400279 mvi->rx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400280 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
281 &mvi->rx_dma, GFP_KERNEL);
282 if (!mvi->rx)
283 goto err_out;
284 memset(mvi->rx, 0, sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400285 mvi->rx[0] = cpu_to_le32(0xfff);
286 mvi->rx_cons = 0xfff;
287
Andy Yan20b09c22009-05-08 17:46:40 -0400288 mvi->slot = dma_alloc_coherent(mvi->dev,
289 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400290 &mvi->slot_dma, GFP_KERNEL);
291 if (!mvi->slot)
292 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400293 memset(mvi->slot, 0, sizeof(*mvi->slot) * slot_nr);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400294
Andy Yan20b09c22009-05-08 17:46:40 -0400295 mvi->bulk_buffer = dma_alloc_coherent(mvi->dev,
296 TRASH_BUCKET_SIZE,
297 &mvi->bulk_buffer_dma, GFP_KERNEL);
298 if (!mvi->bulk_buffer)
299 goto err_out;
Xiangliang Yu8882f082011-05-24 22:33:11 +0800300
301 mvi->bulk_buffer1 = dma_alloc_coherent(mvi->dev,
302 TRASH_BUCKET_SIZE,
303 &mvi->bulk_buffer_dma1, GFP_KERNEL);
304 if (!mvi->bulk_buffer1)
305 goto err_out;
306
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700307 sprintf(pool_name, "%s%d", "mvs_dma_pool", mvi->id);
308 mvi->dma_pool = pci_pool_create(pool_name, mvi->pdev, MVS_SLOT_BUF_SZ, 16, 0);
309 if (!mvi->dma_pool) {
310 printk(KERN_DEBUG "failed to create dma pool %s.\n", pool_name);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400311 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400312 }
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700313 mvi->tags_num = slot_nr;
314
Andy Yan20b09c22009-05-08 17:46:40 -0400315 /* Initialize tags */
316 mvs_tag_init(mvi);
317 return 0;
318err_out:
319 return 1;
320}
321
322
323int mvs_ioremap(struct mvs_info *mvi, int bar, int bar_ex)
324{
325 unsigned long res_start, res_len, res_flag, res_flag_ex = 0;
326 struct pci_dev *pdev = mvi->pdev;
327 if (bar_ex != -1) {
328 /*
329 * ioremap main and peripheral registers
330 */
331 res_start = pci_resource_start(pdev, bar_ex);
332 res_len = pci_resource_len(pdev, bar_ex);
333 if (!res_start || !res_len)
334 goto err_out;
335
336 res_flag_ex = pci_resource_flags(pdev, bar_ex);
337 if (res_flag_ex & IORESOURCE_MEM) {
338 if (res_flag_ex & IORESOURCE_CACHEABLE)
339 mvi->regs_ex = ioremap(res_start, res_len);
340 else
341 mvi->regs_ex = ioremap_nocache(res_start,
342 res_len);
343 } else
344 mvi->regs_ex = (void *)res_start;
345 if (!mvi->regs_ex)
346 goto err_out;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400347 }
348
Andy Yan20b09c22009-05-08 17:46:40 -0400349 res_start = pci_resource_start(pdev, bar);
350 res_len = pci_resource_len(pdev, bar);
351 if (!res_start || !res_len)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400352 goto err_out;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400353
Andy Yan20b09c22009-05-08 17:46:40 -0400354 res_flag = pci_resource_flags(pdev, bar);
355 if (res_flag & IORESOURCE_CACHEABLE)
356 mvi->regs = ioremap(res_start, res_len);
357 else
358 mvi->regs = ioremap_nocache(res_start, res_len);
359
360 if (!mvi->regs) {
361 if (mvi->regs_ex && (res_flag_ex & IORESOURCE_MEM))
362 iounmap(mvi->regs_ex);
363 mvi->regs_ex = NULL;
364 goto err_out;
365 }
366
367 return 0;
368err_out:
369 return -1;
370}
371
372void mvs_iounmap(void __iomem *regs)
373{
374 iounmap(regs);
375}
376
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800377static struct mvs_info *mvs_pci_alloc(struct pci_dev *pdev,
Andy Yan20b09c22009-05-08 17:46:40 -0400378 const struct pci_device_id *ent,
379 struct Scsi_Host *shost, unsigned int id)
380{
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800381 struct mvs_info *mvi = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -0400382 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
383
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800384 mvi = kzalloc(sizeof(*mvi) +
385 (1L << mvs_chips[ent->driver_data].slot_width) *
386 sizeof(struct mvs_slot_info), GFP_KERNEL);
Andy Yan20b09c22009-05-08 17:46:40 -0400387 if (!mvi)
388 return NULL;
389
390 mvi->pdev = pdev;
391 mvi->dev = &pdev->dev;
392 mvi->chip_id = ent->driver_data;
393 mvi->chip = &mvs_chips[mvi->chip_id];
394 INIT_LIST_HEAD(&mvi->wq_list);
Andy Yan20b09c22009-05-08 17:46:40 -0400395
396 ((struct mvs_prv_info *)sha->lldd_ha)->mvi[id] = mvi;
397 ((struct mvs_prv_info *)sha->lldd_ha)->n_phy = mvi->chip->n_phy;
398
399 mvi->id = id;
400 mvi->sas = sha;
401 mvi->shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400402
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800403 mvi->tags = kzalloc(MVS_CHIP_SLOT_SZ>>3, GFP_KERNEL);
404 if (!mvi->tags)
405 goto err_out;
406
Andy Yan20b09c22009-05-08 17:46:40 -0400407 if (MVS_CHIP_DISP->chip_ioremap(mvi))
408 goto err_out;
409 if (!mvs_alloc(mvi, shost))
410 return mvi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400411err_out:
412 mvs_free(mvi);
413 return NULL;
414}
415
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400416static int pci_go_64(struct pci_dev *pdev)
417{
418 int rc;
419
420 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
421 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
422 if (rc) {
423 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
424 if (rc) {
425 dev_printk(KERN_ERR, &pdev->dev,
426 "64-bit DMA enable failed\n");
427 return rc;
428 }
429 }
430 } else {
431 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
432 if (rc) {
433 dev_printk(KERN_ERR, &pdev->dev,
434 "32-bit DMA enable failed\n");
435 return rc;
436 }
437 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
438 if (rc) {
439 dev_printk(KERN_ERR, &pdev->dev,
440 "32-bit consistent DMA enable failed\n");
441 return rc;
442 }
443 }
444
445 return rc;
446}
447
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800448static int mvs_prep_sas_ha_init(struct Scsi_Host *shost,
Andy Yan20b09c22009-05-08 17:46:40 -0400449 const struct mvs_chip_info *chip_info)
450{
451 int phy_nr, port_nr; unsigned short core_nr;
452 struct asd_sas_phy **arr_phy;
453 struct asd_sas_port **arr_port;
454 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
455
456 core_nr = chip_info->n_host;
457 phy_nr = core_nr * chip_info->n_phy;
458 port_nr = phy_nr;
459
460 memset(sha, 0x00, sizeof(struct sas_ha_struct));
461 arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
462 arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
463 if (!arr_phy || !arr_port)
464 goto exit_free;
465
466 sha->sas_phy = arr_phy;
467 sha->sas_port = arr_port;
Srinivas9dc9fd92010-02-15 00:00:00 -0600468 sha->core.shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400469
470 sha->lldd_ha = kzalloc(sizeof(struct mvs_prv_info), GFP_KERNEL);
471 if (!sha->lldd_ha)
472 goto exit_free;
473
474 ((struct mvs_prv_info *)sha->lldd_ha)->n_host = core_nr;
475
476 shost->transportt = mvs_stt;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800477 shost->max_id = MVS_MAX_DEVICES;
Andy Yan20b09c22009-05-08 17:46:40 -0400478 shost->max_lun = ~0;
479 shost->max_channel = 1;
480 shost->max_cmd_len = 16;
481
482 return 0;
483exit_free:
484 kfree(arr_phy);
485 kfree(arr_port);
486 return -1;
487
488}
489
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800490static void mvs_post_sas_ha_init(struct Scsi_Host *shost,
Andy Yan20b09c22009-05-08 17:46:40 -0400491 const struct mvs_chip_info *chip_info)
492{
493 int can_queue, i = 0, j = 0;
494 struct mvs_info *mvi = NULL;
495 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
496 unsigned short nr_core = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
497
498 for (j = 0; j < nr_core; j++) {
499 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[j];
500 for (i = 0; i < chip_info->n_phy; i++) {
501 sha->sas_phy[j * chip_info->n_phy + i] =
502 &mvi->phy[i].sas_phy;
503 sha->sas_port[j * chip_info->n_phy + i] =
504 &mvi->port[i].sas_port;
505 }
506 }
507
508 sha->sas_ha_name = DRV_NAME;
509 sha->dev = mvi->dev;
510 sha->lldd_module = THIS_MODULE;
511 sha->sas_addr = &mvi->sas_addr[0];
512
513 sha->num_phys = nr_core * chip_info->n_phy;
514
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700515 sha->lldd_max_execute_num = lldd_max_execute_num;
Andy Yan20b09c22009-05-08 17:46:40 -0400516
517 if (mvi->flags & MVF_FLAG_SOC)
518 can_queue = MVS_SOC_CAN_QUEUE;
519 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800520 can_queue = MVS_CHIP_SLOT_SZ;
Andy Yan20b09c22009-05-08 17:46:40 -0400521
522 sha->lldd_queue_size = can_queue;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800523 shost->sg_tablesize = min_t(u16, SG_ALL, MVS_MAX_SG);
Andy Yan20b09c22009-05-08 17:46:40 -0400524 shost->can_queue = can_queue;
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800525 mvi->shost->cmd_per_lun = MVS_QUEUE_SIZE;
Andy Yan20b09c22009-05-08 17:46:40 -0400526 sha->core.shost = mvi->shost;
527}
528
529static void mvs_init_sas_add(struct mvs_info *mvi)
530{
531 u8 i;
532 for (i = 0; i < mvi->chip->n_phy; i++) {
533 mvi->phy[i].dev_sas_addr = 0x5005043011ab0000ULL;
534 mvi->phy[i].dev_sas_addr =
535 cpu_to_be64((u64)(*(u64 *)&mvi->phy[i].dev_sas_addr));
536 }
537
538 memcpy(mvi->sas_addr, &mvi->phy[0].dev_sas_addr, SAS_ADDR_SIZE);
539}
540
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800541static int mvs_pci_init(struct pci_dev *pdev, const struct pci_device_id *ent)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400542{
Andy Yan20b09c22009-05-08 17:46:40 -0400543 unsigned int rc, nhost = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400544 struct mvs_info *mvi;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800545 struct mvs_prv_info *mpi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400546 irq_handler_t irq_handler = mvs_interrupt;
Andy Yan20b09c22009-05-08 17:46:40 -0400547 struct Scsi_Host *shost = NULL;
548 const struct mvs_chip_info *chip;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400549
Andy Yan20b09c22009-05-08 17:46:40 -0400550 dev_printk(KERN_INFO, &pdev->dev,
551 "mvsas: driver version %s\n", DRV_VERSION);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400552 rc = pci_enable_device(pdev);
553 if (rc)
Andy Yan20b09c22009-05-08 17:46:40 -0400554 goto err_out_enable;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400555
556 pci_set_master(pdev);
557
558 rc = pci_request_regions(pdev, DRV_NAME);
559 if (rc)
560 goto err_out_disable;
561
562 rc = pci_go_64(pdev);
563 if (rc)
564 goto err_out_regions;
565
Andy Yan20b09c22009-05-08 17:46:40 -0400566 shost = scsi_host_alloc(&mvs_sht, sizeof(void *));
567 if (!shost) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400568 rc = -ENOMEM;
569 goto err_out_regions;
570 }
571
Andy Yan20b09c22009-05-08 17:46:40 -0400572 chip = &mvs_chips[ent->driver_data];
573 SHOST_TO_SAS_HA(shost) =
574 kcalloc(1, sizeof(struct sas_ha_struct), GFP_KERNEL);
575 if (!SHOST_TO_SAS_HA(shost)) {
576 kfree(shost);
577 rc = -ENOMEM;
578 goto err_out_regions;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400579 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400580
Andy Yan20b09c22009-05-08 17:46:40 -0400581 rc = mvs_prep_sas_ha_init(shost, chip);
582 if (rc) {
583 kfree(shost);
584 rc = -ENOMEM;
585 goto err_out_regions;
586 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400587
Andy Yan20b09c22009-05-08 17:46:40 -0400588 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400589
Andy Yan20b09c22009-05-08 17:46:40 -0400590 do {
591 mvi = mvs_pci_alloc(pdev, ent, shost, nhost);
592 if (!mvi) {
593 rc = -ENOMEM;
594 goto err_out_regions;
595 }
596
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800597 memset(&mvi->hba_info_param, 0xFF,
598 sizeof(struct hba_info_page));
599
Andy Yan20b09c22009-05-08 17:46:40 -0400600 mvs_init_sas_add(mvi);
601
602 mvi->instance = nhost;
603 rc = MVS_CHIP_DISP->chip_init(mvi);
604 if (rc) {
605 mvs_free(mvi);
606 goto err_out_regions;
607 }
608 nhost++;
609 } while (nhost < chip->n_host);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800610 mpi = (struct mvs_prv_info *)(SHOST_TO_SAS_HA(shost)->lldd_ha);
611#ifdef CONFIG_SCSI_MVSAS_TASKLET
612 tasklet_init(&(mpi->mv_tasklet), mvs_tasklet,
Srinivas9dc9fd92010-02-15 00:00:00 -0600613 (unsigned long)SHOST_TO_SAS_HA(shost));
614#endif
Andy Yan20b09c22009-05-08 17:46:40 -0400615
616 mvs_post_sas_ha_init(shost, chip);
617
618 rc = scsi_add_host(shost, &pdev->dev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400619 if (rc)
620 goto err_out_shost;
621
Andy Yan20b09c22009-05-08 17:46:40 -0400622 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
623 if (rc)
624 goto err_out_shost;
625 rc = request_irq(pdev->irq, irq_handler, IRQF_SHARED,
626 DRV_NAME, SHOST_TO_SAS_HA(shost));
627 if (rc)
628 goto err_not_sas;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400629
Andy Yan20b09c22009-05-08 17:46:40 -0400630 MVS_CHIP_DISP->interrupt_enable(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400631
632 scsi_scan_host(mvi->shost);
633
634 return 0;
635
Andy Yan20b09c22009-05-08 17:46:40 -0400636err_not_sas:
637 sas_unregister_ha(SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400638err_out_shost:
639 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400640err_out_regions:
641 pci_release_regions(pdev);
642err_out_disable:
643 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400644err_out_enable:
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400645 return rc;
646}
647
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800648static void mvs_pci_remove(struct pci_dev *pdev)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400649{
Andy Yan20b09c22009-05-08 17:46:40 -0400650 unsigned short core_nr, i = 0;
651 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
652 struct mvs_info *mvi = NULL;
653
654 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
655 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
656
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800657#ifdef CONFIG_SCSI_MVSAS_TASKLET
658 tasklet_kill(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Andy Yan20b09c22009-05-08 17:46:40 -0400659#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400660
Andy Yan20b09c22009-05-08 17:46:40 -0400661 sas_unregister_ha(sha);
662 sas_remove_host(mvi->shost);
663 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400664
Andy Yan20b09c22009-05-08 17:46:40 -0400665 MVS_CHIP_DISP->interrupt_disable(mvi);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800666 free_irq(mvi->pdev->irq, sha);
Andy Yan20b09c22009-05-08 17:46:40 -0400667 for (i = 0; i < core_nr; i++) {
668 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400669 mvs_free(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400670 }
Andy Yan20b09c22009-05-08 17:46:40 -0400671 kfree(sha->sas_phy);
672 kfree(sha->sas_port);
673 kfree(sha);
674 pci_release_regions(pdev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400675 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400676 return;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400677}
678
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800679static struct pci_device_id mvs_pci_table[] = {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400680 { PCI_VDEVICE(MARVELL, 0x6320), chip_6320 },
681 { PCI_VDEVICE(MARVELL, 0x6340), chip_6440 },
682 {
683 .vendor = PCI_VENDOR_ID_MARVELL,
684 .device = 0x6440,
685 .subvendor = PCI_ANY_ID,
686 .subdevice = 0x6480,
687 .class = 0,
688 .class_mask = 0,
Andy Yan20b09c22009-05-08 17:46:40 -0400689 .driver_data = chip_6485,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400690 },
691 { PCI_VDEVICE(MARVELL, 0x6440), chip_6440 },
Andy Yan20b09c22009-05-08 17:46:40 -0400692 { PCI_VDEVICE(MARVELL, 0x6485), chip_6485 },
693 { PCI_VDEVICE(MARVELL, 0x9480), chip_9480 },
694 { PCI_VDEVICE(MARVELL, 0x9180), chip_9180 },
Nick Chengf31491d2009-09-08 19:03:07 +0800695 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1300), chip_1300 },
696 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1320), chip_1320 },
Srinivas7ec4ad02009-11-24 20:07:39 +0530697 { PCI_VDEVICE(ADAPTEC2, 0x0450), chip_6440 },
HighPoint Linux Team463b8972011-02-23 16:28:44 +0800698 { PCI_VDEVICE(TTI, 0x2710), chip_9480 },
699 { PCI_VDEVICE(TTI, 0x2720), chip_9480 },
700 { PCI_VDEVICE(TTI, 0x2721), chip_9480 },
701 { PCI_VDEVICE(TTI, 0x2722), chip_9480 },
702 { PCI_VDEVICE(TTI, 0x2740), chip_9480 },
703 { PCI_VDEVICE(TTI, 0x2744), chip_9480 },
704 { PCI_VDEVICE(TTI, 0x2760), chip_9480 },
Xiangliang Yu82140282011-04-26 06:34:01 -0700705 {
Myron Stowe412e7042013-04-08 11:35:44 -0600706 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yuf7e45b62011-09-29 00:33:24 -0700707 .device = 0x9480,
708 .subvendor = PCI_ANY_ID,
709 .subdevice = 0x9480,
710 .class = 0,
711 .class_mask = 0,
712 .driver_data = chip_9480,
713 },
714 {
Myron Stowe412e7042013-04-08 11:35:44 -0600715 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yu82140282011-04-26 06:34:01 -0700716 .device = 0x9445,
717 .subvendor = PCI_ANY_ID,
718 .subdevice = 0x9480,
719 .class = 0,
720 .class_mask = 0,
721 .driver_data = chip_9445,
722 },
723 {
Myron Stowe412e7042013-04-08 11:35:44 -0600724 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yu82140282011-04-26 06:34:01 -0700725 .device = 0x9485,
726 .subvendor = PCI_ANY_ID,
727 .subdevice = 0x9480,
728 .class = 0,
729 .class_mask = 0,
730 .driver_data = chip_9485,
731 },
Ben Hutchingse90b25f2014-02-19 01:06:42 +0000732 {
733 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
734 .device = 0x9485,
735 .subvendor = PCI_ANY_ID,
736 .subdevice = 0x9485,
737 .class = 0,
738 .class_mask = 0,
739 .driver_data = chip_9485,
740 },
Robin H. Johnson99a700b2011-10-24 22:30:08 +0000741 { PCI_VDEVICE(OCZ, 0x1021), chip_9485}, /* OCZ RevoDrive3 */
742 { PCI_VDEVICE(OCZ, 0x1022), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
743 { PCI_VDEVICE(OCZ, 0x1040), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
744 { PCI_VDEVICE(OCZ, 0x1041), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
745 { PCI_VDEVICE(OCZ, 0x1042), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
746 { PCI_VDEVICE(OCZ, 0x1043), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
747 { PCI_VDEVICE(OCZ, 0x1044), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
748 { PCI_VDEVICE(OCZ, 0x1080), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
749 { PCI_VDEVICE(OCZ, 0x1083), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
750 { PCI_VDEVICE(OCZ, 0x1084), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400751
752 { } /* terminate list */
753};
754
755static struct pci_driver mvs_pci_driver = {
756 .name = DRV_NAME,
757 .id_table = mvs_pci_table,
758 .probe = mvs_pci_init,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800759 .remove = mvs_pci_remove,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400760};
761
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800762static ssize_t
763mvs_show_driver_version(struct device *cdev,
764 struct device_attribute *attr, char *buffer)
765{
766 return snprintf(buffer, PAGE_SIZE, "%s\n", DRV_VERSION);
767}
768
769static DEVICE_ATTR(driver_version,
770 S_IRUGO,
771 mvs_show_driver_version,
772 NULL);
773
774static ssize_t
775mvs_store_interrupt_coalescing(struct device *cdev,
776 struct device_attribute *attr,
777 const char *buffer, size_t size)
778{
779 int val = 0;
780 struct mvs_info *mvi = NULL;
781 struct Scsi_Host *shost = class_to_shost(cdev);
782 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
783 u8 i, core_nr;
784 if (buffer == NULL)
785 return size;
786
787 if (sscanf(buffer, "%d", &val) != 1)
788 return -EINVAL;
789
790 if (val >= 0x10000) {
791 mv_dprintk("interrupt coalescing timer %d us is"
792 "too long\n", val);
793 return strlen(buffer);
794 }
795
796 interrupt_coalescing = val;
797
798 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
799 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
800
801 if (unlikely(!mvi))
802 return -EINVAL;
803
804 for (i = 0; i < core_nr; i++) {
805 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
806 if (MVS_CHIP_DISP->tune_interrupt)
807 MVS_CHIP_DISP->tune_interrupt(mvi,
808 interrupt_coalescing);
809 }
810 mv_dprintk("set interrupt coalescing time to %d us\n",
811 interrupt_coalescing);
812 return strlen(buffer);
813}
814
815static ssize_t mvs_show_interrupt_coalescing(struct device *cdev,
816 struct device_attribute *attr, char *buffer)
817{
818 return snprintf(buffer, PAGE_SIZE, "%d\n", interrupt_coalescing);
819}
820
821static DEVICE_ATTR(interrupt_coalescing,
822 S_IRUGO|S_IWUSR,
823 mvs_show_interrupt_coalescing,
824 mvs_store_interrupt_coalescing);
825
Andy Yan20b09c22009-05-08 17:46:40 -0400826/* task handler */
827struct task_struct *mvs_th;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400828static int __init mvs_init(void)
829{
830 int rc;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400831 mvs_stt = sas_domain_attach_transport(&mvs_transport_ops);
832 if (!mvs_stt)
833 return -ENOMEM;
834
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700835 mvs_task_list_cache = kmem_cache_create("mvs_task_list", sizeof(struct mvs_task_list),
836 0, SLAB_HWCACHE_ALIGN, NULL);
837 if (!mvs_task_list_cache) {
838 rc = -ENOMEM;
839 mv_printk("%s: mvs_task_list_cache alloc failed! \n", __func__);
840 goto err_out;
841 }
842
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400843 rc = pci_register_driver(&mvs_pci_driver);
Andy Yan20b09c22009-05-08 17:46:40 -0400844
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400845 if (rc)
846 goto err_out;
847
848 return 0;
849
850err_out:
851 sas_release_transport(mvs_stt);
852 return rc;
853}
854
855static void __exit mvs_exit(void)
856{
857 pci_unregister_driver(&mvs_pci_driver);
858 sas_release_transport(mvs_stt);
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700859 kmem_cache_destroy(mvs_task_list_cache);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400860}
861
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800862struct device_attribute *mvst_host_attrs[] = {
863 &dev_attr_driver_version,
864 &dev_attr_interrupt_coalescing,
865 NULL,
866};
867
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400868module_init(mvs_init);
869module_exit(mvs_exit);
870
871MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
872MODULE_DESCRIPTION("Marvell 88SE6440 SAS/SATA controller driver");
873MODULE_VERSION(DRV_VERSION);
874MODULE_LICENSE("GPL");
Andy Yan20b09c22009-05-08 17:46:40 -0400875#ifdef CONFIG_PCI
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400876MODULE_DEVICE_TABLE(pci, mvs_pci_table);
Andy Yan20b09c22009-05-08 17:46:40 -0400877#endif