Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 1 | /* bnx2i.c: Broadcom NetXtreme II iSCSI driver. |
| 2 | * |
Eddie Wai | ea9582d | 2011-06-23 15:51:37 -0700 | [diff] [blame] | 3 | * Copyright (c) 2006 - 2011 Broadcom Corporation |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 4 | * Copyright (c) 2007, 2008 Red Hat, Inc. All rights reserved. |
| 5 | * Copyright (c) 2007, 2008 Mike Christie |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation. |
| 10 | * |
| 11 | * Written by: Anil Veerabhadrappa (anilgv@broadcom.com) |
Eddie Wai | 11cec1e | 2010-11-23 15:29:31 -0800 | [diff] [blame] | 12 | * Maintained by: Eddie Wai (eddie.wai@broadcom.com) |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include "bnx2i.h" |
| 16 | |
| 17 | static struct list_head adapter_list = LIST_HEAD_INIT(adapter_list); |
| 18 | static u32 adapter_count; |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 19 | |
| 20 | #define DRV_MODULE_NAME "bnx2i" |
Eddie Wai | ea9582d | 2011-06-23 15:51:37 -0700 | [diff] [blame] | 21 | #define DRV_MODULE_VERSION "2.7.0.3" |
| 22 | #define DRV_MODULE_RELDATE "Jun 15, 2011" |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 23 | |
| 24 | static char version[] __devinitdata = |
| 25 | "Broadcom NetXtreme II iSCSI Driver " DRV_MODULE_NAME \ |
| 26 | " v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n"; |
| 27 | |
| 28 | |
Eddie Wai | fc91961 | 2010-08-12 16:44:31 -0700 | [diff] [blame] | 29 | MODULE_AUTHOR("Anil Veerabhadrappa <anilgv@broadcom.com> and " |
| 30 | "Eddie Wai <eddie.wai@broadcom.com>"); |
| 31 | |
Eddie Wai | 8a4a0f3 | 2011-02-16 15:04:28 -0600 | [diff] [blame] | 32 | MODULE_DESCRIPTION("Broadcom NetXtreme II BCM5706/5708/5709/57710/57711/57712" |
Michael Chan | f4b5ad2 | 2011-06-20 15:15:56 +0000 | [diff] [blame] | 33 | "/57800/57810/57840 iSCSI Driver"); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 34 | MODULE_LICENSE("GPL"); |
| 35 | MODULE_VERSION(DRV_MODULE_VERSION); |
| 36 | |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 37 | static DEFINE_MUTEX(bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 38 | |
Anil Veerabhadrappa | 8776193 | 2009-12-07 11:40:18 -0800 | [diff] [blame] | 39 | unsigned int event_coal_min = 24; |
| 40 | module_param(event_coal_min, int, 0664); |
| 41 | MODULE_PARM_DESC(event_coal_min, "Event Coalescing Minimum Commands"); |
| 42 | |
Eddie Wai | b5cf6b6 | 2011-06-23 15:51:34 -0700 | [diff] [blame] | 43 | unsigned int event_coal_div = 2; |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 44 | module_param(event_coal_div, int, 0664); |
| 45 | MODULE_PARM_DESC(event_coal_div, "Event Coalescing Divide Factor"); |
| 46 | |
| 47 | unsigned int en_tcp_dack = 1; |
| 48 | module_param(en_tcp_dack, int, 0664); |
| 49 | MODULE_PARM_DESC(en_tcp_dack, "Enable TCP Delayed ACK"); |
| 50 | |
| 51 | unsigned int error_mask1 = 0x00; |
| 52 | module_param(error_mask1, int, 0664); |
| 53 | MODULE_PARM_DESC(error_mask1, "Config FW iSCSI Error Mask #1"); |
| 54 | |
| 55 | unsigned int error_mask2 = 0x00; |
| 56 | module_param(error_mask2, int, 0664); |
| 57 | MODULE_PARM_DESC(error_mask2, "Config FW iSCSI Error Mask #2"); |
| 58 | |
| 59 | unsigned int sq_size; |
| 60 | module_param(sq_size, int, 0664); |
| 61 | MODULE_PARM_DESC(sq_size, "Configure SQ size"); |
| 62 | |
| 63 | unsigned int rq_size = BNX2I_RQ_WQES_DEFAULT; |
| 64 | module_param(rq_size, int, 0664); |
| 65 | MODULE_PARM_DESC(rq_size, "Configure RQ size"); |
| 66 | |
| 67 | u64 iscsi_error_mask = 0x00; |
| 68 | |
Eddie Wai | b5cf6b6 | 2011-06-23 15:51:34 -0700 | [diff] [blame] | 69 | DEFINE_PER_CPU(struct bnx2i_percpu_s, bnx2i_percpu); |
| 70 | |
| 71 | static int bnx2i_cpu_callback(struct notifier_block *nfb, |
| 72 | unsigned long action, void *hcpu); |
| 73 | /* notification function for CPU hotplug events */ |
| 74 | static struct notifier_block bnx2i_cpu_notifier = { |
| 75 | .notifier_call = bnx2i_cpu_callback, |
| 76 | }; |
| 77 | |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 78 | |
| 79 | /** |
| 80 | * bnx2i_identify_device - identifies NetXtreme II device type |
| 81 | * @hba: Adapter structure pointer |
| 82 | * |
| 83 | * This function identifies the NX2 device type and sets appropriate |
| 84 | * queue mailbox register access method, 5709 requires driver to |
| 85 | * access MBOX regs using *bin* mode |
| 86 | */ |
| 87 | void bnx2i_identify_device(struct bnx2i_hba *hba) |
| 88 | { |
| 89 | hba->cnic_dev_type = 0; |
| 90 | if ((hba->pci_did == PCI_DEVICE_ID_NX2_5706) || |
| 91 | (hba->pci_did == PCI_DEVICE_ID_NX2_5706S)) |
| 92 | set_bit(BNX2I_NX2_DEV_5706, &hba->cnic_dev_type); |
| 93 | else if ((hba->pci_did == PCI_DEVICE_ID_NX2_5708) || |
| 94 | (hba->pci_did == PCI_DEVICE_ID_NX2_5708S)) |
| 95 | set_bit(BNX2I_NX2_DEV_5708, &hba->cnic_dev_type); |
| 96 | else if ((hba->pci_did == PCI_DEVICE_ID_NX2_5709) || |
| 97 | (hba->pci_did == PCI_DEVICE_ID_NX2_5709S)) { |
| 98 | set_bit(BNX2I_NX2_DEV_5709, &hba->cnic_dev_type); |
| 99 | hba->mail_queue_access = BNX2I_MQ_BIN_MODE; |
Michael Chan | f4b5ad2 | 2011-06-20 15:15:56 +0000 | [diff] [blame] | 100 | } else if (hba->pci_did == PCI_DEVICE_ID_NX2_57710 || |
| 101 | hba->pci_did == PCI_DEVICE_ID_NX2_57711 || |
| 102 | hba->pci_did == PCI_DEVICE_ID_NX2_57711E || |
| 103 | hba->pci_did == PCI_DEVICE_ID_NX2_57712 || |
| 104 | hba->pci_did == PCI_DEVICE_ID_NX2_57712E || |
| 105 | hba->pci_did == PCI_DEVICE_ID_NX2_57800 || |
| 106 | hba->pci_did == PCI_DEVICE_ID_NX2_57800_MF || |
| 107 | hba->pci_did == PCI_DEVICE_ID_NX2_57800_VF || |
| 108 | hba->pci_did == PCI_DEVICE_ID_NX2_57810 || |
| 109 | hba->pci_did == PCI_DEVICE_ID_NX2_57810_MF || |
| 110 | hba->pci_did == PCI_DEVICE_ID_NX2_57810_VF || |
| 111 | hba->pci_did == PCI_DEVICE_ID_NX2_57840 || |
| 112 | hba->pci_did == PCI_DEVICE_ID_NX2_57840_MF || |
| 113 | hba->pci_did == PCI_DEVICE_ID_NX2_57840_VF) |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 114 | set_bit(BNX2I_NX2_DEV_57710, &hba->cnic_dev_type); |
Anil Veerabhadrappa | 5d9e1fa | 2009-12-07 11:39:33 -0800 | [diff] [blame] | 115 | else |
| 116 | printk(KERN_ALERT "bnx2i: unknown device, 0x%x\n", |
| 117 | hba->pci_did); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | |
| 121 | /** |
| 122 | * get_adapter_list_head - returns head of adapter list |
| 123 | */ |
| 124 | struct bnx2i_hba *get_adapter_list_head(void) |
| 125 | { |
| 126 | struct bnx2i_hba *hba = NULL; |
| 127 | struct bnx2i_hba *tmp_hba; |
| 128 | |
| 129 | if (!adapter_count) |
| 130 | goto hba_not_found; |
| 131 | |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 132 | mutex_lock(&bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 133 | list_for_each_entry(tmp_hba, &adapter_list, link) { |
| 134 | if (tmp_hba->cnic && tmp_hba->cnic->cm_select_dev) { |
| 135 | hba = tmp_hba; |
| 136 | break; |
| 137 | } |
| 138 | } |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 139 | mutex_unlock(&bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 140 | hba_not_found: |
| 141 | return hba; |
| 142 | } |
| 143 | |
| 144 | |
| 145 | /** |
| 146 | * bnx2i_find_hba_for_cnic - maps cnic device instance to bnx2i adapter instance |
| 147 | * @cnic: pointer to cnic device instance |
| 148 | * |
| 149 | */ |
| 150 | struct bnx2i_hba *bnx2i_find_hba_for_cnic(struct cnic_dev *cnic) |
| 151 | { |
| 152 | struct bnx2i_hba *hba, *temp; |
| 153 | |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 154 | mutex_lock(&bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 155 | list_for_each_entry_safe(hba, temp, &adapter_list, link) { |
| 156 | if (hba->cnic == cnic) { |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 157 | mutex_unlock(&bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 158 | return hba; |
| 159 | } |
| 160 | } |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 161 | mutex_unlock(&bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 162 | return NULL; |
| 163 | } |
| 164 | |
| 165 | |
| 166 | /** |
| 167 | * bnx2i_start - cnic callback to initialize & start adapter instance |
| 168 | * @handle: transparent handle pointing to adapter structure |
| 169 | * |
| 170 | * This function maps adapter structure to pcidev structure and initiates |
| 171 | * firmware handshake to enable/initialize on chip iscsi components |
| 172 | * This bnx2i - cnic interface api callback is issued after following |
| 173 | * 2 conditions are met - |
| 174 | * a) underlying network interface is up (marked by event 'NETDEV_UP' |
| 175 | * from netdev |
| 176 | * b) bnx2i adapter instance is registered |
| 177 | */ |
| 178 | void bnx2i_start(void *handle) |
| 179 | { |
| 180 | #define BNX2I_INIT_POLL_TIME (1000 / HZ) |
| 181 | struct bnx2i_hba *hba = handle; |
| 182 | int i = HZ; |
| 183 | |
Eddie Wai | 3601b53 | 2011-06-23 15:51:35 -0700 | [diff] [blame] | 184 | /* |
| 185 | * We should never register devices that don't support iSCSI |
| 186 | * (see bnx2i_init_one), so something is wrong if we try to |
| 187 | * start a iSCSI adapter on hardware with 0 supported iSCSI |
| 188 | * connections |
| 189 | */ |
| 190 | BUG_ON(!hba->cnic->max_iscsi_conn); |
Eddie Wai | a977d2c | 2011-02-16 15:04:27 -0600 | [diff] [blame] | 191 | |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 192 | bnx2i_send_fw_iscsi_init_msg(hba); |
| 193 | while (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state) && i--) |
| 194 | msleep(BNX2I_INIT_POLL_TIME); |
| 195 | } |
| 196 | |
| 197 | |
| 198 | /** |
Eddie Wai | 250ae98 | 2010-08-12 16:44:30 -0700 | [diff] [blame] | 199 | * bnx2i_chip_cleanup - local routine to handle chip cleanup |
| 200 | * @hba: Adapter instance to register |
| 201 | * |
| 202 | * Driver checks if adapter still has any active connections before |
| 203 | * executing the cleanup process |
| 204 | */ |
| 205 | static void bnx2i_chip_cleanup(struct bnx2i_hba *hba) |
| 206 | { |
| 207 | struct bnx2i_endpoint *bnx2i_ep; |
| 208 | struct list_head *pos, *tmp; |
| 209 | |
| 210 | if (hba->ofld_conns_active) { |
| 211 | /* Stage to force the disconnection |
| 212 | * This is the case where the daemon is either slow or |
| 213 | * not present |
| 214 | */ |
| 215 | printk(KERN_ALERT "bnx2i: (%s) chip cleanup for %d active " |
| 216 | "connections\n", hba->netdev->name, |
| 217 | hba->ofld_conns_active); |
| 218 | mutex_lock(&hba->net_dev_lock); |
| 219 | list_for_each_safe(pos, tmp, &hba->ep_active_list) { |
| 220 | bnx2i_ep = list_entry(pos, struct bnx2i_endpoint, link); |
| 221 | /* Clean up the chip only */ |
| 222 | bnx2i_hw_ep_disconnect(bnx2i_ep); |
| 223 | bnx2i_ep->cm_sk = NULL; |
| 224 | } |
| 225 | mutex_unlock(&hba->net_dev_lock); |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | |
| 230 | /** |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 231 | * bnx2i_stop - cnic callback to shutdown adapter instance |
| 232 | * @handle: transparent handle pointing to adapter structure |
| 233 | * |
| 234 | * driver checks if adapter is already in shutdown mode, if not start |
| 235 | * the shutdown process |
| 236 | */ |
| 237 | void bnx2i_stop(void *handle) |
| 238 | { |
| 239 | struct bnx2i_hba *hba = handle; |
Eddie Wai | 55e15c97 | 2010-07-01 15:34:52 -0700 | [diff] [blame] | 240 | int conns_active; |
Eddie Wai | 842158d | 2010-11-23 15:29:28 -0800 | [diff] [blame] | 241 | int wait_delay = 1 * HZ; |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 242 | |
| 243 | /* check if cleanup happened in GOING_DOWN context */ |
Eddie Wai | 842158d | 2010-11-23 15:29:28 -0800 | [diff] [blame] | 244 | if (!test_and_set_bit(ADAPTER_STATE_GOING_DOWN, |
| 245 | &hba->adapter_state)) { |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 246 | iscsi_host_for_each_session(hba->shost, |
| 247 | bnx2i_drop_session); |
Eddie Wai | 842158d | 2010-11-23 15:29:28 -0800 | [diff] [blame] | 248 | wait_delay = hba->hba_shutdown_tmo; |
| 249 | } |
| 250 | /* Wait for inflight offload connection tasks to complete before |
| 251 | * proceeding. Forcefully terminate all connection recovery in |
| 252 | * progress at the earliest, either in bind(), send_pdu(LOGIN), |
| 253 | * or conn_start() |
| 254 | */ |
| 255 | wait_event_interruptible_timeout(hba->eh_wait, |
| 256 | (list_empty(&hba->ep_ofld_list) && |
| 257 | list_empty(&hba->ep_destroy_list)), |
Eddie Wai | d5307a07 | 2011-05-16 11:13:19 -0700 | [diff] [blame] | 258 | 2 * HZ); |
Anil Veerabhadrappa | 490475a | 2010-04-08 15:59:15 -0700 | [diff] [blame] | 259 | /* Wait for all endpoints to be torn down, Chip will be reset once |
| 260 | * control returns to network driver. So it is required to cleanup and |
| 261 | * release all connection resources before returning from this routine. |
| 262 | */ |
Eddie Wai | 55e15c97 | 2010-07-01 15:34:52 -0700 | [diff] [blame] | 263 | while (hba->ofld_conns_active) { |
| 264 | conns_active = hba->ofld_conns_active; |
| 265 | wait_event_interruptible_timeout(hba->eh_wait, |
| 266 | (hba->ofld_conns_active != conns_active), |
Eddie Wai | 842158d | 2010-11-23 15:29:28 -0800 | [diff] [blame] | 267 | wait_delay); |
Eddie Wai | 55e15c97 | 2010-07-01 15:34:52 -0700 | [diff] [blame] | 268 | if (hba->ofld_conns_active == conns_active) |
| 269 | break; |
| 270 | } |
Eddie Wai | 250ae98 | 2010-08-12 16:44:30 -0700 | [diff] [blame] | 271 | bnx2i_chip_cleanup(hba); |
Eddie Wai | 55e15c97 | 2010-07-01 15:34:52 -0700 | [diff] [blame] | 272 | |
Anil Veerabhadrappa | 490475a | 2010-04-08 15:59:15 -0700 | [diff] [blame] | 273 | /* This flag should be cleared last so that ep_disconnect() gracefully |
| 274 | * cleans up connection context |
| 275 | */ |
Eddie Wai | 842158d | 2010-11-23 15:29:28 -0800 | [diff] [blame] | 276 | clear_bit(ADAPTER_STATE_GOING_DOWN, &hba->adapter_state); |
Anil Veerabhadrappa | 490475a | 2010-04-08 15:59:15 -0700 | [diff] [blame] | 277 | clear_bit(ADAPTER_STATE_UP, &hba->adapter_state); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 278 | } |
| 279 | |
Eddie Wai | 842158d | 2010-11-23 15:29:28 -0800 | [diff] [blame] | 280 | |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 281 | /** |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 282 | * bnx2i_init_one - initialize an adapter instance and allocate memory resources |
| 283 | * @hba: bnx2i adapter instance |
| 284 | * @cnic: cnic device handle |
| 285 | * |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 286 | * Global resource lock is held during critical sections below. This routine is |
| 287 | * called from either cnic_register_driver() or device hot plug context and |
| 288 | * and does majority of device specific initialization |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 289 | */ |
| 290 | static int bnx2i_init_one(struct bnx2i_hba *hba, struct cnic_dev *cnic) |
| 291 | { |
| 292 | int rc; |
| 293 | |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 294 | mutex_lock(&bnx2i_dev_lock); |
Eddie Wai | 3601b53 | 2011-06-23 15:51:35 -0700 | [diff] [blame] | 295 | if (!cnic->max_iscsi_conn) { |
| 296 | printk(KERN_ALERT "bnx2i: dev %s does not support " |
| 297 | "iSCSI\n", hba->netdev->name); |
| 298 | rc = -EOPNOTSUPP; |
| 299 | goto out; |
| 300 | } |
| 301 | |
Anil Veerabhadrappa | ce2d763 | 2010-03-25 10:54:42 -0700 | [diff] [blame] | 302 | hba->cnic = cnic; |
Anil Veerabhadrappa | 4e85f15 | 2009-06-23 14:04:23 -0700 | [diff] [blame] | 303 | rc = cnic->register_device(cnic, CNIC_ULP_ISCSI, hba); |
| 304 | if (!rc) { |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 305 | hba->age++; |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 306 | set_bit(BNX2I_CNIC_REGISTERED, &hba->reg_with_cnic); |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 307 | list_add_tail(&hba->link, &adapter_list); |
| 308 | adapter_count++; |
Anil Veerabhadrappa | 4e85f15 | 2009-06-23 14:04:23 -0700 | [diff] [blame] | 309 | } else if (rc == -EBUSY) /* duplicate registration */ |
| 310 | printk(KERN_ALERT "bnx2i, duplicate registration" |
| 311 | "hba=%p, cnic=%p\n", hba, cnic); |
| 312 | else if (rc == -EAGAIN) |
| 313 | printk(KERN_ERR "bnx2i, driver not registered\n"); |
| 314 | else if (rc == -EINVAL) |
| 315 | printk(KERN_ERR "bnx2i, invalid type %d\n", CNIC_ULP_ISCSI); |
| 316 | else |
| 317 | printk(KERN_ERR "bnx2i dev reg, unknown error, %d\n", rc); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 318 | |
Eddie Wai | 3601b53 | 2011-06-23 15:51:35 -0700 | [diff] [blame] | 319 | out: |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 320 | mutex_unlock(&bnx2i_dev_lock); |
Anil Veerabhadrappa | 4e85f15 | 2009-06-23 14:04:23 -0700 | [diff] [blame] | 321 | |
| 322 | return rc; |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | |
| 326 | /** |
| 327 | * bnx2i_ulp_init - initialize an adapter instance |
| 328 | * @dev: cnic device handle |
| 329 | * |
| 330 | * Called from cnic_register_driver() context to initialize all enumerated |
| 331 | * cnic devices. This routine allocate adapter structure and other |
| 332 | * device specific resources. |
| 333 | */ |
| 334 | void bnx2i_ulp_init(struct cnic_dev *dev) |
| 335 | { |
| 336 | struct bnx2i_hba *hba; |
| 337 | |
| 338 | /* Allocate a HBA structure for this device */ |
| 339 | hba = bnx2i_alloc_hba(dev); |
| 340 | if (!hba) { |
| 341 | printk(KERN_ERR "bnx2i init: hba initialization failed\n"); |
| 342 | return; |
| 343 | } |
| 344 | |
| 345 | /* Get PCI related information and update hba struct members */ |
| 346 | clear_bit(BNX2I_CNIC_REGISTERED, &hba->reg_with_cnic); |
| 347 | if (bnx2i_init_one(hba, dev)) { |
| 348 | printk(KERN_ERR "bnx2i - hba %p init failed\n", hba); |
| 349 | bnx2i_free_hba(hba); |
Anil Veerabhadrappa | ce2d763 | 2010-03-25 10:54:42 -0700 | [diff] [blame] | 350 | } |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | |
| 354 | /** |
| 355 | * bnx2i_ulp_exit - shuts down adapter instance and frees all resources |
| 356 | * @dev: cnic device handle |
| 357 | * |
| 358 | */ |
| 359 | void bnx2i_ulp_exit(struct cnic_dev *dev) |
| 360 | { |
| 361 | struct bnx2i_hba *hba; |
| 362 | |
| 363 | hba = bnx2i_find_hba_for_cnic(dev); |
| 364 | if (!hba) { |
| 365 | printk(KERN_INFO "bnx2i_ulp_exit: hba not " |
| 366 | "found, dev 0x%p\n", dev); |
| 367 | return; |
| 368 | } |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 369 | mutex_lock(&bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 370 | list_del_init(&hba->link); |
| 371 | adapter_count--; |
| 372 | |
| 373 | if (test_bit(BNX2I_CNIC_REGISTERED, &hba->reg_with_cnic)) { |
| 374 | hba->cnic->unregister_device(hba->cnic, CNIC_ULP_ISCSI); |
| 375 | clear_bit(BNX2I_CNIC_REGISTERED, &hba->reg_with_cnic); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 376 | } |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 377 | mutex_unlock(&bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 378 | |
| 379 | bnx2i_free_hba(hba); |
| 380 | } |
| 381 | |
| 382 | |
| 383 | /** |
Eddie Wai | b5cf6b6 | 2011-06-23 15:51:34 -0700 | [diff] [blame] | 384 | * bnx2i_percpu_thread_create - Create a receive thread for an |
| 385 | * online CPU |
| 386 | * |
| 387 | * @cpu: cpu index for the online cpu |
| 388 | */ |
| 389 | static void bnx2i_percpu_thread_create(unsigned int cpu) |
| 390 | { |
| 391 | struct bnx2i_percpu_s *p; |
| 392 | struct task_struct *thread; |
| 393 | |
| 394 | p = &per_cpu(bnx2i_percpu, cpu); |
| 395 | |
| 396 | thread = kthread_create(bnx2i_percpu_io_thread, (void *)p, |
| 397 | "bnx2i_thread/%d", cpu); |
| 398 | /* bind thread to the cpu */ |
| 399 | if (likely(!IS_ERR(thread))) { |
| 400 | kthread_bind(thread, cpu); |
| 401 | p->iothread = thread; |
| 402 | wake_up_process(thread); |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | |
| 407 | static void bnx2i_percpu_thread_destroy(unsigned int cpu) |
| 408 | { |
| 409 | struct bnx2i_percpu_s *p; |
| 410 | struct task_struct *thread; |
| 411 | struct bnx2i_work *work, *tmp; |
| 412 | |
| 413 | /* Prevent any new work from being queued for this CPU */ |
| 414 | p = &per_cpu(bnx2i_percpu, cpu); |
| 415 | spin_lock_bh(&p->p_work_lock); |
| 416 | thread = p->iothread; |
| 417 | p->iothread = NULL; |
| 418 | |
| 419 | /* Free all work in the list */ |
| 420 | list_for_each_entry_safe(work, tmp, &p->work_list, list) { |
| 421 | list_del_init(&work->list); |
| 422 | bnx2i_process_scsi_cmd_resp(work->session, |
| 423 | work->bnx2i_conn, &work->cqe); |
| 424 | kfree(work); |
| 425 | } |
| 426 | |
| 427 | spin_unlock_bh(&p->p_work_lock); |
| 428 | if (thread) |
| 429 | kthread_stop(thread); |
| 430 | } |
| 431 | |
| 432 | |
| 433 | /** |
| 434 | * bnx2i_cpu_callback - Handler for CPU hotplug events |
| 435 | * |
| 436 | * @nfb: The callback data block |
| 437 | * @action: The event triggering the callback |
| 438 | * @hcpu: The index of the CPU that the event is for |
| 439 | * |
| 440 | * This creates or destroys per-CPU data for iSCSI |
| 441 | * |
| 442 | * Returns NOTIFY_OK always. |
| 443 | */ |
| 444 | static int bnx2i_cpu_callback(struct notifier_block *nfb, |
| 445 | unsigned long action, void *hcpu) |
| 446 | { |
| 447 | unsigned cpu = (unsigned long)hcpu; |
| 448 | |
| 449 | switch (action) { |
| 450 | case CPU_ONLINE: |
| 451 | case CPU_ONLINE_FROZEN: |
| 452 | printk(KERN_INFO "bnx2i: CPU %x online: Create Rx thread\n", |
| 453 | cpu); |
| 454 | bnx2i_percpu_thread_create(cpu); |
| 455 | break; |
| 456 | case CPU_DEAD: |
| 457 | case CPU_DEAD_FROZEN: |
| 458 | printk(KERN_INFO "CPU %x offline: Remove Rx thread\n", cpu); |
| 459 | bnx2i_percpu_thread_destroy(cpu); |
| 460 | break; |
| 461 | default: |
| 462 | break; |
| 463 | } |
| 464 | return NOTIFY_OK; |
| 465 | } |
| 466 | |
| 467 | |
| 468 | /** |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 469 | * bnx2i_mod_init - module init entry point |
| 470 | * |
| 471 | * initialize any driver wide global data structures such as endpoint pool, |
| 472 | * tcp port manager/queue, sysfs. finally driver will register itself |
| 473 | * with the cnic module |
| 474 | */ |
| 475 | static int __init bnx2i_mod_init(void) |
| 476 | { |
| 477 | int err; |
Eddie Wai | b5cf6b6 | 2011-06-23 15:51:34 -0700 | [diff] [blame] | 478 | unsigned cpu = 0; |
| 479 | struct bnx2i_percpu_s *p; |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 480 | |
| 481 | printk(KERN_INFO "%s", version); |
| 482 | |
Anil Veerabhadrappa | f8c9abe | 2009-12-07 11:39:54 -0800 | [diff] [blame] | 483 | if (sq_size && !is_power_of_2(sq_size)) |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 484 | sq_size = roundup_pow_of_two(sq_size); |
| 485 | |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 486 | mutex_init(&bnx2i_dev_lock); |
| 487 | |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 488 | bnx2i_scsi_xport_template = |
| 489 | iscsi_register_transport(&bnx2i_iscsi_transport); |
| 490 | if (!bnx2i_scsi_xport_template) { |
| 491 | printk(KERN_ERR "Could not register bnx2i transport.\n"); |
| 492 | err = -ENOMEM; |
| 493 | goto out; |
| 494 | } |
| 495 | |
| 496 | err = cnic_register_driver(CNIC_ULP_ISCSI, &bnx2i_cnic_cb); |
| 497 | if (err) { |
| 498 | printk(KERN_ERR "Could not register bnx2i cnic driver.\n"); |
| 499 | goto unreg_xport; |
| 500 | } |
| 501 | |
Eddie Wai | b5cf6b6 | 2011-06-23 15:51:34 -0700 | [diff] [blame] | 502 | /* Create percpu kernel threads to handle iSCSI I/O completions */ |
| 503 | for_each_possible_cpu(cpu) { |
| 504 | p = &per_cpu(bnx2i_percpu, cpu); |
| 505 | INIT_LIST_HEAD(&p->work_list); |
| 506 | spin_lock_init(&p->p_work_lock); |
| 507 | p->iothread = NULL; |
| 508 | } |
| 509 | |
| 510 | for_each_online_cpu(cpu) |
| 511 | bnx2i_percpu_thread_create(cpu); |
| 512 | |
| 513 | /* Initialize per CPU interrupt thread */ |
| 514 | register_hotcpu_notifier(&bnx2i_cpu_notifier); |
| 515 | |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 516 | return 0; |
| 517 | |
| 518 | unreg_xport: |
| 519 | iscsi_unregister_transport(&bnx2i_iscsi_transport); |
| 520 | out: |
| 521 | return err; |
| 522 | } |
| 523 | |
| 524 | |
| 525 | /** |
| 526 | * bnx2i_mod_exit - module cleanup/exit entry point |
| 527 | * |
| 528 | * Global resource lock and host adapter lock is held during critical sections |
| 529 | * in this function. Driver will browse through the adapter list, cleans-up |
| 530 | * each instance, unregisters iscsi transport name and finally driver will |
| 531 | * unregister itself with the cnic module |
| 532 | */ |
| 533 | static void __exit bnx2i_mod_exit(void) |
| 534 | { |
| 535 | struct bnx2i_hba *hba; |
Eddie Wai | b5cf6b6 | 2011-06-23 15:51:34 -0700 | [diff] [blame] | 536 | unsigned cpu = 0; |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 537 | |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 538 | mutex_lock(&bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 539 | while (!list_empty(&adapter_list)) { |
| 540 | hba = list_entry(adapter_list.next, struct bnx2i_hba, link); |
| 541 | list_del(&hba->link); |
| 542 | adapter_count--; |
| 543 | |
| 544 | if (test_bit(BNX2I_CNIC_REGISTERED, &hba->reg_with_cnic)) { |
Eddie Wai | 250ae98 | 2010-08-12 16:44:30 -0700 | [diff] [blame] | 545 | bnx2i_chip_cleanup(hba); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 546 | hba->cnic->unregister_device(hba->cnic, CNIC_ULP_ISCSI); |
| 547 | clear_bit(BNX2I_CNIC_REGISTERED, &hba->reg_with_cnic); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 548 | } |
| 549 | |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 550 | bnx2i_free_hba(hba); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 551 | } |
Anil Veerabhadrappa | 3be924f | 2009-06-23 14:07:40 -0700 | [diff] [blame] | 552 | mutex_unlock(&bnx2i_dev_lock); |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 553 | |
Eddie Wai | b5cf6b6 | 2011-06-23 15:51:34 -0700 | [diff] [blame] | 554 | unregister_hotcpu_notifier(&bnx2i_cpu_notifier); |
| 555 | |
| 556 | for_each_online_cpu(cpu) |
| 557 | bnx2i_percpu_thread_destroy(cpu); |
| 558 | |
Michael Chan | cf4e636 | 2009-06-08 18:14:44 -0700 | [diff] [blame] | 559 | iscsi_unregister_transport(&bnx2i_iscsi_transport); |
| 560 | cnic_unregister_driver(CNIC_ULP_ISCSI); |
| 561 | } |
| 562 | |
| 563 | module_init(bnx2i_mod_init); |
| 564 | module_exit(bnx2i_mod_exit); |