blob: 0c1f8177b5b72abf8f0c4d3d0b587dbb85a85226 [file] [log] [blame]
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001/*
2 * Copyright 2008 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
4 *
5 * This program is free software; you may redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
10 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
11 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
12 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
13 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
14 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
16 * SOFTWARE.
17 */
18#include <linux/module.h>
19#include <linux/mempool.h>
20#include <linux/string.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -070022#include <linux/errno.h>
23#include <linux/init.h>
24#include <linux/pci.h>
25#include <linux/skbuff.h>
26#include <linux/interrupt.h>
27#include <linux/spinlock.h>
28#include <linux/workqueue.h>
Joe Eykholt78112e52009-11-03 11:49:22 -080029#include <linux/if_ether.h>
30#include <scsi/fc/fc_fip.h>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -070031#include <scsi/scsi_host.h>
32#include <scsi/scsi_transport.h>
33#include <scsi/scsi_transport_fc.h>
34#include <scsi/scsi_tcq.h>
35#include <scsi/libfc.h>
36#include <scsi/fc_frame.h>
37
38#include "vnic_dev.h"
39#include "vnic_intr.h"
40#include "vnic_stats.h"
41#include "fnic_io.h"
Hiral Pateld3c995f2013-02-25 16:18:36 -080042#include "fnic_fip.h"
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -070043#include "fnic.h"
44
45#define PCI_DEVICE_ID_CISCO_FNIC 0x0045
46
47/* Timer to poll notification area for events. Used for MSI interrupts */
48#define FNIC_NOTIFY_TIMER_PERIOD (2 * HZ)
49
50static struct kmem_cache *fnic_sgl_cache[FNIC_SGL_NUM_CACHES];
51static struct kmem_cache *fnic_io_req_cache;
52LIST_HEAD(fnic_list);
53DEFINE_SPINLOCK(fnic_list_lock);
54
55/* Supported devices by fnic module */
56static struct pci_device_id fnic_id_table[] = {
57 { PCI_DEVICE(PCI_VENDOR_ID_CISCO, PCI_DEVICE_ID_CISCO_FNIC) },
58 { 0, }
59};
60
61MODULE_DESCRIPTION(DRV_DESCRIPTION);
62MODULE_AUTHOR("Abhijeet Joglekar <abjoglek@cisco.com>, "
63 "Joseph R. Eykholt <jeykholt@cisco.com>");
64MODULE_LICENSE("GPL v2");
65MODULE_VERSION(DRV_VERSION);
66MODULE_DEVICE_TABLE(pci, fnic_id_table);
67
68unsigned int fnic_log_level;
69module_param(fnic_log_level, int, S_IRUGO|S_IWUSR);
70MODULE_PARM_DESC(fnic_log_level, "bit mask of fnic logging levels");
71
Hiral Patel4d7007b2013-02-12 17:01:02 -080072unsigned int fnic_trace_max_pages = 16;
73module_param(fnic_trace_max_pages, uint, S_IRUGO|S_IWUSR);
74MODULE_PARM_DESC(fnic_trace_max_pages, "Total allocated memory pages "
75 "for fnic trace buffer");
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -070076
Hiral Shahabb14142014-04-18 12:28:19 -070077unsigned int fnic_fc_trace_max_pages = 64;
78module_param(fnic_fc_trace_max_pages, uint, S_IRUGO|S_IWUSR);
79MODULE_PARM_DESC(fnic_fc_trace_max_pages,
80 "Total allocated memory pages for fc trace buffer");
81
Hiral Patelfc857992013-09-09 13:31:51 -070082static unsigned int fnic_max_qdepth = FNIC_DFLT_QUEUE_DEPTH;
83module_param(fnic_max_qdepth, uint, S_IRUGO|S_IWUSR);
84MODULE_PARM_DESC(fnic_max_qdepth, "Queue depth to report for each LUN");
85
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -070086static struct libfc_function_template fnic_transport_template = {
87 .frame_send = fnic_send,
Joe Eykholt78112e52009-11-03 11:49:22 -080088 .lport_set_port_id = fnic_set_port_id,
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -070089 .fcp_abort_io = fnic_empty_scsi_cleanup,
90 .fcp_cleanup = fnic_empty_scsi_cleanup,
91 .exch_mgr_reset = fnic_exch_mgr_reset
92};
93
94static int fnic_slave_alloc(struct scsi_device *sdev)
95{
96 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -070097
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -070098 if (!rport || fc_remote_port_chkready(rport))
99 return -ENXIO;
100
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100101 scsi_change_queue_depth(sdev, fnic_max_qdepth);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700102 return 0;
103}
104
105static struct scsi_host_template fnic_host_template = {
106 .module = THIS_MODULE,
107 .name = DRV_NAME,
108 .queuecommand = fnic_queuecommand,
109 .eh_abort_handler = fnic_abort_cmd,
110 .eh_device_reset_handler = fnic_device_reset,
111 .eh_host_reset_handler = fnic_host_reset,
112 .slave_alloc = fnic_slave_alloc,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100113 .change_queue_depth = scsi_change_queue_depth,
Christoph Hellwiga62182f2014-10-02 14:39:55 +0200114 .change_queue_type = scsi_change_queue_type,
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700115 .this_id = -1,
116 .cmd_per_lun = 3,
Hiral Shahc8ff03c2014-04-18 12:28:17 -0700117 .can_queue = FNIC_DFLT_IO_REQ,
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700118 .use_clustering = ENABLE_CLUSTERING,
119 .sg_tablesize = FNIC_MAX_SG_DESC_CNT,
120 .max_sectors = 0xffff,
121 .shost_attrs = fnic_attrs,
Christoph Hellwig2ecb2042014-11-03 14:09:02 +0100122 .use_blk_tags = 1,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100123 .track_queue_depth = 1,
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700124};
125
Mike Christie8196a932010-08-06 03:02:40 -0500126static void
Mike Christie485868202010-09-15 16:52:28 -0500127fnic_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
Mike Christie8196a932010-08-06 03:02:40 -0500128{
Mike Christie485868202010-09-15 16:52:28 -0500129 if (timeout)
130 rport->dev_loss_tmo = timeout;
131 else
132 rport->dev_loss_tmo = 1;
Mike Christie8196a932010-08-06 03:02:40 -0500133}
134
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700135static void fnic_get_host_speed(struct Scsi_Host *shost);
136static struct scsi_transport_template *fnic_fc_transport;
137static struct fc_host_statistics *fnic_get_stats(struct Scsi_Host *);
Narsimhulu Musini1adee042013-09-09 13:31:45 -0700138static void fnic_reset_host_stats(struct Scsi_Host *);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700139
140static struct fc_function_template fnic_fc_functions = {
141
142 .show_host_node_name = 1,
143 .show_host_port_name = 1,
144 .show_host_supported_classes = 1,
145 .show_host_supported_fc4s = 1,
146 .show_host_active_fc4s = 1,
147 .show_host_maxframe_size = 1,
148 .show_host_port_id = 1,
149 .show_host_supported_speeds = 1,
150 .get_host_speed = fnic_get_host_speed,
151 .show_host_speed = 1,
152 .show_host_port_type = 1,
153 .get_host_port_state = fc_get_host_port_state,
154 .show_host_port_state = 1,
155 .show_host_symbolic_name = 1,
156 .show_rport_maxframe_size = 1,
157 .show_rport_supported_classes = 1,
158 .show_host_fabric_name = 1,
159 .show_starget_node_name = 1,
160 .show_starget_port_name = 1,
161 .show_starget_port_id = 1,
162 .show_rport_dev_loss_tmo = 1,
Mike Christie485868202010-09-15 16:52:28 -0500163 .set_rport_dev_loss_tmo = fnic_set_rport_dev_loss_tmo,
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700164 .issue_fc_host_lip = fnic_reset,
165 .get_fc_host_stats = fnic_get_stats,
Narsimhulu Musini1adee042013-09-09 13:31:45 -0700166 .reset_fc_host_stats = fnic_reset_host_stats,
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700167 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
168 .terminate_rport_io = fnic_terminate_rport_io,
Joe Eykholt76d87372009-11-03 11:49:32 -0800169 .bsg_request = fc_lport_bsg_request,
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700170};
171
172static void fnic_get_host_speed(struct Scsi_Host *shost)
173{
174 struct fc_lport *lp = shost_priv(shost);
175 struct fnic *fnic = lport_priv(lp);
176 u32 port_speed = vnic_dev_port_speed(fnic->vdev);
177
178 /* Add in other values as they get defined in fw */
179 switch (port_speed) {
180 case 10000:
181 fc_host_speed(shost) = FC_PORTSPEED_10GBIT;
182 break;
183 default:
184 fc_host_speed(shost) = FC_PORTSPEED_10GBIT;
185 break;
186 }
187}
188
189static struct fc_host_statistics *fnic_get_stats(struct Scsi_Host *host)
190{
191 int ret;
192 struct fc_lport *lp = shost_priv(host);
193 struct fnic *fnic = lport_priv(lp);
194 struct fc_host_statistics *stats = &lp->host_stats;
195 struct vnic_stats *vs;
196 unsigned long flags;
197
198 if (time_before(jiffies, fnic->stats_time + HZ / FNIC_STATS_RATE_LIMIT))
199 return stats;
200 fnic->stats_time = jiffies;
201
202 spin_lock_irqsave(&fnic->fnic_lock, flags);
203 ret = vnic_dev_stats_dump(fnic->vdev, &fnic->stats);
204 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
205
206 if (ret) {
207 FNIC_MAIN_DBG(KERN_DEBUG, fnic->lport->host,
208 "fnic: Get vnic stats failed"
209 " 0x%x", ret);
210 return stats;
211 }
212 vs = fnic->stats;
213 stats->tx_frames = vs->tx.tx_unicast_frames_ok;
214 stats->tx_words = vs->tx.tx_unicast_bytes_ok / 4;
215 stats->rx_frames = vs->rx.rx_unicast_frames_ok;
216 stats->rx_words = vs->rx.rx_unicast_bytes_ok / 4;
217 stats->error_frames = vs->tx.tx_errors + vs->rx.rx_errors;
218 stats->dumped_frames = vs->tx.tx_drops + vs->rx.rx_drop;
219 stats->invalid_crc_count = vs->rx.rx_crc_errors;
Narsimhulu Musini1adee042013-09-09 13:31:45 -0700220 stats->seconds_since_last_reset =
221 (jiffies - fnic->stats_reset_time) / HZ;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700222 stats->fcp_input_megabytes = div_u64(fnic->fcp_input_bytes, 1000000);
223 stats->fcp_output_megabytes = div_u64(fnic->fcp_output_bytes, 1000000);
224
225 return stats;
226}
227
Narsimhulu Musini1adee042013-09-09 13:31:45 -0700228/*
229 * fnic_dump_fchost_stats
230 * note : dumps fc_statistics into system logs
231 */
232void fnic_dump_fchost_stats(struct Scsi_Host *host,
233 struct fc_host_statistics *stats)
234{
235 FNIC_MAIN_NOTE(KERN_NOTICE, host,
236 "fnic: seconds since last reset = %llu\n",
237 stats->seconds_since_last_reset);
238 FNIC_MAIN_NOTE(KERN_NOTICE, host,
239 "fnic: tx frames = %llu\n",
240 stats->tx_frames);
241 FNIC_MAIN_NOTE(KERN_NOTICE, host,
242 "fnic: tx words = %llu\n",
243 stats->tx_words);
244 FNIC_MAIN_NOTE(KERN_NOTICE, host,
245 "fnic: rx frames = %llu\n",
246 stats->rx_frames);
247 FNIC_MAIN_NOTE(KERN_NOTICE, host,
248 "fnic: rx words = %llu\n",
249 stats->rx_words);
250 FNIC_MAIN_NOTE(KERN_NOTICE, host,
251 "fnic: lip count = %llu\n",
252 stats->lip_count);
253 FNIC_MAIN_NOTE(KERN_NOTICE, host,
254 "fnic: nos count = %llu\n",
255 stats->nos_count);
256 FNIC_MAIN_NOTE(KERN_NOTICE, host,
257 "fnic: error frames = %llu\n",
258 stats->error_frames);
259 FNIC_MAIN_NOTE(KERN_NOTICE, host,
260 "fnic: dumped frames = %llu\n",
261 stats->dumped_frames);
262 FNIC_MAIN_NOTE(KERN_NOTICE, host,
263 "fnic: link failure count = %llu\n",
264 stats->link_failure_count);
265 FNIC_MAIN_NOTE(KERN_NOTICE, host,
266 "fnic: loss of sync count = %llu\n",
267 stats->loss_of_sync_count);
268 FNIC_MAIN_NOTE(KERN_NOTICE, host,
269 "fnic: loss of signal count = %llu\n",
270 stats->loss_of_signal_count);
271 FNIC_MAIN_NOTE(KERN_NOTICE, host,
272 "fnic: prim seq protocol err count = %llu\n",
273 stats->prim_seq_protocol_err_count);
274 FNIC_MAIN_NOTE(KERN_NOTICE, host,
275 "fnic: invalid tx word count= %llu\n",
276 stats->invalid_tx_word_count);
277 FNIC_MAIN_NOTE(KERN_NOTICE, host,
278 "fnic: invalid crc count = %llu\n",
279 stats->invalid_crc_count);
280 FNIC_MAIN_NOTE(KERN_NOTICE, host,
281 "fnic: fcp input requests = %llu\n",
282 stats->fcp_input_requests);
283 FNIC_MAIN_NOTE(KERN_NOTICE, host,
284 "fnic: fcp output requests = %llu\n",
285 stats->fcp_output_requests);
286 FNIC_MAIN_NOTE(KERN_NOTICE, host,
287 "fnic: fcp control requests = %llu\n",
288 stats->fcp_control_requests);
289 FNIC_MAIN_NOTE(KERN_NOTICE, host,
290 "fnic: fcp input megabytes = %llu\n",
291 stats->fcp_input_megabytes);
292 FNIC_MAIN_NOTE(KERN_NOTICE, host,
293 "fnic: fcp output megabytes = %llu\n",
294 stats->fcp_output_megabytes);
295 return;
296}
297
298/*
299 * fnic_reset_host_stats : clears host stats
300 * note : called when reset_statistics set under sysfs dir
301 */
302static void fnic_reset_host_stats(struct Scsi_Host *host)
303{
304 int ret;
305 struct fc_lport *lp = shost_priv(host);
306 struct fnic *fnic = lport_priv(lp);
307 struct fc_host_statistics *stats;
308 unsigned long flags;
309
310 /* dump current stats, before clearing them */
311 stats = fnic_get_stats(host);
312 fnic_dump_fchost_stats(host, stats);
313
314 spin_lock_irqsave(&fnic->fnic_lock, flags);
315 ret = vnic_dev_stats_clear(fnic->vdev);
316 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
317
318 if (ret) {
319 FNIC_MAIN_DBG(KERN_DEBUG, fnic->lport->host,
320 "fnic: Reset vnic stats failed"
321 " 0x%x", ret);
322 return;
323 }
324 fnic->stats_reset_time = jiffies;
325 memset(stats, 0, sizeof(*stats));
326
327 return;
328}
329
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700330void fnic_log_q_error(struct fnic *fnic)
331{
332 unsigned int i;
333 u32 error_status;
334
335 for (i = 0; i < fnic->raw_wq_count; i++) {
336 error_status = ioread32(&fnic->wq[i].ctrl->error_status);
337 if (error_status)
338 shost_printk(KERN_ERR, fnic->lport->host,
339 "WQ[%d] error_status"
340 " %d\n", i, error_status);
341 }
342
343 for (i = 0; i < fnic->rq_count; i++) {
344 error_status = ioread32(&fnic->rq[i].ctrl->error_status);
345 if (error_status)
346 shost_printk(KERN_ERR, fnic->lport->host,
347 "RQ[%d] error_status"
348 " %d\n", i, error_status);
349 }
350
351 for (i = 0; i < fnic->wq_copy_count; i++) {
352 error_status = ioread32(&fnic->wq_copy[i].ctrl->error_status);
353 if (error_status)
354 shost_printk(KERN_ERR, fnic->lport->host,
355 "CWQ[%d] error_status"
356 " %d\n", i, error_status);
357 }
358}
359
360void fnic_handle_link_event(struct fnic *fnic)
361{
362 unsigned long flags;
363
364 spin_lock_irqsave(&fnic->fnic_lock, flags);
365 if (fnic->stop_rx_link_events) {
366 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
367 return;
368 }
369 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
370
371 queue_work(fnic_event_queue, &fnic->link_work);
372
373}
374
375static int fnic_notify_set(struct fnic *fnic)
376{
377 int err;
378
379 switch (vnic_dev_get_intr_mode(fnic->vdev)) {
380 case VNIC_DEV_INTR_MODE_INTX:
381 err = vnic_dev_notify_set(fnic->vdev, FNIC_INTX_NOTIFY);
382 break;
383 case VNIC_DEV_INTR_MODE_MSI:
384 err = vnic_dev_notify_set(fnic->vdev, -1);
385 break;
386 case VNIC_DEV_INTR_MODE_MSIX:
387 err = vnic_dev_notify_set(fnic->vdev, FNIC_MSIX_ERR_NOTIFY);
388 break;
389 default:
390 shost_printk(KERN_ERR, fnic->lport->host,
391 "Interrupt mode should be set up"
392 " before devcmd notify set %d\n",
393 vnic_dev_get_intr_mode(fnic->vdev));
394 err = -1;
395 break;
396 }
397
398 return err;
399}
400
401static void fnic_notify_timer(unsigned long data)
402{
403 struct fnic *fnic = (struct fnic *)data;
404
405 fnic_handle_link_event(fnic);
406 mod_timer(&fnic->notify_timer,
407 round_jiffies(jiffies + FNIC_NOTIFY_TIMER_PERIOD));
408}
409
Hiral Pateld3c995f2013-02-25 16:18:36 -0800410static void fnic_fip_notify_timer(unsigned long data)
411{
412 struct fnic *fnic = (struct fnic *)data;
413
414 fnic_handle_fip_timer(fnic);
415}
416
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700417static void fnic_notify_timer_start(struct fnic *fnic)
418{
419 switch (vnic_dev_get_intr_mode(fnic->vdev)) {
420 case VNIC_DEV_INTR_MODE_MSI:
421 /*
422 * Schedule first timeout immediately. The driver is
423 * initiatialized and ready to look for link up notification
424 */
425 mod_timer(&fnic->notify_timer, jiffies);
426 break;
427 default:
428 /* Using intr for notification for INTx/MSI-X */
429 break;
430 };
431}
432
433static int fnic_dev_wait(struct vnic_dev *vdev,
434 int (*start)(struct vnic_dev *, int),
435 int (*finished)(struct vnic_dev *, int *),
436 int arg)
437{
438 unsigned long time;
439 int done;
440 int err;
Hiral Shaha232bfb2014-11-10 12:54:32 -0800441 int count;
442
443 count = 0;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700444
445 err = start(vdev, arg);
446 if (err)
447 return err;
448
Hiral Shaha232bfb2014-11-10 12:54:32 -0800449 /* Wait for func to complete.
450 * Sometime schedule_timeout_uninterruptible take long time
451 * to wake up so we do not retry as we are only waiting for
452 * 2 seconds in while loop. By adding count, we make sure
453 * we try atleast three times before returning -ETIMEDOUT
454 */
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700455 time = jiffies + (HZ * 2);
456 do {
457 err = finished(vdev, &done);
Hiral Shaha232bfb2014-11-10 12:54:32 -0800458 count++;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700459 if (err)
460 return err;
461 if (done)
462 return 0;
463 schedule_timeout_uninterruptible(HZ / 10);
Hiral Shaha232bfb2014-11-10 12:54:32 -0800464 } while (time_after(time, jiffies) || (count < 3));
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700465
466 return -ETIMEDOUT;
467}
468
469static int fnic_cleanup(struct fnic *fnic)
470{
471 unsigned int i;
472 int err;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700473
474 vnic_dev_disable(fnic->vdev);
475 for (i = 0; i < fnic->intr_count; i++)
476 vnic_intr_mask(&fnic->intr[i]);
477
478 for (i = 0; i < fnic->rq_count; i++) {
479 err = vnic_rq_disable(&fnic->rq[i]);
480 if (err)
481 return err;
482 }
483 for (i = 0; i < fnic->raw_wq_count; i++) {
484 err = vnic_wq_disable(&fnic->wq[i]);
485 if (err)
486 return err;
487 }
488 for (i = 0; i < fnic->wq_copy_count; i++) {
489 err = vnic_wq_copy_disable(&fnic->wq_copy[i]);
490 if (err)
491 return err;
492 }
493
494 /* Clean up completed IOs and FCS frames */
495 fnic_wq_copy_cmpl_handler(fnic, -1);
496 fnic_wq_cmpl_handler(fnic, -1);
497 fnic_rq_cmpl_handler(fnic, -1);
498
499 /* Clean up the IOs and FCS frames that have not completed */
500 for (i = 0; i < fnic->raw_wq_count; i++)
501 vnic_wq_clean(&fnic->wq[i], fnic_free_wq_buf);
502 for (i = 0; i < fnic->rq_count; i++)
503 vnic_rq_clean(&fnic->rq[i], fnic_free_rq_buf);
504 for (i = 0; i < fnic->wq_copy_count; i++)
505 vnic_wq_copy_clean(&fnic->wq_copy[i],
506 fnic_wq_copy_cleanup_handler);
507
508 for (i = 0; i < fnic->cq_count; i++)
509 vnic_cq_clean(&fnic->cq[i]);
510 for (i = 0; i < fnic->intr_count; i++)
511 vnic_intr_clean(&fnic->intr[i]);
512
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700513 mempool_destroy(fnic->io_req_pool);
514 for (i = 0; i < FNIC_SGL_NUM_CACHES; i++)
515 mempool_destroy(fnic->io_sgl_pool[i]);
516
517 return 0;
518}
519
520static void fnic_iounmap(struct fnic *fnic)
521{
522 if (fnic->bar0.vaddr)
523 iounmap(fnic->bar0.vaddr);
524}
525
Joe Eykholt78112e52009-11-03 11:49:22 -0800526/**
527 * fnic_get_mac() - get assigned data MAC address for FIP code.
528 * @lport: local port.
529 */
530static u8 *fnic_get_mac(struct fc_lport *lport)
531{
532 struct fnic *fnic = lport_priv(lport);
533
534 return fnic->data_src_addr;
535}
536
Hiral Pateld3c995f2013-02-25 16:18:36 -0800537static void fnic_set_vlan(struct fnic *fnic, u16 vlan_id)
538{
539 u16 old_vlan;
540 old_vlan = vnic_dev_set_default_vlan(fnic->vdev, vlan_id);
541}
542
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800543static int fnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700544{
545 struct Scsi_Host *host;
546 struct fc_lport *lp;
547 struct fnic *fnic;
548 mempool_t *pool;
549 int err;
550 int i;
551 unsigned long flags;
552
553 /*
554 * Allocate SCSI Host and set up association between host,
555 * local port, and fnic
556 */
Chris Leech86221962009-11-03 11:46:08 -0800557 lp = libfc_host_alloc(&fnic_host_template, sizeof(struct fnic));
558 if (!lp) {
559 printk(KERN_ERR PFX "Unable to alloc libfc local port\n");
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700560 err = -ENOMEM;
561 goto err_out;
562 }
Chris Leech86221962009-11-03 11:46:08 -0800563 host = lp->host;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700564 fnic = lport_priv(lp);
565 fnic->lport = lp;
Joe Eykholt78112e52009-11-03 11:49:22 -0800566 fnic->ctlr.lp = lp;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700567
568 snprintf(fnic->name, sizeof(fnic->name) - 1, "%s%d", DRV_NAME,
569 host->host_no);
570
571 host->transportt = fnic_fc_transport;
572
Hiral Patel67125b02013-09-12 17:45:42 -0700573 err = fnic_stats_debugfs_init(fnic);
574 if (err) {
575 shost_printk(KERN_ERR, fnic->lport->host,
576 "Failed to initialize debugfs for stats\n");
577 fnic_stats_debugfs_remove(fnic);
578 }
579
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700580 /* Setup PCI resources */
581 pci_set_drvdata(pdev, fnic);
582
583 fnic->pdev = pdev;
584
585 err = pci_enable_device(pdev);
586 if (err) {
587 shost_printk(KERN_ERR, fnic->lport->host,
588 "Cannot enable PCI device, aborting.\n");
589 goto err_out_free_hba;
590 }
591
592 err = pci_request_regions(pdev, DRV_NAME);
593 if (err) {
594 shost_printk(KERN_ERR, fnic->lport->host,
595 "Cannot enable PCI resources, aborting\n");
596 goto err_out_disable_device;
597 }
598
599 pci_set_master(pdev);
600
601 /* Query PCI controller on system for DMA addressing
Brian Uchino87aa6192013-09-09 13:31:47 -0700602 * limitation for the device. Try 64-bit first, and
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700603 * fail to 32-bit.
604 */
Brian Uchino87aa6192013-09-09 13:31:47 -0700605 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700606 if (err) {
Abhijeet Joglekare3f47cc2009-06-24 07:42:25 -0700607 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700608 if (err) {
609 shost_printk(KERN_ERR, fnic->lport->host,
610 "No usable DMA configuration "
611 "aborting\n");
612 goto err_out_release_regions;
613 }
Abhijeet Joglekare3f47cc2009-06-24 07:42:25 -0700614 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700615 if (err) {
616 shost_printk(KERN_ERR, fnic->lport->host,
617 "Unable to obtain 32-bit DMA "
618 "for consistent allocations, aborting.\n");
619 goto err_out_release_regions;
620 }
621 } else {
Brian Uchino87aa6192013-09-09 13:31:47 -0700622 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700623 if (err) {
624 shost_printk(KERN_ERR, fnic->lport->host,
Brian Uchino87aa6192013-09-09 13:31:47 -0700625 "Unable to obtain 64-bit DMA "
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700626 "for consistent allocations, aborting.\n");
627 goto err_out_release_regions;
628 }
629 }
630
631 /* Map vNIC resources from BAR0 */
632 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
633 shost_printk(KERN_ERR, fnic->lport->host,
634 "BAR0 not memory-map'able, aborting.\n");
635 err = -ENODEV;
636 goto err_out_release_regions;
637 }
638
639 fnic->bar0.vaddr = pci_iomap(pdev, 0, 0);
640 fnic->bar0.bus_addr = pci_resource_start(pdev, 0);
641 fnic->bar0.len = pci_resource_len(pdev, 0);
642
643 if (!fnic->bar0.vaddr) {
644 shost_printk(KERN_ERR, fnic->lport->host,
645 "Cannot memory-map BAR0 res hdr, "
646 "aborting.\n");
647 err = -ENODEV;
648 goto err_out_release_regions;
649 }
650
651 fnic->vdev = vnic_dev_register(NULL, fnic, pdev, &fnic->bar0);
652 if (!fnic->vdev) {
653 shost_printk(KERN_ERR, fnic->lport->host,
654 "vNIC registration failed, "
655 "aborting.\n");
656 err = -ENODEV;
657 goto err_out_iounmap;
658 }
659
660 err = fnic_dev_wait(fnic->vdev, vnic_dev_open,
661 vnic_dev_open_done, 0);
662 if (err) {
663 shost_printk(KERN_ERR, fnic->lport->host,
664 "vNIC dev open failed, aborting.\n");
665 goto err_out_vnic_unregister;
666 }
667
668 err = vnic_dev_init(fnic->vdev, 0);
669 if (err) {
670 shost_printk(KERN_ERR, fnic->lport->host,
671 "vNIC dev init failed, aborting.\n");
672 goto err_out_dev_close;
673 }
674
Joe Eykholt78112e52009-11-03 11:49:22 -0800675 err = vnic_dev_mac_addr(fnic->vdev, fnic->ctlr.ctl_src_addr);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700676 if (err) {
677 shost_printk(KERN_ERR, fnic->lport->host,
678 "vNIC get MAC addr failed \n");
679 goto err_out_dev_close;
680 }
Joe Eykholt78112e52009-11-03 11:49:22 -0800681 /* set data_src for point-to-point mode and to keep it non-zero */
682 memcpy(fnic->data_src_addr, fnic->ctlr.ctl_src_addr, ETH_ALEN);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700683
684 /* Get vNIC configuration */
685 err = fnic_get_vnic_config(fnic);
686 if (err) {
687 shost_printk(KERN_ERR, fnic->lport->host,
688 "Get vNIC configuration failed, "
689 "aborting.\n");
690 goto err_out_dev_close;
691 }
Hiral Patelfc857992013-09-09 13:31:51 -0700692
693 /* Configure Maximum Outstanding IO reqs*/
694 if (fnic->config.io_throttle_count != FNIC_UCSM_DFLT_THROTTLE_CNT_BLD) {
695 host->can_queue = min_t(u32, FNIC_MAX_IO_REQ,
696 max_t(u32, FNIC_MIN_IO_REQ,
697 fnic->config.io_throttle_count));
698 }
699 fnic->fnic_max_tag_id = host->can_queue;
700
701 err = scsi_init_shared_tag_map(host, fnic->fnic_max_tag_id);
702 if (err) {
703 shost_printk(KERN_ERR, fnic->lport->host,
704 "Unable to alloc shared tag map\n");
705 goto err_out_dev_close;
706 }
707
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700708 host->max_lun = fnic->config.luns_per_tgt;
709 host->max_id = FNIC_MAX_FCP_TARGET;
Vasu Devda87bfa2010-04-09 14:22:59 -0700710 host->max_cmd_len = FCOE_MAX_CMD_LEN;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700711
712 fnic_get_res_counts(fnic);
713
714 err = fnic_set_intr_mode(fnic);
715 if (err) {
716 shost_printk(KERN_ERR, fnic->lport->host,
717 "Failed to set intr mode, "
718 "aborting.\n");
719 goto err_out_dev_close;
720 }
721
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700722 err = fnic_alloc_vnic_resources(fnic);
723 if (err) {
724 shost_printk(KERN_ERR, fnic->lport->host,
725 "Failed to alloc vNIC resources, "
726 "aborting.\n");
Abhijeet Joglekar2e76f762009-11-03 11:45:37 -0800727 goto err_out_clear_intr;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700728 }
729
730
731 /* initialize all fnic locks */
732 spin_lock_init(&fnic->fnic_lock);
733
734 for (i = 0; i < FNIC_WQ_MAX; i++)
735 spin_lock_init(&fnic->wq_lock[i]);
736
737 for (i = 0; i < FNIC_WQ_COPY_MAX; i++) {
738 spin_lock_init(&fnic->wq_copy_lock[i]);
739 fnic->wq_copy_desc_low[i] = DESC_CLEAN_LOW_WATERMARK;
740 fnic->fw_ack_recd[i] = 0;
741 fnic->fw_ack_index[i] = -1;
742 }
743
744 for (i = 0; i < FNIC_IO_LOCKS; i++)
745 spin_lock_init(&fnic->io_req_lock[i]);
746
747 fnic->io_req_pool = mempool_create_slab_pool(2, fnic_io_req_cache);
748 if (!fnic->io_req_pool)
749 goto err_out_free_resources;
750
Abhijeet Joglekar0c79c742011-06-13 21:21:01 -0700751 pool = mempool_create_slab_pool(2, fnic_sgl_cache[FNIC_SGL_CACHE_DFLT]);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700752 if (!pool)
753 goto err_out_free_ioreq_pool;
754 fnic->io_sgl_pool[FNIC_SGL_CACHE_DFLT] = pool;
755
Abhijeet Joglekar0c79c742011-06-13 21:21:01 -0700756 pool = mempool_create_slab_pool(2, fnic_sgl_cache[FNIC_SGL_CACHE_MAX]);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700757 if (!pool)
758 goto err_out_free_dflt_pool;
759 fnic->io_sgl_pool[FNIC_SGL_CACHE_MAX] = pool;
760
761 /* setup vlan config, hw inserts vlan header */
762 fnic->vlan_hw_insert = 1;
763 fnic->vlan_id = 0;
764
Joe Eykholt78112e52009-11-03 11:49:22 -0800765 /* Initialize the FIP fcoe_ctrl struct */
766 fnic->ctlr.send = fnic_eth_send;
767 fnic->ctlr.update_mac = fnic_update_mac;
768 fnic->ctlr.get_src_addr = fnic_get_mac;
Joe Eykholt78112e52009-11-03 11:49:22 -0800769 if (fnic->config.flags & VFCF_FIP_CAPABLE) {
770 shost_printk(KERN_INFO, fnic->lport->host,
771 "firmware supports FIP\n");
Venkata Siva Vijayendra Bhamidipatiaaa5e562010-02-16 12:15:44 -0800772 /* enable directed and multicast */
773 vnic_dev_packet_filter(fnic->vdev, 1, 1, 0, 0, 0);
Joe Eykholt78112e52009-11-03 11:49:22 -0800774 vnic_dev_add_addr(fnic->vdev, FIP_ALL_ENODE_MACS);
775 vnic_dev_add_addr(fnic->vdev, fnic->ctlr.ctl_src_addr);
Hiral Pateld3c995f2013-02-25 16:18:36 -0800776 fnic->set_vlan = fnic_set_vlan;
Joe Eykholt3d902ac2010-07-20 15:19:58 -0700777 fcoe_ctlr_init(&fnic->ctlr, FIP_MODE_AUTO);
Hiral Pateld3c995f2013-02-25 16:18:36 -0800778 setup_timer(&fnic->fip_timer, fnic_fip_notify_timer,
779 (unsigned long)fnic);
780 spin_lock_init(&fnic->vlans_lock);
781 INIT_WORK(&fnic->fip_frame_work, fnic_handle_fip_frame);
782 INIT_WORK(&fnic->event_work, fnic_handle_event);
783 skb_queue_head_init(&fnic->fip_frame_queue);
Hiral Pateld3c995f2013-02-25 16:18:36 -0800784 INIT_LIST_HEAD(&fnic->evlist);
785 INIT_LIST_HEAD(&fnic->vlans);
Joe Eykholt78112e52009-11-03 11:49:22 -0800786 } else {
787 shost_printk(KERN_INFO, fnic->lport->host,
788 "firmware uses non-FIP mode\n");
Joe Eykholt3d902ac2010-07-20 15:19:58 -0700789 fcoe_ctlr_init(&fnic->ctlr, FIP_MODE_NON_FIP);
Hiral Shahc8ff03c2014-04-18 12:28:17 -0700790 fnic->ctlr.state = FIP_ST_NON_FIP;
Joe Eykholt78112e52009-11-03 11:49:22 -0800791 }
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700792 fnic->state = FNIC_IN_FC_MODE;
793
Hiral Patel03298552013-02-12 17:00:58 -0800794 atomic_set(&fnic->in_flight, 0);
795 fnic->state_flags = FNIC_FLAGS_NONE;
796
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700797 /* Enable hardware stripping of vlan header on ingress */
798 fnic_set_nic_config(fnic, 0, 0, 0, 0, 0, 0, 1);
799
800 /* Setup notification buffer area */
801 err = fnic_notify_set(fnic);
802 if (err) {
803 shost_printk(KERN_ERR, fnic->lport->host,
804 "Failed to alloc notify buffer, aborting.\n");
805 goto err_out_free_max_pool;
806 }
807
808 /* Setup notify timer when using MSI interrupts */
809 if (vnic_dev_get_intr_mode(fnic->vdev) == VNIC_DEV_INTR_MODE_MSI)
810 setup_timer(&fnic->notify_timer,
811 fnic_notify_timer, (unsigned long)fnic);
812
813 /* allocate RQ buffers and post them to RQ*/
814 for (i = 0; i < fnic->rq_count; i++) {
815 err = vnic_rq_fill(&fnic->rq[i], fnic_alloc_rq_frame);
816 if (err) {
817 shost_printk(KERN_ERR, fnic->lport->host,
818 "fnic_alloc_rq_frame can't alloc "
819 "frame\n");
820 goto err_out_free_rq_buf;
821 }
822 }
823
824 /*
825 * Initialization done with PCI system, hardware, firmware.
826 * Add host to SCSI
827 */
828 err = scsi_add_host(lp->host, &pdev->dev);
829 if (err) {
830 shost_printk(KERN_ERR, fnic->lport->host,
831 "fnic: scsi_add_host failed...exiting\n");
832 goto err_out_free_rq_buf;
833 }
834
835 /* Start local port initiatialization */
836
837 lp->link_up = 0;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700838
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700839 lp->max_retry_count = fnic->config.flogi_retries;
Abhijeet Joglekara3666952009-05-01 10:01:26 -0700840 lp->max_rport_retry_count = fnic->config.plogi_retries;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700841 lp->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
842 FCP_SPPF_CONF_COMPL);
843 if (fnic->config.flags & VFCF_FCP_SEQ_LVL_ERR)
844 lp->service_params |= FCP_SPPF_RETRY;
845
846 lp->boot_time = jiffies;
847 lp->e_d_tov = fnic->config.ed_tov;
848 lp->r_a_tov = fnic->config.ra_tov;
849 lp->link_supported_speeds = FC_PORTSPEED_10GBIT;
850 fc_set_wwnn(lp, fnic->config.node_wwn);
851 fc_set_wwpn(lp, fnic->config.port_wwn);
852
Joe Eykholte10f8c62010-07-20 15:20:30 -0700853 fcoe_libfc_config(lp, &fnic->ctlr, &fnic_transport_template, 0);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700854
Vasu Dev52ff8782009-07-29 17:05:10 -0700855 if (!fc_exch_mgr_alloc(lp, FC_CLASS_3, FCPIO_HOST_EXCH_RANGE_START,
856 FCPIO_HOST_EXCH_RANGE_END, NULL)) {
857 err = -ENOMEM;
858 goto err_out_remove_scsi_host;
859 }
860
Venkata Siva Vijayendra Bhamidipatic693a712010-02-16 12:15:50 -0800861 fc_lport_init_stats(lp);
Narsimhulu Musini1adee042013-09-09 13:31:45 -0700862 fnic->stats_reset_time = jiffies;
Venkata Siva Vijayendra Bhamidipatic693a712010-02-16 12:15:50 -0800863
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700864 fc_lport_config(lp);
865
866 if (fc_set_mfs(lp, fnic->config.maxdatafieldsize +
867 sizeof(struct fc_frame_header))) {
868 err = -EINVAL;
869 goto err_out_free_exch_mgr;
870 }
871 fc_host_maxframe_size(lp->host) = lp->mfs;
Mike Christie485868202010-09-15 16:52:28 -0500872 fc_host_dev_loss_tmo(lp->host) = fnic->config.port_down_timeout / 1000;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700873
874 sprintf(fc_host_symbolic_name(lp->host),
875 DRV_NAME " v" DRV_VERSION " over %s", fnic->name);
876
877 spin_lock_irqsave(&fnic_list_lock, flags);
878 list_add_tail(&fnic->list, &fnic_list);
879 spin_unlock_irqrestore(&fnic_list_lock, flags);
880
881 INIT_WORK(&fnic->link_work, fnic_handle_link);
882 INIT_WORK(&fnic->frame_work, fnic_handle_frame);
883 skb_queue_head_init(&fnic->frame_queue);
Joe Eykholt78112e52009-11-03 11:49:22 -0800884 skb_queue_head_init(&fnic->tx_queue);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700885
886 /* Enable all queues */
887 for (i = 0; i < fnic->raw_wq_count; i++)
888 vnic_wq_enable(&fnic->wq[i]);
889 for (i = 0; i < fnic->rq_count; i++)
890 vnic_rq_enable(&fnic->rq[i]);
891 for (i = 0; i < fnic->wq_copy_count; i++)
892 vnic_wq_copy_enable(&fnic->wq_copy[i]);
893
894 fc_fabric_login(lp);
895
896 vnic_dev_enable(fnic->vdev);
Abhijeet Joglekar2e76f762009-11-03 11:45:37 -0800897
898 err = fnic_request_intr(fnic);
899 if (err) {
900 shost_printk(KERN_ERR, fnic->lport->host,
901 "Unable to request irq.\n");
902 goto err_out_free_exch_mgr;
903 }
904
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700905 for (i = 0; i < fnic->intr_count; i++)
906 vnic_intr_unmask(&fnic->intr[i]);
907
908 fnic_notify_timer_start(fnic);
909
910 return 0;
911
912err_out_free_exch_mgr:
Vasu Dev52ff8782009-07-29 17:05:10 -0700913 fc_exch_mgr_free(lp);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700914err_out_remove_scsi_host:
Joe Eykholt78112e52009-11-03 11:49:22 -0800915 fc_remove_host(lp->host);
916 scsi_remove_host(lp->host);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700917err_out_free_rq_buf:
918 for (i = 0; i < fnic->rq_count; i++)
919 vnic_rq_clean(&fnic->rq[i], fnic_free_rq_buf);
920 vnic_dev_notify_unset(fnic->vdev);
921err_out_free_max_pool:
922 mempool_destroy(fnic->io_sgl_pool[FNIC_SGL_CACHE_MAX]);
923err_out_free_dflt_pool:
924 mempool_destroy(fnic->io_sgl_pool[FNIC_SGL_CACHE_DFLT]);
925err_out_free_ioreq_pool:
926 mempool_destroy(fnic->io_req_pool);
927err_out_free_resources:
928 fnic_free_vnic_resources(fnic);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700929err_out_clear_intr:
930 fnic_clear_intr_mode(fnic);
931err_out_dev_close:
932 vnic_dev_close(fnic->vdev);
933err_out_vnic_unregister:
934 vnic_dev_unregister(fnic->vdev);
935err_out_iounmap:
936 fnic_iounmap(fnic);
937err_out_release_regions:
938 pci_release_regions(pdev);
939err_out_disable_device:
940 pci_disable_device(pdev);
941err_out_free_hba:
Hiral Patel67125b02013-09-12 17:45:42 -0700942 fnic_stats_debugfs_remove(fnic);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700943 scsi_host_put(lp->host);
944err_out:
945 return err;
946}
947
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800948static void fnic_remove(struct pci_dev *pdev)
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700949{
950 struct fnic *fnic = pci_get_drvdata(pdev);
Joe Eykholt78112e52009-11-03 11:49:22 -0800951 struct fc_lport *lp = fnic->lport;
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700952 unsigned long flags;
953
954 /*
955 * Mark state so that the workqueue thread stops forwarding
956 * received frames and link events to the local port. ISR and
957 * other threads that can queue work items will also stop
958 * creating work items on the fnic workqueue
959 */
960 spin_lock_irqsave(&fnic->fnic_lock, flags);
961 fnic->stop_rx_link_events = 1;
962 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
963
964 if (vnic_dev_get_intr_mode(fnic->vdev) == VNIC_DEV_INTR_MODE_MSI)
965 del_timer_sync(&fnic->notify_timer);
966
967 /*
968 * Flush the fnic event queue. After this call, there should
969 * be no event queued for this fnic device in the workqueue
970 */
971 flush_workqueue(fnic_event_queue);
972 skb_queue_purge(&fnic->frame_queue);
Joe Eykholt78112e52009-11-03 11:49:22 -0800973 skb_queue_purge(&fnic->tx_queue);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700974
Hiral Pateld3c995f2013-02-25 16:18:36 -0800975 if (fnic->config.flags & VFCF_FIP_CAPABLE) {
976 del_timer_sync(&fnic->fip_timer);
977 skb_queue_purge(&fnic->fip_frame_queue);
978 fnic_fcoe_reset_vlans(fnic);
979 fnic_fcoe_evlist_free(fnic);
980 }
981
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700982 /*
983 * Log off the fabric. This stops all remote ports, dns port,
984 * logs off the fabric. This flushes all rport, disc, lport work
985 * before returning
986 */
987 fc_fabric_logoff(fnic->lport);
988
989 spin_lock_irqsave(&fnic->fnic_lock, flags);
990 fnic->in_remove = 1;
991 spin_unlock_irqrestore(&fnic->fnic_lock, flags);
992
Joe Eykholt78112e52009-11-03 11:49:22 -0800993 fcoe_ctlr_destroy(&fnic->ctlr);
994 fc_lport_destroy(lp);
Hiral Patel67125b02013-09-12 17:45:42 -0700995 fnic_stats_debugfs_remove(fnic);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -0700996
997 /*
998 * This stops the fnic device, masks all interrupts. Completed
999 * CQ entries are drained. Posted WQ/RQ/Copy-WQ entries are
1000 * cleaned up
1001 */
1002 fnic_cleanup(fnic);
1003
1004 BUG_ON(!skb_queue_empty(&fnic->frame_queue));
Joe Eykholt78112e52009-11-03 11:49:22 -08001005 BUG_ON(!skb_queue_empty(&fnic->tx_queue));
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001006
1007 spin_lock_irqsave(&fnic_list_lock, flags);
1008 list_del(&fnic->list);
1009 spin_unlock_irqrestore(&fnic_list_lock, flags);
1010
1011 fc_remove_host(fnic->lport->host);
1012 scsi_remove_host(fnic->lport->host);
Vasu Dev52ff8782009-07-29 17:05:10 -07001013 fc_exch_mgr_free(fnic->lport);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001014 vnic_dev_notify_unset(fnic->vdev);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001015 fnic_free_intr(fnic);
Abhijeet Joglekar2e76f762009-11-03 11:45:37 -08001016 fnic_free_vnic_resources(fnic);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001017 fnic_clear_intr_mode(fnic);
1018 vnic_dev_close(fnic->vdev);
1019 vnic_dev_unregister(fnic->vdev);
1020 fnic_iounmap(fnic);
1021 pci_release_regions(pdev);
1022 pci_disable_device(pdev);
Joe Eykholt78112e52009-11-03 11:49:22 -08001023 scsi_host_put(lp->host);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001024}
1025
1026static struct pci_driver fnic_driver = {
1027 .name = DRV_NAME,
1028 .id_table = fnic_id_table,
1029 .probe = fnic_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08001030 .remove = fnic_remove,
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001031};
1032
1033static int __init fnic_init_module(void)
1034{
1035 size_t len;
1036 int err = 0;
1037
1038 printk(KERN_INFO PFX "%s, ver %s\n", DRV_DESCRIPTION, DRV_VERSION);
1039
Hiral Patel67125b02013-09-12 17:45:42 -07001040 /* Create debugfs entries for fnic */
1041 err = fnic_debugfs_init();
1042 if (err < 0) {
1043 printk(KERN_ERR PFX "Failed to create fnic directory "
1044 "for tracing and stats logging\n");
1045 fnic_debugfs_terminate();
1046 }
1047
Hiral Patel4d7007b2013-02-12 17:01:02 -08001048 /* Allocate memory for trace buffer */
1049 err = fnic_trace_buf_init();
1050 if (err < 0) {
Hiral Shahabb14142014-04-18 12:28:19 -07001051 printk(KERN_ERR PFX
1052 "Trace buffer initialization Failed. "
1053 "Fnic Tracing utility is disabled\n");
Hiral Patel4d7007b2013-02-12 17:01:02 -08001054 fnic_trace_free();
1055 }
1056
Hiral Shahabb14142014-04-18 12:28:19 -07001057 /* Allocate memory for fc trace buffer */
1058 err = fnic_fc_trace_init();
1059 if (err < 0) {
1060 printk(KERN_ERR PFX "FC trace buffer initialization Failed "
1061 "FC frame tracing utility is disabled\n");
1062 fnic_fc_trace_free();
1063 }
1064
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001065 /* Create a cache for allocation of default size sgls */
1066 len = sizeof(struct fnic_dflt_sgl_list);
1067 fnic_sgl_cache[FNIC_SGL_CACHE_DFLT] = kmem_cache_create
1068 ("fnic_sgl_dflt", len + FNIC_SG_DESC_ALIGN, FNIC_SG_DESC_ALIGN,
Abhijeet Joglekar0c79c742011-06-13 21:21:01 -07001069 SLAB_HWCACHE_ALIGN,
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001070 NULL);
1071 if (!fnic_sgl_cache[FNIC_SGL_CACHE_DFLT]) {
1072 printk(KERN_ERR PFX "failed to create fnic dflt sgl slab\n");
1073 err = -ENOMEM;
1074 goto err_create_fnic_sgl_slab_dflt;
1075 }
1076
1077 /* Create a cache for allocation of max size sgls*/
1078 len = sizeof(struct fnic_sgl_list);
1079 fnic_sgl_cache[FNIC_SGL_CACHE_MAX] = kmem_cache_create
1080 ("fnic_sgl_max", len + FNIC_SG_DESC_ALIGN, FNIC_SG_DESC_ALIGN,
Hiral Pateld3c995f2013-02-25 16:18:36 -08001081 SLAB_HWCACHE_ALIGN,
1082 NULL);
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001083 if (!fnic_sgl_cache[FNIC_SGL_CACHE_MAX]) {
1084 printk(KERN_ERR PFX "failed to create fnic max sgl slab\n");
1085 err = -ENOMEM;
1086 goto err_create_fnic_sgl_slab_max;
1087 }
1088
1089 /* Create a cache of io_req structs for use via mempool */
1090 fnic_io_req_cache = kmem_cache_create("fnic_io_req",
1091 sizeof(struct fnic_io_req),
1092 0, SLAB_HWCACHE_ALIGN, NULL);
1093 if (!fnic_io_req_cache) {
1094 printk(KERN_ERR PFX "failed to create fnic io_req slab\n");
1095 err = -ENOMEM;
1096 goto err_create_fnic_ioreq_slab;
1097 }
1098
1099 fnic_event_queue = create_singlethread_workqueue("fnic_event_wq");
1100 if (!fnic_event_queue) {
1101 printk(KERN_ERR PFX "fnic work queue create failed\n");
1102 err = -ENOMEM;
1103 goto err_create_fnic_workq;
1104 }
1105
1106 spin_lock_init(&fnic_list_lock);
1107 INIT_LIST_HEAD(&fnic_list);
1108
Chris Leeche09056b2013-07-23 13:04:58 -07001109 fnic_fip_queue = create_singlethread_workqueue("fnic_fip_q");
1110 if (!fnic_fip_queue) {
1111 printk(KERN_ERR PFX "fnic FIP work queue create failed\n");
1112 err = -ENOMEM;
1113 goto err_create_fip_workq;
1114 }
1115
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001116 fnic_fc_transport = fc_attach_transport(&fnic_fc_functions);
1117 if (!fnic_fc_transport) {
1118 printk(KERN_ERR PFX "fc_attach_transport error\n");
1119 err = -ENOMEM;
1120 goto err_fc_transport;
1121 }
1122
1123 /* register the driver with PCI system */
1124 err = pci_register_driver(&fnic_driver);
1125 if (err < 0) {
1126 printk(KERN_ERR PFX "pci register error\n");
1127 goto err_pci_register;
1128 }
1129 return err;
1130
1131err_pci_register:
1132 fc_release_transport(fnic_fc_transport);
1133err_fc_transport:
Chris Leeche09056b2013-07-23 13:04:58 -07001134 destroy_workqueue(fnic_fip_queue);
1135err_create_fip_workq:
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001136 destroy_workqueue(fnic_event_queue);
1137err_create_fnic_workq:
1138 kmem_cache_destroy(fnic_io_req_cache);
1139err_create_fnic_ioreq_slab:
1140 kmem_cache_destroy(fnic_sgl_cache[FNIC_SGL_CACHE_MAX]);
1141err_create_fnic_sgl_slab_max:
1142 kmem_cache_destroy(fnic_sgl_cache[FNIC_SGL_CACHE_DFLT]);
1143err_create_fnic_sgl_slab_dflt:
Hiral Patel4d7007b2013-02-12 17:01:02 -08001144 fnic_trace_free();
Hiral Shahabb14142014-04-18 12:28:19 -07001145 fnic_fc_trace_free();
Hiral Patel67125b02013-09-12 17:45:42 -07001146 fnic_debugfs_terminate();
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001147 return err;
1148}
1149
1150static void __exit fnic_cleanup_module(void)
1151{
1152 pci_unregister_driver(&fnic_driver);
1153 destroy_workqueue(fnic_event_queue);
Hiral Pateld3c995f2013-02-25 16:18:36 -08001154 if (fnic_fip_queue) {
1155 flush_workqueue(fnic_fip_queue);
1156 destroy_workqueue(fnic_fip_queue);
1157 }
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001158 kmem_cache_destroy(fnic_sgl_cache[FNIC_SGL_CACHE_MAX]);
1159 kmem_cache_destroy(fnic_sgl_cache[FNIC_SGL_CACHE_DFLT]);
1160 kmem_cache_destroy(fnic_io_req_cache);
1161 fc_release_transport(fnic_fc_transport);
Hiral Patel4d7007b2013-02-12 17:01:02 -08001162 fnic_trace_free();
Hiral Shahabb14142014-04-18 12:28:19 -07001163 fnic_fc_trace_free();
Hiral Patel67125b02013-09-12 17:45:42 -07001164 fnic_debugfs_terminate();
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001165}
1166
1167module_init(fnic_init_module);
1168module_exit(fnic_cleanup_module);
1169