blob: e522e5908bc0b8ee26563a558be6c2b4954b44cb [file] [log] [blame]
jack wangdbf9bfe2009-10-14 16:19:21 +08001/*
Sakthivel Ke5742102013-04-17 16:26:36 +05302 * PMC-Sierra PM8001/8081/8088/8089 SAS/SATA based host adapters driver
jack wangdbf9bfe2009-10-14 16:19:21 +08003 *
4 * Copyright (c) 2008-2009 USI Co., Ltd.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
14 * substantially similar to the "NO WARRANTY" disclaimer below
15 * ("Disclaimer") and any redistribution must be conditioned upon
16 * including a substantially similar Disclaimer requirement for further
17 * binary redistribution.
18 * 3. Neither the names of the above-listed copyright holders nor the names
19 * of any contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
21 *
22 * Alternatively, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") version 2 as published by the Free
24 * Software Foundation.
25 *
26 * NO WARRANTY
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
35 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
36 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGES.
38 *
39 */
40
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
jack wangdbf9bfe2009-10-14 16:19:21 +080042#include "pm8001_sas.h"
43#include "pm8001_chips.h"
44
45static struct scsi_transport_template *pm8001_stt;
46
Sakthivel Ke5742102013-04-17 16:26:36 +053047/**
48 * chip info structure to identify chip key functionality as
49 * encryption available/not, no of ports, hw specific function ref
50 */
jack wangdbf9bfe2009-10-14 16:19:21 +080051static const struct pm8001_chip_info pm8001_chips[] = {
Sakthivel Ke5742102013-04-17 16:26:36 +053052 [chip_8001] = {0, 8, &pm8001_8001_dispatch,},
Sakthivel Kf5860992013-04-17 16:37:02 +053053 [chip_8008] = {0, 8, &pm8001_80xx_dispatch,},
54 [chip_8009] = {1, 8, &pm8001_80xx_dispatch,},
55 [chip_8018] = {0, 16, &pm8001_80xx_dispatch,},
56 [chip_8019] = {1, 16, &pm8001_80xx_dispatch,},
jack wangdbf9bfe2009-10-14 16:19:21 +080057};
58static int pm8001_id;
59
60LIST_HEAD(hba_list);
61
Tejun Heo429305e2011-01-24 14:57:29 +010062struct workqueue_struct *pm8001_wq;
63
jack wangdbf9bfe2009-10-14 16:19:21 +080064/**
65 * The main structure which LLDD must register for scsi core.
66 */
67static struct scsi_host_template pm8001_sht = {
68 .module = THIS_MODULE,
69 .name = DRV_NAME,
70 .queuecommand = sas_queuecommand,
71 .target_alloc = sas_target_alloc,
Dan Williams11e16362011-09-20 15:11:03 -070072 .slave_configure = sas_slave_configure,
jack wangdbf9bfe2009-10-14 16:19:21 +080073 .scan_finished = pm8001_scan_finished,
74 .scan_start = pm8001_scan_start,
75 .change_queue_depth = sas_change_queue_depth,
76 .change_queue_type = sas_change_queue_type,
77 .bios_param = sas_bios_param,
78 .can_queue = 1,
79 .cmd_per_lun = 1,
80 .this_id = -1,
81 .sg_tablesize = SG_ALL,
82 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
83 .use_clustering = ENABLE_CLUSTERING,
84 .eh_device_reset_handler = sas_eh_device_reset_handler,
85 .eh_bus_reset_handler = sas_eh_bus_reset_handler,
jack wangdbf9bfe2009-10-14 16:19:21 +080086 .target_destroy = sas_target_destroy,
87 .ioctl = sas_ioctl,
88 .shost_attrs = pm8001_host_attrs,
89};
90
91/**
92 * Sas layer call this function to execute specific task.
93 */
94static struct sas_domain_function_template pm8001_transport_ops = {
95 .lldd_dev_found = pm8001_dev_found,
96 .lldd_dev_gone = pm8001_dev_gone,
97
98 .lldd_execute_task = pm8001_queue_command,
99 .lldd_control_phy = pm8001_phy_control,
100
101 .lldd_abort_task = pm8001_abort_task,
102 .lldd_abort_task_set = pm8001_abort_task_set,
103 .lldd_clear_aca = pm8001_clear_aca,
104 .lldd_clear_task_set = pm8001_clear_task_set,
105 .lldd_I_T_nexus_reset = pm8001_I_T_nexus_reset,
106 .lldd_lu_reset = pm8001_lu_reset,
107 .lldd_query_task = pm8001_query_task,
108};
109
110/**
111 *pm8001_phy_init - initiate our adapter phys
112 *@pm8001_ha: our hba structure.
113 *@phy_id: phy id.
114 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800115static void pm8001_phy_init(struct pm8001_hba_info *pm8001_ha, int phy_id)
jack wangdbf9bfe2009-10-14 16:19:21 +0800116{
117 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
118 struct asd_sas_phy *sas_phy = &phy->sas_phy;
119 phy->phy_state = 0;
120 phy->pm8001_ha = pm8001_ha;
121 sas_phy->enabled = (phy_id < pm8001_ha->chip->n_phy) ? 1 : 0;
122 sas_phy->class = SAS;
123 sas_phy->iproto = SAS_PROTOCOL_ALL;
124 sas_phy->tproto = 0;
125 sas_phy->type = PHY_TYPE_PHYSICAL;
126 sas_phy->role = PHY_ROLE_INITIATOR;
127 sas_phy->oob_mode = OOB_NOT_CONNECTED;
128 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
129 sas_phy->id = phy_id;
130 sas_phy->sas_addr = &pm8001_ha->sas_addr[0];
131 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
132 sas_phy->ha = (struct sas_ha_struct *)pm8001_ha->shost->hostdata;
133 sas_phy->lldd_phy = phy;
134}
135
136/**
137 *pm8001_free - free hba
138 *@pm8001_ha: our hba structure.
139 *
140 */
141static void pm8001_free(struct pm8001_hba_info *pm8001_ha)
142{
143 int i;
jack wangdbf9bfe2009-10-14 16:19:21 +0800144
145 if (!pm8001_ha)
146 return;
147
148 for (i = 0; i < USI_MAX_MEMCNT; i++) {
149 if (pm8001_ha->memoryMap.region[i].virt_ptr != NULL) {
150 pci_free_consistent(pm8001_ha->pdev,
Sakthivel Kbfb48092013-02-04 12:10:02 +0530151 (pm8001_ha->memoryMap.region[i].total_len +
152 pm8001_ha->memoryMap.region[i].alignment),
jack wangdbf9bfe2009-10-14 16:19:21 +0800153 pm8001_ha->memoryMap.region[i].virt_ptr,
154 pm8001_ha->memoryMap.region[i].phys_addr);
155 }
156 }
157 PM8001_CHIP_DISP->chip_iounmap(pm8001_ha);
158 if (pm8001_ha->shost)
159 scsi_host_put(pm8001_ha->shost);
Tejun Heo429305e2011-01-24 14:57:29 +0100160 flush_workqueue(pm8001_wq);
jack wangdbf9bfe2009-10-14 16:19:21 +0800161 kfree(pm8001_ha->tags);
162 kfree(pm8001_ha);
163}
164
165#ifdef PM8001_USE_TASKLET
Sakthivel K1245ee52013-03-19 17:56:17 +0530166
167/**
168 * tasklet for 64 msi-x interrupt handler
169 * @opaque: the passed general host adapter struct
170 * Note: pm8001_tasklet is common for pm8001 & pm80xx
171 */
jack wangdbf9bfe2009-10-14 16:19:21 +0800172static void pm8001_tasklet(unsigned long opaque)
173{
174 struct pm8001_hba_info *pm8001_ha;
Sakthivel K1245ee52013-03-19 17:56:17 +0530175 u32 vec;
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700176 pm8001_ha = (struct pm8001_hba_info *)opaque;
jack wangdbf9bfe2009-10-14 16:19:21 +0800177 if (unlikely(!pm8001_ha))
178 BUG_ON(1);
Sakthivel K1245ee52013-03-19 17:56:17 +0530179 vec = pm8001_ha->int_vector;
180 PM8001_CHIP_DISP->isr(pm8001_ha, vec);
jack wangdbf9bfe2009-10-14 16:19:21 +0800181}
182#endif
183
Sakthivel K1245ee52013-03-19 17:56:17 +0530184static struct pm8001_hba_info *outq_to_hba(u8 *outq)
185{
186 return container_of((outq - *outq), struct pm8001_hba_info, outq[0]);
187}
jack wangdbf9bfe2009-10-14 16:19:21 +0800188
Sakthivel K1245ee52013-03-19 17:56:17 +0530189/**
190 * pm8001_interrupt_handler_msix - main MSIX interrupt handler.
191 * It obtains the vector number and calls the equivalent bottom
192 * half or services directly.
193 * @opaque: the passed outbound queue/vector. Host structure is
194 * retrieved from the same.
195 */
196static irqreturn_t pm8001_interrupt_handler_msix(int irq, void *opaque)
197{
198 struct pm8001_hba_info *pm8001_ha = outq_to_hba(opaque);
199 u8 outq = *(u8 *)opaque;
200 irqreturn_t ret = IRQ_HANDLED;
201 if (unlikely(!pm8001_ha))
202 return IRQ_NONE;
203 if (!PM8001_CHIP_DISP->is_our_interupt(pm8001_ha))
204 return IRQ_NONE;
205 pm8001_ha->int_vector = outq;
206#ifdef PM8001_USE_TASKLET
207 tasklet_schedule(&pm8001_ha->tasklet);
208#else
209 ret = PM8001_CHIP_DISP->isr(pm8001_ha, outq);
210#endif
211 return ret;
212}
213
214/**
215 * pm8001_interrupt_handler_intx - main INTx interrupt handler.
216 * @dev_id: sas_ha structure. The HBA is retrieved from sas_has structure.
217 */
218
219static irqreturn_t pm8001_interrupt_handler_intx(int irq, void *dev_id)
jack wangdbf9bfe2009-10-14 16:19:21 +0800220{
221 struct pm8001_hba_info *pm8001_ha;
222 irqreturn_t ret = IRQ_HANDLED;
Sakthivel K1245ee52013-03-19 17:56:17 +0530223 struct sas_ha_struct *sha = dev_id;
jack wangdbf9bfe2009-10-14 16:19:21 +0800224 pm8001_ha = sha->lldd_ha;
225 if (unlikely(!pm8001_ha))
226 return IRQ_NONE;
227 if (!PM8001_CHIP_DISP->is_our_interupt(pm8001_ha))
228 return IRQ_NONE;
Sakthivel K1245ee52013-03-19 17:56:17 +0530229
230 pm8001_ha->int_vector = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800231#ifdef PM8001_USE_TASKLET
232 tasklet_schedule(&pm8001_ha->tasklet);
233#else
Sakthivel Kf74cf272013-02-27 20:27:43 +0530234 ret = PM8001_CHIP_DISP->isr(pm8001_ha, 0);
jack wangdbf9bfe2009-10-14 16:19:21 +0800235#endif
236 return ret;
237}
238
239/**
240 * pm8001_alloc - initiate our hba structure and 6 DMAs area.
241 * @pm8001_ha:our hba structure.
242 *
243 */
Sakthivel Ke590adf2013-02-27 20:25:25 +0530244static int pm8001_alloc(struct pm8001_hba_info *pm8001_ha,
245 const struct pci_device_id *ent)
jack wangdbf9bfe2009-10-14 16:19:21 +0800246{
247 int i;
248 spin_lock_init(&pm8001_ha->lock);
Sakthivel Ke590adf2013-02-27 20:25:25 +0530249 PM8001_INIT_DBG(pm8001_ha,
250 pm8001_printk("pm8001_alloc: PHY:%x\n",
251 pm8001_ha->chip->n_phy));
jack wang1cc943a2009-12-07 17:22:42 +0800252 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800253 pm8001_phy_init(pm8001_ha, i);
jack wang1cc943a2009-12-07 17:22:42 +0800254 pm8001_ha->port[i].wide_port_phymap = 0;
255 pm8001_ha->port[i].port_attached = 0;
256 pm8001_ha->port[i].port_state = 0;
257 INIT_LIST_HEAD(&pm8001_ha->port[i].list);
258 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800259
jack_wang97ee2082009-11-05 22:33:51 +0800260 pm8001_ha->tags = kzalloc(PM8001_MAX_CCB, GFP_KERNEL);
261 if (!pm8001_ha->tags)
262 goto err_out;
jack wangdbf9bfe2009-10-14 16:19:21 +0800263 /* MPI Memory region 1 for AAP Event Log for fw */
264 pm8001_ha->memoryMap.region[AAP1].num_elements = 1;
265 pm8001_ha->memoryMap.region[AAP1].element_size = PM8001_EVENT_LOG_SIZE;
266 pm8001_ha->memoryMap.region[AAP1].total_len = PM8001_EVENT_LOG_SIZE;
267 pm8001_ha->memoryMap.region[AAP1].alignment = 32;
268
269 /* MPI Memory region 2 for IOP Event Log for fw */
270 pm8001_ha->memoryMap.region[IOP].num_elements = 1;
271 pm8001_ha->memoryMap.region[IOP].element_size = PM8001_EVENT_LOG_SIZE;
272 pm8001_ha->memoryMap.region[IOP].total_len = PM8001_EVENT_LOG_SIZE;
273 pm8001_ha->memoryMap.region[IOP].alignment = 32;
274
Sakthivel Ke590adf2013-02-27 20:25:25 +0530275 for (i = 0; i < PM8001_MAX_SPCV_INB_NUM; i++) {
276 /* MPI Memory region 3 for consumer Index of inbound queues */
277 pm8001_ha->memoryMap.region[CI+i].num_elements = 1;
278 pm8001_ha->memoryMap.region[CI+i].element_size = 4;
279 pm8001_ha->memoryMap.region[CI+i].total_len = 4;
280 pm8001_ha->memoryMap.region[CI+i].alignment = 4;
jack wangdbf9bfe2009-10-14 16:19:21 +0800281
Sakthivel Ke590adf2013-02-27 20:25:25 +0530282 if ((ent->driver_data) != chip_8001) {
283 /* MPI Memory region 5 inbound queues */
284 pm8001_ha->memoryMap.region[IB+i].num_elements =
285 PM8001_MPI_QUEUE;
286 pm8001_ha->memoryMap.region[IB+i].element_size = 128;
287 pm8001_ha->memoryMap.region[IB+i].total_len =
288 PM8001_MPI_QUEUE * 128;
289 pm8001_ha->memoryMap.region[IB+i].alignment = 128;
290 } else {
291 pm8001_ha->memoryMap.region[IB+i].num_elements =
292 PM8001_MPI_QUEUE;
293 pm8001_ha->memoryMap.region[IB+i].element_size = 64;
294 pm8001_ha->memoryMap.region[IB+i].total_len =
295 PM8001_MPI_QUEUE * 64;
296 pm8001_ha->memoryMap.region[IB+i].alignment = 64;
297 }
298 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800299
Sakthivel Ke590adf2013-02-27 20:25:25 +0530300 for (i = 0; i < PM8001_MAX_SPCV_OUTB_NUM; i++) {
301 /* MPI Memory region 4 for producer Index of outbound queues */
302 pm8001_ha->memoryMap.region[PI+i].num_elements = 1;
303 pm8001_ha->memoryMap.region[PI+i].element_size = 4;
304 pm8001_ha->memoryMap.region[PI+i].total_len = 4;
305 pm8001_ha->memoryMap.region[PI+i].alignment = 4;
jack wangdbf9bfe2009-10-14 16:19:21 +0800306
Sakthivel Ke590adf2013-02-27 20:25:25 +0530307 if (ent->driver_data != chip_8001) {
308 /* MPI Memory region 6 Outbound queues */
309 pm8001_ha->memoryMap.region[OB+i].num_elements =
310 PM8001_MPI_QUEUE;
311 pm8001_ha->memoryMap.region[OB+i].element_size = 128;
312 pm8001_ha->memoryMap.region[OB+i].total_len =
313 PM8001_MPI_QUEUE * 128;
314 pm8001_ha->memoryMap.region[OB+i].alignment = 128;
315 } else {
316 /* MPI Memory region 6 Outbound queues */
317 pm8001_ha->memoryMap.region[OB+i].num_elements =
318 PM8001_MPI_QUEUE;
319 pm8001_ha->memoryMap.region[OB+i].element_size = 64;
320 pm8001_ha->memoryMap.region[OB+i].total_len =
321 PM8001_MPI_QUEUE * 64;
322 pm8001_ha->memoryMap.region[OB+i].alignment = 64;
323 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800324
Sakthivel Ke590adf2013-02-27 20:25:25 +0530325 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800326 /* Memory region write DMA*/
327 pm8001_ha->memoryMap.region[NVMD].num_elements = 1;
328 pm8001_ha->memoryMap.region[NVMD].element_size = 4096;
329 pm8001_ha->memoryMap.region[NVMD].total_len = 4096;
330 /* Memory region for devices*/
331 pm8001_ha->memoryMap.region[DEV_MEM].num_elements = 1;
332 pm8001_ha->memoryMap.region[DEV_MEM].element_size = PM8001_MAX_DEVICES *
333 sizeof(struct pm8001_device);
334 pm8001_ha->memoryMap.region[DEV_MEM].total_len = PM8001_MAX_DEVICES *
335 sizeof(struct pm8001_device);
336
337 /* Memory region for ccb_info*/
338 pm8001_ha->memoryMap.region[CCB_MEM].num_elements = 1;
339 pm8001_ha->memoryMap.region[CCB_MEM].element_size = PM8001_MAX_CCB *
340 sizeof(struct pm8001_ccb_info);
341 pm8001_ha->memoryMap.region[CCB_MEM].total_len = PM8001_MAX_CCB *
342 sizeof(struct pm8001_ccb_info);
343
344 for (i = 0; i < USI_MAX_MEMCNT; i++) {
345 if (pm8001_mem_alloc(pm8001_ha->pdev,
346 &pm8001_ha->memoryMap.region[i].virt_ptr,
347 &pm8001_ha->memoryMap.region[i].phys_addr,
348 &pm8001_ha->memoryMap.region[i].phys_addr_hi,
349 &pm8001_ha->memoryMap.region[i].phys_addr_lo,
350 pm8001_ha->memoryMap.region[i].total_len,
351 pm8001_ha->memoryMap.region[i].alignment) != 0) {
352 PM8001_FAIL_DBG(pm8001_ha,
353 pm8001_printk("Mem%d alloc failed\n",
354 i));
355 goto err_out;
356 }
357 }
358
359 pm8001_ha->devices = pm8001_ha->memoryMap.region[DEV_MEM].virt_ptr;
360 for (i = 0; i < PM8001_MAX_DEVICES; i++) {
361 pm8001_ha->devices[i].dev_type = NO_DEVICE;
362 pm8001_ha->devices[i].id = i;
363 pm8001_ha->devices[i].device_id = PM8001_MAX_DEVICES;
364 pm8001_ha->devices[i].running_req = 0;
365 }
366 pm8001_ha->ccb_info = pm8001_ha->memoryMap.region[CCB_MEM].virt_ptr;
367 for (i = 0; i < PM8001_MAX_CCB; i++) {
368 pm8001_ha->ccb_info[i].ccb_dma_handle =
369 pm8001_ha->memoryMap.region[CCB_MEM].phys_addr +
370 i * sizeof(struct pm8001_ccb_info);
jack_wang97ee2082009-11-05 22:33:51 +0800371 pm8001_ha->ccb_info[i].task = NULL;
372 pm8001_ha->ccb_info[i].ccb_tag = 0xffffffff;
373 pm8001_ha->ccb_info[i].device = NULL;
jack wangdbf9bfe2009-10-14 16:19:21 +0800374 ++pm8001_ha->tags_num;
375 }
376 pm8001_ha->flags = PM8001F_INIT_TIME;
377 /* Initialize tags */
378 pm8001_tag_init(pm8001_ha);
379 return 0;
380err_out:
381 return 1;
382}
383
384/**
385 * pm8001_ioremap - remap the pci high physical address to kernal virtual
386 * address so that we can access them.
387 * @pm8001_ha:our hba structure.
388 */
389static int pm8001_ioremap(struct pm8001_hba_info *pm8001_ha)
390{
391 u32 bar;
392 u32 logicalBar = 0;
393 struct pci_dev *pdev;
394
395 pdev = pm8001_ha->pdev;
396 /* map pci mem (PMC pci base 0-3)*/
397 for (bar = 0; bar < 6; bar++) {
398 /*
399 ** logical BARs for SPC:
400 ** bar 0 and 1 - logical BAR0
401 ** bar 2 and 3 - logical BAR1
402 ** bar4 - logical BAR2
403 ** bar5 - logical BAR3
404 ** Skip the appropriate assignments:
405 */
406 if ((bar == 1) || (bar == 3))
407 continue;
408 if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
409 pm8001_ha->io_mem[logicalBar].membase =
410 pci_resource_start(pdev, bar);
411 pm8001_ha->io_mem[logicalBar].membase &=
412 (u32)PCI_BASE_ADDRESS_MEM_MASK;
413 pm8001_ha->io_mem[logicalBar].memsize =
414 pci_resource_len(pdev, bar);
415 pm8001_ha->io_mem[logicalBar].memvirtaddr =
416 ioremap(pm8001_ha->io_mem[logicalBar].membase,
417 pm8001_ha->io_mem[logicalBar].memsize);
418 PM8001_INIT_DBG(pm8001_ha,
Sakthivel Ke590adf2013-02-27 20:25:25 +0530419 pm8001_printk("PCI: bar %d, logicalBar %d ",
420 bar, logicalBar));
421 PM8001_INIT_DBG(pm8001_ha, pm8001_printk(
422 "base addr %llx virt_addr=%llx len=%d\n",
423 (u64)pm8001_ha->io_mem[logicalBar].membase,
424 (u64)pm8001_ha->io_mem[logicalBar].memvirtaddr,
jack wangdbf9bfe2009-10-14 16:19:21 +0800425 pm8001_ha->io_mem[logicalBar].memsize));
426 } else {
427 pm8001_ha->io_mem[logicalBar].membase = 0;
428 pm8001_ha->io_mem[logicalBar].memsize = 0;
429 pm8001_ha->io_mem[logicalBar].memvirtaddr = 0;
430 }
431 logicalBar++;
432 }
433 return 0;
434}
435
436/**
437 * pm8001_pci_alloc - initialize our ha card structure
438 * @pdev: pci device.
439 * @ent: ent
440 * @shost: scsi host struct which has been initialized before.
441 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800442static struct pm8001_hba_info *pm8001_pci_alloc(struct pci_dev *pdev,
Sakthivel Ke590adf2013-02-27 20:25:25 +0530443 const struct pci_device_id *ent,
444 struct Scsi_Host *shost)
445
jack wangdbf9bfe2009-10-14 16:19:21 +0800446{
447 struct pm8001_hba_info *pm8001_ha;
448 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
449
450
451 pm8001_ha = sha->lldd_ha;
452 if (!pm8001_ha)
453 return NULL;
454
455 pm8001_ha->pdev = pdev;
456 pm8001_ha->dev = &pdev->dev;
Sakthivel Ke590adf2013-02-27 20:25:25 +0530457 pm8001_ha->chip_id = ent->driver_data;
jack wangdbf9bfe2009-10-14 16:19:21 +0800458 pm8001_ha->chip = &pm8001_chips[pm8001_ha->chip_id];
459 pm8001_ha->irq = pdev->irq;
460 pm8001_ha->sas = sha;
461 pm8001_ha->shost = shost;
462 pm8001_ha->id = pm8001_id++;
jack wangdbf9bfe2009-10-14 16:19:21 +0800463 pm8001_ha->logging_level = 0x01;
464 sprintf(pm8001_ha->name, "%s%d", DRV_NAME, pm8001_ha->id);
Sakthivel Kf74cf272013-02-27 20:27:43 +0530465 /* IOMB size is 128 for 8088/89 controllers */
466 if (pm8001_ha->chip_id != chip_8001)
467 pm8001_ha->iomb_size = IOMB_SIZE_SPCV;
468 else
469 pm8001_ha->iomb_size = IOMB_SIZE_SPC;
470
jack wangdbf9bfe2009-10-14 16:19:21 +0800471#ifdef PM8001_USE_TASKLET
Sakthivel K1245ee52013-03-19 17:56:17 +0530472 /**
473 * default tasklet for non msi-x interrupt handler/first msi-x
474 * interrupt handler
475 **/
jack wangdbf9bfe2009-10-14 16:19:21 +0800476 tasklet_init(&pm8001_ha->tasklet, pm8001_tasklet,
Sakthivel K1245ee52013-03-19 17:56:17 +0530477 (unsigned long)pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800478#endif
479 pm8001_ioremap(pm8001_ha);
Sakthivel Ke590adf2013-02-27 20:25:25 +0530480 if (!pm8001_alloc(pm8001_ha, ent))
jack wangdbf9bfe2009-10-14 16:19:21 +0800481 return pm8001_ha;
482 pm8001_free(pm8001_ha);
483 return NULL;
484}
485
486/**
487 * pci_go_44 - pm8001 specified, its DMA is 44 bit rather than 64 bit
488 * @pdev: pci device.
489 */
490static int pci_go_44(struct pci_dev *pdev)
491{
492 int rc;
493
494 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(44))) {
495 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(44));
496 if (rc) {
497 rc = pci_set_consistent_dma_mask(pdev,
498 DMA_BIT_MASK(32));
499 if (rc) {
500 dev_printk(KERN_ERR, &pdev->dev,
501 "44-bit DMA enable failed\n");
502 return rc;
503 }
504 }
505 } else {
506 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
507 if (rc) {
508 dev_printk(KERN_ERR, &pdev->dev,
509 "32-bit DMA enable failed\n");
510 return rc;
511 }
512 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
513 if (rc) {
514 dev_printk(KERN_ERR, &pdev->dev,
515 "32-bit consistent DMA enable failed\n");
516 return rc;
517 }
518 }
519 return rc;
520}
521
522/**
523 * pm8001_prep_sas_ha_init - allocate memory in general hba struct && init them.
524 * @shost: scsi host which has been allocated outside.
525 * @chip_info: our ha struct.
526 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800527static int pm8001_prep_sas_ha_init(struct Scsi_Host *shost,
528 const struct pm8001_chip_info *chip_info)
jack wangdbf9bfe2009-10-14 16:19:21 +0800529{
530 int phy_nr, port_nr;
531 struct asd_sas_phy **arr_phy;
532 struct asd_sas_port **arr_port;
533 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
534
535 phy_nr = chip_info->n_phy;
536 port_nr = phy_nr;
537 memset(sha, 0x00, sizeof(*sha));
538 arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
539 if (!arr_phy)
540 goto exit;
541 arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
542 if (!arr_port)
543 goto exit_free2;
544
545 sha->sas_phy = arr_phy;
546 sha->sas_port = arr_port;
547 sha->lldd_ha = kzalloc(sizeof(struct pm8001_hba_info), GFP_KERNEL);
548 if (!sha->lldd_ha)
549 goto exit_free1;
550
551 shost->transportt = pm8001_stt;
552 shost->max_id = PM8001_MAX_DEVICES;
553 shost->max_lun = 8;
554 shost->max_channel = 0;
555 shost->unique_id = pm8001_id;
556 shost->max_cmd_len = 16;
557 shost->can_queue = PM8001_CAN_QUEUE;
558 shost->cmd_per_lun = 32;
559 return 0;
560exit_free1:
561 kfree(arr_port);
562exit_free2:
563 kfree(arr_phy);
564exit:
565 return -1;
566}
567
568/**
569 * pm8001_post_sas_ha_init - initialize general hba struct defined in libsas
570 * @shost: scsi host which has been allocated outside
571 * @chip_info: our ha struct.
572 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800573static void pm8001_post_sas_ha_init(struct Scsi_Host *shost,
574 const struct pm8001_chip_info *chip_info)
jack wangdbf9bfe2009-10-14 16:19:21 +0800575{
576 int i = 0;
577 struct pm8001_hba_info *pm8001_ha;
578 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
579
580 pm8001_ha = sha->lldd_ha;
581 for (i = 0; i < chip_info->n_phy; i++) {
582 sha->sas_phy[i] = &pm8001_ha->phy[i].sas_phy;
583 sha->sas_port[i] = &pm8001_ha->port[i].sas_port;
584 }
585 sha->sas_ha_name = DRV_NAME;
586 sha->dev = pm8001_ha->dev;
587
588 sha->lldd_module = THIS_MODULE;
589 sha->sas_addr = &pm8001_ha->sas_addr[0];
590 sha->num_phys = chip_info->n_phy;
591 sha->lldd_max_execute_num = 1;
592 sha->lldd_queue_size = PM8001_CAN_QUEUE;
593 sha->core.shost = shost;
594}
595
596/**
597 * pm8001_init_sas_add - initialize sas address
598 * @chip_info: our ha struct.
599 *
600 * Currently we just set the fixed SAS address to our HBA,for manufacture,
601 * it should read from the EEPROM
602 */
603static void pm8001_init_sas_add(struct pm8001_hba_info *pm8001_ha)
604{
605 u8 i;
606#ifdef PM8001_READ_VPD
607 DECLARE_COMPLETION_ONSTACK(completion);
jack wang7c8356d2009-12-07 17:23:08 +0800608 struct pm8001_ioctl_payload payload;
jack wangdbf9bfe2009-10-14 16:19:21 +0800609 pm8001_ha->nvmd_completion = &completion;
jack wang7c8356d2009-12-07 17:23:08 +0800610 payload.minor_function = 0;
611 payload.length = 128;
612 payload.func_specific = kzalloc(128, GFP_KERNEL);
613 PM8001_CHIP_DISP->get_nvmd_req(pm8001_ha, &payload);
jack wangdbf9bfe2009-10-14 16:19:21 +0800614 wait_for_completion(&completion);
615 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
616 memcpy(&pm8001_ha->phy[i].dev_sas_addr, pm8001_ha->sas_addr,
617 SAS_ADDR_SIZE);
618 PM8001_INIT_DBG(pm8001_ha,
jack wang7c8356d2009-12-07 17:23:08 +0800619 pm8001_printk("phy %d sas_addr = %016llx \n", i,
620 pm8001_ha->phy[i].dev_sas_addr));
jack wangdbf9bfe2009-10-14 16:19:21 +0800621 }
622#else
623 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
jack wang7c8356d2009-12-07 17:23:08 +0800624 pm8001_ha->phy[i].dev_sas_addr = 0x50010c600047f9d0ULL;
jack wangdbf9bfe2009-10-14 16:19:21 +0800625 pm8001_ha->phy[i].dev_sas_addr =
626 cpu_to_be64((u64)
627 (*(u64 *)&pm8001_ha->phy[i].dev_sas_addr));
628 }
629 memcpy(pm8001_ha->sas_addr, &pm8001_ha->phy[0].dev_sas_addr,
630 SAS_ADDR_SIZE);
631#endif
632}
633
634#ifdef PM8001_USE_MSIX
635/**
636 * pm8001_setup_msix - enable MSI-X interrupt
637 * @chip_info: our ha struct.
638 * @irq_handler: irq_handler
639 */
Sakthivel K1245ee52013-03-19 17:56:17 +0530640static u32 pm8001_setup_msix(struct pm8001_hba_info *pm8001_ha)
jack wangdbf9bfe2009-10-14 16:19:21 +0800641{
642 u32 i = 0, j = 0;
Sakthivel K1245ee52013-03-19 17:56:17 +0530643 u32 number_of_intr;
jack wangdbf9bfe2009-10-14 16:19:21 +0800644 int flag = 0;
645 u32 max_entry;
646 int rc;
Sakthivel K1245ee52013-03-19 17:56:17 +0530647 static char intr_drvname[PM8001_MAX_MSIX_VEC][sizeof(DRV_NAME)+3];
648
649 /* SPCv controllers supports 64 msi-x */
650 if (pm8001_ha->chip_id == chip_8001) {
651 number_of_intr = 1;
652 flag |= IRQF_DISABLED;
653 } else {
654 number_of_intr = PM8001_MAX_MSIX_VEC;
655 flag &= ~IRQF_SHARED;
656 flag |= IRQF_DISABLED;
657 }
658
jack wangdbf9bfe2009-10-14 16:19:21 +0800659 max_entry = sizeof(pm8001_ha->msix_entries) /
660 sizeof(pm8001_ha->msix_entries[0]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800661 for (i = 0; i < max_entry ; i++)
662 pm8001_ha->msix_entries[i].entry = i;
663 rc = pci_enable_msix(pm8001_ha->pdev, pm8001_ha->msix_entries,
664 number_of_intr);
665 pm8001_ha->number_of_intr = number_of_intr;
666 if (!rc) {
Sakthivel K1245ee52013-03-19 17:56:17 +0530667 PM8001_INIT_DBG(pm8001_ha, pm8001_printk(
668 "pci_enable_msix request ret:%d no of intr %d\n",
669 rc, pm8001_ha->number_of_intr));
670
671 for (i = 0; i < number_of_intr; i++)
672 pm8001_ha->outq[i] = i;
673
jack wangdbf9bfe2009-10-14 16:19:21 +0800674 for (i = 0; i < number_of_intr; i++) {
Sakthivel K1245ee52013-03-19 17:56:17 +0530675 snprintf(intr_drvname[i], sizeof(intr_drvname[0]),
676 DRV_NAME"%d", i);
jack wangdbf9bfe2009-10-14 16:19:21 +0800677 if (request_irq(pm8001_ha->msix_entries[i].vector,
Sakthivel K1245ee52013-03-19 17:56:17 +0530678 pm8001_interrupt_handler_msix, flag,
679 intr_drvname[i], &pm8001_ha->outq[i])) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800680 for (j = 0; j < i; j++)
681 free_irq(
682 pm8001_ha->msix_entries[j].vector,
Sakthivel K1245ee52013-03-19 17:56:17 +0530683 &pm8001_ha->outq[j]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800684 pci_disable_msix(pm8001_ha->pdev);
685 break;
686 }
687 }
688 }
689 return rc;
690}
691#endif
692
693/**
694 * pm8001_request_irq - register interrupt
695 * @chip_info: our ha struct.
696 */
697static u32 pm8001_request_irq(struct pm8001_hba_info *pm8001_ha)
698{
699 struct pci_dev *pdev;
jack_wang97ee2082009-11-05 22:33:51 +0800700 int rc;
jack wangdbf9bfe2009-10-14 16:19:21 +0800701
702 pdev = pm8001_ha->pdev;
703
704#ifdef PM8001_USE_MSIX
705 if (pci_find_capability(pdev, PCI_CAP_ID_MSIX))
Sakthivel K1245ee52013-03-19 17:56:17 +0530706 return pm8001_setup_msix(pm8001_ha);
707 else {
708 PM8001_INIT_DBG(pm8001_ha,
709 pm8001_printk("MSIX not supported!!!\n"));
jack wangdbf9bfe2009-10-14 16:19:21 +0800710 goto intx;
Sakthivel K1245ee52013-03-19 17:56:17 +0530711 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800712#endif
713
714intx:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400715 /* initialize the INT-X interrupt */
Sakthivel K1245ee52013-03-19 17:56:17 +0530716 rc = request_irq(pdev->irq, pm8001_interrupt_handler_intx, IRQF_SHARED,
717 DRV_NAME, SHOST_TO_SAS_HA(pm8001_ha->shost));
jack wangdbf9bfe2009-10-14 16:19:21 +0800718 return rc;
719}
720
721/**
722 * pm8001_pci_probe - probe supported device
723 * @pdev: pci device which kernel has been prepared for.
724 * @ent: pci device id
725 *
726 * This function is the main initialization function, when register a new
727 * pci driver it is invoked, all struct an hardware initilization should be done
728 * here, also, register interrupt
729 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800730static int pm8001_pci_probe(struct pci_dev *pdev,
731 const struct pci_device_id *ent)
jack wangdbf9bfe2009-10-14 16:19:21 +0800732{
733 unsigned int rc;
734 u32 pci_reg;
Sakthivel K1245ee52013-03-19 17:56:17 +0530735 u8 i = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800736 struct pm8001_hba_info *pm8001_ha;
737 struct Scsi_Host *shost = NULL;
738 const struct pm8001_chip_info *chip;
739
740 dev_printk(KERN_INFO, &pdev->dev,
741 "pm8001: driver version %s\n", DRV_VERSION);
742 rc = pci_enable_device(pdev);
743 if (rc)
744 goto err_out_enable;
745 pci_set_master(pdev);
746 /*
747 * Enable pci slot busmaster by setting pci command register.
748 * This is required by FW for Cyclone card.
749 */
750
751 pci_read_config_dword(pdev, PCI_COMMAND, &pci_reg);
752 pci_reg |= 0x157;
753 pci_write_config_dword(pdev, PCI_COMMAND, pci_reg);
754 rc = pci_request_regions(pdev, DRV_NAME);
755 if (rc)
756 goto err_out_disable;
757 rc = pci_go_44(pdev);
758 if (rc)
759 goto err_out_regions;
760
761 shost = scsi_host_alloc(&pm8001_sht, sizeof(void *));
762 if (!shost) {
763 rc = -ENOMEM;
764 goto err_out_regions;
765 }
766 chip = &pm8001_chips[ent->driver_data];
767 SHOST_TO_SAS_HA(shost) =
Julia Lawall3dbf6c02009-12-19 08:17:27 +0100768 kzalloc(sizeof(struct sas_ha_struct), GFP_KERNEL);
jack wangdbf9bfe2009-10-14 16:19:21 +0800769 if (!SHOST_TO_SAS_HA(shost)) {
770 rc = -ENOMEM;
771 goto err_out_free_host;
772 }
773
774 rc = pm8001_prep_sas_ha_init(shost, chip);
775 if (rc) {
776 rc = -ENOMEM;
777 goto err_out_free;
778 }
779 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
Sakthivel Ke590adf2013-02-27 20:25:25 +0530780 /* ent->driver variable is used to differentiate between controllers */
781 pm8001_ha = pm8001_pci_alloc(pdev, ent, shost);
jack wangdbf9bfe2009-10-14 16:19:21 +0800782 if (!pm8001_ha) {
783 rc = -ENOMEM;
784 goto err_out_free;
785 }
786 list_add_tail(&pm8001_ha->list, &hba_list);
Sakthivel Kf5860992013-04-17 16:37:02 +0530787 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800788 rc = PM8001_CHIP_DISP->chip_init(pm8001_ha);
789 if (rc)
790 goto err_out_ha_free;
791
792 rc = scsi_add_host(shost, &pdev->dev);
793 if (rc)
794 goto err_out_ha_free;
795 rc = pm8001_request_irq(pm8001_ha);
796 if (rc)
797 goto err_out_shost;
798
Sakthivel Kf74cf272013-02-27 20:27:43 +0530799 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, 0);
Sakthivel K1245ee52013-03-19 17:56:17 +0530800 if (pm8001_ha->chip_id != chip_8001) {
801 for (i = 1; i < pm8001_ha->number_of_intr; i++)
802 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i);
803 }
804
jack wangdbf9bfe2009-10-14 16:19:21 +0800805 pm8001_init_sas_add(pm8001_ha);
806 pm8001_post_sas_ha_init(shost, chip);
807 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
808 if (rc)
809 goto err_out_shost;
810 scsi_scan_host(pm8001_ha->shost);
811 return 0;
812
813err_out_shost:
814 scsi_remove_host(pm8001_ha->shost);
815err_out_ha_free:
816 pm8001_free(pm8001_ha);
817err_out_free:
818 kfree(SHOST_TO_SAS_HA(shost));
819err_out_free_host:
820 kfree(shost);
821err_out_regions:
822 pci_release_regions(pdev);
823err_out_disable:
824 pci_disable_device(pdev);
825err_out_enable:
826 return rc;
827}
828
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800829static void pm8001_pci_remove(struct pci_dev *pdev)
jack wangdbf9bfe2009-10-14 16:19:21 +0800830{
831 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
832 struct pm8001_hba_info *pm8001_ha;
833 int i;
834 pm8001_ha = sha->lldd_ha;
835 pci_set_drvdata(pdev, NULL);
836 sas_unregister_ha(sha);
837 sas_remove_host(pm8001_ha->shost);
838 list_del(&pm8001_ha->list);
839 scsi_remove_host(pm8001_ha->shost);
Sakthivel K1245ee52013-03-19 17:56:17 +0530840 PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF);
Sakthivel Kf5860992013-04-17 16:37:02 +0530841 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800842
843#ifdef PM8001_USE_MSIX
844 for (i = 0; i < pm8001_ha->number_of_intr; i++)
845 synchronize_irq(pm8001_ha->msix_entries[i].vector);
846 for (i = 0; i < pm8001_ha->number_of_intr; i++)
Sakthivel K1245ee52013-03-19 17:56:17 +0530847 free_irq(pm8001_ha->msix_entries[i].vector,
848 &pm8001_ha->outq[i]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800849 pci_disable_msix(pdev);
850#else
851 free_irq(pm8001_ha->irq, sha);
852#endif
853#ifdef PM8001_USE_TASKLET
854 tasklet_kill(&pm8001_ha->tasklet);
855#endif
856 pm8001_free(pm8001_ha);
857 kfree(sha->sas_phy);
858 kfree(sha->sas_port);
859 kfree(sha);
860 pci_release_regions(pdev);
861 pci_disable_device(pdev);
862}
863
864/**
865 * pm8001_pci_suspend - power management suspend main entry point
866 * @pdev: PCI device struct
867 * @state: PM state change to (usually PCI_D3)
868 *
869 * Returns 0 success, anything else error.
870 */
871static int pm8001_pci_suspend(struct pci_dev *pdev, pm_message_t state)
872{
873 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
874 struct pm8001_hba_info *pm8001_ha;
875 int i , pos;
876 u32 device_state;
877 pm8001_ha = sha->lldd_ha;
Tejun Heo429305e2011-01-24 14:57:29 +0100878 flush_workqueue(pm8001_wq);
jack wangdbf9bfe2009-10-14 16:19:21 +0800879 scsi_block_requests(pm8001_ha->shost);
880 pos = pci_find_capability(pdev, PCI_CAP_ID_PM);
881 if (pos == 0) {
882 printk(KERN_ERR " PCI PM not supported\n");
883 return -ENODEV;
884 }
Sakthivel K1245ee52013-03-19 17:56:17 +0530885 PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF);
Sakthivel Kf5860992013-04-17 16:37:02 +0530886 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800887#ifdef PM8001_USE_MSIX
888 for (i = 0; i < pm8001_ha->number_of_intr; i++)
889 synchronize_irq(pm8001_ha->msix_entries[i].vector);
890 for (i = 0; i < pm8001_ha->number_of_intr; i++)
Sakthivel K1245ee52013-03-19 17:56:17 +0530891 free_irq(pm8001_ha->msix_entries[i].vector,
892 &pm8001_ha->outq[i]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800893 pci_disable_msix(pdev);
894#else
895 free_irq(pm8001_ha->irq, sha);
896#endif
897#ifdef PM8001_USE_TASKLET
898 tasklet_kill(&pm8001_ha->tasklet);
899#endif
900 device_state = pci_choose_state(pdev, state);
901 pm8001_printk("pdev=0x%p, slot=%s, entering "
902 "operating state [D%d]\n", pdev,
903 pm8001_ha->name, device_state);
904 pci_save_state(pdev);
905 pci_disable_device(pdev);
906 pci_set_power_state(pdev, device_state);
907 return 0;
908}
909
910/**
911 * pm8001_pci_resume - power management resume main entry point
912 * @pdev: PCI device struct
913 *
914 * Returns 0 success, anything else error.
915 */
916static int pm8001_pci_resume(struct pci_dev *pdev)
917{
918 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
919 struct pm8001_hba_info *pm8001_ha;
920 int rc;
Sakthivel K1245ee52013-03-19 17:56:17 +0530921 u8 i = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800922 u32 device_state;
923 pm8001_ha = sha->lldd_ha;
924 device_state = pdev->current_state;
925
926 pm8001_printk("pdev=0x%p, slot=%s, resuming from previous "
927 "operating state [D%d]\n", pdev, pm8001_ha->name, device_state);
928
929 pci_set_power_state(pdev, PCI_D0);
930 pci_enable_wake(pdev, PCI_D0, 0);
931 pci_restore_state(pdev);
932 rc = pci_enable_device(pdev);
933 if (rc) {
934 pm8001_printk("slot=%s Enable device failed during resume\n",
935 pm8001_ha->name);
936 goto err_out_enable;
937 }
938
939 pci_set_master(pdev);
940 rc = pci_go_44(pdev);
941 if (rc)
942 goto err_out_disable;
943
Sakthivel Kf5860992013-04-17 16:37:02 +0530944 /* chip soft rst only for spc */
945 if (pm8001_ha->chip_id == chip_8001) {
946 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
947 PM8001_INIT_DBG(pm8001_ha,
948 pm8001_printk("chip soft reset successful\n"));
949 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800950 rc = PM8001_CHIP_DISP->chip_init(pm8001_ha);
951 if (rc)
952 goto err_out_disable;
Sakthivel K1245ee52013-03-19 17:56:17 +0530953
954 /* disable all the interrupt bits */
955 PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF);
956
jack wangdbf9bfe2009-10-14 16:19:21 +0800957 rc = pm8001_request_irq(pm8001_ha);
958 if (rc)
959 goto err_out_disable;
Sakthivel K1245ee52013-03-19 17:56:17 +0530960#ifdef PM8001_USE_TASKLET
961 /* default tasklet for non msi-x interrupt handler/first msi-x
962 * interrupt handler */
jack wangdbf9bfe2009-10-14 16:19:21 +0800963 tasklet_init(&pm8001_ha->tasklet, pm8001_tasklet,
Sakthivel K1245ee52013-03-19 17:56:17 +0530964 (unsigned long)pm8001_ha);
965#endif
Sakthivel Kf74cf272013-02-27 20:27:43 +0530966 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, 0);
Sakthivel K1245ee52013-03-19 17:56:17 +0530967 if (pm8001_ha->chip_id != chip_8001) {
968 for (i = 1; i < pm8001_ha->number_of_intr; i++)
969 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i);
970 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800971 scsi_unblock_requests(pm8001_ha->shost);
972 return 0;
973
974err_out_disable:
975 scsi_remove_host(pm8001_ha->shost);
976 pci_disable_device(pdev);
977err_out_enable:
978 return rc;
979}
980
Sakthivel Ke5742102013-04-17 16:26:36 +0530981/* update of pci device, vendor id and driver data with
982 * unique value for each of the controller
983 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800984static struct pci_device_id pm8001_pci_table[] = {
Sakthivel Ke5742102013-04-17 16:26:36 +0530985 { PCI_VDEVICE(PMC_Sierra, 0x8001), chip_8001 },
jack wangdbf9bfe2009-10-14 16:19:21 +0800986 {
987 PCI_DEVICE(0x117c, 0x0042),
988 .driver_data = chip_8001
989 },
Sakthivel Ke5742102013-04-17 16:26:36 +0530990 /* Support for SPC/SPCv/SPCve controllers */
991 { PCI_VDEVICE(ADAPTEC2, 0x8001), chip_8001 },
992 { PCI_VDEVICE(PMC_Sierra, 0x8008), chip_8008 },
993 { PCI_VDEVICE(ADAPTEC2, 0x8008), chip_8008 },
994 { PCI_VDEVICE(PMC_Sierra, 0x8018), chip_8018 },
995 { PCI_VDEVICE(ADAPTEC2, 0x8018), chip_8018 },
996 { PCI_VDEVICE(PMC_Sierra, 0x8009), chip_8009 },
997 { PCI_VDEVICE(ADAPTEC2, 0x8009), chip_8009 },
998 { PCI_VDEVICE(PMC_Sierra, 0x8019), chip_8019 },
999 { PCI_VDEVICE(ADAPTEC2, 0x8019), chip_8019 },
1000 { PCI_VENDOR_ID_ADAPTEC2, 0x8081,
1001 PCI_VENDOR_ID_ADAPTEC2, 0x0400, 0, 0, chip_8001 },
1002 { PCI_VENDOR_ID_ADAPTEC2, 0x8081,
1003 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8001 },
1004 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1005 PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8008 },
1006 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1007 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8008 },
1008 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1009 PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8009 },
1010 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1011 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8009 },
1012 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1013 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8018 },
1014 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1015 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8018 },
1016 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1017 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8019 },
1018 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1019 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8019 },
jack wangdbf9bfe2009-10-14 16:19:21 +08001020 {} /* terminate list */
1021};
1022
1023static struct pci_driver pm8001_pci_driver = {
1024 .name = DRV_NAME,
1025 .id_table = pm8001_pci_table,
1026 .probe = pm8001_pci_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001027 .remove = pm8001_pci_remove,
jack wangdbf9bfe2009-10-14 16:19:21 +08001028 .suspend = pm8001_pci_suspend,
1029 .resume = pm8001_pci_resume,
1030};
1031
1032/**
1033 * pm8001_init - initialize scsi transport template
1034 */
1035static int __init pm8001_init(void)
1036{
Tejun Heo429305e2011-01-24 14:57:29 +01001037 int rc = -ENOMEM;
1038
1039 pm8001_wq = alloc_workqueue("pm8001", 0, 0);
1040 if (!pm8001_wq)
1041 goto err;
1042
jack wangdbf9bfe2009-10-14 16:19:21 +08001043 pm8001_id = 0;
1044 pm8001_stt = sas_domain_attach_transport(&pm8001_transport_ops);
1045 if (!pm8001_stt)
Tejun Heo429305e2011-01-24 14:57:29 +01001046 goto err_wq;
jack wangdbf9bfe2009-10-14 16:19:21 +08001047 rc = pci_register_driver(&pm8001_pci_driver);
1048 if (rc)
Tejun Heo429305e2011-01-24 14:57:29 +01001049 goto err_tp;
jack wangdbf9bfe2009-10-14 16:19:21 +08001050 return 0;
Tejun Heo429305e2011-01-24 14:57:29 +01001051
1052err_tp:
jack wangdbf9bfe2009-10-14 16:19:21 +08001053 sas_release_transport(pm8001_stt);
Tejun Heo429305e2011-01-24 14:57:29 +01001054err_wq:
1055 destroy_workqueue(pm8001_wq);
1056err:
jack wangdbf9bfe2009-10-14 16:19:21 +08001057 return rc;
1058}
1059
1060static void __exit pm8001_exit(void)
1061{
1062 pci_unregister_driver(&pm8001_pci_driver);
1063 sas_release_transport(pm8001_stt);
Tejun Heo429305e2011-01-24 14:57:29 +01001064 destroy_workqueue(pm8001_wq);
jack wangdbf9bfe2009-10-14 16:19:21 +08001065}
1066
1067module_init(pm8001_init);
1068module_exit(pm8001_exit);
1069
1070MODULE_AUTHOR("Jack Wang <jack_wang@usish.com>");
Sakthivel Ke5742102013-04-17 16:26:36 +05301071MODULE_DESCRIPTION(
1072 "PMC-Sierra PM8001/8081/8088/8089 SAS/SATA controller driver");
jack wangdbf9bfe2009-10-14 16:19:21 +08001073MODULE_VERSION(DRV_VERSION);
1074MODULE_LICENSE("GPL");
1075MODULE_DEVICE_TABLE(pci, pm8001_pci_table);
1076