jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1 | /* |
Sakthivel K | e574210 | 2013-04-17 16:26:36 +0530 | [diff] [blame] | 2 | * PMC-Sierra PM8001/8081/8088/8089 SAS/SATA based host adapters driver |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 3 | * |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 41 | #include <linux/slab.h> |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 42 | #include "pm8001_sas.h" |
| 43 | #include "pm8001_chips.h" |
| 44 | |
| 45 | static struct scsi_transport_template *pm8001_stt; |
| 46 | |
Sakthivel K | e574210 | 2013-04-17 16:26:36 +0530 | [diff] [blame] | 47 | /** |
| 48 | * chip info structure to identify chip key functionality as |
| 49 | * encryption available/not, no of ports, hw specific function ref |
| 50 | */ |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 51 | static const struct pm8001_chip_info pm8001_chips[] = { |
Sakthivel K | e574210 | 2013-04-17 16:26:36 +0530 | [diff] [blame] | 52 | [chip_8001] = {0, 8, &pm8001_8001_dispatch,}, |
Sakthivel K | f586099 | 2013-04-17 16:37:02 +0530 | [diff] [blame] | 53 | [chip_8008] = {0, 8, &pm8001_80xx_dispatch,}, |
| 54 | [chip_8009] = {1, 8, &pm8001_80xx_dispatch,}, |
| 55 | [chip_8018] = {0, 16, &pm8001_80xx_dispatch,}, |
| 56 | [chip_8019] = {1, 16, &pm8001_80xx_dispatch,}, |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 57 | }; |
| 58 | static int pm8001_id; |
| 59 | |
| 60 | LIST_HEAD(hba_list); |
| 61 | |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 62 | struct workqueue_struct *pm8001_wq; |
| 63 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 64 | /** |
| 65 | * The main structure which LLDD must register for scsi core. |
| 66 | */ |
| 67 | static struct scsi_host_template pm8001_sht = { |
| 68 | .module = THIS_MODULE, |
| 69 | .name = DRV_NAME, |
| 70 | .queuecommand = sas_queuecommand, |
| 71 | .target_alloc = sas_target_alloc, |
Dan Williams | 11e1636 | 2011-09-20 15:11:03 -0700 | [diff] [blame] | 72 | .slave_configure = sas_slave_configure, |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 73 | .scan_finished = pm8001_scan_finished, |
| 74 | .scan_start = pm8001_scan_start, |
| 75 | .change_queue_depth = sas_change_queue_depth, |
| 76 | .change_queue_type = sas_change_queue_type, |
| 77 | .bios_param = sas_bios_param, |
| 78 | .can_queue = 1, |
| 79 | .cmd_per_lun = 1, |
| 80 | .this_id = -1, |
| 81 | .sg_tablesize = SG_ALL, |
| 82 | .max_sectors = SCSI_DEFAULT_MAX_SECTORS, |
| 83 | .use_clustering = ENABLE_CLUSTERING, |
| 84 | .eh_device_reset_handler = sas_eh_device_reset_handler, |
| 85 | .eh_bus_reset_handler = sas_eh_bus_reset_handler, |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 86 | .target_destroy = sas_target_destroy, |
| 87 | .ioctl = sas_ioctl, |
| 88 | .shost_attrs = pm8001_host_attrs, |
| 89 | }; |
| 90 | |
| 91 | /** |
| 92 | * Sas layer call this function to execute specific task. |
| 93 | */ |
| 94 | static struct sas_domain_function_template pm8001_transport_ops = { |
| 95 | .lldd_dev_found = pm8001_dev_found, |
| 96 | .lldd_dev_gone = pm8001_dev_gone, |
| 97 | |
| 98 | .lldd_execute_task = pm8001_queue_command, |
| 99 | .lldd_control_phy = pm8001_phy_control, |
| 100 | |
| 101 | .lldd_abort_task = pm8001_abort_task, |
| 102 | .lldd_abort_task_set = pm8001_abort_task_set, |
| 103 | .lldd_clear_aca = pm8001_clear_aca, |
| 104 | .lldd_clear_task_set = pm8001_clear_task_set, |
| 105 | .lldd_I_T_nexus_reset = pm8001_I_T_nexus_reset, |
| 106 | .lldd_lu_reset = pm8001_lu_reset, |
| 107 | .lldd_query_task = pm8001_query_task, |
| 108 | }; |
| 109 | |
| 110 | /** |
| 111 | *pm8001_phy_init - initiate our adapter phys |
| 112 | *@pm8001_ha: our hba structure. |
| 113 | *@phy_id: phy id. |
| 114 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 115 | static void pm8001_phy_init(struct pm8001_hba_info *pm8001_ha, int phy_id) |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 116 | { |
| 117 | struct pm8001_phy *phy = &pm8001_ha->phy[phy_id]; |
| 118 | struct asd_sas_phy *sas_phy = &phy->sas_phy; |
| 119 | phy->phy_state = 0; |
| 120 | phy->pm8001_ha = pm8001_ha; |
| 121 | sas_phy->enabled = (phy_id < pm8001_ha->chip->n_phy) ? 1 : 0; |
| 122 | sas_phy->class = SAS; |
| 123 | sas_phy->iproto = SAS_PROTOCOL_ALL; |
| 124 | sas_phy->tproto = 0; |
| 125 | sas_phy->type = PHY_TYPE_PHYSICAL; |
| 126 | sas_phy->role = PHY_ROLE_INITIATOR; |
| 127 | sas_phy->oob_mode = OOB_NOT_CONNECTED; |
| 128 | sas_phy->linkrate = SAS_LINK_RATE_UNKNOWN; |
| 129 | sas_phy->id = phy_id; |
| 130 | sas_phy->sas_addr = &pm8001_ha->sas_addr[0]; |
| 131 | sas_phy->frame_rcvd = &phy->frame_rcvd[0]; |
| 132 | sas_phy->ha = (struct sas_ha_struct *)pm8001_ha->shost->hostdata; |
| 133 | sas_phy->lldd_phy = phy; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | *pm8001_free - free hba |
| 138 | *@pm8001_ha: our hba structure. |
| 139 | * |
| 140 | */ |
| 141 | static void pm8001_free(struct pm8001_hba_info *pm8001_ha) |
| 142 | { |
| 143 | int i; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 144 | |
| 145 | if (!pm8001_ha) |
| 146 | return; |
| 147 | |
| 148 | for (i = 0; i < USI_MAX_MEMCNT; i++) { |
| 149 | if (pm8001_ha->memoryMap.region[i].virt_ptr != NULL) { |
| 150 | pci_free_consistent(pm8001_ha->pdev, |
Sakthivel K | bfb4809 | 2013-02-04 12:10:02 +0530 | [diff] [blame] | 151 | (pm8001_ha->memoryMap.region[i].total_len + |
| 152 | pm8001_ha->memoryMap.region[i].alignment), |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 153 | pm8001_ha->memoryMap.region[i].virt_ptr, |
| 154 | pm8001_ha->memoryMap.region[i].phys_addr); |
| 155 | } |
| 156 | } |
| 157 | PM8001_CHIP_DISP->chip_iounmap(pm8001_ha); |
| 158 | if (pm8001_ha->shost) |
| 159 | scsi_host_put(pm8001_ha->shost); |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 160 | flush_workqueue(pm8001_wq); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 161 | kfree(pm8001_ha->tags); |
| 162 | kfree(pm8001_ha); |
| 163 | } |
| 164 | |
| 165 | #ifdef PM8001_USE_TASKLET |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 166 | |
| 167 | /** |
| 168 | * tasklet for 64 msi-x interrupt handler |
| 169 | * @opaque: the passed general host adapter struct |
| 170 | * Note: pm8001_tasklet is common for pm8001 & pm80xx |
| 171 | */ |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 172 | static void pm8001_tasklet(unsigned long opaque) |
| 173 | { |
| 174 | struct pm8001_hba_info *pm8001_ha; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 175 | u32 vec; |
Justin P. Mattock | 6eab04a | 2011-04-08 19:49:08 -0700 | [diff] [blame] | 176 | pm8001_ha = (struct pm8001_hba_info *)opaque; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 177 | if (unlikely(!pm8001_ha)) |
| 178 | BUG_ON(1); |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 179 | vec = pm8001_ha->int_vector; |
| 180 | PM8001_CHIP_DISP->isr(pm8001_ha, vec); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 181 | } |
| 182 | #endif |
| 183 | |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 184 | static struct pm8001_hba_info *outq_to_hba(u8 *outq) |
| 185 | { |
| 186 | return container_of((outq - *outq), struct pm8001_hba_info, outq[0]); |
| 187 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 188 | |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 189 | /** |
| 190 | * pm8001_interrupt_handler_msix - main MSIX interrupt handler. |
| 191 | * It obtains the vector number and calls the equivalent bottom |
| 192 | * half or services directly. |
| 193 | * @opaque: the passed outbound queue/vector. Host structure is |
| 194 | * retrieved from the same. |
| 195 | */ |
| 196 | static irqreturn_t pm8001_interrupt_handler_msix(int irq, void *opaque) |
| 197 | { |
| 198 | struct pm8001_hba_info *pm8001_ha = outq_to_hba(opaque); |
| 199 | u8 outq = *(u8 *)opaque; |
| 200 | irqreturn_t ret = IRQ_HANDLED; |
| 201 | if (unlikely(!pm8001_ha)) |
| 202 | return IRQ_NONE; |
| 203 | if (!PM8001_CHIP_DISP->is_our_interupt(pm8001_ha)) |
| 204 | return IRQ_NONE; |
| 205 | pm8001_ha->int_vector = outq; |
| 206 | #ifdef PM8001_USE_TASKLET |
| 207 | tasklet_schedule(&pm8001_ha->tasklet); |
| 208 | #else |
| 209 | ret = PM8001_CHIP_DISP->isr(pm8001_ha, outq); |
| 210 | #endif |
| 211 | return ret; |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * pm8001_interrupt_handler_intx - main INTx interrupt handler. |
| 216 | * @dev_id: sas_ha structure. The HBA is retrieved from sas_has structure. |
| 217 | */ |
| 218 | |
| 219 | static irqreturn_t pm8001_interrupt_handler_intx(int irq, void *dev_id) |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 220 | { |
| 221 | struct pm8001_hba_info *pm8001_ha; |
| 222 | irqreturn_t ret = IRQ_HANDLED; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 223 | struct sas_ha_struct *sha = dev_id; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 224 | pm8001_ha = sha->lldd_ha; |
| 225 | if (unlikely(!pm8001_ha)) |
| 226 | return IRQ_NONE; |
| 227 | if (!PM8001_CHIP_DISP->is_our_interupt(pm8001_ha)) |
| 228 | return IRQ_NONE; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 229 | |
| 230 | pm8001_ha->int_vector = 0; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 231 | #ifdef PM8001_USE_TASKLET |
| 232 | tasklet_schedule(&pm8001_ha->tasklet); |
| 233 | #else |
Sakthivel K | f74cf27 | 2013-02-27 20:27:43 +0530 | [diff] [blame] | 234 | ret = PM8001_CHIP_DISP->isr(pm8001_ha, 0); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 235 | #endif |
| 236 | return ret; |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * pm8001_alloc - initiate our hba structure and 6 DMAs area. |
| 241 | * @pm8001_ha:our hba structure. |
| 242 | * |
| 243 | */ |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 244 | static int pm8001_alloc(struct pm8001_hba_info *pm8001_ha, |
| 245 | const struct pci_device_id *ent) |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 246 | { |
| 247 | int i; |
| 248 | spin_lock_init(&pm8001_ha->lock); |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 249 | PM8001_INIT_DBG(pm8001_ha, |
| 250 | pm8001_printk("pm8001_alloc: PHY:%x\n", |
| 251 | pm8001_ha->chip->n_phy)); |
jack wang | 1cc943a | 2009-12-07 17:22:42 +0800 | [diff] [blame] | 252 | for (i = 0; i < pm8001_ha->chip->n_phy; i++) { |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 253 | pm8001_phy_init(pm8001_ha, i); |
jack wang | 1cc943a | 2009-12-07 17:22:42 +0800 | [diff] [blame] | 254 | pm8001_ha->port[i].wide_port_phymap = 0; |
| 255 | pm8001_ha->port[i].port_attached = 0; |
| 256 | pm8001_ha->port[i].port_state = 0; |
| 257 | INIT_LIST_HEAD(&pm8001_ha->port[i].list); |
| 258 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 259 | |
jack_wang | 97ee208 | 2009-11-05 22:33:51 +0800 | [diff] [blame] | 260 | pm8001_ha->tags = kzalloc(PM8001_MAX_CCB, GFP_KERNEL); |
| 261 | if (!pm8001_ha->tags) |
| 262 | goto err_out; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 263 | /* MPI Memory region 1 for AAP Event Log for fw */ |
| 264 | pm8001_ha->memoryMap.region[AAP1].num_elements = 1; |
| 265 | pm8001_ha->memoryMap.region[AAP1].element_size = PM8001_EVENT_LOG_SIZE; |
| 266 | pm8001_ha->memoryMap.region[AAP1].total_len = PM8001_EVENT_LOG_SIZE; |
| 267 | pm8001_ha->memoryMap.region[AAP1].alignment = 32; |
| 268 | |
| 269 | /* MPI Memory region 2 for IOP Event Log for fw */ |
| 270 | pm8001_ha->memoryMap.region[IOP].num_elements = 1; |
| 271 | pm8001_ha->memoryMap.region[IOP].element_size = PM8001_EVENT_LOG_SIZE; |
| 272 | pm8001_ha->memoryMap.region[IOP].total_len = PM8001_EVENT_LOG_SIZE; |
| 273 | pm8001_ha->memoryMap.region[IOP].alignment = 32; |
| 274 | |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 275 | for (i = 0; i < PM8001_MAX_SPCV_INB_NUM; i++) { |
| 276 | /* MPI Memory region 3 for consumer Index of inbound queues */ |
| 277 | pm8001_ha->memoryMap.region[CI+i].num_elements = 1; |
| 278 | pm8001_ha->memoryMap.region[CI+i].element_size = 4; |
| 279 | pm8001_ha->memoryMap.region[CI+i].total_len = 4; |
| 280 | pm8001_ha->memoryMap.region[CI+i].alignment = 4; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 281 | |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 282 | if ((ent->driver_data) != chip_8001) { |
| 283 | /* MPI Memory region 5 inbound queues */ |
| 284 | pm8001_ha->memoryMap.region[IB+i].num_elements = |
| 285 | PM8001_MPI_QUEUE; |
| 286 | pm8001_ha->memoryMap.region[IB+i].element_size = 128; |
| 287 | pm8001_ha->memoryMap.region[IB+i].total_len = |
| 288 | PM8001_MPI_QUEUE * 128; |
| 289 | pm8001_ha->memoryMap.region[IB+i].alignment = 128; |
| 290 | } else { |
| 291 | pm8001_ha->memoryMap.region[IB+i].num_elements = |
| 292 | PM8001_MPI_QUEUE; |
| 293 | pm8001_ha->memoryMap.region[IB+i].element_size = 64; |
| 294 | pm8001_ha->memoryMap.region[IB+i].total_len = |
| 295 | PM8001_MPI_QUEUE * 64; |
| 296 | pm8001_ha->memoryMap.region[IB+i].alignment = 64; |
| 297 | } |
| 298 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 299 | |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 300 | for (i = 0; i < PM8001_MAX_SPCV_OUTB_NUM; i++) { |
| 301 | /* MPI Memory region 4 for producer Index of outbound queues */ |
| 302 | pm8001_ha->memoryMap.region[PI+i].num_elements = 1; |
| 303 | pm8001_ha->memoryMap.region[PI+i].element_size = 4; |
| 304 | pm8001_ha->memoryMap.region[PI+i].total_len = 4; |
| 305 | pm8001_ha->memoryMap.region[PI+i].alignment = 4; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 306 | |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 307 | if (ent->driver_data != chip_8001) { |
| 308 | /* MPI Memory region 6 Outbound queues */ |
| 309 | pm8001_ha->memoryMap.region[OB+i].num_elements = |
| 310 | PM8001_MPI_QUEUE; |
| 311 | pm8001_ha->memoryMap.region[OB+i].element_size = 128; |
| 312 | pm8001_ha->memoryMap.region[OB+i].total_len = |
| 313 | PM8001_MPI_QUEUE * 128; |
| 314 | pm8001_ha->memoryMap.region[OB+i].alignment = 128; |
| 315 | } else { |
| 316 | /* MPI Memory region 6 Outbound queues */ |
| 317 | pm8001_ha->memoryMap.region[OB+i].num_elements = |
| 318 | PM8001_MPI_QUEUE; |
| 319 | pm8001_ha->memoryMap.region[OB+i].element_size = 64; |
| 320 | pm8001_ha->memoryMap.region[OB+i].total_len = |
| 321 | PM8001_MPI_QUEUE * 64; |
| 322 | pm8001_ha->memoryMap.region[OB+i].alignment = 64; |
| 323 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 324 | |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 325 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 326 | /* Memory region write DMA*/ |
| 327 | pm8001_ha->memoryMap.region[NVMD].num_elements = 1; |
| 328 | pm8001_ha->memoryMap.region[NVMD].element_size = 4096; |
| 329 | pm8001_ha->memoryMap.region[NVMD].total_len = 4096; |
| 330 | /* Memory region for devices*/ |
| 331 | pm8001_ha->memoryMap.region[DEV_MEM].num_elements = 1; |
| 332 | pm8001_ha->memoryMap.region[DEV_MEM].element_size = PM8001_MAX_DEVICES * |
| 333 | sizeof(struct pm8001_device); |
| 334 | pm8001_ha->memoryMap.region[DEV_MEM].total_len = PM8001_MAX_DEVICES * |
| 335 | sizeof(struct pm8001_device); |
| 336 | |
| 337 | /* Memory region for ccb_info*/ |
| 338 | pm8001_ha->memoryMap.region[CCB_MEM].num_elements = 1; |
| 339 | pm8001_ha->memoryMap.region[CCB_MEM].element_size = PM8001_MAX_CCB * |
| 340 | sizeof(struct pm8001_ccb_info); |
| 341 | pm8001_ha->memoryMap.region[CCB_MEM].total_len = PM8001_MAX_CCB * |
| 342 | sizeof(struct pm8001_ccb_info); |
| 343 | |
Sakthivel K | 1c75a67 | 2013-03-19 18:06:40 +0530 | [diff] [blame] | 344 | /* Memory region for fw flash */ |
| 345 | pm8001_ha->memoryMap.region[FW_FLASH].total_len = 4096; |
| 346 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 347 | for (i = 0; i < USI_MAX_MEMCNT; i++) { |
| 348 | if (pm8001_mem_alloc(pm8001_ha->pdev, |
| 349 | &pm8001_ha->memoryMap.region[i].virt_ptr, |
| 350 | &pm8001_ha->memoryMap.region[i].phys_addr, |
| 351 | &pm8001_ha->memoryMap.region[i].phys_addr_hi, |
| 352 | &pm8001_ha->memoryMap.region[i].phys_addr_lo, |
| 353 | pm8001_ha->memoryMap.region[i].total_len, |
| 354 | pm8001_ha->memoryMap.region[i].alignment) != 0) { |
| 355 | PM8001_FAIL_DBG(pm8001_ha, |
| 356 | pm8001_printk("Mem%d alloc failed\n", |
| 357 | i)); |
| 358 | goto err_out; |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | pm8001_ha->devices = pm8001_ha->memoryMap.region[DEV_MEM].virt_ptr; |
| 363 | for (i = 0; i < PM8001_MAX_DEVICES; i++) { |
| 364 | pm8001_ha->devices[i].dev_type = NO_DEVICE; |
| 365 | pm8001_ha->devices[i].id = i; |
| 366 | pm8001_ha->devices[i].device_id = PM8001_MAX_DEVICES; |
| 367 | pm8001_ha->devices[i].running_req = 0; |
| 368 | } |
| 369 | pm8001_ha->ccb_info = pm8001_ha->memoryMap.region[CCB_MEM].virt_ptr; |
| 370 | for (i = 0; i < PM8001_MAX_CCB; i++) { |
| 371 | pm8001_ha->ccb_info[i].ccb_dma_handle = |
| 372 | pm8001_ha->memoryMap.region[CCB_MEM].phys_addr + |
| 373 | i * sizeof(struct pm8001_ccb_info); |
jack_wang | 97ee208 | 2009-11-05 22:33:51 +0800 | [diff] [blame] | 374 | pm8001_ha->ccb_info[i].task = NULL; |
| 375 | pm8001_ha->ccb_info[i].ccb_tag = 0xffffffff; |
| 376 | pm8001_ha->ccb_info[i].device = NULL; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 377 | ++pm8001_ha->tags_num; |
| 378 | } |
| 379 | pm8001_ha->flags = PM8001F_INIT_TIME; |
| 380 | /* Initialize tags */ |
| 381 | pm8001_tag_init(pm8001_ha); |
| 382 | return 0; |
| 383 | err_out: |
| 384 | return 1; |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * pm8001_ioremap - remap the pci high physical address to kernal virtual |
| 389 | * address so that we can access them. |
| 390 | * @pm8001_ha:our hba structure. |
| 391 | */ |
| 392 | static int pm8001_ioremap(struct pm8001_hba_info *pm8001_ha) |
| 393 | { |
| 394 | u32 bar; |
| 395 | u32 logicalBar = 0; |
| 396 | struct pci_dev *pdev; |
| 397 | |
| 398 | pdev = pm8001_ha->pdev; |
| 399 | /* map pci mem (PMC pci base 0-3)*/ |
| 400 | for (bar = 0; bar < 6; bar++) { |
| 401 | /* |
| 402 | ** logical BARs for SPC: |
| 403 | ** bar 0 and 1 - logical BAR0 |
| 404 | ** bar 2 and 3 - logical BAR1 |
| 405 | ** bar4 - logical BAR2 |
| 406 | ** bar5 - logical BAR3 |
| 407 | ** Skip the appropriate assignments: |
| 408 | */ |
| 409 | if ((bar == 1) || (bar == 3)) |
| 410 | continue; |
| 411 | if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) { |
| 412 | pm8001_ha->io_mem[logicalBar].membase = |
| 413 | pci_resource_start(pdev, bar); |
| 414 | pm8001_ha->io_mem[logicalBar].membase &= |
| 415 | (u32)PCI_BASE_ADDRESS_MEM_MASK; |
| 416 | pm8001_ha->io_mem[logicalBar].memsize = |
| 417 | pci_resource_len(pdev, bar); |
| 418 | pm8001_ha->io_mem[logicalBar].memvirtaddr = |
| 419 | ioremap(pm8001_ha->io_mem[logicalBar].membase, |
| 420 | pm8001_ha->io_mem[logicalBar].memsize); |
| 421 | PM8001_INIT_DBG(pm8001_ha, |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 422 | pm8001_printk("PCI: bar %d, logicalBar %d ", |
| 423 | bar, logicalBar)); |
| 424 | PM8001_INIT_DBG(pm8001_ha, pm8001_printk( |
| 425 | "base addr %llx virt_addr=%llx len=%d\n", |
| 426 | (u64)pm8001_ha->io_mem[logicalBar].membase, |
| 427 | (u64)pm8001_ha->io_mem[logicalBar].memvirtaddr, |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 428 | pm8001_ha->io_mem[logicalBar].memsize)); |
| 429 | } else { |
| 430 | pm8001_ha->io_mem[logicalBar].membase = 0; |
| 431 | pm8001_ha->io_mem[logicalBar].memsize = 0; |
| 432 | pm8001_ha->io_mem[logicalBar].memvirtaddr = 0; |
| 433 | } |
| 434 | logicalBar++; |
| 435 | } |
| 436 | return 0; |
| 437 | } |
| 438 | |
| 439 | /** |
| 440 | * pm8001_pci_alloc - initialize our ha card structure |
| 441 | * @pdev: pci device. |
| 442 | * @ent: ent |
| 443 | * @shost: scsi host struct which has been initialized before. |
| 444 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 445 | static struct pm8001_hba_info *pm8001_pci_alloc(struct pci_dev *pdev, |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 446 | const struct pci_device_id *ent, |
| 447 | struct Scsi_Host *shost) |
| 448 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 449 | { |
| 450 | struct pm8001_hba_info *pm8001_ha; |
| 451 | struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost); |
| 452 | |
| 453 | |
| 454 | pm8001_ha = sha->lldd_ha; |
| 455 | if (!pm8001_ha) |
| 456 | return NULL; |
| 457 | |
| 458 | pm8001_ha->pdev = pdev; |
| 459 | pm8001_ha->dev = &pdev->dev; |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 460 | pm8001_ha->chip_id = ent->driver_data; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 461 | pm8001_ha->chip = &pm8001_chips[pm8001_ha->chip_id]; |
| 462 | pm8001_ha->irq = pdev->irq; |
| 463 | pm8001_ha->sas = sha; |
| 464 | pm8001_ha->shost = shost; |
| 465 | pm8001_ha->id = pm8001_id++; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 466 | pm8001_ha->logging_level = 0x01; |
| 467 | sprintf(pm8001_ha->name, "%s%d", DRV_NAME, pm8001_ha->id); |
Sakthivel K | f74cf27 | 2013-02-27 20:27:43 +0530 | [diff] [blame] | 468 | /* IOMB size is 128 for 8088/89 controllers */ |
| 469 | if (pm8001_ha->chip_id != chip_8001) |
| 470 | pm8001_ha->iomb_size = IOMB_SIZE_SPCV; |
| 471 | else |
| 472 | pm8001_ha->iomb_size = IOMB_SIZE_SPC; |
| 473 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 474 | #ifdef PM8001_USE_TASKLET |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 475 | /** |
| 476 | * default tasklet for non msi-x interrupt handler/first msi-x |
| 477 | * interrupt handler |
| 478 | **/ |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 479 | tasklet_init(&pm8001_ha->tasklet, pm8001_tasklet, |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 480 | (unsigned long)pm8001_ha); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 481 | #endif |
| 482 | pm8001_ioremap(pm8001_ha); |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 483 | if (!pm8001_alloc(pm8001_ha, ent)) |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 484 | return pm8001_ha; |
| 485 | pm8001_free(pm8001_ha); |
| 486 | return NULL; |
| 487 | } |
| 488 | |
| 489 | /** |
| 490 | * pci_go_44 - pm8001 specified, its DMA is 44 bit rather than 64 bit |
| 491 | * @pdev: pci device. |
| 492 | */ |
| 493 | static int pci_go_44(struct pci_dev *pdev) |
| 494 | { |
| 495 | int rc; |
| 496 | |
| 497 | if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(44))) { |
| 498 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(44)); |
| 499 | if (rc) { |
| 500 | rc = pci_set_consistent_dma_mask(pdev, |
| 501 | DMA_BIT_MASK(32)); |
| 502 | if (rc) { |
| 503 | dev_printk(KERN_ERR, &pdev->dev, |
| 504 | "44-bit DMA enable failed\n"); |
| 505 | return rc; |
| 506 | } |
| 507 | } |
| 508 | } else { |
| 509 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 510 | if (rc) { |
| 511 | dev_printk(KERN_ERR, &pdev->dev, |
| 512 | "32-bit DMA enable failed\n"); |
| 513 | return rc; |
| 514 | } |
| 515 | rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 516 | if (rc) { |
| 517 | dev_printk(KERN_ERR, &pdev->dev, |
| 518 | "32-bit consistent DMA enable failed\n"); |
| 519 | return rc; |
| 520 | } |
| 521 | } |
| 522 | return rc; |
| 523 | } |
| 524 | |
| 525 | /** |
| 526 | * pm8001_prep_sas_ha_init - allocate memory in general hba struct && init them. |
| 527 | * @shost: scsi host which has been allocated outside. |
| 528 | * @chip_info: our ha struct. |
| 529 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 530 | static int pm8001_prep_sas_ha_init(struct Scsi_Host *shost, |
| 531 | const struct pm8001_chip_info *chip_info) |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 532 | { |
| 533 | int phy_nr, port_nr; |
| 534 | struct asd_sas_phy **arr_phy; |
| 535 | struct asd_sas_port **arr_port; |
| 536 | struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost); |
| 537 | |
| 538 | phy_nr = chip_info->n_phy; |
| 539 | port_nr = phy_nr; |
| 540 | memset(sha, 0x00, sizeof(*sha)); |
| 541 | arr_phy = kcalloc(phy_nr, sizeof(void *), GFP_KERNEL); |
| 542 | if (!arr_phy) |
| 543 | goto exit; |
| 544 | arr_port = kcalloc(port_nr, sizeof(void *), GFP_KERNEL); |
| 545 | if (!arr_port) |
| 546 | goto exit_free2; |
| 547 | |
| 548 | sha->sas_phy = arr_phy; |
| 549 | sha->sas_port = arr_port; |
| 550 | sha->lldd_ha = kzalloc(sizeof(struct pm8001_hba_info), GFP_KERNEL); |
| 551 | if (!sha->lldd_ha) |
| 552 | goto exit_free1; |
| 553 | |
| 554 | shost->transportt = pm8001_stt; |
| 555 | shost->max_id = PM8001_MAX_DEVICES; |
| 556 | shost->max_lun = 8; |
| 557 | shost->max_channel = 0; |
| 558 | shost->unique_id = pm8001_id; |
| 559 | shost->max_cmd_len = 16; |
| 560 | shost->can_queue = PM8001_CAN_QUEUE; |
| 561 | shost->cmd_per_lun = 32; |
| 562 | return 0; |
| 563 | exit_free1: |
| 564 | kfree(arr_port); |
| 565 | exit_free2: |
| 566 | kfree(arr_phy); |
| 567 | exit: |
| 568 | return -1; |
| 569 | } |
| 570 | |
| 571 | /** |
| 572 | * pm8001_post_sas_ha_init - initialize general hba struct defined in libsas |
| 573 | * @shost: scsi host which has been allocated outside |
| 574 | * @chip_info: our ha struct. |
| 575 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 576 | static void pm8001_post_sas_ha_init(struct Scsi_Host *shost, |
| 577 | const struct pm8001_chip_info *chip_info) |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 578 | { |
| 579 | int i = 0; |
| 580 | struct pm8001_hba_info *pm8001_ha; |
| 581 | struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost); |
| 582 | |
| 583 | pm8001_ha = sha->lldd_ha; |
| 584 | for (i = 0; i < chip_info->n_phy; i++) { |
| 585 | sha->sas_phy[i] = &pm8001_ha->phy[i].sas_phy; |
| 586 | sha->sas_port[i] = &pm8001_ha->port[i].sas_port; |
| 587 | } |
| 588 | sha->sas_ha_name = DRV_NAME; |
| 589 | sha->dev = pm8001_ha->dev; |
| 590 | |
| 591 | sha->lldd_module = THIS_MODULE; |
| 592 | sha->sas_addr = &pm8001_ha->sas_addr[0]; |
| 593 | sha->num_phys = chip_info->n_phy; |
| 594 | sha->lldd_max_execute_num = 1; |
| 595 | sha->lldd_queue_size = PM8001_CAN_QUEUE; |
| 596 | sha->core.shost = shost; |
| 597 | } |
| 598 | |
| 599 | /** |
| 600 | * pm8001_init_sas_add - initialize sas address |
| 601 | * @chip_info: our ha struct. |
| 602 | * |
| 603 | * Currently we just set the fixed SAS address to our HBA,for manufacture, |
| 604 | * it should read from the EEPROM |
| 605 | */ |
| 606 | static void pm8001_init_sas_add(struct pm8001_hba_info *pm8001_ha) |
| 607 | { |
| 608 | u8 i; |
| 609 | #ifdef PM8001_READ_VPD |
| 610 | DECLARE_COMPLETION_ONSTACK(completion); |
jack wang | 7c8356d | 2009-12-07 17:23:08 +0800 | [diff] [blame] | 611 | struct pm8001_ioctl_payload payload; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 612 | pm8001_ha->nvmd_completion = &completion; |
jack wang | 7c8356d | 2009-12-07 17:23:08 +0800 | [diff] [blame] | 613 | payload.minor_function = 0; |
| 614 | payload.length = 128; |
| 615 | payload.func_specific = kzalloc(128, GFP_KERNEL); |
| 616 | PM8001_CHIP_DISP->get_nvmd_req(pm8001_ha, &payload); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 617 | wait_for_completion(&completion); |
| 618 | for (i = 0; i < pm8001_ha->chip->n_phy; i++) { |
| 619 | memcpy(&pm8001_ha->phy[i].dev_sas_addr, pm8001_ha->sas_addr, |
| 620 | SAS_ADDR_SIZE); |
| 621 | PM8001_INIT_DBG(pm8001_ha, |
jack wang | 7c8356d | 2009-12-07 17:23:08 +0800 | [diff] [blame] | 622 | pm8001_printk("phy %d sas_addr = %016llx \n", i, |
| 623 | pm8001_ha->phy[i].dev_sas_addr)); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 624 | } |
| 625 | #else |
| 626 | for (i = 0; i < pm8001_ha->chip->n_phy; i++) { |
jack wang | 7c8356d | 2009-12-07 17:23:08 +0800 | [diff] [blame] | 627 | pm8001_ha->phy[i].dev_sas_addr = 0x50010c600047f9d0ULL; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 628 | pm8001_ha->phy[i].dev_sas_addr = |
| 629 | cpu_to_be64((u64) |
| 630 | (*(u64 *)&pm8001_ha->phy[i].dev_sas_addr)); |
| 631 | } |
| 632 | memcpy(pm8001_ha->sas_addr, &pm8001_ha->phy[0].dev_sas_addr, |
| 633 | SAS_ADDR_SIZE); |
| 634 | #endif |
| 635 | } |
| 636 | |
| 637 | #ifdef PM8001_USE_MSIX |
| 638 | /** |
| 639 | * pm8001_setup_msix - enable MSI-X interrupt |
| 640 | * @chip_info: our ha struct. |
| 641 | * @irq_handler: irq_handler |
| 642 | */ |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 643 | static u32 pm8001_setup_msix(struct pm8001_hba_info *pm8001_ha) |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 644 | { |
| 645 | u32 i = 0, j = 0; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 646 | u32 number_of_intr; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 647 | int flag = 0; |
| 648 | u32 max_entry; |
| 649 | int rc; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 650 | static char intr_drvname[PM8001_MAX_MSIX_VEC][sizeof(DRV_NAME)+3]; |
| 651 | |
| 652 | /* SPCv controllers supports 64 msi-x */ |
| 653 | if (pm8001_ha->chip_id == chip_8001) { |
| 654 | number_of_intr = 1; |
| 655 | flag |= IRQF_DISABLED; |
| 656 | } else { |
| 657 | number_of_intr = PM8001_MAX_MSIX_VEC; |
| 658 | flag &= ~IRQF_SHARED; |
| 659 | flag |= IRQF_DISABLED; |
| 660 | } |
| 661 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 662 | max_entry = sizeof(pm8001_ha->msix_entries) / |
| 663 | sizeof(pm8001_ha->msix_entries[0]); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 664 | for (i = 0; i < max_entry ; i++) |
| 665 | pm8001_ha->msix_entries[i].entry = i; |
| 666 | rc = pci_enable_msix(pm8001_ha->pdev, pm8001_ha->msix_entries, |
| 667 | number_of_intr); |
| 668 | pm8001_ha->number_of_intr = number_of_intr; |
| 669 | if (!rc) { |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 670 | PM8001_INIT_DBG(pm8001_ha, pm8001_printk( |
| 671 | "pci_enable_msix request ret:%d no of intr %d\n", |
| 672 | rc, pm8001_ha->number_of_intr)); |
| 673 | |
| 674 | for (i = 0; i < number_of_intr; i++) |
| 675 | pm8001_ha->outq[i] = i; |
| 676 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 677 | for (i = 0; i < number_of_intr; i++) { |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 678 | snprintf(intr_drvname[i], sizeof(intr_drvname[0]), |
| 679 | DRV_NAME"%d", i); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 680 | if (request_irq(pm8001_ha->msix_entries[i].vector, |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 681 | pm8001_interrupt_handler_msix, flag, |
| 682 | intr_drvname[i], &pm8001_ha->outq[i])) { |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 683 | for (j = 0; j < i; j++) |
| 684 | free_irq( |
| 685 | pm8001_ha->msix_entries[j].vector, |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 686 | &pm8001_ha->outq[j]); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 687 | pci_disable_msix(pm8001_ha->pdev); |
| 688 | break; |
| 689 | } |
| 690 | } |
| 691 | } |
| 692 | return rc; |
| 693 | } |
| 694 | #endif |
| 695 | |
| 696 | /** |
| 697 | * pm8001_request_irq - register interrupt |
| 698 | * @chip_info: our ha struct. |
| 699 | */ |
| 700 | static u32 pm8001_request_irq(struct pm8001_hba_info *pm8001_ha) |
| 701 | { |
| 702 | struct pci_dev *pdev; |
jack_wang | 97ee208 | 2009-11-05 22:33:51 +0800 | [diff] [blame] | 703 | int rc; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 704 | |
| 705 | pdev = pm8001_ha->pdev; |
| 706 | |
| 707 | #ifdef PM8001_USE_MSIX |
| 708 | if (pci_find_capability(pdev, PCI_CAP_ID_MSIX)) |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 709 | return pm8001_setup_msix(pm8001_ha); |
| 710 | else { |
| 711 | PM8001_INIT_DBG(pm8001_ha, |
| 712 | pm8001_printk("MSIX not supported!!!\n")); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 713 | goto intx; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 714 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 715 | #endif |
| 716 | |
| 717 | intx: |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 718 | /* initialize the INT-X interrupt */ |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 719 | rc = request_irq(pdev->irq, pm8001_interrupt_handler_intx, IRQF_SHARED, |
| 720 | DRV_NAME, SHOST_TO_SAS_HA(pm8001_ha->shost)); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 721 | return rc; |
| 722 | } |
| 723 | |
| 724 | /** |
| 725 | * pm8001_pci_probe - probe supported device |
| 726 | * @pdev: pci device which kernel has been prepared for. |
| 727 | * @ent: pci device id |
| 728 | * |
| 729 | * This function is the main initialization function, when register a new |
| 730 | * pci driver it is invoked, all struct an hardware initilization should be done |
| 731 | * here, also, register interrupt |
| 732 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 733 | static int pm8001_pci_probe(struct pci_dev *pdev, |
| 734 | const struct pci_device_id *ent) |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 735 | { |
| 736 | unsigned int rc; |
| 737 | u32 pci_reg; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 738 | u8 i = 0; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 739 | struct pm8001_hba_info *pm8001_ha; |
| 740 | struct Scsi_Host *shost = NULL; |
| 741 | const struct pm8001_chip_info *chip; |
| 742 | |
| 743 | dev_printk(KERN_INFO, &pdev->dev, |
Sakthivel K | a70b8fc | 2013-03-19 18:07:09 +0530 | [diff] [blame^] | 744 | "pm80xx: driver version %s\n", DRV_VERSION); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 745 | rc = pci_enable_device(pdev); |
| 746 | if (rc) |
| 747 | goto err_out_enable; |
| 748 | pci_set_master(pdev); |
| 749 | /* |
| 750 | * Enable pci slot busmaster by setting pci command register. |
| 751 | * This is required by FW for Cyclone card. |
| 752 | */ |
| 753 | |
| 754 | pci_read_config_dword(pdev, PCI_COMMAND, &pci_reg); |
| 755 | pci_reg |= 0x157; |
| 756 | pci_write_config_dword(pdev, PCI_COMMAND, pci_reg); |
| 757 | rc = pci_request_regions(pdev, DRV_NAME); |
| 758 | if (rc) |
| 759 | goto err_out_disable; |
| 760 | rc = pci_go_44(pdev); |
| 761 | if (rc) |
| 762 | goto err_out_regions; |
| 763 | |
| 764 | shost = scsi_host_alloc(&pm8001_sht, sizeof(void *)); |
| 765 | if (!shost) { |
| 766 | rc = -ENOMEM; |
| 767 | goto err_out_regions; |
| 768 | } |
| 769 | chip = &pm8001_chips[ent->driver_data]; |
| 770 | SHOST_TO_SAS_HA(shost) = |
Julia Lawall | 3dbf6c0 | 2009-12-19 08:17:27 +0100 | [diff] [blame] | 771 | kzalloc(sizeof(struct sas_ha_struct), GFP_KERNEL); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 772 | if (!SHOST_TO_SAS_HA(shost)) { |
| 773 | rc = -ENOMEM; |
| 774 | goto err_out_free_host; |
| 775 | } |
| 776 | |
| 777 | rc = pm8001_prep_sas_ha_init(shost, chip); |
| 778 | if (rc) { |
| 779 | rc = -ENOMEM; |
| 780 | goto err_out_free; |
| 781 | } |
| 782 | pci_set_drvdata(pdev, SHOST_TO_SAS_HA(shost)); |
Sakthivel K | e590adf | 2013-02-27 20:25:25 +0530 | [diff] [blame] | 783 | /* ent->driver variable is used to differentiate between controllers */ |
| 784 | pm8001_ha = pm8001_pci_alloc(pdev, ent, shost); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 785 | if (!pm8001_ha) { |
| 786 | rc = -ENOMEM; |
| 787 | goto err_out_free; |
| 788 | } |
| 789 | list_add_tail(&pm8001_ha->list, &hba_list); |
Sakthivel K | f586099 | 2013-04-17 16:37:02 +0530 | [diff] [blame] | 790 | PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 791 | rc = PM8001_CHIP_DISP->chip_init(pm8001_ha); |
Sakthivel K | a70b8fc | 2013-03-19 18:07:09 +0530 | [diff] [blame^] | 792 | if (rc) { |
| 793 | PM8001_FAIL_DBG(pm8001_ha, pm8001_printk( |
| 794 | "chip_init failed [ret: %d]\n", rc)); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 795 | goto err_out_ha_free; |
Sakthivel K | a70b8fc | 2013-03-19 18:07:09 +0530 | [diff] [blame^] | 796 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 797 | |
| 798 | rc = scsi_add_host(shost, &pdev->dev); |
| 799 | if (rc) |
| 800 | goto err_out_ha_free; |
| 801 | rc = pm8001_request_irq(pm8001_ha); |
Sakthivel K | a70b8fc | 2013-03-19 18:07:09 +0530 | [diff] [blame^] | 802 | if (rc) { |
| 803 | PM8001_FAIL_DBG(pm8001_ha, pm8001_printk( |
| 804 | "pm8001_request_irq failed [ret: %d]\n", rc)); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 805 | goto err_out_shost; |
Sakthivel K | a70b8fc | 2013-03-19 18:07:09 +0530 | [diff] [blame^] | 806 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 807 | |
Sakthivel K | f74cf27 | 2013-02-27 20:27:43 +0530 | [diff] [blame] | 808 | PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, 0); |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 809 | if (pm8001_ha->chip_id != chip_8001) { |
| 810 | for (i = 1; i < pm8001_ha->number_of_intr; i++) |
| 811 | PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i); |
| 812 | } |
| 813 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 814 | pm8001_init_sas_add(pm8001_ha); |
| 815 | pm8001_post_sas_ha_init(shost, chip); |
| 816 | rc = sas_register_ha(SHOST_TO_SAS_HA(shost)); |
| 817 | if (rc) |
| 818 | goto err_out_shost; |
| 819 | scsi_scan_host(pm8001_ha->shost); |
| 820 | return 0; |
| 821 | |
| 822 | err_out_shost: |
| 823 | scsi_remove_host(pm8001_ha->shost); |
| 824 | err_out_ha_free: |
| 825 | pm8001_free(pm8001_ha); |
| 826 | err_out_free: |
| 827 | kfree(SHOST_TO_SAS_HA(shost)); |
| 828 | err_out_free_host: |
| 829 | kfree(shost); |
| 830 | err_out_regions: |
| 831 | pci_release_regions(pdev); |
| 832 | err_out_disable: |
| 833 | pci_disable_device(pdev); |
| 834 | err_out_enable: |
| 835 | return rc; |
| 836 | } |
| 837 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 838 | static void pm8001_pci_remove(struct pci_dev *pdev) |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 839 | { |
| 840 | struct sas_ha_struct *sha = pci_get_drvdata(pdev); |
| 841 | struct pm8001_hba_info *pm8001_ha; |
| 842 | int i; |
| 843 | pm8001_ha = sha->lldd_ha; |
| 844 | pci_set_drvdata(pdev, NULL); |
| 845 | sas_unregister_ha(sha); |
| 846 | sas_remove_host(pm8001_ha->shost); |
| 847 | list_del(&pm8001_ha->list); |
| 848 | scsi_remove_host(pm8001_ha->shost); |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 849 | PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF); |
Sakthivel K | f586099 | 2013-04-17 16:37:02 +0530 | [diff] [blame] | 850 | PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 851 | |
| 852 | #ifdef PM8001_USE_MSIX |
| 853 | for (i = 0; i < pm8001_ha->number_of_intr; i++) |
| 854 | synchronize_irq(pm8001_ha->msix_entries[i].vector); |
| 855 | for (i = 0; i < pm8001_ha->number_of_intr; i++) |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 856 | free_irq(pm8001_ha->msix_entries[i].vector, |
| 857 | &pm8001_ha->outq[i]); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 858 | pci_disable_msix(pdev); |
| 859 | #else |
| 860 | free_irq(pm8001_ha->irq, sha); |
| 861 | #endif |
| 862 | #ifdef PM8001_USE_TASKLET |
| 863 | tasklet_kill(&pm8001_ha->tasklet); |
| 864 | #endif |
| 865 | pm8001_free(pm8001_ha); |
| 866 | kfree(sha->sas_phy); |
| 867 | kfree(sha->sas_port); |
| 868 | kfree(sha); |
| 869 | pci_release_regions(pdev); |
| 870 | pci_disable_device(pdev); |
| 871 | } |
| 872 | |
| 873 | /** |
| 874 | * pm8001_pci_suspend - power management suspend main entry point |
| 875 | * @pdev: PCI device struct |
| 876 | * @state: PM state change to (usually PCI_D3) |
| 877 | * |
| 878 | * Returns 0 success, anything else error. |
| 879 | */ |
| 880 | static int pm8001_pci_suspend(struct pci_dev *pdev, pm_message_t state) |
| 881 | { |
| 882 | struct sas_ha_struct *sha = pci_get_drvdata(pdev); |
| 883 | struct pm8001_hba_info *pm8001_ha; |
| 884 | int i , pos; |
| 885 | u32 device_state; |
| 886 | pm8001_ha = sha->lldd_ha; |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 887 | flush_workqueue(pm8001_wq); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 888 | scsi_block_requests(pm8001_ha->shost); |
| 889 | pos = pci_find_capability(pdev, PCI_CAP_ID_PM); |
| 890 | if (pos == 0) { |
| 891 | printk(KERN_ERR " PCI PM not supported\n"); |
| 892 | return -ENODEV; |
| 893 | } |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 894 | PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF); |
Sakthivel K | f586099 | 2013-04-17 16:37:02 +0530 | [diff] [blame] | 895 | PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 896 | #ifdef PM8001_USE_MSIX |
| 897 | for (i = 0; i < pm8001_ha->number_of_intr; i++) |
| 898 | synchronize_irq(pm8001_ha->msix_entries[i].vector); |
| 899 | for (i = 0; i < pm8001_ha->number_of_intr; i++) |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 900 | free_irq(pm8001_ha->msix_entries[i].vector, |
| 901 | &pm8001_ha->outq[i]); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 902 | pci_disable_msix(pdev); |
| 903 | #else |
| 904 | free_irq(pm8001_ha->irq, sha); |
| 905 | #endif |
| 906 | #ifdef PM8001_USE_TASKLET |
| 907 | tasklet_kill(&pm8001_ha->tasklet); |
| 908 | #endif |
| 909 | device_state = pci_choose_state(pdev, state); |
| 910 | pm8001_printk("pdev=0x%p, slot=%s, entering " |
| 911 | "operating state [D%d]\n", pdev, |
| 912 | pm8001_ha->name, device_state); |
| 913 | pci_save_state(pdev); |
| 914 | pci_disable_device(pdev); |
| 915 | pci_set_power_state(pdev, device_state); |
| 916 | return 0; |
| 917 | } |
| 918 | |
| 919 | /** |
| 920 | * pm8001_pci_resume - power management resume main entry point |
| 921 | * @pdev: PCI device struct |
| 922 | * |
| 923 | * Returns 0 success, anything else error. |
| 924 | */ |
| 925 | static int pm8001_pci_resume(struct pci_dev *pdev) |
| 926 | { |
| 927 | struct sas_ha_struct *sha = pci_get_drvdata(pdev); |
| 928 | struct pm8001_hba_info *pm8001_ha; |
| 929 | int rc; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 930 | u8 i = 0; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 931 | u32 device_state; |
| 932 | pm8001_ha = sha->lldd_ha; |
| 933 | device_state = pdev->current_state; |
| 934 | |
| 935 | pm8001_printk("pdev=0x%p, slot=%s, resuming from previous " |
| 936 | "operating state [D%d]\n", pdev, pm8001_ha->name, device_state); |
| 937 | |
| 938 | pci_set_power_state(pdev, PCI_D0); |
| 939 | pci_enable_wake(pdev, PCI_D0, 0); |
| 940 | pci_restore_state(pdev); |
| 941 | rc = pci_enable_device(pdev); |
| 942 | if (rc) { |
| 943 | pm8001_printk("slot=%s Enable device failed during resume\n", |
| 944 | pm8001_ha->name); |
| 945 | goto err_out_enable; |
| 946 | } |
| 947 | |
| 948 | pci_set_master(pdev); |
| 949 | rc = pci_go_44(pdev); |
| 950 | if (rc) |
| 951 | goto err_out_disable; |
| 952 | |
Sakthivel K | f586099 | 2013-04-17 16:37:02 +0530 | [diff] [blame] | 953 | /* chip soft rst only for spc */ |
| 954 | if (pm8001_ha->chip_id == chip_8001) { |
| 955 | PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha); |
| 956 | PM8001_INIT_DBG(pm8001_ha, |
| 957 | pm8001_printk("chip soft reset successful\n")); |
| 958 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 959 | rc = PM8001_CHIP_DISP->chip_init(pm8001_ha); |
| 960 | if (rc) |
| 961 | goto err_out_disable; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 962 | |
| 963 | /* disable all the interrupt bits */ |
| 964 | PM8001_CHIP_DISP->interrupt_disable(pm8001_ha, 0xFF); |
| 965 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 966 | rc = pm8001_request_irq(pm8001_ha); |
| 967 | if (rc) |
| 968 | goto err_out_disable; |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 969 | #ifdef PM8001_USE_TASKLET |
| 970 | /* default tasklet for non msi-x interrupt handler/first msi-x |
| 971 | * interrupt handler */ |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 972 | tasklet_init(&pm8001_ha->tasklet, pm8001_tasklet, |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 973 | (unsigned long)pm8001_ha); |
| 974 | #endif |
Sakthivel K | f74cf27 | 2013-02-27 20:27:43 +0530 | [diff] [blame] | 975 | PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, 0); |
Sakthivel K | 1245ee5 | 2013-03-19 17:56:17 +0530 | [diff] [blame] | 976 | if (pm8001_ha->chip_id != chip_8001) { |
| 977 | for (i = 1; i < pm8001_ha->number_of_intr; i++) |
| 978 | PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i); |
| 979 | } |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 980 | scsi_unblock_requests(pm8001_ha->shost); |
| 981 | return 0; |
| 982 | |
| 983 | err_out_disable: |
| 984 | scsi_remove_host(pm8001_ha->shost); |
| 985 | pci_disable_device(pdev); |
| 986 | err_out_enable: |
| 987 | return rc; |
| 988 | } |
| 989 | |
Sakthivel K | e574210 | 2013-04-17 16:26:36 +0530 | [diff] [blame] | 990 | /* update of pci device, vendor id and driver data with |
| 991 | * unique value for each of the controller |
| 992 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 993 | static struct pci_device_id pm8001_pci_table[] = { |
Sakthivel K | e574210 | 2013-04-17 16:26:36 +0530 | [diff] [blame] | 994 | { PCI_VDEVICE(PMC_Sierra, 0x8001), chip_8001 }, |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 995 | { |
| 996 | PCI_DEVICE(0x117c, 0x0042), |
| 997 | .driver_data = chip_8001 |
| 998 | }, |
Sakthivel K | e574210 | 2013-04-17 16:26:36 +0530 | [diff] [blame] | 999 | /* Support for SPC/SPCv/SPCve controllers */ |
| 1000 | { PCI_VDEVICE(ADAPTEC2, 0x8001), chip_8001 }, |
| 1001 | { PCI_VDEVICE(PMC_Sierra, 0x8008), chip_8008 }, |
| 1002 | { PCI_VDEVICE(ADAPTEC2, 0x8008), chip_8008 }, |
| 1003 | { PCI_VDEVICE(PMC_Sierra, 0x8018), chip_8018 }, |
| 1004 | { PCI_VDEVICE(ADAPTEC2, 0x8018), chip_8018 }, |
| 1005 | { PCI_VDEVICE(PMC_Sierra, 0x8009), chip_8009 }, |
| 1006 | { PCI_VDEVICE(ADAPTEC2, 0x8009), chip_8009 }, |
| 1007 | { PCI_VDEVICE(PMC_Sierra, 0x8019), chip_8019 }, |
| 1008 | { PCI_VDEVICE(ADAPTEC2, 0x8019), chip_8019 }, |
| 1009 | { PCI_VENDOR_ID_ADAPTEC2, 0x8081, |
| 1010 | PCI_VENDOR_ID_ADAPTEC2, 0x0400, 0, 0, chip_8001 }, |
| 1011 | { PCI_VENDOR_ID_ADAPTEC2, 0x8081, |
| 1012 | PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8001 }, |
| 1013 | { PCI_VENDOR_ID_ADAPTEC2, 0x8088, |
| 1014 | PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8008 }, |
| 1015 | { PCI_VENDOR_ID_ADAPTEC2, 0x8088, |
| 1016 | PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8008 }, |
| 1017 | { PCI_VENDOR_ID_ADAPTEC2, 0x8089, |
| 1018 | PCI_VENDOR_ID_ADAPTEC2, 0x0008, 0, 0, chip_8009 }, |
| 1019 | { PCI_VENDOR_ID_ADAPTEC2, 0x8089, |
| 1020 | PCI_VENDOR_ID_ADAPTEC2, 0x0800, 0, 0, chip_8009 }, |
| 1021 | { PCI_VENDOR_ID_ADAPTEC2, 0x8088, |
| 1022 | PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8018 }, |
| 1023 | { PCI_VENDOR_ID_ADAPTEC2, 0x8088, |
| 1024 | PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8018 }, |
| 1025 | { PCI_VENDOR_ID_ADAPTEC2, 0x8089, |
| 1026 | PCI_VENDOR_ID_ADAPTEC2, 0x0016, 0, 0, chip_8019 }, |
| 1027 | { PCI_VENDOR_ID_ADAPTEC2, 0x8089, |
| 1028 | PCI_VENDOR_ID_ADAPTEC2, 0x1600, 0, 0, chip_8019 }, |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1029 | {} /* terminate list */ |
| 1030 | }; |
| 1031 | |
| 1032 | static struct pci_driver pm8001_pci_driver = { |
| 1033 | .name = DRV_NAME, |
| 1034 | .id_table = pm8001_pci_table, |
| 1035 | .probe = pm8001_pci_probe, |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 1036 | .remove = pm8001_pci_remove, |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1037 | .suspend = pm8001_pci_suspend, |
| 1038 | .resume = pm8001_pci_resume, |
| 1039 | }; |
| 1040 | |
| 1041 | /** |
| 1042 | * pm8001_init - initialize scsi transport template |
| 1043 | */ |
| 1044 | static int __init pm8001_init(void) |
| 1045 | { |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 1046 | int rc = -ENOMEM; |
| 1047 | |
Sakthivel K | a70b8fc | 2013-03-19 18:07:09 +0530 | [diff] [blame^] | 1048 | pm8001_wq = alloc_workqueue("pm80xx", 0, 0); |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 1049 | if (!pm8001_wq) |
| 1050 | goto err; |
| 1051 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1052 | pm8001_id = 0; |
| 1053 | pm8001_stt = sas_domain_attach_transport(&pm8001_transport_ops); |
| 1054 | if (!pm8001_stt) |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 1055 | goto err_wq; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1056 | rc = pci_register_driver(&pm8001_pci_driver); |
| 1057 | if (rc) |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 1058 | goto err_tp; |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1059 | return 0; |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 1060 | |
| 1061 | err_tp: |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1062 | sas_release_transport(pm8001_stt); |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 1063 | err_wq: |
| 1064 | destroy_workqueue(pm8001_wq); |
| 1065 | err: |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1066 | return rc; |
| 1067 | } |
| 1068 | |
| 1069 | static void __exit pm8001_exit(void) |
| 1070 | { |
| 1071 | pci_unregister_driver(&pm8001_pci_driver); |
| 1072 | sas_release_transport(pm8001_stt); |
Tejun Heo | 429305e | 2011-01-24 14:57:29 +0100 | [diff] [blame] | 1073 | destroy_workqueue(pm8001_wq); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | module_init(pm8001_init); |
| 1077 | module_exit(pm8001_exit); |
| 1078 | |
| 1079 | MODULE_AUTHOR("Jack Wang <jack_wang@usish.com>"); |
Sakthivel K | e574210 | 2013-04-17 16:26:36 +0530 | [diff] [blame] | 1080 | MODULE_DESCRIPTION( |
| 1081 | "PMC-Sierra PM8001/8081/8088/8089 SAS/SATA controller driver"); |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1082 | MODULE_VERSION(DRV_VERSION); |
| 1083 | MODULE_LICENSE("GPL"); |
| 1084 | MODULE_DEVICE_TABLE(pci, pm8001_pci_table); |
| 1085 | |