1 /*
2 * This file is part of the Emulex Linux Device Driver for Enterprise iSCSI
3 * Host Bus Adapters. Refer to the README file included with this package
4 * for driver version and adapter compatibility.
5 *
6 * Copyright (c) 2018 Broadcom. All Rights Reserved.
7 * The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of version 2 of the GNU General Public License as published
11 * by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful. ALL EXPRESS
14 * OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
15 * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
16 * OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH
17 * DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.
18 * See the GNU General Public License for more details, a copy of which
19 * can be found in the file COPYING included with this package.
20 *
21 * Contact Information:
22 * linux-drivers@broadcom.com
23 *
24 */
25
26 #include <linux/reboot.h>
27 #include <linux/delay.h>
28 #include <linux/slab.h>
29 #include <linux/interrupt.h>
30 #include <linux/blkdev.h>
31 #include <linux/pci.h>
32 #include <linux/string.h>
33 #include <linux/kernel.h>
34 #include <linux/semaphore.h>
35 #include <linux/iscsi_boot_sysfs.h>
36 #include <linux/module.h>
37 #include <linux/bsg-lib.h>
38 #include <linux/irq_poll.h>
39
40 #include <scsi/libiscsi.h>
41 #include <scsi/scsi_bsg_iscsi.h>
42 #include <scsi/scsi_netlink.h>
43 #include <scsi/scsi_transport_iscsi.h>
44 #include <scsi/scsi_transport.h>
45 #include <scsi/scsi_cmnd.h>
46 #include <scsi/scsi_device.h>
47 #include <scsi/scsi_host.h>
48 #include <scsi/scsi.h>
49 #include "be_main.h"
50 #include "be_iscsi.h"
51 #include "be_mgmt.h"
52 #include "be_cmds.h"
53
54 static unsigned int be_iopoll_budget = 10;
55 static unsigned int be_max_phys_size = 64;
56 static unsigned int enable_msix = 1;
57
58 MODULE_DESCRIPTION(DRV_DESC " " BUILD_STR);
59 MODULE_VERSION(BUILD_STR);
60 MODULE_AUTHOR("Emulex Corporation");
61 MODULE_LICENSE("GPL");
62 module_param(be_iopoll_budget, int, 0);
63 module_param(enable_msix, int, 0);
64 module_param(be_max_phys_size, uint, S_IRUGO);
65 MODULE_PARM_DESC(be_max_phys_size,
66 "Maximum Size (In Kilobytes) of physically contiguous "
67 "memory that can be allocated. Range is 16 - 128");
68
69 #define beiscsi_disp_param(_name)\
70 static ssize_t \
71 beiscsi_##_name##_disp(struct device *dev,\
72 struct device_attribute *attrib, char *buf) \
73 { \
74 struct Scsi_Host *shost = class_to_shost(dev);\
75 struct beiscsi_hba *phba = iscsi_host_priv(shost); \
76 return snprintf(buf, PAGE_SIZE, "%d\n",\
77 phba->attr_##_name);\
78 }
79
80 #define beiscsi_change_param(_name, _minval, _maxval, _defaval)\
81 static int \
82 beiscsi_##_name##_change(struct beiscsi_hba *phba, uint32_t val)\
83 {\
84 if (val >= _minval && val <= _maxval) {\
85 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,\
86 "BA_%d : beiscsi_"#_name" updated "\
87 "from 0x%x ==> 0x%x\n",\
88 phba->attr_##_name, val); \
89 phba->attr_##_name = val;\
90 return 0;\
91 } \
92 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, \
93 "BA_%d beiscsi_"#_name" attribute "\
94 "cannot be updated to 0x%x, "\
95 "range allowed is ["#_minval" - "#_maxval"]\n", val);\
96 return -EINVAL;\
97 }
98
99 #define beiscsi_store_param(_name) \
100 static ssize_t \
101 beiscsi_##_name##_store(struct device *dev,\
102 struct device_attribute *attr, const char *buf,\
103 size_t count) \
104 { \
105 struct Scsi_Host *shost = class_to_shost(dev);\
106 struct beiscsi_hba *phba = iscsi_host_priv(shost);\
107 uint32_t param_val = 0;\
108 if (!isdigit(buf[0]))\
109 return -EINVAL;\
110 if (sscanf(buf, "%i", ¶m_val) != 1)\
111 return -EINVAL;\
112 if (beiscsi_##_name##_change(phba, param_val) == 0) \
113 return strlen(buf);\
114 else \
115 return -EINVAL;\
116 }
117
118 #define beiscsi_init_param(_name, _minval, _maxval, _defval) \
119 static int \
120 beiscsi_##_name##_init(struct beiscsi_hba *phba, uint32_t val) \
121 { \
122 if (val >= _minval && val <= _maxval) {\
123 phba->attr_##_name = val;\
124 return 0;\
125 } \
126 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,\
127 "BA_%d beiscsi_"#_name" attribute " \
128 "cannot be updated to 0x%x, "\
129 "range allowed is ["#_minval" - "#_maxval"]\n", val);\
130 phba->attr_##_name = _defval;\
131 return -EINVAL;\
132 }
133
134 #define BEISCSI_RW_ATTR(_name, _minval, _maxval, _defval, _descp) \
135 static uint beiscsi_##_name = _defval;\
136 module_param(beiscsi_##_name, uint, S_IRUGO);\
137 MODULE_PARM_DESC(beiscsi_##_name, _descp);\
138 beiscsi_disp_param(_name)\
139 beiscsi_change_param(_name, _minval, _maxval, _defval)\
140 beiscsi_store_param(_name)\
141 beiscsi_init_param(_name, _minval, _maxval, _defval)\
142 DEVICE_ATTR(beiscsi_##_name, S_IRUGO | S_IWUSR,\
143 beiscsi_##_name##_disp, beiscsi_##_name##_store)
144
145 /*
146 * When new log level added update MAX allowed value for log_enable
147 */
148 BEISCSI_RW_ATTR(log_enable, 0x00,
149 0xFF, 0x00, "Enable logging Bit Mask\n"
150 "\t\t\t\tInitialization Events : 0x01\n"
151 "\t\t\t\tMailbox Events : 0x02\n"
152 "\t\t\t\tMiscellaneous Events : 0x04\n"
153 "\t\t\t\tError Handling : 0x08\n"
154 "\t\t\t\tIO Path Events : 0x10\n"
155 "\t\t\t\tConfiguration Path : 0x20\n"
156 "\t\t\t\tiSCSI Protocol : 0x40\n");
157
158 DEVICE_ATTR(beiscsi_drvr_ver, S_IRUGO, beiscsi_drvr_ver_disp, NULL);
159 DEVICE_ATTR(beiscsi_adapter_family, S_IRUGO, beiscsi_adap_family_disp, NULL);
160 DEVICE_ATTR(beiscsi_fw_ver, S_IRUGO, beiscsi_fw_ver_disp, NULL);
161 DEVICE_ATTR(beiscsi_phys_port, S_IRUGO, beiscsi_phys_port_disp, NULL);
162 DEVICE_ATTR(beiscsi_active_session_count, S_IRUGO,
163 beiscsi_active_session_disp, NULL);
164 DEVICE_ATTR(beiscsi_free_session_count, S_IRUGO,
165 beiscsi_free_session_disp, NULL);
166 static struct device_attribute *beiscsi_attrs[] = {
167 &dev_attr_beiscsi_log_enable,
168 &dev_attr_beiscsi_drvr_ver,
169 &dev_attr_beiscsi_adapter_family,
170 &dev_attr_beiscsi_fw_ver,
171 &dev_attr_beiscsi_active_session_count,
172 &dev_attr_beiscsi_free_session_count,
173 &dev_attr_beiscsi_phys_port,
174 NULL,
175 };
176
177 static char const *cqe_desc[] = {
178 "RESERVED_DESC",
179 "SOL_CMD_COMPLETE",
180 "SOL_CMD_KILLED_DATA_DIGEST_ERR",
181 "CXN_KILLED_PDU_SIZE_EXCEEDS_DSL",
182 "CXN_KILLED_BURST_LEN_MISMATCH",
183 "CXN_KILLED_AHS_RCVD",
184 "CXN_KILLED_HDR_DIGEST_ERR",
185 "CXN_KILLED_UNKNOWN_HDR",
186 "CXN_KILLED_STALE_ITT_TTT_RCVD",
187 "CXN_KILLED_INVALID_ITT_TTT_RCVD",
188 "CXN_KILLED_RST_RCVD",
189 "CXN_KILLED_TIMED_OUT",
190 "CXN_KILLED_RST_SENT",
191 "CXN_KILLED_FIN_RCVD",
192 "CXN_KILLED_BAD_UNSOL_PDU_RCVD",
193 "CXN_KILLED_BAD_WRB_INDEX_ERROR",
194 "CXN_KILLED_OVER_RUN_RESIDUAL",
195 "CXN_KILLED_UNDER_RUN_RESIDUAL",
196 "CMD_KILLED_INVALID_STATSN_RCVD",
197 "CMD_KILLED_INVALID_R2T_RCVD",
198 "CMD_CXN_KILLED_LUN_INVALID",
199 "CMD_CXN_KILLED_ICD_INVALID",
200 "CMD_CXN_KILLED_ITT_INVALID",
201 "CMD_CXN_KILLED_SEQ_OUTOFORDER",
202 "CMD_CXN_KILLED_INVALID_DATASN_RCVD",
203 "CXN_INVALIDATE_NOTIFY",
204 "CXN_INVALIDATE_INDEX_NOTIFY",
205 "CMD_INVALIDATED_NOTIFY",
206 "UNSOL_HDR_NOTIFY",
207 "UNSOL_DATA_NOTIFY",
208 "UNSOL_DATA_DIGEST_ERROR_NOTIFY",
209 "DRIVERMSG_NOTIFY",
210 "CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN",
211 "SOL_CMD_KILLED_DIF_ERR",
212 "CXN_KILLED_SYN_RCVD",
213 "CXN_KILLED_IMM_DATA_RCVD"
214 };
215
beiscsi_eh_abort(struct scsi_cmnd * sc)216 static int beiscsi_eh_abort(struct scsi_cmnd *sc)
217 {
218 struct iscsi_task *abrt_task = (struct iscsi_task *)sc->SCp.ptr;
219 struct iscsi_cls_session *cls_session;
220 struct beiscsi_io_task *abrt_io_task;
221 struct beiscsi_conn *beiscsi_conn;
222 struct iscsi_session *session;
223 struct invldt_cmd_tbl inv_tbl;
224 struct beiscsi_hba *phba;
225 struct iscsi_conn *conn;
226 int rc;
227
228 cls_session = starget_to_session(scsi_target(sc->device));
229 session = cls_session->dd_data;
230
231 /* check if we raced, task just got cleaned up under us */
232 spin_lock_bh(&session->back_lock);
233 if (!abrt_task || !abrt_task->sc) {
234 spin_unlock_bh(&session->back_lock);
235 return SUCCESS;
236 }
237 /* get a task ref till FW processes the req for the ICD used */
238 __iscsi_get_task(abrt_task);
239 abrt_io_task = abrt_task->dd_data;
240 conn = abrt_task->conn;
241 beiscsi_conn = conn->dd_data;
242 phba = beiscsi_conn->phba;
243 /* mark WRB invalid which have been not processed by FW yet */
244 if (is_chip_be2_be3r(phba)) {
245 AMAP_SET_BITS(struct amap_iscsi_wrb, invld,
246 abrt_io_task->pwrb_handle->pwrb, 1);
247 } else {
248 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, invld,
249 abrt_io_task->pwrb_handle->pwrb, 1);
250 }
251 inv_tbl.cid = beiscsi_conn->beiscsi_conn_cid;
252 inv_tbl.icd = abrt_io_task->psgl_handle->sgl_index;
253 spin_unlock_bh(&session->back_lock);
254
255 rc = beiscsi_mgmt_invalidate_icds(phba, &inv_tbl, 1);
256 iscsi_put_task(abrt_task);
257 if (rc) {
258 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_EH,
259 "BM_%d : sc %p invalidation failed %d\n",
260 sc, rc);
261 return FAILED;
262 }
263
264 return iscsi_eh_abort(sc);
265 }
266
beiscsi_eh_device_reset(struct scsi_cmnd * sc)267 static int beiscsi_eh_device_reset(struct scsi_cmnd *sc)
268 {
269 struct beiscsi_invldt_cmd_tbl {
270 struct invldt_cmd_tbl tbl[BE_INVLDT_CMD_TBL_SZ];
271 struct iscsi_task *task[BE_INVLDT_CMD_TBL_SZ];
272 } *inv_tbl;
273 struct iscsi_cls_session *cls_session;
274 struct beiscsi_conn *beiscsi_conn;
275 struct beiscsi_io_task *io_task;
276 struct iscsi_session *session;
277 struct beiscsi_hba *phba;
278 struct iscsi_conn *conn;
279 struct iscsi_task *task;
280 unsigned int i, nents;
281 int rc, more = 0;
282
283 cls_session = starget_to_session(scsi_target(sc->device));
284 session = cls_session->dd_data;
285
286 spin_lock_bh(&session->frwd_lock);
287 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN) {
288 spin_unlock_bh(&session->frwd_lock);
289 return FAILED;
290 }
291
292 conn = session->leadconn;
293 beiscsi_conn = conn->dd_data;
294 phba = beiscsi_conn->phba;
295
296 inv_tbl = kzalloc(sizeof(*inv_tbl), GFP_ATOMIC);
297 if (!inv_tbl) {
298 spin_unlock_bh(&session->frwd_lock);
299 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_EH,
300 "BM_%d : invldt_cmd_tbl alloc failed\n");
301 return FAILED;
302 }
303 nents = 0;
304 /* take back_lock to prevent task from getting cleaned up under us */
305 spin_lock(&session->back_lock);
306 for (i = 0; i < conn->session->cmds_max; i++) {
307 task = conn->session->cmds[i];
308 if (!task->sc)
309 continue;
310
311 if (sc->device->lun != task->sc->device->lun)
312 continue;
313 /**
314 * Can't fit in more cmds? Normally this won't happen b'coz
315 * BEISCSI_CMD_PER_LUN is same as BE_INVLDT_CMD_TBL_SZ.
316 */
317 if (nents == BE_INVLDT_CMD_TBL_SZ) {
318 more = 1;
319 break;
320 }
321
322 /* get a task ref till FW processes the req for the ICD used */
323 __iscsi_get_task(task);
324 io_task = task->dd_data;
325 /* mark WRB invalid which have been not processed by FW yet */
326 if (is_chip_be2_be3r(phba)) {
327 AMAP_SET_BITS(struct amap_iscsi_wrb, invld,
328 io_task->pwrb_handle->pwrb, 1);
329 } else {
330 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, invld,
331 io_task->pwrb_handle->pwrb, 1);
332 }
333
334 inv_tbl->tbl[nents].cid = beiscsi_conn->beiscsi_conn_cid;
335 inv_tbl->tbl[nents].icd = io_task->psgl_handle->sgl_index;
336 inv_tbl->task[nents] = task;
337 nents++;
338 }
339 spin_unlock(&session->back_lock);
340 spin_unlock_bh(&session->frwd_lock);
341
342 rc = SUCCESS;
343 if (!nents)
344 goto end_reset;
345
346 if (more) {
347 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_EH,
348 "BM_%d : number of cmds exceeds size of invalidation table\n");
349 rc = FAILED;
350 goto end_reset;
351 }
352
353 if (beiscsi_mgmt_invalidate_icds(phba, &inv_tbl->tbl[0], nents)) {
354 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_EH,
355 "BM_%d : cid %u scmds invalidation failed\n",
356 beiscsi_conn->beiscsi_conn_cid);
357 rc = FAILED;
358 }
359
360 end_reset:
361 for (i = 0; i < nents; i++)
362 iscsi_put_task(inv_tbl->task[i]);
363 kfree(inv_tbl);
364
365 if (rc == SUCCESS)
366 rc = iscsi_eh_device_reset(sc);
367 return rc;
368 }
369
370 /*------------------- PCI Driver operations and data ----------------- */
371 static const struct pci_device_id beiscsi_pci_id_table[] = {
372 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID1) },
373 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID2) },
374 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID1) },
375 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) },
376 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID3) },
377 { PCI_DEVICE(ELX_VENDOR_ID, OC_SKH_ID1) },
378 { 0 }
379 };
380 MODULE_DEVICE_TABLE(pci, beiscsi_pci_id_table);
381
382
383 static struct scsi_host_template beiscsi_sht = {
384 .module = THIS_MODULE,
385 .name = "Emulex 10Gbe open-iscsi Initiator Driver",
386 .proc_name = DRV_NAME,
387 .queuecommand = iscsi_queuecommand,
388 .change_queue_depth = scsi_change_queue_depth,
389 .target_alloc = iscsi_target_alloc,
390 .eh_timed_out = iscsi_eh_cmd_timed_out,
391 .eh_abort_handler = beiscsi_eh_abort,
392 .eh_device_reset_handler = beiscsi_eh_device_reset,
393 .eh_target_reset_handler = iscsi_eh_session_reset,
394 .shost_attrs = beiscsi_attrs,
395 .sg_tablesize = BEISCSI_SGLIST_ELEMENTS,
396 .can_queue = BE2_IO_DEPTH,
397 .this_id = -1,
398 .max_sectors = BEISCSI_MAX_SECTORS,
399 .max_segment_size = 65536,
400 .cmd_per_lun = BEISCSI_CMD_PER_LUN,
401 .vendor_id = SCSI_NL_VID_TYPE_PCI | BE_VENDOR_ID,
402 .track_queue_depth = 1,
403 };
404
405 static struct scsi_transport_template *beiscsi_scsi_transport;
406
beiscsi_hba_alloc(struct pci_dev * pcidev)407 static struct beiscsi_hba *beiscsi_hba_alloc(struct pci_dev *pcidev)
408 {
409 struct beiscsi_hba *phba;
410 struct Scsi_Host *shost;
411
412 shost = iscsi_host_alloc(&beiscsi_sht, sizeof(*phba), 0);
413 if (!shost) {
414 dev_err(&pcidev->dev,
415 "beiscsi_hba_alloc - iscsi_host_alloc failed\n");
416 return NULL;
417 }
418 shost->max_id = BE2_MAX_SESSIONS - 1;
419 shost->max_channel = 0;
420 shost->max_cmd_len = BEISCSI_MAX_CMD_LEN;
421 shost->max_lun = BEISCSI_NUM_MAX_LUN;
422 shost->transportt = beiscsi_scsi_transport;
423 phba = iscsi_host_priv(shost);
424 memset(phba, 0, sizeof(*phba));
425 phba->shost = shost;
426 phba->pcidev = pci_dev_get(pcidev);
427 pci_set_drvdata(pcidev, phba);
428 phba->interface_handle = 0xFFFFFFFF;
429
430 return phba;
431 }
432
beiscsi_unmap_pci_function(struct beiscsi_hba * phba)433 static void beiscsi_unmap_pci_function(struct beiscsi_hba *phba)
434 {
435 if (phba->csr_va) {
436 iounmap(phba->csr_va);
437 phba->csr_va = NULL;
438 }
439 if (phba->db_va) {
440 iounmap(phba->db_va);
441 phba->db_va = NULL;
442 }
443 if (phba->pci_va) {
444 iounmap(phba->pci_va);
445 phba->pci_va = NULL;
446 }
447 }
448
beiscsi_map_pci_bars(struct beiscsi_hba * phba,struct pci_dev * pcidev)449 static int beiscsi_map_pci_bars(struct beiscsi_hba *phba,
450 struct pci_dev *pcidev)
451 {
452 u8 __iomem *addr;
453 int pcicfg_reg;
454
455 addr = ioremap(pci_resource_start(pcidev, 2),
456 pci_resource_len(pcidev, 2));
457 if (addr == NULL)
458 return -ENOMEM;
459 phba->ctrl.csr = addr;
460 phba->csr_va = addr;
461
462 addr = ioremap(pci_resource_start(pcidev, 4), 128 * 1024);
463 if (addr == NULL)
464 goto pci_map_err;
465 phba->ctrl.db = addr;
466 phba->db_va = addr;
467
468 if (phba->generation == BE_GEN2)
469 pcicfg_reg = 1;
470 else
471 pcicfg_reg = 0;
472
473 addr = ioremap(pci_resource_start(pcidev, pcicfg_reg),
474 pci_resource_len(pcidev, pcicfg_reg));
475
476 if (addr == NULL)
477 goto pci_map_err;
478 phba->ctrl.pcicfg = addr;
479 phba->pci_va = addr;
480 return 0;
481
482 pci_map_err:
483 beiscsi_unmap_pci_function(phba);
484 return -ENOMEM;
485 }
486
beiscsi_enable_pci(struct pci_dev * pcidev)487 static int beiscsi_enable_pci(struct pci_dev *pcidev)
488 {
489 int ret;
490
491 ret = pci_enable_device(pcidev);
492 if (ret) {
493 dev_err(&pcidev->dev,
494 "beiscsi_enable_pci - enable device failed\n");
495 return ret;
496 }
497
498 ret = pci_request_regions(pcidev, DRV_NAME);
499 if (ret) {
500 dev_err(&pcidev->dev,
501 "beiscsi_enable_pci - request region failed\n");
502 goto pci_dev_disable;
503 }
504
505 pci_set_master(pcidev);
506 ret = dma_set_mask_and_coherent(&pcidev->dev, DMA_BIT_MASK(64));
507 if (ret) {
508 ret = dma_set_mask_and_coherent(&pcidev->dev, DMA_BIT_MASK(32));
509 if (ret) {
510 dev_err(&pcidev->dev, "Could not set PCI DMA Mask\n");
511 goto pci_region_release;
512 }
513 }
514 return 0;
515
516 pci_region_release:
517 pci_release_regions(pcidev);
518 pci_dev_disable:
519 pci_disable_device(pcidev);
520
521 return ret;
522 }
523
be_ctrl_init(struct beiscsi_hba * phba,struct pci_dev * pdev)524 static int be_ctrl_init(struct beiscsi_hba *phba, struct pci_dev *pdev)
525 {
526 struct be_ctrl_info *ctrl = &phba->ctrl;
527 struct be_dma_mem *mbox_mem_alloc = &ctrl->mbox_mem_alloced;
528 struct be_dma_mem *mbox_mem_align = &ctrl->mbox_mem;
529 int status = 0;
530
531 ctrl->pdev = pdev;
532 status = beiscsi_map_pci_bars(phba, pdev);
533 if (status)
534 return status;
535 mbox_mem_alloc->size = sizeof(struct be_mcc_mailbox) + 16;
536 mbox_mem_alloc->va = dma_alloc_coherent(&pdev->dev,
537 mbox_mem_alloc->size, &mbox_mem_alloc->dma, GFP_KERNEL);
538 if (!mbox_mem_alloc->va) {
539 beiscsi_unmap_pci_function(phba);
540 return -ENOMEM;
541 }
542
543 mbox_mem_align->size = sizeof(struct be_mcc_mailbox);
544 mbox_mem_align->va = PTR_ALIGN(mbox_mem_alloc->va, 16);
545 mbox_mem_align->dma = PTR_ALIGN(mbox_mem_alloc->dma, 16);
546 memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox));
547 mutex_init(&ctrl->mbox_lock);
548 spin_lock_init(&phba->ctrl.mcc_lock);
549
550 return status;
551 }
552
553 /**
554 * beiscsi_get_params()- Set the config paramters
555 * @phba: ptr device priv structure
556 **/
beiscsi_get_params(struct beiscsi_hba * phba)557 static void beiscsi_get_params(struct beiscsi_hba *phba)
558 {
559 uint32_t total_cid_count = 0;
560 uint32_t total_icd_count = 0;
561 uint8_t ulp_num = 0;
562
563 total_cid_count = BEISCSI_GET_CID_COUNT(phba, BEISCSI_ULP0) +
564 BEISCSI_GET_CID_COUNT(phba, BEISCSI_ULP1);
565
566 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
567 uint32_t align_mask = 0;
568 uint32_t icd_post_per_page = 0;
569 uint32_t icd_count_unavailable = 0;
570 uint32_t icd_start = 0, icd_count = 0;
571 uint32_t icd_start_align = 0, icd_count_align = 0;
572
573 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
574 icd_start = phba->fw_config.iscsi_icd_start[ulp_num];
575 icd_count = phba->fw_config.iscsi_icd_count[ulp_num];
576
577 /* Get ICD count that can be posted on each page */
578 icd_post_per_page = (PAGE_SIZE / (BE2_SGE *
579 sizeof(struct iscsi_sge)));
580 align_mask = (icd_post_per_page - 1);
581
582 /* Check if icd_start is aligned ICD per page posting */
583 if (icd_start % icd_post_per_page) {
584 icd_start_align = ((icd_start +
585 icd_post_per_page) &
586 ~(align_mask));
587 phba->fw_config.
588 iscsi_icd_start[ulp_num] =
589 icd_start_align;
590 }
591
592 icd_count_align = (icd_count & ~align_mask);
593
594 /* ICD discarded in the process of alignment */
595 if (icd_start_align)
596 icd_count_unavailable = ((icd_start_align -
597 icd_start) +
598 (icd_count -
599 icd_count_align));
600
601 /* Updated ICD count available */
602 phba->fw_config.iscsi_icd_count[ulp_num] = (icd_count -
603 icd_count_unavailable);
604
605 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
606 "BM_%d : Aligned ICD values\n"
607 "\t ICD Start : %d\n"
608 "\t ICD Count : %d\n"
609 "\t ICD Discarded : %d\n",
610 phba->fw_config.
611 iscsi_icd_start[ulp_num],
612 phba->fw_config.
613 iscsi_icd_count[ulp_num],
614 icd_count_unavailable);
615 break;
616 }
617 }
618
619 total_icd_count = phba->fw_config.iscsi_icd_count[ulp_num];
620 phba->params.ios_per_ctrl = (total_icd_count -
621 (total_cid_count +
622 BE2_TMFS + BE2_NOPOUT_REQ));
623 phba->params.cxns_per_ctrl = total_cid_count;
624 phba->params.icds_per_ctrl = total_icd_count;
625 phba->params.num_sge_per_io = BE2_SGE;
626 phba->params.defpdu_hdr_sz = BE2_DEFPDU_HDR_SZ;
627 phba->params.defpdu_data_sz = BE2_DEFPDU_DATA_SZ;
628 phba->params.num_eq_entries = 1024;
629 phba->params.num_cq_entries = 1024;
630 phba->params.wrbs_per_cxn = 256;
631 }
632
hwi_ring_eq_db(struct beiscsi_hba * phba,unsigned int id,unsigned int clr_interrupt,unsigned int num_processed,unsigned char rearm,unsigned char event)633 static void hwi_ring_eq_db(struct beiscsi_hba *phba,
634 unsigned int id, unsigned int clr_interrupt,
635 unsigned int num_processed,
636 unsigned char rearm, unsigned char event)
637 {
638 u32 val = 0;
639
640 if (rearm)
641 val |= 1 << DB_EQ_REARM_SHIFT;
642 if (clr_interrupt)
643 val |= 1 << DB_EQ_CLR_SHIFT;
644 if (event)
645 val |= 1 << DB_EQ_EVNT_SHIFT;
646
647 val |= num_processed << DB_EQ_NUM_POPPED_SHIFT;
648 /* Setting lower order EQ_ID Bits */
649 val |= (id & DB_EQ_RING_ID_LOW_MASK);
650
651 /* Setting Higher order EQ_ID Bits */
652 val |= (((id >> DB_EQ_HIGH_FEILD_SHIFT) &
653 DB_EQ_RING_ID_HIGH_MASK)
654 << DB_EQ_HIGH_SET_SHIFT);
655
656 iowrite32(val, phba->db_va + DB_EQ_OFFSET);
657 }
658
659 /**
660 * be_isr_mcc - The isr routine of the driver.
661 * @irq: Not used
662 * @dev_id: Pointer to host adapter structure
663 */
be_isr_mcc(int irq,void * dev_id)664 static irqreturn_t be_isr_mcc(int irq, void *dev_id)
665 {
666 struct beiscsi_hba *phba;
667 struct be_eq_entry *eqe;
668 struct be_queue_info *eq;
669 struct be_queue_info *mcc;
670 unsigned int mcc_events;
671 struct be_eq_obj *pbe_eq;
672
673 pbe_eq = dev_id;
674 eq = &pbe_eq->q;
675 phba = pbe_eq->phba;
676 mcc = &phba->ctrl.mcc_obj.cq;
677 eqe = queue_tail_node(eq);
678
679 mcc_events = 0;
680 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
681 & EQE_VALID_MASK) {
682 if (((eqe->dw[offsetof(struct amap_eq_entry,
683 resource_id) / 32] &
684 EQE_RESID_MASK) >> 16) == mcc->id) {
685 mcc_events++;
686 }
687 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
688 queue_tail_inc(eq);
689 eqe = queue_tail_node(eq);
690 }
691
692 if (mcc_events) {
693 queue_work(phba->wq, &pbe_eq->mcc_work);
694 hwi_ring_eq_db(phba, eq->id, 1, mcc_events, 1, 1);
695 }
696 return IRQ_HANDLED;
697 }
698
699 /**
700 * be_isr_msix - The isr routine of the driver.
701 * @irq: Not used
702 * @dev_id: Pointer to host adapter structure
703 */
be_isr_msix(int irq,void * dev_id)704 static irqreturn_t be_isr_msix(int irq, void *dev_id)
705 {
706 struct beiscsi_hba *phba;
707 struct be_queue_info *eq;
708 struct be_eq_obj *pbe_eq;
709
710 pbe_eq = dev_id;
711 eq = &pbe_eq->q;
712
713 phba = pbe_eq->phba;
714 /* disable interrupt till iopoll completes */
715 hwi_ring_eq_db(phba, eq->id, 1, 0, 0, 1);
716 irq_poll_sched(&pbe_eq->iopoll);
717
718 return IRQ_HANDLED;
719 }
720
721 /**
722 * be_isr - The isr routine of the driver.
723 * @irq: Not used
724 * @dev_id: Pointer to host adapter structure
725 */
be_isr(int irq,void * dev_id)726 static irqreturn_t be_isr(int irq, void *dev_id)
727 {
728 struct beiscsi_hba *phba;
729 struct hwi_controller *phwi_ctrlr;
730 struct hwi_context_memory *phwi_context;
731 struct be_eq_entry *eqe;
732 struct be_queue_info *eq;
733 struct be_queue_info *mcc;
734 unsigned int mcc_events, io_events;
735 struct be_ctrl_info *ctrl;
736 struct be_eq_obj *pbe_eq;
737 int isr, rearm;
738
739 phba = dev_id;
740 ctrl = &phba->ctrl;
741 isr = ioread32(ctrl->csr + CEV_ISR0_OFFSET +
742 (PCI_FUNC(ctrl->pdev->devfn) * CEV_ISR_SIZE));
743 if (!isr)
744 return IRQ_NONE;
745
746 phwi_ctrlr = phba->phwi_ctrlr;
747 phwi_context = phwi_ctrlr->phwi_ctxt;
748 pbe_eq = &phwi_context->be_eq[0];
749
750 eq = &phwi_context->be_eq[0].q;
751 mcc = &phba->ctrl.mcc_obj.cq;
752 eqe = queue_tail_node(eq);
753
754 io_events = 0;
755 mcc_events = 0;
756 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
757 & EQE_VALID_MASK) {
758 if (((eqe->dw[offsetof(struct amap_eq_entry,
759 resource_id) / 32] & EQE_RESID_MASK) >> 16) == mcc->id)
760 mcc_events++;
761 else
762 io_events++;
763 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
764 queue_tail_inc(eq);
765 eqe = queue_tail_node(eq);
766 }
767 if (!io_events && !mcc_events)
768 return IRQ_NONE;
769
770 /* no need to rearm if interrupt is only for IOs */
771 rearm = 0;
772 if (mcc_events) {
773 queue_work(phba->wq, &pbe_eq->mcc_work);
774 /* rearm for MCCQ */
775 rearm = 1;
776 }
777 if (io_events)
778 irq_poll_sched(&pbe_eq->iopoll);
779 hwi_ring_eq_db(phba, eq->id, 0, (io_events + mcc_events), rearm, 1);
780 return IRQ_HANDLED;
781 }
782
beiscsi_free_irqs(struct beiscsi_hba * phba)783 static void beiscsi_free_irqs(struct beiscsi_hba *phba)
784 {
785 struct hwi_context_memory *phwi_context;
786 int i;
787
788 if (!phba->pcidev->msix_enabled) {
789 if (phba->pcidev->irq)
790 free_irq(phba->pcidev->irq, phba);
791 return;
792 }
793
794 phwi_context = phba->phwi_ctrlr->phwi_ctxt;
795 for (i = 0; i <= phba->num_cpus; i++) {
796 free_irq(pci_irq_vector(phba->pcidev, i),
797 &phwi_context->be_eq[i]);
798 kfree(phba->msi_name[i]);
799 }
800 }
801
beiscsi_init_irqs(struct beiscsi_hba * phba)802 static int beiscsi_init_irqs(struct beiscsi_hba *phba)
803 {
804 struct pci_dev *pcidev = phba->pcidev;
805 struct hwi_controller *phwi_ctrlr;
806 struct hwi_context_memory *phwi_context;
807 int ret, i, j;
808
809 phwi_ctrlr = phba->phwi_ctrlr;
810 phwi_context = phwi_ctrlr->phwi_ctxt;
811
812 if (pcidev->msix_enabled) {
813 for (i = 0; i < phba->num_cpus; i++) {
814 phba->msi_name[i] = kasprintf(GFP_KERNEL,
815 "beiscsi_%02x_%02x",
816 phba->shost->host_no, i);
817 if (!phba->msi_name[i]) {
818 ret = -ENOMEM;
819 goto free_msix_irqs;
820 }
821
822 ret = request_irq(pci_irq_vector(pcidev, i),
823 be_isr_msix, 0, phba->msi_name[i],
824 &phwi_context->be_eq[i]);
825 if (ret) {
826 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
827 "BM_%d : %s-Failed to register msix for i = %d\n",
828 __func__, i);
829 kfree(phba->msi_name[i]);
830 goto free_msix_irqs;
831 }
832 }
833 phba->msi_name[i] = kasprintf(GFP_KERNEL, "beiscsi_mcc_%02x",
834 phba->shost->host_no);
835 if (!phba->msi_name[i]) {
836 ret = -ENOMEM;
837 goto free_msix_irqs;
838 }
839 ret = request_irq(pci_irq_vector(pcidev, i), be_isr_mcc, 0,
840 phba->msi_name[i], &phwi_context->be_eq[i]);
841 if (ret) {
842 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
843 "BM_%d : %s-Failed to register beiscsi_msix_mcc\n",
844 __func__);
845 kfree(phba->msi_name[i]);
846 goto free_msix_irqs;
847 }
848
849 } else {
850 ret = request_irq(pcidev->irq, be_isr, IRQF_SHARED,
851 "beiscsi", phba);
852 if (ret) {
853 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
854 "BM_%d : %s-Failed to register irq\n",
855 __func__);
856 return ret;
857 }
858 }
859 return 0;
860 free_msix_irqs:
861 for (j = i - 1; j >= 0; j--) {
862 free_irq(pci_irq_vector(pcidev, i), &phwi_context->be_eq[j]);
863 kfree(phba->msi_name[j]);
864 }
865 return ret;
866 }
867
hwi_ring_cq_db(struct beiscsi_hba * phba,unsigned int id,unsigned int num_processed,unsigned char rearm)868 void hwi_ring_cq_db(struct beiscsi_hba *phba,
869 unsigned int id, unsigned int num_processed,
870 unsigned char rearm)
871 {
872 u32 val = 0;
873
874 if (rearm)
875 val |= 1 << DB_CQ_REARM_SHIFT;
876
877 val |= num_processed << DB_CQ_NUM_POPPED_SHIFT;
878
879 /* Setting lower order CQ_ID Bits */
880 val |= (id & DB_CQ_RING_ID_LOW_MASK);
881
882 /* Setting Higher order CQ_ID Bits */
883 val |= (((id >> DB_CQ_HIGH_FEILD_SHIFT) &
884 DB_CQ_RING_ID_HIGH_MASK)
885 << DB_CQ_HIGH_SET_SHIFT);
886
887 iowrite32(val, phba->db_va + DB_CQ_OFFSET);
888 }
889
alloc_io_sgl_handle(struct beiscsi_hba * phba)890 static struct sgl_handle *alloc_io_sgl_handle(struct beiscsi_hba *phba)
891 {
892 struct sgl_handle *psgl_handle;
893 unsigned long flags;
894
895 spin_lock_irqsave(&phba->io_sgl_lock, flags);
896 if (phba->io_sgl_hndl_avbl) {
897 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO,
898 "BM_%d : In alloc_io_sgl_handle,"
899 " io_sgl_alloc_index=%d\n",
900 phba->io_sgl_alloc_index);
901
902 psgl_handle = phba->io_sgl_hndl_base[phba->
903 io_sgl_alloc_index];
904 phba->io_sgl_hndl_base[phba->io_sgl_alloc_index] = NULL;
905 phba->io_sgl_hndl_avbl--;
906 if (phba->io_sgl_alloc_index == (phba->params.
907 ios_per_ctrl - 1))
908 phba->io_sgl_alloc_index = 0;
909 else
910 phba->io_sgl_alloc_index++;
911 } else
912 psgl_handle = NULL;
913 spin_unlock_irqrestore(&phba->io_sgl_lock, flags);
914 return psgl_handle;
915 }
916
917 static void
free_io_sgl_handle(struct beiscsi_hba * phba,struct sgl_handle * psgl_handle)918 free_io_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
919 {
920 unsigned long flags;
921
922 spin_lock_irqsave(&phba->io_sgl_lock, flags);
923 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO,
924 "BM_%d : In free_,io_sgl_free_index=%d\n",
925 phba->io_sgl_free_index);
926
927 if (phba->io_sgl_hndl_base[phba->io_sgl_free_index]) {
928 /*
929 * this can happen if clean_task is called on a task that
930 * failed in xmit_task or alloc_pdu.
931 */
932 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO,
933 "BM_%d : Double Free in IO SGL io_sgl_free_index=%d, value there=%p\n",
934 phba->io_sgl_free_index,
935 phba->io_sgl_hndl_base[phba->io_sgl_free_index]);
936 spin_unlock_irqrestore(&phba->io_sgl_lock, flags);
937 return;
938 }
939 phba->io_sgl_hndl_base[phba->io_sgl_free_index] = psgl_handle;
940 phba->io_sgl_hndl_avbl++;
941 if (phba->io_sgl_free_index == (phba->params.ios_per_ctrl - 1))
942 phba->io_sgl_free_index = 0;
943 else
944 phba->io_sgl_free_index++;
945 spin_unlock_irqrestore(&phba->io_sgl_lock, flags);
946 }
947
948 static inline struct wrb_handle *
beiscsi_get_wrb_handle(struct hwi_wrb_context * pwrb_context,unsigned int wrbs_per_cxn)949 beiscsi_get_wrb_handle(struct hwi_wrb_context *pwrb_context,
950 unsigned int wrbs_per_cxn)
951 {
952 struct wrb_handle *pwrb_handle;
953 unsigned long flags;
954
955 spin_lock_irqsave(&pwrb_context->wrb_lock, flags);
956 if (!pwrb_context->wrb_handles_available) {
957 spin_unlock_irqrestore(&pwrb_context->wrb_lock, flags);
958 return NULL;
959 }
960 pwrb_handle = pwrb_context->pwrb_handle_base[pwrb_context->alloc_index];
961 pwrb_context->wrb_handles_available--;
962 if (pwrb_context->alloc_index == (wrbs_per_cxn - 1))
963 pwrb_context->alloc_index = 0;
964 else
965 pwrb_context->alloc_index++;
966 spin_unlock_irqrestore(&pwrb_context->wrb_lock, flags);
967
968 if (pwrb_handle)
969 memset(pwrb_handle->pwrb, 0, sizeof(*pwrb_handle->pwrb));
970
971 return pwrb_handle;
972 }
973
974 /**
975 * alloc_wrb_handle - To allocate a wrb handle
976 * @phba: The hba pointer
977 * @cid: The cid to use for allocation
978 * @pcontext: ptr to ptr to wrb context
979 *
980 * This happens under session_lock until submission to chip
981 */
alloc_wrb_handle(struct beiscsi_hba * phba,unsigned int cid,struct hwi_wrb_context ** pcontext)982 struct wrb_handle *alloc_wrb_handle(struct beiscsi_hba *phba, unsigned int cid,
983 struct hwi_wrb_context **pcontext)
984 {
985 struct hwi_wrb_context *pwrb_context;
986 struct hwi_controller *phwi_ctrlr;
987 uint16_t cri_index = BE_GET_CRI_FROM_CID(cid);
988
989 phwi_ctrlr = phba->phwi_ctrlr;
990 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
991 /* return the context address */
992 *pcontext = pwrb_context;
993 return beiscsi_get_wrb_handle(pwrb_context, phba->params.wrbs_per_cxn);
994 }
995
996 static inline void
beiscsi_put_wrb_handle(struct hwi_wrb_context * pwrb_context,struct wrb_handle * pwrb_handle,unsigned int wrbs_per_cxn)997 beiscsi_put_wrb_handle(struct hwi_wrb_context *pwrb_context,
998 struct wrb_handle *pwrb_handle,
999 unsigned int wrbs_per_cxn)
1000 {
1001 unsigned long flags;
1002
1003 spin_lock_irqsave(&pwrb_context->wrb_lock, flags);
1004 pwrb_context->pwrb_handle_base[pwrb_context->free_index] = pwrb_handle;
1005 pwrb_context->wrb_handles_available++;
1006 if (pwrb_context->free_index == (wrbs_per_cxn - 1))
1007 pwrb_context->free_index = 0;
1008 else
1009 pwrb_context->free_index++;
1010 pwrb_handle->pio_handle = NULL;
1011 spin_unlock_irqrestore(&pwrb_context->wrb_lock, flags);
1012 }
1013
1014 /**
1015 * free_wrb_handle - To free the wrb handle back to pool
1016 * @phba: The hba pointer
1017 * @pwrb_context: The context to free from
1018 * @pwrb_handle: The wrb_handle to free
1019 *
1020 * This happens under session_lock until submission to chip
1021 */
1022 static void
free_wrb_handle(struct beiscsi_hba * phba,struct hwi_wrb_context * pwrb_context,struct wrb_handle * pwrb_handle)1023 free_wrb_handle(struct beiscsi_hba *phba, struct hwi_wrb_context *pwrb_context,
1024 struct wrb_handle *pwrb_handle)
1025 {
1026 beiscsi_put_wrb_handle(pwrb_context,
1027 pwrb_handle,
1028 phba->params.wrbs_per_cxn);
1029 beiscsi_log(phba, KERN_INFO,
1030 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1031 "BM_%d : FREE WRB: pwrb_handle=%p free_index=0x%x "
1032 "wrb_handles_available=%d\n",
1033 pwrb_handle, pwrb_context->free_index,
1034 pwrb_context->wrb_handles_available);
1035 }
1036
alloc_mgmt_sgl_handle(struct beiscsi_hba * phba)1037 static struct sgl_handle *alloc_mgmt_sgl_handle(struct beiscsi_hba *phba)
1038 {
1039 struct sgl_handle *psgl_handle;
1040 unsigned long flags;
1041
1042 spin_lock_irqsave(&phba->mgmt_sgl_lock, flags);
1043 if (phba->eh_sgl_hndl_avbl) {
1044 psgl_handle = phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index];
1045 phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index] = NULL;
1046 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1047 "BM_%d : mgmt_sgl_alloc_index=%d=0x%x\n",
1048 phba->eh_sgl_alloc_index,
1049 phba->eh_sgl_alloc_index);
1050
1051 phba->eh_sgl_hndl_avbl--;
1052 if (phba->eh_sgl_alloc_index ==
1053 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl -
1054 1))
1055 phba->eh_sgl_alloc_index = 0;
1056 else
1057 phba->eh_sgl_alloc_index++;
1058 } else
1059 psgl_handle = NULL;
1060 spin_unlock_irqrestore(&phba->mgmt_sgl_lock, flags);
1061 return psgl_handle;
1062 }
1063
1064 void
free_mgmt_sgl_handle(struct beiscsi_hba * phba,struct sgl_handle * psgl_handle)1065 free_mgmt_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
1066 {
1067 unsigned long flags;
1068
1069 spin_lock_irqsave(&phba->mgmt_sgl_lock, flags);
1070 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1071 "BM_%d : In free_mgmt_sgl_handle,"
1072 "eh_sgl_free_index=%d\n",
1073 phba->eh_sgl_free_index);
1074
1075 if (phba->eh_sgl_hndl_base[phba->eh_sgl_free_index]) {
1076 /*
1077 * this can happen if clean_task is called on a task that
1078 * failed in xmit_task or alloc_pdu.
1079 */
1080 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
1081 "BM_%d : Double Free in eh SGL ,"
1082 "eh_sgl_free_index=%d\n",
1083 phba->eh_sgl_free_index);
1084 spin_unlock_irqrestore(&phba->mgmt_sgl_lock, flags);
1085 return;
1086 }
1087 phba->eh_sgl_hndl_base[phba->eh_sgl_free_index] = psgl_handle;
1088 phba->eh_sgl_hndl_avbl++;
1089 if (phba->eh_sgl_free_index ==
1090 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl - 1))
1091 phba->eh_sgl_free_index = 0;
1092 else
1093 phba->eh_sgl_free_index++;
1094 spin_unlock_irqrestore(&phba->mgmt_sgl_lock, flags);
1095 }
1096
1097 static void
be_complete_io(struct beiscsi_conn * beiscsi_conn,struct iscsi_task * task,struct common_sol_cqe * csol_cqe)1098 be_complete_io(struct beiscsi_conn *beiscsi_conn,
1099 struct iscsi_task *task,
1100 struct common_sol_cqe *csol_cqe)
1101 {
1102 struct beiscsi_io_task *io_task = task->dd_data;
1103 struct be_status_bhs *sts_bhs =
1104 (struct be_status_bhs *)io_task->cmd_bhs;
1105 struct iscsi_conn *conn = beiscsi_conn->conn;
1106 unsigned char *sense;
1107 u32 resid = 0, exp_cmdsn, max_cmdsn;
1108 u8 rsp, status, flags;
1109
1110 exp_cmdsn = csol_cqe->exp_cmdsn;
1111 max_cmdsn = (csol_cqe->exp_cmdsn +
1112 csol_cqe->cmd_wnd - 1);
1113 rsp = csol_cqe->i_resp;
1114 status = csol_cqe->i_sts;
1115 flags = csol_cqe->i_flags;
1116 resid = csol_cqe->res_cnt;
1117
1118 if (!task->sc) {
1119 if (io_task->scsi_cmnd) {
1120 scsi_dma_unmap(io_task->scsi_cmnd);
1121 io_task->scsi_cmnd = NULL;
1122 }
1123
1124 return;
1125 }
1126 task->sc->result = (DID_OK << 16) | status;
1127 if (rsp != ISCSI_STATUS_CMD_COMPLETED) {
1128 task->sc->result = DID_ERROR << 16;
1129 goto unmap;
1130 }
1131
1132 /* bidi not initially supported */
1133 if (flags & (ISCSI_FLAG_CMD_UNDERFLOW | ISCSI_FLAG_CMD_OVERFLOW)) {
1134 if (!status && (flags & ISCSI_FLAG_CMD_OVERFLOW))
1135 task->sc->result = DID_ERROR << 16;
1136
1137 if (flags & ISCSI_FLAG_CMD_UNDERFLOW) {
1138 scsi_set_resid(task->sc, resid);
1139 if (!status && (scsi_bufflen(task->sc) - resid <
1140 task->sc->underflow))
1141 task->sc->result = DID_ERROR << 16;
1142 }
1143 }
1144
1145 if (status == SAM_STAT_CHECK_CONDITION) {
1146 u16 sense_len;
1147 unsigned short *slen = (unsigned short *)sts_bhs->sense_info;
1148
1149 sense = sts_bhs->sense_info + sizeof(unsigned short);
1150 sense_len = be16_to_cpu(*slen);
1151 memcpy(task->sc->sense_buffer, sense,
1152 min_t(u16, sense_len, SCSI_SENSE_BUFFERSIZE));
1153 }
1154
1155 if (io_task->cmd_bhs->iscsi_hdr.flags & ISCSI_FLAG_CMD_READ)
1156 conn->rxdata_octets += resid;
1157 unmap:
1158 if (io_task->scsi_cmnd) {
1159 scsi_dma_unmap(io_task->scsi_cmnd);
1160 io_task->scsi_cmnd = NULL;
1161 }
1162 iscsi_complete_scsi_task(task, exp_cmdsn, max_cmdsn);
1163 }
1164
1165 static void
be_complete_logout(struct beiscsi_conn * beiscsi_conn,struct iscsi_task * task,struct common_sol_cqe * csol_cqe)1166 be_complete_logout(struct beiscsi_conn *beiscsi_conn,
1167 struct iscsi_task *task,
1168 struct common_sol_cqe *csol_cqe)
1169 {
1170 struct iscsi_logout_rsp *hdr;
1171 struct beiscsi_io_task *io_task = task->dd_data;
1172 struct iscsi_conn *conn = beiscsi_conn->conn;
1173
1174 hdr = (struct iscsi_logout_rsp *)task->hdr;
1175 hdr->opcode = ISCSI_OP_LOGOUT_RSP;
1176 hdr->t2wait = 5;
1177 hdr->t2retain = 0;
1178 hdr->flags = csol_cqe->i_flags;
1179 hdr->response = csol_cqe->i_resp;
1180 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn);
1181 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn +
1182 csol_cqe->cmd_wnd - 1);
1183
1184 hdr->dlength[0] = 0;
1185 hdr->dlength[1] = 0;
1186 hdr->dlength[2] = 0;
1187 hdr->hlength = 0;
1188 hdr->itt = io_task->libiscsi_itt;
1189 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1190 }
1191
1192 static void
be_complete_tmf(struct beiscsi_conn * beiscsi_conn,struct iscsi_task * task,struct common_sol_cqe * csol_cqe)1193 be_complete_tmf(struct beiscsi_conn *beiscsi_conn,
1194 struct iscsi_task *task,
1195 struct common_sol_cqe *csol_cqe)
1196 {
1197 struct iscsi_tm_rsp *hdr;
1198 struct iscsi_conn *conn = beiscsi_conn->conn;
1199 struct beiscsi_io_task *io_task = task->dd_data;
1200
1201 hdr = (struct iscsi_tm_rsp *)task->hdr;
1202 hdr->opcode = ISCSI_OP_SCSI_TMFUNC_RSP;
1203 hdr->flags = csol_cqe->i_flags;
1204 hdr->response = csol_cqe->i_resp;
1205 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn);
1206 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn +
1207 csol_cqe->cmd_wnd - 1);
1208
1209 hdr->itt = io_task->libiscsi_itt;
1210 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1211 }
1212
1213 static void
hwi_complete_drvr_msgs(struct beiscsi_conn * beiscsi_conn,struct beiscsi_hba * phba,struct sol_cqe * psol)1214 hwi_complete_drvr_msgs(struct beiscsi_conn *beiscsi_conn,
1215 struct beiscsi_hba *phba, struct sol_cqe *psol)
1216 {
1217 struct hwi_wrb_context *pwrb_context;
1218 uint16_t wrb_index, cid, cri_index;
1219 struct hwi_controller *phwi_ctrlr;
1220 struct wrb_handle *pwrb_handle;
1221 struct iscsi_session *session;
1222 struct iscsi_task *task;
1223
1224 phwi_ctrlr = phba->phwi_ctrlr;
1225 if (is_chip_be2_be3r(phba)) {
1226 wrb_index = AMAP_GET_BITS(struct amap_it_dmsg_cqe,
1227 wrb_idx, psol);
1228 cid = AMAP_GET_BITS(struct amap_it_dmsg_cqe,
1229 cid, psol);
1230 } else {
1231 wrb_index = AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2,
1232 wrb_idx, psol);
1233 cid = AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2,
1234 cid, psol);
1235 }
1236
1237 cri_index = BE_GET_CRI_FROM_CID(cid);
1238 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
1239 pwrb_handle = pwrb_context->pwrb_handle_basestd[wrb_index];
1240 session = beiscsi_conn->conn->session;
1241 spin_lock_bh(&session->back_lock);
1242 task = pwrb_handle->pio_handle;
1243 if (task)
1244 __iscsi_put_task(task);
1245 spin_unlock_bh(&session->back_lock);
1246 }
1247
1248 static void
be_complete_nopin_resp(struct beiscsi_conn * beiscsi_conn,struct iscsi_task * task,struct common_sol_cqe * csol_cqe)1249 be_complete_nopin_resp(struct beiscsi_conn *beiscsi_conn,
1250 struct iscsi_task *task,
1251 struct common_sol_cqe *csol_cqe)
1252 {
1253 struct iscsi_nopin *hdr;
1254 struct iscsi_conn *conn = beiscsi_conn->conn;
1255 struct beiscsi_io_task *io_task = task->dd_data;
1256
1257 hdr = (struct iscsi_nopin *)task->hdr;
1258 hdr->flags = csol_cqe->i_flags;
1259 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn);
1260 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn +
1261 csol_cqe->cmd_wnd - 1);
1262
1263 hdr->opcode = ISCSI_OP_NOOP_IN;
1264 hdr->itt = io_task->libiscsi_itt;
1265 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1266 }
1267
adapter_get_sol_cqe(struct beiscsi_hba * phba,struct sol_cqe * psol,struct common_sol_cqe * csol_cqe)1268 static void adapter_get_sol_cqe(struct beiscsi_hba *phba,
1269 struct sol_cqe *psol,
1270 struct common_sol_cqe *csol_cqe)
1271 {
1272 if (is_chip_be2_be3r(phba)) {
1273 csol_cqe->exp_cmdsn = AMAP_GET_BITS(struct amap_sol_cqe,
1274 i_exp_cmd_sn, psol);
1275 csol_cqe->res_cnt = AMAP_GET_BITS(struct amap_sol_cqe,
1276 i_res_cnt, psol);
1277 csol_cqe->cmd_wnd = AMAP_GET_BITS(struct amap_sol_cqe,
1278 i_cmd_wnd, psol);
1279 csol_cqe->wrb_index = AMAP_GET_BITS(struct amap_sol_cqe,
1280 wrb_index, psol);
1281 csol_cqe->cid = AMAP_GET_BITS(struct amap_sol_cqe,
1282 cid, psol);
1283 csol_cqe->hw_sts = AMAP_GET_BITS(struct amap_sol_cqe,
1284 hw_sts, psol);
1285 csol_cqe->i_resp = AMAP_GET_BITS(struct amap_sol_cqe,
1286 i_resp, psol);
1287 csol_cqe->i_sts = AMAP_GET_BITS(struct amap_sol_cqe,
1288 i_sts, psol);
1289 csol_cqe->i_flags = AMAP_GET_BITS(struct amap_sol_cqe,
1290 i_flags, psol);
1291 } else {
1292 csol_cqe->exp_cmdsn = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1293 i_exp_cmd_sn, psol);
1294 csol_cqe->res_cnt = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1295 i_res_cnt, psol);
1296 csol_cqe->wrb_index = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1297 wrb_index, psol);
1298 csol_cqe->cid = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1299 cid, psol);
1300 csol_cqe->hw_sts = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1301 hw_sts, psol);
1302 csol_cqe->cmd_wnd = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1303 i_cmd_wnd, psol);
1304 if (AMAP_GET_BITS(struct amap_sol_cqe_v2,
1305 cmd_cmpl, psol))
1306 csol_cqe->i_sts = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1307 i_sts, psol);
1308 else
1309 csol_cqe->i_resp = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1310 i_sts, psol);
1311 if (AMAP_GET_BITS(struct amap_sol_cqe_v2,
1312 u, psol))
1313 csol_cqe->i_flags = ISCSI_FLAG_CMD_UNDERFLOW;
1314
1315 if (AMAP_GET_BITS(struct amap_sol_cqe_v2,
1316 o, psol))
1317 csol_cqe->i_flags |= ISCSI_FLAG_CMD_OVERFLOW;
1318 }
1319 }
1320
1321
hwi_complete_cmd(struct beiscsi_conn * beiscsi_conn,struct beiscsi_hba * phba,struct sol_cqe * psol)1322 static void hwi_complete_cmd(struct beiscsi_conn *beiscsi_conn,
1323 struct beiscsi_hba *phba, struct sol_cqe *psol)
1324 {
1325 struct iscsi_conn *conn = beiscsi_conn->conn;
1326 struct iscsi_session *session = conn->session;
1327 struct common_sol_cqe csol_cqe = {0};
1328 struct hwi_wrb_context *pwrb_context;
1329 struct hwi_controller *phwi_ctrlr;
1330 struct wrb_handle *pwrb_handle;
1331 struct iscsi_task *task;
1332 uint16_t cri_index = 0;
1333 uint8_t type;
1334
1335 phwi_ctrlr = phba->phwi_ctrlr;
1336
1337 /* Copy the elements to a common structure */
1338 adapter_get_sol_cqe(phba, psol, &csol_cqe);
1339
1340 cri_index = BE_GET_CRI_FROM_CID(csol_cqe.cid);
1341 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
1342
1343 pwrb_handle = pwrb_context->pwrb_handle_basestd[
1344 csol_cqe.wrb_index];
1345
1346 spin_lock_bh(&session->back_lock);
1347 task = pwrb_handle->pio_handle;
1348 if (!task) {
1349 spin_unlock_bh(&session->back_lock);
1350 return;
1351 }
1352 type = ((struct beiscsi_io_task *)task->dd_data)->wrb_type;
1353
1354 switch (type) {
1355 case HWH_TYPE_IO:
1356 case HWH_TYPE_IO_RD:
1357 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) ==
1358 ISCSI_OP_NOOP_OUT)
1359 be_complete_nopin_resp(beiscsi_conn, task, &csol_cqe);
1360 else
1361 be_complete_io(beiscsi_conn, task, &csol_cqe);
1362 break;
1363
1364 case HWH_TYPE_LOGOUT:
1365 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
1366 be_complete_logout(beiscsi_conn, task, &csol_cqe);
1367 else
1368 be_complete_tmf(beiscsi_conn, task, &csol_cqe);
1369 break;
1370
1371 case HWH_TYPE_LOGIN:
1372 beiscsi_log(phba, KERN_ERR,
1373 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1374 "BM_%d :\t\t No HWH_TYPE_LOGIN Expected in"
1375 " %s- Solicited path\n", __func__);
1376 break;
1377
1378 case HWH_TYPE_NOP:
1379 be_complete_nopin_resp(beiscsi_conn, task, &csol_cqe);
1380 break;
1381
1382 default:
1383 beiscsi_log(phba, KERN_WARNING,
1384 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1385 "BM_%d : In %s, unknown type = %d "
1386 "wrb_index 0x%x CID 0x%x\n", __func__, type,
1387 csol_cqe.wrb_index,
1388 csol_cqe.cid);
1389 break;
1390 }
1391
1392 spin_unlock_bh(&session->back_lock);
1393 }
1394
1395 /*
1396 * ASYNC PDUs include
1397 * a. Unsolicited NOP-In (target initiated NOP-In)
1398 * b. ASYNC Messages
1399 * c. Reject PDU
1400 * d. Login response
1401 * These headers arrive unprocessed by the EP firmware.
1402 * iSCSI layer processes them.
1403 */
1404 static unsigned int
beiscsi_complete_pdu(struct beiscsi_conn * beiscsi_conn,struct pdu_base * phdr,void * pdata,unsigned int dlen)1405 beiscsi_complete_pdu(struct beiscsi_conn *beiscsi_conn,
1406 struct pdu_base *phdr, void *pdata, unsigned int dlen)
1407 {
1408 struct beiscsi_hba *phba = beiscsi_conn->phba;
1409 struct iscsi_conn *conn = beiscsi_conn->conn;
1410 struct beiscsi_io_task *io_task;
1411 struct iscsi_hdr *login_hdr;
1412 struct iscsi_task *task;
1413 u8 code;
1414
1415 code = AMAP_GET_BITS(struct amap_pdu_base, opcode, phdr);
1416 switch (code) {
1417 case ISCSI_OP_NOOP_IN:
1418 pdata = NULL;
1419 dlen = 0;
1420 break;
1421 case ISCSI_OP_ASYNC_EVENT:
1422 break;
1423 case ISCSI_OP_REJECT:
1424 WARN_ON(!pdata);
1425 WARN_ON(!(dlen == 48));
1426 beiscsi_log(phba, KERN_ERR,
1427 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1428 "BM_%d : In ISCSI_OP_REJECT\n");
1429 break;
1430 case ISCSI_OP_LOGIN_RSP:
1431 case ISCSI_OP_TEXT_RSP:
1432 task = conn->login_task;
1433 io_task = task->dd_data;
1434 login_hdr = (struct iscsi_hdr *)phdr;
1435 login_hdr->itt = io_task->libiscsi_itt;
1436 break;
1437 default:
1438 beiscsi_log(phba, KERN_WARNING,
1439 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1440 "BM_%d : unrecognized async PDU opcode 0x%x\n",
1441 code);
1442 return 1;
1443 }
1444 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)phdr, pdata, dlen);
1445 return 0;
1446 }
1447
1448 static inline void
beiscsi_hdl_put_handle(struct hd_async_context * pasync_ctx,struct hd_async_handle * pasync_handle)1449 beiscsi_hdl_put_handle(struct hd_async_context *pasync_ctx,
1450 struct hd_async_handle *pasync_handle)
1451 {
1452 pasync_handle->is_final = 0;
1453 pasync_handle->buffer_len = 0;
1454 pasync_handle->in_use = 0;
1455 list_del_init(&pasync_handle->link);
1456 }
1457
1458 static void
beiscsi_hdl_purge_handles(struct beiscsi_hba * phba,struct hd_async_context * pasync_ctx,u16 cri)1459 beiscsi_hdl_purge_handles(struct beiscsi_hba *phba,
1460 struct hd_async_context *pasync_ctx,
1461 u16 cri)
1462 {
1463 struct hd_async_handle *pasync_handle, *tmp_handle;
1464 struct list_head *plist;
1465
1466 plist = &pasync_ctx->async_entry[cri].wq.list;
1467 list_for_each_entry_safe(pasync_handle, tmp_handle, plist, link)
1468 beiscsi_hdl_put_handle(pasync_ctx, pasync_handle);
1469
1470 INIT_LIST_HEAD(&pasync_ctx->async_entry[cri].wq.list);
1471 pasync_ctx->async_entry[cri].wq.hdr_len = 0;
1472 pasync_ctx->async_entry[cri].wq.bytes_received = 0;
1473 pasync_ctx->async_entry[cri].wq.bytes_needed = 0;
1474 }
1475
1476 static struct hd_async_handle *
beiscsi_hdl_get_handle(struct beiscsi_conn * beiscsi_conn,struct hd_async_context * pasync_ctx,struct i_t_dpdu_cqe * pdpdu_cqe,u8 * header)1477 beiscsi_hdl_get_handle(struct beiscsi_conn *beiscsi_conn,
1478 struct hd_async_context *pasync_ctx,
1479 struct i_t_dpdu_cqe *pdpdu_cqe,
1480 u8 *header)
1481 {
1482 struct beiscsi_hba *phba = beiscsi_conn->phba;
1483 struct hd_async_handle *pasync_handle;
1484 struct be_bus_address phys_addr;
1485 u16 cid, code, ci, cri;
1486 u8 final, error = 0;
1487 u32 dpl;
1488
1489 cid = beiscsi_conn->beiscsi_conn_cid;
1490 cri = BE_GET_ASYNC_CRI_FROM_CID(cid);
1491 /**
1492 * This function is invoked to get the right async_handle structure
1493 * from a given DEF PDU CQ entry.
1494 *
1495 * - index in CQ entry gives the vertical index
1496 * - address in CQ entry is the offset where the DMA last ended
1497 * - final - no more notifications for this PDU
1498 */
1499 if (is_chip_be2_be3r(phba)) {
1500 dpl = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1501 dpl, pdpdu_cqe);
1502 ci = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1503 index, pdpdu_cqe);
1504 final = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1505 final, pdpdu_cqe);
1506 } else {
1507 dpl = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1508 dpl, pdpdu_cqe);
1509 ci = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1510 index, pdpdu_cqe);
1511 final = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1512 final, pdpdu_cqe);
1513 }
1514
1515 /**
1516 * DB addr Hi/Lo is same for BE and SKH.
1517 * Subtract the dataplacementlength to get to the base.
1518 */
1519 phys_addr.u.a32.address_lo = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1520 db_addr_lo, pdpdu_cqe);
1521 phys_addr.u.a32.address_lo -= dpl;
1522 phys_addr.u.a32.address_hi = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1523 db_addr_hi, pdpdu_cqe);
1524
1525 code = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe, code, pdpdu_cqe);
1526 switch (code) {
1527 case UNSOL_HDR_NOTIFY:
1528 pasync_handle = pasync_ctx->async_entry[ci].header;
1529 *header = 1;
1530 break;
1531 case UNSOL_DATA_DIGEST_ERROR_NOTIFY:
1532 error = 1;
1533 fallthrough;
1534 case UNSOL_DATA_NOTIFY:
1535 pasync_handle = pasync_ctx->async_entry[ci].data;
1536 break;
1537 /* called only for above codes */
1538 default:
1539 return NULL;
1540 }
1541
1542 if (pasync_handle->pa.u.a64.address != phys_addr.u.a64.address ||
1543 pasync_handle->index != ci) {
1544 /* driver bug - if ci does not match async handle index */
1545 error = 1;
1546 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI,
1547 "BM_%d : cid %u async PDU handle mismatch - addr in %cQE %llx at %u:addr in CQE %llx ci %u\n",
1548 cid, pasync_handle->is_header ? 'H' : 'D',
1549 pasync_handle->pa.u.a64.address,
1550 pasync_handle->index,
1551 phys_addr.u.a64.address, ci);
1552 /* FW has stale address - attempt continuing by dropping */
1553 }
1554
1555 /**
1556 * DEF PDU header and data buffers with errors should be simply
1557 * dropped as there are no consumers for it.
1558 */
1559 if (error) {
1560 beiscsi_hdl_put_handle(pasync_ctx, pasync_handle);
1561 return NULL;
1562 }
1563
1564 if (pasync_handle->in_use || !list_empty(&pasync_handle->link)) {
1565 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI,
1566 "BM_%d : cid %d async PDU handle in use - code %d ci %d addr %llx\n",
1567 cid, code, ci, phys_addr.u.a64.address);
1568 beiscsi_hdl_purge_handles(phba, pasync_ctx, cri);
1569 }
1570
1571 list_del_init(&pasync_handle->link);
1572 /**
1573 * Each CID is associated with unique CRI.
1574 * ASYNC_CRI_FROM_CID mapping and CRI_FROM_CID are totaly different.
1575 **/
1576 pasync_handle->cri = cri;
1577 pasync_handle->is_final = final;
1578 pasync_handle->buffer_len = dpl;
1579 pasync_handle->in_use = 1;
1580
1581 return pasync_handle;
1582 }
1583
1584 static unsigned int
beiscsi_hdl_fwd_pdu(struct beiscsi_conn * beiscsi_conn,struct hd_async_context * pasync_ctx,u16 cri)1585 beiscsi_hdl_fwd_pdu(struct beiscsi_conn *beiscsi_conn,
1586 struct hd_async_context *pasync_ctx,
1587 u16 cri)
1588 {
1589 struct iscsi_session *session = beiscsi_conn->conn->session;
1590 struct hd_async_handle *pasync_handle, *plast_handle;
1591 struct beiscsi_hba *phba = beiscsi_conn->phba;
1592 void *phdr = NULL, *pdata = NULL;
1593 u32 dlen = 0, status = 0;
1594 struct list_head *plist;
1595
1596 plist = &pasync_ctx->async_entry[cri].wq.list;
1597 plast_handle = NULL;
1598 list_for_each_entry(pasync_handle, plist, link) {
1599 plast_handle = pasync_handle;
1600 /* get the header, the first entry */
1601 if (!phdr) {
1602 phdr = pasync_handle->pbuffer;
1603 continue;
1604 }
1605 /* use first buffer to collect all the data */
1606 if (!pdata) {
1607 pdata = pasync_handle->pbuffer;
1608 dlen = pasync_handle->buffer_len;
1609 continue;
1610 }
1611 if (!pasync_handle->buffer_len ||
1612 (dlen + pasync_handle->buffer_len) >
1613 pasync_ctx->async_data.buffer_size)
1614 break;
1615 memcpy(pdata + dlen, pasync_handle->pbuffer,
1616 pasync_handle->buffer_len);
1617 dlen += pasync_handle->buffer_len;
1618 }
1619
1620 if (!plast_handle->is_final) {
1621 /* last handle should have final PDU notification from FW */
1622 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI,
1623 "BM_%d : cid %u %p fwd async PDU opcode %x with last handle missing - HL%u:DN%u:DR%u\n",
1624 beiscsi_conn->beiscsi_conn_cid, plast_handle,
1625 AMAP_GET_BITS(struct amap_pdu_base, opcode, phdr),
1626 pasync_ctx->async_entry[cri].wq.hdr_len,
1627 pasync_ctx->async_entry[cri].wq.bytes_needed,
1628 pasync_ctx->async_entry[cri].wq.bytes_received);
1629 }
1630 spin_lock_bh(&session->back_lock);
1631 status = beiscsi_complete_pdu(beiscsi_conn, phdr, pdata, dlen);
1632 spin_unlock_bh(&session->back_lock);
1633 beiscsi_hdl_purge_handles(phba, pasync_ctx, cri);
1634 return status;
1635 }
1636
1637 static unsigned int
beiscsi_hdl_gather_pdu(struct beiscsi_conn * beiscsi_conn,struct hd_async_context * pasync_ctx,struct hd_async_handle * pasync_handle)1638 beiscsi_hdl_gather_pdu(struct beiscsi_conn *beiscsi_conn,
1639 struct hd_async_context *pasync_ctx,
1640 struct hd_async_handle *pasync_handle)
1641 {
1642 unsigned int bytes_needed = 0, status = 0;
1643 u16 cri = pasync_handle->cri;
1644 struct cri_wait_queue *wq;
1645 struct beiscsi_hba *phba;
1646 struct pdu_base *ppdu;
1647 char *err = "";
1648
1649 phba = beiscsi_conn->phba;
1650 wq = &pasync_ctx->async_entry[cri].wq;
1651 if (pasync_handle->is_header) {
1652 /* check if PDU hdr is rcv'd when old hdr not completed */
1653 if (wq->hdr_len) {
1654 err = "incomplete";
1655 goto drop_pdu;
1656 }
1657 ppdu = pasync_handle->pbuffer;
1658 bytes_needed = AMAP_GET_BITS(struct amap_pdu_base,
1659 data_len_hi, ppdu);
1660 bytes_needed <<= 16;
1661 bytes_needed |= be16_to_cpu(AMAP_GET_BITS(struct amap_pdu_base,
1662 data_len_lo, ppdu));
1663 wq->hdr_len = pasync_handle->buffer_len;
1664 wq->bytes_received = 0;
1665 wq->bytes_needed = bytes_needed;
1666 list_add_tail(&pasync_handle->link, &wq->list);
1667 if (!bytes_needed)
1668 status = beiscsi_hdl_fwd_pdu(beiscsi_conn,
1669 pasync_ctx, cri);
1670 } else {
1671 /* check if data received has header and is needed */
1672 if (!wq->hdr_len || !wq->bytes_needed) {
1673 err = "header less";
1674 goto drop_pdu;
1675 }
1676 wq->bytes_received += pasync_handle->buffer_len;
1677 /* Something got overwritten? Better catch it here. */
1678 if (wq->bytes_received > wq->bytes_needed) {
1679 err = "overflow";
1680 goto drop_pdu;
1681 }
1682 list_add_tail(&pasync_handle->link, &wq->list);
1683 if (wq->bytes_received == wq->bytes_needed)
1684 status = beiscsi_hdl_fwd_pdu(beiscsi_conn,
1685 pasync_ctx, cri);
1686 }
1687 return status;
1688
1689 drop_pdu:
1690 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI,
1691 "BM_%d : cid %u async PDU %s - def-%c:HL%u:DN%u:DR%u\n",
1692 beiscsi_conn->beiscsi_conn_cid, err,
1693 pasync_handle->is_header ? 'H' : 'D',
1694 wq->hdr_len, wq->bytes_needed,
1695 pasync_handle->buffer_len);
1696 /* discard this handle */
1697 beiscsi_hdl_put_handle(pasync_ctx, pasync_handle);
1698 /* free all the other handles in cri_wait_queue */
1699 beiscsi_hdl_purge_handles(phba, pasync_ctx, cri);
1700 /* try continuing */
1701 return status;
1702 }
1703
1704 static void
beiscsi_hdq_post_handles(struct beiscsi_hba * phba,u8 header,u8 ulp_num,u16 nbuf)1705 beiscsi_hdq_post_handles(struct beiscsi_hba *phba,
1706 u8 header, u8 ulp_num, u16 nbuf)
1707 {
1708 struct hd_async_handle *pasync_handle;
1709 struct hd_async_context *pasync_ctx;
1710 struct hwi_controller *phwi_ctrlr;
1711 struct phys_addr *pasync_sge;
1712 u32 ring_id, doorbell = 0;
1713 u32 doorbell_offset;
1714 u16 prod, pi;
1715
1716 phwi_ctrlr = phba->phwi_ctrlr;
1717 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr, ulp_num);
1718 if (header) {
1719 pasync_sge = pasync_ctx->async_header.ring_base;
1720 pi = pasync_ctx->async_header.pi;
1721 ring_id = phwi_ctrlr->default_pdu_hdr[ulp_num].id;
1722 doorbell_offset = phwi_ctrlr->default_pdu_hdr[ulp_num].
1723 doorbell_offset;
1724 } else {
1725 pasync_sge = pasync_ctx->async_data.ring_base;
1726 pi = pasync_ctx->async_data.pi;
1727 ring_id = phwi_ctrlr->default_pdu_data[ulp_num].id;
1728 doorbell_offset = phwi_ctrlr->default_pdu_data[ulp_num].
1729 doorbell_offset;
1730 }
1731
1732 for (prod = 0; prod < nbuf; prod++) {
1733 if (header)
1734 pasync_handle = pasync_ctx->async_entry[pi].header;
1735 else
1736 pasync_handle = pasync_ctx->async_entry[pi].data;
1737 WARN_ON(pasync_handle->is_header != header);
1738 WARN_ON(pasync_handle->index != pi);
1739 /* setup the ring only once */
1740 if (nbuf == pasync_ctx->num_entries) {
1741 /* note hi is lo */
1742 pasync_sge[pi].hi = pasync_handle->pa.u.a32.address_lo;
1743 pasync_sge[pi].lo = pasync_handle->pa.u.a32.address_hi;
1744 }
1745 if (++pi == pasync_ctx->num_entries)
1746 pi = 0;
1747 }
1748
1749 if (header)
1750 pasync_ctx->async_header.pi = pi;
1751 else
1752 pasync_ctx->async_data.pi = pi;
1753
1754 doorbell |= ring_id & DB_DEF_PDU_RING_ID_MASK;
1755 doorbell |= 1 << DB_DEF_PDU_REARM_SHIFT;
1756 doorbell |= 0 << DB_DEF_PDU_EVENT_SHIFT;
1757 doorbell |= (prod & DB_DEF_PDU_CQPROC_MASK) << DB_DEF_PDU_CQPROC_SHIFT;
1758 iowrite32(doorbell, phba->db_va + doorbell_offset);
1759 }
1760
1761 static void
beiscsi_hdq_process_compl(struct beiscsi_conn * beiscsi_conn,struct i_t_dpdu_cqe * pdpdu_cqe)1762 beiscsi_hdq_process_compl(struct beiscsi_conn *beiscsi_conn,
1763 struct i_t_dpdu_cqe *pdpdu_cqe)
1764 {
1765 struct beiscsi_hba *phba = beiscsi_conn->phba;
1766 struct hd_async_handle *pasync_handle = NULL;
1767 struct hd_async_context *pasync_ctx;
1768 struct hwi_controller *phwi_ctrlr;
1769 u8 ulp_num, consumed, header = 0;
1770 u16 cid_cri;
1771
1772 phwi_ctrlr = phba->phwi_ctrlr;
1773 cid_cri = BE_GET_CRI_FROM_CID(beiscsi_conn->beiscsi_conn_cid);
1774 ulp_num = BEISCSI_GET_ULP_FROM_CRI(phwi_ctrlr, cid_cri);
1775 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr, ulp_num);
1776 pasync_handle = beiscsi_hdl_get_handle(beiscsi_conn, pasync_ctx,
1777 pdpdu_cqe, &header);
1778 if (is_chip_be2_be3r(phba))
1779 consumed = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1780 num_cons, pdpdu_cqe);
1781 else
1782 consumed = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1783 num_cons, pdpdu_cqe);
1784 if (pasync_handle)
1785 beiscsi_hdl_gather_pdu(beiscsi_conn, pasync_ctx, pasync_handle);
1786 /* num_cons indicates number of 8 RQEs consumed */
1787 if (consumed)
1788 beiscsi_hdq_post_handles(phba, header, ulp_num, 8 * consumed);
1789 }
1790
beiscsi_process_mcc_cq(struct beiscsi_hba * phba)1791 void beiscsi_process_mcc_cq(struct beiscsi_hba *phba)
1792 {
1793 struct be_queue_info *mcc_cq;
1794 struct be_mcc_compl *mcc_compl;
1795 unsigned int num_processed = 0;
1796
1797 mcc_cq = &phba->ctrl.mcc_obj.cq;
1798 mcc_compl = queue_tail_node(mcc_cq);
1799 mcc_compl->flags = le32_to_cpu(mcc_compl->flags);
1800 while (mcc_compl->flags & CQE_FLAGS_VALID_MASK) {
1801 if (beiscsi_hba_in_error(phba))
1802 return;
1803
1804 if (num_processed >= 32) {
1805 hwi_ring_cq_db(phba, mcc_cq->id,
1806 num_processed, 0);
1807 num_processed = 0;
1808 }
1809 if (mcc_compl->flags & CQE_FLAGS_ASYNC_MASK) {
1810 beiscsi_process_async_event(phba, mcc_compl);
1811 } else if (mcc_compl->flags & CQE_FLAGS_COMPLETED_MASK) {
1812 beiscsi_process_mcc_compl(&phba->ctrl, mcc_compl);
1813 }
1814
1815 mcc_compl->flags = 0;
1816 queue_tail_inc(mcc_cq);
1817 mcc_compl = queue_tail_node(mcc_cq);
1818 mcc_compl->flags = le32_to_cpu(mcc_compl->flags);
1819 num_processed++;
1820 }
1821
1822 if (num_processed > 0)
1823 hwi_ring_cq_db(phba, mcc_cq->id, num_processed, 1);
1824 }
1825
beiscsi_mcc_work(struct work_struct * work)1826 static void beiscsi_mcc_work(struct work_struct *work)
1827 {
1828 struct be_eq_obj *pbe_eq;
1829 struct beiscsi_hba *phba;
1830
1831 pbe_eq = container_of(work, struct be_eq_obj, mcc_work);
1832 phba = pbe_eq->phba;
1833 beiscsi_process_mcc_cq(phba);
1834 /* rearm EQ for further interrupts */
1835 if (!beiscsi_hba_in_error(phba))
1836 hwi_ring_eq_db(phba, pbe_eq->q.id, 0, 0, 1, 1);
1837 }
1838
1839 /**
1840 * beiscsi_process_cq()- Process the Completion Queue
1841 * @pbe_eq: Event Q on which the Completion has come
1842 * @budget: Max number of events to processed
1843 *
1844 * return
1845 * Number of Completion Entries processed.
1846 **/
beiscsi_process_cq(struct be_eq_obj * pbe_eq,int budget)1847 unsigned int beiscsi_process_cq(struct be_eq_obj *pbe_eq, int budget)
1848 {
1849 struct be_queue_info *cq;
1850 struct sol_cqe *sol;
1851 unsigned int total = 0;
1852 unsigned int num_processed = 0;
1853 unsigned short code = 0, cid = 0;
1854 uint16_t cri_index = 0;
1855 struct beiscsi_conn *beiscsi_conn;
1856 struct beiscsi_endpoint *beiscsi_ep;
1857 struct iscsi_endpoint *ep;
1858 struct beiscsi_hba *phba;
1859
1860 cq = pbe_eq->cq;
1861 sol = queue_tail_node(cq);
1862 phba = pbe_eq->phba;
1863
1864 while (sol->dw[offsetof(struct amap_sol_cqe, valid) / 32] &
1865 CQE_VALID_MASK) {
1866 if (beiscsi_hba_in_error(phba))
1867 return 0;
1868
1869 be_dws_le_to_cpu(sol, sizeof(struct sol_cqe));
1870
1871 code = (sol->dw[offsetof(struct amap_sol_cqe, code) / 32] &
1872 CQE_CODE_MASK);
1873
1874 /* Get the CID */
1875 if (is_chip_be2_be3r(phba)) {
1876 cid = AMAP_GET_BITS(struct amap_sol_cqe, cid, sol);
1877 } else {
1878 if ((code == DRIVERMSG_NOTIFY) ||
1879 (code == UNSOL_HDR_NOTIFY) ||
1880 (code == UNSOL_DATA_NOTIFY))
1881 cid = AMAP_GET_BITS(
1882 struct amap_i_t_dpdu_cqe_v2,
1883 cid, sol);
1884 else
1885 cid = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1886 cid, sol);
1887 }
1888
1889 cri_index = BE_GET_CRI_FROM_CID(cid);
1890 ep = phba->ep_array[cri_index];
1891
1892 if (ep == NULL) {
1893 /* connection has already been freed
1894 * just move on to next one
1895 */
1896 beiscsi_log(phba, KERN_WARNING,
1897 BEISCSI_LOG_INIT,
1898 "BM_%d : proc cqe of disconn ep: cid %d\n",
1899 cid);
1900 goto proc_next_cqe;
1901 }
1902
1903 beiscsi_ep = ep->dd_data;
1904 beiscsi_conn = beiscsi_ep->conn;
1905
1906 /* replenish cq */
1907 if (num_processed == 32) {
1908 hwi_ring_cq_db(phba, cq->id, 32, 0);
1909 num_processed = 0;
1910 }
1911 total++;
1912
1913 switch (code) {
1914 case SOL_CMD_COMPLETE:
1915 hwi_complete_cmd(beiscsi_conn, phba, sol);
1916 break;
1917 case DRIVERMSG_NOTIFY:
1918 beiscsi_log(phba, KERN_INFO,
1919 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1920 "BM_%d : Received %s[%d] on CID : %d\n",
1921 cqe_desc[code], code, cid);
1922
1923 hwi_complete_drvr_msgs(beiscsi_conn, phba, sol);
1924 break;
1925 case UNSOL_HDR_NOTIFY:
1926 beiscsi_log(phba, KERN_INFO,
1927 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1928 "BM_%d : Received %s[%d] on CID : %d\n",
1929 cqe_desc[code], code, cid);
1930
1931 spin_lock_bh(&phba->async_pdu_lock);
1932 beiscsi_hdq_process_compl(beiscsi_conn,
1933 (struct i_t_dpdu_cqe *)sol);
1934 spin_unlock_bh(&phba->async_pdu_lock);
1935 break;
1936 case UNSOL_DATA_NOTIFY:
1937 beiscsi_log(phba, KERN_INFO,
1938 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1939 "BM_%d : Received %s[%d] on CID : %d\n",
1940 cqe_desc[code], code, cid);
1941
1942 spin_lock_bh(&phba->async_pdu_lock);
1943 beiscsi_hdq_process_compl(beiscsi_conn,
1944 (struct i_t_dpdu_cqe *)sol);
1945 spin_unlock_bh(&phba->async_pdu_lock);
1946 break;
1947 case CXN_INVALIDATE_INDEX_NOTIFY:
1948 case CMD_INVALIDATED_NOTIFY:
1949 case CXN_INVALIDATE_NOTIFY:
1950 beiscsi_log(phba, KERN_ERR,
1951 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1952 "BM_%d : Ignoring %s[%d] on CID : %d\n",
1953 cqe_desc[code], code, cid);
1954 break;
1955 case CXN_KILLED_HDR_DIGEST_ERR:
1956 case SOL_CMD_KILLED_DATA_DIGEST_ERR:
1957 beiscsi_log(phba, KERN_ERR,
1958 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1959 "BM_%d : Cmd Notification %s[%d] on CID : %d\n",
1960 cqe_desc[code], code, cid);
1961 break;
1962 case CMD_KILLED_INVALID_STATSN_RCVD:
1963 case CMD_KILLED_INVALID_R2T_RCVD:
1964 case CMD_CXN_KILLED_LUN_INVALID:
1965 case CMD_CXN_KILLED_ICD_INVALID:
1966 case CMD_CXN_KILLED_ITT_INVALID:
1967 case CMD_CXN_KILLED_SEQ_OUTOFORDER:
1968 case CMD_CXN_KILLED_INVALID_DATASN_RCVD:
1969 beiscsi_log(phba, KERN_ERR,
1970 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1971 "BM_%d : Cmd Notification %s[%d] on CID : %d\n",
1972 cqe_desc[code], code, cid);
1973 break;
1974 case UNSOL_DATA_DIGEST_ERROR_NOTIFY:
1975 beiscsi_log(phba, KERN_ERR,
1976 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1977 "BM_%d : Dropping %s[%d] on DPDU ring on CID : %d\n",
1978 cqe_desc[code], code, cid);
1979 spin_lock_bh(&phba->async_pdu_lock);
1980 /* driver consumes the entry and drops the contents */
1981 beiscsi_hdq_process_compl(beiscsi_conn,
1982 (struct i_t_dpdu_cqe *)sol);
1983 spin_unlock_bh(&phba->async_pdu_lock);
1984 break;
1985 case CXN_KILLED_PDU_SIZE_EXCEEDS_DSL:
1986 case CXN_KILLED_BURST_LEN_MISMATCH:
1987 case CXN_KILLED_AHS_RCVD:
1988 case CXN_KILLED_UNKNOWN_HDR:
1989 case CXN_KILLED_STALE_ITT_TTT_RCVD:
1990 case CXN_KILLED_INVALID_ITT_TTT_RCVD:
1991 case CXN_KILLED_TIMED_OUT:
1992 case CXN_KILLED_FIN_RCVD:
1993 case CXN_KILLED_RST_SENT:
1994 case CXN_KILLED_RST_RCVD:
1995 case CXN_KILLED_BAD_UNSOL_PDU_RCVD:
1996 case CXN_KILLED_BAD_WRB_INDEX_ERROR:
1997 case CXN_KILLED_OVER_RUN_RESIDUAL:
1998 case CXN_KILLED_UNDER_RUN_RESIDUAL:
1999 case CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN:
2000 beiscsi_log(phba, KERN_ERR,
2001 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
2002 "BM_%d : Event %s[%d] received on CID : %d\n",
2003 cqe_desc[code], code, cid);
2004 if (beiscsi_conn)
2005 iscsi_conn_failure(beiscsi_conn->conn,
2006 ISCSI_ERR_CONN_FAILED);
2007 break;
2008 default:
2009 beiscsi_log(phba, KERN_ERR,
2010 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
2011 "BM_%d : Invalid CQE Event Received Code : %d CID 0x%x...\n",
2012 code, cid);
2013 break;
2014 }
2015
2016 proc_next_cqe:
2017 AMAP_SET_BITS(struct amap_sol_cqe, valid, sol, 0);
2018 queue_tail_inc(cq);
2019 sol = queue_tail_node(cq);
2020 num_processed++;
2021 if (total == budget)
2022 break;
2023 }
2024
2025 hwi_ring_cq_db(phba, cq->id, num_processed, 1);
2026 return total;
2027 }
2028
be_iopoll(struct irq_poll * iop,int budget)2029 static int be_iopoll(struct irq_poll *iop, int budget)
2030 {
2031 unsigned int ret, io_events;
2032 struct beiscsi_hba *phba;
2033 struct be_eq_obj *pbe_eq;
2034 struct be_eq_entry *eqe = NULL;
2035 struct be_queue_info *eq;
2036
2037 pbe_eq = container_of(iop, struct be_eq_obj, iopoll);
2038 phba = pbe_eq->phba;
2039 if (beiscsi_hba_in_error(phba)) {
2040 irq_poll_complete(iop);
2041 return 0;
2042 }
2043
2044 io_events = 0;
2045 eq = &pbe_eq->q;
2046 eqe = queue_tail_node(eq);
2047 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32] &
2048 EQE_VALID_MASK) {
2049 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
2050 queue_tail_inc(eq);
2051 eqe = queue_tail_node(eq);
2052 io_events++;
2053 }
2054 hwi_ring_eq_db(phba, eq->id, 1, io_events, 0, 1);
2055
2056 ret = beiscsi_process_cq(pbe_eq, budget);
2057 pbe_eq->cq_count += ret;
2058 if (ret < budget) {
2059 irq_poll_complete(iop);
2060 beiscsi_log(phba, KERN_INFO,
2061 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
2062 "BM_%d : rearm pbe_eq->q.id =%d ret %d\n",
2063 pbe_eq->q.id, ret);
2064 if (!beiscsi_hba_in_error(phba))
2065 hwi_ring_eq_db(phba, pbe_eq->q.id, 0, 0, 1, 1);
2066 }
2067 return ret;
2068 }
2069
2070 static void
hwi_write_sgl_v2(struct iscsi_wrb * pwrb,struct scatterlist * sg,unsigned int num_sg,struct beiscsi_io_task * io_task)2071 hwi_write_sgl_v2(struct iscsi_wrb *pwrb, struct scatterlist *sg,
2072 unsigned int num_sg, struct beiscsi_io_task *io_task)
2073 {
2074 struct iscsi_sge *psgl;
2075 unsigned int sg_len, index;
2076 unsigned int sge_len = 0;
2077 unsigned long long addr;
2078 struct scatterlist *l_sg;
2079 unsigned int offset;
2080
2081 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, iscsi_bhs_addr_lo, pwrb,
2082 io_task->bhs_pa.u.a32.address_lo);
2083 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, iscsi_bhs_addr_hi, pwrb,
2084 io_task->bhs_pa.u.a32.address_hi);
2085
2086 l_sg = sg;
2087 for (index = 0; (index < num_sg) && (index < 2); index++,
2088 sg = sg_next(sg)) {
2089 if (index == 0) {
2090 sg_len = sg_dma_len(sg);
2091 addr = (u64) sg_dma_address(sg);
2092 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2093 sge0_addr_lo, pwrb,
2094 lower_32_bits(addr));
2095 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2096 sge0_addr_hi, pwrb,
2097 upper_32_bits(addr));
2098 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2099 sge0_len, pwrb,
2100 sg_len);
2101 sge_len = sg_len;
2102 } else {
2103 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_r2t_offset,
2104 pwrb, sge_len);
2105 sg_len = sg_dma_len(sg);
2106 addr = (u64) sg_dma_address(sg);
2107 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2108 sge1_addr_lo, pwrb,
2109 lower_32_bits(addr));
2110 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2111 sge1_addr_hi, pwrb,
2112 upper_32_bits(addr));
2113 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2114 sge1_len, pwrb,
2115 sg_len);
2116 }
2117 }
2118 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
2119 memset(psgl, 0, sizeof(*psgl) * BE2_SGE);
2120
2121 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len - 2);
2122
2123 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2124 io_task->bhs_pa.u.a32.address_hi);
2125 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2126 io_task->bhs_pa.u.a32.address_lo);
2127
2128 if (num_sg == 1) {
2129 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb,
2130 1);
2131 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb,
2132 0);
2133 } else if (num_sg == 2) {
2134 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb,
2135 0);
2136 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb,
2137 1);
2138 } else {
2139 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb,
2140 0);
2141 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb,
2142 0);
2143 }
2144
2145 sg = l_sg;
2146 psgl++;
2147 psgl++;
2148 offset = 0;
2149 for (index = 0; index < num_sg; index++, sg = sg_next(sg), psgl++) {
2150 sg_len = sg_dma_len(sg);
2151 addr = (u64) sg_dma_address(sg);
2152 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2153 lower_32_bits(addr));
2154 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2155 upper_32_bits(addr));
2156 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, sg_len);
2157 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, offset);
2158 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
2159 offset += sg_len;
2160 }
2161 psgl--;
2162 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
2163 }
2164
2165 static void
hwi_write_sgl(struct iscsi_wrb * pwrb,struct scatterlist * sg,unsigned int num_sg,struct beiscsi_io_task * io_task)2166 hwi_write_sgl(struct iscsi_wrb *pwrb, struct scatterlist *sg,
2167 unsigned int num_sg, struct beiscsi_io_task *io_task)
2168 {
2169 struct iscsi_sge *psgl;
2170 unsigned int sg_len, index;
2171 unsigned int sge_len = 0;
2172 unsigned long long addr;
2173 struct scatterlist *l_sg;
2174 unsigned int offset;
2175
2176 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb,
2177 io_task->bhs_pa.u.a32.address_lo);
2178 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb,
2179 io_task->bhs_pa.u.a32.address_hi);
2180
2181 l_sg = sg;
2182 for (index = 0; (index < num_sg) && (index < 2); index++,
2183 sg = sg_next(sg)) {
2184 if (index == 0) {
2185 sg_len = sg_dma_len(sg);
2186 addr = (u64) sg_dma_address(sg);
2187 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
2188 ((u32)(addr & 0xFFFFFFFF)));
2189 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
2190 ((u32)(addr >> 32)));
2191 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
2192 sg_len);
2193 sge_len = sg_len;
2194 } else {
2195 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_r2t_offset,
2196 pwrb, sge_len);
2197 sg_len = sg_dma_len(sg);
2198 addr = (u64) sg_dma_address(sg);
2199 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_lo, pwrb,
2200 ((u32)(addr & 0xFFFFFFFF)));
2201 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_hi, pwrb,
2202 ((u32)(addr >> 32)));
2203 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_len, pwrb,
2204 sg_len);
2205 }
2206 }
2207 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
2208 memset(psgl, 0, sizeof(*psgl) * BE2_SGE);
2209
2210 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len - 2);
2211
2212 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2213 io_task->bhs_pa.u.a32.address_hi);
2214 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2215 io_task->bhs_pa.u.a32.address_lo);
2216
2217 if (num_sg == 1) {
2218 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
2219 1);
2220 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
2221 0);
2222 } else if (num_sg == 2) {
2223 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
2224 0);
2225 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
2226 1);
2227 } else {
2228 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
2229 0);
2230 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
2231 0);
2232 }
2233 sg = l_sg;
2234 psgl++;
2235 psgl++;
2236 offset = 0;
2237 for (index = 0; index < num_sg; index++, sg = sg_next(sg), psgl++) {
2238 sg_len = sg_dma_len(sg);
2239 addr = (u64) sg_dma_address(sg);
2240 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2241 (addr & 0xFFFFFFFF));
2242 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2243 (addr >> 32));
2244 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, sg_len);
2245 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, offset);
2246 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
2247 offset += sg_len;
2248 }
2249 psgl--;
2250 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
2251 }
2252
2253 /**
2254 * hwi_write_buffer()- Populate the WRB with task info
2255 * @pwrb: ptr to the WRB entry
2256 * @task: iscsi task which is to be executed
2257 **/
hwi_write_buffer(struct iscsi_wrb * pwrb,struct iscsi_task * task)2258 static int hwi_write_buffer(struct iscsi_wrb *pwrb, struct iscsi_task *task)
2259 {
2260 struct iscsi_sge *psgl;
2261 struct beiscsi_io_task *io_task = task->dd_data;
2262 struct beiscsi_conn *beiscsi_conn = io_task->conn;
2263 struct beiscsi_hba *phba = beiscsi_conn->phba;
2264 uint8_t dsp_value = 0;
2265
2266 io_task->bhs_len = sizeof(struct be_nonio_bhs) - 2;
2267 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb,
2268 io_task->bhs_pa.u.a32.address_lo);
2269 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb,
2270 io_task->bhs_pa.u.a32.address_hi);
2271
2272 if (task->data) {
2273
2274 /* Check for the data_count */
2275 dsp_value = (task->data_count) ? 1 : 0;
2276
2277 if (is_chip_be2_be3r(phba))
2278 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp,
2279 pwrb, dsp_value);
2280 else
2281 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp,
2282 pwrb, dsp_value);
2283
2284 /* Map addr only if there is data_count */
2285 if (dsp_value) {
2286 io_task->mtask_addr = dma_map_single(&phba->pcidev->dev,
2287 task->data,
2288 task->data_count,
2289 DMA_TO_DEVICE);
2290 if (dma_mapping_error(&phba->pcidev->dev,
2291 io_task->mtask_addr))
2292 return -ENOMEM;
2293 io_task->mtask_data_count = task->data_count;
2294 } else
2295 io_task->mtask_addr = 0;
2296
2297 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
2298 lower_32_bits(io_task->mtask_addr));
2299 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
2300 upper_32_bits(io_task->mtask_addr));
2301 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
2302 task->data_count);
2303
2304 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb, 1);
2305 } else {
2306 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0);
2307 io_task->mtask_addr = 0;
2308 }
2309
2310 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
2311
2312 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len);
2313
2314 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2315 io_task->bhs_pa.u.a32.address_hi);
2316 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2317 io_task->bhs_pa.u.a32.address_lo);
2318 if (task->data) {
2319 psgl++;
2320 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 0);
2321 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 0);
2322 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0);
2323 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, 0);
2324 AMAP_SET_BITS(struct amap_iscsi_sge, rsvd0, psgl, 0);
2325 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
2326
2327 psgl++;
2328 if (task->data) {
2329 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2330 lower_32_bits(io_task->mtask_addr));
2331 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2332 upper_32_bits(io_task->mtask_addr));
2333 }
2334 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0x106);
2335 }
2336 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
2337 return 0;
2338 }
2339
2340 /**
2341 * beiscsi_find_mem_req()- Find mem needed
2342 * @phba: ptr to HBA struct
2343 **/
beiscsi_find_mem_req(struct beiscsi_hba * phba)2344 static void beiscsi_find_mem_req(struct beiscsi_hba *phba)
2345 {
2346 uint8_t mem_descr_index, ulp_num;
2347 unsigned int num_async_pdu_buf_pages;
2348 unsigned int num_async_pdu_data_pages, wrb_sz_per_cxn;
2349 unsigned int num_async_pdu_buf_sgl_pages, num_async_pdu_data_sgl_pages;
2350
2351 phba->params.hwi_ws_sz = sizeof(struct hwi_controller);
2352
2353 phba->mem_req[ISCSI_MEM_GLOBAL_HEADER] = 2 *
2354 BE_ISCSI_PDU_HEADER_SIZE;
2355 phba->mem_req[HWI_MEM_ADDN_CONTEXT] =
2356 sizeof(struct hwi_context_memory);
2357
2358
2359 phba->mem_req[HWI_MEM_WRB] = sizeof(struct iscsi_wrb)
2360 * (phba->params.wrbs_per_cxn)
2361 * phba->params.cxns_per_ctrl;
2362 wrb_sz_per_cxn = sizeof(struct wrb_handle) *
2363 (phba->params.wrbs_per_cxn);
2364 phba->mem_req[HWI_MEM_WRBH] = roundup_pow_of_two((wrb_sz_per_cxn) *
2365 phba->params.cxns_per_ctrl);
2366
2367 phba->mem_req[HWI_MEM_SGLH] = sizeof(struct sgl_handle) *
2368 phba->params.icds_per_ctrl;
2369 phba->mem_req[HWI_MEM_SGE] = sizeof(struct iscsi_sge) *
2370 phba->params.num_sge_per_io * phba->params.icds_per_ctrl;
2371 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
2372 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
2373
2374 num_async_pdu_buf_sgl_pages =
2375 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
2376 phba, ulp_num) *
2377 sizeof(struct phys_addr));
2378
2379 num_async_pdu_buf_pages =
2380 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
2381 phba, ulp_num) *
2382 phba->params.defpdu_hdr_sz);
2383
2384 num_async_pdu_data_pages =
2385 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
2386 phba, ulp_num) *
2387 phba->params.defpdu_data_sz);
2388
2389 num_async_pdu_data_sgl_pages =
2390 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
2391 phba, ulp_num) *
2392 sizeof(struct phys_addr));
2393
2394 mem_descr_index = (HWI_MEM_TEMPLATE_HDR_ULP0 +
2395 (ulp_num * MEM_DESCR_OFFSET));
2396 phba->mem_req[mem_descr_index] =
2397 BEISCSI_GET_CID_COUNT(phba, ulp_num) *
2398 BEISCSI_TEMPLATE_HDR_PER_CXN_SIZE;
2399
2400 mem_descr_index = (HWI_MEM_ASYNC_HEADER_BUF_ULP0 +
2401 (ulp_num * MEM_DESCR_OFFSET));
2402 phba->mem_req[mem_descr_index] =
2403 num_async_pdu_buf_pages *
2404 PAGE_SIZE;
2405
2406 mem_descr_index = (HWI_MEM_ASYNC_DATA_BUF_ULP0 +
2407 (ulp_num * MEM_DESCR_OFFSET));
2408 phba->mem_req[mem_descr_index] =
2409 num_async_pdu_data_pages *
2410 PAGE_SIZE;
2411
2412 mem_descr_index = (HWI_MEM_ASYNC_HEADER_RING_ULP0 +
2413 (ulp_num * MEM_DESCR_OFFSET));
2414 phba->mem_req[mem_descr_index] =
2415 num_async_pdu_buf_sgl_pages *
2416 PAGE_SIZE;
2417
2418 mem_descr_index = (HWI_MEM_ASYNC_DATA_RING_ULP0 +
2419 (ulp_num * MEM_DESCR_OFFSET));
2420 phba->mem_req[mem_descr_index] =
2421 num_async_pdu_data_sgl_pages *
2422 PAGE_SIZE;
2423
2424 mem_descr_index = (HWI_MEM_ASYNC_HEADER_HANDLE_ULP0 +
2425 (ulp_num * MEM_DESCR_OFFSET));
2426 phba->mem_req[mem_descr_index] =
2427 BEISCSI_ASYNC_HDQ_SIZE(phba, ulp_num) *
2428 sizeof(struct hd_async_handle);
2429
2430 mem_descr_index = (HWI_MEM_ASYNC_DATA_HANDLE_ULP0 +
2431 (ulp_num * MEM_DESCR_OFFSET));
2432 phba->mem_req[mem_descr_index] =
2433 BEISCSI_ASYNC_HDQ_SIZE(phba, ulp_num) *
2434 sizeof(struct hd_async_handle);
2435
2436 mem_descr_index = (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0 +
2437 (ulp_num * MEM_DESCR_OFFSET));
2438 phba->mem_req[mem_descr_index] =
2439 sizeof(struct hd_async_context) +
2440 (BEISCSI_ASYNC_HDQ_SIZE(phba, ulp_num) *
2441 sizeof(struct hd_async_entry));
2442 }
2443 }
2444 }
2445
beiscsi_alloc_mem(struct beiscsi_hba * phba)2446 static int beiscsi_alloc_mem(struct beiscsi_hba *phba)
2447 {
2448 dma_addr_t bus_add;
2449 struct hwi_controller *phwi_ctrlr;
2450 struct be_mem_descriptor *mem_descr;
2451 struct mem_array *mem_arr, *mem_arr_orig;
2452 unsigned int i, j, alloc_size, curr_alloc_size;
2453
2454 phba->phwi_ctrlr = kzalloc(phba->params.hwi_ws_sz, GFP_KERNEL);
2455 if (!phba->phwi_ctrlr)
2456 return -ENOMEM;
2457
2458 /* Allocate memory for wrb_context */
2459 phwi_ctrlr = phba->phwi_ctrlr;
2460 phwi_ctrlr->wrb_context = kcalloc(phba->params.cxns_per_ctrl,
2461 sizeof(struct hwi_wrb_context),
2462 GFP_KERNEL);
2463 if (!phwi_ctrlr->wrb_context) {
2464 kfree(phba->phwi_ctrlr);
2465 return -ENOMEM;
2466 }
2467
2468 phba->init_mem = kcalloc(SE_MEM_MAX, sizeof(*mem_descr),
2469 GFP_KERNEL);
2470 if (!phba->init_mem) {
2471 kfree(phwi_ctrlr->wrb_context);
2472 kfree(phba->phwi_ctrlr);
2473 return -ENOMEM;
2474 }
2475
2476 mem_arr_orig = kmalloc_array(BEISCSI_MAX_FRAGS_INIT,
2477 sizeof(*mem_arr_orig),
2478 GFP_KERNEL);
2479 if (!mem_arr_orig) {
2480 kfree(phba->init_mem);
2481 kfree(phwi_ctrlr->wrb_context);
2482 kfree(phba->phwi_ctrlr);
2483 return -ENOMEM;
2484 }
2485
2486 mem_descr = phba->init_mem;
2487 for (i = 0; i < SE_MEM_MAX; i++) {
2488 if (!phba->mem_req[i]) {
2489 mem_descr->mem_array = NULL;
2490 mem_descr++;
2491 continue;
2492 }
2493
2494 j = 0;
2495 mem_arr = mem_arr_orig;
2496 alloc_size = phba->mem_req[i];
2497 memset(mem_arr, 0, sizeof(struct mem_array) *
2498 BEISCSI_MAX_FRAGS_INIT);
2499 curr_alloc_size = min(be_max_phys_size * 1024, alloc_size);
2500 do {
2501 mem_arr->virtual_address =
2502 dma_alloc_coherent(&phba->pcidev->dev,
2503 curr_alloc_size, &bus_add, GFP_KERNEL);
2504 if (!mem_arr->virtual_address) {
2505 if (curr_alloc_size <= BE_MIN_MEM_SIZE)
2506 goto free_mem;
2507 if (curr_alloc_size -
2508 rounddown_pow_of_two(curr_alloc_size))
2509 curr_alloc_size = rounddown_pow_of_two
2510 (curr_alloc_size);
2511 else
2512 curr_alloc_size = curr_alloc_size / 2;
2513 } else {
2514 mem_arr->bus_address.u.
2515 a64.address = (__u64) bus_add;
2516 mem_arr->size = curr_alloc_size;
2517 alloc_size -= curr_alloc_size;
2518 curr_alloc_size = min(be_max_phys_size *
2519 1024, alloc_size);
2520 j++;
2521 mem_arr++;
2522 }
2523 } while (alloc_size);
2524 mem_descr->num_elements = j;
2525 mem_descr->size_in_bytes = phba->mem_req[i];
2526 mem_descr->mem_array = kmalloc_array(j, sizeof(*mem_arr),
2527 GFP_KERNEL);
2528 if (!mem_descr->mem_array)
2529 goto free_mem;
2530
2531 memcpy(mem_descr->mem_array, mem_arr_orig,
2532 sizeof(struct mem_array) * j);
2533 mem_descr++;
2534 }
2535 kfree(mem_arr_orig);
2536 return 0;
2537 free_mem:
2538 mem_descr->num_elements = j;
2539 while ((i) || (j)) {
2540 for (j = mem_descr->num_elements; j > 0; j--) {
2541 dma_free_coherent(&phba->pcidev->dev,
2542 mem_descr->mem_array[j - 1].size,
2543 mem_descr->mem_array[j - 1].
2544 virtual_address,
2545 (unsigned long)mem_descr->
2546 mem_array[j - 1].
2547 bus_address.u.a64.address);
2548 }
2549 if (i) {
2550 i--;
2551 kfree(mem_descr->mem_array);
2552 mem_descr--;
2553 }
2554 }
2555 kfree(mem_arr_orig);
2556 kfree(phba->init_mem);
2557 kfree(phba->phwi_ctrlr->wrb_context);
2558 kfree(phba->phwi_ctrlr);
2559 return -ENOMEM;
2560 }
2561
beiscsi_get_memory(struct beiscsi_hba * phba)2562 static int beiscsi_get_memory(struct beiscsi_hba *phba)
2563 {
2564 beiscsi_find_mem_req(phba);
2565 return beiscsi_alloc_mem(phba);
2566 }
2567
iscsi_init_global_templates(struct beiscsi_hba * phba)2568 static void iscsi_init_global_templates(struct beiscsi_hba *phba)
2569 {
2570 struct pdu_data_out *pdata_out;
2571 struct pdu_nop_out *pnop_out;
2572 struct be_mem_descriptor *mem_descr;
2573
2574 mem_descr = phba->init_mem;
2575 mem_descr += ISCSI_MEM_GLOBAL_HEADER;
2576 pdata_out =
2577 (struct pdu_data_out *)mem_descr->mem_array[0].virtual_address;
2578 memset(pdata_out, 0, BE_ISCSI_PDU_HEADER_SIZE);
2579
2580 AMAP_SET_BITS(struct amap_pdu_data_out, opcode, pdata_out,
2581 IIOC_SCSI_DATA);
2582
2583 pnop_out =
2584 (struct pdu_nop_out *)((unsigned char *)mem_descr->mem_array[0].
2585 virtual_address + BE_ISCSI_PDU_HEADER_SIZE);
2586
2587 memset(pnop_out, 0, BE_ISCSI_PDU_HEADER_SIZE);
2588 AMAP_SET_BITS(struct amap_pdu_nop_out, ttt, pnop_out, 0xFFFFFFFF);
2589 AMAP_SET_BITS(struct amap_pdu_nop_out, f_bit, pnop_out, 1);
2590 AMAP_SET_BITS(struct amap_pdu_nop_out, i_bit, pnop_out, 0);
2591 }
2592
beiscsi_init_wrb_handle(struct beiscsi_hba * phba)2593 static int beiscsi_init_wrb_handle(struct beiscsi_hba *phba)
2594 {
2595 struct be_mem_descriptor *mem_descr_wrbh, *mem_descr_wrb;
2596 struct hwi_context_memory *phwi_ctxt;
2597 struct wrb_handle *pwrb_handle = NULL;
2598 struct hwi_controller *phwi_ctrlr;
2599 struct hwi_wrb_context *pwrb_context;
2600 struct iscsi_wrb *pwrb = NULL;
2601 unsigned int num_cxn_wrbh = 0;
2602 unsigned int num_cxn_wrb = 0, j, idx = 0, index;
2603
2604 mem_descr_wrbh = phba->init_mem;
2605 mem_descr_wrbh += HWI_MEM_WRBH;
2606
2607 mem_descr_wrb = phba->init_mem;
2608 mem_descr_wrb += HWI_MEM_WRB;
2609 phwi_ctrlr = phba->phwi_ctrlr;
2610
2611 /* Allocate memory for WRBQ */
2612 phwi_ctxt = phwi_ctrlr->phwi_ctxt;
2613 phwi_ctxt->be_wrbq = kcalloc(phba->params.cxns_per_ctrl,
2614 sizeof(struct be_queue_info),
2615 GFP_KERNEL);
2616 if (!phwi_ctxt->be_wrbq) {
2617 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
2618 "BM_%d : WRBQ Mem Alloc Failed\n");
2619 return -ENOMEM;
2620 }
2621
2622 for (index = 0; index < phba->params.cxns_per_ctrl; index++) {
2623 pwrb_context = &phwi_ctrlr->wrb_context[index];
2624 pwrb_context->pwrb_handle_base =
2625 kcalloc(phba->params.wrbs_per_cxn,
2626 sizeof(struct wrb_handle *),
2627 GFP_KERNEL);
2628 if (!pwrb_context->pwrb_handle_base) {
2629 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
2630 "BM_%d : Mem Alloc Failed. Failing to load\n");
2631 goto init_wrb_hndl_failed;
2632 }
2633 pwrb_context->pwrb_handle_basestd =
2634 kcalloc(phba->params.wrbs_per_cxn,
2635 sizeof(struct wrb_handle *),
2636 GFP_KERNEL);
2637 if (!pwrb_context->pwrb_handle_basestd) {
2638 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
2639 "BM_%d : Mem Alloc Failed. Failing to load\n");
2640 goto init_wrb_hndl_failed;
2641 }
2642 if (!num_cxn_wrbh) {
2643 pwrb_handle =
2644 mem_descr_wrbh->mem_array[idx].virtual_address;
2645 num_cxn_wrbh = ((mem_descr_wrbh->mem_array[idx].size) /
2646 ((sizeof(struct wrb_handle)) *
2647 phba->params.wrbs_per_cxn));
2648 idx++;
2649 }
2650 pwrb_context->alloc_index = 0;
2651 pwrb_context->wrb_handles_available = 0;
2652 pwrb_context->free_index = 0;
2653
2654 if (num_cxn_wrbh) {
2655 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2656 pwrb_context->pwrb_handle_base[j] = pwrb_handle;
2657 pwrb_context->pwrb_handle_basestd[j] =
2658 pwrb_handle;
2659 pwrb_context->wrb_handles_available++;
2660 pwrb_handle->wrb_index = j;
2661 pwrb_handle++;
2662 }
2663 num_cxn_wrbh--;
2664 }
2665 spin_lock_init(&pwrb_context->wrb_lock);
2666 }
2667 idx = 0;
2668 for (index = 0; index < phba->params.cxns_per_ctrl; index++) {
2669 pwrb_context = &phwi_ctrlr->wrb_context[index];
2670 if (!num_cxn_wrb) {
2671 pwrb = mem_descr_wrb->mem_array[idx].virtual_address;
2672 num_cxn_wrb = (mem_descr_wrb->mem_array[idx].size) /
2673 ((sizeof(struct iscsi_wrb) *
2674 phba->params.wrbs_per_cxn));
2675 idx++;
2676 }
2677
2678 if (num_cxn_wrb) {
2679 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2680 pwrb_handle = pwrb_context->pwrb_handle_base[j];
2681 pwrb_handle->pwrb = pwrb;
2682 pwrb++;
2683 }
2684 num_cxn_wrb--;
2685 }
2686 }
2687 return 0;
2688 init_wrb_hndl_failed:
2689 for (j = index; j > 0; j--) {
2690 pwrb_context = &phwi_ctrlr->wrb_context[j];
2691 kfree(pwrb_context->pwrb_handle_base);
2692 kfree(pwrb_context->pwrb_handle_basestd);
2693 }
2694 kfree(phwi_ctxt->be_wrbq);
2695 return -ENOMEM;
2696 }
2697
hwi_init_async_pdu_ctx(struct beiscsi_hba * phba)2698 static int hwi_init_async_pdu_ctx(struct beiscsi_hba *phba)
2699 {
2700 uint8_t ulp_num;
2701 struct hwi_controller *phwi_ctrlr;
2702 struct hba_parameters *p = &phba->params;
2703 struct hd_async_context *pasync_ctx;
2704 struct hd_async_handle *pasync_header_h, *pasync_data_h;
2705 unsigned int index, idx, num_per_mem, num_async_data;
2706 struct be_mem_descriptor *mem_descr;
2707
2708 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
2709 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
2710 /* get async_ctx for each ULP */
2711 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2712 mem_descr += (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0 +
2713 (ulp_num * MEM_DESCR_OFFSET));
2714
2715 phwi_ctrlr = phba->phwi_ctrlr;
2716 phwi_ctrlr->phwi_ctxt->pasync_ctx[ulp_num] =
2717 (struct hd_async_context *)
2718 mem_descr->mem_array[0].virtual_address;
2719
2720 pasync_ctx = phwi_ctrlr->phwi_ctxt->pasync_ctx[ulp_num];
2721 memset(pasync_ctx, 0, sizeof(*pasync_ctx));
2722
2723 pasync_ctx->async_entry =
2724 (struct hd_async_entry *)
2725 ((long unsigned int)pasync_ctx +
2726 sizeof(struct hd_async_context));
2727
2728 pasync_ctx->num_entries = BEISCSI_ASYNC_HDQ_SIZE(phba,
2729 ulp_num);
2730 /* setup header buffers */
2731 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2732 mem_descr += HWI_MEM_ASYNC_HEADER_BUF_ULP0 +
2733 (ulp_num * MEM_DESCR_OFFSET);
2734 if (mem_descr->mem_array[0].virtual_address) {
2735 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2736 "BM_%d : hwi_init_async_pdu_ctx"
2737 " HWI_MEM_ASYNC_HEADER_BUF_ULP%d va=%p\n",
2738 ulp_num,
2739 mem_descr->mem_array[0].
2740 virtual_address);
2741 } else
2742 beiscsi_log(phba, KERN_WARNING,
2743 BEISCSI_LOG_INIT,
2744 "BM_%d : No Virtual address for ULP : %d\n",
2745 ulp_num);
2746
2747 pasync_ctx->async_header.pi = 0;
2748 pasync_ctx->async_header.buffer_size = p->defpdu_hdr_sz;
2749 pasync_ctx->async_header.va_base =
2750 mem_descr->mem_array[0].virtual_address;
2751
2752 pasync_ctx->async_header.pa_base.u.a64.address =
2753 mem_descr->mem_array[0].
2754 bus_address.u.a64.address;
2755
2756 /* setup header buffer sgls */
2757 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2758 mem_descr += HWI_MEM_ASYNC_HEADER_RING_ULP0 +
2759 (ulp_num * MEM_DESCR_OFFSET);
2760 if (mem_descr->mem_array[0].virtual_address) {
2761 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2762 "BM_%d : hwi_init_async_pdu_ctx"
2763 " HWI_MEM_ASYNC_HEADER_RING_ULP%d va=%p\n",
2764 ulp_num,
2765 mem_descr->mem_array[0].
2766 virtual_address);
2767 } else
2768 beiscsi_log(phba, KERN_WARNING,
2769 BEISCSI_LOG_INIT,
2770 "BM_%d : No Virtual address for ULP : %d\n",
2771 ulp_num);
2772
2773 pasync_ctx->async_header.ring_base =
2774 mem_descr->mem_array[0].virtual_address;
2775
2776 /* setup header buffer handles */
2777 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2778 mem_descr += HWI_MEM_ASYNC_HEADER_HANDLE_ULP0 +
2779 (ulp_num * MEM_DESCR_OFFSET);
2780 if (mem_descr->mem_array[0].virtual_address) {
2781 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2782 "BM_%d : hwi_init_async_pdu_ctx"
2783 " HWI_MEM_ASYNC_HEADER_HANDLE_ULP%d va=%p\n",
2784 ulp_num,
2785 mem_descr->mem_array[0].
2786 virtual_address);
2787 } else
2788 beiscsi_log(phba, KERN_WARNING,
2789 BEISCSI_LOG_INIT,
2790 "BM_%d : No Virtual address for ULP : %d\n",
2791 ulp_num);
2792
2793 pasync_ctx->async_header.handle_base =
2794 mem_descr->mem_array[0].virtual_address;
2795
2796 /* setup data buffer sgls */
2797 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2798 mem_descr += HWI_MEM_ASYNC_DATA_RING_ULP0 +
2799 (ulp_num * MEM_DESCR_OFFSET);
2800 if (mem_descr->mem_array[0].virtual_address) {
2801 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2802 "BM_%d : hwi_init_async_pdu_ctx"
2803 " HWI_MEM_ASYNC_DATA_RING_ULP%d va=%p\n",
2804 ulp_num,
2805 mem_descr->mem_array[0].
2806 virtual_address);
2807 } else
2808 beiscsi_log(phba, KERN_WARNING,
2809 BEISCSI_LOG_INIT,
2810 "BM_%d : No Virtual address for ULP : %d\n",
2811 ulp_num);
2812
2813 pasync_ctx->async_data.ring_base =
2814 mem_descr->mem_array[0].virtual_address;
2815
2816 /* setup data buffer handles */
2817 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2818 mem_descr += HWI_MEM_ASYNC_DATA_HANDLE_ULP0 +
2819 (ulp_num * MEM_DESCR_OFFSET);
2820 if (!mem_descr->mem_array[0].virtual_address)
2821 beiscsi_log(phba, KERN_WARNING,
2822 BEISCSI_LOG_INIT,
2823 "BM_%d : No Virtual address for ULP : %d\n",
2824 ulp_num);
2825
2826 pasync_ctx->async_data.handle_base =
2827 mem_descr->mem_array[0].virtual_address;
2828
2829 pasync_header_h =
2830 (struct hd_async_handle *)
2831 pasync_ctx->async_header.handle_base;
2832 pasync_data_h =
2833 (struct hd_async_handle *)
2834 pasync_ctx->async_data.handle_base;
2835
2836 /* setup data buffers */
2837 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2838 mem_descr += HWI_MEM_ASYNC_DATA_BUF_ULP0 +
2839 (ulp_num * MEM_DESCR_OFFSET);
2840 if (mem_descr->mem_array[0].virtual_address) {
2841 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2842 "BM_%d : hwi_init_async_pdu_ctx"
2843 " HWI_MEM_ASYNC_DATA_BUF_ULP%d va=%p\n",
2844 ulp_num,
2845 mem_descr->mem_array[0].
2846 virtual_address);
2847 } else
2848 beiscsi_log(phba, KERN_WARNING,
2849 BEISCSI_LOG_INIT,
2850 "BM_%d : No Virtual address for ULP : %d\n",
2851 ulp_num);
2852
2853 idx = 0;
2854 pasync_ctx->async_data.pi = 0;
2855 pasync_ctx->async_data.buffer_size = p->defpdu_data_sz;
2856 pasync_ctx->async_data.va_base =
2857 mem_descr->mem_array[idx].virtual_address;
2858 pasync_ctx->async_data.pa_base.u.a64.address =
2859 mem_descr->mem_array[idx].
2860 bus_address.u.a64.address;
2861
2862 num_async_data = ((mem_descr->mem_array[idx].size) /
2863 phba->params.defpdu_data_sz);
2864 num_per_mem = 0;
2865
2866 for (index = 0; index < BEISCSI_ASYNC_HDQ_SIZE
2867 (phba, ulp_num); index++) {
2868 pasync_header_h->cri = -1;
2869 pasync_header_h->is_header = 1;
2870 pasync_header_h->index = index;
2871 INIT_LIST_HEAD(&pasync_header_h->link);
2872 pasync_header_h->pbuffer =
2873 (void *)((unsigned long)
2874 (pasync_ctx->
2875 async_header.va_base) +
2876 (p->defpdu_hdr_sz * index));
2877
2878 pasync_header_h->pa.u.a64.address =
2879 pasync_ctx->async_header.pa_base.u.a64.
2880 address + (p->defpdu_hdr_sz * index);
2881
2882 pasync_ctx->async_entry[index].header =
2883 pasync_header_h;
2884 pasync_header_h++;
2885 INIT_LIST_HEAD(&pasync_ctx->async_entry[index].
2886 wq.list);
2887
2888 pasync_data_h->cri = -1;
2889 pasync_data_h->is_header = 0;
2890 pasync_data_h->index = index;
2891 INIT_LIST_HEAD(&pasync_data_h->link);
2892
2893 if (!num_async_data) {
2894 num_per_mem = 0;
2895 idx++;
2896 pasync_ctx->async_data.va_base =
2897 mem_descr->mem_array[idx].
2898 virtual_address;
2899 pasync_ctx->async_data.pa_base.u.
2900 a64.address =
2901 mem_descr->mem_array[idx].
2902 bus_address.u.a64.address;
2903 num_async_data =
2904 ((mem_descr->mem_array[idx].
2905 size) /
2906 phba->params.defpdu_data_sz);
2907 }
2908 pasync_data_h->pbuffer =
2909 (void *)((unsigned long)
2910 (pasync_ctx->async_data.va_base) +
2911 (p->defpdu_data_sz * num_per_mem));
2912
2913 pasync_data_h->pa.u.a64.address =
2914 pasync_ctx->async_data.pa_base.u.a64.
2915 address + (p->defpdu_data_sz *
2916 num_per_mem);
2917 num_per_mem++;
2918 num_async_data--;
2919
2920 pasync_ctx->async_entry[index].data =
2921 pasync_data_h;
2922 pasync_data_h++;
2923 }
2924 }
2925 }
2926
2927 return 0;
2928 }
2929
2930 static int
be_sgl_create_contiguous(void * virtual_address,u64 physical_address,u32 length,struct be_dma_mem * sgl)2931 be_sgl_create_contiguous(void *virtual_address,
2932 u64 physical_address, u32 length,
2933 struct be_dma_mem *sgl)
2934 {
2935 WARN_ON(!virtual_address);
2936 WARN_ON(!physical_address);
2937 WARN_ON(!length);
2938 WARN_ON(!sgl);
2939
2940 sgl->va = virtual_address;
2941 sgl->dma = (unsigned long)physical_address;
2942 sgl->size = length;
2943
2944 return 0;
2945 }
2946
be_sgl_destroy_contiguous(struct be_dma_mem * sgl)2947 static void be_sgl_destroy_contiguous(struct be_dma_mem *sgl)
2948 {
2949 memset(sgl, 0, sizeof(*sgl));
2950 }
2951
2952 static void
hwi_build_be_sgl_arr(struct beiscsi_hba * phba,struct mem_array * pmem,struct be_dma_mem * sgl)2953 hwi_build_be_sgl_arr(struct beiscsi_hba *phba,
2954 struct mem_array *pmem, struct be_dma_mem *sgl)
2955 {
2956 if (sgl->va)
2957 be_sgl_destroy_contiguous(sgl);
2958
2959 be_sgl_create_contiguous(pmem->virtual_address,
2960 pmem->bus_address.u.a64.address,
2961 pmem->size, sgl);
2962 }
2963
2964 static void
hwi_build_be_sgl_by_offset(struct beiscsi_hba * phba,struct mem_array * pmem,struct be_dma_mem * sgl)2965 hwi_build_be_sgl_by_offset(struct beiscsi_hba *phba,
2966 struct mem_array *pmem, struct be_dma_mem *sgl)
2967 {
2968 if (sgl->va)
2969 be_sgl_destroy_contiguous(sgl);
2970
2971 be_sgl_create_contiguous((unsigned char *)pmem->virtual_address,
2972 pmem->bus_address.u.a64.address,
2973 pmem->size, sgl);
2974 }
2975
be_fill_queue(struct be_queue_info * q,u16 len,u16 entry_size,void * vaddress)2976 static int be_fill_queue(struct be_queue_info *q,
2977 u16 len, u16 entry_size, void *vaddress)
2978 {
2979 struct be_dma_mem *mem = &q->dma_mem;
2980
2981 memset(q, 0, sizeof(*q));
2982 q->len = len;
2983 q->entry_size = entry_size;
2984 mem->size = len * entry_size;
2985 mem->va = vaddress;
2986 if (!mem->va)
2987 return -ENOMEM;
2988 memset(mem->va, 0, mem->size);
2989 return 0;
2990 }
2991
beiscsi_create_eqs(struct beiscsi_hba * phba,struct hwi_context_memory * phwi_context)2992 static int beiscsi_create_eqs(struct beiscsi_hba *phba,
2993 struct hwi_context_memory *phwi_context)
2994 {
2995 int ret = -ENOMEM, eq_for_mcc;
2996 unsigned int i, num_eq_pages;
2997 struct be_queue_info *eq;
2998 struct be_dma_mem *mem;
2999 void *eq_vaddress;
3000 dma_addr_t paddr;
3001
3002 num_eq_pages = PAGES_REQUIRED(phba->params.num_eq_entries *
3003 sizeof(struct be_eq_entry));
3004
3005 if (phba->pcidev->msix_enabled)
3006 eq_for_mcc = 1;
3007 else
3008 eq_for_mcc = 0;
3009 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
3010 eq = &phwi_context->be_eq[i].q;
3011 mem = &eq->dma_mem;
3012 phwi_context->be_eq[i].phba = phba;
3013 eq_vaddress = dma_alloc_coherent(&phba->pcidev->dev,
3014 num_eq_pages * PAGE_SIZE,
3015 &paddr, GFP_KERNEL);
3016 if (!eq_vaddress) {
3017 ret = -ENOMEM;
3018 goto create_eq_error;
3019 }
3020
3021 mem->va = eq_vaddress;
3022 ret = be_fill_queue(eq, phba->params.num_eq_entries,
3023 sizeof(struct be_eq_entry), eq_vaddress);
3024 if (ret) {
3025 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3026 "BM_%d : be_fill_queue Failed for EQ\n");
3027 goto create_eq_error;
3028 }
3029
3030 mem->dma = paddr;
3031 ret = beiscsi_cmd_eq_create(&phba->ctrl, eq,
3032 BEISCSI_EQ_DELAY_DEF);
3033 if (ret) {
3034 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3035 "BM_%d : beiscsi_cmd_eq_create Failed for EQ\n");
3036 goto create_eq_error;
3037 }
3038
3039 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3040 "BM_%d : eqid = %d\n",
3041 phwi_context->be_eq[i].q.id);
3042 }
3043 return 0;
3044
3045 create_eq_error:
3046 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
3047 eq = &phwi_context->be_eq[i].q;
3048 mem = &eq->dma_mem;
3049 if (mem->va)
3050 dma_free_coherent(&phba->pcidev->dev, num_eq_pages
3051 * PAGE_SIZE,
3052 mem->va, mem->dma);
3053 }
3054 return ret;
3055 }
3056
beiscsi_create_cqs(struct beiscsi_hba * phba,struct hwi_context_memory * phwi_context)3057 static int beiscsi_create_cqs(struct beiscsi_hba *phba,
3058 struct hwi_context_memory *phwi_context)
3059 {
3060 unsigned int i, num_cq_pages;
3061 struct be_queue_info *cq, *eq;
3062 struct be_dma_mem *mem;
3063 struct be_eq_obj *pbe_eq;
3064 void *cq_vaddress;
3065 int ret = -ENOMEM;
3066 dma_addr_t paddr;
3067
3068 num_cq_pages = PAGES_REQUIRED(phba->params.num_cq_entries *
3069 sizeof(struct sol_cqe));
3070
3071 for (i = 0; i < phba->num_cpus; i++) {
3072 cq = &phwi_context->be_cq[i];
3073 eq = &phwi_context->be_eq[i].q;
3074 pbe_eq = &phwi_context->be_eq[i];
3075 pbe_eq->cq = cq;
3076 pbe_eq->phba = phba;
3077 mem = &cq->dma_mem;
3078 cq_vaddress = dma_alloc_coherent(&phba->pcidev->dev,
3079 num_cq_pages * PAGE_SIZE,
3080 &paddr, GFP_KERNEL);
3081 if (!cq_vaddress) {
3082 ret = -ENOMEM;
3083 goto create_cq_error;
3084 }
3085
3086 ret = be_fill_queue(cq, phba->params.num_cq_entries,
3087 sizeof(struct sol_cqe), cq_vaddress);
3088 if (ret) {
3089 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3090 "BM_%d : be_fill_queue Failed for ISCSI CQ\n");
3091 goto create_cq_error;
3092 }
3093
3094 mem->dma = paddr;
3095 ret = beiscsi_cmd_cq_create(&phba->ctrl, cq, eq, false,
3096 false, 0);
3097 if (ret) {
3098 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3099 "BM_%d : beiscsi_cmd_eq_create Failed for ISCSI CQ\n");
3100 goto create_cq_error;
3101 }
3102 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3103 "BM_%d : iscsi cq_id is %d for eq_id %d\n"
3104 "iSCSI CQ CREATED\n", cq->id, eq->id);
3105 }
3106 return 0;
3107
3108 create_cq_error:
3109 for (i = 0; i < phba->num_cpus; i++) {
3110 cq = &phwi_context->be_cq[i];
3111 mem = &cq->dma_mem;
3112 if (mem->va)
3113 dma_free_coherent(&phba->pcidev->dev, num_cq_pages
3114 * PAGE_SIZE,
3115 mem->va, mem->dma);
3116 }
3117 return ret;
3118 }
3119
3120 static int
beiscsi_create_def_hdr(struct beiscsi_hba * phba,struct hwi_context_memory * phwi_context,struct hwi_controller * phwi_ctrlr,unsigned int def_pdu_ring_sz,uint8_t ulp_num)3121 beiscsi_create_def_hdr(struct beiscsi_hba *phba,
3122 struct hwi_context_memory *phwi_context,
3123 struct hwi_controller *phwi_ctrlr,
3124 unsigned int def_pdu_ring_sz, uint8_t ulp_num)
3125 {
3126 unsigned int idx;
3127 int ret;
3128 struct be_queue_info *dq, *cq;
3129 struct be_dma_mem *mem;
3130 struct be_mem_descriptor *mem_descr;
3131 void *dq_vaddress;
3132
3133 idx = 0;
3134 dq = &phwi_context->be_def_hdrq[ulp_num];
3135 cq = &phwi_context->be_cq[0];
3136 mem = &dq->dma_mem;
3137 mem_descr = phba->init_mem;
3138 mem_descr += HWI_MEM_ASYNC_HEADER_RING_ULP0 +
3139 (ulp_num * MEM_DESCR_OFFSET);
3140 dq_vaddress = mem_descr->mem_array[idx].virtual_address;
3141 ret = be_fill_queue(dq, mem_descr->mem_array[0].size /
3142 sizeof(struct phys_addr),
3143 sizeof(struct phys_addr), dq_vaddress);
3144 if (ret) {
3145 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3146 "BM_%d : be_fill_queue Failed for DEF PDU HDR on ULP : %d\n",
3147 ulp_num);
3148
3149 return ret;
3150 }
3151 mem->dma = (unsigned long)mem_descr->mem_array[idx].
3152 bus_address.u.a64.address;
3153 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dq,
3154 def_pdu_ring_sz,
3155 phba->params.defpdu_hdr_sz,
3156 BEISCSI_DEFQ_HDR, ulp_num);
3157 if (ret) {
3158 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3159 "BM_%d : be_cmd_create_default_pdu_queue Failed DEFHDR on ULP : %d\n",
3160 ulp_num);
3161
3162 return ret;
3163 }
3164
3165 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3166 "BM_%d : iscsi hdr def pdu id for ULP : %d is %d\n",
3167 ulp_num,
3168 phwi_context->be_def_hdrq[ulp_num].id);
3169 return 0;
3170 }
3171
3172 static int
beiscsi_create_def_data(struct beiscsi_hba * phba,struct hwi_context_memory * phwi_context,struct hwi_controller * phwi_ctrlr,unsigned int def_pdu_ring_sz,uint8_t ulp_num)3173 beiscsi_create_def_data(struct beiscsi_hba *phba,
3174 struct hwi_context_memory *phwi_context,
3175 struct hwi_controller *phwi_ctrlr,
3176 unsigned int def_pdu_ring_sz, uint8_t ulp_num)
3177 {
3178 unsigned int idx;
3179 int ret;
3180 struct be_queue_info *dataq, *cq;
3181 struct be_dma_mem *mem;
3182 struct be_mem_descriptor *mem_descr;
3183 void *dq_vaddress;
3184
3185 idx = 0;
3186 dataq = &phwi_context->be_def_dataq[ulp_num];
3187 cq = &phwi_context->be_cq[0];
3188 mem = &dataq->dma_mem;
3189 mem_descr = phba->init_mem;
3190 mem_descr += HWI_MEM_ASYNC_DATA_RING_ULP0 +
3191 (ulp_num * MEM_DESCR_OFFSET);
3192 dq_vaddress = mem_descr->mem_array[idx].virtual_address;
3193 ret = be_fill_queue(dataq, mem_descr->mem_array[0].size /
3194 sizeof(struct phys_addr),
3195 sizeof(struct phys_addr), dq_vaddress);
3196 if (ret) {
3197 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3198 "BM_%d : be_fill_queue Failed for DEF PDU "
3199 "DATA on ULP : %d\n",
3200 ulp_num);
3201
3202 return ret;
3203 }
3204 mem->dma = (unsigned long)mem_descr->mem_array[idx].
3205 bus_address.u.a64.address;
3206 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dataq,
3207 def_pdu_ring_sz,
3208 phba->params.defpdu_data_sz,
3209 BEISCSI_DEFQ_DATA, ulp_num);
3210 if (ret) {
3211 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3212 "BM_%d be_cmd_create_default_pdu_queue"
3213 " Failed for DEF PDU DATA on ULP : %d\n",
3214 ulp_num);
3215 return ret;
3216 }
3217
3218 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3219 "BM_%d : iscsi def data id on ULP : %d is %d\n",
3220 ulp_num,
3221 phwi_context->be_def_dataq[ulp_num].id);
3222
3223 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3224 "BM_%d : DEFAULT PDU DATA RING CREATED on ULP : %d\n",
3225 ulp_num);
3226 return 0;
3227 }
3228
3229
3230 static int
beiscsi_post_template_hdr(struct beiscsi_hba * phba)3231 beiscsi_post_template_hdr(struct beiscsi_hba *phba)
3232 {
3233 struct be_mem_descriptor *mem_descr;
3234 struct mem_array *pm_arr;
3235 struct be_dma_mem sgl;
3236 int status, ulp_num;
3237
3238 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3239 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3240 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
3241 mem_descr += HWI_MEM_TEMPLATE_HDR_ULP0 +
3242 (ulp_num * MEM_DESCR_OFFSET);
3243 pm_arr = mem_descr->mem_array;
3244
3245 hwi_build_be_sgl_arr(phba, pm_arr, &sgl);
3246 status = be_cmd_iscsi_post_template_hdr(
3247 &phba->ctrl, &sgl);
3248
3249 if (status != 0) {
3250 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3251 "BM_%d : Post Template HDR Failed for "
3252 "ULP_%d\n", ulp_num);
3253 return status;
3254 }
3255
3256 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3257 "BM_%d : Template HDR Pages Posted for "
3258 "ULP_%d\n", ulp_num);
3259 }
3260 }
3261 return 0;
3262 }
3263
3264 static int
beiscsi_post_pages(struct beiscsi_hba * phba)3265 beiscsi_post_pages(struct beiscsi_hba *phba)
3266 {
3267 struct be_mem_descriptor *mem_descr;
3268 struct mem_array *pm_arr;
3269 unsigned int page_offset, i;
3270 struct be_dma_mem sgl;
3271 int status, ulp_num = 0;
3272
3273 mem_descr = phba->init_mem;
3274 mem_descr += HWI_MEM_SGE;
3275 pm_arr = mem_descr->mem_array;
3276
3277 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3278 if (test_bit(ulp_num, &phba->fw_config.ulp_supported))
3279 break;
3280
3281 page_offset = (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io *
3282 phba->fw_config.iscsi_icd_start[ulp_num]) / PAGE_SIZE;
3283 for (i = 0; i < mem_descr->num_elements; i++) {
3284 hwi_build_be_sgl_arr(phba, pm_arr, &sgl);
3285 status = be_cmd_iscsi_post_sgl_pages(&phba->ctrl, &sgl,
3286 page_offset,
3287 (pm_arr->size / PAGE_SIZE));
3288 page_offset += pm_arr->size / PAGE_SIZE;
3289 if (status != 0) {
3290 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3291 "BM_%d : post sgl failed.\n");
3292 return status;
3293 }
3294 pm_arr++;
3295 }
3296 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3297 "BM_%d : POSTED PAGES\n");
3298 return 0;
3299 }
3300
be_queue_free(struct beiscsi_hba * phba,struct be_queue_info * q)3301 static void be_queue_free(struct beiscsi_hba *phba, struct be_queue_info *q)
3302 {
3303 struct be_dma_mem *mem = &q->dma_mem;
3304 if (mem->va) {
3305 dma_free_coherent(&phba->pcidev->dev, mem->size,
3306 mem->va, mem->dma);
3307 mem->va = NULL;
3308 }
3309 }
3310
be_queue_alloc(struct beiscsi_hba * phba,struct be_queue_info * q,u16 len,u16 entry_size)3311 static int be_queue_alloc(struct beiscsi_hba *phba, struct be_queue_info *q,
3312 u16 len, u16 entry_size)
3313 {
3314 struct be_dma_mem *mem = &q->dma_mem;
3315
3316 memset(q, 0, sizeof(*q));
3317 q->len = len;
3318 q->entry_size = entry_size;
3319 mem->size = len * entry_size;
3320 mem->va = dma_alloc_coherent(&phba->pcidev->dev, mem->size, &mem->dma,
3321 GFP_KERNEL);
3322 if (!mem->va)
3323 return -ENOMEM;
3324 return 0;
3325 }
3326
3327 static int
beiscsi_create_wrb_rings(struct beiscsi_hba * phba,struct hwi_context_memory * phwi_context,struct hwi_controller * phwi_ctrlr)3328 beiscsi_create_wrb_rings(struct beiscsi_hba *phba,
3329 struct hwi_context_memory *phwi_context,
3330 struct hwi_controller *phwi_ctrlr)
3331 {
3332 unsigned int num_wrb_rings;
3333 u64 pa_addr_lo;
3334 unsigned int idx, num, i, ulp_num;
3335 struct mem_array *pwrb_arr;
3336 void *wrb_vaddr;
3337 struct be_dma_mem sgl;
3338 struct be_mem_descriptor *mem_descr;
3339 struct hwi_wrb_context *pwrb_context;
3340 int status;
3341 uint8_t ulp_count = 0, ulp_base_num = 0;
3342 uint16_t cid_count_ulp[BEISCSI_ULP_COUNT] = { 0 };
3343
3344 idx = 0;
3345 mem_descr = phba->init_mem;
3346 mem_descr += HWI_MEM_WRB;
3347 pwrb_arr = kmalloc_array(phba->params.cxns_per_ctrl,
3348 sizeof(*pwrb_arr),
3349 GFP_KERNEL);
3350 if (!pwrb_arr) {
3351 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3352 "BM_%d : Memory alloc failed in create wrb ring.\n");
3353 return -ENOMEM;
3354 }
3355 wrb_vaddr = mem_descr->mem_array[idx].virtual_address;
3356 pa_addr_lo = mem_descr->mem_array[idx].bus_address.u.a64.address;
3357 num_wrb_rings = mem_descr->mem_array[idx].size /
3358 (phba->params.wrbs_per_cxn * sizeof(struct iscsi_wrb));
3359
3360 for (num = 0; num < phba->params.cxns_per_ctrl; num++) {
3361 if (num_wrb_rings) {
3362 pwrb_arr[num].virtual_address = wrb_vaddr;
3363 pwrb_arr[num].bus_address.u.a64.address = pa_addr_lo;
3364 pwrb_arr[num].size = phba->params.wrbs_per_cxn *
3365 sizeof(struct iscsi_wrb);
3366 wrb_vaddr += pwrb_arr[num].size;
3367 pa_addr_lo += pwrb_arr[num].size;
3368 num_wrb_rings--;
3369 } else {
3370 idx++;
3371 wrb_vaddr = mem_descr->mem_array[idx].virtual_address;
3372 pa_addr_lo = mem_descr->mem_array[idx].
3373 bus_address.u.a64.address;
3374 num_wrb_rings = mem_descr->mem_array[idx].size /
3375 (phba->params.wrbs_per_cxn *
3376 sizeof(struct iscsi_wrb));
3377 pwrb_arr[num].virtual_address = wrb_vaddr;
3378 pwrb_arr[num].bus_address.u.a64.address = pa_addr_lo;
3379 pwrb_arr[num].size = phba->params.wrbs_per_cxn *
3380 sizeof(struct iscsi_wrb);
3381 wrb_vaddr += pwrb_arr[num].size;
3382 pa_addr_lo += pwrb_arr[num].size;
3383 num_wrb_rings--;
3384 }
3385 }
3386
3387 /* Get the ULP Count */
3388 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3389 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3390 ulp_count++;
3391 ulp_base_num = ulp_num;
3392 cid_count_ulp[ulp_num] =
3393 BEISCSI_GET_CID_COUNT(phba, ulp_num);
3394 }
3395
3396 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
3397 if (ulp_count > 1) {
3398 ulp_base_num = (ulp_base_num + 1) % BEISCSI_ULP_COUNT;
3399
3400 if (!cid_count_ulp[ulp_base_num])
3401 ulp_base_num = (ulp_base_num + 1) %
3402 BEISCSI_ULP_COUNT;
3403
3404 cid_count_ulp[ulp_base_num]--;
3405 }
3406
3407
3408 hwi_build_be_sgl_by_offset(phba, &pwrb_arr[i], &sgl);
3409 status = be_cmd_wrbq_create(&phba->ctrl, &sgl,
3410 &phwi_context->be_wrbq[i],
3411 &phwi_ctrlr->wrb_context[i],
3412 ulp_base_num);
3413 if (status != 0) {
3414 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3415 "BM_%d : wrbq create failed.");
3416 kfree(pwrb_arr);
3417 return status;
3418 }
3419 pwrb_context = &phwi_ctrlr->wrb_context[i];
3420 BE_SET_CID_TO_CRI(i, pwrb_context->cid);
3421 }
3422 kfree(pwrb_arr);
3423 return 0;
3424 }
3425
free_wrb_handles(struct beiscsi_hba * phba)3426 static void free_wrb_handles(struct beiscsi_hba *phba)
3427 {
3428 unsigned int index;
3429 struct hwi_controller *phwi_ctrlr;
3430 struct hwi_wrb_context *pwrb_context;
3431
3432 phwi_ctrlr = phba->phwi_ctrlr;
3433 for (index = 0; index < phba->params.cxns_per_ctrl; index++) {
3434 pwrb_context = &phwi_ctrlr->wrb_context[index];
3435 kfree(pwrb_context->pwrb_handle_base);
3436 kfree(pwrb_context->pwrb_handle_basestd);
3437 }
3438 }
3439
be_mcc_queues_destroy(struct beiscsi_hba * phba)3440 static void be_mcc_queues_destroy(struct beiscsi_hba *phba)
3441 {
3442 struct be_ctrl_info *ctrl = &phba->ctrl;
3443 struct be_dma_mem *ptag_mem;
3444 struct be_queue_info *q;
3445 int i, tag;
3446
3447 q = &phba->ctrl.mcc_obj.q;
3448 for (i = 0; i < MAX_MCC_CMD; i++) {
3449 tag = i + 1;
3450 if (!test_bit(MCC_TAG_STATE_RUNNING,
3451 &ctrl->ptag_state[tag].tag_state))
3452 continue;
3453
3454 if (test_bit(MCC_TAG_STATE_TIMEOUT,
3455 &ctrl->ptag_state[tag].tag_state)) {
3456 ptag_mem = &ctrl->ptag_state[tag].tag_mem_state;
3457 if (ptag_mem->size) {
3458 dma_free_coherent(&ctrl->pdev->dev,
3459 ptag_mem->size,
3460 ptag_mem->va,
3461 ptag_mem->dma);
3462 ptag_mem->size = 0;
3463 }
3464 continue;
3465 }
3466 /**
3467 * If MCC is still active and waiting then wake up the process.
3468 * We are here only because port is going offline. The process
3469 * sees that (BEISCSI_HBA_ONLINE is cleared) and EIO error is
3470 * returned for the operation and allocated memory cleaned up.
3471 */
3472 if (waitqueue_active(&ctrl->mcc_wait[tag])) {
3473 ctrl->mcc_tag_status[tag] = MCC_STATUS_FAILED;
3474 ctrl->mcc_tag_status[tag] |= CQE_VALID_MASK;
3475 wake_up_interruptible(&ctrl->mcc_wait[tag]);
3476 /*
3477 * Control tag info gets reinitialized in enable
3478 * so wait for the process to clear running state.
3479 */
3480 while (test_bit(MCC_TAG_STATE_RUNNING,
3481 &ctrl->ptag_state[tag].tag_state))
3482 schedule_timeout_uninterruptible(HZ);
3483 }
3484 /**
3485 * For MCC with tag_states MCC_TAG_STATE_ASYNC and
3486 * MCC_TAG_STATE_IGNORE nothing needs to done.
3487 */
3488 }
3489 if (q->created) {
3490 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_MCCQ);
3491 be_queue_free(phba, q);
3492 }
3493
3494 q = &phba->ctrl.mcc_obj.cq;
3495 if (q->created) {
3496 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ);
3497 be_queue_free(phba, q);
3498 }
3499 }
3500
be_mcc_queues_create(struct beiscsi_hba * phba,struct hwi_context_memory * phwi_context)3501 static int be_mcc_queues_create(struct beiscsi_hba *phba,
3502 struct hwi_context_memory *phwi_context)
3503 {
3504 struct be_queue_info *q, *cq;
3505 struct be_ctrl_info *ctrl = &phba->ctrl;
3506
3507 /* Alloc MCC compl queue */
3508 cq = &phba->ctrl.mcc_obj.cq;
3509 if (be_queue_alloc(phba, cq, MCC_CQ_LEN,
3510 sizeof(struct be_mcc_compl)))
3511 goto err;
3512 /* Ask BE to create MCC compl queue; */
3513 if (phba->pcidev->msix_enabled) {
3514 if (beiscsi_cmd_cq_create(ctrl, cq,
3515 &phwi_context->be_eq[phba->num_cpus].q,
3516 false, true, 0))
3517 goto mcc_cq_free;
3518 } else {
3519 if (beiscsi_cmd_cq_create(ctrl, cq, &phwi_context->be_eq[0].q,
3520 false, true, 0))
3521 goto mcc_cq_free;
3522 }
3523
3524 /* Alloc MCC queue */
3525 q = &phba->ctrl.mcc_obj.q;
3526 if (be_queue_alloc(phba, q, MCC_Q_LEN, sizeof(struct be_mcc_wrb)))
3527 goto mcc_cq_destroy;
3528
3529 /* Ask BE to create MCC queue */
3530 if (beiscsi_cmd_mccq_create(phba, q, cq))
3531 goto mcc_q_free;
3532
3533 return 0;
3534
3535 mcc_q_free:
3536 be_queue_free(phba, q);
3537 mcc_cq_destroy:
3538 beiscsi_cmd_q_destroy(ctrl, cq, QTYPE_CQ);
3539 mcc_cq_free:
3540 be_queue_free(phba, cq);
3541 err:
3542 return -ENOMEM;
3543 }
3544
be2iscsi_enable_msix(struct beiscsi_hba * phba)3545 static void be2iscsi_enable_msix(struct beiscsi_hba *phba)
3546 {
3547 int nvec = 1;
3548
3549 switch (phba->generation) {
3550 case BE_GEN2:
3551 case BE_GEN3:
3552 nvec = BEISCSI_MAX_NUM_CPUS + 1;
3553 break;
3554 case BE_GEN4:
3555 nvec = phba->fw_config.eqid_count;
3556 break;
3557 default:
3558 nvec = 2;
3559 break;
3560 }
3561
3562 /* if eqid_count == 1 fall back to INTX */
3563 if (enable_msix && nvec > 1) {
3564 struct irq_affinity desc = { .post_vectors = 1 };
3565
3566 if (pci_alloc_irq_vectors_affinity(phba->pcidev, 2, nvec,
3567 PCI_IRQ_MSIX | PCI_IRQ_AFFINITY, &desc) < 0) {
3568 phba->num_cpus = nvec - 1;
3569 return;
3570 }
3571 }
3572
3573 phba->num_cpus = 1;
3574 }
3575
hwi_purge_eq(struct beiscsi_hba * phba)3576 static void hwi_purge_eq(struct beiscsi_hba *phba)
3577 {
3578 struct hwi_controller *phwi_ctrlr;
3579 struct hwi_context_memory *phwi_context;
3580 struct be_queue_info *eq;
3581 struct be_eq_entry *eqe = NULL;
3582 int i, eq_msix;
3583 unsigned int num_processed;
3584
3585 if (beiscsi_hba_in_error(phba))
3586 return;
3587
3588 phwi_ctrlr = phba->phwi_ctrlr;
3589 phwi_context = phwi_ctrlr->phwi_ctxt;
3590 if (phba->pcidev->msix_enabled)
3591 eq_msix = 1;
3592 else
3593 eq_msix = 0;
3594
3595 for (i = 0; i < (phba->num_cpus + eq_msix); i++) {
3596 eq = &phwi_context->be_eq[i].q;
3597 eqe = queue_tail_node(eq);
3598 num_processed = 0;
3599 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
3600 & EQE_VALID_MASK) {
3601 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
3602 queue_tail_inc(eq);
3603 eqe = queue_tail_node(eq);
3604 num_processed++;
3605 }
3606
3607 if (num_processed)
3608 hwi_ring_eq_db(phba, eq->id, 1, num_processed, 1, 1);
3609 }
3610 }
3611
hwi_cleanup_port(struct beiscsi_hba * phba)3612 static void hwi_cleanup_port(struct beiscsi_hba *phba)
3613 {
3614 struct be_queue_info *q;
3615 struct be_ctrl_info *ctrl = &phba->ctrl;
3616 struct hwi_controller *phwi_ctrlr;
3617 struct hwi_context_memory *phwi_context;
3618 int i, eq_for_mcc, ulp_num;
3619
3620 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3621 if (test_bit(ulp_num, &phba->fw_config.ulp_supported))
3622 beiscsi_cmd_iscsi_cleanup(phba, ulp_num);
3623
3624 /**
3625 * Purge all EQ entries that may have been left out. This is to
3626 * workaround a problem we've seen occasionally where driver gets an
3627 * interrupt with EQ entry bit set after stopping the controller.
3628 */
3629 hwi_purge_eq(phba);
3630
3631 phwi_ctrlr = phba->phwi_ctrlr;
3632 phwi_context = phwi_ctrlr->phwi_ctxt;
3633
3634 be_cmd_iscsi_remove_template_hdr(ctrl);
3635
3636 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
3637 q = &phwi_context->be_wrbq[i];
3638 if (q->created)
3639 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_WRBQ);
3640 }
3641 kfree(phwi_context->be_wrbq);
3642 free_wrb_handles(phba);
3643
3644 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3645 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3646
3647 q = &phwi_context->be_def_hdrq[ulp_num];
3648 if (q->created)
3649 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ);
3650
3651 q = &phwi_context->be_def_dataq[ulp_num];
3652 if (q->created)
3653 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ);
3654 }
3655 }
3656
3657 beiscsi_cmd_q_destroy(ctrl, NULL, QTYPE_SGL);
3658
3659 for (i = 0; i < (phba->num_cpus); i++) {
3660 q = &phwi_context->be_cq[i];
3661 if (q->created) {
3662 be_queue_free(phba, q);
3663 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ);
3664 }
3665 }
3666
3667 be_mcc_queues_destroy(phba);
3668 if (phba->pcidev->msix_enabled)
3669 eq_for_mcc = 1;
3670 else
3671 eq_for_mcc = 0;
3672 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
3673 q = &phwi_context->be_eq[i].q;
3674 if (q->created) {
3675 be_queue_free(phba, q);
3676 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_EQ);
3677 }
3678 }
3679 /* this ensures complete FW cleanup */
3680 beiscsi_cmd_function_reset(phba);
3681 /* last communication, indicate driver is unloading */
3682 beiscsi_cmd_special_wrb(&phba->ctrl, 0);
3683 }
3684
hwi_init_port(struct beiscsi_hba * phba)3685 static int hwi_init_port(struct beiscsi_hba *phba)
3686 {
3687 struct hwi_controller *phwi_ctrlr;
3688 struct hwi_context_memory *phwi_context;
3689 unsigned int def_pdu_ring_sz;
3690 struct be_ctrl_info *ctrl = &phba->ctrl;
3691 int status, ulp_num;
3692 u16 nbufs;
3693
3694 phwi_ctrlr = phba->phwi_ctrlr;
3695 phwi_context = phwi_ctrlr->phwi_ctxt;
3696 /* set port optic state to unknown */
3697 phba->optic_state = 0xff;
3698
3699 status = beiscsi_create_eqs(phba, phwi_context);
3700 if (status != 0) {
3701 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3702 "BM_%d : EQ not created\n");
3703 goto error;
3704 }
3705
3706 status = be_mcc_queues_create(phba, phwi_context);
3707 if (status != 0)
3708 goto error;
3709
3710 status = beiscsi_check_supported_fw(ctrl, phba);
3711 if (status != 0) {
3712 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3713 "BM_%d : Unsupported fw version\n");
3714 goto error;
3715 }
3716
3717 status = beiscsi_create_cqs(phba, phwi_context);
3718 if (status != 0) {
3719 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3720 "BM_%d : CQ not created\n");
3721 goto error;
3722 }
3723
3724 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3725 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3726 nbufs = phwi_context->pasync_ctx[ulp_num]->num_entries;
3727 def_pdu_ring_sz = nbufs * sizeof(struct phys_addr);
3728
3729 status = beiscsi_create_def_hdr(phba, phwi_context,
3730 phwi_ctrlr,
3731 def_pdu_ring_sz,
3732 ulp_num);
3733 if (status != 0) {
3734 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3735 "BM_%d : Default Header not created for ULP : %d\n",
3736 ulp_num);
3737 goto error;
3738 }
3739
3740 status = beiscsi_create_def_data(phba, phwi_context,
3741 phwi_ctrlr,
3742 def_pdu_ring_sz,
3743 ulp_num);
3744 if (status != 0) {
3745 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3746 "BM_%d : Default Data not created for ULP : %d\n",
3747 ulp_num);
3748 goto error;
3749 }
3750 /**
3751 * Now that the default PDU rings have been created,
3752 * let EP know about it.
3753 */
3754 beiscsi_hdq_post_handles(phba, BEISCSI_DEFQ_HDR,
3755 ulp_num, nbufs);
3756 beiscsi_hdq_post_handles(phba, BEISCSI_DEFQ_DATA,
3757 ulp_num, nbufs);
3758 }
3759 }
3760
3761 status = beiscsi_post_pages(phba);
3762 if (status != 0) {
3763 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3764 "BM_%d : Post SGL Pages Failed\n");
3765 goto error;
3766 }
3767
3768 status = beiscsi_post_template_hdr(phba);
3769 if (status != 0) {
3770 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3771 "BM_%d : Template HDR Posting for CXN Failed\n");
3772 }
3773
3774 status = beiscsi_create_wrb_rings(phba, phwi_context, phwi_ctrlr);
3775 if (status != 0) {
3776 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3777 "BM_%d : WRB Rings not created\n");
3778 goto error;
3779 }
3780
3781 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3782 uint16_t async_arr_idx = 0;
3783
3784 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3785 uint16_t cri = 0;
3786 struct hd_async_context *pasync_ctx;
3787
3788 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(
3789 phwi_ctrlr, ulp_num);
3790 for (cri = 0; cri <
3791 phba->params.cxns_per_ctrl; cri++) {
3792 if (ulp_num == BEISCSI_GET_ULP_FROM_CRI
3793 (phwi_ctrlr, cri))
3794 pasync_ctx->cid_to_async_cri_map[
3795 phwi_ctrlr->wrb_context[cri].cid] =
3796 async_arr_idx++;
3797 }
3798 }
3799 }
3800
3801 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3802 "BM_%d : hwi_init_port success\n");
3803 return 0;
3804
3805 error:
3806 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3807 "BM_%d : hwi_init_port failed");
3808 hwi_cleanup_port(phba);
3809 return status;
3810 }
3811
hwi_init_controller(struct beiscsi_hba * phba)3812 static int hwi_init_controller(struct beiscsi_hba *phba)
3813 {
3814 struct hwi_controller *phwi_ctrlr;
3815
3816 phwi_ctrlr = phba->phwi_ctrlr;
3817 if (1 == phba->init_mem[HWI_MEM_ADDN_CONTEXT].num_elements) {
3818 phwi_ctrlr->phwi_ctxt = (struct hwi_context_memory *)phba->
3819 init_mem[HWI_MEM_ADDN_CONTEXT].mem_array[0].virtual_address;
3820 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3821 "BM_%d : phwi_ctrlr->phwi_ctxt=%p\n",
3822 phwi_ctrlr->phwi_ctxt);
3823 } else {
3824 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3825 "BM_%d : HWI_MEM_ADDN_CONTEXT is more "
3826 "than one element.Failing to load\n");
3827 return -ENOMEM;
3828 }
3829
3830 iscsi_init_global_templates(phba);
3831 if (beiscsi_init_wrb_handle(phba))
3832 return -ENOMEM;
3833
3834 if (hwi_init_async_pdu_ctx(phba)) {
3835 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3836 "BM_%d : hwi_init_async_pdu_ctx failed\n");
3837 return -ENOMEM;
3838 }
3839
3840 if (hwi_init_port(phba) != 0) {
3841 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3842 "BM_%d : hwi_init_controller failed\n");
3843
3844 return -ENOMEM;
3845 }
3846 return 0;
3847 }
3848
beiscsi_free_mem(struct beiscsi_hba * phba)3849 static void beiscsi_free_mem(struct beiscsi_hba *phba)
3850 {
3851 struct be_mem_descriptor *mem_descr;
3852 int i, j;
3853
3854 mem_descr = phba->init_mem;
3855 for (i = 0; i < SE_MEM_MAX; i++) {
3856 for (j = mem_descr->num_elements; j > 0; j--) {
3857 dma_free_coherent(&phba->pcidev->dev,
3858 mem_descr->mem_array[j - 1].size,
3859 mem_descr->mem_array[j - 1].virtual_address,
3860 (unsigned long)mem_descr->mem_array[j - 1].
3861 bus_address.u.a64.address);
3862 }
3863
3864 kfree(mem_descr->mem_array);
3865 mem_descr++;
3866 }
3867 kfree(phba->init_mem);
3868 kfree(phba->phwi_ctrlr->wrb_context);
3869 kfree(phba->phwi_ctrlr);
3870 }
3871
beiscsi_init_sgl_handle(struct beiscsi_hba * phba)3872 static int beiscsi_init_sgl_handle(struct beiscsi_hba *phba)
3873 {
3874 struct be_mem_descriptor *mem_descr_sglh, *mem_descr_sg;
3875 struct sgl_handle *psgl_handle;
3876 struct iscsi_sge *pfrag;
3877 unsigned int arr_index, i, idx;
3878 unsigned int ulp_icd_start, ulp_num = 0;
3879
3880 phba->io_sgl_hndl_avbl = 0;
3881 phba->eh_sgl_hndl_avbl = 0;
3882
3883 mem_descr_sglh = phba->init_mem;
3884 mem_descr_sglh += HWI_MEM_SGLH;
3885 if (1 == mem_descr_sglh->num_elements) {
3886 phba->io_sgl_hndl_base = kcalloc(phba->params.ios_per_ctrl,
3887 sizeof(struct sgl_handle *),
3888 GFP_KERNEL);
3889 if (!phba->io_sgl_hndl_base) {
3890 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3891 "BM_%d : Mem Alloc Failed. Failing to load\n");
3892 return -ENOMEM;
3893 }
3894 phba->eh_sgl_hndl_base =
3895 kcalloc(phba->params.icds_per_ctrl -
3896 phba->params.ios_per_ctrl,
3897 sizeof(struct sgl_handle *), GFP_KERNEL);
3898 if (!phba->eh_sgl_hndl_base) {
3899 kfree(phba->io_sgl_hndl_base);
3900 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3901 "BM_%d : Mem Alloc Failed. Failing to load\n");
3902 return -ENOMEM;
3903 }
3904 } else {
3905 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3906 "BM_%d : HWI_MEM_SGLH is more than one element."
3907 "Failing to load\n");
3908 return -ENOMEM;
3909 }
3910
3911 arr_index = 0;
3912 idx = 0;
3913 while (idx < mem_descr_sglh->num_elements) {
3914 psgl_handle = mem_descr_sglh->mem_array[idx].virtual_address;
3915
3916 for (i = 0; i < (mem_descr_sglh->mem_array[idx].size /
3917 sizeof(struct sgl_handle)); i++) {
3918 if (arr_index < phba->params.ios_per_ctrl) {
3919 phba->io_sgl_hndl_base[arr_index] = psgl_handle;
3920 phba->io_sgl_hndl_avbl++;
3921 arr_index++;
3922 } else {
3923 phba->eh_sgl_hndl_base[arr_index -
3924 phba->params.ios_per_ctrl] =
3925 psgl_handle;
3926 arr_index++;
3927 phba->eh_sgl_hndl_avbl++;
3928 }
3929 psgl_handle++;
3930 }
3931 idx++;
3932 }
3933 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3934 "BM_%d : phba->io_sgl_hndl_avbl=%d "
3935 "phba->eh_sgl_hndl_avbl=%d\n",
3936 phba->io_sgl_hndl_avbl,
3937 phba->eh_sgl_hndl_avbl);
3938
3939 mem_descr_sg = phba->init_mem;
3940 mem_descr_sg += HWI_MEM_SGE;
3941 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3942 "\n BM_%d : mem_descr_sg->num_elements=%d\n",
3943 mem_descr_sg->num_elements);
3944
3945 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3946 if (test_bit(ulp_num, &phba->fw_config.ulp_supported))
3947 break;
3948
3949 ulp_icd_start = phba->fw_config.iscsi_icd_start[ulp_num];
3950
3951 arr_index = 0;
3952 idx = 0;
3953 while (idx < mem_descr_sg->num_elements) {
3954 pfrag = mem_descr_sg->mem_array[idx].virtual_address;
3955
3956 for (i = 0;
3957 i < (mem_descr_sg->mem_array[idx].size) /
3958 (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io);
3959 i++) {
3960 if (arr_index < phba->params.ios_per_ctrl)
3961 psgl_handle = phba->io_sgl_hndl_base[arr_index];
3962 else
3963 psgl_handle = phba->eh_sgl_hndl_base[arr_index -
3964 phba->params.ios_per_ctrl];
3965 psgl_handle->pfrag = pfrag;
3966 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, pfrag, 0);
3967 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, pfrag, 0);
3968 pfrag += phba->params.num_sge_per_io;
3969 psgl_handle->sgl_index = ulp_icd_start + arr_index++;
3970 }
3971 idx++;
3972 }
3973 phba->io_sgl_free_index = 0;
3974 phba->io_sgl_alloc_index = 0;
3975 phba->eh_sgl_free_index = 0;
3976 phba->eh_sgl_alloc_index = 0;
3977 return 0;
3978 }
3979
hba_setup_cid_tbls(struct beiscsi_hba * phba)3980 static int hba_setup_cid_tbls(struct beiscsi_hba *phba)
3981 {
3982 int ret;
3983 uint16_t i, ulp_num;
3984 struct ulp_cid_info *ptr_cid_info = NULL;
3985
3986 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3987 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
3988 ptr_cid_info = kzalloc(sizeof(struct ulp_cid_info),
3989 GFP_KERNEL);
3990
3991 if (!ptr_cid_info) {
3992 ret = -ENOMEM;
3993 goto free_memory;
3994 }
3995
3996 /* Allocate memory for CID array */
3997 ptr_cid_info->cid_array =
3998 kcalloc(BEISCSI_GET_CID_COUNT(phba, ulp_num),
3999 sizeof(*ptr_cid_info->cid_array),
4000 GFP_KERNEL);
4001 if (!ptr_cid_info->cid_array) {
4002 kfree(ptr_cid_info);
4003 ptr_cid_info = NULL;
4004 ret = -ENOMEM;
4005
4006 goto free_memory;
4007 }
4008 ptr_cid_info->avlbl_cids = BEISCSI_GET_CID_COUNT(
4009 phba, ulp_num);
4010
4011 /* Save the cid_info_array ptr */
4012 phba->cid_array_info[ulp_num] = ptr_cid_info;
4013 }
4014 }
4015 phba->ep_array = kcalloc(phba->params.cxns_per_ctrl,
4016 sizeof(struct iscsi_endpoint *),
4017 GFP_KERNEL);
4018 if (!phba->ep_array) {
4019 ret = -ENOMEM;
4020
4021 goto free_memory;
4022 }
4023
4024 phba->conn_table = kcalloc(phba->params.cxns_per_ctrl,
4025 sizeof(struct beiscsi_conn *),
4026 GFP_KERNEL);
4027 if (!phba->conn_table) {
4028 kfree(phba->ep_array);
4029 phba->ep_array = NULL;
4030 ret = -ENOMEM;
4031
4032 goto free_memory;
4033 }
4034
4035 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
4036 ulp_num = phba->phwi_ctrlr->wrb_context[i].ulp_num;
4037
4038 ptr_cid_info = phba->cid_array_info[ulp_num];
4039 ptr_cid_info->cid_array[ptr_cid_info->cid_alloc++] =
4040 phba->phwi_ctrlr->wrb_context[i].cid;
4041
4042 }
4043
4044 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4045 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4046 ptr_cid_info = phba->cid_array_info[ulp_num];
4047
4048 ptr_cid_info->cid_alloc = 0;
4049 ptr_cid_info->cid_free = 0;
4050 }
4051 }
4052 return 0;
4053
4054 free_memory:
4055 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4056 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4057 ptr_cid_info = phba->cid_array_info[ulp_num];
4058
4059 if (ptr_cid_info) {
4060 kfree(ptr_cid_info->cid_array);
4061 kfree(ptr_cid_info);
4062 phba->cid_array_info[ulp_num] = NULL;
4063 }
4064 }
4065 }
4066
4067 return ret;
4068 }
4069
hwi_enable_intr(struct beiscsi_hba * phba)4070 static void hwi_enable_intr(struct beiscsi_hba *phba)
4071 {
4072 struct be_ctrl_info *ctrl = &phba->ctrl;
4073 struct hwi_controller *phwi_ctrlr;
4074 struct hwi_context_memory *phwi_context;
4075 struct be_queue_info *eq;
4076 u8 __iomem *addr;
4077 u32 reg, i;
4078 u32 enabled;
4079
4080 phwi_ctrlr = phba->phwi_ctrlr;
4081 phwi_context = phwi_ctrlr->phwi_ctxt;
4082
4083 addr = (u8 __iomem *) ((u8 __iomem *) ctrl->pcicfg +
4084 PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET);
4085 reg = ioread32(addr);
4086
4087 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4088 if (!enabled) {
4089 reg |= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4090 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4091 "BM_%d : reg =x%08x addr=%p\n", reg, addr);
4092 iowrite32(reg, addr);
4093 }
4094
4095 if (!phba->pcidev->msix_enabled) {
4096 eq = &phwi_context->be_eq[0].q;
4097 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4098 "BM_%d : eq->id=%d\n", eq->id);
4099
4100 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
4101 } else {
4102 for (i = 0; i <= phba->num_cpus; i++) {
4103 eq = &phwi_context->be_eq[i].q;
4104 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4105 "BM_%d : eq->id=%d\n", eq->id);
4106 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
4107 }
4108 }
4109 }
4110
hwi_disable_intr(struct beiscsi_hba * phba)4111 static void hwi_disable_intr(struct beiscsi_hba *phba)
4112 {
4113 struct be_ctrl_info *ctrl = &phba->ctrl;
4114
4115 u8 __iomem *addr = ctrl->pcicfg + PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET;
4116 u32 reg = ioread32(addr);
4117
4118 u32 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4119 if (enabled) {
4120 reg &= ~MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4121 iowrite32(reg, addr);
4122 } else
4123 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
4124 "BM_%d : In hwi_disable_intr, Already Disabled\n");
4125 }
4126
beiscsi_init_port(struct beiscsi_hba * phba)4127 static int beiscsi_init_port(struct beiscsi_hba *phba)
4128 {
4129 int ret;
4130
4131 ret = hwi_init_controller(phba);
4132 if (ret < 0) {
4133 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4134 "BM_%d : init controller failed\n");
4135 return ret;
4136 }
4137 ret = beiscsi_init_sgl_handle(phba);
4138 if (ret < 0) {
4139 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4140 "BM_%d : init sgl handles failed\n");
4141 goto cleanup_port;
4142 }
4143
4144 ret = hba_setup_cid_tbls(phba);
4145 if (ret < 0) {
4146 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4147 "BM_%d : setup CID table failed\n");
4148 kfree(phba->io_sgl_hndl_base);
4149 kfree(phba->eh_sgl_hndl_base);
4150 goto cleanup_port;
4151 }
4152 return ret;
4153
4154 cleanup_port:
4155 hwi_cleanup_port(phba);
4156 return ret;
4157 }
4158
beiscsi_cleanup_port(struct beiscsi_hba * phba)4159 static void beiscsi_cleanup_port(struct beiscsi_hba *phba)
4160 {
4161 struct ulp_cid_info *ptr_cid_info = NULL;
4162 int ulp_num;
4163
4164 kfree(phba->io_sgl_hndl_base);
4165 kfree(phba->eh_sgl_hndl_base);
4166 kfree(phba->ep_array);
4167 kfree(phba->conn_table);
4168
4169 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4170 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4171 ptr_cid_info = phba->cid_array_info[ulp_num];
4172
4173 if (ptr_cid_info) {
4174 kfree(ptr_cid_info->cid_array);
4175 kfree(ptr_cid_info);
4176 phba->cid_array_info[ulp_num] = NULL;
4177 }
4178 }
4179 }
4180 }
4181
4182 /**
4183 * beiscsi_free_mgmt_task_handles()- Free driver CXN resources
4184 * @beiscsi_conn: ptr to the conn to be cleaned up
4185 * @task: ptr to iscsi_task resource to be freed.
4186 *
4187 * Free driver mgmt resources binded to CXN.
4188 **/
4189 void
beiscsi_free_mgmt_task_handles(struct beiscsi_conn * beiscsi_conn,struct iscsi_task * task)4190 beiscsi_free_mgmt_task_handles(struct beiscsi_conn *beiscsi_conn,
4191 struct iscsi_task *task)
4192 {
4193 struct beiscsi_io_task *io_task;
4194 struct beiscsi_hba *phba = beiscsi_conn->phba;
4195 struct hwi_wrb_context *pwrb_context;
4196 struct hwi_controller *phwi_ctrlr;
4197 uint16_t cri_index = BE_GET_CRI_FROM_CID(
4198 beiscsi_conn->beiscsi_conn_cid);
4199
4200 phwi_ctrlr = phba->phwi_ctrlr;
4201 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
4202
4203 io_task = task->dd_data;
4204
4205 if (io_task->pwrb_handle) {
4206 free_wrb_handle(phba, pwrb_context, io_task->pwrb_handle);
4207 io_task->pwrb_handle = NULL;
4208 }
4209
4210 if (io_task->psgl_handle) {
4211 free_mgmt_sgl_handle(phba, io_task->psgl_handle);
4212 io_task->psgl_handle = NULL;
4213 }
4214
4215 if (io_task->mtask_addr) {
4216 dma_unmap_single(&phba->pcidev->dev,
4217 io_task->mtask_addr,
4218 io_task->mtask_data_count,
4219 DMA_TO_DEVICE);
4220 io_task->mtask_addr = 0;
4221 }
4222 }
4223
4224 /**
4225 * beiscsi_cleanup_task()- Free driver resources of the task
4226 * @task: ptr to the iscsi task
4227 *
4228 **/
beiscsi_cleanup_task(struct iscsi_task * task)4229 static void beiscsi_cleanup_task(struct iscsi_task *task)
4230 {
4231 struct beiscsi_io_task *io_task = task->dd_data;
4232 struct iscsi_conn *conn = task->conn;
4233 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4234 struct beiscsi_hba *phba = beiscsi_conn->phba;
4235 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess;
4236 struct hwi_wrb_context *pwrb_context;
4237 struct hwi_controller *phwi_ctrlr;
4238 uint16_t cri_index = BE_GET_CRI_FROM_CID(
4239 beiscsi_conn->beiscsi_conn_cid);
4240
4241 phwi_ctrlr = phba->phwi_ctrlr;
4242 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
4243
4244 if (io_task->cmd_bhs) {
4245 dma_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs,
4246 io_task->bhs_pa.u.a64.address);
4247 io_task->cmd_bhs = NULL;
4248 task->hdr = NULL;
4249 }
4250
4251 if (task->sc) {
4252 if (io_task->pwrb_handle) {
4253 free_wrb_handle(phba, pwrb_context,
4254 io_task->pwrb_handle);
4255 io_task->pwrb_handle = NULL;
4256 }
4257
4258 if (io_task->psgl_handle) {
4259 free_io_sgl_handle(phba, io_task->psgl_handle);
4260 io_task->psgl_handle = NULL;
4261 }
4262
4263 if (io_task->scsi_cmnd) {
4264 if (io_task->num_sg)
4265 scsi_dma_unmap(io_task->scsi_cmnd);
4266 io_task->scsi_cmnd = NULL;
4267 }
4268 } else {
4269 if (!beiscsi_conn->login_in_progress)
4270 beiscsi_free_mgmt_task_handles(beiscsi_conn, task);
4271 }
4272 }
4273
4274 void
beiscsi_offload_connection(struct beiscsi_conn * beiscsi_conn,struct beiscsi_offload_params * params)4275 beiscsi_offload_connection(struct beiscsi_conn *beiscsi_conn,
4276 struct beiscsi_offload_params *params)
4277 {
4278 struct wrb_handle *pwrb_handle;
4279 struct hwi_wrb_context *pwrb_context = NULL;
4280 struct beiscsi_hba *phba = beiscsi_conn->phba;
4281 struct iscsi_task *task = beiscsi_conn->task;
4282 struct iscsi_session *session = task->conn->session;
4283 u32 doorbell = 0;
4284
4285 /*
4286 * We can always use 0 here because it is reserved by libiscsi for
4287 * login/startup related tasks.
4288 */
4289 beiscsi_conn->login_in_progress = 0;
4290 spin_lock_bh(&session->back_lock);
4291 beiscsi_cleanup_task(task);
4292 spin_unlock_bh(&session->back_lock);
4293
4294 pwrb_handle = alloc_wrb_handle(phba, beiscsi_conn->beiscsi_conn_cid,
4295 &pwrb_context);
4296
4297 /* Check for the adapter family */
4298 if (is_chip_be2_be3r(phba))
4299 beiscsi_offload_cxn_v0(params, pwrb_handle,
4300 phba->init_mem,
4301 pwrb_context);
4302 else
4303 beiscsi_offload_cxn_v2(params, pwrb_handle,
4304 pwrb_context);
4305
4306 be_dws_le_to_cpu(pwrb_handle->pwrb,
4307 sizeof(struct iscsi_target_context_update_wrb));
4308
4309 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
4310 doorbell |= (pwrb_handle->wrb_index & DB_DEF_PDU_WRB_INDEX_MASK)
4311 << DB_DEF_PDU_WRB_INDEX_SHIFT;
4312 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
4313 iowrite32(doorbell, phba->db_va +
4314 beiscsi_conn->doorbell_offset);
4315
4316 /*
4317 * There is no completion for CONTEXT_UPDATE. The completion of next
4318 * WRB posted guarantees FW's processing and DMA'ing of it.
4319 * Use beiscsi_put_wrb_handle to put it back in the pool which makes
4320 * sure zero'ing or reuse of the WRB only after wrbs_per_cxn.
4321 */
4322 beiscsi_put_wrb_handle(pwrb_context, pwrb_handle,
4323 phba->params.wrbs_per_cxn);
4324 beiscsi_log(phba, KERN_INFO,
4325 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4326 "BM_%d : put CONTEXT_UPDATE pwrb_handle=%p free_index=0x%x wrb_handles_available=%d\n",
4327 pwrb_handle, pwrb_context->free_index,
4328 pwrb_context->wrb_handles_available);
4329 }
4330
beiscsi_parse_pdu(struct iscsi_conn * conn,itt_t itt,int * index,int * age)4331 static void beiscsi_parse_pdu(struct iscsi_conn *conn, itt_t itt,
4332 int *index, int *age)
4333 {
4334 *index = (int)itt;
4335 if (age)
4336 *age = conn->session->age;
4337 }
4338
4339 /**
4340 * beiscsi_alloc_pdu - allocates pdu and related resources
4341 * @task: libiscsi task
4342 * @opcode: opcode of pdu for task
4343 *
4344 * This is called with the session lock held. It will allocate
4345 * the wrb and sgl if needed for the command. And it will prep
4346 * the pdu's itt. beiscsi_parse_pdu will later translate
4347 * the pdu itt to the libiscsi task itt.
4348 */
beiscsi_alloc_pdu(struct iscsi_task * task,uint8_t opcode)4349 static int beiscsi_alloc_pdu(struct iscsi_task *task, uint8_t opcode)
4350 {
4351 struct beiscsi_io_task *io_task = task->dd_data;
4352 struct iscsi_conn *conn = task->conn;
4353 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4354 struct beiscsi_hba *phba = beiscsi_conn->phba;
4355 struct hwi_wrb_context *pwrb_context;
4356 struct hwi_controller *phwi_ctrlr;
4357 itt_t itt;
4358 uint16_t cri_index = 0;
4359 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess;
4360 dma_addr_t paddr;
4361
4362 io_task->cmd_bhs = dma_pool_alloc(beiscsi_sess->bhs_pool,
4363 GFP_ATOMIC, &paddr);
4364 if (!io_task->cmd_bhs)
4365 return -ENOMEM;
4366 io_task->bhs_pa.u.a64.address = paddr;
4367 io_task->libiscsi_itt = (itt_t)task->itt;
4368 io_task->conn = beiscsi_conn;
4369
4370 task->hdr = (struct iscsi_hdr *)&io_task->cmd_bhs->iscsi_hdr;
4371 task->hdr_max = sizeof(struct be_cmd_bhs);
4372 io_task->psgl_handle = NULL;
4373 io_task->pwrb_handle = NULL;
4374
4375 if (task->sc) {
4376 io_task->psgl_handle = alloc_io_sgl_handle(phba);
4377 if (!io_task->psgl_handle) {
4378 beiscsi_log(phba, KERN_ERR,
4379 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4380 "BM_%d : Alloc of IO_SGL_ICD Failed "
4381 "for the CID : %d\n",
4382 beiscsi_conn->beiscsi_conn_cid);
4383 goto free_hndls;
4384 }
4385 io_task->pwrb_handle = alloc_wrb_handle(phba,
4386 beiscsi_conn->beiscsi_conn_cid,
4387 &io_task->pwrb_context);
4388 if (!io_task->pwrb_handle) {
4389 beiscsi_log(phba, KERN_ERR,
4390 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4391 "BM_%d : Alloc of WRB_HANDLE Failed "
4392 "for the CID : %d\n",
4393 beiscsi_conn->beiscsi_conn_cid);
4394 goto free_io_hndls;
4395 }
4396 } else {
4397 io_task->scsi_cmnd = NULL;
4398 if ((opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGIN) {
4399 beiscsi_conn->task = task;
4400 if (!beiscsi_conn->login_in_progress) {
4401 io_task->psgl_handle = (struct sgl_handle *)
4402 alloc_mgmt_sgl_handle(phba);
4403 if (!io_task->psgl_handle) {
4404 beiscsi_log(phba, KERN_ERR,
4405 BEISCSI_LOG_IO |
4406 BEISCSI_LOG_CONFIG,
4407 "BM_%d : Alloc of MGMT_SGL_ICD Failed "
4408 "for the CID : %d\n",
4409 beiscsi_conn->beiscsi_conn_cid);
4410 goto free_hndls;
4411 }
4412
4413 beiscsi_conn->login_in_progress = 1;
4414 beiscsi_conn->plogin_sgl_handle =
4415 io_task->psgl_handle;
4416 io_task->pwrb_handle =
4417 alloc_wrb_handle(phba,
4418 beiscsi_conn->beiscsi_conn_cid,
4419 &io_task->pwrb_context);
4420 if (!io_task->pwrb_handle) {
4421 beiscsi_log(phba, KERN_ERR,
4422 BEISCSI_LOG_IO |
4423 BEISCSI_LOG_CONFIG,
4424 "BM_%d : Alloc of WRB_HANDLE Failed "
4425 "for the CID : %d\n",
4426 beiscsi_conn->beiscsi_conn_cid);
4427 goto free_mgmt_hndls;
4428 }
4429 beiscsi_conn->plogin_wrb_handle =
4430 io_task->pwrb_handle;
4431
4432 } else {
4433 io_task->psgl_handle =
4434 beiscsi_conn->plogin_sgl_handle;
4435 io_task->pwrb_handle =
4436 beiscsi_conn->plogin_wrb_handle;
4437 }
4438 } else {
4439 io_task->psgl_handle = alloc_mgmt_sgl_handle(phba);
4440 if (!io_task->psgl_handle) {
4441 beiscsi_log(phba, KERN_ERR,
4442 BEISCSI_LOG_IO |
4443 BEISCSI_LOG_CONFIG,
4444 "BM_%d : Alloc of MGMT_SGL_ICD Failed "
4445 "for the CID : %d\n",
4446 beiscsi_conn->beiscsi_conn_cid);
4447 goto free_hndls;
4448 }
4449 io_task->pwrb_handle =
4450 alloc_wrb_handle(phba,
4451 beiscsi_conn->beiscsi_conn_cid,
4452 &io_task->pwrb_context);
4453 if (!io_task->pwrb_handle) {
4454 beiscsi_log(phba, KERN_ERR,
4455 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4456 "BM_%d : Alloc of WRB_HANDLE Failed "
4457 "for the CID : %d\n",
4458 beiscsi_conn->beiscsi_conn_cid);
4459 goto free_mgmt_hndls;
4460 }
4461
4462 }
4463 }
4464 itt = (itt_t) cpu_to_be32(((unsigned int)io_task->pwrb_handle->
4465 wrb_index << 16) | (unsigned int)
4466 (io_task->psgl_handle->sgl_index));
4467 io_task->pwrb_handle->pio_handle = task;
4468
4469 io_task->cmd_bhs->iscsi_hdr.itt = itt;
4470 return 0;
4471
4472 free_io_hndls:
4473 free_io_sgl_handle(phba, io_task->psgl_handle);
4474 goto free_hndls;
4475 free_mgmt_hndls:
4476 free_mgmt_sgl_handle(phba, io_task->psgl_handle);
4477 io_task->psgl_handle = NULL;
4478 free_hndls:
4479 phwi_ctrlr = phba->phwi_ctrlr;
4480 cri_index = BE_GET_CRI_FROM_CID(
4481 beiscsi_conn->beiscsi_conn_cid);
4482 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
4483 if (io_task->pwrb_handle)
4484 free_wrb_handle(phba, pwrb_context, io_task->pwrb_handle);
4485 io_task->pwrb_handle = NULL;
4486 dma_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs,
4487 io_task->bhs_pa.u.a64.address);
4488 io_task->cmd_bhs = NULL;
4489 return -ENOMEM;
4490 }
beiscsi_iotask_v2(struct iscsi_task * task,struct scatterlist * sg,unsigned int num_sg,unsigned int xferlen,unsigned int writedir)4491 static int beiscsi_iotask_v2(struct iscsi_task *task, struct scatterlist *sg,
4492 unsigned int num_sg, unsigned int xferlen,
4493 unsigned int writedir)
4494 {
4495
4496 struct beiscsi_io_task *io_task = task->dd_data;
4497 struct iscsi_conn *conn = task->conn;
4498 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4499 struct beiscsi_hba *phba = beiscsi_conn->phba;
4500 struct iscsi_wrb *pwrb = NULL;
4501 unsigned int doorbell = 0;
4502
4503 pwrb = io_task->pwrb_handle->pwrb;
4504
4505 io_task->bhs_len = sizeof(struct be_cmd_bhs);
4506
4507 if (writedir) {
4508 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, type, pwrb,
4509 INI_WR_CMD);
4510 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp, pwrb, 1);
4511 } else {
4512 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, type, pwrb,
4513 INI_RD_CMD);
4514 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp, pwrb, 0);
4515 }
4516
4517 io_task->wrb_type = AMAP_GET_BITS(struct amap_iscsi_wrb_v2,
4518 type, pwrb);
4519
4520 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, lun, pwrb,
4521 cpu_to_be16(*(unsigned short *)
4522 &io_task->cmd_bhs->iscsi_hdr.lun));
4523 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, r2t_exp_dtl, pwrb, xferlen);
4524 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, wrb_idx, pwrb,
4525 io_task->pwrb_handle->wrb_index);
4526 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, cmdsn_itt, pwrb,
4527 be32_to_cpu(task->cmdsn));
4528 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sgl_idx, pwrb,
4529 io_task->psgl_handle->sgl_index);
4530
4531 hwi_write_sgl_v2(pwrb, sg, num_sg, io_task);
4532 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, pwrb,
4533 io_task->pwrb_handle->wrb_index);
4534 if (io_task->pwrb_context->plast_wrb)
4535 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb,
4536 io_task->pwrb_context->plast_wrb,
4537 io_task->pwrb_handle->wrb_index);
4538 io_task->pwrb_context->plast_wrb = pwrb;
4539
4540 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb));
4541
4542 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
4543 doorbell |= (io_task->pwrb_handle->wrb_index &
4544 DB_DEF_PDU_WRB_INDEX_MASK) <<
4545 DB_DEF_PDU_WRB_INDEX_SHIFT;
4546 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
4547 iowrite32(doorbell, phba->db_va +
4548 beiscsi_conn->doorbell_offset);
4549 return 0;
4550 }
4551
beiscsi_iotask(struct iscsi_task * task,struct scatterlist * sg,unsigned int num_sg,unsigned int xferlen,unsigned int writedir)4552 static int beiscsi_iotask(struct iscsi_task *task, struct scatterlist *sg,
4553 unsigned int num_sg, unsigned int xferlen,
4554 unsigned int writedir)
4555 {
4556
4557 struct beiscsi_io_task *io_task = task->dd_data;
4558 struct iscsi_conn *conn = task->conn;
4559 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4560 struct beiscsi_hba *phba = beiscsi_conn->phba;
4561 struct iscsi_wrb *pwrb = NULL;
4562 unsigned int doorbell = 0;
4563
4564 pwrb = io_task->pwrb_handle->pwrb;
4565 io_task->bhs_len = sizeof(struct be_cmd_bhs);
4566
4567 if (writedir) {
4568 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
4569 INI_WR_CMD);
4570 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 1);
4571 } else {
4572 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
4573 INI_RD_CMD);
4574 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0);
4575 }
4576
4577 io_task->wrb_type = AMAP_GET_BITS(struct amap_iscsi_wrb,
4578 type, pwrb);
4579
4580 AMAP_SET_BITS(struct amap_iscsi_wrb, lun, pwrb,
4581 cpu_to_be16(*(unsigned short *)
4582 &io_task->cmd_bhs->iscsi_hdr.lun));
4583 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb, xferlen);
4584 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb,
4585 io_task->pwrb_handle->wrb_index);
4586 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb,
4587 be32_to_cpu(task->cmdsn));
4588 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb,
4589 io_task->psgl_handle->sgl_index);
4590
4591 hwi_write_sgl(pwrb, sg, num_sg, io_task);
4592
4593 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb,
4594 io_task->pwrb_handle->wrb_index);
4595 if (io_task->pwrb_context->plast_wrb)
4596 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb,
4597 io_task->pwrb_context->plast_wrb,
4598 io_task->pwrb_handle->wrb_index);
4599 io_task->pwrb_context->plast_wrb = pwrb;
4600
4601 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb));
4602
4603 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
4604 doorbell |= (io_task->pwrb_handle->wrb_index &
4605 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT;
4606 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
4607
4608 iowrite32(doorbell, phba->db_va +
4609 beiscsi_conn->doorbell_offset);
4610 return 0;
4611 }
4612
beiscsi_mtask(struct iscsi_task * task)4613 static int beiscsi_mtask(struct iscsi_task *task)
4614 {
4615 struct beiscsi_io_task *io_task = task->dd_data;
4616 struct iscsi_conn *conn = task->conn;
4617 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4618 struct beiscsi_hba *phba = beiscsi_conn->phba;
4619 struct iscsi_wrb *pwrb = NULL;
4620 unsigned int doorbell = 0;
4621 unsigned int cid;
4622 unsigned int pwrb_typeoffset = 0;
4623 int ret = 0;
4624
4625 cid = beiscsi_conn->beiscsi_conn_cid;
4626 pwrb = io_task->pwrb_handle->pwrb;
4627
4628 if (is_chip_be2_be3r(phba)) {
4629 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb,
4630 be32_to_cpu(task->cmdsn));
4631 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb,
4632 io_task->pwrb_handle->wrb_index);
4633 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb,
4634 io_task->psgl_handle->sgl_index);
4635 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb,
4636 task->data_count);
4637 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb,
4638 io_task->pwrb_handle->wrb_index);
4639 if (io_task->pwrb_context->plast_wrb)
4640 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb,
4641 io_task->pwrb_context->plast_wrb,
4642 io_task->pwrb_handle->wrb_index);
4643 io_task->pwrb_context->plast_wrb = pwrb;
4644
4645 pwrb_typeoffset = BE_WRB_TYPE_OFFSET;
4646 } else {
4647 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, cmdsn_itt, pwrb,
4648 be32_to_cpu(task->cmdsn));
4649 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, wrb_idx, pwrb,
4650 io_task->pwrb_handle->wrb_index);
4651 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sgl_idx, pwrb,
4652 io_task->psgl_handle->sgl_index);
4653 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, r2t_exp_dtl, pwrb,
4654 task->data_count);
4655 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, pwrb,
4656 io_task->pwrb_handle->wrb_index);
4657 if (io_task->pwrb_context->plast_wrb)
4658 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb,
4659 io_task->pwrb_context->plast_wrb,
4660 io_task->pwrb_handle->wrb_index);
4661 io_task->pwrb_context->plast_wrb = pwrb;
4662
4663 pwrb_typeoffset = SKH_WRB_TYPE_OFFSET;
4664 }
4665
4666
4667 switch (task->hdr->opcode & ISCSI_OPCODE_MASK) {
4668 case ISCSI_OP_LOGIN:
4669 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb, 1);
4670 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset);
4671 ret = hwi_write_buffer(pwrb, task);
4672 break;
4673 case ISCSI_OP_NOOP_OUT:
4674 if (task->hdr->ttt != ISCSI_RESERVED_TAG) {
4675 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset);
4676 if (is_chip_be2_be3r(phba))
4677 AMAP_SET_BITS(struct amap_iscsi_wrb,
4678 dmsg, pwrb, 1);
4679 else
4680 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
4681 dmsg, pwrb, 1);
4682 } else {
4683 ADAPTER_SET_WRB_TYPE(pwrb, INI_RD_CMD, pwrb_typeoffset);
4684 if (is_chip_be2_be3r(phba))
4685 AMAP_SET_BITS(struct amap_iscsi_wrb,
4686 dmsg, pwrb, 0);
4687 else
4688 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
4689 dmsg, pwrb, 0);
4690 }
4691 ret = hwi_write_buffer(pwrb, task);
4692 break;
4693 case ISCSI_OP_TEXT:
4694 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset);
4695 ret = hwi_write_buffer(pwrb, task);
4696 break;
4697 case ISCSI_OP_SCSI_TMFUNC:
4698 ADAPTER_SET_WRB_TYPE(pwrb, INI_TMF_CMD, pwrb_typeoffset);
4699 ret = hwi_write_buffer(pwrb, task);
4700 break;
4701 case ISCSI_OP_LOGOUT:
4702 ADAPTER_SET_WRB_TYPE(pwrb, HWH_TYPE_LOGOUT, pwrb_typeoffset);
4703 ret = hwi_write_buffer(pwrb, task);
4704 break;
4705
4706 default:
4707 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
4708 "BM_%d : opcode =%d Not supported\n",
4709 task->hdr->opcode & ISCSI_OPCODE_MASK);
4710
4711 return -EINVAL;
4712 }
4713
4714 if (ret)
4715 return ret;
4716
4717 /* Set the task type */
4718 io_task->wrb_type = (is_chip_be2_be3r(phba)) ?
4719 AMAP_GET_BITS(struct amap_iscsi_wrb, type, pwrb) :
4720 AMAP_GET_BITS(struct amap_iscsi_wrb_v2, type, pwrb);
4721
4722 doorbell |= cid & DB_WRB_POST_CID_MASK;
4723 doorbell |= (io_task->pwrb_handle->wrb_index &
4724 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT;
4725 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
4726 iowrite32(doorbell, phba->db_va +
4727 beiscsi_conn->doorbell_offset);
4728 return 0;
4729 }
4730
beiscsi_task_xmit(struct iscsi_task * task)4731 static int beiscsi_task_xmit(struct iscsi_task *task)
4732 {
4733 struct beiscsi_io_task *io_task = task->dd_data;
4734 struct scsi_cmnd *sc = task->sc;
4735 struct beiscsi_hba *phba;
4736 struct scatterlist *sg;
4737 int num_sg;
4738 unsigned int writedir = 0, xferlen = 0;
4739
4740 phba = io_task->conn->phba;
4741 /**
4742 * HBA in error includes BEISCSI_HBA_FW_TIMEOUT. IO path might be
4743 * operational if FW still gets heartbeat from EP FW. Is management
4744 * path really needed to continue further?
4745 */
4746 if (!beiscsi_hba_is_online(phba))
4747 return -EIO;
4748
4749 if (!io_task->conn->login_in_progress)
4750 task->hdr->exp_statsn = 0;
4751
4752 if (!sc)
4753 return beiscsi_mtask(task);
4754
4755 io_task->scsi_cmnd = sc;
4756 io_task->num_sg = 0;
4757 num_sg = scsi_dma_map(sc);
4758 if (num_sg < 0) {
4759 beiscsi_log(phba, KERN_ERR,
4760 BEISCSI_LOG_IO | BEISCSI_LOG_ISCSI,
4761 "BM_%d : scsi_dma_map Failed "
4762 "Driver_ITT : 0x%x ITT : 0x%x Xferlen : 0x%x\n",
4763 be32_to_cpu(io_task->cmd_bhs->iscsi_hdr.itt),
4764 io_task->libiscsi_itt, scsi_bufflen(sc));
4765
4766 return num_sg;
4767 }
4768 /**
4769 * For scsi cmd task, check num_sg before unmapping in cleanup_task.
4770 * For management task, cleanup_task checks mtask_addr before unmapping.
4771 */
4772 io_task->num_sg = num_sg;
4773 xferlen = scsi_bufflen(sc);
4774 sg = scsi_sglist(sc);
4775 if (sc->sc_data_direction == DMA_TO_DEVICE)
4776 writedir = 1;
4777 else
4778 writedir = 0;
4779
4780 return phba->iotask_fn(task, sg, num_sg, xferlen, writedir);
4781 }
4782
4783 /**
4784 * beiscsi_bsg_request - handle bsg request from ISCSI transport
4785 * @job: job to handle
4786 */
beiscsi_bsg_request(struct bsg_job * job)4787 static int beiscsi_bsg_request(struct bsg_job *job)
4788 {
4789 struct Scsi_Host *shost;
4790 struct beiscsi_hba *phba;
4791 struct iscsi_bsg_request *bsg_req = job->request;
4792 int rc = -EINVAL;
4793 unsigned int tag;
4794 struct be_dma_mem nonemb_cmd;
4795 struct be_cmd_resp_hdr *resp;
4796 struct iscsi_bsg_reply *bsg_reply = job->reply;
4797 unsigned short status, extd_status;
4798
4799 shost = iscsi_job_to_shost(job);
4800 phba = iscsi_host_priv(shost);
4801
4802 if (!beiscsi_hba_is_online(phba)) {
4803 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
4804 "BM_%d : HBA in error 0x%lx\n", phba->state);
4805 return -ENXIO;
4806 }
4807
4808 switch (bsg_req->msgcode) {
4809 case ISCSI_BSG_HST_VENDOR:
4810 nonemb_cmd.va = dma_alloc_coherent(&phba->ctrl.pdev->dev,
4811 job->request_payload.payload_len,
4812 &nonemb_cmd.dma, GFP_KERNEL);
4813 if (nonemb_cmd.va == NULL) {
4814 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
4815 "BM_%d : Failed to allocate memory for "
4816 "beiscsi_bsg_request\n");
4817 return -ENOMEM;
4818 }
4819 tag = mgmt_vendor_specific_fw_cmd(&phba->ctrl, phba, job,
4820 &nonemb_cmd);
4821 if (!tag) {
4822 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
4823 "BM_%d : MBX Tag Allocation Failed\n");
4824
4825 dma_free_coherent(&phba->ctrl.pdev->dev, nonemb_cmd.size,
4826 nonemb_cmd.va, nonemb_cmd.dma);
4827 return -EAGAIN;
4828 }
4829
4830 rc = wait_event_interruptible_timeout(
4831 phba->ctrl.mcc_wait[tag],
4832 phba->ctrl.mcc_tag_status[tag],
4833 msecs_to_jiffies(
4834 BEISCSI_HOST_MBX_TIMEOUT));
4835
4836 if (!test_bit(BEISCSI_HBA_ONLINE, &phba->state)) {
4837 clear_bit(MCC_TAG_STATE_RUNNING,
4838 &phba->ctrl.ptag_state[tag].tag_state);
4839 dma_free_coherent(&phba->ctrl.pdev->dev, nonemb_cmd.size,
4840 nonemb_cmd.va, nonemb_cmd.dma);
4841 return -EIO;
4842 }
4843 extd_status = (phba->ctrl.mcc_tag_status[tag] &
4844 CQE_STATUS_ADDL_MASK) >> CQE_STATUS_ADDL_SHIFT;
4845 status = phba->ctrl.mcc_tag_status[tag] & CQE_STATUS_MASK;
4846 free_mcc_wrb(&phba->ctrl, tag);
4847 resp = (struct be_cmd_resp_hdr *)nonemb_cmd.va;
4848 sg_copy_from_buffer(job->reply_payload.sg_list,
4849 job->reply_payload.sg_cnt,
4850 nonemb_cmd.va, (resp->response_length
4851 + sizeof(*resp)));
4852 bsg_reply->reply_payload_rcv_len = resp->response_length;
4853 bsg_reply->result = status;
4854 bsg_job_done(job, bsg_reply->result,
4855 bsg_reply->reply_payload_rcv_len);
4856 dma_free_coherent(&phba->ctrl.pdev->dev, nonemb_cmd.size,
4857 nonemb_cmd.va, nonemb_cmd.dma);
4858 if (status || extd_status) {
4859 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
4860 "BM_%d : MBX Cmd Failed"
4861 " status = %d extd_status = %d\n",
4862 status, extd_status);
4863
4864 return -EIO;
4865 } else {
4866 rc = 0;
4867 }
4868 break;
4869
4870 default:
4871 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
4872 "BM_%d : Unsupported bsg command: 0x%x\n",
4873 bsg_req->msgcode);
4874 break;
4875 }
4876
4877 return rc;
4878 }
4879
beiscsi_hba_attrs_init(struct beiscsi_hba * phba)4880 static void beiscsi_hba_attrs_init(struct beiscsi_hba *phba)
4881 {
4882 /* Set the logging parameter */
4883 beiscsi_log_enable_init(phba, beiscsi_log_enable);
4884 }
4885
beiscsi_start_boot_work(struct beiscsi_hba * phba,unsigned int s_handle)4886 void beiscsi_start_boot_work(struct beiscsi_hba *phba, unsigned int s_handle)
4887 {
4888 if (phba->boot_struct.boot_kset)
4889 return;
4890
4891 /* skip if boot work is already in progress */
4892 if (test_and_set_bit(BEISCSI_HBA_BOOT_WORK, &phba->state))
4893 return;
4894
4895 phba->boot_struct.retry = 3;
4896 phba->boot_struct.tag = 0;
4897 phba->boot_struct.s_handle = s_handle;
4898 phba->boot_struct.action = BEISCSI_BOOT_GET_SHANDLE;
4899 schedule_work(&phba->boot_work);
4900 }
4901
4902 #define BEISCSI_SYSFS_ISCSI_BOOT_FLAGS 3
4903 /*
4904 * beiscsi_show_boot_tgt_info()
4905 * Boot flag info for iscsi-utilities
4906 * Bit 0 Block valid flag
4907 * Bit 1 Firmware booting selected
4908 */
beiscsi_show_boot_tgt_info(void * data,int type,char * buf)4909 static ssize_t beiscsi_show_boot_tgt_info(void *data, int type, char *buf)
4910 {
4911 struct beiscsi_hba *phba = data;
4912 struct mgmt_session_info *boot_sess = &phba->boot_struct.boot_sess;
4913 struct mgmt_conn_info *boot_conn = &boot_sess->conn_list[0];
4914 char *str = buf;
4915 int rc = -EPERM;
4916
4917 switch (type) {
4918 case ISCSI_BOOT_TGT_NAME:
4919 rc = sprintf(buf, "%.*s\n",
4920 (int)strlen(boot_sess->target_name),
4921 (char *)&boot_sess->target_name);
4922 break;
4923 case ISCSI_BOOT_TGT_IP_ADDR:
4924 if (boot_conn->dest_ipaddr.ip_type == BEISCSI_IP_TYPE_V4)
4925 rc = sprintf(buf, "%pI4\n",
4926 (char *)&boot_conn->dest_ipaddr.addr);
4927 else
4928 rc = sprintf(str, "%pI6\n",
4929 (char *)&boot_conn->dest_ipaddr.addr);
4930 break;
4931 case ISCSI_BOOT_TGT_PORT:
4932 rc = sprintf(str, "%d\n", boot_conn->dest_port);
4933 break;
4934
4935 case ISCSI_BOOT_TGT_CHAP_NAME:
4936 rc = sprintf(str, "%.*s\n",
4937 boot_conn->negotiated_login_options.auth_data.chap.
4938 target_chap_name_length,
4939 (char *)&boot_conn->negotiated_login_options.
4940 auth_data.chap.target_chap_name);
4941 break;
4942 case ISCSI_BOOT_TGT_CHAP_SECRET:
4943 rc = sprintf(str, "%.*s\n",
4944 boot_conn->negotiated_login_options.auth_data.chap.
4945 target_secret_length,
4946 (char *)&boot_conn->negotiated_login_options.
4947 auth_data.chap.target_secret);
4948 break;
4949 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
4950 rc = sprintf(str, "%.*s\n",
4951 boot_conn->negotiated_login_options.auth_data.chap.
4952 intr_chap_name_length,
4953 (char *)&boot_conn->negotiated_login_options.
4954 auth_data.chap.intr_chap_name);
4955 break;
4956 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
4957 rc = sprintf(str, "%.*s\n",
4958 boot_conn->negotiated_login_options.auth_data.chap.
4959 intr_secret_length,
4960 (char *)&boot_conn->negotiated_login_options.
4961 auth_data.chap.intr_secret);
4962 break;
4963 case ISCSI_BOOT_TGT_FLAGS:
4964 rc = sprintf(str, "%d\n", BEISCSI_SYSFS_ISCSI_BOOT_FLAGS);
4965 break;
4966 case ISCSI_BOOT_TGT_NIC_ASSOC:
4967 rc = sprintf(str, "0\n");
4968 break;
4969 }
4970 return rc;
4971 }
4972
beiscsi_show_boot_ini_info(void * data,int type,char * buf)4973 static ssize_t beiscsi_show_boot_ini_info(void *data, int type, char *buf)
4974 {
4975 struct beiscsi_hba *phba = data;
4976 char *str = buf;
4977 int rc = -EPERM;
4978
4979 switch (type) {
4980 case ISCSI_BOOT_INI_INITIATOR_NAME:
4981 rc = sprintf(str, "%s\n",
4982 phba->boot_struct.boot_sess.initiator_iscsiname);
4983 break;
4984 }
4985 return rc;
4986 }
4987
beiscsi_show_boot_eth_info(void * data,int type,char * buf)4988 static ssize_t beiscsi_show_boot_eth_info(void *data, int type, char *buf)
4989 {
4990 struct beiscsi_hba *phba = data;
4991 char *str = buf;
4992 int rc = -EPERM;
4993
4994 switch (type) {
4995 case ISCSI_BOOT_ETH_FLAGS:
4996 rc = sprintf(str, "%d\n", BEISCSI_SYSFS_ISCSI_BOOT_FLAGS);
4997 break;
4998 case ISCSI_BOOT_ETH_INDEX:
4999 rc = sprintf(str, "0\n");
5000 break;
5001 case ISCSI_BOOT_ETH_MAC:
5002 rc = beiscsi_get_macaddr(str, phba);
5003 break;
5004 }
5005 return rc;
5006 }
5007
beiscsi_tgt_get_attr_visibility(void * data,int type)5008 static umode_t beiscsi_tgt_get_attr_visibility(void *data, int type)
5009 {
5010 umode_t rc = 0;
5011
5012 switch (type) {
5013 case ISCSI_BOOT_TGT_NAME:
5014 case ISCSI_BOOT_TGT_IP_ADDR:
5015 case ISCSI_BOOT_TGT_PORT:
5016 case ISCSI_BOOT_TGT_CHAP_NAME:
5017 case ISCSI_BOOT_TGT_CHAP_SECRET:
5018 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
5019 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
5020 case ISCSI_BOOT_TGT_NIC_ASSOC:
5021 case ISCSI_BOOT_TGT_FLAGS:
5022 rc = S_IRUGO;
5023 break;
5024 }
5025 return rc;
5026 }
5027
beiscsi_ini_get_attr_visibility(void * data,int type)5028 static umode_t beiscsi_ini_get_attr_visibility(void *data, int type)
5029 {
5030 umode_t rc = 0;
5031
5032 switch (type) {
5033 case ISCSI_BOOT_INI_INITIATOR_NAME:
5034 rc = S_IRUGO;
5035 break;
5036 }
5037 return rc;
5038 }
5039
beiscsi_eth_get_attr_visibility(void * data,int type)5040 static umode_t beiscsi_eth_get_attr_visibility(void *data, int type)
5041 {
5042 umode_t rc = 0;
5043
5044 switch (type) {
5045 case ISCSI_BOOT_ETH_FLAGS:
5046 case ISCSI_BOOT_ETH_MAC:
5047 case ISCSI_BOOT_ETH_INDEX:
5048 rc = S_IRUGO;
5049 break;
5050 }
5051 return rc;
5052 }
5053
beiscsi_boot_kobj_release(void * data)5054 static void beiscsi_boot_kobj_release(void *data)
5055 {
5056 struct beiscsi_hba *phba = data;
5057
5058 scsi_host_put(phba->shost);
5059 }
5060
beiscsi_boot_create_kset(struct beiscsi_hba * phba)5061 static int beiscsi_boot_create_kset(struct beiscsi_hba *phba)
5062 {
5063 struct boot_struct *bs = &phba->boot_struct;
5064 struct iscsi_boot_kobj *boot_kobj;
5065
5066 if (bs->boot_kset) {
5067 __beiscsi_log(phba, KERN_ERR,
5068 "BM_%d: boot_kset already created\n");
5069 return 0;
5070 }
5071
5072 bs->boot_kset = iscsi_boot_create_host_kset(phba->shost->host_no);
5073 if (!bs->boot_kset) {
5074 __beiscsi_log(phba, KERN_ERR,
5075 "BM_%d: boot_kset alloc failed\n");
5076 return -ENOMEM;
5077 }
5078
5079 /* get shost ref because the show function will refer phba */
5080 if (!scsi_host_get(phba->shost))
5081 goto free_kset;
5082
5083 boot_kobj = iscsi_boot_create_target(bs->boot_kset, 0, phba,
5084 beiscsi_show_boot_tgt_info,
5085 beiscsi_tgt_get_attr_visibility,
5086 beiscsi_boot_kobj_release);
5087 if (!boot_kobj)
5088 goto put_shost;
5089
5090 if (!scsi_host_get(phba->shost))
5091 goto free_kset;
5092
5093 boot_kobj = iscsi_boot_create_initiator(bs->boot_kset, 0, phba,
5094 beiscsi_show_boot_ini_info,
5095 beiscsi_ini_get_attr_visibility,
5096 beiscsi_boot_kobj_release);
5097 if (!boot_kobj)
5098 goto put_shost;
5099
5100 if (!scsi_host_get(phba->shost))
5101 goto free_kset;
5102
5103 boot_kobj = iscsi_boot_create_ethernet(bs->boot_kset, 0, phba,
5104 beiscsi_show_boot_eth_info,
5105 beiscsi_eth_get_attr_visibility,
5106 beiscsi_boot_kobj_release);
5107 if (!boot_kobj)
5108 goto put_shost;
5109
5110 return 0;
5111
5112 put_shost:
5113 scsi_host_put(phba->shost);
5114 free_kset:
5115 iscsi_boot_destroy_kset(bs->boot_kset);
5116 bs->boot_kset = NULL;
5117 return -ENOMEM;
5118 }
5119
beiscsi_boot_work(struct work_struct * work)5120 static void beiscsi_boot_work(struct work_struct *work)
5121 {
5122 struct beiscsi_hba *phba =
5123 container_of(work, struct beiscsi_hba, boot_work);
5124 struct boot_struct *bs = &phba->boot_struct;
5125 unsigned int tag = 0;
5126
5127 if (!beiscsi_hba_is_online(phba))
5128 return;
5129
5130 beiscsi_log(phba, KERN_INFO,
5131 BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX,
5132 "BM_%d : %s action %d\n",
5133 __func__, phba->boot_struct.action);
5134
5135 switch (phba->boot_struct.action) {
5136 case BEISCSI_BOOT_REOPEN_SESS:
5137 tag = beiscsi_boot_reopen_sess(phba);
5138 break;
5139 case BEISCSI_BOOT_GET_SHANDLE:
5140 tag = __beiscsi_boot_get_shandle(phba, 1);
5141 break;
5142 case BEISCSI_BOOT_GET_SINFO:
5143 tag = beiscsi_boot_get_sinfo(phba);
5144 break;
5145 case BEISCSI_BOOT_LOGOUT_SESS:
5146 tag = beiscsi_boot_logout_sess(phba);
5147 break;
5148 case BEISCSI_BOOT_CREATE_KSET:
5149 beiscsi_boot_create_kset(phba);
5150 /**
5151 * updated boot_kset is made visible to all before
5152 * ending the boot work.
5153 */
5154 mb();
5155 clear_bit(BEISCSI_HBA_BOOT_WORK, &phba->state);
5156 return;
5157 }
5158 if (!tag) {
5159 if (bs->retry--)
5160 schedule_work(&phba->boot_work);
5161 else
5162 clear_bit(BEISCSI_HBA_BOOT_WORK, &phba->state);
5163 }
5164 }
5165
beiscsi_eqd_update_work(struct work_struct * work)5166 static void beiscsi_eqd_update_work(struct work_struct *work)
5167 {
5168 struct hwi_context_memory *phwi_context;
5169 struct be_set_eqd set_eqd[MAX_CPUS];
5170 struct hwi_controller *phwi_ctrlr;
5171 struct be_eq_obj *pbe_eq;
5172 struct beiscsi_hba *phba;
5173 unsigned int pps, delta;
5174 struct be_aic_obj *aic;
5175 int eqd, i, num = 0;
5176 unsigned long now;
5177
5178 phba = container_of(work, struct beiscsi_hba, eqd_update.work);
5179 if (!beiscsi_hba_is_online(phba))
5180 return;
5181
5182 phwi_ctrlr = phba->phwi_ctrlr;
5183 phwi_context = phwi_ctrlr->phwi_ctxt;
5184
5185 for (i = 0; i <= phba->num_cpus; i++) {
5186 aic = &phba->aic_obj[i];
5187 pbe_eq = &phwi_context->be_eq[i];
5188 now = jiffies;
5189 if (!aic->jiffies || time_before(now, aic->jiffies) ||
5190 pbe_eq->cq_count < aic->eq_prev) {
5191 aic->jiffies = now;
5192 aic->eq_prev = pbe_eq->cq_count;
5193 continue;
5194 }
5195 delta = jiffies_to_msecs(now - aic->jiffies);
5196 pps = (((u32)(pbe_eq->cq_count - aic->eq_prev) * 1000) / delta);
5197 eqd = (pps / 1500) << 2;
5198
5199 if (eqd < 8)
5200 eqd = 0;
5201 eqd = min_t(u32, eqd, BEISCSI_EQ_DELAY_MAX);
5202 eqd = max_t(u32, eqd, BEISCSI_EQ_DELAY_MIN);
5203
5204 aic->jiffies = now;
5205 aic->eq_prev = pbe_eq->cq_count;
5206
5207 if (eqd != aic->prev_eqd) {
5208 set_eqd[num].delay_multiplier = (eqd * 65)/100;
5209 set_eqd[num].eq_id = pbe_eq->q.id;
5210 aic->prev_eqd = eqd;
5211 num++;
5212 }
5213 }
5214 if (num)
5215 /* completion of this is ignored */
5216 beiscsi_modify_eq_delay(phba, set_eqd, num);
5217
5218 schedule_delayed_work(&phba->eqd_update,
5219 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL));
5220 }
5221
beiscsi_hw_tpe_check(struct timer_list * t)5222 static void beiscsi_hw_tpe_check(struct timer_list *t)
5223 {
5224 struct beiscsi_hba *phba = from_timer(phba, t, hw_check);
5225 u32 wait;
5226
5227 /* if not TPE, do nothing */
5228 if (!beiscsi_detect_tpe(phba))
5229 return;
5230
5231 /* wait default 4000ms before recovering */
5232 wait = 4000;
5233 if (phba->ue2rp > BEISCSI_UE_DETECT_INTERVAL)
5234 wait = phba->ue2rp - BEISCSI_UE_DETECT_INTERVAL;
5235 queue_delayed_work(phba->wq, &phba->recover_port,
5236 msecs_to_jiffies(wait));
5237 }
5238
beiscsi_hw_health_check(struct timer_list * t)5239 static void beiscsi_hw_health_check(struct timer_list *t)
5240 {
5241 struct beiscsi_hba *phba = from_timer(phba, t, hw_check);
5242
5243 beiscsi_detect_ue(phba);
5244 if (beiscsi_detect_ue(phba)) {
5245 __beiscsi_log(phba, KERN_ERR,
5246 "BM_%d : port in error: %lx\n", phba->state);
5247 /* sessions are no longer valid, so first fail the sessions */
5248 queue_work(phba->wq, &phba->sess_work);
5249
5250 /* detect UER supported */
5251 if (!test_bit(BEISCSI_HBA_UER_SUPP, &phba->state))
5252 return;
5253 /* modify this timer to check TPE */
5254 phba->hw_check.function = beiscsi_hw_tpe_check;
5255 }
5256
5257 mod_timer(&phba->hw_check,
5258 jiffies + msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL));
5259 }
5260
5261 /*
5262 * beiscsi_enable_port()- Enables the disabled port.
5263 * Only port resources freed in disable function are reallocated.
5264 * This is called in HBA error handling path.
5265 *
5266 * @phba: Instance of driver private structure
5267 *
5268 **/
beiscsi_enable_port(struct beiscsi_hba * phba)5269 static int beiscsi_enable_port(struct beiscsi_hba *phba)
5270 {
5271 struct hwi_context_memory *phwi_context;
5272 struct hwi_controller *phwi_ctrlr;
5273 struct be_eq_obj *pbe_eq;
5274 int ret, i;
5275
5276 if (test_bit(BEISCSI_HBA_ONLINE, &phba->state)) {
5277 __beiscsi_log(phba, KERN_ERR,
5278 "BM_%d : %s : port is online %lx\n",
5279 __func__, phba->state);
5280 return 0;
5281 }
5282
5283 ret = beiscsi_init_sliport(phba);
5284 if (ret)
5285 return ret;
5286
5287 be2iscsi_enable_msix(phba);
5288
5289 beiscsi_get_params(phba);
5290 beiscsi_set_host_data(phba);
5291 /* Re-enable UER. If different TPE occurs then it is recoverable. */
5292 beiscsi_set_uer_feature(phba);
5293
5294 phba->shost->max_id = phba->params.cxns_per_ctrl - 1;
5295 phba->shost->can_queue = phba->params.ios_per_ctrl;
5296 ret = beiscsi_init_port(phba);
5297 if (ret < 0) {
5298 __beiscsi_log(phba, KERN_ERR,
5299 "BM_%d : init port failed\n");
5300 goto disable_msix;
5301 }
5302
5303 for (i = 0; i < MAX_MCC_CMD; i++) {
5304 init_waitqueue_head(&phba->ctrl.mcc_wait[i + 1]);
5305 phba->ctrl.mcc_tag[i] = i + 1;
5306 phba->ctrl.mcc_tag_status[i + 1] = 0;
5307 phba->ctrl.mcc_tag_available++;
5308 }
5309
5310 phwi_ctrlr = phba->phwi_ctrlr;
5311 phwi_context = phwi_ctrlr->phwi_ctxt;
5312 for (i = 0; i < phba->num_cpus; i++) {
5313 pbe_eq = &phwi_context->be_eq[i];
5314 irq_poll_init(&pbe_eq->iopoll, be_iopoll_budget, be_iopoll);
5315 }
5316
5317 i = (phba->pcidev->msix_enabled) ? i : 0;
5318 /* Work item for MCC handling */
5319 pbe_eq = &phwi_context->be_eq[i];
5320 INIT_WORK(&pbe_eq->mcc_work, beiscsi_mcc_work);
5321
5322 ret = beiscsi_init_irqs(phba);
5323 if (ret < 0) {
5324 __beiscsi_log(phba, KERN_ERR,
5325 "BM_%d : setup IRQs failed %d\n", ret);
5326 goto cleanup_port;
5327 }
5328 hwi_enable_intr(phba);
5329 /* port operational: clear all error bits */
5330 set_bit(BEISCSI_HBA_ONLINE, &phba->state);
5331 __beiscsi_log(phba, KERN_INFO,
5332 "BM_%d : port online: 0x%lx\n", phba->state);
5333
5334 /* start hw_check timer and eqd_update work */
5335 schedule_delayed_work(&phba->eqd_update,
5336 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL));
5337
5338 /**
5339 * Timer function gets modified for TPE detection.
5340 * Always reinit to do health check first.
5341 */
5342 phba->hw_check.function = beiscsi_hw_health_check;
5343 mod_timer(&phba->hw_check,
5344 jiffies + msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL));
5345 return 0;
5346
5347 cleanup_port:
5348 for (i = 0; i < phba->num_cpus; i++) {
5349 pbe_eq = &phwi_context->be_eq[i];
5350 irq_poll_disable(&pbe_eq->iopoll);
5351 }
5352 hwi_cleanup_port(phba);
5353
5354 disable_msix:
5355 pci_free_irq_vectors(phba->pcidev);
5356 return ret;
5357 }
5358
5359 /*
5360 * beiscsi_disable_port()- Disable port and cleanup driver resources.
5361 * This is called in HBA error handling and driver removal.
5362 * @phba: Instance Priv structure
5363 * @unload: indicate driver is unloading
5364 *
5365 * Free the OS and HW resources held by the driver
5366 **/
beiscsi_disable_port(struct beiscsi_hba * phba,int unload)5367 static void beiscsi_disable_port(struct beiscsi_hba *phba, int unload)
5368 {
5369 struct hwi_context_memory *phwi_context;
5370 struct hwi_controller *phwi_ctrlr;
5371 struct be_eq_obj *pbe_eq;
5372 unsigned int i;
5373
5374 if (!test_and_clear_bit(BEISCSI_HBA_ONLINE, &phba->state))
5375 return;
5376
5377 phwi_ctrlr = phba->phwi_ctrlr;
5378 phwi_context = phwi_ctrlr->phwi_ctxt;
5379 hwi_disable_intr(phba);
5380 beiscsi_free_irqs(phba);
5381 pci_free_irq_vectors(phba->pcidev);
5382
5383 for (i = 0; i < phba->num_cpus; i++) {
5384 pbe_eq = &phwi_context->be_eq[i];
5385 irq_poll_disable(&pbe_eq->iopoll);
5386 }
5387 cancel_delayed_work_sync(&phba->eqd_update);
5388 cancel_work_sync(&phba->boot_work);
5389 /* WQ might be running cancel queued mcc_work if we are not exiting */
5390 if (!unload && beiscsi_hba_in_error(phba)) {
5391 pbe_eq = &phwi_context->be_eq[i];
5392 cancel_work_sync(&pbe_eq->mcc_work);
5393 }
5394 hwi_cleanup_port(phba);
5395 beiscsi_cleanup_port(phba);
5396 }
5397
beiscsi_sess_work(struct work_struct * work)5398 static void beiscsi_sess_work(struct work_struct *work)
5399 {
5400 struct beiscsi_hba *phba;
5401
5402 phba = container_of(work, struct beiscsi_hba, sess_work);
5403 /*
5404 * This work gets scheduled only in case of HBA error.
5405 * Old sessions are gone so need to be re-established.
5406 * iscsi_session_failure needs process context hence this work.
5407 */
5408 iscsi_host_for_each_session(phba->shost, beiscsi_session_fail);
5409 }
5410
beiscsi_recover_port(struct work_struct * work)5411 static void beiscsi_recover_port(struct work_struct *work)
5412 {
5413 struct beiscsi_hba *phba;
5414
5415 phba = container_of(work, struct beiscsi_hba, recover_port.work);
5416 beiscsi_disable_port(phba, 0);
5417 beiscsi_enable_port(phba);
5418 }
5419
beiscsi_eeh_err_detected(struct pci_dev * pdev,pci_channel_state_t state)5420 static pci_ers_result_t beiscsi_eeh_err_detected(struct pci_dev *pdev,
5421 pci_channel_state_t state)
5422 {
5423 struct beiscsi_hba *phba = NULL;
5424
5425 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev);
5426 set_bit(BEISCSI_HBA_PCI_ERR, &phba->state);
5427
5428 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5429 "BM_%d : EEH error detected\n");
5430
5431 /* first stop UE detection when PCI error detected */
5432 del_timer_sync(&phba->hw_check);
5433 cancel_delayed_work_sync(&phba->recover_port);
5434
5435 /* sessions are no longer valid, so first fail the sessions */
5436 iscsi_host_for_each_session(phba->shost, beiscsi_session_fail);
5437 beiscsi_disable_port(phba, 0);
5438
5439 if (state == pci_channel_io_perm_failure) {
5440 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5441 "BM_%d : EEH : State PERM Failure");
5442 return PCI_ERS_RESULT_DISCONNECT;
5443 }
5444
5445 pci_disable_device(pdev);
5446
5447 /* The error could cause the FW to trigger a flash debug dump.
5448 * Resetting the card while flash dump is in progress
5449 * can cause it not to recover; wait for it to finish.
5450 * Wait only for first function as it is needed only once per
5451 * adapter.
5452 **/
5453 if (pdev->devfn == 0)
5454 ssleep(30);
5455
5456 return PCI_ERS_RESULT_NEED_RESET;
5457 }
5458
beiscsi_eeh_reset(struct pci_dev * pdev)5459 static pci_ers_result_t beiscsi_eeh_reset(struct pci_dev *pdev)
5460 {
5461 struct beiscsi_hba *phba = NULL;
5462 int status = 0;
5463
5464 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev);
5465
5466 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5467 "BM_%d : EEH Reset\n");
5468
5469 status = pci_enable_device(pdev);
5470 if (status)
5471 return PCI_ERS_RESULT_DISCONNECT;
5472
5473 pci_set_master(pdev);
5474 pci_set_power_state(pdev, PCI_D0);
5475 pci_restore_state(pdev);
5476
5477 status = beiscsi_check_fw_rdy(phba);
5478 if (status) {
5479 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
5480 "BM_%d : EEH Reset Completed\n");
5481 } else {
5482 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
5483 "BM_%d : EEH Reset Completion Failure\n");
5484 return PCI_ERS_RESULT_DISCONNECT;
5485 }
5486
5487 return PCI_ERS_RESULT_RECOVERED;
5488 }
5489
beiscsi_eeh_resume(struct pci_dev * pdev)5490 static void beiscsi_eeh_resume(struct pci_dev *pdev)
5491 {
5492 struct beiscsi_hba *phba;
5493 int ret;
5494
5495 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev);
5496 pci_save_state(pdev);
5497
5498 ret = beiscsi_enable_port(phba);
5499 if (ret)
5500 __beiscsi_log(phba, KERN_ERR,
5501 "BM_%d : AER EEH resume failed\n");
5502 }
5503
beiscsi_dev_probe(struct pci_dev * pcidev,const struct pci_device_id * id)5504 static int beiscsi_dev_probe(struct pci_dev *pcidev,
5505 const struct pci_device_id *id)
5506 {
5507 struct hwi_context_memory *phwi_context;
5508 struct hwi_controller *phwi_ctrlr;
5509 struct beiscsi_hba *phba = NULL;
5510 struct be_eq_obj *pbe_eq;
5511 unsigned int s_handle;
5512 char wq_name[20];
5513 int ret, i;
5514
5515 ret = beiscsi_enable_pci(pcidev);
5516 if (ret < 0) {
5517 dev_err(&pcidev->dev,
5518 "beiscsi_dev_probe - Failed to enable pci device\n");
5519 return ret;
5520 }
5521
5522 phba = beiscsi_hba_alloc(pcidev);
5523 if (!phba) {
5524 dev_err(&pcidev->dev,
5525 "beiscsi_dev_probe - Failed in beiscsi_hba_alloc\n");
5526 ret = -ENOMEM;
5527 goto disable_pci;
5528 }
5529
5530 /* Enable EEH reporting */
5531 ret = pci_enable_pcie_error_reporting(pcidev);
5532 if (ret)
5533 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
5534 "BM_%d : PCIe Error Reporting "
5535 "Enabling Failed\n");
5536
5537 pci_save_state(pcidev);
5538
5539 /* Initialize Driver configuration Paramters */
5540 beiscsi_hba_attrs_init(phba);
5541
5542 phba->mac_addr_set = false;
5543
5544 switch (pcidev->device) {
5545 case BE_DEVICE_ID1:
5546 case OC_DEVICE_ID1:
5547 case OC_DEVICE_ID2:
5548 phba->generation = BE_GEN2;
5549 phba->iotask_fn = beiscsi_iotask;
5550 dev_warn(&pcidev->dev,
5551 "Obsolete/Unsupported BE2 Adapter Family\n");
5552 break;
5553 case BE_DEVICE_ID2:
5554 case OC_DEVICE_ID3:
5555 phba->generation = BE_GEN3;
5556 phba->iotask_fn = beiscsi_iotask;
5557 break;
5558 case OC_SKH_ID1:
5559 phba->generation = BE_GEN4;
5560 phba->iotask_fn = beiscsi_iotask_v2;
5561 break;
5562 default:
5563 phba->generation = 0;
5564 }
5565
5566 ret = be_ctrl_init(phba, pcidev);
5567 if (ret) {
5568 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5569 "BM_%d : be_ctrl_init failed\n");
5570 goto free_hba;
5571 }
5572
5573 ret = beiscsi_init_sliport(phba);
5574 if (ret)
5575 goto free_hba;
5576
5577 spin_lock_init(&phba->io_sgl_lock);
5578 spin_lock_init(&phba->mgmt_sgl_lock);
5579 spin_lock_init(&phba->async_pdu_lock);
5580 ret = beiscsi_get_fw_config(&phba->ctrl, phba);
5581 if (ret != 0) {
5582 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5583 "BM_%d : Error getting fw config\n");
5584 goto free_port;
5585 }
5586 beiscsi_get_port_name(&phba->ctrl, phba);
5587 beiscsi_get_params(phba);
5588 beiscsi_set_host_data(phba);
5589 beiscsi_set_uer_feature(phba);
5590
5591 be2iscsi_enable_msix(phba);
5592
5593 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
5594 "BM_%d : num_cpus = %d\n",
5595 phba->num_cpus);
5596
5597 phba->shost->max_id = phba->params.cxns_per_ctrl;
5598 phba->shost->can_queue = phba->params.ios_per_ctrl;
5599 ret = beiscsi_get_memory(phba);
5600 if (ret < 0) {
5601 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5602 "BM_%d : alloc host mem failed\n");
5603 goto free_port;
5604 }
5605
5606 ret = beiscsi_init_port(phba);
5607 if (ret < 0) {
5608 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5609 "BM_%d : init port failed\n");
5610 beiscsi_free_mem(phba);
5611 goto free_port;
5612 }
5613
5614 for (i = 0; i < MAX_MCC_CMD; i++) {
5615 init_waitqueue_head(&phba->ctrl.mcc_wait[i + 1]);
5616 phba->ctrl.mcc_tag[i] = i + 1;
5617 phba->ctrl.mcc_tag_status[i + 1] = 0;
5618 phba->ctrl.mcc_tag_available++;
5619 memset(&phba->ctrl.ptag_state[i].tag_mem_state, 0,
5620 sizeof(struct be_dma_mem));
5621 }
5622
5623 phba->ctrl.mcc_alloc_index = phba->ctrl.mcc_free_index = 0;
5624
5625 snprintf(wq_name, sizeof(wq_name), "beiscsi_%02x_wq",
5626 phba->shost->host_no);
5627 phba->wq = alloc_workqueue("%s", WQ_MEM_RECLAIM, 1, wq_name);
5628 if (!phba->wq) {
5629 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5630 "BM_%d : beiscsi_dev_probe-"
5631 "Failed to allocate work queue\n");
5632 ret = -ENOMEM;
5633 goto free_twq;
5634 }
5635
5636 INIT_DELAYED_WORK(&phba->eqd_update, beiscsi_eqd_update_work);
5637
5638 phwi_ctrlr = phba->phwi_ctrlr;
5639 phwi_context = phwi_ctrlr->phwi_ctxt;
5640
5641 for (i = 0; i < phba->num_cpus; i++) {
5642 pbe_eq = &phwi_context->be_eq[i];
5643 irq_poll_init(&pbe_eq->iopoll, be_iopoll_budget, be_iopoll);
5644 }
5645
5646 i = (phba->pcidev->msix_enabled) ? i : 0;
5647 /* Work item for MCC handling */
5648 pbe_eq = &phwi_context->be_eq[i];
5649 INIT_WORK(&pbe_eq->mcc_work, beiscsi_mcc_work);
5650
5651 ret = beiscsi_init_irqs(phba);
5652 if (ret < 0) {
5653 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5654 "BM_%d : beiscsi_dev_probe-"
5655 "Failed to beiscsi_init_irqs\n");
5656 goto disable_iopoll;
5657 }
5658 hwi_enable_intr(phba);
5659
5660 ret = iscsi_host_add(phba->shost, &phba->pcidev->dev);
5661 if (ret)
5662 goto free_irqs;
5663
5664 /* set online bit after port is operational */
5665 set_bit(BEISCSI_HBA_ONLINE, &phba->state);
5666 __beiscsi_log(phba, KERN_INFO,
5667 "BM_%d : port online: 0x%lx\n", phba->state);
5668
5669 INIT_WORK(&phba->boot_work, beiscsi_boot_work);
5670 ret = beiscsi_boot_get_shandle(phba, &s_handle);
5671 if (ret > 0) {
5672 beiscsi_start_boot_work(phba, s_handle);
5673 /**
5674 * Set this bit after starting the work to let
5675 * probe handle it first.
5676 * ASYNC event can too schedule this work.
5677 */
5678 set_bit(BEISCSI_HBA_BOOT_FOUND, &phba->state);
5679 }
5680
5681 beiscsi_iface_create_default(phba);
5682 schedule_delayed_work(&phba->eqd_update,
5683 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL));
5684
5685 INIT_WORK(&phba->sess_work, beiscsi_sess_work);
5686 INIT_DELAYED_WORK(&phba->recover_port, beiscsi_recover_port);
5687 /**
5688 * Start UE detection here. UE before this will cause stall in probe
5689 * and eventually fail the probe.
5690 */
5691 timer_setup(&phba->hw_check, beiscsi_hw_health_check, 0);
5692 mod_timer(&phba->hw_check,
5693 jiffies + msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL));
5694 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
5695 "\n\n\n BM_%d : SUCCESS - DRIVER LOADED\n\n\n");
5696 return 0;
5697
5698 free_irqs:
5699 hwi_disable_intr(phba);
5700 beiscsi_free_irqs(phba);
5701 disable_iopoll:
5702 for (i = 0; i < phba->num_cpus; i++) {
5703 pbe_eq = &phwi_context->be_eq[i];
5704 irq_poll_disable(&pbe_eq->iopoll);
5705 }
5706 destroy_workqueue(phba->wq);
5707 free_twq:
5708 hwi_cleanup_port(phba);
5709 beiscsi_cleanup_port(phba);
5710 beiscsi_free_mem(phba);
5711 free_port:
5712 dma_free_coherent(&phba->pcidev->dev,
5713 phba->ctrl.mbox_mem_alloced.size,
5714 phba->ctrl.mbox_mem_alloced.va,
5715 phba->ctrl.mbox_mem_alloced.dma);
5716 beiscsi_unmap_pci_function(phba);
5717 free_hba:
5718 pci_disable_msix(phba->pcidev);
5719 pci_dev_put(phba->pcidev);
5720 iscsi_host_free(phba->shost);
5721 pci_disable_pcie_error_reporting(pcidev);
5722 pci_set_drvdata(pcidev, NULL);
5723 disable_pci:
5724 pci_release_regions(pcidev);
5725 pci_disable_device(pcidev);
5726 return ret;
5727 }
5728
beiscsi_remove(struct pci_dev * pcidev)5729 static void beiscsi_remove(struct pci_dev *pcidev)
5730 {
5731 struct beiscsi_hba *phba = NULL;
5732
5733 phba = pci_get_drvdata(pcidev);
5734 if (!phba) {
5735 dev_err(&pcidev->dev, "beiscsi_remove called with no phba\n");
5736 return;
5737 }
5738
5739 /* first stop UE detection before unloading */
5740 del_timer_sync(&phba->hw_check);
5741 cancel_delayed_work_sync(&phba->recover_port);
5742 cancel_work_sync(&phba->sess_work);
5743
5744 beiscsi_iface_destroy_default(phba);
5745 iscsi_host_remove(phba->shost, false);
5746 beiscsi_disable_port(phba, 1);
5747
5748 /* after cancelling boot_work */
5749 iscsi_boot_destroy_kset(phba->boot_struct.boot_kset);
5750
5751 /* free all resources */
5752 destroy_workqueue(phba->wq);
5753 beiscsi_free_mem(phba);
5754
5755 /* ctrl uninit */
5756 beiscsi_unmap_pci_function(phba);
5757 dma_free_coherent(&phba->pcidev->dev,
5758 phba->ctrl.mbox_mem_alloced.size,
5759 phba->ctrl.mbox_mem_alloced.va,
5760 phba->ctrl.mbox_mem_alloced.dma);
5761
5762 pci_dev_put(phba->pcidev);
5763 iscsi_host_free(phba->shost);
5764 pci_disable_pcie_error_reporting(pcidev);
5765 pci_set_drvdata(pcidev, NULL);
5766 pci_release_regions(pcidev);
5767 pci_disable_device(pcidev);
5768 }
5769
5770
5771 static struct pci_error_handlers beiscsi_eeh_handlers = {
5772 .error_detected = beiscsi_eeh_err_detected,
5773 .slot_reset = beiscsi_eeh_reset,
5774 .resume = beiscsi_eeh_resume,
5775 };
5776
5777 struct iscsi_transport beiscsi_iscsi_transport = {
5778 .owner = THIS_MODULE,
5779 .name = DRV_NAME,
5780 .caps = CAP_RECOVERY_L0 | CAP_HDRDGST | CAP_TEXT_NEGO |
5781 CAP_MULTI_R2T | CAP_DATADGST | CAP_DATA_PATH_OFFLOAD,
5782 .create_session = beiscsi_session_create,
5783 .destroy_session = beiscsi_session_destroy,
5784 .create_conn = beiscsi_conn_create,
5785 .bind_conn = beiscsi_conn_bind,
5786 .unbind_conn = iscsi_conn_unbind,
5787 .destroy_conn = iscsi_conn_teardown,
5788 .attr_is_visible = beiscsi_attr_is_visible,
5789 .set_iface_param = beiscsi_iface_set_param,
5790 .get_iface_param = beiscsi_iface_get_param,
5791 .set_param = beiscsi_set_param,
5792 .get_conn_param = iscsi_conn_get_param,
5793 .get_session_param = iscsi_session_get_param,
5794 .get_host_param = beiscsi_get_host_param,
5795 .start_conn = beiscsi_conn_start,
5796 .stop_conn = iscsi_conn_stop,
5797 .send_pdu = iscsi_conn_send_pdu,
5798 .xmit_task = beiscsi_task_xmit,
5799 .cleanup_task = beiscsi_cleanup_task,
5800 .alloc_pdu = beiscsi_alloc_pdu,
5801 .parse_pdu_itt = beiscsi_parse_pdu,
5802 .get_stats = beiscsi_conn_get_stats,
5803 .get_ep_param = beiscsi_ep_get_param,
5804 .ep_connect = beiscsi_ep_connect,
5805 .ep_poll = beiscsi_ep_poll,
5806 .ep_disconnect = beiscsi_ep_disconnect,
5807 .session_recovery_timedout = iscsi_session_recovery_timedout,
5808 .bsg_request = beiscsi_bsg_request,
5809 };
5810
5811 static struct pci_driver beiscsi_pci_driver = {
5812 .name = DRV_NAME,
5813 .probe = beiscsi_dev_probe,
5814 .remove = beiscsi_remove,
5815 .id_table = beiscsi_pci_id_table,
5816 .err_handler = &beiscsi_eeh_handlers
5817 };
5818
beiscsi_module_init(void)5819 static int __init beiscsi_module_init(void)
5820 {
5821 int ret;
5822
5823 beiscsi_scsi_transport =
5824 iscsi_register_transport(&beiscsi_iscsi_transport);
5825 if (!beiscsi_scsi_transport) {
5826 printk(KERN_ERR
5827 "beiscsi_module_init - Unable to register beiscsi transport.\n");
5828 return -ENOMEM;
5829 }
5830 printk(KERN_INFO "In beiscsi_module_init, tt=%p\n",
5831 &beiscsi_iscsi_transport);
5832
5833 ret = pci_register_driver(&beiscsi_pci_driver);
5834 if (ret) {
5835 printk(KERN_ERR
5836 "beiscsi_module_init - Unable to register beiscsi pci driver.\n");
5837 goto unregister_iscsi_transport;
5838 }
5839 return 0;
5840
5841 unregister_iscsi_transport:
5842 iscsi_unregister_transport(&beiscsi_iscsi_transport);
5843 return ret;
5844 }
5845
beiscsi_module_exit(void)5846 static void __exit beiscsi_module_exit(void)
5847 {
5848 pci_unregister_driver(&beiscsi_pci_driver);
5849 iscsi_unregister_transport(&beiscsi_iscsi_transport);
5850 }
5851
5852 module_init(beiscsi_module_init);
5853 module_exit(beiscsi_module_exit);
5854