blob: 92a18c4d2ebb30670a17075ff963db316e929c45 [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
Anand Kumar Santhanam27909402013-09-18 13:02:44 +0530670/*
671 * pm8001_get_phy_settings_info : Read phy setting values.
672 * @pm8001_ha : our hba.
673 */
674void pm8001_get_phy_settings_info(struct pm8001_hba_info *pm8001_ha)
675{
676
677#ifdef PM8001_READ_VPD
678 /*OPTION ROM FLASH read for the SPC cards */
679 DECLARE_COMPLETION_ONSTACK(completion);
680 struct pm8001_ioctl_payload payload;
681
682 pm8001_ha->nvmd_completion = &completion;
683 /* SAS ADDRESS read from flash / EEPROM */
684 payload.minor_function = 6;
685 payload.offset = 0;
686 payload.length = 4096;
687 payload.func_specific = kzalloc(4096, GFP_KERNEL);
688 /* Read phy setting values from flash */
689 PM8001_CHIP_DISP->get_nvmd_req(pm8001_ha, &payload);
690 wait_for_completion(&completion);
691 pm8001_set_phy_profile(pm8001_ha, sizeof(u8), payload.func_specific);
692#endif
693}
694
jack wangdbf9bfe2009-10-14 16:19:21 +0800695#ifdef PM8001_USE_MSIX
696/**
697 * pm8001_setup_msix - enable MSI-X interrupt
698 * @chip_info: our ha struct.
699 * @irq_handler: irq_handler
700 */
Sakthivel K1245ee52013-03-19 17:56:17 +0530701static u32 pm8001_setup_msix(struct pm8001_hba_info *pm8001_ha)
jack wangdbf9bfe2009-10-14 16:19:21 +0800702{
703 u32 i = 0, j = 0;
Sakthivel K1245ee52013-03-19 17:56:17 +0530704 u32 number_of_intr;
jack wangdbf9bfe2009-10-14 16:19:21 +0800705 int flag = 0;
706 u32 max_entry;
707 int rc;
Sakthivel K1245ee52013-03-19 17:56:17 +0530708 static char intr_drvname[PM8001_MAX_MSIX_VEC][sizeof(DRV_NAME)+3];
709
710 /* SPCv controllers supports 64 msi-x */
711 if (pm8001_ha->chip_id == chip_8001) {
712 number_of_intr = 1;
713 flag |= IRQF_DISABLED;
714 } else {
715 number_of_intr = PM8001_MAX_MSIX_VEC;
716 flag &= ~IRQF_SHARED;
717 flag |= IRQF_DISABLED;
718 }
719
jack wangdbf9bfe2009-10-14 16:19:21 +0800720 max_entry = sizeof(pm8001_ha->msix_entries) /
721 sizeof(pm8001_ha->msix_entries[0]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800722 for (i = 0; i < max_entry ; i++)
723 pm8001_ha->msix_entries[i].entry = i;
724 rc = pci_enable_msix(pm8001_ha->pdev, pm8001_ha->msix_entries,
725 number_of_intr);
726 pm8001_ha->number_of_intr = number_of_intr;
727 if (!rc) {
Sakthivel K1245ee52013-03-19 17:56:17 +0530728 PM8001_INIT_DBG(pm8001_ha, pm8001_printk(
729 "pci_enable_msix request ret:%d no of intr %d\n",
730 rc, pm8001_ha->number_of_intr));
731
732 for (i = 0; i < number_of_intr; i++)
733 pm8001_ha->outq[i] = i;
734
jack wangdbf9bfe2009-10-14 16:19:21 +0800735 for (i = 0; i < number_of_intr; i++) {
Sakthivel K1245ee52013-03-19 17:56:17 +0530736 snprintf(intr_drvname[i], sizeof(intr_drvname[0]),
737 DRV_NAME"%d", i);
jack wangdbf9bfe2009-10-14 16:19:21 +0800738 if (request_irq(pm8001_ha->msix_entries[i].vector,
Sakthivel K1245ee52013-03-19 17:56:17 +0530739 pm8001_interrupt_handler_msix, flag,
740 intr_drvname[i], &pm8001_ha->outq[i])) {
jack wangdbf9bfe2009-10-14 16:19:21 +0800741 for (j = 0; j < i; j++)
742 free_irq(
743 pm8001_ha->msix_entries[j].vector,
Sakthivel K1245ee52013-03-19 17:56:17 +0530744 &pm8001_ha->outq[j]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800745 pci_disable_msix(pm8001_ha->pdev);
746 break;
747 }
748 }
749 }
750 return rc;
751}
752#endif
753
754/**
755 * pm8001_request_irq - register interrupt
756 * @chip_info: our ha struct.
757 */
758static u32 pm8001_request_irq(struct pm8001_hba_info *pm8001_ha)
759{
760 struct pci_dev *pdev;
jack_wang97ee2082009-11-05 22:33:51 +0800761 int rc;
jack wangdbf9bfe2009-10-14 16:19:21 +0800762
763 pdev = pm8001_ha->pdev;
764
765#ifdef PM8001_USE_MSIX
Yijing Wange1e819c2013-08-08 21:10:21 +0800766 if (pdev->msix_cap)
Sakthivel K1245ee52013-03-19 17:56:17 +0530767 return pm8001_setup_msix(pm8001_ha);
768 else {
769 PM8001_INIT_DBG(pm8001_ha,
770 pm8001_printk("MSIX not supported!!!\n"));
jack wangdbf9bfe2009-10-14 16:19:21 +0800771 goto intx;
Sakthivel K1245ee52013-03-19 17:56:17 +0530772 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800773#endif
774
775intx:
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400776 /* initialize the INT-X interrupt */
Sakthivel K1245ee52013-03-19 17:56:17 +0530777 rc = request_irq(pdev->irq, pm8001_interrupt_handler_intx, IRQF_SHARED,
778 DRV_NAME, SHOST_TO_SAS_HA(pm8001_ha->shost));
jack wangdbf9bfe2009-10-14 16:19:21 +0800779 return rc;
780}
781
782/**
783 * pm8001_pci_probe - probe supported device
784 * @pdev: pci device which kernel has been prepared for.
785 * @ent: pci device id
786 *
787 * This function is the main initialization function, when register a new
788 * pci driver it is invoked, all struct an hardware initilization should be done
789 * here, also, register interrupt
790 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800791static int pm8001_pci_probe(struct pci_dev *pdev,
792 const struct pci_device_id *ent)
jack wangdbf9bfe2009-10-14 16:19:21 +0800793{
794 unsigned int rc;
795 u32 pci_reg;
Sakthivel K1245ee52013-03-19 17:56:17 +0530796 u8 i = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800797 struct pm8001_hba_info *pm8001_ha;
798 struct Scsi_Host *shost = NULL;
799 const struct pm8001_chip_info *chip;
800
801 dev_printk(KERN_INFO, &pdev->dev,
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530802 "pm80xx: driver version %s\n", DRV_VERSION);
jack wangdbf9bfe2009-10-14 16:19:21 +0800803 rc = pci_enable_device(pdev);
804 if (rc)
805 goto err_out_enable;
806 pci_set_master(pdev);
807 /*
808 * Enable pci slot busmaster by setting pci command register.
809 * This is required by FW for Cyclone card.
810 */
811
812 pci_read_config_dword(pdev, PCI_COMMAND, &pci_reg);
813 pci_reg |= 0x157;
814 pci_write_config_dword(pdev, PCI_COMMAND, pci_reg);
815 rc = pci_request_regions(pdev, DRV_NAME);
816 if (rc)
817 goto err_out_disable;
818 rc = pci_go_44(pdev);
819 if (rc)
820 goto err_out_regions;
821
822 shost = scsi_host_alloc(&pm8001_sht, sizeof(void *));
823 if (!shost) {
824 rc = -ENOMEM;
825 goto err_out_regions;
826 }
827 chip = &pm8001_chips[ent->driver_data];
828 SHOST_TO_SAS_HA(shost) =
Julia Lawall3dbf6c02009-12-19 08:17:27 +0100829 kzalloc(sizeof(struct sas_ha_struct), GFP_KERNEL);
jack wangdbf9bfe2009-10-14 16:19:21 +0800830 if (!SHOST_TO_SAS_HA(shost)) {
831 rc = -ENOMEM;
832 goto err_out_free_host;
833 }
834
835 rc = pm8001_prep_sas_ha_init(shost, chip);
836 if (rc) {
837 rc = -ENOMEM;
838 goto err_out_free;
839 }
840 pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost));
Sakthivel Ke590adf2013-02-27 20:25:25 +0530841 /* ent->driver variable is used to differentiate between controllers */
842 pm8001_ha = pm8001_pci_alloc(pdev, ent, shost);
jack wangdbf9bfe2009-10-14 16:19:21 +0800843 if (!pm8001_ha) {
844 rc = -ENOMEM;
845 goto err_out_free;
846 }
847 list_add_tail(&pm8001_ha->list, &hba_list);
Sakthivel Kf5860992013-04-17 16:37:02 +0530848 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800849 rc = PM8001_CHIP_DISP->chip_init(pm8001_ha);
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530850 if (rc) {
851 PM8001_FAIL_DBG(pm8001_ha, pm8001_printk(
852 "chip_init failed [ret: %d]\n", rc));
jack wangdbf9bfe2009-10-14 16:19:21 +0800853 goto err_out_ha_free;
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530854 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800855
856 rc = scsi_add_host(shost, &pdev->dev);
857 if (rc)
858 goto err_out_ha_free;
859 rc = pm8001_request_irq(pm8001_ha);
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530860 if (rc) {
861 PM8001_FAIL_DBG(pm8001_ha, pm8001_printk(
862 "pm8001_request_irq failed [ret: %d]\n", rc));
jack wangdbf9bfe2009-10-14 16:19:21 +0800863 goto err_out_shost;
Sakthivel Ka70b8fc2013-03-19 18:07:09 +0530864 }
jack wangdbf9bfe2009-10-14 16:19:21 +0800865
Sakthivel Kf74cf272013-02-27 20:27:43 +0530866 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, 0);
Sakthivel K1245ee52013-03-19 17:56:17 +0530867 if (pm8001_ha->chip_id != chip_8001) {
868 for (i = 1; i < pm8001_ha->number_of_intr; i++)
869 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i);
Sakthivel Ka6cb3d02013-03-19 18:08:40 +0530870 /* setup thermal configuration. */
871 pm80xx_set_thermal_config(pm8001_ha);
Sakthivel K1245ee52013-03-19 17:56:17 +0530872 }
873
jack wangdbf9bfe2009-10-14 16:19:21 +0800874 pm8001_init_sas_add(pm8001_ha);
Anand Kumar Santhanam27909402013-09-18 13:02:44 +0530875 /* phy setting support for motherboard controller */
876 if (pdev->subsystem_vendor != PCI_VENDOR_ID_ADAPTEC2 &&
877 pdev->subsystem_vendor != 0)
878 pm8001_get_phy_settings_info(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800879 pm8001_post_sas_ha_init(shost, chip);
880 rc = sas_register_ha(SHOST_TO_SAS_HA(shost));
881 if (rc)
882 goto err_out_shost;
883 scsi_scan_host(pm8001_ha->shost);
884 return 0;
885
886err_out_shost:
887 scsi_remove_host(pm8001_ha->shost);
888err_out_ha_free:
889 pm8001_free(pm8001_ha);
890err_out_free:
891 kfree(SHOST_TO_SAS_HA(shost));
892err_out_free_host:
893 kfree(shost);
894err_out_regions:
895 pci_release_regions(pdev);
896err_out_disable:
897 pci_disable_device(pdev);
898err_out_enable:
899 return rc;
900}
901
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800902static void pm8001_pci_remove(struct pci_dev *pdev)
jack wangdbf9bfe2009-10-14 16:19:21 +0800903{
904 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
905 struct pm8001_hba_info *pm8001_ha;
906 int i;
907 pm8001_ha = sha->lldd_ha;
908 pci_set_drvdata(pdev, NULL);
909 sas_unregister_ha(sha);
910 sas_remove_host(pm8001_ha->shost);
911 list_del(&pm8001_ha->list);
912 scsi_remove_host(pm8001_ha->shost);
Sakthivel K1245ee52013-03-19 17:56:17 +0530913 PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF);
Sakthivel Kf5860992013-04-17 16:37:02 +0530914 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800915
916#ifdef PM8001_USE_MSIX
917 for (i = 0; i < pm8001_ha->number_of_intr; i++)
918 synchronize_irq(pm8001_ha->msix_entries[i].vector);
919 for (i = 0; i < pm8001_ha->number_of_intr; i++)
Sakthivel K1245ee52013-03-19 17:56:17 +0530920 free_irq(pm8001_ha->msix_entries[i].vector,
921 &pm8001_ha->outq[i]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800922 pci_disable_msix(pdev);
923#else
924 free_irq(pm8001_ha->irq, sha);
925#endif
926#ifdef PM8001_USE_TASKLET
927 tasklet_kill(&pm8001_ha->tasklet);
928#endif
929 pm8001_free(pm8001_ha);
930 kfree(sha->sas_phy);
931 kfree(sha->sas_port);
932 kfree(sha);
933 pci_release_regions(pdev);
934 pci_disable_device(pdev);
935}
936
937/**
938 * pm8001_pci_suspend - power management suspend main entry point
939 * @pdev: PCI device struct
940 * @state: PM state change to (usually PCI_D3)
941 *
942 * Returns 0 success, anything else error.
943 */
944static int pm8001_pci_suspend(struct pci_dev *pdev, pm_message_t state)
945{
946 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
947 struct pm8001_hba_info *pm8001_ha;
Yijing Wangc8a2ba32013-06-27 15:02:49 +0800948 int i;
jack wangdbf9bfe2009-10-14 16:19:21 +0800949 u32 device_state;
950 pm8001_ha = sha->lldd_ha;
Tejun Heo429305e2011-01-24 14:57:29 +0100951 flush_workqueue(pm8001_wq);
jack wangdbf9bfe2009-10-14 16:19:21 +0800952 scsi_block_requests(pm8001_ha->shost);
Yijing Wangc8a2ba32013-06-27 15:02:49 +0800953 if (!pdev->pm_cap) {
954 dev_err(&pdev->dev, " PCI PM not supported\n");
jack wangdbf9bfe2009-10-14 16:19:21 +0800955 return -ENODEV;
956 }
Sakthivel K1245ee52013-03-19 17:56:17 +0530957 PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF);
Sakthivel Kf5860992013-04-17 16:37:02 +0530958 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
jack wangdbf9bfe2009-10-14 16:19:21 +0800959#ifdef PM8001_USE_MSIX
960 for (i = 0; i < pm8001_ha->number_of_intr; i++)
961 synchronize_irq(pm8001_ha->msix_entries[i].vector);
962 for (i = 0; i < pm8001_ha->number_of_intr; i++)
Sakthivel K1245ee52013-03-19 17:56:17 +0530963 free_irq(pm8001_ha->msix_entries[i].vector,
964 &pm8001_ha->outq[i]);
jack wangdbf9bfe2009-10-14 16:19:21 +0800965 pci_disable_msix(pdev);
966#else
967 free_irq(pm8001_ha->irq, sha);
968#endif
969#ifdef PM8001_USE_TASKLET
970 tasklet_kill(&pm8001_ha->tasklet);
971#endif
972 device_state = pci_choose_state(pdev, state);
973 pm8001_printk("pdev=0x%p, slot=%s, entering "
974 "operating state [D%d]\n", pdev,
975 pm8001_ha->name, device_state);
976 pci_save_state(pdev);
977 pci_disable_device(pdev);
978 pci_set_power_state(pdev, device_state);
979 return 0;
980}
981
982/**
983 * pm8001_pci_resume - power management resume main entry point
984 * @pdev: PCI device struct
985 *
986 * Returns 0 success, anything else error.
987 */
988static int pm8001_pci_resume(struct pci_dev *pdev)
989{
990 struct sas_ha_struct *sha = pci_get_drvdata(pdev);
991 struct pm8001_hba_info *pm8001_ha;
992 int rc;
Sakthivel K1245ee52013-03-19 17:56:17 +0530993 u8 i = 0;
jack wangdbf9bfe2009-10-14 16:19:21 +0800994 u32 device_state;
995 pm8001_ha = sha->lldd_ha;
996 device_state = pdev->current_state;
997
998 pm8001_printk("pdev=0x%p, slot=%s, resuming from previous "
999 "operating state [D%d]\n", pdev, pm8001_ha->name, device_state);
1000
1001 pci_set_power_state(pdev, PCI_D0);
1002 pci_enable_wake(pdev, PCI_D0, 0);
1003 pci_restore_state(pdev);
1004 rc = pci_enable_device(pdev);
1005 if (rc) {
1006 pm8001_printk("slot=%s Enable device failed during resume\n",
1007 pm8001_ha->name);
1008 goto err_out_enable;
1009 }
1010
1011 pci_set_master(pdev);
1012 rc = pci_go_44(pdev);
1013 if (rc)
1014 goto err_out_disable;
1015
Sakthivel Kf5860992013-04-17 16:37:02 +05301016 /* chip soft rst only for spc */
1017 if (pm8001_ha->chip_id == chip_8001) {
1018 PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
1019 PM8001_INIT_DBG(pm8001_ha,
1020 pm8001_printk("chip soft reset successful\n"));
1021 }
jack wangdbf9bfe2009-10-14 16:19:21 +08001022 rc = PM8001_CHIP_DISP->chip_init(pm8001_ha);
1023 if (rc)
1024 goto err_out_disable;
Sakthivel K1245ee52013-03-19 17:56:17 +05301025
1026 /* disable all the interrupt bits */
1027 PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF);
1028
jack wangdbf9bfe2009-10-14 16:19:21 +08001029 rc = pm8001_request_irq(pm8001_ha);
1030 if (rc)
1031 goto err_out_disable;
Sakthivel K1245ee52013-03-19 17:56:17 +05301032#ifdef PM8001_USE_TASKLET
1033 /* default tasklet for non msi-x interrupt handler/first msi-x
1034 * interrupt handler */
jack wangdbf9bfe2009-10-14 16:19:21 +08001035 tasklet_init(&pm8001_ha->tasklet, pm8001_tasklet,
Sakthivel K1245ee52013-03-19 17:56:17 +05301036 (unsigned long)pm8001_ha);
1037#endif
Sakthivel Kf74cf272013-02-27 20:27:43 +05301038 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, 0);
Sakthivel K1245ee52013-03-19 17:56:17 +05301039 if (pm8001_ha->chip_id != chip_8001) {
1040 for (i = 1; i < pm8001_ha->number_of_intr; i++)
1041 PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i);
1042 }
jack wangdbf9bfe2009-10-14 16:19:21 +08001043 scsi_unblock_requests(pm8001_ha->shost);
1044 return 0;
1045
1046err_out_disable:
1047 scsi_remove_host(pm8001_ha->shost);
1048 pci_disable_device(pdev);
1049err_out_enable:
1050 return rc;
1051}
1052
Sakthivel Ke5742102013-04-17 16:26:36 +05301053/* update of pci device, vendor id and driver data with
1054 * unique value for each of the controller
1055 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001056static struct pci_device_id pm8001_pci_table[] = {
Sakthivel Ke5742102013-04-17 16:26:36 +05301057 { PCI_VDEVICE(PMC_Sierra, 0x8001), chip_8001 },
jack wangdbf9bfe2009-10-14 16:19:21 +08001058 {
1059 PCI_DEVICE(0x117c, 0x0042),
1060 .driver_data = chip_8001
1061 },
Sakthivel Ke5742102013-04-17 16:26:36 +05301062 /* Support for SPC/SPCv/SPCve controllers */
1063 { PCI_VDEVICE(ADAPTEC2, 0x8001), chip_8001 },
1064 { PCI_VDEVICE(PMC_Sierra, 0x8008), chip_8008 },
1065 { PCI_VDEVICE(ADAPTEC2, 0x8008), chip_8008 },
1066 { PCI_VDEVICE(PMC_Sierra, 0x8018), chip_8018 },
1067 { PCI_VDEVICE(ADAPTEC2, 0x8018), chip_8018 },
1068 { PCI_VDEVICE(PMC_Sierra, 0x8009), chip_8009 },
1069 { PCI_VDEVICE(ADAPTEC2, 0x8009), chip_8009 },
1070 { PCI_VDEVICE(PMC_Sierra, 0x8019), chip_8019 },
1071 { PCI_VDEVICE(ADAPTEC2, 0x8019), chip_8019 },
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301072 { PCI_VDEVICE(PMC_Sierra, 0x8074), chip_8074 },
1073 { PCI_VDEVICE(ADAPTEC2, 0x8074), chip_8074 },
1074 { PCI_VDEVICE(PMC_Sierra, 0x8076), chip_8076 },
1075 { PCI_VDEVICE(ADAPTEC2, 0x8076), chip_8076 },
1076 { PCI_VDEVICE(PMC_Sierra, 0x8077), chip_8077 },
1077 { PCI_VDEVICE(ADAPTEC2, 0x8077), chip_8077 },
Sakthivel Ke5742102013-04-17 16:26:36 +05301078 { PCI_VENDOR_ID_ADAPTEC2, 0x8081,
1079 PCI_VENDOR_ID_ADAPTEC2, 0x0400, 0, 0, chip_8001 },
1080 { PCI_VENDOR_ID_ADAPTEC2, 0x8081,
1081 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8001 },
1082 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1083 PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8008 },
1084 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1085 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8008 },
1086 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1087 PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8009 },
1088 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1089 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8009 },
1090 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1091 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8018 },
1092 { PCI_VENDOR_ID_ADAPTEC2, 0x8088,
1093 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8018 },
1094 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1095 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8019 },
1096 { PCI_VENDOR_ID_ADAPTEC2, 0x8089,
1097 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8019 },
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301098 { PCI_VENDOR_ID_ADAPTEC2, 0x8074,
1099 PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8074 },
1100 { PCI_VENDOR_ID_ADAPTEC2, 0x8076,
1101 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8076 },
1102 { PCI_VENDOR_ID_ADAPTEC2, 0x8077,
1103 PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8077 },
1104 { PCI_VENDOR_ID_ADAPTEC2, 0x8074,
1105 PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8074 },
1106 { PCI_VENDOR_ID_ADAPTEC2, 0x8076,
1107 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8076 },
1108 { PCI_VENDOR_ID_ADAPTEC2, 0x8077,
1109 PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8077 },
1110 { PCI_VENDOR_ID_ADAPTEC2, 0x8076,
1111 PCI_VENDOR_ID_ADAPTEC2, 0x0808, 0, 0, chip_8076 },
1112 { PCI_VENDOR_ID_ADAPTEC2, 0x8077,
1113 PCI_VENDOR_ID_ADAPTEC2, 0x0808, 0, 0, chip_8077 },
1114 { PCI_VENDOR_ID_ADAPTEC2, 0x8074,
1115 PCI_VENDOR_ID_ADAPTEC2, 0x0404, 0, 0, chip_8074 },
jack wangdbf9bfe2009-10-14 16:19:21 +08001116 {} /* terminate list */
1117};
1118
1119static struct pci_driver pm8001_pci_driver = {
1120 .name = DRV_NAME,
1121 .id_table = pm8001_pci_table,
1122 .probe = pm8001_pci_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001123 .remove = pm8001_pci_remove,
jack wangdbf9bfe2009-10-14 16:19:21 +08001124 .suspend = pm8001_pci_suspend,
1125 .resume = pm8001_pci_resume,
1126};
1127
1128/**
1129 * pm8001_init - initialize scsi transport template
1130 */
1131static int __init pm8001_init(void)
1132{
Tejun Heo429305e2011-01-24 14:57:29 +01001133 int rc = -ENOMEM;
1134
Sakthivel Ka70b8fc2013-03-19 18:07:09 +05301135 pm8001_wq = alloc_workqueue("pm80xx", 0, 0);
Tejun Heo429305e2011-01-24 14:57:29 +01001136 if (!pm8001_wq)
1137 goto err;
1138
jack wangdbf9bfe2009-10-14 16:19:21 +08001139 pm8001_id = 0;
1140 pm8001_stt = sas_domain_attach_transport(&pm8001_transport_ops);
1141 if (!pm8001_stt)
Tejun Heo429305e2011-01-24 14:57:29 +01001142 goto err_wq;
jack wangdbf9bfe2009-10-14 16:19:21 +08001143 rc = pci_register_driver(&pm8001_pci_driver);
1144 if (rc)
Tejun Heo429305e2011-01-24 14:57:29 +01001145 goto err_tp;
jack wangdbf9bfe2009-10-14 16:19:21 +08001146 return 0;
Tejun Heo429305e2011-01-24 14:57:29 +01001147
1148err_tp:
jack wangdbf9bfe2009-10-14 16:19:21 +08001149 sas_release_transport(pm8001_stt);
Tejun Heo429305e2011-01-24 14:57:29 +01001150err_wq:
1151 destroy_workqueue(pm8001_wq);
1152err:
jack wangdbf9bfe2009-10-14 16:19:21 +08001153 return rc;
1154}
1155
1156static void __exit pm8001_exit(void)
1157{
1158 pci_unregister_driver(&pm8001_pci_driver);
1159 sas_release_transport(pm8001_stt);
Tejun Heo429305e2011-01-24 14:57:29 +01001160 destroy_workqueue(pm8001_wq);
jack wangdbf9bfe2009-10-14 16:19:21 +08001161}
1162
1163module_init(pm8001_init);
1164module_exit(pm8001_exit);
1165
1166MODULE_AUTHOR("Jack Wang <jack_wang@usish.com>");
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301167MODULE_AUTHOR("Anand Kumar Santhanam <AnandKumar.Santhanam@pmcs.com>");
1168MODULE_AUTHOR("Sangeetha Gnanasekaran <Sangeetha.Gnanasekaran@pmcs.com>");
Sakthivel Ke5742102013-04-17 16:26:36 +05301169MODULE_DESCRIPTION(
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301170 "PMC-Sierra PM8001/8081/8088/8089/8074/8076/8077 "
1171 "SAS/SATA controller driver");
jack wangdbf9bfe2009-10-14 16:19:21 +08001172MODULE_VERSION(DRV_VERSION);
1173MODULE_LICENSE("GPL");
1174MODULE_DEVICE_TABLE(pci, pm8001_pci_table);
1175