Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
bnx2i_init.c
Go to the documentation of this file.
1 /* bnx2i.c: Broadcom NetXtreme II iSCSI driver.
2  *
3  * Copyright (c) 2006 - 2012 Broadcom Corporation
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 ([email protected])
12  * Maintained by: Eddie Wai ([email protected])
13  */
14 
15 #include "bnx2i.h"
16 
17 static struct list_head adapter_list = LIST_HEAD_INIT(adapter_list);
18 static u32 adapter_count;
19 
20 #define DRV_MODULE_NAME "bnx2i"
21 #define DRV_MODULE_VERSION "2.7.2.2"
22 #define DRV_MODULE_RELDATE "Apr 25, 2012"
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 
29 MODULE_AUTHOR("Anil Veerabhadrappa <[email protected]> and "
30  "Eddie Wai <[email protected]>");
31 
32 MODULE_DESCRIPTION("Broadcom NetXtreme II BCM5706/5708/5709/57710/57711/57712"
33  "/57800/57810/57840 iSCSI Driver");
34 MODULE_LICENSE("GPL");
36 
37 static DEFINE_MUTEX(bnx2i_dev_lock);
38 
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 
43 unsigned int event_coal_div = 2;
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;
53 MODULE_PARM_DESC(error_mask1, "Config FW iSCSI Error Mask #1");
54 
55 unsigned int error_mask2 = 0x00;
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 
64 module_param(rq_size, int, 0664);
65 MODULE_PARM_DESC(rq_size, "Configure RQ size");
66 
68 
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 
78 
88 {
89  hba->cnic_dev_type = 0;
90  if ((hba->pci_did == PCI_DEVICE_ID_NX2_5706) ||
93  else if ((hba->pci_did == PCI_DEVICE_ID_NX2_5708) ||
96  else if ((hba->pci_did == PCI_DEVICE_ID_NX2_5709) ||
97  (hba->pci_did == PCI_DEVICE_ID_NX2_5709S)) {
100  } else if (hba->pci_did == PCI_DEVICE_ID_NX2_57710 ||
115  else
116  printk(KERN_ALERT "bnx2i: unknown device, 0x%x\n",
117  hba->pci_did);
118 }
119 
120 
125 {
126  struct bnx2i_hba *hba = NULL;
127  struct bnx2i_hba *tmp_hba;
128 
129  if (!adapter_count)
130  goto hba_not_found;
131 
132  mutex_lock(&bnx2i_dev_lock);
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  }
139  mutex_unlock(&bnx2i_dev_lock);
140 hba_not_found:
141  return hba;
142 }
143 
144 
151 {
152  struct bnx2i_hba *hba, *temp;
153 
154  mutex_lock(&bnx2i_dev_lock);
155  list_for_each_entry_safe(hba, temp, &adapter_list, link) {
156  if (hba->cnic == cnic) {
157  mutex_unlock(&bnx2i_dev_lock);
158  return hba;
159  }
160  }
161  mutex_unlock(&bnx2i_dev_lock);
162  return NULL;
163 }
164 
165 
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 
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);
191 
193  while (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state) && i--)
195 }
196 
197 
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 
237 void bnx2i_stop(void *handle)
238 {
239  struct bnx2i_hba *hba = handle;
240  int conns_active;
241  int wait_delay = 1 * HZ;
242 
243  /* check if cleanup happened in GOING_DOWN context */
245  &hba->adapter_state)) {
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  */
256  (list_empty(&hba->ep_ofld_list) &&
257  list_empty(&hba->ep_destroy_list)),
258  2 * HZ);
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  */
263  while (hba->ofld_conns_active) {
264  conns_active = hba->ofld_conns_active;
266  (hba->ofld_conns_active != conns_active),
267  wait_delay);
268  if (hba->ofld_conns_active == conns_active)
269  break;
270  }
271  bnx2i_chip_cleanup(hba);
272 
273  /* This flag should be cleared last so that ep_disconnect() gracefully
274  * cleans up connection context
275  */
278 }
279 
280 
290 static int bnx2i_init_one(struct bnx2i_hba *hba, struct cnic_dev *cnic)
291 {
292  int rc;
293 
294  mutex_lock(&bnx2i_dev_lock);
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 
302  hba->cnic = cnic;
303  rc = cnic->register_device(cnic, CNIC_ULP_ISCSI, hba);
304  if (!rc) {
305  hba->age++;
307  list_add_tail(&hba->link, &adapter_list);
308  adapter_count++;
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);
318 
319 out:
320  mutex_unlock(&bnx2i_dev_lock);
321 
322  return rc;
323 }
324 
325 
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 */
347  if (bnx2i_init_one(hba, dev)) {
348  printk(KERN_ERR "bnx2i - hba %p init failed\n", hba);
349  bnx2i_free_hba(hba);
350  }
351 }
352 
353 
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  }
369  mutex_lock(&bnx2i_dev_lock);
370  list_del_init(&hba->link);
371  adapter_count--;
372 
374  hba->cnic->unregister_device(hba->cnic, CNIC_ULP_ISCSI);
376  }
377  mutex_unlock(&bnx2i_dev_lock);
378 
379  bnx2i_free_hba(hba);
380 }
381 
382 
391 {
392  struct bnx2i_hba *hba = handle;
393  struct iscsi_stats_info *stats;
394 
395  if (!hba)
396  return -EINVAL;
397 
398  stats = (struct iscsi_stats_info *)hba->cnic->stats_addr;
399 
400  if (!stats)
401  return -ENOMEM;
402 
403  strlcpy(stats->version, DRV_MODULE_VERSION, sizeof(stats->version));
404  memcpy(stats->mac_add1 + 2, hba->cnic->mac_addr, ETH_ALEN);
405 
406  stats->max_frame_size = hba->netdev->mtu;
407  stats->txq_size = hba->max_sqes;
408  stats->rxq_size = hba->max_cqes;
409 
410  stats->txq_avg_depth = 0;
411  stats->rxq_avg_depth = 0;
412 
413  GET_STATS_64(hba, stats, rx_pdus);
414  GET_STATS_64(hba, stats, rx_bytes);
415 
416  GET_STATS_64(hba, stats, tx_pdus);
417  GET_STATS_64(hba, stats, tx_bytes);
418 
419  return 0;
420 }
421 
422 
429 static void bnx2i_percpu_thread_create(unsigned int cpu)
430 {
431  struct bnx2i_percpu_s *p;
432  struct task_struct *thread;
433 
434  p = &per_cpu(bnx2i_percpu, cpu);
435 
437  cpu_to_node(cpu),
438  "bnx2i_thread/%d", cpu);
439  /* bind thread to the cpu */
440  if (likely(!IS_ERR(thread))) {
441  kthread_bind(thread, cpu);
442  p->iothread = thread;
443  wake_up_process(thread);
444  }
445 }
446 
447 
448 static void bnx2i_percpu_thread_destroy(unsigned int cpu)
449 {
450  struct bnx2i_percpu_s *p;
451  struct task_struct *thread;
452  struct bnx2i_work *work, *tmp;
453 
454  /* Prevent any new work from being queued for this CPU */
455  p = &per_cpu(bnx2i_percpu, cpu);
456  spin_lock_bh(&p->p_work_lock);
457  thread = p->iothread;
458  p->iothread = NULL;
459 
460  /* Free all work in the list */
461  list_for_each_entry_safe(work, tmp, &p->work_list, list) {
462  list_del_init(&work->list);
464  work->bnx2i_conn, &work->cqe);
465  kfree(work);
466  }
467 
468  spin_unlock_bh(&p->p_work_lock);
469  if (thread)
470  kthread_stop(thread);
471 }
472 
473 
485 static int bnx2i_cpu_callback(struct notifier_block *nfb,
486  unsigned long action, void *hcpu)
487 {
488  unsigned cpu = (unsigned long)hcpu;
489 
490  switch (action) {
491  case CPU_ONLINE:
492  case CPU_ONLINE_FROZEN:
493  printk(KERN_INFO "bnx2i: CPU %x online: Create Rx thread\n",
494  cpu);
495  bnx2i_percpu_thread_create(cpu);
496  break;
497  case CPU_DEAD:
498  case CPU_DEAD_FROZEN:
499  printk(KERN_INFO "CPU %x offline: Remove Rx thread\n", cpu);
500  bnx2i_percpu_thread_destroy(cpu);
501  break;
502  default:
503  break;
504  }
505  return NOTIFY_OK;
506 }
507 
508 
516 static int __init bnx2i_mod_init(void)
517 {
518  int err;
519  unsigned cpu = 0;
520  struct bnx2i_percpu_s *p;
521 
522  printk(KERN_INFO "%s", version);
523 
524  if (sq_size && !is_power_of_2(sq_size))
526 
527  mutex_init(&bnx2i_dev_lock);
528 
532  printk(KERN_ERR "Could not register bnx2i transport.\n");
533  err = -ENOMEM;
534  goto out;
535  }
536 
538  if (err) {
539  printk(KERN_ERR "Could not register bnx2i cnic driver.\n");
540  goto unreg_xport;
541  }
542 
543  /* Create percpu kernel threads to handle iSCSI I/O completions */
544  for_each_possible_cpu(cpu) {
545  p = &per_cpu(bnx2i_percpu, cpu);
546  INIT_LIST_HEAD(&p->work_list);
548  p->iothread = NULL;
549  }
550 
552  bnx2i_percpu_thread_create(cpu);
553 
554  /* Initialize per CPU interrupt thread */
555  register_hotcpu_notifier(&bnx2i_cpu_notifier);
556 
557  return 0;
558 
559 unreg_xport:
561 out:
562  return err;
563 }
564 
565 
574 static void __exit bnx2i_mod_exit(void)
575 {
576  struct bnx2i_hba *hba;
577  unsigned cpu = 0;
578 
579  mutex_lock(&bnx2i_dev_lock);
580  while (!list_empty(&adapter_list)) {
581  hba = list_entry(adapter_list.next, struct bnx2i_hba, link);
582  list_del(&hba->link);
583  adapter_count--;
584 
586  bnx2i_chip_cleanup(hba);
587  hba->cnic->unregister_device(hba->cnic, CNIC_ULP_ISCSI);
589  }
590 
591  bnx2i_free_hba(hba);
592  }
593  mutex_unlock(&bnx2i_dev_lock);
594 
595  unregister_hotcpu_notifier(&bnx2i_cpu_notifier);
596 
598  bnx2i_percpu_thread_destroy(cpu);
599 
600  iscsi_unregister_transport(&bnx2i_iscsi_transport);
602 }
603 
604 module_init(bnx2i_mod_init);
605 module_exit(bnx2i_mod_exit);