blob: 93e2d9e9d2b3cdb37a3e02632f36f525a9c8dc67 [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,},
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +053057 [chip_8074] = {0, 8, &pm8001_80xx_dispatch,},
58 [chip_8076] = {0, 16, &pm8001_80xx_dispatch,},
59 [chip_8077] = {0, 16, &pm8001_80xx_dispatch,},
jack wangdbf9bfe2009-10-14 16:19:21 +080060};
61static int pm8001_id;
62
63LIST_HEAD(hba_list);
64
Tejun Heo429305e2011-01-24 14:57:29 +010065struct workqueue_struct *pm8001_wq;
66
jack wangdbf9bfe2009-10-14 16:19:21 +080067/**
68 * The main structure which LLDD must register for scsi core.
69 */
70static struct scsi_host_template pm8001_sht = {
71 .module = THIS_MODULE,
72 .name = DRV_NAME,
73 .queuecommand = sas_queuecommand,
74 .target_alloc = sas_target_alloc,
Dan Williams11e16362011-09-20 15:11:03 -070075 .slave_configure = sas_slave_configure,
jack wangdbf9bfe2009-10-14 16:19:21 +080076 .scan_finished = pm8001_scan_finished,
77 .scan_start = pm8001_scan_start,
78 .change_queue_depth = sas_change_queue_depth,
79 .change_queue_type = sas_change_queue_type,
80 .bios_param = sas_bios_param,
81 .can_queue = 1,
82 .cmd_per_lun = 1,
83 .this_id = -1,
84 .sg_tablesize = SG_ALL,
85 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
86 .use_clustering = ENABLE_CLUSTERING,
87 .eh_device_reset_handler = sas_eh_device_reset_handler,
88 .eh_bus_reset_handler = sas_eh_bus_reset_handler,
jack wangdbf9bfe2009-10-14 16:19:21 +080089 .target_destroy = sas_target_destroy,
90 .ioctl = sas_ioctl,
91 .shost_attrs = pm8001_host_attrs,
92};
93
94/**
95 * Sas layer call this function to execute specific task.
96 */
97static struct sas_domain_function_template pm8001_transport_ops = {
98 .lldd_dev_found = pm8001_dev_found,
99 .lldd_dev_gone = pm8001_dev_gone,
100
101 .lldd_execute_task = pm8001_queue_command,
102 .lldd_control_phy = pm8001_phy_control,
103
104 .lldd_abort_task = pm8001_abort_task,
105 .lldd_abort_task_set = pm8001_abort_task_set,
106 .lldd_clear_aca = pm8001_clear_aca,
107 .lldd_clear_task_set = pm8001_clear_task_set,
108 .lldd_I_T_nexus_reset = pm8001_I_T_nexus_reset,
109 .lldd_lu_reset = pm8001_lu_reset,
110 .lldd_query_task = pm8001_query_task,
111};
112
113/**
114 *pm8001_phy_init - initiate our adapter phys
115 *@pm8001_ha: our hba structure.
116 *@phy_id: phy id.
117 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800118static void pm8001_phy_init(struct pm8001_hba_info *pm8001_ha, int phy_id)
jack wangdbf9bfe2009-10-14 16:19:21 +0800119{
120 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
121 struct asd_sas_phy *sas_phy = &phy->sas_phy;
122 phy->phy_state = 0;
123 phy->pm8001_ha = pm8001_ha;
124 sas_phy->enabled = (phy_id < pm8001_ha->chip->n_phy) ? 1 : 0;
125 sas_phy->class = SAS;
126 sas_phy->iproto = SAS_PROTOCOL_ALL;
127 sas_phy->tproto = 0;
128 sas_phy->type = PHY_TYPE_PHYSICAL;
129 sas_phy->role = PHY_ROLE_INITIATOR;
130 sas_phy->oob_mode = OOB_NOT_CONNECTED;
131 sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN;
132 sas_phy->id = phy_id;
133 sas_phy->sas_addr = &pm8001_ha->sas_addr[0];
134 sas_phy->frame_rcvd = &phy->frame_rcvd[0];
135 sas_phy->ha = (struct sas_ha_struct *)pm8001_ha->shost->hostdata;
136 sas_phy->lldd_phy = phy;
137}
138
139/**
140 *pm8001_free - free hba
141 *@pm8001_ha: our hba structure.
142 *
143 */
144static void pm8001_free(struct pm8001_hba_info *pm8001_ha)
145{
146 int i;
jack wangdbf9bfe2009-10-14 16:19:21 +0800147
148 if (!pm8001_ha)
149 return;
150
151 for (i = 0; i < USI_MAX_MEMCNT; i++) {
152 if (pm8001_ha->memoryMap.region[i].virt_ptr != NULL) {
153 pci_free_consistent(pm8001_ha->pdev,
Sakthivel Kbfb48092013-02-04 12:10:02 +0530154 (pm8001_ha->memoryMap.region[i].total_len +
155 pm8001_ha->memoryMap.region[i].alignment),
jack wangdbf9bfe2009-10-14 16:19:21 +0800156 pm8001_ha->memoryMap.region[i].virt_ptr,
157 pm8001_ha->memoryMap.region[i].phys_addr);
158 }
159 }
160 PM8001_CHIP_DISP->chip_iounmap(pm8001_ha);
161 if (pm8001_ha->shost)
162 scsi_host_put(pm8001_ha->shost);
Tejun Heo429305e2011-01-24 14:57:29 +0100163 flush_workqueue(pm8001_wq);
jack wangdbf9bfe2009-10-14 16:19:21 +0800164 kfree(pm8001_ha->tags);
165 kfree(pm8001_ha);
166}
167
168#ifdef PM8001_USE_TASKLET
Sakthivel K1245ee52013-03-19 17:56:17 +0530169
170/**
171 * tasklet for 64 msi-x interrupt handler
172 * @opaque: the passed general host adapter struct
173 * Note: pm8001_tasklet is common for pm8001 & pm80xx
174 */
jack wangdbf9bfe2009-10-14 16:19:21 +0800175static void pm8001_tasklet(unsigned long opaque)
176{
177 struct pm8001_hba_info *pm8001_ha;
Sakthivel K1245ee52013-03-19 17:56:17 +0530178 u32 vec;
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700179 pm8001_ha = (struct pm8001_hba_info *)opaque;
jack wangdbf9bfe2009-10-14 16:19:21 +0800180 if (unlikely(!pm8001_ha))
181 BUG_ON(1);
Sakthivel K1245ee52013-03-19 17:56:17 +0530182 vec = pm8001_ha->int_vector;
183 PM8001_CHIP_DISP->isr(pm8001_ha, vec);
jack wangdbf9bfe2009-10-14 16:19:21 +0800184}
185#endif
186
Sakthivel K1245ee52013-03-19 17:56:17 +0530187static struct pm8001_hba_info *outq_to_hba(u8 *outq)
188{
189 return container_of((outq - *outq), struct pm8001_hba_info, outq[0]);
190}
jack wangdbf9bfe2009-10-14 16:19:21 +0800191
Sakthivel K1245ee52013-03-19 17:56:17 +0530192/**
193 * pm8001_interrupt_handler_msix - main MSIX interrupt handler.
194 * It obtains the vector number and calls the equivalent bottom
195 * half or services directly.
196 * @opaque: the passed outbound queue/vector. Host structure is
197 * retrieved from the same.
198 */
199static irqreturn_t pm8001_interrupt_handler_msix(int irq, void *opaque)
200{
201 struct pm8001_hba_info *pm8001_ha = outq_to_hba(opaque);
202 u8 outq = *(u8 *)opaque;
203 irqreturn_t ret = IRQ_HANDLED;
204 if (unlikely(!pm8001_ha))
205 return IRQ_NONE;
206 if (!PM8001_CHIP_DISP->is_our_interupt(pm8001_ha))
207 return IRQ_NONE;
208 pm8001_ha->int_vector = outq;
209#ifdef PM8001_USE_TASKLET
210 tasklet_schedule(&pm8001_ha->tasklet);
211#else
212 ret = PM8001_CHIP_DISP->isr(pm8001_ha, outq);
213#endif
214 return ret;
215}
216
217/**
218 * pm8001_interrupt_handler_intx - main INTx interrupt handler.
219 * @dev_id: sas_ha structure. The HBA is retrieved from sas_has structure.
220 */
221
222static irqreturn_t pm8001_interrupt_handler_intx(int irq, void *dev_id)
jack wangdbf9bfe2009-10-14 16:19:21 +0800223{
224 struct pm8001_hba_info *pm8001_ha;
225 irqreturn_t ret = IRQ_HANDLED;
Sakthivel K1245ee52013-03-19 17:56:17 +0530226 struct sas_ha_struct *sha = dev_id;
jack wangdbf9bfe2009-10-14 16:19:21 +0800227 pm8001_ha = sha->lldd_ha;
228 if (unlikely(!pm8001_ha))
229 return IRQ_NONE;
230 if (!PM8001_CHIP_DISP->is_our_interupt(pm8001_ha))
231 return IRQ_NONE;
Sakthivel K1245ee52013-03-19 17:56:17 +0530232
233 pm8001_ha->int_vector = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800234#ifdef PM8001_USE_TASKLET
235 tasklet_schedule(&pm8001_ha->tasklet);
236#else
Sakthivel Kf74cf272013-02-27 20:27:43 +0530237 ret = PM8001_CHIP_DISP->isr(pm8001_ha, 0);
jack wangdbf9bfe2009-10-14 16:19:21 +0800238#endif
239 return ret;
240}
241
242/**
243 * pm8001_alloc - initiate our hba structure and 6 DMAs area.
244 * @pm8001_ha:our hba structure.
245 *
246 */
Sakthivel Ke590adf2013-02-27 20:25:25 +0530247static int pm8001_alloc(struct pm8001_hba_info *pm8001_ha,
248 const struct pci_device_id *ent)
jack wangdbf9bfe2009-10-14 16:19:21 +0800249{
250 int i;
251 spin_lock_init(&pm8001_ha->lock);
Sakthivel Ke590adf2013-02-27 20:25:25 +0530252 PM8001_INIT_DBG(pm8001_ha,
253 pm8001_printk("pm8001_alloc: PHY:%x\n",
254 pm8001_ha->chip->n_phy));
jack wang1cc943a2009-12-07 17:22:42 +0800255 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800256 pm8001_phy_init(pm8001_ha, i);
jack wang1cc943a2009-12-07 17:22:42 +0800257 pm8001_ha->port[i].wide_port_phymap = 0;
258 pm8001_ha->port[i].port_attached = 0;
259 pm8001_ha->port[i].port_state = 0;
260 INIT_LIST_HEAD(&pm8001_ha->port[i].list);
261 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800262
jack_wang97ee2082009-11-05 22:33:51 +0800263 pm8001_ha->tags = kzalloc(PM8001_MAX_CCB, GFP_KERNEL);
264 if (!pm8001_ha->tags)
265 goto err_out;
jack wangdbf9bfe2009-10-14 16:19:21 +0800266 /* MPI Memory region 1 for AAP Event Log for fw */
267 pm8001_ha->memoryMap.region[AAP1].num_elements = 1;
268 pm8001_ha->memoryMap.region[AAP1].element_size = PM8001_EVENT_LOG_SIZE;
269 pm8001_ha->memoryMap.region[AAP1].total_len = PM8001_EVENT_LOG_SIZE;
270 pm8001_ha->memoryMap.region[AAP1].alignment = 32;
271
272 /* MPI Memory region 2 for IOP Event Log for fw */
273 pm8001_ha->memoryMap.region[IOP].num_elements = 1;
274 pm8001_ha->memoryMap.region[IOP].element_size = PM8001_EVENT_LOG_SIZE;
275 pm8001_ha->memoryMap.region[IOP].total_len = PM8001_EVENT_LOG_SIZE;
276 pm8001_ha->memoryMap.region[IOP].alignment = 32;
277
Sakthivel Ke590adf2013-02-27 20:25:25 +0530278 for (i = 0; i < PM8001_MAX_SPCV_INB_NUM; i++) {
279 /* MPI Memory region 3 for consumer Index of inbound queues */
280 pm8001_ha->memoryMap.region[CI+i].num_elements = 1;
281 pm8001_ha->memoryMap.region[CI+i].element_size = 4;
282 pm8001_ha->memoryMap.region[CI+i].total_len = 4;
283 pm8001_ha->memoryMap.region[CI+i].alignment = 4;
jack wangdbf9bfe2009-10-14 16:19:21 +0800284
Sakthivel Ke590adf2013-02-27 20:25:25 +0530285 if ((ent->driver_data) != chip_8001) {
286 /* MPI Memory region 5 inbound queues */
287 pm8001_ha->memoryMap.region[IB+i].num_elements =
288 PM8001_MPI_QUEUE;
289 pm8001_ha->memoryMap.region[IB+i].element_size = 128;
290 pm8001_ha->memoryMap.region[IB+i].total_len =
291 PM8001_MPI_QUEUE * 128;
292 pm8001_ha->memoryMap.region[IB+i].alignment = 128;
293 } else {
294 pm8001_ha->memoryMap.region[IB+i].num_elements =
295 PM8001_MPI_QUEUE;
296 pm8001_ha->memoryMap.region[IB+i].element_size = 64;
297 pm8001_ha->memoryMap.region[IB+i].total_len =
298 PM8001_MPI_QUEUE * 64;
299 pm8001_ha->memoryMap.region[IB+i].alignment = 64;
300 }
301 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800302
Sakthivel Ke590adf2013-02-27 20:25:25 +0530303 for (i = 0; i < PM8001_MAX_SPCV_OUTB_NUM; i++) {
304 /* MPI Memory region 4 for producer Index of outbound queues */
305 pm8001_ha->memoryMap.region[PI+i].num_elements = 1;
306 pm8001_ha->memoryMap.region[PI+i].element_size = 4;
307 pm8001_ha->memoryMap.region[PI+i].total_len = 4;
308 pm8001_ha->memoryMap.region[PI+i].alignment = 4;
jack wangdbf9bfe2009-10-14 16:19:21 +0800309
Sakthivel Ke590adf2013-02-27 20:25:25 +0530310 if (ent->driver_data != chip_8001) {
311 /* MPI Memory region 6 Outbound queues */
312 pm8001_ha->memoryMap.region[OB+i].num_elements =
313 PM8001_MPI_QUEUE;
314 pm8001_ha->memoryMap.region[OB+i].element_size = 128;
315 pm8001_ha->memoryMap.region[OB+i].total_len =
316 PM8001_MPI_QUEUE * 128;
317 pm8001_ha->memoryMap.region[OB+i].alignment = 128;
318 } else {
319 /* MPI Memory region 6 Outbound queues */
320 pm8001_ha->memoryMap.region[OB+i].num_elements =
321 PM8001_MPI_QUEUE;
322 pm8001_ha->memoryMap.region[OB+i].element_size = 64;
323 pm8001_ha->memoryMap.region[OB+i].total_len =
324 PM8001_MPI_QUEUE * 64;
325 pm8001_ha->memoryMap.region[OB+i].alignment = 64;
326 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800327
Sakthivel Ke590adf2013-02-27 20:25:25 +0530328 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800329 /* Memory region write DMA*/
330 pm8001_ha->memoryMap.region[NVMD].num_elements = 1;
331 pm8001_ha->memoryMap.region[NVMD].element_size = 4096;
332 pm8001_ha->memoryMap.region[NVMD].total_len = 4096;
333 /* Memory region for devices*/
334 pm8001_ha->memoryMap.region[DEV_MEM].num_elements = 1;
335 pm8001_ha->memoryMap.region[DEV_MEM].element_size = PM8001_MAX_DEVICES *
336 sizeof(struct pm8001_device);
337 pm8001_ha->memoryMap.region[DEV_MEM].total_len = PM8001_MAX_DEVICES *
338 sizeof(struct pm8001_device);
339
340 /* Memory region for ccb_info*/
341 pm8001_ha->memoryMap.region[CCB_MEM].num_elements = 1;
342 pm8001_ha->memoryMap.region[CCB_MEM].element_size = PM8001_MAX_CCB *
343 sizeof(struct pm8001_ccb_info);
344 pm8001_ha->memoryMap.region[CCB_MEM].total_len = PM8001_MAX_CCB *
345 sizeof(struct pm8001_ccb_info);
346
Sakthivel K1c75a672013-03-19 18:06:40 +0530347 /* Memory region for fw flash */
348 pm8001_ha->memoryMap.region[FW_FLASH].total_len = 4096;
349
jack wangdbf9bfe2009-10-14 16:19:21 +0800350 for (i = 0; i < USI_MAX_MEMCNT; i++) {
351 if (pm8001_mem_alloc(pm8001_ha->pdev,
352 &pm8001_ha->memoryMap.region[i].virt_ptr,
353 &pm8001_ha->memoryMap.region[i].phys_addr,
354 &pm8001_ha->memoryMap.region[i].phys_addr_hi,
355 &pm8001_ha->memoryMap.region[i].phys_addr_lo,
356 pm8001_ha->memoryMap.region[i].total_len,
357 pm8001_ha->memoryMap.region[i].alignment) != 0) {
358 PM8001_FAIL_DBG(pm8001_ha,
359 pm8001_printk("Mem%d alloc failed\n",
360 i));
361 goto err_out;
362 }
363 }
364
365 pm8001_ha->devices = pm8001_ha->memoryMap.region[DEV_MEM].virt_ptr;
366 for (i = 0; i < PM8001_MAX_DEVICES; i++) {
James Bottomleyaa9f8322013-05-07 14:44:06 -0700367 pm8001_ha->devices[i].dev_type = SAS_PHY_UNUSED;
jack wangdbf9bfe2009-10-14 16:19:21 +0800368 pm8001_ha->devices[i].id = i;
369 pm8001_ha->devices[i].device_id = PM8001_MAX_DEVICES;
370 pm8001_ha->devices[i].running_req = 0;
371 }
372 pm8001_ha->ccb_info = pm8001_ha->memoryMap.region[CCB_MEM].virt_ptr;
373 for (i = 0; i < PM8001_MAX_CCB; i++) {
374 pm8001_ha->ccb_info[i].ccb_dma_handle =
375 pm8001_ha->memoryMap.region[CCB_MEM].phys_addr +
376 i * sizeof(struct pm8001_ccb_info);
jack_wang97ee2082009-11-05 22:33:51 +0800377 pm8001_ha->ccb_info[i].task = NULL;
378 pm8001_ha->ccb_info[i].ccb_tag = 0xffffffff;
379 pm8001_ha->ccb_info[i].device = NULL;
jack wangdbf9bfe2009-10-14 16:19:21 +0800380 ++pm8001_ha->tags_num;
381 }
382 pm8001_ha->flags = PM8001F_INIT_TIME;
383 /* Initialize tags */
384 pm8001_tag_init(pm8001_ha);
385 return 0;
386err_out:
387 return 1;
388}
389
390/**
391 * pm8001_ioremap - remap the pci high physical address to kernal virtual
392 * address so that we can access them.
393 * @pm8001_ha:our hba structure.
394 */
395static int pm8001_ioremap(struct pm8001_hba_info *pm8001_ha)
396{
397 u32 bar;
398 u32 logicalBar = 0;
399 struct pci_dev *pdev;
400
401 pdev = pm8001_ha->pdev;
402 /* map pci mem (PMC pci base 0-3)*/
403 for (bar = 0; bar < 6; bar++) {
404 /*
405 ** logical BARs for SPC:
406 ** bar 0 and 1 - logical BAR0
407 ** bar 2 and 3 - logical BAR1
408 ** bar4 - logical BAR2
409 ** bar5 - logical BAR3
410 ** Skip the appropriate assignments:
411 */
412 if ((bar == 1) || (bar == 3))
413 continue;
414 if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
415 pm8001_ha->io_mem[logicalBar].membase =
416 pci_resource_start(pdev, bar);
417 pm8001_ha->io_mem[logicalBar].membase &=
418 (u32)PCI_BASE_ADDRESS_MEM_MASK;
419 pm8001_ha->io_mem[logicalBar].memsize =
420 pci_resource_len(pdev, bar);
421 pm8001_ha->io_mem[logicalBar].memvirtaddr =
422 ioremap(pm8001_ha->io_mem[logicalBar].membase,
423 pm8001_ha->io_mem[logicalBar].memsize);
424 PM8001_INIT_DBG(pm8001_ha,
Sakthivel Ke590adf2013-02-27 20:25:25 +0530425 pm8001_printk("PCI: bar %d, logicalBar %d ",
426 bar, logicalBar));
427 PM8001_INIT_DBG(pm8001_ha, pm8001_printk(
428 "base addr %llx virt_addr=%llx len=%d\n",
429 (u64)pm8001_ha->io_mem[logicalBar].membase,
Anand Kumar Santhanamda1dccc2013-08-05 14:16:52 +0530430 (u64)(unsigned long)
431 pm8001_ha->io_mem[logicalBar].memvirtaddr,
jack wangdbf9bfe2009-10-14 16:19:21 +0800432 pm8001_ha->io_mem[logicalBar].memsize));
433 } else {
434 pm8001_ha->io_mem[logicalBar].membase = 0;
435 pm8001_ha->io_mem[logicalBar].memsize = 0;
436 pm8001_ha->io_mem[logicalBar].memvirtaddr = 0;
437 }
438 logicalBar++;
439 }
440 return 0;
441}
442
443/**
444 * pm8001_pci_alloc - initialize our ha card structure
445 * @pdev: pci device.
446 * @ent: ent
447 * @shost: scsi host struct which has been initialized before.
448 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800449static struct pm8001_hba_info *pm8001_pci_alloc(struct pci_dev *pdev,
Sakthivel Ke590adf2013-02-27 20:25:25 +0530450 const struct pci_device_id *ent,
451 struct Scsi_Host *shost)
452
jack wangdbf9bfe2009-10-14 16:19:21 +0800453{
454 struct pm8001_hba_info *pm8001_ha;
455 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
456
457
458 pm8001_ha = sha->lldd_ha;
459 if (!pm8001_ha)
460 return NULL;
461
462 pm8001_ha->pdev = pdev;
463 pm8001_ha->dev = &pdev->dev;
Sakthivel Ke590adf2013-02-27 20:25:25 +0530464 pm8001_ha->chip_id = ent->driver_data;
jack wangdbf9bfe2009-10-14 16:19:21 +0800465 pm8001_ha->chip = &pm8001_chips[pm8001_ha->chip_id];
466 pm8001_ha->irq = pdev->irq;
467 pm8001_ha->sas = sha;
468 pm8001_ha->shost = shost;
469 pm8001_ha->id = pm8001_id++;
jack wangdbf9bfe2009-10-14 16:19:21 +0800470 pm8001_ha->logging_level = 0x01;
471 sprintf(pm8001_ha->name, "%s%d", DRV_NAME, pm8001_ha->id);
Sakthivel Kf74cf272013-02-27 20:27:43 +0530472 /* IOMB size is 128 for 8088/89 controllers */
473 if (pm8001_ha->chip_id != chip_8001)
474 pm8001_ha->iomb_size = IOMB_SIZE_SPCV;
475 else
476 pm8001_ha->iomb_size = IOMB_SIZE_SPC;
477
jack wangdbf9bfe2009-10-14 16:19:21 +0800478#ifdef PM8001_USE_TASKLET
Sakthivel K1245ee52013-03-19 17:56:17 +0530479 /**
480 * default tasklet for non msi-x interrupt handler/first msi-x
481 * interrupt handler
482 **/
jack wangdbf9bfe2009-10-14 16:19:21 +0800483 tasklet_init(&pm8001_ha->tasklet, pm8001_tasklet,
Sakthivel K1245ee52013-03-19 17:56:17 +0530484 (unsigned long)pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800485#endif
486 pm8001_ioremap(pm8001_ha);
Sakthivel Ke590adf2013-02-27 20:25:25 +0530487 if (!pm8001_alloc(pm8001_ha, ent))
jack wangdbf9bfe2009-10-14 16:19:21 +0800488 return pm8001_ha;
489 pm8001_free(pm8001_ha);
490 return NULL;
491}
492
493/**
494 * pci_go_44 - pm8001 specified, its DMA is 44 bit rather than 64 bit
495 * @pdev: pci device.
496 */
497static int pci_go_44(struct pci_dev *pdev)
498{
499 int rc;
500
501 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(44))) {
502 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(44));
503 if (rc) {
504 rc = pci_set_consistent_dma_mask(pdev,
505 DMA_BIT_MASK(32));
506 if (rc) {
507 dev_printk(KERN_ERR, &pdev->dev,
508 "44-bit DMA enable failed\n");
509 return rc;
510 }
511 }
512 } else {
513 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
514 if (rc) {
515 dev_printk(KERN_ERR, &pdev->dev,
516 "32-bit DMA enable failed\n");
517 return rc;
518 }
519 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
520 if (rc) {
521 dev_printk(KERN_ERR, &pdev->dev,
522 "32-bit consistent DMA enable failed\n");
523 return rc;
524 }
525 }
526 return rc;
527}
528
529/**
530 * pm8001_prep_sas_ha_init - allocate memory in general hba struct && init them.
531 * @shost: scsi host which has been allocated outside.
532 * @chip_info: our ha struct.
533 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800534static int pm8001_prep_sas_ha_init(struct Scsi_Host *shost,
535 const struct pm8001_chip_info *chip_info)
jack wangdbf9bfe2009-10-14 16:19:21 +0800536{
537 int phy_nr, port_nr;
538 struct asd_sas_phy **arr_phy;
539 struct asd_sas_port **arr_port;
540 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
541
542 phy_nr = chip_info->n_phy;
543 port_nr = phy_nr;
544 memset(sha, 0x00, sizeof(*sha));
545 arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL);
546 if (!arr_phy)
547 goto exit;
548 arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL);
549 if (!arr_port)
550 goto exit_free2;
551
552 sha->sas_phy = arr_phy;
553 sha->sas_port = arr_port;
554 sha->lldd_ha = kzalloc(sizeof(struct pm8001_hba_info), GFP_KERNEL);
555 if (!sha->lldd_ha)
556 goto exit_free1;
557
558 shost->transportt = pm8001_stt;
559 shost->max_id = PM8001_MAX_DEVICES;
560 shost->max_lun = 8;
561 shost->max_channel = 0;
562 shost->unique_id = pm8001_id;
563 shost->max_cmd_len = 16;
564 shost->can_queue = PM8001_CAN_QUEUE;
565 shost->cmd_per_lun = 32;
566 return 0;
567exit_free1:
568 kfree(arr_port);
569exit_free2:
570 kfree(arr_phy);
571exit:
572 return -1;
573}
574
575/**
576 * pm8001_post_sas_ha_init - initialize general hba struct defined in libsas
577 * @shost: scsi host which has been allocated outside
578 * @chip_info: our ha struct.
579 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800580static void pm8001_post_sas_ha_init(struct Scsi_Host *shost,
581 const struct pm8001_chip_info *chip_info)
jack wangdbf9bfe2009-10-14 16:19:21 +0800582{
583 int i = 0;
584 struct pm8001_hba_info *pm8001_ha;
585 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
586
587 pm8001_ha = sha->lldd_ha;
588 for (i = 0; i < chip_info->n_phy; i++) {
589 sha->sas_phy[i] = &pm8001_ha->phy[i].sas_phy;
590 sha->sas_port[i] = &pm8001_ha->port[i].sas_port;
591 }
592 sha->sas_ha_name = DRV_NAME;
593 sha->dev = pm8001_ha->dev;
594
595 sha->lldd_module = THIS_MODULE;
596 sha->sas_addr = &pm8001_ha->sas_addr[0];
597 sha->num_phys = chip_info->n_phy;
598 sha->lldd_max_execute_num = 1;
599 sha->lldd_queue_size = PM8001_CAN_QUEUE;
600 sha->core.shost = shost;
601}
602
603/**
604 * pm8001_init_sas_add - initialize sas address
605 * @chip_info: our ha struct.
606 *
607 * Currently we just set the fixed SAS address to our HBA,for manufacture,
608 * it should read from the EEPROM
609 */
610static void pm8001_init_sas_add(struct pm8001_hba_info *pm8001_ha)
611{
Sakthivel Ka33a0152013-03-19 18:07:35 +0530612 u8 i, j;
jack wangdbf9bfe2009-10-14 16:19:21 +0800613#ifdef PM8001_READ_VPD
Sakthivel Ka33a0152013-03-19 18:07:35 +0530614 /* For new SPC controllers WWN is stored in flash vpd
615 * For SPC/SPCve controllers WWN is stored in EEPROM
616 * For Older SPC WWN is stored in NVMD
617 */
jack wangdbf9bfe2009-10-14 16:19:21 +0800618 DECLARE_COMPLETION_ONSTACK(completion);
jack wang7c8356d2009-12-07 17:23:08 +0800619 struct pm8001_ioctl_payload payload;
Sakthivel Ka33a0152013-03-19 18:07:35 +0530620 u16 deviceid;
621 pci_read_config_word(pm8001_ha->pdev, PCI_DEVICE_ID, &deviceid);
jack wangdbf9bfe2009-10-14 16:19:21 +0800622 pm8001_ha->nvmd_completion = &completion;
Sakthivel Ka33a0152013-03-19 18:07:35 +0530623
624 if (pm8001_ha->chip_id == chip_8001) {
625 if (deviceid == 0x8081) {
626 payload.minor_function = 4;
627 payload.length = 4096;
628 } else {
629 payload.minor_function = 0;
630 payload.length = 128;
631 }
632 } else {
633 payload.minor_function = 1;
634 payload.length = 4096;
635 }
636 payload.offset = 0;
637 payload.func_specific = kzalloc(payload.length, GFP_KERNEL);
jack wang7c8356d2009-12-07 17:23:08 +0800638 PM8001_CHIP_DISP->get_nvmd_req(pm8001_ha, &payload);
jack wangdbf9bfe2009-10-14 16:19:21 +0800639 wait_for_completion(&completion);
Sakthivel Ka33a0152013-03-19 18:07:35 +0530640
641 for (i = 0, j = 0; i <= 7; i++, j++) {
642 if (pm8001_ha->chip_id == chip_8001) {
643 if (deviceid == 0x8081)
644 pm8001_ha->sas_addr[j] =
645 payload.func_specific[0x704 + i];
646 } else
647 pm8001_ha->sas_addr[j] =
648 payload.func_specific[0x804 + i];
649 }
650
jack wangdbf9bfe2009-10-14 16:19:21 +0800651 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
Sakthivel Ka33a0152013-03-19 18:07:35 +0530652 memcpy(&pm8001_ha->phy[i].dev_sas_addr,
653 pm8001_ha->sas_addr, SAS_ADDR_SIZE);
jack wangdbf9bfe2009-10-14 16:19:21 +0800654 PM8001_INIT_DBG(pm8001_ha,
Sakthivel Ka33a0152013-03-19 18:07:35 +0530655 pm8001_printk("phy %d sas_addr = %016llx\n", i,
jack wang7c8356d2009-12-07 17:23:08 +0800656 pm8001_ha->phy[i].dev_sas_addr));
jack wangdbf9bfe2009-10-14 16:19:21 +0800657 }
658#else
659 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
jack wang7c8356d2009-12-07 17:23:08 +0800660 pm8001_ha->phy[i].dev_sas_addr = 0x50010c600047f9d0ULL;
jack wangdbf9bfe2009-10-14 16:19:21 +0800661 pm8001_ha->phy[i].dev_sas_addr =
662 cpu_to_be64((u64)
663 (*(u64 *)&pm8001_ha->phy[i].dev_sas_addr));
664 }
665 memcpy(pm8001_ha->sas_addr, &pm8001_ha->phy[0].dev_sas_addr,
666 SAS_ADDR_SIZE);
667#endif
668}
669
670#ifdef PM8001_USE_MSIX
671/**
672 * pm8001_setup_msix - enable MSI-X interrupt
673 * @chip_info: our ha struct.
674 * @irq_handler: irq_handler
675 */
Sakthivel K1245ee52013-03-19 17:56:17 +0530676static u32 pm8001_setup_msix(struct pm8001_hba_info *pm8001_ha)
jack wangdbf9bfe2009-10-14 16:19:21 +0800677{
678 u32 i = 0, j = 0;
Sakthivel K1245ee52013-03-19 17:56:17 +0530679 u32 number_of_intr;
jack wangdbf9bfe2009-10-14 16:19:21 +0800680 int flag = 0;
681 u32 max_entry;
682 int rc;
Sakthivel K1245ee52013-03-19 17:56:17 +0530683 static char intr_drvname[PM8001_MAX_MSIX_VEC][sizeof(DRV_NAME)+3];
684
685 /* SPCv controllers supports 64 msi-x */
686 if (pm8001_ha->chip_id == chip_8001) {
687 number_of_intr = 1;
688 flag |= IRQF_DISABLED;
689 } else {
690 number_of_intr = PM8001_MAX_MSIX_VEC;
691 flag &= ~IRQF_SHARED;
692 flag |= IRQF_DISABLED;
693 }
694
jack wangdbf9bfe2009-10-14 16:19:21 +0800695 max_entry = sizeof(pm8001_ha->msix_entries) /
696 sizeof(pm8001_ha->msix_entries[0]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800697 for (i = 0; i < max_entry ; i++)
698 pm8001_ha->msix_entries[i].entry = i;
699 rc = pci_enable_msix(pm8001_ha->pdev, pm8001_ha->msix_entries,
700 number_of_intr);
701 pm8001_ha->number_of_intr = number_of_intr;
702 if (!rc) {
Sakthivel K1245ee52013-03-19 17:56:17 +0530703 PM8001_INIT_DBG(pm8001_ha, pm8001_printk(
704 "pci_enable_msix request ret:%d no of intr %d\n",
705 rc, pm8001_ha->number_of_intr));
706
707 for (i = 0; i < number_of_intr; i++)
708 pm8001_ha->outq[i] = i;
709
jack wangdbf9bfe2009-10-14 16:19:21 +0800710 for (i = 0; i < number_of_intr; i++) {
Sakthivel K1245ee52013-03-19 17:56:17 +0530711 snprintf(intr_drvname[i], sizeof(intr_drvname[0]),
712 DRV_NAME"%d", i);
jack wangdbf9bfe2009-10-14 16:19:21 +0800713 if (request_irq(pm8001_ha->msix_entries[i].vector,
Sakthivel K1245ee52013-03-19 17:56:17 +0530714 pm8001_interrupt_handler_msix, flag,
715 intr_drvname[i], &pm8001_ha->outq[i])) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800716 for (j = 0; j < i; j++)
717 free_irq(
718 pm8001_ha->msix_entries[j].vector,
Sakthivel K1245ee52013-03-19 17:56:17 +0530719 &pm8001_ha->outq[j]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800720 pci_disable_msix(pm8001_ha->pdev);
721 break;
722 }
723 }
724 }
725 return rc;
726}
727#endif
728
729/**
730 * pm8001_request_irq - register interrupt
731 * @chip_info: our ha struct.
732 */
733static u32 pm8001_request_irq(struct pm8001_hba_info *pm8001_ha)
734{
735 struct pci_dev *pdev;
jack_wang97ee2082009-11-05 22:33:51 +0800736 int rc;
jack wangdbf9bfe2009-10-14 16:19:21 +0800737
738 pdev = pm8001_ha->pdev;
739
740#ifdef PM8001_USE_MSIX
Yijing Wange1e819c2013-08-08 21:10:21 +0800741 if (pdev->msix_cap)
Sakthivel K1245ee52013-03-19 17:56:17 +0530742 return pm8001_setup_msix(pm8001_ha);
743 else {
744 PM8001_INIT_DBG(pm8001_ha,
745 pm8001_printk("MSIX not supported!!!\n"));
jack wangdbf9bfe2009-10-14 16:19:21 +0800746 goto intx;
Sakthivel K1245ee52013-03-19 17:56:17 +0530747 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800748#endif
749
750intx:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400751 /* initialize the INT-X interrupt */
Sakthivel K1245ee52013-03-19 17:56:17 +0530752 rc = request_irq(pdev->irq, pm8001_interrupt_handler_intx, IRQF_SHARED,
753 DRV_NAME, SHOST_TO_SAS_HA(pm8001_ha->shost));
jack wangdbf9bfe2009-10-14 16:19:21 +0800754 return rc;
755}
756
757/**
758 * pm8001_pci_probe - probe supported device
759 * @pdev: pci device which kernel has been prepared for.
760 * @ent: pci device id
761 *
762 * This function is the main initialization function, when register a new
763 * pci driver it is invoked, all struct an hardware initilization should be done
764 * here, also, register interrupt
765 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800766static int pm8001_pci_probe(struct pci_dev *pdev,
767 const struct pci_device_id *ent)
jack wangdbf9bfe2009-10-14 16:19:21 +0800768{
769 unsigned int rc;
770 u32 pci_reg;
Sakthivel K1245ee52013-03-19 17:56:17 +0530771 u8 i = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800772 struct pm8001_hba_info *pm8001_ha;
773 struct Scsi_Host *shost = NULL;
774 const struct pm8001_chip_info *chip;
775
776 dev_printk(KERN_INFO, &pdev->dev,
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530777 "pm80xx: driver version %s\n", DRV_VERSION);
jack wangdbf9bfe2009-10-14 16:19:21 +0800778 rc = pci_enable_device(pdev);
779 if (rc)
780 goto err_out_enable;
781 pci_set_master(pdev);
782 /*
783 * Enable pci slot busmaster by setting pci command register.
784 * This is required by FW for Cyclone card.
785 */
786
787 pci_read_config_dword(pdev, PCI_COMMAND, &pci_reg);
788 pci_reg |= 0x157;
789 pci_write_config_dword(pdev, PCI_COMMAND, pci_reg);
790 rc = pci_request_regions(pdev, DRV_NAME);
791 if (rc)
792 goto err_out_disable;
793 rc = pci_go_44(pdev);
794 if (rc)
795 goto err_out_regions;
796
797 shost = scsi_host_alloc(&pm8001_sht, sizeof(void *));
798 if (!shost) {
799 rc = -ENOMEM;
800 goto err_out_regions;
801 }
802 chip = &pm8001_chips[ent->driver_data];
803 SHOST_TO_SAS_HA(shost) =
Julia Lawall3dbf6c02009-12-19 08:17:27 +0100804 kzalloc(sizeof(struct sas_ha_struct), GFP_KERNEL);
jack wangdbf9bfe2009-10-14 16:19:21 +0800805 if (!SHOST_TO_SAS_HA(shost)) {
806 rc = -ENOMEM;
807 goto err_out_free_host;
808 }
809
810 rc = pm8001_prep_sas_ha_init(shost, chip);
811 if (rc) {
812 rc = -ENOMEM;
813 goto err_out_free;
814 }
815 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
Sakthivel Ke590adf2013-02-27 20:25:25 +0530816 /* ent->driver variable is used to differentiate between controllers */
817 pm8001_ha = pm8001_pci_alloc(pdev, ent, shost);
jack wangdbf9bfe2009-10-14 16:19:21 +0800818 if (!pm8001_ha) {
819 rc = -ENOMEM;
820 goto err_out_free;
821 }
822 list_add_tail(&pm8001_ha->list, &hba_list);
Sakthivel Kf5860992013-04-17 16:37:02 +0530823 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800824 rc = PM8001_CHIP_DISP->chip_init(pm8001_ha);
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530825 if (rc) {
826 PM8001_FAIL_DBG(pm8001_ha, pm8001_printk(
827 "chip_init failed [ret: %d]\n", rc));
jack wangdbf9bfe2009-10-14 16:19:21 +0800828 goto err_out_ha_free;
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530829 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800830
831 rc = scsi_add_host(shost, &pdev->dev);
832 if (rc)
833 goto err_out_ha_free;
834 rc = pm8001_request_irq(pm8001_ha);
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530835 if (rc) {
836 PM8001_FAIL_DBG(pm8001_ha, pm8001_printk(
837 "pm8001_request_irq failed [ret: %d]\n", rc));
jack wangdbf9bfe2009-10-14 16:19:21 +0800838 goto err_out_shost;
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530839 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800840
Sakthivel Kf74cf272013-02-27 20:27:43 +0530841 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, 0);
Sakthivel K1245ee52013-03-19 17:56:17 +0530842 if (pm8001_ha->chip_id != chip_8001) {
843 for (i = 1; i < pm8001_ha->number_of_intr; i++)
844 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i);
Sakthivel Ka6cb3d02013-03-19 18:08:40 +0530845 /* setup thermal configuration. */
846 pm80xx_set_thermal_config(pm8001_ha);
Sakthivel K1245ee52013-03-19 17:56:17 +0530847 }
848
jack wangdbf9bfe2009-10-14 16:19:21 +0800849 pm8001_init_sas_add(pm8001_ha);
850 pm8001_post_sas_ha_init(shost, chip);
851 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
852 if (rc)
853 goto err_out_shost;
854 scsi_scan_host(pm8001_ha->shost);
855 return 0;
856
857err_out_shost:
858 scsi_remove_host(pm8001_ha->shost);
859err_out_ha_free:
860 pm8001_free(pm8001_ha);
861err_out_free:
862 kfree(SHOST_TO_SAS_HA(shost));
863err_out_free_host:
864 kfree(shost);
865err_out_regions:
866 pci_release_regions(pdev);
867err_out_disable:
868 pci_disable_device(pdev);
869err_out_enable:
870 return rc;
871}
872
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800873static void pm8001_pci_remove(struct pci_dev *pdev)
jack wangdbf9bfe2009-10-14 16:19:21 +0800874{
875 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
876 struct pm8001_hba_info *pm8001_ha;
877 int i;
878 pm8001_ha = sha->lldd_ha;
879 pci_set_drvdata(pdev, NULL);
880 sas_unregister_ha(sha);
881 sas_remove_host(pm8001_ha->shost);
882 list_del(&pm8001_ha->list);
883 scsi_remove_host(pm8001_ha->shost);
Sakthivel K1245ee52013-03-19 17:56:17 +0530884 PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF);
Sakthivel Kf5860992013-04-17 16:37:02 +0530885 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800886
887#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 pm8001_free(pm8001_ha);
901 kfree(sha->sas_phy);
902 kfree(sha->sas_port);
903 kfree(sha);
904 pci_release_regions(pdev);
905 pci_disable_device(pdev);
906}
907
908/**
909 * pm8001_pci_suspend - power management suspend main entry point
910 * @pdev: PCI device struct
911 * @state: PM state change to (usually PCI_D3)
912 *
913 * Returns 0 success, anything else error.
914 */
915static int pm8001_pci_suspend(struct pci_dev *pdev, pm_message_t state)
916{
917 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
918 struct pm8001_hba_info *pm8001_ha;
Yijing Wangc8a2ba32013-06-27 15:02:49 +0800919 int i;
jack wangdbf9bfe2009-10-14 16:19:21 +0800920 u32 device_state;
921 pm8001_ha = sha->lldd_ha;
Tejun Heo429305e2011-01-24 14:57:29 +0100922 flush_workqueue(pm8001_wq);
jack wangdbf9bfe2009-10-14 16:19:21 +0800923 scsi_block_requests(pm8001_ha->shost);
Yijing Wangc8a2ba32013-06-27 15:02:49 +0800924 if (!pdev->pm_cap) {
925 dev_err(&pdev->dev, " PCI PM not supported\n");
jack wangdbf9bfe2009-10-14 16:19:21 +0800926 return -ENODEV;
927 }
Sakthivel K1245ee52013-03-19 17:56:17 +0530928 PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF);
Sakthivel Kf5860992013-04-17 16:37:02 +0530929 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800930#ifdef PM8001_USE_MSIX
931 for (i = 0; i < pm8001_ha->number_of_intr; i++)
932 synchronize_irq(pm8001_ha->msix_entries[i].vector);
933 for (i = 0; i < pm8001_ha->number_of_intr; i++)
Sakthivel K1245ee52013-03-19 17:56:17 +0530934 free_irq(pm8001_ha->msix_entries[i].vector,
935 &pm8001_ha->outq[i]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800936 pci_disable_msix(pdev);
937#else
938 free_irq(pm8001_ha->irq, sha);
939#endif
940#ifdef PM8001_USE_TASKLET
941 tasklet_kill(&pm8001_ha->tasklet);
942#endif
943 device_state = pci_choose_state(pdev, state);
944 pm8001_printk("pdev=0x%p, slot=%s, entering "
945 "operating state [D%d]\n", pdev,
946 pm8001_ha->name, device_state);
947 pci_save_state(pdev);
948 pci_disable_device(pdev);
949 pci_set_power_state(pdev, device_state);
950 return 0;
951}
952
953/**
954 * pm8001_pci_resume - power management resume main entry point
955 * @pdev: PCI device struct
956 *
957 * Returns 0 success, anything else error.
958 */
959static int pm8001_pci_resume(struct pci_dev *pdev)
960{
961 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
962 struct pm8001_hba_info *pm8001_ha;
963 int rc;
Sakthivel K1245ee52013-03-19 17:56:17 +0530964 u8 i = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800965 u32 device_state;
966 pm8001_ha = sha->lldd_ha;
967 device_state = pdev->current_state;
968
969 pm8001_printk("pdev=0x%p, slot=%s, resuming from previous "
970 "operating state [D%d]\n", pdev, pm8001_ha->name, device_state);
971
972 pci_set_power_state(pdev, PCI_D0);
973 pci_enable_wake(pdev, PCI_D0, 0);
974 pci_restore_state(pdev);
975 rc = pci_enable_device(pdev);
976 if (rc) {
977 pm8001_printk("slot=%s Enable device failed during resume\n",
978 pm8001_ha->name);
979 goto err_out_enable;
980 }
981
982 pci_set_master(pdev);
983 rc = pci_go_44(pdev);
984 if (rc)
985 goto err_out_disable;
986
Sakthivel Kf5860992013-04-17 16:37:02 +0530987 /* chip soft rst only for spc */
988 if (pm8001_ha->chip_id == chip_8001) {
989 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
990 PM8001_INIT_DBG(pm8001_ha,
991 pm8001_printk("chip soft reset successful\n"));
992 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800993 rc = PM8001_CHIP_DISP->chip_init(pm8001_ha);
994 if (rc)
995 goto err_out_disable;
Sakthivel K1245ee52013-03-19 17:56:17 +0530996
997 /* disable all the interrupt bits */
998 PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF);
999
jack wangdbf9bfe2009-10-14 16:19:21 +08001000 rc = pm8001_request_irq(pm8001_ha);
1001 if (rc)
1002 goto err_out_disable;
Sakthivel K1245ee52013-03-19 17:56:17 +05301003#ifdef PM8001_USE_TASKLET
1004 /* default tasklet for non msi-x interrupt handler/first msi-x
1005 * interrupt handler */
jack wangdbf9bfe2009-10-14 16:19:21 +08001006 tasklet_init(&pm8001_ha->tasklet, pm8001_tasklet,
Sakthivel K1245ee52013-03-19 17:56:17 +05301007 (unsigned long)pm8001_ha);
1008#endif
Sakthivel Kf74cf272013-02-27 20:27:43 +05301009 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, 0);
Sakthivel K1245ee52013-03-19 17:56:17 +05301010 if (pm8001_ha->chip_id != chip_8001) {
1011 for (i = 1; i < pm8001_ha->number_of_intr; i++)
1012 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i);
1013 }
jack wangdbf9bfe2009-10-14 16:19:21 +08001014 scsi_unblock_requests(pm8001_ha->shost);
1015 return 0;
1016
1017err_out_disable:
1018 scsi_remove_host(pm8001_ha->shost);
1019 pci_disable_device(pdev);
1020err_out_enable:
1021 return rc;
1022}
1023
Sakthivel Ke5742102013-04-17 16:26:36 +05301024/* update of pci device, vendor id and driver data with
1025 * unique value for each of the controller
1026 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001027static struct pci_device_id pm8001_pci_table[] = {
Sakthivel Ke5742102013-04-17 16:26:36 +05301028 { PCI_VDEVICE(PMC_Sierra, 0x8001), chip_8001 },
jack wangdbf9bfe2009-10-14 16:19:21 +08001029 {
1030 PCI_DEVICE(0x117c, 0x0042),
1031 .driver_data = chip_8001
1032 },
Sakthivel Ke5742102013-04-17 16:26:36 +05301033 /* Support for SPC/SPCv/SPCve controllers */
1034 { PCI_VDEVICE(ADAPTEC2, 0x8001), chip_8001 },
1035 { PCI_VDEVICE(PMC_Sierra, 0x8008), chip_8008 },
1036 { PCI_VDEVICE(ADAPTEC2, 0x8008), chip_8008 },
1037 { PCI_VDEVICE(PMC_Sierra, 0x8018), chip_8018 },
1038 { PCI_VDEVICE(ADAPTEC2, 0x8018), chip_8018 },
1039 { PCI_VDEVICE(PMC_Sierra, 0x8009), chip_8009 },
1040 { PCI_VDEVICE(ADAPTEC2, 0x8009), chip_8009 },
1041 { PCI_VDEVICE(PMC_Sierra, 0x8019), chip_8019 },
1042 { PCI_VDEVICE(ADAPTEC2, 0x8019), chip_8019 },
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301043 { PCI_VDEVICE(PMC_Sierra, 0x8074), chip_8074 },
1044 { PCI_VDEVICE(ADAPTEC2, 0x8074), chip_8074 },
1045 { PCI_VDEVICE(PMC_Sierra, 0x8076), chip_8076 },
1046 { PCI_VDEVICE(ADAPTEC2, 0x8076), chip_8076 },
1047 { PCI_VDEVICE(PMC_Sierra, 0x8077), chip_8077 },
1048 { PCI_VDEVICE(ADAPTEC2, 0x8077), chip_8077 },
Sakthivel Ke5742102013-04-17 16:26:36 +05301049 { PCI_VENDOR_ID_ADAPTEC2, 0x8081,
1050 PCI_VENDOR_ID_ADAPTEC2, 0x0400, 0, 0, chip_8001 },
1051 { PCI_VENDOR_ID_ADAPTEC2, 0x8081,
1052 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8001 },
1053 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1054 PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8008 },
1055 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1056 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8008 },
1057 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1058 PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8009 },
1059 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1060 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8009 },
1061 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1062 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8018 },
1063 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1064 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8018 },
1065 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1066 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8019 },
1067 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1068 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8019 },
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301069 { PCI_VENDOR_ID_ADAPTEC2, 0x8074,
1070 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8074 },
1071 { PCI_VENDOR_ID_ADAPTEC2, 0x8076,
1072 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8076 },
1073 { PCI_VENDOR_ID_ADAPTEC2, 0x8077,
1074 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8077 },
1075 { PCI_VENDOR_ID_ADAPTEC2, 0x8074,
1076 PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8074 },
1077 { PCI_VENDOR_ID_ADAPTEC2, 0x8076,
1078 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8076 },
1079 { PCI_VENDOR_ID_ADAPTEC2, 0x8077,
1080 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8077 },
1081 { PCI_VENDOR_ID_ADAPTEC2, 0x8076,
1082 PCI_VENDOR_ID_ADAPTEC2, 0x0808, 0, 0, chip_8076 },
1083 { PCI_VENDOR_ID_ADAPTEC2, 0x8077,
1084 PCI_VENDOR_ID_ADAPTEC2, 0x0808, 0, 0, chip_8077 },
1085 { PCI_VENDOR_ID_ADAPTEC2, 0x8074,
1086 PCI_VENDOR_ID_ADAPTEC2, 0x0404, 0, 0, chip_8074 },
jack wangdbf9bfe2009-10-14 16:19:21 +08001087 {} /* terminate list */
1088};
1089
1090static struct pci_driver pm8001_pci_driver = {
1091 .name = DRV_NAME,
1092 .id_table = pm8001_pci_table,
1093 .probe = pm8001_pci_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001094 .remove = pm8001_pci_remove,
jack wangdbf9bfe2009-10-14 16:19:21 +08001095 .suspend = pm8001_pci_suspend,
1096 .resume = pm8001_pci_resume,
1097};
1098
1099/**
1100 * pm8001_init - initialize scsi transport template
1101 */
1102static int __init pm8001_init(void)
1103{
Tejun Heo429305e2011-01-24 14:57:29 +01001104 int rc = -ENOMEM;
1105
Sakthivel Ka70b8fc2013-03-19 18:07:09 +05301106 pm8001_wq = alloc_workqueue("pm80xx", 0, 0);
Tejun Heo429305e2011-01-24 14:57:29 +01001107 if (!pm8001_wq)
1108 goto err;
1109
jack wangdbf9bfe2009-10-14 16:19:21 +08001110 pm8001_id = 0;
1111 pm8001_stt = sas_domain_attach_transport(&pm8001_transport_ops);
1112 if (!pm8001_stt)
Tejun Heo429305e2011-01-24 14:57:29 +01001113 goto err_wq;
jack wangdbf9bfe2009-10-14 16:19:21 +08001114 rc = pci_register_driver(&pm8001_pci_driver);
1115 if (rc)
Tejun Heo429305e2011-01-24 14:57:29 +01001116 goto err_tp;
jack wangdbf9bfe2009-10-14 16:19:21 +08001117 return 0;
Tejun Heo429305e2011-01-24 14:57:29 +01001118
1119err_tp:
jack wangdbf9bfe2009-10-14 16:19:21 +08001120 sas_release_transport(pm8001_stt);
Tejun Heo429305e2011-01-24 14:57:29 +01001121err_wq:
1122 destroy_workqueue(pm8001_wq);
1123err:
jack wangdbf9bfe2009-10-14 16:19:21 +08001124 return rc;
1125}
1126
1127static void __exit pm8001_exit(void)
1128{
1129 pci_unregister_driver(&pm8001_pci_driver);
1130 sas_release_transport(pm8001_stt);
Tejun Heo429305e2011-01-24 14:57:29 +01001131 destroy_workqueue(pm8001_wq);
jack wangdbf9bfe2009-10-14 16:19:21 +08001132}
1133
1134module_init(pm8001_init);
1135module_exit(pm8001_exit);
1136
1137MODULE_AUTHOR("Jack Wang <jack_wang@usish.com>");
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301138MODULE_AUTHOR("Anand Kumar Santhanam <AnandKumar.Santhanam@pmcs.com>");
1139MODULE_AUTHOR("Sangeetha Gnanasekaran <Sangeetha.Gnanasekaran@pmcs.com>");
Sakthivel Ke5742102013-04-17 16:26:36 +05301140MODULE_DESCRIPTION(
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301141 "PMC-Sierra PM8001/8081/8088/8089/8074/8076/8077 "
1142 "SAS/SATA controller driver");
jack wangdbf9bfe2009-10-14 16:19:21 +08001143MODULE_VERSION(DRV_VERSION);
1144MODULE_LICENSE("GPL");
1145MODULE_DEVICE_TABLE(pci, pm8001_pci_table);
1146