blob: f466a6aa8830c9d2341a21c92e3d1904a7521bd5 [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,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040059 .this_id = -1,
Xiangliang Yub89e8f52011-05-24 22:35:09 +080060 .sg_tablesize = SG_ALL,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040061 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
62 .use_clustering = ENABLE_CLUSTERING,
Srinivas9dc9fd92010-02-15 00:00:00 -060063 .eh_device_reset_handler = sas_eh_device_reset_handler,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040064 .eh_bus_reset_handler = sas_eh_bus_reset_handler,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040065 .target_destroy = sas_target_destroy,
66 .ioctl = sas_ioctl,
Xiangliang Yu83c7b612011-05-24 22:31:47 +080067 .shost_attrs = mvst_host_attrs,
Christoph Hellwig2ecb2042014-11-03 14:09:02 +010068 .use_blk_tags = 1,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +010069 .track_queue_depth = 1,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040070};
71
72static struct sas_domain_function_template mvs_transport_ops = {
Andy Yan20b09c22009-05-08 17:46:40 -040073 .lldd_dev_found = mvs_dev_found,
Srinivas9dc9fd92010-02-15 00:00:00 -060074 .lldd_dev_gone = mvs_dev_gone,
Andy Yan20b09c22009-05-08 17:46:40 -040075 .lldd_execute_task = mvs_queue_command,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040076 .lldd_control_phy = mvs_phy_control,
Andy Yan20b09c22009-05-08 17:46:40 -040077
78 .lldd_abort_task = mvs_abort_task,
79 .lldd_abort_task_set = mvs_abort_task_set,
80 .lldd_clear_aca = mvs_clear_aca,
Srinivas9dc9fd92010-02-15 00:00:00 -060081 .lldd_clear_task_set = mvs_clear_task_set,
Jeff Garzikdd4969a2009-05-08 17:44:01 -040082 .lldd_I_T_nexus_reset = mvs_I_T_nexus_reset,
Andy Yan20b09c22009-05-08 17:46:40 -040083 .lldd_lu_reset = mvs_lu_reset,
84 .lldd_query_task = mvs_query_task,
Andy Yan20b09c22009-05-08 17:46:40 -040085 .lldd_port_formed = mvs_port_formed,
86 .lldd_port_deformed = mvs_port_deformed,
87
Jeff Garzikdd4969a2009-05-08 17:44:01 -040088};
89
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080090static void mvs_phy_init(struct mvs_info *mvi, int phy_id)
Jeff Garzikdd4969a2009-05-08 17:44:01 -040091{
92 struct mvs_phy *phy = &mvi->phy[phy_id];
93 struct asd_sas_phy *sas_phy = &phy->sas_phy;
94
Andy Yan20b09c22009-05-08 17:46:40 -040095 phy->mvi = mvi;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +080096 phy->port = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -040097 init_timer(&phy->timer);
Jeff Garzikdd4969a2009-05-08 17:44:01 -040098 sas_phy->enabled = (phy_id < mvi->chip->n_phy) ? 1 : 0;
99 sas_phy->class = SAS;
100 sas_phy->iproto = SAS_PROTOCOL_ALL;
101 sas_phy->tproto = 0;
102 sas_phy->type = PHY_TYPE_PHYSICAL;
103 sas_phy->role = PHY_ROLE_INITIATOR;
104 sas_phy->oob_mode = OOB_NOT_CONNECTED;
105 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
106
107 sas_phy->id = phy_id;
108 sas_phy->sas_addr = &mvi->sas_addr[0];
109 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
Andy Yan20b09c22009-05-08 17:46:40 -0400110 sas_phy->ha = (struct sas_ha_struct *)mvi->shost->hostdata;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400111 sas_phy->lldd_phy = phy;
112}
113
114static void mvs_free(struct mvs_info *mvi)
115{
Andy Yan20b09c22009-05-08 17:46:40 -0400116 struct mvs_wq *mwq;
117 int slot_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400118
119 if (!mvi)
120 return;
121
Andy Yan20b09c22009-05-08 17:46:40 -0400122 if (mvi->flags & MVF_FLAG_SOC)
123 slot_nr = MVS_SOC_SLOTS;
124 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800125 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400126
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700127 if (mvi->dma_pool)
128 pci_pool_destroy(mvi->dma_pool);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400129
130 if (mvi->tx)
Andy Yan20b09c22009-05-08 17:46:40 -0400131 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400132 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
133 mvi->tx, mvi->tx_dma);
134 if (mvi->rx_fis)
Andy Yan20b09c22009-05-08 17:46:40 -0400135 dma_free_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400136 mvi->rx_fis, mvi->rx_fis_dma);
137 if (mvi->rx)
Andy Yan20b09c22009-05-08 17:46:40 -0400138 dma_free_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400139 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
140 mvi->rx, mvi->rx_dma);
141 if (mvi->slot)
Andy Yan20b09c22009-05-08 17:46:40 -0400142 dma_free_coherent(mvi->dev,
143 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400144 mvi->slot, mvi->slot_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800145
Andy Yan20b09c22009-05-08 17:46:40 -0400146 if (mvi->bulk_buffer)
147 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
148 mvi->bulk_buffer, mvi->bulk_buffer_dma);
Xiangliang Yu8882f082011-05-24 22:33:11 +0800149 if (mvi->bulk_buffer1)
150 dma_free_coherent(mvi->dev, TRASH_BUCKET_SIZE,
151 mvi->bulk_buffer1, mvi->bulk_buffer_dma1);
Andy Yan20b09c22009-05-08 17:46:40 -0400152
153 MVS_CHIP_DISP->chip_iounmap(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400154 if (mvi->shost)
155 scsi_host_put(mvi->shost);
Andy Yan20b09c22009-05-08 17:46:40 -0400156 list_for_each_entry(mwq, &mvi->wq_list, entry)
157 cancel_delayed_work(&mwq->work_q);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800158 kfree(mvi->tags);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400159 kfree(mvi);
160}
161
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800162#ifdef CONFIG_SCSI_MVSAS_TASKLET
Andy Yan20b09c22009-05-08 17:46:40 -0400163static void mvs_tasklet(unsigned long opaque)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400164{
Andy Yan20b09c22009-05-08 17:46:40 -0400165 u32 stat;
166 u16 core_nr, i = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400167
Andy Yan20b09c22009-05-08 17:46:40 -0400168 struct mvs_info *mvi;
169 struct sas_ha_struct *sha = (struct sas_ha_struct *)opaque;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400170
Andy Yan20b09c22009-05-08 17:46:40 -0400171 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
172 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
173
174 if (unlikely(!mvi))
175 BUG_ON(1);
176
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800177 stat = MVS_CHIP_DISP->isr_status(mvi, mvi->pdev->irq);
178 if (!stat)
179 goto out;
180
Andy Yan20b09c22009-05-08 17:46:40 -0400181 for (i = 0; i < core_nr; i++) {
182 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800183 MVS_CHIP_DISP->isr(mvi, mvi->pdev->irq, stat);
Andy Yan20b09c22009-05-08 17:46:40 -0400184 }
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800185out:
186 MVS_CHIP_DISP->interrupt_enable(mvi);
Andy Yan20b09c22009-05-08 17:46:40 -0400187
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400188}
189#endif
190
191static irqreturn_t mvs_interrupt(int irq, void *opaque)
192{
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800193 u32 core_nr;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400194 u32 stat;
Andy Yan20b09c22009-05-08 17:46:40 -0400195 struct mvs_info *mvi;
196 struct sas_ha_struct *sha = opaque;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800197#ifndef CONFIG_SCSI_MVSAS_TASKLET
198 u32 i;
199#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400200
Andy Yan20b09c22009-05-08 17:46:40 -0400201 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
202 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400203
Andy Yan20b09c22009-05-08 17:46:40 -0400204 if (unlikely(!mvi))
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400205 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800206#ifdef CONFIG_SCSI_MVSAS_TASKLET
207 MVS_CHIP_DISP->interrupt_disable(mvi);
208#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400209
Andy Yan20b09c22009-05-08 17:46:40 -0400210 stat = MVS_CHIP_DISP->isr_status(mvi, irq);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800211 if (!stat) {
212 #ifdef CONFIG_SCSI_MVSAS_TASKLET
213 MVS_CHIP_DISP->interrupt_enable(mvi);
214 #endif
Andy Yan20b09c22009-05-08 17:46:40 -0400215 return IRQ_NONE;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800216 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400217
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800218#ifdef CONFIG_SCSI_MVSAS_TASKLET
219 tasklet_schedule(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400220#else
Andy Yan20b09c22009-05-08 17:46:40 -0400221 for (i = 0; i < core_nr; i++) {
222 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
223 MVS_CHIP_DISP->isr(mvi, irq, stat);
224 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400225#endif
226 return IRQ_HANDLED;
227}
228
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800229static int mvs_alloc(struct mvs_info *mvi, struct Scsi_Host *shost)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400230{
Srinivas9dc9fd92010-02-15 00:00:00 -0600231 int i = 0, slot_nr;
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700232 char pool_name[32];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400233
Andy Yan20b09c22009-05-08 17:46:40 -0400234 if (mvi->flags & MVF_FLAG_SOC)
235 slot_nr = MVS_SOC_SLOTS;
236 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800237 slot_nr = MVS_CHIP_SLOT_SZ;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400238
239 spin_lock_init(&mvi->lock);
Andy Yan20b09c22009-05-08 17:46:40 -0400240 for (i = 0; i < mvi->chip->n_phy; i++) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400241 mvs_phy_init(mvi, i);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400242 mvi->port[i].wide_port_phymap = 0;
243 mvi->port[i].port_attached = 0;
244 INIT_LIST_HEAD(&mvi->port[i].list);
245 }
Andy Yan20b09c22009-05-08 17:46:40 -0400246 for (i = 0; i < MVS_MAX_DEVICES; i++) {
247 mvi->devices[i].taskfileset = MVS_ID_NOT_MAPPED;
James Bottomleyaa9f8322013-05-07 14:44:06 -0700248 mvi->devices[i].dev_type = SAS_PHY_UNUSED;
Andy Yan20b09c22009-05-08 17:46:40 -0400249 mvi->devices[i].device_id = i;
250 mvi->devices[i].dev_status = MVS_DEV_NORMAL;
Srinivas9dc9fd92010-02-15 00:00:00 -0600251 init_timer(&mvi->devices[i].timer);
Andy Yan20b09c22009-05-08 17:46:40 -0400252 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400253
254 /*
255 * alloc and init our DMA areas
256 */
Andy Yan20b09c22009-05-08 17:46:40 -0400257 mvi->tx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400258 sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ,
259 &mvi->tx_dma, GFP_KERNEL);
260 if (!mvi->tx)
261 goto err_out;
262 memset(mvi->tx, 0, sizeof(*mvi->tx) * MVS_CHIP_SLOT_SZ);
Andy Yan20b09c22009-05-08 17:46:40 -0400263 mvi->rx_fis = dma_alloc_coherent(mvi->dev, MVS_RX_FISL_SZ,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400264 &mvi->rx_fis_dma, GFP_KERNEL);
265 if (!mvi->rx_fis)
266 goto err_out;
267 memset(mvi->rx_fis, 0, MVS_RX_FISL_SZ);
268
Andy Yan20b09c22009-05-08 17:46:40 -0400269 mvi->rx = dma_alloc_coherent(mvi->dev,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400270 sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1),
271 &mvi->rx_dma, GFP_KERNEL);
272 if (!mvi->rx)
273 goto err_out;
274 memset(mvi->rx, 0, sizeof(*mvi->rx) * (MVS_RX_RING_SZ + 1));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400275 mvi->rx[0] = cpu_to_le32(0xfff);
276 mvi->rx_cons = 0xfff;
277
Andy Yan20b09c22009-05-08 17:46:40 -0400278 mvi->slot = dma_alloc_coherent(mvi->dev,
279 sizeof(*mvi->slot) * slot_nr,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400280 &mvi->slot_dma, GFP_KERNEL);
281 if (!mvi->slot)
282 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400283 memset(mvi->slot, 0, sizeof(*mvi->slot) * slot_nr);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400284
Andy Yan20b09c22009-05-08 17:46:40 -0400285 mvi->bulk_buffer = dma_alloc_coherent(mvi->dev,
286 TRASH_BUCKET_SIZE,
287 &mvi->bulk_buffer_dma, GFP_KERNEL);
288 if (!mvi->bulk_buffer)
289 goto err_out;
Xiangliang Yu8882f082011-05-24 22:33:11 +0800290
291 mvi->bulk_buffer1 = dma_alloc_coherent(mvi->dev,
292 TRASH_BUCKET_SIZE,
293 &mvi->bulk_buffer_dma1, GFP_KERNEL);
294 if (!mvi->bulk_buffer1)
295 goto err_out;
296
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700297 sprintf(pool_name, "%s%d", "mvs_dma_pool", mvi->id);
298 mvi->dma_pool = pci_pool_create(pool_name, mvi->pdev, MVS_SLOT_BUF_SZ, 16, 0);
299 if (!mvi->dma_pool) {
300 printk(KERN_DEBUG "failed to create dma pool %s.\n", pool_name);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400301 goto err_out;
Andy Yan20b09c22009-05-08 17:46:40 -0400302 }
Xiangliang Yu0b15fb12011-04-26 06:36:51 -0700303 mvi->tags_num = slot_nr;
304
Andy Yan20b09c22009-05-08 17:46:40 -0400305 /* Initialize tags */
306 mvs_tag_init(mvi);
307 return 0;
308err_out:
309 return 1;
310}
311
312
313int mvs_ioremap(struct mvs_info *mvi, int bar, int bar_ex)
314{
315 unsigned long res_start, res_len, res_flag, res_flag_ex = 0;
316 struct pci_dev *pdev = mvi->pdev;
317 if (bar_ex != -1) {
318 /*
319 * ioremap main and peripheral registers
320 */
321 res_start = pci_resource_start(pdev, bar_ex);
322 res_len = pci_resource_len(pdev, bar_ex);
323 if (!res_start || !res_len)
324 goto err_out;
325
326 res_flag_ex = pci_resource_flags(pdev, bar_ex);
327 if (res_flag_ex & IORESOURCE_MEM) {
328 if (res_flag_ex & IORESOURCE_CACHEABLE)
329 mvi->regs_ex = ioremap(res_start, res_len);
330 else
331 mvi->regs_ex = ioremap_nocache(res_start,
332 res_len);
333 } else
334 mvi->regs_ex = (void *)res_start;
335 if (!mvi->regs_ex)
336 goto err_out;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400337 }
338
Andy Yan20b09c22009-05-08 17:46:40 -0400339 res_start = pci_resource_start(pdev, bar);
340 res_len = pci_resource_len(pdev, bar);
Johannes Thumshirn0a66ac12015-05-22 11:15:02 +0200341 if (!res_start || !res_len) {
342 iounmap(mvi->regs_ex);
343 mvi->regs_ex = NULL;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400344 goto err_out;
Johannes Thumshirn0a66ac12015-05-22 11:15:02 +0200345 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400346
Andy Yan20b09c22009-05-08 17:46:40 -0400347 res_flag = pci_resource_flags(pdev, bar);
348 if (res_flag & IORESOURCE_CACHEABLE)
349 mvi->regs = ioremap(res_start, res_len);
350 else
351 mvi->regs = ioremap_nocache(res_start, res_len);
352
353 if (!mvi->regs) {
354 if (mvi->regs_ex && (res_flag_ex & IORESOURCE_MEM))
355 iounmap(mvi->regs_ex);
356 mvi->regs_ex = NULL;
357 goto err_out;
358 }
359
360 return 0;
361err_out:
362 return -1;
363}
364
365void mvs_iounmap(void __iomem *regs)
366{
367 iounmap(regs);
368}
369
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800370static struct mvs_info *mvs_pci_alloc(struct pci_dev *pdev,
Andy Yan20b09c22009-05-08 17:46:40 -0400371 const struct pci_device_id *ent,
372 struct Scsi_Host *shost, unsigned int id)
373{
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800374 struct mvs_info *mvi = NULL;
Andy Yan20b09c22009-05-08 17:46:40 -0400375 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
376
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800377 mvi = kzalloc(sizeof(*mvi) +
378 (1L << mvs_chips[ent->driver_data].slot_width) *
379 sizeof(struct mvs_slot_info), GFP_KERNEL);
Andy Yan20b09c22009-05-08 17:46:40 -0400380 if (!mvi)
381 return NULL;
382
383 mvi->pdev = pdev;
384 mvi->dev = &pdev->dev;
385 mvi->chip_id = ent->driver_data;
386 mvi->chip = &mvs_chips[mvi->chip_id];
387 INIT_LIST_HEAD(&mvi->wq_list);
Andy Yan20b09c22009-05-08 17:46:40 -0400388
389 ((struct mvs_prv_info *)sha->lldd_ha)->mvi[id] = mvi;
390 ((struct mvs_prv_info *)sha->lldd_ha)->n_phy = mvi->chip->n_phy;
391
392 mvi->id = id;
393 mvi->sas = sha;
394 mvi->shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400395
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800396 mvi->tags = kzalloc(MVS_CHIP_SLOT_SZ>>3, GFP_KERNEL);
397 if (!mvi->tags)
398 goto err_out;
399
Andy Yan20b09c22009-05-08 17:46:40 -0400400 if (MVS_CHIP_DISP->chip_ioremap(mvi))
401 goto err_out;
402 if (!mvs_alloc(mvi, shost))
403 return mvi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400404err_out:
405 mvs_free(mvi);
406 return NULL;
407}
408
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400409static int pci_go_64(struct pci_dev *pdev)
410{
411 int rc;
412
413 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
414 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
415 if (rc) {
416 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
417 if (rc) {
418 dev_printk(KERN_ERR, &pdev->dev,
419 "64-bit DMA enable failed\n");
420 return rc;
421 }
422 }
423 } else {
424 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
425 if (rc) {
426 dev_printk(KERN_ERR, &pdev->dev,
427 "32-bit DMA enable failed\n");
428 return rc;
429 }
430 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
431 if (rc) {
432 dev_printk(KERN_ERR, &pdev->dev,
433 "32-bit consistent DMA enable failed\n");
434 return rc;
435 }
436 }
437
438 return rc;
439}
440
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800441static int mvs_prep_sas_ha_init(struct Scsi_Host *shost,
Andy Yan20b09c22009-05-08 17:46:40 -0400442 const struct mvs_chip_info *chip_info)
443{
444 int phy_nr, port_nr; unsigned short core_nr;
445 struct asd_sas_phy **arr_phy;
446 struct asd_sas_port **arr_port;
447 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
448
449 core_nr = chip_info->n_host;
450 phy_nr = core_nr * chip_info->n_phy;
451 port_nr = phy_nr;
452
453 memset(sha, 0x00, sizeof(struct sas_ha_struct));
454 arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
455 arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
456 if (!arr_phy || !arr_port)
457 goto exit_free;
458
459 sha->sas_phy = arr_phy;
460 sha->sas_port = arr_port;
Srinivas9dc9fd92010-02-15 00:00:00 -0600461 sha->core.shost = shost;
Andy Yan20b09c22009-05-08 17:46:40 -0400462
463 sha->lldd_ha = kzalloc(sizeof(struct mvs_prv_info), GFP_KERNEL);
464 if (!sha->lldd_ha)
465 goto exit_free;
466
467 ((struct mvs_prv_info *)sha->lldd_ha)->n_host = core_nr;
468
469 shost->transportt = mvs_stt;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800470 shost->max_id = MVS_MAX_DEVICES;
Andy Yan20b09c22009-05-08 17:46:40 -0400471 shost->max_lun = ~0;
472 shost->max_channel = 1;
473 shost->max_cmd_len = 16;
474
475 return 0;
476exit_free:
477 kfree(arr_phy);
478 kfree(arr_port);
479 return -1;
480
481}
482
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800483static void mvs_post_sas_ha_init(struct Scsi_Host *shost,
Andy Yan20b09c22009-05-08 17:46:40 -0400484 const struct mvs_chip_info *chip_info)
485{
486 int can_queue, i = 0, j = 0;
487 struct mvs_info *mvi = NULL;
488 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
489 unsigned short nr_core = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
490
491 for (j = 0; j < nr_core; j++) {
492 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[j];
493 for (i = 0; i < chip_info->n_phy; i++) {
494 sha->sas_phy[j * chip_info->n_phy + i] =
495 &mvi->phy[i].sas_phy;
496 sha->sas_port[j * chip_info->n_phy + i] =
497 &mvi->port[i].sas_port;
498 }
499 }
500
501 sha->sas_ha_name = DRV_NAME;
502 sha->dev = mvi->dev;
503 sha->lldd_module = THIS_MODULE;
504 sha->sas_addr = &mvi->sas_addr[0];
505
506 sha->num_phys = nr_core * chip_info->n_phy;
507
Andy Yan20b09c22009-05-08 17:46:40 -0400508 if (mvi->flags & MVF_FLAG_SOC)
509 can_queue = MVS_SOC_CAN_QUEUE;
510 else
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800511 can_queue = MVS_CHIP_SLOT_SZ;
Andy Yan20b09c22009-05-08 17:46:40 -0400512
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800513 shost->sg_tablesize = min_t(u16, SG_ALL, MVS_MAX_SG);
Andy Yan20b09c22009-05-08 17:46:40 -0400514 shost->can_queue = can_queue;
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800515 mvi->shost->cmd_per_lun = MVS_QUEUE_SIZE;
Andy Yan20b09c22009-05-08 17:46:40 -0400516 sha->core.shost = mvi->shost;
517}
518
519static void mvs_init_sas_add(struct mvs_info *mvi)
520{
521 u8 i;
522 for (i = 0; i < mvi->chip->n_phy; i++) {
523 mvi->phy[i].dev_sas_addr = 0x5005043011ab0000ULL;
524 mvi->phy[i].dev_sas_addr =
525 cpu_to_be64((u64)(*(u64 *)&mvi->phy[i].dev_sas_addr));
526 }
527
528 memcpy(mvi->sas_addr, &mvi->phy[0].dev_sas_addr, SAS_ADDR_SIZE);
529}
530
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800531static int mvs_pci_init(struct pci_dev *pdev, const struct pci_device_id *ent)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400532{
Andy Yan20b09c22009-05-08 17:46:40 -0400533 unsigned int rc, nhost = 0;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400534 struct mvs_info *mvi;
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800535 struct mvs_prv_info *mpi;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400536 irq_handler_t irq_handler = mvs_interrupt;
Andy Yan20b09c22009-05-08 17:46:40 -0400537 struct Scsi_Host *shost = NULL;
538 const struct mvs_chip_info *chip;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400539
Andy Yan20b09c22009-05-08 17:46:40 -0400540 dev_printk(KERN_INFO, &pdev->dev,
541 "mvsas: driver version %s\n", DRV_VERSION);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400542 rc = pci_enable_device(pdev);
543 if (rc)
Andy Yan20b09c22009-05-08 17:46:40 -0400544 goto err_out_enable;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400545
546 pci_set_master(pdev);
547
548 rc = pci_request_regions(pdev, DRV_NAME);
549 if (rc)
550 goto err_out_disable;
551
552 rc = pci_go_64(pdev);
553 if (rc)
554 goto err_out_regions;
555
Andy Yan20b09c22009-05-08 17:46:40 -0400556 shost = scsi_host_alloc(&mvs_sht, sizeof(void *));
557 if (!shost) {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400558 rc = -ENOMEM;
559 goto err_out_regions;
560 }
561
Andy Yan20b09c22009-05-08 17:46:40 -0400562 chip = &mvs_chips[ent->driver_data];
563 SHOST_TO_SAS_HA(shost) =
564 kcalloc(1, sizeof(struct sas_ha_struct), GFP_KERNEL);
565 if (!SHOST_TO_SAS_HA(shost)) {
566 kfree(shost);
567 rc = -ENOMEM;
568 goto err_out_regions;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400569 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400570
Andy Yan20b09c22009-05-08 17:46:40 -0400571 rc = mvs_prep_sas_ha_init(shost, chip);
572 if (rc) {
573 kfree(shost);
574 rc = -ENOMEM;
575 goto err_out_regions;
576 }
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400577
Andy Yan20b09c22009-05-08 17:46:40 -0400578 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400579
Andy Yan20b09c22009-05-08 17:46:40 -0400580 do {
581 mvi = mvs_pci_alloc(pdev, ent, shost, nhost);
582 if (!mvi) {
583 rc = -ENOMEM;
584 goto err_out_regions;
585 }
586
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800587 memset(&mvi->hba_info_param, 0xFF,
588 sizeof(struct hba_info_page));
589
Andy Yan20b09c22009-05-08 17:46:40 -0400590 mvs_init_sas_add(mvi);
591
592 mvi->instance = nhost;
593 rc = MVS_CHIP_DISP->chip_init(mvi);
594 if (rc) {
595 mvs_free(mvi);
596 goto err_out_regions;
597 }
598 nhost++;
599 } while (nhost < chip->n_host);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800600 mpi = (struct mvs_prv_info *)(SHOST_TO_SAS_HA(shost)->lldd_ha);
601#ifdef CONFIG_SCSI_MVSAS_TASKLET
602 tasklet_init(&(mpi->mv_tasklet), mvs_tasklet,
Srinivas9dc9fd92010-02-15 00:00:00 -0600603 (unsigned long)SHOST_TO_SAS_HA(shost));
604#endif
Andy Yan20b09c22009-05-08 17:46:40 -0400605
606 mvs_post_sas_ha_init(shost, chip);
607
608 rc = scsi_add_host(shost, &pdev->dev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400609 if (rc)
610 goto err_out_shost;
611
Andy Yan20b09c22009-05-08 17:46:40 -0400612 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
613 if (rc)
614 goto err_out_shost;
615 rc = request_irq(pdev->irq, irq_handler, IRQF_SHARED,
616 DRV_NAME, SHOST_TO_SAS_HA(shost));
617 if (rc)
618 goto err_not_sas;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400619
Andy Yan20b09c22009-05-08 17:46:40 -0400620 MVS_CHIP_DISP->interrupt_enable(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400621
622 scsi_scan_host(mvi->shost);
623
624 return 0;
625
Andy Yan20b09c22009-05-08 17:46:40 -0400626err_not_sas:
627 sas_unregister_ha(SHOST_TO_SAS_HA(shost));
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400628err_out_shost:
629 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400630err_out_regions:
631 pci_release_regions(pdev);
632err_out_disable:
633 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400634err_out_enable:
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400635 return rc;
636}
637
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800638static void mvs_pci_remove(struct pci_dev *pdev)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400639{
Andy Yan20b09c22009-05-08 17:46:40 -0400640 unsigned short core_nr, i = 0;
641 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
642 struct mvs_info *mvi = NULL;
643
644 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
645 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
646
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800647#ifdef CONFIG_SCSI_MVSAS_TASKLET
648 tasklet_kill(&((struct mvs_prv_info *)sha->lldd_ha)->mv_tasklet);
Andy Yan20b09c22009-05-08 17:46:40 -0400649#endif
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400650
Andy Yan20b09c22009-05-08 17:46:40 -0400651 sas_unregister_ha(sha);
652 sas_remove_host(mvi->shost);
653 scsi_remove_host(mvi->shost);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400654
Andy Yan20b09c22009-05-08 17:46:40 -0400655 MVS_CHIP_DISP->interrupt_disable(mvi);
Xiangliang Yub89e8f52011-05-24 22:35:09 +0800656 free_irq(mvi->pdev->irq, sha);
Andy Yan20b09c22009-05-08 17:46:40 -0400657 for (i = 0; i < core_nr; i++) {
658 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400659 mvs_free(mvi);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400660 }
Andy Yan20b09c22009-05-08 17:46:40 -0400661 kfree(sha->sas_phy);
662 kfree(sha->sas_port);
663 kfree(sha);
664 pci_release_regions(pdev);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400665 pci_disable_device(pdev);
Andy Yan20b09c22009-05-08 17:46:40 -0400666 return;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400667}
668
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800669static struct pci_device_id mvs_pci_table[] = {
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400670 { PCI_VDEVICE(MARVELL, 0x6320), chip_6320 },
671 { PCI_VDEVICE(MARVELL, 0x6340), chip_6440 },
672 {
673 .vendor = PCI_VENDOR_ID_MARVELL,
674 .device = 0x6440,
675 .subvendor = PCI_ANY_ID,
676 .subdevice = 0x6480,
677 .class = 0,
678 .class_mask = 0,
Andy Yan20b09c22009-05-08 17:46:40 -0400679 .driver_data = chip_6485,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400680 },
681 { PCI_VDEVICE(MARVELL, 0x6440), chip_6440 },
Andy Yan20b09c22009-05-08 17:46:40 -0400682 { PCI_VDEVICE(MARVELL, 0x6485), chip_6485 },
683 { PCI_VDEVICE(MARVELL, 0x9480), chip_9480 },
684 { PCI_VDEVICE(MARVELL, 0x9180), chip_9180 },
Nick Chengf31491d2009-09-08 19:03:07 +0800685 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1300), chip_1300 },
686 { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1320), chip_1320 },
Srinivas7ec4ad02009-11-24 20:07:39 +0530687 { PCI_VDEVICE(ADAPTEC2, 0x0450), chip_6440 },
HighPoint Linux Team463b8972011-02-23 16:28:44 +0800688 { PCI_VDEVICE(TTI, 0x2710), chip_9480 },
689 { PCI_VDEVICE(TTI, 0x2720), chip_9480 },
690 { PCI_VDEVICE(TTI, 0x2721), chip_9480 },
691 { PCI_VDEVICE(TTI, 0x2722), chip_9480 },
692 { PCI_VDEVICE(TTI, 0x2740), chip_9480 },
693 { PCI_VDEVICE(TTI, 0x2744), chip_9480 },
694 { PCI_VDEVICE(TTI, 0x2760), chip_9480 },
Xiangliang Yu82140282011-04-26 06:34:01 -0700695 {
Myron Stowe412e7042013-04-08 11:35:44 -0600696 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yuf7e45b62011-09-29 00:33:24 -0700697 .device = 0x9480,
698 .subvendor = PCI_ANY_ID,
699 .subdevice = 0x9480,
700 .class = 0,
701 .class_mask = 0,
702 .driver_data = chip_9480,
703 },
704 {
Myron Stowe412e7042013-04-08 11:35:44 -0600705 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
Xiangliang Yu82140282011-04-26 06:34:01 -0700706 .device = 0x9445,
707 .subvendor = PCI_ANY_ID,
708 .subdevice = 0x9480,
709 .class = 0,
710 .class_mask = 0,
711 .driver_data = chip_9445,
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 = 0x9485,
716 .subvendor = PCI_ANY_ID,
717 .subdevice = 0x9480,
718 .class = 0,
719 .class_mask = 0,
720 .driver_data = chip_9485,
721 },
Ben Hutchingse90b25f2014-02-19 01:06:42 +0000722 {
723 .vendor = PCI_VENDOR_ID_MARVELL_EXT,
724 .device = 0x9485,
725 .subvendor = PCI_ANY_ID,
726 .subdevice = 0x9485,
727 .class = 0,
728 .class_mask = 0,
729 .driver_data = chip_9485,
730 },
Robin H. Johnson99a700b2011-10-24 22:30:08 +0000731 { PCI_VDEVICE(OCZ, 0x1021), chip_9485}, /* OCZ RevoDrive3 */
732 { PCI_VDEVICE(OCZ, 0x1022), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
733 { PCI_VDEVICE(OCZ, 0x1040), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
734 { PCI_VDEVICE(OCZ, 0x1041), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
735 { PCI_VDEVICE(OCZ, 0x1042), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
736 { PCI_VDEVICE(OCZ, 0x1043), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
737 { PCI_VDEVICE(OCZ, 0x1044), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
738 { PCI_VDEVICE(OCZ, 0x1080), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
739 { PCI_VDEVICE(OCZ, 0x1083), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
740 { PCI_VDEVICE(OCZ, 0x1084), chip_9485}, /* OCZ RevoDrive3/zDriveR4 (exact model unknown) */
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400741
742 { } /* terminate list */
743};
744
745static struct pci_driver mvs_pci_driver = {
746 .name = DRV_NAME,
747 .id_table = mvs_pci_table,
748 .probe = mvs_pci_init,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800749 .remove = mvs_pci_remove,
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400750};
751
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800752static ssize_t
753mvs_show_driver_version(struct device *cdev,
754 struct device_attribute *attr, char *buffer)
755{
756 return snprintf(buffer, PAGE_SIZE, "%s\n", DRV_VERSION);
757}
758
759static DEVICE_ATTR(driver_version,
760 S_IRUGO,
761 mvs_show_driver_version,
762 NULL);
763
764static ssize_t
765mvs_store_interrupt_coalescing(struct device *cdev,
766 struct device_attribute *attr,
767 const char *buffer, size_t size)
768{
769 int val = 0;
770 struct mvs_info *mvi = NULL;
771 struct Scsi_Host *shost = class_to_shost(cdev);
772 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
773 u8 i, core_nr;
774 if (buffer == NULL)
775 return size;
776
777 if (sscanf(buffer, "%d", &val) != 1)
778 return -EINVAL;
779
780 if (val >= 0x10000) {
781 mv_dprintk("interrupt coalescing timer %d us is"
782 "too long\n", val);
783 return strlen(buffer);
784 }
785
786 interrupt_coalescing = val;
787
788 core_nr = ((struct mvs_prv_info *)sha->lldd_ha)->n_host;
789 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[0];
790
791 if (unlikely(!mvi))
792 return -EINVAL;
793
794 for (i = 0; i < core_nr; i++) {
795 mvi = ((struct mvs_prv_info *)sha->lldd_ha)->mvi[i];
796 if (MVS_CHIP_DISP->tune_interrupt)
797 MVS_CHIP_DISP->tune_interrupt(mvi,
798 interrupt_coalescing);
799 }
800 mv_dprintk("set interrupt coalescing time to %d us\n",
801 interrupt_coalescing);
802 return strlen(buffer);
803}
804
805static ssize_t mvs_show_interrupt_coalescing(struct device *cdev,
806 struct device_attribute *attr, char *buffer)
807{
808 return snprintf(buffer, PAGE_SIZE, "%d\n", interrupt_coalescing);
809}
810
811static DEVICE_ATTR(interrupt_coalescing,
812 S_IRUGO|S_IWUSR,
813 mvs_show_interrupt_coalescing,
814 mvs_store_interrupt_coalescing);
815
Andy Yan20b09c22009-05-08 17:46:40 -0400816/* task handler */
817struct task_struct *mvs_th;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400818static int __init mvs_init(void)
819{
820 int rc;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400821 mvs_stt = sas_domain_attach_transport(&mvs_transport_ops);
822 if (!mvs_stt)
823 return -ENOMEM;
824
825 rc = pci_register_driver(&mvs_pci_driver);
826 if (rc)
827 goto err_out;
828
829 return 0;
830
831err_out:
832 sas_release_transport(mvs_stt);
833 return rc;
834}
835
836static void __exit mvs_exit(void)
837{
838 pci_unregister_driver(&mvs_pci_driver);
839 sas_release_transport(mvs_stt);
840}
841
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800842struct device_attribute *mvst_host_attrs[] = {
843 &dev_attr_driver_version,
844 &dev_attr_interrupt_coalescing,
845 NULL,
846};
847
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400848module_init(mvs_init);
849module_exit(mvs_exit);
850
851MODULE_AUTHOR("Jeff Garzik <jgarzik@pobox.com>");
852MODULE_DESCRIPTION("Marvell 88SE6440 SAS/SATA controller driver");
853MODULE_VERSION(DRV_VERSION);
854MODULE_LICENSE("GPL");
Andy Yan20b09c22009-05-08 17:46:40 -0400855#ifdef CONFIG_PCI
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400856MODULE_DEVICE_TABLE(pci, mvs_pci_table);
Andy Yan20b09c22009-05-08 17:46:40 -0400857#endif