blob: 7c05be680b94cbdd69c1beb0fcdcd4b320bdb03c [file] [log] [blame]
Manish Rangankarace7f462016-12-01 00:21:08 -08001/*
2 * QLogic iSCSI Offload Driver
3 * Copyright (c) 2016 Cavium Inc.
4 *
5 * This software is available under the terms of the GNU General Public License
6 * (GPL) Version 2, available from the file COPYING in the main directory of
7 * this source tree.
8 */
9
10#include <linux/module.h>
11#include <linux/pci.h>
12#include <linux/kernel.h>
13#include <linux/if_arp.h>
14#include <scsi/iscsi_if.h>
15#include <linux/inet.h>
16#include <net/arp.h>
17#include <linux/list.h>
18#include <linux/kthread.h>
19#include <linux/mm.h>
20#include <linux/if_vlan.h>
21#include <linux/cpu.h>
Nilesh Javalic57ec8f2017-06-27 02:26:56 -070022#include <linux/iscsi_boot_sysfs.h>
Manish Rangankarace7f462016-12-01 00:21:08 -080023
24#include <scsi/scsi_cmnd.h>
25#include <scsi/scsi_device.h>
26#include <scsi/scsi_eh.h>
27#include <scsi/scsi_host.h>
28#include <scsi/scsi.h>
29
30#include "qedi.h"
31#include "qedi_gbl.h"
32#include "qedi_iscsi.h"
33
34static uint qedi_fw_debug;
35module_param(qedi_fw_debug, uint, 0644);
36MODULE_PARM_DESC(qedi_fw_debug, " Firmware debug level 0(default) to 3");
37
38uint qedi_dbg_log = QEDI_LOG_WARN | QEDI_LOG_SCSI_TM;
39module_param(qedi_dbg_log, uint, 0644);
40MODULE_PARM_DESC(qedi_dbg_log, " Default debug level");
41
42uint qedi_io_tracing;
43module_param(qedi_io_tracing, uint, 0644);
44MODULE_PARM_DESC(qedi_io_tracing,
45 " Enable logging of SCSI requests/completions into trace buffer. (default off).");
46
47const struct qed_iscsi_ops *qedi_ops;
48static struct scsi_transport_template *qedi_scsi_transport;
49static struct pci_driver qedi_pci_driver;
50static DEFINE_PER_CPU(struct qedi_percpu_s, qedi_percpu);
51static LIST_HEAD(qedi_udev_list);
52/* Static function declaration */
53static int qedi_alloc_global_queues(struct qedi_ctx *qedi);
54static void qedi_free_global_queues(struct qedi_ctx *qedi);
55static struct qedi_cmd *qedi_get_cmd_from_tid(struct qedi_ctx *qedi, u32 tid);
56static void qedi_reset_uio_rings(struct qedi_uio_dev *udev);
57static void qedi_ll2_free_skbs(struct qedi_ctx *qedi);
58
59static int qedi_iscsi_event_cb(void *context, u8 fw_event_code, void *fw_handle)
60{
61 struct qedi_ctx *qedi;
62 struct qedi_endpoint *qedi_ep;
63 struct async_data *data;
64 int rval = 0;
65
66 if (!context || !fw_handle) {
67 QEDI_ERR(NULL, "Recv event with ctx NULL\n");
68 return -EINVAL;
69 }
70
71 qedi = (struct qedi_ctx *)context;
72 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
73 "Recv Event %d fw_handle %p\n", fw_event_code, fw_handle);
74
75 data = (struct async_data *)fw_handle;
76 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
77 "cid=0x%x tid=0x%x err-code=0x%x fw-dbg-param=0x%x\n",
78 data->cid, data->itid, data->error_code,
79 data->fw_debug_param);
80
81 qedi_ep = qedi->ep_tbl[data->cid];
82
83 if (!qedi_ep) {
84 QEDI_WARN(&qedi->dbg_ctx,
85 "Cannot process event, ep already disconnected, cid=0x%x\n",
86 data->cid);
87 WARN_ON(1);
88 return -ENODEV;
89 }
90
91 switch (fw_event_code) {
92 case ISCSI_EVENT_TYPE_ASYN_CONNECT_COMPLETE:
93 if (qedi_ep->state == EP_STATE_OFLDCONN_START)
94 qedi_ep->state = EP_STATE_OFLDCONN_COMPL;
95
96 wake_up_interruptible(&qedi_ep->tcp_ofld_wait);
97 break;
98 case ISCSI_EVENT_TYPE_ASYN_TERMINATE_DONE:
99 qedi_ep->state = EP_STATE_DISCONN_COMPL;
100 wake_up_interruptible(&qedi_ep->tcp_ofld_wait);
101 break;
102 case ISCSI_EVENT_TYPE_ISCSI_CONN_ERROR:
103 qedi_process_iscsi_error(qedi_ep, data);
104 break;
105 case ISCSI_EVENT_TYPE_ASYN_ABORT_RCVD:
106 case ISCSI_EVENT_TYPE_ASYN_SYN_RCVD:
107 case ISCSI_EVENT_TYPE_ASYN_MAX_RT_TIME:
108 case ISCSI_EVENT_TYPE_ASYN_MAX_RT_CNT:
109 case ISCSI_EVENT_TYPE_ASYN_MAX_KA_PROBES_CNT:
110 case ISCSI_EVENT_TYPE_ASYN_FIN_WAIT2:
111 case ISCSI_EVENT_TYPE_TCP_CONN_ERROR:
112 qedi_process_tcp_error(qedi_ep, data);
113 break;
114 default:
115 QEDI_ERR(&qedi->dbg_ctx, "Recv Unknown Event %u\n",
116 fw_event_code);
117 }
118
119 return rval;
120}
121
122static int qedi_uio_open(struct uio_info *uinfo, struct inode *inode)
123{
124 struct qedi_uio_dev *udev = uinfo->priv;
125 struct qedi_ctx *qedi = udev->qedi;
126
127 if (!capable(CAP_NET_ADMIN))
128 return -EPERM;
129
130 if (udev->uio_dev != -1)
131 return -EBUSY;
132
133 rtnl_lock();
134 udev->uio_dev = iminor(inode);
135 qedi_reset_uio_rings(udev);
136 set_bit(UIO_DEV_OPENED, &qedi->flags);
137 rtnl_unlock();
138
139 return 0;
140}
141
142static int qedi_uio_close(struct uio_info *uinfo, struct inode *inode)
143{
144 struct qedi_uio_dev *udev = uinfo->priv;
145 struct qedi_ctx *qedi = udev->qedi;
146
147 udev->uio_dev = -1;
148 clear_bit(UIO_DEV_OPENED, &qedi->flags);
149 qedi_ll2_free_skbs(qedi);
150 return 0;
151}
152
153static void __qedi_free_uio_rings(struct qedi_uio_dev *udev)
154{
Arun Easi5e901d02017-05-19 01:33:15 -0700155 if (udev->uctrl) {
156 free_page((unsigned long)udev->uctrl);
157 udev->uctrl = NULL;
158 }
159
Manish Rangankarace7f462016-12-01 00:21:08 -0800160 if (udev->ll2_ring) {
161 free_page((unsigned long)udev->ll2_ring);
162 udev->ll2_ring = NULL;
163 }
164
165 if (udev->ll2_buf) {
166 free_pages((unsigned long)udev->ll2_buf, 2);
167 udev->ll2_buf = NULL;
168 }
169}
170
171static void __qedi_free_uio(struct qedi_uio_dev *udev)
172{
173 uio_unregister_device(&udev->qedi_uinfo);
174
175 __qedi_free_uio_rings(udev);
176
177 pci_dev_put(udev->pdev);
Manish Rangankarace7f462016-12-01 00:21:08 -0800178 kfree(udev);
179}
180
181static void qedi_free_uio(struct qedi_uio_dev *udev)
182{
183 if (!udev)
184 return;
185
186 list_del_init(&udev->list);
187 __qedi_free_uio(udev);
188}
189
190static void qedi_reset_uio_rings(struct qedi_uio_dev *udev)
191{
192 struct qedi_ctx *qedi = NULL;
193 struct qedi_uio_ctrl *uctrl = NULL;
194
195 qedi = udev->qedi;
196 uctrl = udev->uctrl;
197
198 spin_lock_bh(&qedi->ll2_lock);
199 uctrl->host_rx_cons = 0;
200 uctrl->hw_rx_prod = 0;
201 uctrl->hw_rx_bd_prod = 0;
202 uctrl->host_rx_bd_cons = 0;
203
204 memset(udev->ll2_ring, 0, udev->ll2_ring_size);
205 memset(udev->ll2_buf, 0, udev->ll2_buf_size);
206 spin_unlock_bh(&qedi->ll2_lock);
207}
208
209static int __qedi_alloc_uio_rings(struct qedi_uio_dev *udev)
210{
211 int rc = 0;
212
213 if (udev->ll2_ring || udev->ll2_buf)
214 return rc;
215
Arun Easi5e901d02017-05-19 01:33:15 -0700216 /* Memory for control area. */
217 udev->uctrl = (void *)get_zeroed_page(GFP_KERNEL);
218 if (!udev->uctrl)
219 return -ENOMEM;
220
Manish Rangankarace7f462016-12-01 00:21:08 -0800221 /* Allocating memory for LL2 ring */
222 udev->ll2_ring_size = QEDI_PAGE_SIZE;
223 udev->ll2_ring = (void *)get_zeroed_page(GFP_KERNEL | __GFP_COMP);
224 if (!udev->ll2_ring) {
225 rc = -ENOMEM;
226 goto exit_alloc_ring;
227 }
228
229 /* Allocating memory for Tx/Rx pkt buffer */
230 udev->ll2_buf_size = TX_RX_RING * LL2_SINGLE_BUF_SIZE;
231 udev->ll2_buf_size = QEDI_PAGE_ALIGN(udev->ll2_buf_size);
232 udev->ll2_buf = (void *)__get_free_pages(GFP_KERNEL | __GFP_COMP |
233 __GFP_ZERO, 2);
234 if (!udev->ll2_buf) {
235 rc = -ENOMEM;
236 goto exit_alloc_buf;
237 }
238 return rc;
239
240exit_alloc_buf:
241 free_page((unsigned long)udev->ll2_ring);
242 udev->ll2_ring = NULL;
243exit_alloc_ring:
244 return rc;
245}
246
247static int qedi_alloc_uio_rings(struct qedi_ctx *qedi)
248{
249 struct qedi_uio_dev *udev = NULL;
Manish Rangankarace7f462016-12-01 00:21:08 -0800250 int rc = 0;
251
252 list_for_each_entry(udev, &qedi_udev_list, list) {
253 if (udev->pdev == qedi->pdev) {
254 udev->qedi = qedi;
255 if (__qedi_alloc_uio_rings(udev)) {
256 udev->qedi = NULL;
257 return -ENOMEM;
258 }
259 qedi->udev = udev;
260 return 0;
261 }
262 }
263
264 udev = kzalloc(sizeof(*udev), GFP_KERNEL);
265 if (!udev) {
266 rc = -ENOMEM;
267 goto err_udev;
268 }
269
Manish Rangankarace7f462016-12-01 00:21:08 -0800270 udev->uio_dev = -1;
271
272 udev->qedi = qedi;
273 udev->pdev = qedi->pdev;
Manish Rangankarace7f462016-12-01 00:21:08 -0800274
275 rc = __qedi_alloc_uio_rings(udev);
276 if (rc)
Arun Easi5e901d02017-05-19 01:33:15 -0700277 goto err_uctrl;
Manish Rangankarace7f462016-12-01 00:21:08 -0800278
279 list_add(&udev->list, &qedi_udev_list);
280
281 pci_dev_get(udev->pdev);
282 qedi->udev = udev;
283
284 udev->tx_pkt = udev->ll2_buf;
285 udev->rx_pkt = udev->ll2_buf + LL2_SINGLE_BUF_SIZE;
286 return 0;
287
Manish Rangankarace7f462016-12-01 00:21:08 -0800288 err_uctrl:
289 kfree(udev);
290 err_udev:
291 return -ENOMEM;
292}
293
294static int qedi_init_uio(struct qedi_ctx *qedi)
295{
296 struct qedi_uio_dev *udev = qedi->udev;
297 struct uio_info *uinfo;
298 int ret = 0;
299
300 if (!udev)
301 return -ENOMEM;
302
303 uinfo = &udev->qedi_uinfo;
304
305 uinfo->mem[0].addr = (unsigned long)udev->uctrl;
306 uinfo->mem[0].size = sizeof(struct qedi_uio_ctrl);
307 uinfo->mem[0].memtype = UIO_MEM_LOGICAL;
308
309 uinfo->mem[1].addr = (unsigned long)udev->ll2_ring;
310 uinfo->mem[1].size = udev->ll2_ring_size;
311 uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
312
313 uinfo->mem[2].addr = (unsigned long)udev->ll2_buf;
314 uinfo->mem[2].size = udev->ll2_buf_size;
315 uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
316
317 uinfo->name = "qedi_uio";
318 uinfo->version = QEDI_MODULE_VERSION;
319 uinfo->irq = UIO_IRQ_CUSTOM;
320
321 uinfo->open = qedi_uio_open;
322 uinfo->release = qedi_uio_close;
323
324 if (udev->uio_dev == -1) {
325 if (!uinfo->priv) {
326 uinfo->priv = udev;
327
328 ret = uio_register_device(&udev->pdev->dev, uinfo);
329 if (ret) {
330 QEDI_ERR(&qedi->dbg_ctx,
331 "UIO registration failed\n");
332 }
333 }
334 }
335
336 return ret;
337}
338
339static int qedi_alloc_and_init_sb(struct qedi_ctx *qedi,
340 struct qed_sb_info *sb_info, u16 sb_id)
341{
342 struct status_block *sb_virt;
343 dma_addr_t sb_phys;
344 int ret;
345
346 sb_virt = dma_alloc_coherent(&qedi->pdev->dev,
347 sizeof(struct status_block), &sb_phys,
348 GFP_KERNEL);
349 if (!sb_virt) {
350 QEDI_ERR(&qedi->dbg_ctx,
351 "Status block allocation failed for id = %d.\n",
352 sb_id);
353 return -ENOMEM;
354 }
355
356 ret = qedi_ops->common->sb_init(qedi->cdev, sb_info, sb_virt, sb_phys,
357 sb_id, QED_SB_TYPE_STORAGE);
358 if (ret) {
359 QEDI_ERR(&qedi->dbg_ctx,
360 "Status block initialization failed for id = %d.\n",
361 sb_id);
362 return ret;
363 }
364
365 return 0;
366}
367
368static void qedi_free_sb(struct qedi_ctx *qedi)
369{
370 struct qed_sb_info *sb_info;
371 int id;
372
373 for (id = 0; id < MIN_NUM_CPUS_MSIX(qedi); id++) {
374 sb_info = &qedi->sb_array[id];
375 if (sb_info->sb_virt)
376 dma_free_coherent(&qedi->pdev->dev,
377 sizeof(*sb_info->sb_virt),
378 (void *)sb_info->sb_virt,
379 sb_info->sb_phys);
380 }
381}
382
383static void qedi_free_fp(struct qedi_ctx *qedi)
384{
385 kfree(qedi->fp_array);
386 kfree(qedi->sb_array);
387}
388
389static void qedi_destroy_fp(struct qedi_ctx *qedi)
390{
391 qedi_free_sb(qedi);
392 qedi_free_fp(qedi);
393}
394
395static int qedi_alloc_fp(struct qedi_ctx *qedi)
396{
397 int ret = 0;
398
399 qedi->fp_array = kcalloc(MIN_NUM_CPUS_MSIX(qedi),
400 sizeof(struct qedi_fastpath), GFP_KERNEL);
401 if (!qedi->fp_array) {
402 QEDI_ERR(&qedi->dbg_ctx,
403 "fastpath fp array allocation failed.\n");
404 return -ENOMEM;
405 }
406
407 qedi->sb_array = kcalloc(MIN_NUM_CPUS_MSIX(qedi),
408 sizeof(struct qed_sb_info), GFP_KERNEL);
409 if (!qedi->sb_array) {
410 QEDI_ERR(&qedi->dbg_ctx,
411 "fastpath sb array allocation failed.\n");
412 ret = -ENOMEM;
413 goto free_fp;
414 }
415
416 return ret;
417
418free_fp:
419 qedi_free_fp(qedi);
420 return ret;
421}
422
423static void qedi_int_fp(struct qedi_ctx *qedi)
424{
425 struct qedi_fastpath *fp;
426 int id;
427
428 memset(qedi->fp_array, 0, MIN_NUM_CPUS_MSIX(qedi) *
429 sizeof(*qedi->fp_array));
430 memset(qedi->sb_array, 0, MIN_NUM_CPUS_MSIX(qedi) *
431 sizeof(*qedi->sb_array));
432
433 for (id = 0; id < MIN_NUM_CPUS_MSIX(qedi); id++) {
434 fp = &qedi->fp_array[id];
435 fp->sb_info = &qedi->sb_array[id];
436 fp->sb_id = id;
437 fp->qedi = qedi;
438 snprintf(fp->name, sizeof(fp->name), "%s-fp-%d",
439 "qedi", id);
440
441 /* fp_array[i] ---- irq cookie
442 * So init data which is needed in int ctx
443 */
444 }
445}
446
447static int qedi_prepare_fp(struct qedi_ctx *qedi)
448{
449 struct qedi_fastpath *fp;
450 int id, ret = 0;
451
452 ret = qedi_alloc_fp(qedi);
453 if (ret)
454 goto err;
455
456 qedi_int_fp(qedi);
457
458 for (id = 0; id < MIN_NUM_CPUS_MSIX(qedi); id++) {
459 fp = &qedi->fp_array[id];
460 ret = qedi_alloc_and_init_sb(qedi, fp->sb_info, fp->sb_id);
461 if (ret) {
462 QEDI_ERR(&qedi->dbg_ctx,
463 "SB allocation and initialization failed.\n");
464 ret = -EIO;
465 goto err_init;
466 }
467 }
468
469 return 0;
470
471err_init:
472 qedi_free_sb(qedi);
473 qedi_free_fp(qedi);
474err:
475 return ret;
476}
477
478static int qedi_setup_cid_que(struct qedi_ctx *qedi)
479{
480 int i;
481
482 qedi->cid_que.cid_que_base = kmalloc_array(qedi->max_active_conns,
483 sizeof(u32), GFP_KERNEL);
484 if (!qedi->cid_que.cid_que_base)
485 return -ENOMEM;
486
487 qedi->cid_que.conn_cid_tbl = kmalloc_array(qedi->max_active_conns,
488 sizeof(struct qedi_conn *),
489 GFP_KERNEL);
490 if (!qedi->cid_que.conn_cid_tbl) {
491 kfree(qedi->cid_que.cid_que_base);
492 qedi->cid_que.cid_que_base = NULL;
493 return -ENOMEM;
494 }
495
496 qedi->cid_que.cid_que = (u32 *)qedi->cid_que.cid_que_base;
497 qedi->cid_que.cid_q_prod_idx = 0;
498 qedi->cid_que.cid_q_cons_idx = 0;
499 qedi->cid_que.cid_q_max_idx = qedi->max_active_conns;
500 qedi->cid_que.cid_free_cnt = qedi->max_active_conns;
501
502 for (i = 0; i < qedi->max_active_conns; i++) {
503 qedi->cid_que.cid_que[i] = i;
504 qedi->cid_que.conn_cid_tbl[i] = NULL;
505 }
506
507 return 0;
508}
509
510static void qedi_release_cid_que(struct qedi_ctx *qedi)
511{
512 kfree(qedi->cid_que.cid_que_base);
513 qedi->cid_que.cid_que_base = NULL;
514
515 kfree(qedi->cid_que.conn_cid_tbl);
516 qedi->cid_que.conn_cid_tbl = NULL;
517}
518
519static int qedi_init_id_tbl(struct qedi_portid_tbl *id_tbl, u16 size,
520 u16 start_id, u16 next)
521{
522 id_tbl->start = start_id;
523 id_tbl->max = size;
524 id_tbl->next = next;
525 spin_lock_init(&id_tbl->lock);
526 id_tbl->table = kzalloc(DIV_ROUND_UP(size, 32) * 4, GFP_KERNEL);
527 if (!id_tbl->table)
528 return -ENOMEM;
529
530 return 0;
531}
532
533static void qedi_free_id_tbl(struct qedi_portid_tbl *id_tbl)
534{
535 kfree(id_tbl->table);
536 id_tbl->table = NULL;
537}
538
539int qedi_alloc_id(struct qedi_portid_tbl *id_tbl, u16 id)
540{
541 int ret = -1;
542
543 id -= id_tbl->start;
544 if (id >= id_tbl->max)
545 return ret;
546
547 spin_lock(&id_tbl->lock);
548 if (!test_bit(id, id_tbl->table)) {
549 set_bit(id, id_tbl->table);
550 ret = 0;
551 }
552 spin_unlock(&id_tbl->lock);
553 return ret;
554}
555
556u16 qedi_alloc_new_id(struct qedi_portid_tbl *id_tbl)
557{
558 u16 id;
559
560 spin_lock(&id_tbl->lock);
561 id = find_next_zero_bit(id_tbl->table, id_tbl->max, id_tbl->next);
562 if (id >= id_tbl->max) {
563 id = QEDI_LOCAL_PORT_INVALID;
564 if (id_tbl->next != 0) {
565 id = find_first_zero_bit(id_tbl->table, id_tbl->next);
566 if (id >= id_tbl->next)
567 id = QEDI_LOCAL_PORT_INVALID;
568 }
569 }
570
571 if (id < id_tbl->max) {
572 set_bit(id, id_tbl->table);
573 id_tbl->next = (id + 1) & (id_tbl->max - 1);
574 id += id_tbl->start;
575 }
576
577 spin_unlock(&id_tbl->lock);
578
579 return id;
580}
581
582void qedi_free_id(struct qedi_portid_tbl *id_tbl, u16 id)
583{
584 if (id == QEDI_LOCAL_PORT_INVALID)
585 return;
586
587 id -= id_tbl->start;
588 if (id >= id_tbl->max)
589 return;
590
591 clear_bit(id, id_tbl->table);
592}
593
594static void qedi_cm_free_mem(struct qedi_ctx *qedi)
595{
596 kfree(qedi->ep_tbl);
597 qedi->ep_tbl = NULL;
598 qedi_free_id_tbl(&qedi->lcl_port_tbl);
599}
600
601static int qedi_cm_alloc_mem(struct qedi_ctx *qedi)
602{
603 u16 port_id;
604
605 qedi->ep_tbl = kzalloc((qedi->max_active_conns *
606 sizeof(struct qedi_endpoint *)), GFP_KERNEL);
607 if (!qedi->ep_tbl)
608 return -ENOMEM;
609 port_id = prandom_u32() % QEDI_LOCAL_PORT_RANGE;
610 if (qedi_init_id_tbl(&qedi->lcl_port_tbl, QEDI_LOCAL_PORT_RANGE,
611 QEDI_LOCAL_PORT_MIN, port_id)) {
612 qedi_cm_free_mem(qedi);
613 return -ENOMEM;
614 }
615
616 return 0;
617}
618
619static struct qedi_ctx *qedi_host_alloc(struct pci_dev *pdev)
620{
621 struct Scsi_Host *shost;
622 struct qedi_ctx *qedi = NULL;
623
624 shost = iscsi_host_alloc(&qedi_host_template,
625 sizeof(struct qedi_ctx), 0);
626 if (!shost) {
627 QEDI_ERR(NULL, "Could not allocate shost\n");
628 goto exit_setup_shost;
629 }
630
631 shost->max_id = QEDI_MAX_ISCSI_CONNS_PER_HBA;
632 shost->max_channel = 0;
633 shost->max_lun = ~0;
634 shost->max_cmd_len = 16;
635 shost->transportt = qedi_scsi_transport;
636
637 qedi = iscsi_host_priv(shost);
638 memset(qedi, 0, sizeof(*qedi));
639 qedi->shost = shost;
640 qedi->dbg_ctx.host_no = shost->host_no;
641 qedi->pdev = pdev;
642 qedi->dbg_ctx.pdev = pdev;
643 qedi->max_active_conns = ISCSI_MAX_SESS_PER_HBA;
644 qedi->max_sqes = QEDI_SQ_SIZE;
645
646 if (shost_use_blk_mq(shost))
647 shost->nr_hw_queues = MIN_NUM_CPUS_MSIX(qedi);
648
649 pci_set_drvdata(pdev, qedi);
650
651exit_setup_shost:
652 return qedi;
653}
654
655static int qedi_ll2_rx(void *cookie, struct sk_buff *skb, u32 arg1, u32 arg2)
656{
657 struct qedi_ctx *qedi = (struct qedi_ctx *)cookie;
658 struct qedi_uio_dev *udev;
659 struct qedi_uio_ctrl *uctrl;
660 struct skb_work_list *work;
661 u32 prod;
662
663 if (!qedi) {
664 QEDI_ERR(NULL, "qedi is NULL\n");
665 return -1;
666 }
667
668 if (!test_bit(UIO_DEV_OPENED, &qedi->flags)) {
669 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_UIO,
670 "UIO DEV is not opened\n");
671 kfree_skb(skb);
672 return 0;
673 }
674
675 udev = qedi->udev;
676 uctrl = udev->uctrl;
677
678 work = kzalloc(sizeof(*work), GFP_ATOMIC);
679 if (!work) {
680 QEDI_WARN(&qedi->dbg_ctx,
681 "Could not allocate work so dropping frame.\n");
682 kfree_skb(skb);
683 return 0;
684 }
685
686 INIT_LIST_HEAD(&work->list);
687 work->skb = skb;
688
689 if (skb_vlan_tag_present(skb))
690 work->vlan_id = skb_vlan_tag_get(skb);
691
692 if (work->vlan_id)
693 __vlan_insert_tag(work->skb, htons(ETH_P_8021Q), work->vlan_id);
694
695 spin_lock_bh(&qedi->ll2_lock);
696 list_add_tail(&work->list, &qedi->ll2_skb_list);
697
698 ++uctrl->hw_rx_prod_cnt;
699 prod = (uctrl->hw_rx_prod + 1) % RX_RING;
700 if (prod != uctrl->host_rx_cons) {
701 uctrl->hw_rx_prod = prod;
702 spin_unlock_bh(&qedi->ll2_lock);
703 wake_up_process(qedi->ll2_recv_thread);
704 return 0;
705 }
706
707 spin_unlock_bh(&qedi->ll2_lock);
708 return 0;
709}
710
711/* map this skb to iscsiuio mmaped region */
712static int qedi_ll2_process_skb(struct qedi_ctx *qedi, struct sk_buff *skb,
713 u16 vlan_id)
714{
715 struct qedi_uio_dev *udev = NULL;
716 struct qedi_uio_ctrl *uctrl = NULL;
717 struct qedi_rx_bd rxbd;
718 struct qedi_rx_bd *p_rxbd;
719 u32 rx_bd_prod;
720 void *pkt;
721 int len = 0;
722
723 if (!qedi) {
724 QEDI_ERR(NULL, "qedi is NULL\n");
725 return -1;
726 }
727
728 udev = qedi->udev;
729 uctrl = udev->uctrl;
730 pkt = udev->rx_pkt + (uctrl->hw_rx_prod * LL2_SINGLE_BUF_SIZE);
731 len = min_t(u32, skb->len, (u32)LL2_SINGLE_BUF_SIZE);
732 memcpy(pkt, skb->data, len);
733
734 memset(&rxbd, 0, sizeof(rxbd));
735 rxbd.rx_pkt_index = uctrl->hw_rx_prod;
736 rxbd.rx_pkt_len = len;
737 rxbd.vlan_id = vlan_id;
738
739 uctrl->hw_rx_bd_prod = (uctrl->hw_rx_bd_prod + 1) % QEDI_NUM_RX_BD;
740 rx_bd_prod = uctrl->hw_rx_bd_prod;
741 p_rxbd = (struct qedi_rx_bd *)udev->ll2_ring;
742 p_rxbd += rx_bd_prod;
743
744 memcpy(p_rxbd, &rxbd, sizeof(rxbd));
745
746 /* notify the iscsiuio about new packet */
747 uio_event_notify(&udev->qedi_uinfo);
748
749 return 0;
750}
751
752static void qedi_ll2_free_skbs(struct qedi_ctx *qedi)
753{
754 struct skb_work_list *work, *work_tmp;
755
756 spin_lock_bh(&qedi->ll2_lock);
757 list_for_each_entry_safe(work, work_tmp, &qedi->ll2_skb_list, list) {
758 list_del(&work->list);
759 if (work->skb)
760 kfree_skb(work->skb);
761 kfree(work);
762 }
763 spin_unlock_bh(&qedi->ll2_lock);
764}
765
766static int qedi_ll2_recv_thread(void *arg)
767{
768 struct qedi_ctx *qedi = (struct qedi_ctx *)arg;
769 struct skb_work_list *work, *work_tmp;
770
771 set_user_nice(current, -20);
772
773 while (!kthread_should_stop()) {
774 spin_lock_bh(&qedi->ll2_lock);
775 list_for_each_entry_safe(work, work_tmp, &qedi->ll2_skb_list,
776 list) {
777 list_del(&work->list);
778 qedi_ll2_process_skb(qedi, work->skb, work->vlan_id);
779 kfree_skb(work->skb);
780 kfree(work);
781 }
782 set_current_state(TASK_INTERRUPTIBLE);
783 spin_unlock_bh(&qedi->ll2_lock);
784 schedule();
785 }
786
787 __set_current_state(TASK_RUNNING);
788 return 0;
789}
790
791static int qedi_set_iscsi_pf_param(struct qedi_ctx *qedi)
792{
793 u8 num_sq_pages;
794 u32 log_page_size;
795 int rval = 0;
796
Manish Rangankarace7f462016-12-01 00:21:08 -0800797
798 num_sq_pages = (MAX_OUSTANDING_TASKS_PER_CON * 8) / PAGE_SIZE;
799
800 qedi->num_queues = MIN_NUM_CPUS_MSIX(qedi);
801
Manish Rangankar42d7c102017-08-10 06:32:17 -0700802 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
803 "Number of CQ count is %d\n", qedi->num_queues);
804
Manish Rangankarace7f462016-12-01 00:21:08 -0800805 memset(&qedi->pf_params.iscsi_pf_params, 0,
806 sizeof(qedi->pf_params.iscsi_pf_params));
807
808 qedi->p_cpuq = pci_alloc_consistent(qedi->pdev,
809 qedi->num_queues * sizeof(struct qedi_glbl_q_params),
810 &qedi->hw_p_cpuq);
811 if (!qedi->p_cpuq) {
812 QEDI_ERR(&qedi->dbg_ctx, "pci_alloc_consistent fail\n");
813 rval = -1;
814 goto err_alloc_mem;
815 }
816
817 rval = qedi_alloc_global_queues(qedi);
818 if (rval) {
819 QEDI_ERR(&qedi->dbg_ctx, "Global queue allocation failed.\n");
820 rval = -1;
821 goto err_alloc_mem;
822 }
823
824 qedi->pf_params.iscsi_pf_params.num_cons = QEDI_MAX_ISCSI_CONNS_PER_HBA;
825 qedi->pf_params.iscsi_pf_params.num_tasks = QEDI_MAX_ISCSI_TASK;
826 qedi->pf_params.iscsi_pf_params.half_way_close_timeout = 10;
827 qedi->pf_params.iscsi_pf_params.num_sq_pages_in_ring = num_sq_pages;
828 qedi->pf_params.iscsi_pf_params.num_r2tq_pages_in_ring = num_sq_pages;
829 qedi->pf_params.iscsi_pf_params.num_uhq_pages_in_ring = num_sq_pages;
830 qedi->pf_params.iscsi_pf_params.num_queues = qedi->num_queues;
831 qedi->pf_params.iscsi_pf_params.debug_mode = qedi_fw_debug;
manish.rangankar@cavium.com962ea1c2017-05-19 01:33:19 -0700832 qedi->pf_params.iscsi_pf_params.two_msl_timer = 4000;
Nilesh Javali3d61a312017-05-19 01:33:20 -0700833 qedi->pf_params.iscsi_pf_params.max_fin_rt = 2;
Manish Rangankarace7f462016-12-01 00:21:08 -0800834
835 for (log_page_size = 0 ; log_page_size < 32 ; log_page_size++) {
836 if ((1 << log_page_size) == PAGE_SIZE)
837 break;
838 }
839 qedi->pf_params.iscsi_pf_params.log_page_size = log_page_size;
840
841 qedi->pf_params.iscsi_pf_params.glbl_q_params_addr =
842 (u64)qedi->hw_p_cpuq;
843
844 /* RQ BDQ initializations.
845 * rq_num_entries: suggested value for Initiator is 16 (4KB RQ)
846 * rqe_log_size: 8 for 256B RQE
847 */
848 qedi->pf_params.iscsi_pf_params.rqe_log_size = 8;
849 /* BDQ address and size */
850 qedi->pf_params.iscsi_pf_params.bdq_pbl_base_addr[BDQ_ID_RQ] =
851 qedi->bdq_pbl_list_dma;
852 qedi->pf_params.iscsi_pf_params.bdq_pbl_num_entries[BDQ_ID_RQ] =
853 qedi->bdq_pbl_list_num_entries;
854 qedi->pf_params.iscsi_pf_params.rq_buffer_size = QEDI_BDQ_BUF_SIZE;
855
856 /* cq_num_entries: num_tasks + rq_num_entries */
857 qedi->pf_params.iscsi_pf_params.cq_num_entries = 2048;
858
859 qedi->pf_params.iscsi_pf_params.gl_rq_pi = QEDI_PROTO_CQ_PROD_IDX;
860 qedi->pf_params.iscsi_pf_params.gl_cmd_pi = 1;
861 qedi->pf_params.iscsi_pf_params.ooo_enable = 1;
862
863err_alloc_mem:
864 return rval;
865}
866
867/* Free DMA coherent memory for array of queue pointers we pass to qed */
868static void qedi_free_iscsi_pf_param(struct qedi_ctx *qedi)
869{
870 size_t size = 0;
871
872 if (qedi->p_cpuq) {
873 size = qedi->num_queues * sizeof(struct qedi_glbl_q_params);
874 pci_free_consistent(qedi->pdev, size, qedi->p_cpuq,
875 qedi->hw_p_cpuq);
876 }
877
878 qedi_free_global_queues(qedi);
879
880 kfree(qedi->global_queues);
881}
882
883static void qedi_link_update(void *dev, struct qed_link_output *link)
884{
885 struct qedi_ctx *qedi = (struct qedi_ctx *)dev;
886
887 if (link->link_up) {
888 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, "Link Up event.\n");
889 atomic_set(&qedi->link_state, QEDI_LINK_UP);
890 } else {
891 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
892 "Link Down event.\n");
893 atomic_set(&qedi->link_state, QEDI_LINK_DOWN);
894 }
895}
896
897static struct qed_iscsi_cb_ops qedi_cb_ops = {
898 {
899 .link_update = qedi_link_update,
900 }
901};
902
903static int qedi_queue_cqe(struct qedi_ctx *qedi, union iscsi_cqe *cqe,
904 u16 que_idx, struct qedi_percpu_s *p)
905{
906 struct qedi_work *qedi_work;
907 struct qedi_conn *q_conn;
908 struct iscsi_conn *conn;
909 struct qedi_cmd *qedi_cmd;
910 u32 iscsi_cid;
911 int rc = 0;
912
913 iscsi_cid = cqe->cqe_common.conn_id;
914 q_conn = qedi->cid_que.conn_cid_tbl[iscsi_cid];
915 if (!q_conn) {
916 QEDI_WARN(&qedi->dbg_ctx,
917 "Session no longer exists for cid=0x%x!!\n",
918 iscsi_cid);
919 return -1;
920 }
921 conn = q_conn->cls_conn->dd_data;
922
923 switch (cqe->cqe_common.cqe_type) {
924 case ISCSI_CQE_TYPE_SOLICITED:
925 case ISCSI_CQE_TYPE_SOLICITED_WITH_SENSE:
926 qedi_cmd = qedi_get_cmd_from_tid(qedi, cqe->cqe_solicited.itid);
927 if (!qedi_cmd) {
928 rc = -1;
929 break;
930 }
931 INIT_LIST_HEAD(&qedi_cmd->cqe_work.list);
932 qedi_cmd->cqe_work.qedi = qedi;
933 memcpy(&qedi_cmd->cqe_work.cqe, cqe, sizeof(union iscsi_cqe));
934 qedi_cmd->cqe_work.que_idx = que_idx;
935 qedi_cmd->cqe_work.is_solicited = true;
936 list_add_tail(&qedi_cmd->cqe_work.list, &p->work_list);
937 break;
938 case ISCSI_CQE_TYPE_UNSOLICITED:
939 case ISCSI_CQE_TYPE_DUMMY:
940 case ISCSI_CQE_TYPE_TASK_CLEANUP:
941 qedi_work = kzalloc(sizeof(*qedi_work), GFP_ATOMIC);
942 if (!qedi_work) {
943 rc = -1;
944 break;
945 }
946 INIT_LIST_HEAD(&qedi_work->list);
947 qedi_work->qedi = qedi;
948 memcpy(&qedi_work->cqe, cqe, sizeof(union iscsi_cqe));
949 qedi_work->que_idx = que_idx;
950 qedi_work->is_solicited = false;
951 list_add_tail(&qedi_work->list, &p->work_list);
952 break;
953 default:
954 rc = -1;
955 QEDI_ERR(&qedi->dbg_ctx, "FW Error cqe.\n");
956 }
957 return rc;
958}
959
960static bool qedi_process_completions(struct qedi_fastpath *fp)
961{
962 struct qedi_ctx *qedi = fp->qedi;
963 struct qed_sb_info *sb_info = fp->sb_info;
964 struct status_block *sb = sb_info->sb_virt;
965 struct qedi_percpu_s *p = NULL;
966 struct global_queue *que;
967 u16 prod_idx;
968 unsigned long flags;
969 union iscsi_cqe *cqe;
970 int cpu;
971 int ret;
972
973 /* Get the current firmware producer index */
974 prod_idx = sb->pi_array[QEDI_PROTO_CQ_PROD_IDX];
975
976 if (prod_idx >= QEDI_CQ_SIZE)
977 prod_idx = prod_idx % QEDI_CQ_SIZE;
978
979 que = qedi->global_queues[fp->sb_id];
980 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_IO,
981 "Before: global queue=%p prod_idx=%d cons_idx=%d, sb_id=%d\n",
982 que, prod_idx, que->cq_cons_idx, fp->sb_id);
983
984 qedi->intr_cpu = fp->sb_id;
985 cpu = smp_processor_id();
986 p = &per_cpu(qedi_percpu, cpu);
987
988 if (unlikely(!p->iothread))
989 WARN_ON(1);
990
991 spin_lock_irqsave(&p->p_work_lock, flags);
992 while (que->cq_cons_idx != prod_idx) {
993 cqe = &que->cq[que->cq_cons_idx];
994
995 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_IO,
996 "cqe=%p prod_idx=%d cons_idx=%d.\n",
997 cqe, prod_idx, que->cq_cons_idx);
998
999 ret = qedi_queue_cqe(qedi, cqe, fp->sb_id, p);
1000 if (ret)
Manish Rangankara1a20ff2018-01-18 22:52:09 -08001001 QEDI_WARN(&qedi->dbg_ctx,
1002 "Dropping CQE 0x%x for cid=0x%x.\n",
1003 que->cq_cons_idx, cqe->cqe_common.conn_id);
Manish Rangankarace7f462016-12-01 00:21:08 -08001004
1005 que->cq_cons_idx++;
1006 if (que->cq_cons_idx == QEDI_CQ_SIZE)
1007 que->cq_cons_idx = 0;
1008 }
1009 wake_up_process(p->iothread);
1010 spin_unlock_irqrestore(&p->p_work_lock, flags);
1011
1012 return true;
1013}
1014
1015static bool qedi_fp_has_work(struct qedi_fastpath *fp)
1016{
1017 struct qedi_ctx *qedi = fp->qedi;
1018 struct global_queue *que;
1019 struct qed_sb_info *sb_info = fp->sb_info;
1020 struct status_block *sb = sb_info->sb_virt;
1021 u16 prod_idx;
1022
1023 barrier();
1024
1025 /* Get the current firmware producer index */
1026 prod_idx = sb->pi_array[QEDI_PROTO_CQ_PROD_IDX];
1027
1028 /* Get the pointer to the global CQ this completion is on */
1029 que = qedi->global_queues[fp->sb_id];
1030
1031 /* prod idx wrap around uint16 */
1032 if (prod_idx >= QEDI_CQ_SIZE)
1033 prod_idx = prod_idx % QEDI_CQ_SIZE;
1034
1035 return (que->cq_cons_idx != prod_idx);
1036}
1037
1038/* MSI-X fastpath handler code */
1039static irqreturn_t qedi_msix_handler(int irq, void *dev_id)
1040{
1041 struct qedi_fastpath *fp = dev_id;
1042 struct qedi_ctx *qedi = fp->qedi;
1043 bool wake_io_thread = true;
1044
1045 qed_sb_ack(fp->sb_info, IGU_INT_DISABLE, 0);
1046
1047process_again:
1048 wake_io_thread = qedi_process_completions(fp);
1049 if (wake_io_thread) {
1050 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
1051 "process already running\n");
1052 }
1053
1054 if (qedi_fp_has_work(fp) == 0)
1055 qed_sb_update_sb_idx(fp->sb_info);
1056
1057 /* Check for more work */
1058 rmb();
1059
1060 if (qedi_fp_has_work(fp) == 0)
1061 qed_sb_ack(fp->sb_info, IGU_INT_ENABLE, 1);
1062 else
1063 goto process_again;
1064
1065 return IRQ_HANDLED;
1066}
1067
1068/* simd handler for MSI/INTa */
1069static void qedi_simd_int_handler(void *cookie)
1070{
1071 /* Cookie is qedi_ctx struct */
1072 struct qedi_ctx *qedi = (struct qedi_ctx *)cookie;
1073
1074 QEDI_WARN(&qedi->dbg_ctx, "qedi=%p.\n", qedi);
1075}
1076
1077#define QEDI_SIMD_HANDLER_NUM 0
1078static void qedi_sync_free_irqs(struct qedi_ctx *qedi)
1079{
1080 int i;
1081
1082 if (qedi->int_info.msix_cnt) {
1083 for (i = 0; i < qedi->int_info.used_cnt; i++) {
1084 synchronize_irq(qedi->int_info.msix[i].vector);
1085 irq_set_affinity_hint(qedi->int_info.msix[i].vector,
1086 NULL);
1087 free_irq(qedi->int_info.msix[i].vector,
1088 &qedi->fp_array[i]);
1089 }
1090 } else {
1091 qedi_ops->common->simd_handler_clean(qedi->cdev,
1092 QEDI_SIMD_HANDLER_NUM);
1093 }
1094
1095 qedi->int_info.used_cnt = 0;
1096 qedi_ops->common->set_fp_int(qedi->cdev, 0);
1097}
1098
1099static int qedi_request_msix_irq(struct qedi_ctx *qedi)
1100{
1101 int i, rc, cpu;
1102
1103 cpu = cpumask_first(cpu_online_mask);
1104 for (i = 0; i < MIN_NUM_CPUS_MSIX(qedi); i++) {
1105 rc = request_irq(qedi->int_info.msix[i].vector,
1106 qedi_msix_handler, 0, "qedi",
1107 &qedi->fp_array[i]);
1108
1109 if (rc) {
1110 QEDI_WARN(&qedi->dbg_ctx, "request_irq failed.\n");
1111 qedi_sync_free_irqs(qedi);
1112 return rc;
1113 }
1114 qedi->int_info.used_cnt++;
1115 rc = irq_set_affinity_hint(qedi->int_info.msix[i].vector,
1116 get_cpu_mask(cpu));
1117 cpu = cpumask_next(cpu, cpu_online_mask);
1118 }
1119
1120 return 0;
1121}
1122
1123static int qedi_setup_int(struct qedi_ctx *qedi)
1124{
1125 int rc = 0;
1126
1127 rc = qedi_ops->common->set_fp_int(qedi->cdev, num_online_cpus());
1128 rc = qedi_ops->common->get_fp_int(qedi->cdev, &qedi->int_info);
1129 if (rc)
1130 goto exit_setup_int;
1131
1132 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
1133 "Number of msix_cnt = 0x%x num of cpus = 0x%x\n",
1134 qedi->int_info.msix_cnt, num_online_cpus());
1135
1136 if (qedi->int_info.msix_cnt) {
1137 rc = qedi_request_msix_irq(qedi);
1138 goto exit_setup_int;
1139 } else {
1140 qedi_ops->common->simd_handler_config(qedi->cdev, &qedi,
1141 QEDI_SIMD_HANDLER_NUM,
1142 qedi_simd_int_handler);
1143 qedi->int_info.used_cnt = 1;
1144 }
1145
1146exit_setup_int:
1147 return rc;
1148}
1149
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001150static void qedi_free_nvm_iscsi_cfg(struct qedi_ctx *qedi)
1151{
1152 if (qedi->iscsi_cfg)
1153 dma_free_coherent(&qedi->pdev->dev,
1154 sizeof(struct nvm_iscsi_cfg),
1155 qedi->iscsi_cfg, qedi->nvm_buf_dma);
1156}
1157
1158static int qedi_alloc_nvm_iscsi_cfg(struct qedi_ctx *qedi)
1159{
1160 qedi->iscsi_cfg = dma_zalloc_coherent(&qedi->pdev->dev,
1161 sizeof(struct nvm_iscsi_cfg),
1162 &qedi->nvm_buf_dma, GFP_KERNEL);
1163 if (!qedi->iscsi_cfg) {
1164 QEDI_ERR(&qedi->dbg_ctx, "Could not allocate NVM BUF.\n");
1165 return -ENOMEM;
1166 }
1167 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
1168 "NVM BUF addr=0x%p dma=0x%llx.\n", qedi->iscsi_cfg,
1169 qedi->nvm_buf_dma);
1170
1171 return 0;
1172}
1173
Manish Rangankarace7f462016-12-01 00:21:08 -08001174static void qedi_free_bdq(struct qedi_ctx *qedi)
1175{
1176 int i;
1177
1178 if (qedi->bdq_pbl_list)
1179 dma_free_coherent(&qedi->pdev->dev, PAGE_SIZE,
1180 qedi->bdq_pbl_list, qedi->bdq_pbl_list_dma);
1181
1182 if (qedi->bdq_pbl)
1183 dma_free_coherent(&qedi->pdev->dev, qedi->bdq_pbl_mem_size,
1184 qedi->bdq_pbl, qedi->bdq_pbl_dma);
1185
1186 for (i = 0; i < QEDI_BDQ_NUM; i++) {
1187 if (qedi->bdq[i].buf_addr) {
1188 dma_free_coherent(&qedi->pdev->dev, QEDI_BDQ_BUF_SIZE,
1189 qedi->bdq[i].buf_addr,
1190 qedi->bdq[i].buf_dma);
1191 }
1192 }
1193}
1194
1195static void qedi_free_global_queues(struct qedi_ctx *qedi)
1196{
1197 int i;
1198 struct global_queue **gl = qedi->global_queues;
1199
1200 for (i = 0; i < qedi->num_queues; i++) {
1201 if (!gl[i])
1202 continue;
1203
1204 if (gl[i]->cq)
1205 dma_free_coherent(&qedi->pdev->dev, gl[i]->cq_mem_size,
1206 gl[i]->cq, gl[i]->cq_dma);
1207 if (gl[i]->cq_pbl)
1208 dma_free_coherent(&qedi->pdev->dev, gl[i]->cq_pbl_size,
1209 gl[i]->cq_pbl, gl[i]->cq_pbl_dma);
1210
1211 kfree(gl[i]);
1212 }
1213 qedi_free_bdq(qedi);
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001214 qedi_free_nvm_iscsi_cfg(qedi);
Manish Rangankarace7f462016-12-01 00:21:08 -08001215}
1216
1217static int qedi_alloc_bdq(struct qedi_ctx *qedi)
1218{
1219 int i;
1220 struct scsi_bd *pbl;
1221 u64 *list;
1222 dma_addr_t page;
1223
1224 /* Alloc dma memory for BDQ buffers */
1225 for (i = 0; i < QEDI_BDQ_NUM; i++) {
1226 qedi->bdq[i].buf_addr =
1227 dma_alloc_coherent(&qedi->pdev->dev,
1228 QEDI_BDQ_BUF_SIZE,
1229 &qedi->bdq[i].buf_dma,
1230 GFP_KERNEL);
1231 if (!qedi->bdq[i].buf_addr) {
1232 QEDI_ERR(&qedi->dbg_ctx,
1233 "Could not allocate BDQ buffer %d.\n", i);
1234 return -ENOMEM;
1235 }
1236 }
1237
1238 /* Alloc dma memory for BDQ page buffer list */
1239 qedi->bdq_pbl_mem_size = QEDI_BDQ_NUM * sizeof(struct scsi_bd);
1240 qedi->bdq_pbl_mem_size = ALIGN(qedi->bdq_pbl_mem_size, PAGE_SIZE);
1241 qedi->rq_num_entries = qedi->bdq_pbl_mem_size / sizeof(struct scsi_bd);
1242
1243 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN, "rq_num_entries = %d.\n",
1244 qedi->rq_num_entries);
1245
1246 qedi->bdq_pbl = dma_alloc_coherent(&qedi->pdev->dev,
1247 qedi->bdq_pbl_mem_size,
1248 &qedi->bdq_pbl_dma, GFP_KERNEL);
1249 if (!qedi->bdq_pbl) {
1250 QEDI_ERR(&qedi->dbg_ctx, "Could not allocate BDQ PBL.\n");
1251 return -ENOMEM;
1252 }
1253
1254 /*
1255 * Populate BDQ PBL with physical and virtual address of individual
1256 * BDQ buffers
1257 */
1258 pbl = (struct scsi_bd *)qedi->bdq_pbl;
1259 for (i = 0; i < QEDI_BDQ_NUM; i++) {
1260 pbl->address.hi =
1261 cpu_to_le32(QEDI_U64_HI(qedi->bdq[i].buf_dma));
1262 pbl->address.lo =
1263 cpu_to_le32(QEDI_U64_LO(qedi->bdq[i].buf_dma));
1264 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN,
1265 "pbl [0x%p] pbl->address hi [0x%llx] lo [0x%llx], idx [%d]\n",
1266 pbl, pbl->address.hi, pbl->address.lo, i);
1267 pbl->opaque.hi = 0;
1268 pbl->opaque.lo = cpu_to_le32(QEDI_U64_LO(i));
1269 pbl++;
1270 }
1271
1272 /* Allocate list of PBL pages */
Himanshu Jhae9f31772018-01-09 14:36:52 +05301273 qedi->bdq_pbl_list = dma_zalloc_coherent(&qedi->pdev->dev, PAGE_SIZE,
1274 &qedi->bdq_pbl_list_dma,
1275 GFP_KERNEL);
Manish Rangankarace7f462016-12-01 00:21:08 -08001276 if (!qedi->bdq_pbl_list) {
1277 QEDI_ERR(&qedi->dbg_ctx,
1278 "Could not allocate list of PBL pages.\n");
1279 return -ENOMEM;
1280 }
Manish Rangankarace7f462016-12-01 00:21:08 -08001281
1282 /*
1283 * Now populate PBL list with pages that contain pointers to the
1284 * individual buffers.
1285 */
1286 qedi->bdq_pbl_list_num_entries = qedi->bdq_pbl_mem_size / PAGE_SIZE;
1287 list = (u64 *)qedi->bdq_pbl_list;
1288 page = qedi->bdq_pbl_list_dma;
1289 for (i = 0; i < qedi->bdq_pbl_list_num_entries; i++) {
1290 *list = qedi->bdq_pbl_dma;
1291 list++;
1292 page += PAGE_SIZE;
1293 }
1294
1295 return 0;
1296}
1297
1298static int qedi_alloc_global_queues(struct qedi_ctx *qedi)
1299{
1300 u32 *list;
1301 int i;
1302 int status = 0, rc;
1303 u32 *pbl;
1304 dma_addr_t page;
1305 int num_pages;
1306
1307 /*
1308 * Number of global queues (CQ / RQ). This should
1309 * be <= number of available MSIX vectors for the PF
1310 */
1311 if (!qedi->num_queues) {
1312 QEDI_ERR(&qedi->dbg_ctx, "No MSI-X vectors available!\n");
1313 return 1;
1314 }
1315
1316 /* Make sure we allocated the PBL that will contain the physical
1317 * addresses of our queues
1318 */
1319 if (!qedi->p_cpuq) {
1320 status = 1;
1321 goto mem_alloc_failure;
1322 }
1323
1324 qedi->global_queues = kzalloc((sizeof(struct global_queue *) *
1325 qedi->num_queues), GFP_KERNEL);
1326 if (!qedi->global_queues) {
1327 QEDI_ERR(&qedi->dbg_ctx,
1328 "Unable to allocate global queues array ptr memory\n");
1329 return -ENOMEM;
1330 }
1331 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
1332 "qedi->global_queues=%p.\n", qedi->global_queues);
1333
1334 /* Allocate DMA coherent buffers for BDQ */
1335 rc = qedi_alloc_bdq(qedi);
1336 if (rc)
1337 goto mem_alloc_failure;
1338
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001339 /* Allocate DMA coherent buffers for NVM_ISCSI_CFG */
1340 rc = qedi_alloc_nvm_iscsi_cfg(qedi);
1341 if (rc)
1342 goto mem_alloc_failure;
1343
Manish Rangankarace7f462016-12-01 00:21:08 -08001344 /* Allocate a CQ and an associated PBL for each MSI-X
1345 * vector.
1346 */
1347 for (i = 0; i < qedi->num_queues; i++) {
1348 qedi->global_queues[i] =
1349 kzalloc(sizeof(*qedi->global_queues[0]),
1350 GFP_KERNEL);
1351 if (!qedi->global_queues[i]) {
1352 QEDI_ERR(&qedi->dbg_ctx,
1353 "Unable to allocation global queue %d.\n", i);
1354 goto mem_alloc_failure;
1355 }
1356
1357 qedi->global_queues[i]->cq_mem_size =
1358 (QEDI_CQ_SIZE + 8) * sizeof(union iscsi_cqe);
1359 qedi->global_queues[i]->cq_mem_size =
1360 (qedi->global_queues[i]->cq_mem_size +
1361 (QEDI_PAGE_SIZE - 1));
1362
1363 qedi->global_queues[i]->cq_pbl_size =
1364 (qedi->global_queues[i]->cq_mem_size /
1365 QEDI_PAGE_SIZE) * sizeof(void *);
1366 qedi->global_queues[i]->cq_pbl_size =
1367 (qedi->global_queues[i]->cq_pbl_size +
1368 (QEDI_PAGE_SIZE - 1));
1369
Himanshu Jhae9f31772018-01-09 14:36:52 +05301370 qedi->global_queues[i]->cq = dma_zalloc_coherent(&qedi->pdev->dev,
1371 qedi->global_queues[i]->cq_mem_size,
1372 &qedi->global_queues[i]->cq_dma,
1373 GFP_KERNEL);
Manish Rangankarace7f462016-12-01 00:21:08 -08001374
1375 if (!qedi->global_queues[i]->cq) {
1376 QEDI_WARN(&qedi->dbg_ctx,
1377 "Could not allocate cq.\n");
1378 status = -ENOMEM;
1379 goto mem_alloc_failure;
1380 }
Himanshu Jhae9f31772018-01-09 14:36:52 +05301381 qedi->global_queues[i]->cq_pbl = dma_zalloc_coherent(&qedi->pdev->dev,
1382 qedi->global_queues[i]->cq_pbl_size,
1383 &qedi->global_queues[i]->cq_pbl_dma,
1384 GFP_KERNEL);
Manish Rangankarace7f462016-12-01 00:21:08 -08001385
1386 if (!qedi->global_queues[i]->cq_pbl) {
1387 QEDI_WARN(&qedi->dbg_ctx,
1388 "Could not allocate cq PBL.\n");
1389 status = -ENOMEM;
1390 goto mem_alloc_failure;
1391 }
Manish Rangankarace7f462016-12-01 00:21:08 -08001392
1393 /* Create PBL */
1394 num_pages = qedi->global_queues[i]->cq_mem_size /
1395 QEDI_PAGE_SIZE;
1396 page = qedi->global_queues[i]->cq_dma;
1397 pbl = (u32 *)qedi->global_queues[i]->cq_pbl;
1398
1399 while (num_pages--) {
1400 *pbl = (u32)page;
1401 pbl++;
1402 *pbl = (u32)((u64)page >> 32);
1403 pbl++;
1404 page += QEDI_PAGE_SIZE;
1405 }
1406 }
1407
1408 list = (u32 *)qedi->p_cpuq;
1409
1410 /*
1411 * The list is built as follows: CQ#0 PBL pointer, RQ#0 PBL pointer,
1412 * CQ#1 PBL pointer, RQ#1 PBL pointer, etc. Each PBL pointer points
1413 * to the physical address which contains an array of pointers to the
1414 * physical addresses of the specific queue pages.
1415 */
1416 for (i = 0; i < qedi->num_queues; i++) {
1417 *list = (u32)qedi->global_queues[i]->cq_pbl_dma;
1418 list++;
1419 *list = (u32)((u64)qedi->global_queues[i]->cq_pbl_dma >> 32);
1420 list++;
1421
1422 *list = (u32)0;
1423 list++;
1424 *list = (u32)((u64)0 >> 32);
1425 list++;
1426 }
1427
1428 return 0;
1429
1430mem_alloc_failure:
1431 qedi_free_global_queues(qedi);
1432 return status;
1433}
1434
1435int qedi_alloc_sq(struct qedi_ctx *qedi, struct qedi_endpoint *ep)
1436{
1437 int rval = 0;
1438 u32 *pbl;
1439 dma_addr_t page;
1440 int num_pages;
1441
1442 if (!ep)
1443 return -EIO;
1444
1445 /* Calculate appropriate queue and PBL sizes */
1446 ep->sq_mem_size = QEDI_SQ_SIZE * sizeof(struct iscsi_wqe);
1447 ep->sq_mem_size += QEDI_PAGE_SIZE - 1;
1448
1449 ep->sq_pbl_size = (ep->sq_mem_size / QEDI_PAGE_SIZE) * sizeof(void *);
1450 ep->sq_pbl_size = ep->sq_pbl_size + QEDI_PAGE_SIZE;
1451
Himanshu Jhae9f31772018-01-09 14:36:52 +05301452 ep->sq = dma_zalloc_coherent(&qedi->pdev->dev, ep->sq_mem_size,
1453 &ep->sq_dma, GFP_KERNEL);
Manish Rangankarace7f462016-12-01 00:21:08 -08001454 if (!ep->sq) {
1455 QEDI_WARN(&qedi->dbg_ctx,
1456 "Could not allocate send queue.\n");
1457 rval = -ENOMEM;
1458 goto out;
1459 }
Himanshu Jhae9f31772018-01-09 14:36:52 +05301460 ep->sq_pbl = dma_zalloc_coherent(&qedi->pdev->dev, ep->sq_pbl_size,
1461 &ep->sq_pbl_dma, GFP_KERNEL);
Manish Rangankarace7f462016-12-01 00:21:08 -08001462 if (!ep->sq_pbl) {
1463 QEDI_WARN(&qedi->dbg_ctx,
1464 "Could not allocate send queue PBL.\n");
1465 rval = -ENOMEM;
1466 goto out_free_sq;
1467 }
Manish Rangankarace7f462016-12-01 00:21:08 -08001468
1469 /* Create PBL */
1470 num_pages = ep->sq_mem_size / QEDI_PAGE_SIZE;
1471 page = ep->sq_dma;
1472 pbl = (u32 *)ep->sq_pbl;
1473
1474 while (num_pages--) {
1475 *pbl = (u32)page;
1476 pbl++;
1477 *pbl = (u32)((u64)page >> 32);
1478 pbl++;
1479 page += QEDI_PAGE_SIZE;
1480 }
1481
1482 return rval;
1483
1484out_free_sq:
1485 dma_free_coherent(&qedi->pdev->dev, ep->sq_mem_size, ep->sq,
1486 ep->sq_dma);
1487out:
1488 return rval;
1489}
1490
1491void qedi_free_sq(struct qedi_ctx *qedi, struct qedi_endpoint *ep)
1492{
1493 if (ep->sq_pbl)
1494 dma_free_coherent(&qedi->pdev->dev, ep->sq_pbl_size, ep->sq_pbl,
1495 ep->sq_pbl_dma);
1496 if (ep->sq)
1497 dma_free_coherent(&qedi->pdev->dev, ep->sq_mem_size, ep->sq,
1498 ep->sq_dma);
1499}
1500
1501int qedi_get_task_idx(struct qedi_ctx *qedi)
1502{
1503 s16 tmp_idx;
1504
1505again:
1506 tmp_idx = find_first_zero_bit(qedi->task_idx_map,
1507 MAX_ISCSI_TASK_ENTRIES);
1508
1509 if (tmp_idx >= MAX_ISCSI_TASK_ENTRIES) {
1510 QEDI_ERR(&qedi->dbg_ctx, "FW task context pool is full.\n");
1511 tmp_idx = -1;
1512 goto err_idx;
1513 }
1514
1515 if (test_and_set_bit(tmp_idx, qedi->task_idx_map))
1516 goto again;
1517
1518err_idx:
1519 return tmp_idx;
1520}
1521
1522void qedi_clear_task_idx(struct qedi_ctx *qedi, int idx)
1523{
Manish Rangankar02d94e02017-06-15 00:10:40 -07001524 if (!test_and_clear_bit(idx, qedi->task_idx_map))
Manish Rangankarace7f462016-12-01 00:21:08 -08001525 QEDI_ERR(&qedi->dbg_ctx,
1526 "FW task context, already cleared, tid=0x%x\n", idx);
Manish Rangankarace7f462016-12-01 00:21:08 -08001527}
1528
1529void qedi_update_itt_map(struct qedi_ctx *qedi, u32 tid, u32 proto_itt,
1530 struct qedi_cmd *cmd)
1531{
1532 qedi->itt_map[tid].itt = proto_itt;
1533 qedi->itt_map[tid].p_cmd = cmd;
1534
1535 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN,
1536 "update itt map tid=0x%x, with proto itt=0x%x\n", tid,
1537 qedi->itt_map[tid].itt);
1538}
1539
1540void qedi_get_task_tid(struct qedi_ctx *qedi, u32 itt, s16 *tid)
1541{
1542 u16 i;
1543
1544 for (i = 0; i < MAX_ISCSI_TASK_ENTRIES; i++) {
1545 if (qedi->itt_map[i].itt == itt) {
1546 *tid = i;
1547 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN,
1548 "Ref itt=0x%x, found at tid=0x%x\n",
1549 itt, *tid);
1550 return;
1551 }
1552 }
1553
1554 WARN_ON(1);
1555}
1556
1557void qedi_get_proto_itt(struct qedi_ctx *qedi, u32 tid, u32 *proto_itt)
1558{
1559 *proto_itt = qedi->itt_map[tid].itt;
1560 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN,
1561 "Get itt map tid [0x%x with proto itt[0x%x]",
1562 tid, *proto_itt);
1563}
1564
1565struct qedi_cmd *qedi_get_cmd_from_tid(struct qedi_ctx *qedi, u32 tid)
1566{
1567 struct qedi_cmd *cmd = NULL;
1568
Dan Carpenterfa2d9d62017-08-25 13:36:57 +03001569 if (tid >= MAX_ISCSI_TASK_ENTRIES)
Manish Rangankarace7f462016-12-01 00:21:08 -08001570 return NULL;
1571
1572 cmd = qedi->itt_map[tid].p_cmd;
1573 if (cmd->task_id != tid)
1574 return NULL;
1575
1576 qedi->itt_map[tid].p_cmd = NULL;
1577
1578 return cmd;
1579}
1580
1581static int qedi_alloc_itt(struct qedi_ctx *qedi)
1582{
1583 qedi->itt_map = kcalloc(MAX_ISCSI_TASK_ENTRIES,
1584 sizeof(struct qedi_itt_map), GFP_KERNEL);
1585 if (!qedi->itt_map) {
1586 QEDI_ERR(&qedi->dbg_ctx,
1587 "Unable to allocate itt map array memory\n");
1588 return -ENOMEM;
1589 }
1590 return 0;
1591}
1592
1593static void qedi_free_itt(struct qedi_ctx *qedi)
1594{
1595 kfree(qedi->itt_map);
1596}
1597
1598static struct qed_ll2_cb_ops qedi_ll2_cb_ops = {
1599 .rx_cb = qedi_ll2_rx,
1600 .tx_cb = NULL,
1601};
1602
1603static int qedi_percpu_io_thread(void *arg)
1604{
1605 struct qedi_percpu_s *p = arg;
1606 struct qedi_work *work, *tmp;
1607 unsigned long flags;
1608 LIST_HEAD(work_list);
1609
1610 set_user_nice(current, -20);
1611
1612 while (!kthread_should_stop()) {
1613 spin_lock_irqsave(&p->p_work_lock, flags);
1614 while (!list_empty(&p->work_list)) {
1615 list_splice_init(&p->work_list, &work_list);
1616 spin_unlock_irqrestore(&p->p_work_lock, flags);
1617
1618 list_for_each_entry_safe(work, tmp, &work_list, list) {
1619 list_del_init(&work->list);
1620 qedi_fp_process_cqes(work);
1621 if (!work->is_solicited)
1622 kfree(work);
1623 }
1624 cond_resched();
1625 spin_lock_irqsave(&p->p_work_lock, flags);
1626 }
1627 set_current_state(TASK_INTERRUPTIBLE);
1628 spin_unlock_irqrestore(&p->p_work_lock, flags);
1629 schedule();
1630 }
1631 __set_current_state(TASK_RUNNING);
1632
1633 return 0;
1634}
1635
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01001636static int qedi_cpu_online(unsigned int cpu)
Manish Rangankarace7f462016-12-01 00:21:08 -08001637{
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01001638 struct qedi_percpu_s *p = this_cpu_ptr(&qedi_percpu);
Manish Rangankarace7f462016-12-01 00:21:08 -08001639 struct task_struct *thread;
1640
Manish Rangankarace7f462016-12-01 00:21:08 -08001641 thread = kthread_create_on_node(qedi_percpu_io_thread, (void *)p,
1642 cpu_to_node(cpu),
1643 "qedi_thread/%d", cpu);
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01001644 if (IS_ERR(thread))
1645 return PTR_ERR(thread);
1646
1647 kthread_bind(thread, cpu);
1648 p->iothread = thread;
1649 wake_up_process(thread);
1650 return 0;
Manish Rangankarace7f462016-12-01 00:21:08 -08001651}
1652
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01001653static int qedi_cpu_offline(unsigned int cpu)
Manish Rangankarace7f462016-12-01 00:21:08 -08001654{
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01001655 struct qedi_percpu_s *p = this_cpu_ptr(&qedi_percpu);
Manish Rangankarace7f462016-12-01 00:21:08 -08001656 struct qedi_work *work, *tmp;
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01001657 struct task_struct *thread;
Manish Rangankarace7f462016-12-01 00:21:08 -08001658
Manish Rangankarace7f462016-12-01 00:21:08 -08001659 spin_lock_bh(&p->p_work_lock);
1660 thread = p->iothread;
1661 p->iothread = NULL;
1662
1663 list_for_each_entry_safe(work, tmp, &p->work_list, list) {
1664 list_del_init(&work->list);
1665 qedi_fp_process_cqes(work);
1666 if (!work->is_solicited)
1667 kfree(work);
1668 }
1669
1670 spin_unlock_bh(&p->p_work_lock);
1671 if (thread)
1672 kthread_stop(thread);
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01001673 return 0;
Manish Rangankarace7f462016-12-01 00:21:08 -08001674}
1675
Manish Rangankarace7f462016-12-01 00:21:08 -08001676void qedi_reset_host_mtu(struct qedi_ctx *qedi, u16 mtu)
1677{
1678 struct qed_ll2_params params;
1679
1680 qedi_recover_all_conns(qedi);
1681
1682 qedi_ops->ll2->stop(qedi->cdev);
1683 qedi_ll2_free_skbs(qedi);
1684
1685 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, "old MTU %u, new MTU %u\n",
1686 qedi->ll2_mtu, mtu);
1687 memset(&params, 0, sizeof(params));
1688 qedi->ll2_mtu = mtu;
1689 params.mtu = qedi->ll2_mtu + IPV6_HDR_LEN + TCP_HDR_LEN;
1690 params.drop_ttl0_packets = 0;
1691 params.rx_vlan_stripping = 1;
1692 ether_addr_copy(params.ll2_mac_address, qedi->dev_info.common.hw_mac);
1693 qedi_ops->ll2->start(qedi->cdev, &params);
1694}
1695
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001696/**
1697 * qedi_get_nvram_block: - Scan through the iSCSI NVRAM block (while accounting
1698 * for gaps) for the matching absolute-pf-id of the QEDI device.
1699 */
1700static struct nvm_iscsi_block *
1701qedi_get_nvram_block(struct qedi_ctx *qedi)
1702{
1703 int i;
1704 u8 pf;
1705 u32 flags;
1706 struct nvm_iscsi_block *block;
1707
1708 pf = qedi->dev_info.common.abs_pf_id;
1709 block = &qedi->iscsi_cfg->block[0];
1710 for (i = 0; i < NUM_OF_ISCSI_PF_SUPPORTED; i++, block++) {
1711 flags = ((block->id) & NVM_ISCSI_CFG_BLK_CTRL_FLAG_MASK) >>
1712 NVM_ISCSI_CFG_BLK_CTRL_FLAG_OFFSET;
1713 if (flags & (NVM_ISCSI_CFG_BLK_CTRL_FLAG_IS_NOT_EMPTY |
1714 NVM_ISCSI_CFG_BLK_CTRL_FLAG_PF_MAPPED) &&
1715 (pf == (block->id & NVM_ISCSI_CFG_BLK_MAPPED_PF_ID_MASK)
1716 >> NVM_ISCSI_CFG_BLK_MAPPED_PF_ID_OFFSET))
1717 return block;
1718 }
1719 return NULL;
1720}
1721
1722static ssize_t qedi_show_boot_eth_info(void *data, int type, char *buf)
1723{
1724 struct qedi_ctx *qedi = data;
1725 struct nvm_iscsi_initiator *initiator;
1726 char *str = buf;
1727 int rc = 1;
1728 u32 ipv6_en, dhcp_en, ip_len;
1729 struct nvm_iscsi_block *block;
1730 char *fmt, *ip, *sub, *gw;
1731
1732 block = qedi_get_nvram_block(qedi);
1733 if (!block)
1734 return 0;
1735
1736 initiator = &block->initiator;
1737 ipv6_en = block->generic.ctrl_flags &
1738 NVM_ISCSI_CFG_GEN_IPV6_ENABLED;
1739 dhcp_en = block->generic.ctrl_flags &
1740 NVM_ISCSI_CFG_GEN_DHCP_TCPIP_CONFIG_ENABLED;
1741 /* Static IP assignments. */
1742 fmt = ipv6_en ? "%pI6\n" : "%pI4\n";
1743 ip = ipv6_en ? initiator->ipv6.addr.byte : initiator->ipv4.addr.byte;
1744 ip_len = ipv6_en ? IPV6_LEN : IPV4_LEN;
1745 sub = ipv6_en ? initiator->ipv6.subnet_mask.byte :
1746 initiator->ipv4.subnet_mask.byte;
1747 gw = ipv6_en ? initiator->ipv6.gateway.byte :
1748 initiator->ipv4.gateway.byte;
1749 /* DHCP IP adjustments. */
1750 fmt = dhcp_en ? "%s\n" : fmt;
1751 if (dhcp_en) {
1752 ip = ipv6_en ? "0::0" : "0.0.0.0";
1753 sub = ip;
1754 gw = ip;
1755 ip_len = ipv6_en ? 5 : 8;
1756 }
1757
1758 switch (type) {
1759 case ISCSI_BOOT_ETH_IP_ADDR:
1760 rc = snprintf(str, ip_len, fmt, ip);
1761 break;
1762 case ISCSI_BOOT_ETH_SUBNET_MASK:
1763 rc = snprintf(str, ip_len, fmt, sub);
1764 break;
1765 case ISCSI_BOOT_ETH_GATEWAY:
1766 rc = snprintf(str, ip_len, fmt, gw);
1767 break;
1768 case ISCSI_BOOT_ETH_FLAGS:
1769 rc = snprintf(str, 3, "%hhd\n",
1770 SYSFS_FLAG_FW_SEL_BOOT);
1771 break;
1772 case ISCSI_BOOT_ETH_INDEX:
1773 rc = snprintf(str, 3, "0\n");
1774 break;
1775 case ISCSI_BOOT_ETH_MAC:
1776 rc = sysfs_format_mac(str, qedi->mac, ETH_ALEN);
1777 break;
1778 case ISCSI_BOOT_ETH_VLAN:
1779 rc = snprintf(str, 12, "%d\n",
1780 GET_FIELD2(initiator->generic_cont0,
1781 NVM_ISCSI_CFG_INITIATOR_VLAN));
1782 break;
1783 case ISCSI_BOOT_ETH_ORIGIN:
1784 if (dhcp_en)
1785 rc = snprintf(str, 3, "3\n");
1786 break;
1787 default:
1788 rc = 0;
1789 break;
1790 }
1791
1792 return rc;
1793}
1794
1795static umode_t qedi_eth_get_attr_visibility(void *data, int type)
1796{
1797 int rc = 1;
1798
1799 switch (type) {
1800 case ISCSI_BOOT_ETH_FLAGS:
1801 case ISCSI_BOOT_ETH_MAC:
1802 case ISCSI_BOOT_ETH_INDEX:
1803 case ISCSI_BOOT_ETH_IP_ADDR:
1804 case ISCSI_BOOT_ETH_SUBNET_MASK:
1805 case ISCSI_BOOT_ETH_GATEWAY:
1806 case ISCSI_BOOT_ETH_ORIGIN:
1807 case ISCSI_BOOT_ETH_VLAN:
1808 rc = 0444;
1809 break;
1810 default:
1811 rc = 0;
1812 break;
1813 }
1814 return rc;
1815}
1816
1817static ssize_t qedi_show_boot_ini_info(void *data, int type, char *buf)
1818{
1819 struct qedi_ctx *qedi = data;
1820 struct nvm_iscsi_initiator *initiator;
1821 char *str = buf;
1822 int rc;
1823 struct nvm_iscsi_block *block;
1824
1825 block = qedi_get_nvram_block(qedi);
1826 if (!block)
1827 return 0;
1828
1829 initiator = &block->initiator;
1830
1831 switch (type) {
1832 case ISCSI_BOOT_INI_INITIATOR_NAME:
Andrew Vasquez1683ce52018-02-07 08:12:35 -08001833 rc = sprintf(str, "%.*s\n", NVM_ISCSI_CFG_ISCSI_NAME_MAX_LEN,
1834 initiator->initiator_name.byte);
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001835 break;
1836 default:
1837 rc = 0;
1838 break;
1839 }
1840 return rc;
1841}
1842
1843static umode_t qedi_ini_get_attr_visibility(void *data, int type)
1844{
1845 int rc;
1846
1847 switch (type) {
1848 case ISCSI_BOOT_INI_INITIATOR_NAME:
1849 rc = 0444;
1850 break;
1851 default:
1852 rc = 0;
1853 break;
1854 }
1855 return rc;
1856}
1857
1858static ssize_t
1859qedi_show_boot_tgt_info(struct qedi_ctx *qedi, int type,
1860 char *buf, enum qedi_nvm_tgts idx)
1861{
1862 char *str = buf;
1863 int rc = 1;
1864 u32 ctrl_flags, ipv6_en, chap_en, mchap_en, ip_len;
1865 struct nvm_iscsi_block *block;
1866 char *chap_name, *chap_secret;
1867 char *mchap_name, *mchap_secret;
1868
1869 block = qedi_get_nvram_block(qedi);
1870 if (!block)
1871 goto exit_show_tgt_info;
1872
1873 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_EVT,
1874 "Port:%d, tgt_idx:%d\n",
1875 GET_FIELD2(block->id, NVM_ISCSI_CFG_BLK_MAPPED_PF_ID), idx);
1876
1877 ctrl_flags = block->target[idx].ctrl_flags &
1878 NVM_ISCSI_CFG_TARGET_ENABLED;
1879
1880 if (!ctrl_flags) {
1881 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_EVT,
1882 "Target disabled\n");
1883 goto exit_show_tgt_info;
1884 }
1885
1886 ipv6_en = block->generic.ctrl_flags &
1887 NVM_ISCSI_CFG_GEN_IPV6_ENABLED;
1888 ip_len = ipv6_en ? IPV6_LEN : IPV4_LEN;
1889 chap_en = block->generic.ctrl_flags &
1890 NVM_ISCSI_CFG_GEN_CHAP_ENABLED;
1891 chap_name = chap_en ? block->initiator.chap_name.byte : NULL;
1892 chap_secret = chap_en ? block->initiator.chap_password.byte : NULL;
1893
1894 mchap_en = block->generic.ctrl_flags &
1895 NVM_ISCSI_CFG_GEN_CHAP_MUTUAL_ENABLED;
1896 mchap_name = mchap_en ? block->target[idx].chap_name.byte : NULL;
1897 mchap_secret = mchap_en ? block->target[idx].chap_password.byte : NULL;
1898
1899 switch (type) {
1900 case ISCSI_BOOT_TGT_NAME:
Andrew Vasquez1683ce52018-02-07 08:12:35 -08001901 rc = sprintf(str, "%.*s\n", NVM_ISCSI_CFG_ISCSI_NAME_MAX_LEN,
1902 block->target[idx].target_name.byte);
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001903 break;
1904 case ISCSI_BOOT_TGT_IP_ADDR:
1905 if (ipv6_en)
1906 rc = snprintf(str, ip_len, "%pI6\n",
1907 block->target[idx].ipv6_addr.byte);
1908 else
1909 rc = snprintf(str, ip_len, "%pI4\n",
1910 block->target[idx].ipv4_addr.byte);
1911 break;
1912 case ISCSI_BOOT_TGT_PORT:
1913 rc = snprintf(str, 12, "%d\n",
1914 GET_FIELD2(block->target[idx].generic_cont0,
1915 NVM_ISCSI_CFG_TARGET_TCP_PORT));
1916 break;
1917 case ISCSI_BOOT_TGT_LUN:
1918 rc = snprintf(str, 22, "%.*d\n",
1919 block->target[idx].lun.value[1],
1920 block->target[idx].lun.value[0]);
1921 break;
1922 case ISCSI_BOOT_TGT_CHAP_NAME:
Andrew Vasquez1683ce52018-02-07 08:12:35 -08001923 rc = sprintf(str, "%.*s\n", NVM_ISCSI_CFG_CHAP_NAME_MAX_LEN,
1924 chap_name);
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001925 break;
1926 case ISCSI_BOOT_TGT_CHAP_SECRET:
Andrew Vasquez1683ce52018-02-07 08:12:35 -08001927 rc = sprintf(str, "%.*s\n", NVM_ISCSI_CFG_CHAP_NAME_MAX_LEN,
1928 chap_secret);
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001929 break;
1930 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
Andrew Vasquez1683ce52018-02-07 08:12:35 -08001931 rc = sprintf(str, "%.*s\n", NVM_ISCSI_CFG_CHAP_NAME_MAX_LEN,
1932 mchap_name);
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001933 break;
1934 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
Andrew Vasquez1683ce52018-02-07 08:12:35 -08001935 rc = sprintf(str, "%.*s\n", NVM_ISCSI_CFG_CHAP_NAME_MAX_LEN,
1936 mchap_secret);
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07001937 break;
1938 case ISCSI_BOOT_TGT_FLAGS:
1939 rc = snprintf(str, 3, "%hhd\n", SYSFS_FLAG_FW_SEL_BOOT);
1940 break;
1941 case ISCSI_BOOT_TGT_NIC_ASSOC:
1942 rc = snprintf(str, 3, "0\n");
1943 break;
1944 default:
1945 rc = 0;
1946 break;
1947 }
1948
1949exit_show_tgt_info:
1950 return rc;
1951}
1952
1953static ssize_t qedi_show_boot_tgt_pri_info(void *data, int type, char *buf)
1954{
1955 struct qedi_ctx *qedi = data;
1956
1957 return qedi_show_boot_tgt_info(qedi, type, buf, QEDI_NVM_TGT_PRI);
1958}
1959
1960static ssize_t qedi_show_boot_tgt_sec_info(void *data, int type, char *buf)
1961{
1962 struct qedi_ctx *qedi = data;
1963
1964 return qedi_show_boot_tgt_info(qedi, type, buf, QEDI_NVM_TGT_SEC);
1965}
1966
1967static umode_t qedi_tgt_get_attr_visibility(void *data, int type)
1968{
1969 int rc;
1970
1971 switch (type) {
1972 case ISCSI_BOOT_TGT_NAME:
1973 case ISCSI_BOOT_TGT_IP_ADDR:
1974 case ISCSI_BOOT_TGT_PORT:
1975 case ISCSI_BOOT_TGT_LUN:
1976 case ISCSI_BOOT_TGT_CHAP_NAME:
1977 case ISCSI_BOOT_TGT_CHAP_SECRET:
1978 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
1979 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
1980 case ISCSI_BOOT_TGT_NIC_ASSOC:
1981 case ISCSI_BOOT_TGT_FLAGS:
1982 rc = 0444;
1983 break;
1984 default:
1985 rc = 0;
1986 break;
1987 }
1988 return rc;
1989}
1990
1991static void qedi_boot_release(void *data)
1992{
1993 struct qedi_ctx *qedi = data;
1994
1995 scsi_host_put(qedi->shost);
1996}
1997
1998static int qedi_get_boot_info(struct qedi_ctx *qedi)
1999{
2000 int ret = 1;
2001 u16 len;
2002
2003 len = sizeof(struct nvm_iscsi_cfg);
2004
2005 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
2006 "Get NVM iSCSI CFG image\n");
2007 ret = qedi_ops->common->nvm_get_image(qedi->cdev,
2008 QED_NVM_IMAGE_ISCSI_CFG,
2009 (char *)qedi->iscsi_cfg, len);
2010 if (ret)
2011 QEDI_ERR(&qedi->dbg_ctx,
2012 "Could not get NVM image. ret = %d\n", ret);
2013
2014 return ret;
2015}
2016
2017static int qedi_setup_boot_info(struct qedi_ctx *qedi)
2018{
2019 struct iscsi_boot_kobj *boot_kobj;
2020
2021 if (qedi_get_boot_info(qedi))
2022 return -EPERM;
2023
2024 qedi->boot_kset = iscsi_boot_create_host_kset(qedi->shost->host_no);
2025 if (!qedi->boot_kset)
2026 goto kset_free;
2027
2028 if (!scsi_host_get(qedi->shost))
2029 goto kset_free;
2030
2031 boot_kobj = iscsi_boot_create_target(qedi->boot_kset, 0, qedi,
2032 qedi_show_boot_tgt_pri_info,
2033 qedi_tgt_get_attr_visibility,
2034 qedi_boot_release);
2035 if (!boot_kobj)
2036 goto put_host;
2037
2038 if (!scsi_host_get(qedi->shost))
2039 goto kset_free;
2040
2041 boot_kobj = iscsi_boot_create_target(qedi->boot_kset, 1, qedi,
2042 qedi_show_boot_tgt_sec_info,
2043 qedi_tgt_get_attr_visibility,
2044 qedi_boot_release);
2045 if (!boot_kobj)
2046 goto put_host;
2047
2048 if (!scsi_host_get(qedi->shost))
2049 goto kset_free;
2050
2051 boot_kobj = iscsi_boot_create_initiator(qedi->boot_kset, 0, qedi,
2052 qedi_show_boot_ini_info,
2053 qedi_ini_get_attr_visibility,
2054 qedi_boot_release);
2055 if (!boot_kobj)
2056 goto put_host;
2057
2058 if (!scsi_host_get(qedi->shost))
2059 goto kset_free;
2060
2061 boot_kobj = iscsi_boot_create_ethernet(qedi->boot_kset, 0, qedi,
2062 qedi_show_boot_eth_info,
2063 qedi_eth_get_attr_visibility,
2064 qedi_boot_release);
2065 if (!boot_kobj)
2066 goto put_host;
2067
2068 return 0;
2069
2070put_host:
2071 scsi_host_put(qedi->shost);
2072kset_free:
2073 iscsi_boot_destroy_kset(qedi->boot_kset);
2074 return -ENOMEM;
2075}
2076
Manish Rangankarace7f462016-12-01 00:21:08 -08002077static void __qedi_remove(struct pci_dev *pdev, int mode)
2078{
2079 struct qedi_ctx *qedi = pci_get_drvdata(pdev);
2080
2081 if (qedi->tmf_thread) {
2082 flush_workqueue(qedi->tmf_thread);
2083 destroy_workqueue(qedi->tmf_thread);
2084 qedi->tmf_thread = NULL;
2085 }
2086
2087 if (qedi->offload_thread) {
2088 flush_workqueue(qedi->offload_thread);
2089 destroy_workqueue(qedi->offload_thread);
2090 qedi->offload_thread = NULL;
2091 }
2092
2093#ifdef CONFIG_DEBUG_FS
2094 qedi_dbg_host_exit(&qedi->dbg_ctx);
2095#endif
2096 if (!test_bit(QEDI_IN_OFFLINE, &qedi->flags))
2097 qedi_ops->common->set_power_state(qedi->cdev, PCI_D0);
2098
2099 qedi_sync_free_irqs(qedi);
2100
2101 if (!test_bit(QEDI_IN_OFFLINE, &qedi->flags)) {
2102 qedi_ops->stop(qedi->cdev);
2103 qedi_ops->ll2->stop(qedi->cdev);
2104 }
2105
2106 if (mode == QEDI_MODE_NORMAL)
2107 qedi_free_iscsi_pf_param(qedi);
2108
2109 if (!test_bit(QEDI_IN_OFFLINE, &qedi->flags)) {
2110 qedi_ops->common->slowpath_stop(qedi->cdev);
2111 qedi_ops->common->remove(qedi->cdev);
2112 }
2113
2114 qedi_destroy_fp(qedi);
2115
2116 if (mode == QEDI_MODE_NORMAL) {
2117 qedi_release_cid_que(qedi);
2118 qedi_cm_free_mem(qedi);
2119 qedi_free_uio(qedi->udev);
2120 qedi_free_itt(qedi);
2121
2122 iscsi_host_remove(qedi->shost);
2123 iscsi_host_free(qedi->shost);
2124
2125 if (qedi->ll2_recv_thread) {
2126 kthread_stop(qedi->ll2_recv_thread);
2127 qedi->ll2_recv_thread = NULL;
2128 }
2129 qedi_ll2_free_skbs(qedi);
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07002130
2131 if (qedi->boot_kset)
2132 iscsi_boot_destroy_kset(qedi->boot_kset);
Manish Rangankarace7f462016-12-01 00:21:08 -08002133 }
2134}
2135
2136static int __qedi_probe(struct pci_dev *pdev, int mode)
2137{
2138 struct qedi_ctx *qedi;
2139 struct qed_ll2_params params;
2140 u32 dp_module = 0;
2141 u8 dp_level = 0;
2142 bool is_vf = false;
2143 char host_buf[16];
2144 struct qed_link_params link_params;
2145 struct qed_slowpath_params sp_params;
2146 struct qed_probe_params qed_params;
2147 void *task_start, *task_end;
2148 int rc;
2149 u16 tmp;
2150
2151 if (mode != QEDI_MODE_RECOVERY) {
2152 qedi = qedi_host_alloc(pdev);
2153 if (!qedi) {
2154 rc = -ENOMEM;
2155 goto exit_probe;
2156 }
2157 } else {
2158 qedi = pci_get_drvdata(pdev);
2159 }
2160
2161 memset(&qed_params, 0, sizeof(qed_params));
2162 qed_params.protocol = QED_PROTOCOL_ISCSI;
2163 qed_params.dp_module = dp_module;
2164 qed_params.dp_level = dp_level;
2165 qed_params.is_vf = is_vf;
2166 qedi->cdev = qedi_ops->common->probe(pdev, &qed_params);
2167 if (!qedi->cdev) {
2168 rc = -ENODEV;
2169 QEDI_ERR(&qedi->dbg_ctx, "Cannot initialize hardware\n");
2170 goto free_host;
2171 }
2172
Manish Rangankarace7f462016-12-01 00:21:08 -08002173 atomic_set(&qedi->link_state, QEDI_LINK_DOWN);
2174
Manish Rangankar42d7c102017-08-10 06:32:17 -07002175 rc = qedi_ops->fill_dev_info(qedi->cdev, &qedi->dev_info);
2176 if (rc)
2177 goto free_host;
2178
Manish Rangankarace7f462016-12-01 00:21:08 -08002179 if (mode != QEDI_MODE_RECOVERY) {
2180 rc = qedi_set_iscsi_pf_param(qedi);
2181 if (rc) {
2182 rc = -ENOMEM;
2183 QEDI_ERR(&qedi->dbg_ctx,
2184 "Set iSCSI pf param fail\n");
2185 goto free_host;
2186 }
2187 }
2188
2189 qedi_ops->common->update_pf_params(qedi->cdev, &qedi->pf_params);
2190
2191 rc = qedi_prepare_fp(qedi);
2192 if (rc) {
2193 QEDI_ERR(&qedi->dbg_ctx, "Cannot start slowpath.\n");
2194 goto free_pf_params;
2195 }
2196
2197 /* Start the Slowpath-process */
2198 memset(&sp_params, 0, sizeof(struct qed_slowpath_params));
2199 sp_params.int_mode = QED_INT_MODE_MSIX;
2200 sp_params.drv_major = QEDI_DRIVER_MAJOR_VER;
2201 sp_params.drv_minor = QEDI_DRIVER_MINOR_VER;
2202 sp_params.drv_rev = QEDI_DRIVER_REV_VER;
2203 sp_params.drv_eng = QEDI_DRIVER_ENG_VER;
2204 strlcpy(sp_params.name, "qedi iSCSI", QED_DRV_VER_STR_SIZE);
2205 rc = qedi_ops->common->slowpath_start(qedi->cdev, &sp_params);
2206 if (rc) {
2207 QEDI_ERR(&qedi->dbg_ctx, "Cannot start slowpath\n");
2208 goto stop_hw;
2209 }
2210
2211 /* update_pf_params needs to be called before and after slowpath
2212 * start
2213 */
2214 qedi_ops->common->update_pf_params(qedi->cdev, &qedi->pf_params);
2215
Colin Ian Kingd1a9ccc2017-02-28 11:02:48 +00002216 rc = qedi_setup_int(qedi);
Manish Rangankarace7f462016-12-01 00:21:08 -08002217 if (rc)
2218 goto stop_iscsi_func;
2219
2220 qedi_ops->common->set_power_state(qedi->cdev, PCI_D0);
2221
2222 /* Learn information crucial for qedi to progress */
2223 rc = qedi_ops->fill_dev_info(qedi->cdev, &qedi->dev_info);
2224 if (rc)
2225 goto stop_iscsi_func;
2226
2227 /* Record BDQ producer doorbell addresses */
2228 qedi->bdq_primary_prod = qedi->dev_info.primary_dbq_rq_addr;
2229 qedi->bdq_secondary_prod = qedi->dev_info.secondary_bdq_rq_addr;
2230 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
2231 "BDQ primary_prod=%p secondary_prod=%p.\n",
2232 qedi->bdq_primary_prod,
2233 qedi->bdq_secondary_prod);
2234
2235 /*
2236 * We need to write the number of BDs in the BDQ we've preallocated so
2237 * the f/w will do a prefetch and we'll get an unsolicited CQE when a
2238 * packet arrives.
2239 */
2240 qedi->bdq_prod_idx = QEDI_BDQ_NUM;
2241 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
2242 "Writing %d to primary and secondary BDQ doorbell registers.\n",
2243 qedi->bdq_prod_idx);
2244 writew(qedi->bdq_prod_idx, qedi->bdq_primary_prod);
2245 tmp = readw(qedi->bdq_primary_prod);
2246 writew(qedi->bdq_prod_idx, qedi->bdq_secondary_prod);
2247 tmp = readw(qedi->bdq_secondary_prod);
2248
2249 ether_addr_copy(qedi->mac, qedi->dev_info.common.hw_mac);
2250 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC, "MAC address is %pM.\n",
2251 qedi->mac);
2252
2253 sprintf(host_buf, "host_%d", qedi->shost->host_no);
Mintz, Yuval712c3cb2017-05-23 09:41:28 +03002254 qedi_ops->common->set_name(qedi->cdev, host_buf);
Manish Rangankarace7f462016-12-01 00:21:08 -08002255
2256 qedi_ops->register_ops(qedi->cdev, &qedi_cb_ops, qedi);
2257
2258 memset(&params, 0, sizeof(params));
2259 params.mtu = DEF_PATH_MTU + IPV6_HDR_LEN + TCP_HDR_LEN;
2260 qedi->ll2_mtu = DEF_PATH_MTU;
2261 params.drop_ttl0_packets = 0;
2262 params.rx_vlan_stripping = 1;
2263 ether_addr_copy(params.ll2_mac_address, qedi->dev_info.common.hw_mac);
2264
2265 if (mode != QEDI_MODE_RECOVERY) {
2266 /* set up rx path */
2267 INIT_LIST_HEAD(&qedi->ll2_skb_list);
2268 spin_lock_init(&qedi->ll2_lock);
2269 /* start qedi context */
2270 spin_lock_init(&qedi->hba_lock);
2271 spin_lock_init(&qedi->task_idx_lock);
2272 }
2273 qedi_ops->ll2->register_cb_ops(qedi->cdev, &qedi_ll2_cb_ops, qedi);
2274 qedi_ops->ll2->start(qedi->cdev, &params);
2275
2276 if (mode != QEDI_MODE_RECOVERY) {
2277 qedi->ll2_recv_thread = kthread_run(qedi_ll2_recv_thread,
2278 (void *)qedi,
2279 "qedi_ll2_thread");
2280 }
2281
2282 rc = qedi_ops->start(qedi->cdev, &qedi->tasks,
2283 qedi, qedi_iscsi_event_cb);
2284 if (rc) {
2285 rc = -ENODEV;
2286 QEDI_ERR(&qedi->dbg_ctx, "Cannot start iSCSI function\n");
2287 goto stop_slowpath;
2288 }
2289
2290 task_start = qedi_get_task_mem(&qedi->tasks, 0);
2291 task_end = qedi_get_task_mem(&qedi->tasks, MAX_TID_BLOCKS_ISCSI - 1);
2292 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_DISC,
2293 "Task context start=%p, end=%p block_size=%u.\n",
2294 task_start, task_end, qedi->tasks.size);
2295
2296 memset(&link_params, 0, sizeof(link_params));
2297 link_params.link_up = true;
2298 rc = qedi_ops->common->set_link(qedi->cdev, &link_params);
2299 if (rc) {
2300 QEDI_WARN(&qedi->dbg_ctx, "Link set up failed.\n");
2301 atomic_set(&qedi->link_state, QEDI_LINK_DOWN);
2302 }
2303
2304#ifdef CONFIG_DEBUG_FS
2305 qedi_dbg_host_init(&qedi->dbg_ctx, &qedi_debugfs_ops,
2306 &qedi_dbg_fops);
2307#endif
2308 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
2309 "QLogic FastLinQ iSCSI Module qedi %s, FW %d.%d.%d.%d\n",
2310 QEDI_MODULE_VERSION, FW_MAJOR_VERSION, FW_MINOR_VERSION,
2311 FW_REVISION_VERSION, FW_ENGINEERING_VERSION);
2312
2313 if (mode == QEDI_MODE_NORMAL) {
2314 if (iscsi_host_add(qedi->shost, &pdev->dev)) {
2315 QEDI_ERR(&qedi->dbg_ctx,
2316 "Could not add iscsi host\n");
2317 rc = -ENOMEM;
2318 goto remove_host;
2319 }
2320
2321 /* Allocate uio buffers */
2322 rc = qedi_alloc_uio_rings(qedi);
2323 if (rc) {
2324 QEDI_ERR(&qedi->dbg_ctx,
2325 "UIO alloc ring failed err=%d\n", rc);
2326 goto remove_host;
2327 }
2328
2329 rc = qedi_init_uio(qedi);
2330 if (rc) {
2331 QEDI_ERR(&qedi->dbg_ctx,
2332 "UIO init failed, err=%d\n", rc);
2333 goto free_uio;
2334 }
2335
2336 /* host the array on iscsi_conn */
2337 rc = qedi_setup_cid_que(qedi);
2338 if (rc) {
2339 QEDI_ERR(&qedi->dbg_ctx,
2340 "Could not setup cid que\n");
2341 goto free_uio;
2342 }
2343
2344 rc = qedi_cm_alloc_mem(qedi);
2345 if (rc) {
2346 QEDI_ERR(&qedi->dbg_ctx,
2347 "Could not alloc cm memory\n");
2348 goto free_cid_que;
2349 }
2350
2351 rc = qedi_alloc_itt(qedi);
2352 if (rc) {
2353 QEDI_ERR(&qedi->dbg_ctx,
2354 "Could not alloc itt memory\n");
2355 goto free_cid_que;
2356 }
2357
2358 sprintf(host_buf, "host_%d", qedi->shost->host_no);
2359 qedi->tmf_thread = create_singlethread_workqueue(host_buf);
2360 if (!qedi->tmf_thread) {
2361 QEDI_ERR(&qedi->dbg_ctx,
2362 "Unable to start tmf thread!\n");
2363 rc = -ENODEV;
2364 goto free_cid_que;
2365 }
2366
2367 sprintf(host_buf, "qedi_ofld%d", qedi->shost->host_no);
2368 qedi->offload_thread = create_workqueue(host_buf);
2369 if (!qedi->offload_thread) {
2370 QEDI_ERR(&qedi->dbg_ctx,
2371 "Unable to start offload thread!\n");
2372 rc = -ENODEV;
2373 goto free_cid_que;
2374 }
2375
2376 /* F/w needs 1st task context memory entry for performance */
2377 set_bit(QEDI_RESERVE_TASK_ID, qedi->task_idx_map);
2378 atomic_set(&qedi->num_offloads, 0);
Nilesh Javalic57ec8f2017-06-27 02:26:56 -07002379
2380 if (qedi_setup_boot_info(qedi))
2381 QEDI_ERR(&qedi->dbg_ctx,
2382 "No iSCSI boot target configured\n");
Manish Rangankarace7f462016-12-01 00:21:08 -08002383 }
2384
2385 return 0;
2386
2387free_cid_que:
2388 qedi_release_cid_que(qedi);
2389free_uio:
2390 qedi_free_uio(qedi->udev);
2391remove_host:
2392#ifdef CONFIG_DEBUG_FS
2393 qedi_dbg_host_exit(&qedi->dbg_ctx);
2394#endif
2395 iscsi_host_remove(qedi->shost);
2396stop_iscsi_func:
2397 qedi_ops->stop(qedi->cdev);
2398stop_slowpath:
2399 qedi_ops->common->slowpath_stop(qedi->cdev);
2400stop_hw:
2401 qedi_ops->common->remove(qedi->cdev);
2402free_pf_params:
2403 qedi_free_iscsi_pf_param(qedi);
2404free_host:
2405 iscsi_host_free(qedi->shost);
2406exit_probe:
2407 return rc;
2408}
2409
2410static int qedi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2411{
2412 return __qedi_probe(pdev, QEDI_MODE_NORMAL);
2413}
2414
2415static void qedi_remove(struct pci_dev *pdev)
2416{
2417 __qedi_remove(pdev, QEDI_MODE_NORMAL);
2418}
2419
2420static struct pci_device_id qedi_pci_tbl[] = {
2421 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, 0x165E) },
Manish Rangankar04688522017-03-15 01:32:53 -07002422 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, 0x8084) },
Manish Rangankarace7f462016-12-01 00:21:08 -08002423 { 0 },
2424};
2425MODULE_DEVICE_TABLE(pci, qedi_pci_tbl);
2426
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01002427static enum cpuhp_state qedi_cpuhp_state;
2428
Manish Rangankarace7f462016-12-01 00:21:08 -08002429static struct pci_driver qedi_pci_driver = {
2430 .name = QEDI_MODULE_NAME,
2431 .id_table = qedi_pci_tbl,
2432 .probe = qedi_probe,
2433 .remove = qedi_remove,
2434};
2435
2436static int __init qedi_init(void)
2437{
Manish Rangankarace7f462016-12-01 00:21:08 -08002438 struct qedi_percpu_s *p;
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01002439 int cpu, rc = 0;
Manish Rangankarace7f462016-12-01 00:21:08 -08002440
2441 qedi_ops = qed_get_iscsi_ops();
2442 if (!qedi_ops) {
2443 QEDI_ERR(NULL, "Failed to get qed iSCSI operations\n");
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01002444 return -EINVAL;
Manish Rangankarace7f462016-12-01 00:21:08 -08002445 }
2446
2447#ifdef CONFIG_DEBUG_FS
2448 qedi_dbg_init("qedi");
2449#endif
2450
2451 qedi_scsi_transport = iscsi_register_transport(&qedi_iscsi_transport);
2452 if (!qedi_scsi_transport) {
2453 QEDI_ERR(NULL, "Could not register qedi transport");
2454 rc = -ENOMEM;
2455 goto exit_qedi_init_1;
2456 }
2457
Manish Rangankarace7f462016-12-01 00:21:08 -08002458 for_each_possible_cpu(cpu) {
2459 p = &per_cpu(qedi_percpu, cpu);
2460 INIT_LIST_HEAD(&p->work_list);
2461 spin_lock_init(&p->p_work_lock);
2462 p->iothread = NULL;
2463 }
2464
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01002465 rc = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "scsi/qedi:online",
2466 qedi_cpu_online, qedi_cpu_offline);
2467 if (rc < 0)
2468 goto exit_qedi_init_2;
2469 qedi_cpuhp_state = rc;
Manish Rangankarace7f462016-12-01 00:21:08 -08002470
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01002471 rc = pci_register_driver(&qedi_pci_driver);
2472 if (rc) {
2473 QEDI_ERR(NULL, "Failed to register driver\n");
2474 goto exit_qedi_hp;
2475 }
Manish Rangankarace7f462016-12-01 00:21:08 -08002476
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01002477 return 0;
2478
2479exit_qedi_hp:
2480 cpuhp_remove_state(qedi_cpuhp_state);
Manish Rangankarace7f462016-12-01 00:21:08 -08002481exit_qedi_init_2:
2482 iscsi_unregister_transport(&qedi_iscsi_transport);
2483exit_qedi_init_1:
2484#ifdef CONFIG_DEBUG_FS
2485 qedi_dbg_exit();
2486#endif
2487 qed_put_iscsi_ops();
Manish Rangankarace7f462016-12-01 00:21:08 -08002488 return rc;
2489}
2490
2491static void __exit qedi_cleanup(void)
2492{
Manish Rangankarace7f462016-12-01 00:21:08 -08002493 pci_unregister_driver(&qedi_pci_driver);
Thomas Gleixnera98d1a02016-12-24 12:34:02 +01002494 cpuhp_remove_state(qedi_cpuhp_state);
Manish Rangankarace7f462016-12-01 00:21:08 -08002495 iscsi_unregister_transport(&qedi_iscsi_transport);
2496
2497#ifdef CONFIG_DEBUG_FS
2498 qedi_dbg_exit();
2499#endif
2500 qed_put_iscsi_ops();
2501}
2502
2503MODULE_DESCRIPTION("QLogic FastLinQ 4xxxx iSCSI Module");
2504MODULE_LICENSE("GPL");
2505MODULE_AUTHOR("QLogic Corporation");
2506MODULE_VERSION(QEDI_MODULE_VERSION);
2507module_init(qedi_init);
2508module_exit(qedi_cleanup);