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.
6 * Copyright (c) 2018 Broadcom. All Rights Reserved.
7 * The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
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.
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.
21 * Contact Information:
22 * linux-drivers@broadcom.com
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>
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>
54 static unsigned int be_iopoll_budget
= 10;
55 static unsigned int be_max_phys_size
= 64;
56 static unsigned int enable_msix
= 1;
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");
69 #define beiscsi_disp_param(_name)\
71 beiscsi_##_name##_disp(struct device *dev,\
72 struct device_attribute *attrib, char *buf) \
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",\
80 #define beiscsi_change_param(_name, _minval, _maxval, _defaval)\
82 beiscsi_##_name##_change(struct beiscsi_hba *phba, uint32_t val)\
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;\
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);\
99 #define beiscsi_store_param(_name) \
101 beiscsi_##_name##_store(struct device *dev,\
102 struct device_attribute *attr, const char *buf,\
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]))\
110 if (sscanf(buf, "%i", ¶m_val) != 1)\
112 if (beiscsi_##_name##_change(phba, param_val) == 0) \
118 #define beiscsi_init_param(_name, _minval, _maxval, _defval) \
120 beiscsi_##_name##_init(struct beiscsi_hba *phba, uint32_t val) \
122 if (val >= _minval && val <= _maxval) {\
123 phba->attr_##_name = val;\
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;\
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)
146 * When new log level added update the
147 * the MAX allowed value for log_enable
149 BEISCSI_RW_ATTR(log_enable
, 0x00,
150 0xFF, 0x00, "Enable logging Bit Mask\n"
151 "\t\t\t\tInitialization Events : 0x01\n"
152 "\t\t\t\tMailbox Events : 0x02\n"
153 "\t\t\t\tMiscellaneous Events : 0x04\n"
154 "\t\t\t\tError Handling : 0x08\n"
155 "\t\t\t\tIO Path Events : 0x10\n"
156 "\t\t\t\tConfiguration Path : 0x20\n"
157 "\t\t\t\tiSCSI Protocol : 0x40\n");
159 DEVICE_ATTR(beiscsi_drvr_ver
, S_IRUGO
, beiscsi_drvr_ver_disp
, NULL
);
160 DEVICE_ATTR(beiscsi_adapter_family
, S_IRUGO
, beiscsi_adap_family_disp
, NULL
);
161 DEVICE_ATTR(beiscsi_fw_ver
, S_IRUGO
, beiscsi_fw_ver_disp
, NULL
);
162 DEVICE_ATTR(beiscsi_phys_port
, S_IRUGO
, beiscsi_phys_port_disp
, NULL
);
163 DEVICE_ATTR(beiscsi_active_session_count
, S_IRUGO
,
164 beiscsi_active_session_disp
, NULL
);
165 DEVICE_ATTR(beiscsi_free_session_count
, S_IRUGO
,
166 beiscsi_free_session_disp
, NULL
);
167 struct device_attribute
*beiscsi_attrs
[] = {
168 &dev_attr_beiscsi_log_enable
,
169 &dev_attr_beiscsi_drvr_ver
,
170 &dev_attr_beiscsi_adapter_family
,
171 &dev_attr_beiscsi_fw_ver
,
172 &dev_attr_beiscsi_active_session_count
,
173 &dev_attr_beiscsi_free_session_count
,
174 &dev_attr_beiscsi_phys_port
,
178 static char const *cqe_desc
[] = {
181 "SOL_CMD_KILLED_DATA_DIGEST_ERR",
182 "CXN_KILLED_PDU_SIZE_EXCEEDS_DSL",
183 "CXN_KILLED_BURST_LEN_MISMATCH",
184 "CXN_KILLED_AHS_RCVD",
185 "CXN_KILLED_HDR_DIGEST_ERR",
186 "CXN_KILLED_UNKNOWN_HDR",
187 "CXN_KILLED_STALE_ITT_TTT_RCVD",
188 "CXN_KILLED_INVALID_ITT_TTT_RCVD",
189 "CXN_KILLED_RST_RCVD",
190 "CXN_KILLED_TIMED_OUT",
191 "CXN_KILLED_RST_SENT",
192 "CXN_KILLED_FIN_RCVD",
193 "CXN_KILLED_BAD_UNSOL_PDU_RCVD",
194 "CXN_KILLED_BAD_WRB_INDEX_ERROR",
195 "CXN_KILLED_OVER_RUN_RESIDUAL",
196 "CXN_KILLED_UNDER_RUN_RESIDUAL",
197 "CMD_KILLED_INVALID_STATSN_RCVD",
198 "CMD_KILLED_INVALID_R2T_RCVD",
199 "CMD_CXN_KILLED_LUN_INVALID",
200 "CMD_CXN_KILLED_ICD_INVALID",
201 "CMD_CXN_KILLED_ITT_INVALID",
202 "CMD_CXN_KILLED_SEQ_OUTOFORDER",
203 "CMD_CXN_KILLED_INVALID_DATASN_RCVD",
204 "CXN_INVALIDATE_NOTIFY",
205 "CXN_INVALIDATE_INDEX_NOTIFY",
206 "CMD_INVALIDATED_NOTIFY",
209 "UNSOL_DATA_DIGEST_ERROR_NOTIFY",
211 "CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN",
212 "SOL_CMD_KILLED_DIF_ERR",
213 "CXN_KILLED_SYN_RCVD",
214 "CXN_KILLED_IMM_DATA_RCVD"
217 static int beiscsi_eh_abort(struct scsi_cmnd
*sc
)
219 struct iscsi_task
*abrt_task
= (struct iscsi_task
*)sc
->SCp
.ptr
;
220 struct iscsi_cls_session
*cls_session
;
221 struct beiscsi_io_task
*abrt_io_task
;
222 struct beiscsi_conn
*beiscsi_conn
;
223 struct iscsi_session
*session
;
224 struct invldt_cmd_tbl inv_tbl
;
225 struct beiscsi_hba
*phba
;
226 struct iscsi_conn
*conn
;
229 cls_session
= starget_to_session(scsi_target(sc
->device
));
230 session
= cls_session
->dd_data
;
232 /* check if we raced, task just got cleaned up under us */
233 spin_lock_bh(&session
->back_lock
);
234 if (!abrt_task
|| !abrt_task
->sc
) {
235 spin_unlock_bh(&session
->back_lock
);
238 /* get a task ref till FW processes the req for the ICD used */
239 __iscsi_get_task(abrt_task
);
240 abrt_io_task
= abrt_task
->dd_data
;
241 conn
= abrt_task
->conn
;
242 beiscsi_conn
= conn
->dd_data
;
243 phba
= beiscsi_conn
->phba
;
244 /* mark WRB invalid which have been not processed by FW yet */
245 if (is_chip_be2_be3r(phba
)) {
246 AMAP_SET_BITS(struct amap_iscsi_wrb
, invld
,
247 abrt_io_task
->pwrb_handle
->pwrb
, 1);
249 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, invld
,
250 abrt_io_task
->pwrb_handle
->pwrb
, 1);
252 inv_tbl
.cid
= beiscsi_conn
->beiscsi_conn_cid
;
253 inv_tbl
.icd
= abrt_io_task
->psgl_handle
->sgl_index
;
254 spin_unlock_bh(&session
->back_lock
);
256 rc
= beiscsi_mgmt_invalidate_icds(phba
, &inv_tbl
, 1);
257 iscsi_put_task(abrt_task
);
259 beiscsi_log(phba
, KERN_WARNING
, BEISCSI_LOG_EH
,
260 "BM_%d : sc %p invalidation failed %d\n",
265 return iscsi_eh_abort(sc
);
268 static int beiscsi_eh_device_reset(struct scsi_cmnd
*sc
)
270 struct beiscsi_invldt_cmd_tbl
{
271 struct invldt_cmd_tbl tbl
[BE_INVLDT_CMD_TBL_SZ
];
272 struct iscsi_task
*task
[BE_INVLDT_CMD_TBL_SZ
];
274 struct iscsi_cls_session
*cls_session
;
275 struct beiscsi_conn
*beiscsi_conn
;
276 struct beiscsi_io_task
*io_task
;
277 struct iscsi_session
*session
;
278 struct beiscsi_hba
*phba
;
279 struct iscsi_conn
*conn
;
280 struct iscsi_task
*task
;
281 unsigned int i
, nents
;
284 cls_session
= starget_to_session(scsi_target(sc
->device
));
285 session
= cls_session
->dd_data
;
287 spin_lock_bh(&session
->frwd_lock
);
288 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
) {
289 spin_unlock_bh(&session
->frwd_lock
);
293 conn
= session
->leadconn
;
294 beiscsi_conn
= conn
->dd_data
;
295 phba
= beiscsi_conn
->phba
;
297 inv_tbl
= kzalloc(sizeof(*inv_tbl
), GFP_ATOMIC
);
299 spin_unlock_bh(&session
->frwd_lock
);
300 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_EH
,
301 "BM_%d : invldt_cmd_tbl alloc failed\n");
305 /* take back_lock to prevent task from getting cleaned up under us */
306 spin_lock(&session
->back_lock
);
307 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
308 task
= conn
->session
->cmds
[i
];
312 if (sc
->device
->lun
!= task
->sc
->device
->lun
)
315 * Can't fit in more cmds? Normally this won't happen b'coz
316 * BEISCSI_CMD_PER_LUN is same as BE_INVLDT_CMD_TBL_SZ.
318 if (nents
== BE_INVLDT_CMD_TBL_SZ
) {
323 /* get a task ref till FW processes the req for the ICD used */
324 __iscsi_get_task(task
);
325 io_task
= task
->dd_data
;
326 /* mark WRB invalid which have been not processed by FW yet */
327 if (is_chip_be2_be3r(phba
)) {
328 AMAP_SET_BITS(struct amap_iscsi_wrb
, invld
,
329 io_task
->pwrb_handle
->pwrb
, 1);
331 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, invld
,
332 io_task
->pwrb_handle
->pwrb
, 1);
335 inv_tbl
->tbl
[nents
].cid
= beiscsi_conn
->beiscsi_conn_cid
;
336 inv_tbl
->tbl
[nents
].icd
= io_task
->psgl_handle
->sgl_index
;
337 inv_tbl
->task
[nents
] = task
;
340 spin_unlock(&session
->back_lock
);
341 spin_unlock_bh(&session
->frwd_lock
);
348 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_EH
,
349 "BM_%d : number of cmds exceeds size of invalidation table\n");
354 if (beiscsi_mgmt_invalidate_icds(phba
, &inv_tbl
->tbl
[0], nents
)) {
355 beiscsi_log(phba
, KERN_WARNING
, BEISCSI_LOG_EH
,
356 "BM_%d : cid %u scmds invalidation failed\n",
357 beiscsi_conn
->beiscsi_conn_cid
);
362 for (i
= 0; i
< nents
; i
++)
363 iscsi_put_task(inv_tbl
->task
[i
]);
367 rc
= iscsi_eh_device_reset(sc
);
371 /*------------------- PCI Driver operations and data ----------------- */
372 static const struct pci_device_id beiscsi_pci_id_table
[] = {
373 { PCI_DEVICE(BE_VENDOR_ID
, BE_DEVICE_ID1
) },
374 { PCI_DEVICE(BE_VENDOR_ID
, BE_DEVICE_ID2
) },
375 { PCI_DEVICE(BE_VENDOR_ID
, OC_DEVICE_ID1
) },
376 { PCI_DEVICE(BE_VENDOR_ID
, OC_DEVICE_ID2
) },
377 { PCI_DEVICE(BE_VENDOR_ID
, OC_DEVICE_ID3
) },
378 { PCI_DEVICE(ELX_VENDOR_ID
, OC_SKH_ID1
) },
381 MODULE_DEVICE_TABLE(pci
, beiscsi_pci_id_table
);
384 static struct scsi_host_template beiscsi_sht
= {
385 .module
= THIS_MODULE
,
386 .name
= "Emulex 10Gbe open-iscsi Initiator Driver",
387 .proc_name
= DRV_NAME
,
388 .queuecommand
= iscsi_queuecommand
,
389 .change_queue_depth
= scsi_change_queue_depth
,
390 .target_alloc
= iscsi_target_alloc
,
391 .eh_timed_out
= iscsi_eh_cmd_timed_out
,
392 .eh_abort_handler
= beiscsi_eh_abort
,
393 .eh_device_reset_handler
= beiscsi_eh_device_reset
,
394 .eh_target_reset_handler
= iscsi_eh_session_reset
,
395 .shost_attrs
= beiscsi_attrs
,
396 .sg_tablesize
= BEISCSI_SGLIST_ELEMENTS
,
397 .can_queue
= BE2_IO_DEPTH
,
399 .max_sectors
= BEISCSI_MAX_SECTORS
,
400 .max_segment_size
= 65536,
401 .cmd_per_lun
= BEISCSI_CMD_PER_LUN
,
402 .vendor_id
= SCSI_NL_VID_TYPE_PCI
| BE_VENDOR_ID
,
403 .track_queue_depth
= 1,
406 static struct scsi_transport_template
*beiscsi_scsi_transport
;
408 static struct beiscsi_hba
*beiscsi_hba_alloc(struct pci_dev
*pcidev
)
410 struct beiscsi_hba
*phba
;
411 struct Scsi_Host
*shost
;
413 shost
= iscsi_host_alloc(&beiscsi_sht
, sizeof(*phba
), 0);
415 dev_err(&pcidev
->dev
,
416 "beiscsi_hba_alloc - iscsi_host_alloc failed\n");
419 shost
->max_id
= BE2_MAX_SESSIONS
;
420 shost
->max_channel
= 0;
421 shost
->max_cmd_len
= BEISCSI_MAX_CMD_LEN
;
422 shost
->max_lun
= BEISCSI_NUM_MAX_LUN
;
423 shost
->transportt
= beiscsi_scsi_transport
;
424 phba
= iscsi_host_priv(shost
);
425 memset(phba
, 0, sizeof(*phba
));
427 phba
->pcidev
= pci_dev_get(pcidev
);
428 pci_set_drvdata(pcidev
, phba
);
429 phba
->interface_handle
= 0xFFFFFFFF;
434 static void beiscsi_unmap_pci_function(struct beiscsi_hba
*phba
)
437 iounmap(phba
->csr_va
);
441 iounmap(phba
->db_va
);
445 iounmap(phba
->pci_va
);
450 static int beiscsi_map_pci_bars(struct beiscsi_hba
*phba
,
451 struct pci_dev
*pcidev
)
456 addr
= ioremap(pci_resource_start(pcidev
, 2),
457 pci_resource_len(pcidev
, 2));
460 phba
->ctrl
.csr
= addr
;
463 addr
= ioremap(pci_resource_start(pcidev
, 4), 128 * 1024);
466 phba
->ctrl
.db
= addr
;
469 if (phba
->generation
== BE_GEN2
)
474 addr
= ioremap(pci_resource_start(pcidev
, pcicfg_reg
),
475 pci_resource_len(pcidev
, pcicfg_reg
));
479 phba
->ctrl
.pcicfg
= addr
;
484 beiscsi_unmap_pci_function(phba
);
488 static int beiscsi_enable_pci(struct pci_dev
*pcidev
)
492 ret
= pci_enable_device(pcidev
);
494 dev_err(&pcidev
->dev
,
495 "beiscsi_enable_pci - enable device failed\n");
499 ret
= pci_request_regions(pcidev
, DRV_NAME
);
501 dev_err(&pcidev
->dev
,
502 "beiscsi_enable_pci - request region failed\n");
503 goto pci_dev_disable
;
506 pci_set_master(pcidev
);
507 ret
= dma_set_mask_and_coherent(&pcidev
->dev
, DMA_BIT_MASK(64));
509 ret
= dma_set_mask_and_coherent(&pcidev
->dev
, DMA_BIT_MASK(32));
511 dev_err(&pcidev
->dev
, "Could not set PCI DMA Mask\n");
512 goto pci_region_release
;
518 pci_release_regions(pcidev
);
520 pci_disable_device(pcidev
);
525 static int be_ctrl_init(struct beiscsi_hba
*phba
, struct pci_dev
*pdev
)
527 struct be_ctrl_info
*ctrl
= &phba
->ctrl
;
528 struct be_dma_mem
*mbox_mem_alloc
= &ctrl
->mbox_mem_alloced
;
529 struct be_dma_mem
*mbox_mem_align
= &ctrl
->mbox_mem
;
533 status
= beiscsi_map_pci_bars(phba
, pdev
);
536 mbox_mem_alloc
->size
= sizeof(struct be_mcc_mailbox
) + 16;
537 mbox_mem_alloc
->va
= dma_alloc_coherent(&pdev
->dev
,
538 mbox_mem_alloc
->size
, &mbox_mem_alloc
->dma
, GFP_KERNEL
);
539 if (!mbox_mem_alloc
->va
) {
540 beiscsi_unmap_pci_function(phba
);
544 mbox_mem_align
->size
= sizeof(struct be_mcc_mailbox
);
545 mbox_mem_align
->va
= PTR_ALIGN(mbox_mem_alloc
->va
, 16);
546 mbox_mem_align
->dma
= PTR_ALIGN(mbox_mem_alloc
->dma
, 16);
547 memset(mbox_mem_align
->va
, 0, sizeof(struct be_mcc_mailbox
));
548 mutex_init(&ctrl
->mbox_lock
);
549 spin_lock_init(&phba
->ctrl
.mcc_lock
);
555 * beiscsi_get_params()- Set the config paramters
556 * @phba: ptr device priv structure
558 static void beiscsi_get_params(struct beiscsi_hba
*phba
)
560 uint32_t total_cid_count
= 0;
561 uint32_t total_icd_count
= 0;
564 total_cid_count
= BEISCSI_GET_CID_COUNT(phba
, BEISCSI_ULP0
) +
565 BEISCSI_GET_CID_COUNT(phba
, BEISCSI_ULP1
);
567 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
568 uint32_t align_mask
= 0;
569 uint32_t icd_post_per_page
= 0;
570 uint32_t icd_count_unavailable
= 0;
571 uint32_t icd_start
= 0, icd_count
= 0;
572 uint32_t icd_start_align
= 0, icd_count_align
= 0;
574 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
)) {
575 icd_start
= phba
->fw_config
.iscsi_icd_start
[ulp_num
];
576 icd_count
= phba
->fw_config
.iscsi_icd_count
[ulp_num
];
578 /* Get ICD count that can be posted on each page */
579 icd_post_per_page
= (PAGE_SIZE
/ (BE2_SGE
*
580 sizeof(struct iscsi_sge
)));
581 align_mask
= (icd_post_per_page
- 1);
583 /* Check if icd_start is aligned ICD per page posting */
584 if (icd_start
% icd_post_per_page
) {
585 icd_start_align
= ((icd_start
+
589 iscsi_icd_start
[ulp_num
] =
593 icd_count_align
= (icd_count
& ~align_mask
);
595 /* ICD discarded in the process of alignment */
597 icd_count_unavailable
= ((icd_start_align
-
602 /* Updated ICD count available */
603 phba
->fw_config
.iscsi_icd_count
[ulp_num
] = (icd_count
-
604 icd_count_unavailable
);
606 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
607 "BM_%d : Aligned ICD values\n"
608 "\t ICD Start : %d\n"
609 "\t ICD Count : %d\n"
610 "\t ICD Discarded : %d\n",
612 iscsi_icd_start
[ulp_num
],
614 iscsi_icd_count
[ulp_num
],
615 icd_count_unavailable
);
620 total_icd_count
= phba
->fw_config
.iscsi_icd_count
[ulp_num
];
621 phba
->params
.ios_per_ctrl
= (total_icd_count
-
623 BE2_TMFS
+ BE2_NOPOUT_REQ
));
624 phba
->params
.cxns_per_ctrl
= total_cid_count
;
625 phba
->params
.icds_per_ctrl
= total_icd_count
;
626 phba
->params
.num_sge_per_io
= BE2_SGE
;
627 phba
->params
.defpdu_hdr_sz
= BE2_DEFPDU_HDR_SZ
;
628 phba
->params
.defpdu_data_sz
= BE2_DEFPDU_DATA_SZ
;
629 phba
->params
.num_eq_entries
= 1024;
630 phba
->params
.num_cq_entries
= 1024;
631 phba
->params
.wrbs_per_cxn
= 256;
634 static void hwi_ring_eq_db(struct beiscsi_hba
*phba
,
635 unsigned int id
, unsigned int clr_interrupt
,
636 unsigned int num_processed
,
637 unsigned char rearm
, unsigned char event
)
642 val
|= 1 << DB_EQ_REARM_SHIFT
;
644 val
|= 1 << DB_EQ_CLR_SHIFT
;
646 val
|= 1 << DB_EQ_EVNT_SHIFT
;
648 val
|= num_processed
<< DB_EQ_NUM_POPPED_SHIFT
;
649 /* Setting lower order EQ_ID Bits */
650 val
|= (id
& DB_EQ_RING_ID_LOW_MASK
);
652 /* Setting Higher order EQ_ID Bits */
653 val
|= (((id
>> DB_EQ_HIGH_FEILD_SHIFT
) &
654 DB_EQ_RING_ID_HIGH_MASK
)
655 << DB_EQ_HIGH_SET_SHIFT
);
657 iowrite32(val
, phba
->db_va
+ DB_EQ_OFFSET
);
661 * be_isr_mcc - The isr routine of the driver.
663 * @dev_id: Pointer to host adapter structure
665 static irqreturn_t
be_isr_mcc(int irq
, void *dev_id
)
667 struct beiscsi_hba
*phba
;
668 struct be_eq_entry
*eqe
;
669 struct be_queue_info
*eq
;
670 struct be_queue_info
*mcc
;
671 unsigned int mcc_events
;
672 struct be_eq_obj
*pbe_eq
;
677 mcc
= &phba
->ctrl
.mcc_obj
.cq
;
678 eqe
= queue_tail_node(eq
);
681 while (eqe
->dw
[offsetof(struct amap_eq_entry
, valid
) / 32]
683 if (((eqe
->dw
[offsetof(struct amap_eq_entry
,
685 EQE_RESID_MASK
) >> 16) == mcc
->id
) {
688 AMAP_SET_BITS(struct amap_eq_entry
, valid
, eqe
, 0);
690 eqe
= queue_tail_node(eq
);
694 queue_work(phba
->wq
, &pbe_eq
->mcc_work
);
695 hwi_ring_eq_db(phba
, eq
->id
, 1, mcc_events
, 1, 1);
701 * be_isr_msix - The isr routine of the driver.
703 * @dev_id: Pointer to host adapter structure
705 static irqreturn_t
be_isr_msix(int irq
, void *dev_id
)
707 struct beiscsi_hba
*phba
;
708 struct be_queue_info
*eq
;
709 struct be_eq_obj
*pbe_eq
;
715 /* disable interrupt till iopoll completes */
716 hwi_ring_eq_db(phba
, eq
->id
, 1, 0, 0, 1);
717 irq_poll_sched(&pbe_eq
->iopoll
);
723 * be_isr - The isr routine of the driver.
725 * @dev_id: Pointer to host adapter structure
727 static irqreturn_t
be_isr(int irq
, void *dev_id
)
729 struct beiscsi_hba
*phba
;
730 struct hwi_controller
*phwi_ctrlr
;
731 struct hwi_context_memory
*phwi_context
;
732 struct be_eq_entry
*eqe
;
733 struct be_queue_info
*eq
;
734 struct be_queue_info
*mcc
;
735 unsigned int mcc_events
, io_events
;
736 struct be_ctrl_info
*ctrl
;
737 struct be_eq_obj
*pbe_eq
;
742 isr
= ioread32(ctrl
->csr
+ CEV_ISR0_OFFSET
+
743 (PCI_FUNC(ctrl
->pdev
->devfn
) * CEV_ISR_SIZE
));
747 phwi_ctrlr
= phba
->phwi_ctrlr
;
748 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
749 pbe_eq
= &phwi_context
->be_eq
[0];
751 eq
= &phwi_context
->be_eq
[0].q
;
752 mcc
= &phba
->ctrl
.mcc_obj
.cq
;
753 eqe
= queue_tail_node(eq
);
757 while (eqe
->dw
[offsetof(struct amap_eq_entry
, valid
) / 32]
759 if (((eqe
->dw
[offsetof(struct amap_eq_entry
,
760 resource_id
) / 32] & EQE_RESID_MASK
) >> 16) == mcc
->id
)
764 AMAP_SET_BITS(struct amap_eq_entry
, valid
, eqe
, 0);
766 eqe
= queue_tail_node(eq
);
768 if (!io_events
&& !mcc_events
)
771 /* no need to rearm if interrupt is only for IOs */
774 queue_work(phba
->wq
, &pbe_eq
->mcc_work
);
779 irq_poll_sched(&pbe_eq
->iopoll
);
780 hwi_ring_eq_db(phba
, eq
->id
, 0, (io_events
+ mcc_events
), rearm
, 1);
784 static void beiscsi_free_irqs(struct beiscsi_hba
*phba
)
786 struct hwi_context_memory
*phwi_context
;
789 if (!phba
->pcidev
->msix_enabled
) {
790 if (phba
->pcidev
->irq
)
791 free_irq(phba
->pcidev
->irq
, phba
);
795 phwi_context
= phba
->phwi_ctrlr
->phwi_ctxt
;
796 for (i
= 0; i
<= phba
->num_cpus
; i
++) {
797 free_irq(pci_irq_vector(phba
->pcidev
, i
),
798 &phwi_context
->be_eq
[i
]);
799 kfree(phba
->msi_name
[i
]);
803 static int beiscsi_init_irqs(struct beiscsi_hba
*phba
)
805 struct pci_dev
*pcidev
= phba
->pcidev
;
806 struct hwi_controller
*phwi_ctrlr
;
807 struct hwi_context_memory
*phwi_context
;
810 phwi_ctrlr
= phba
->phwi_ctrlr
;
811 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
813 if (pcidev
->msix_enabled
) {
814 for (i
= 0; i
< phba
->num_cpus
; i
++) {
815 phba
->msi_name
[i
] = kasprintf(GFP_KERNEL
,
817 phba
->shost
->host_no
, i
);
818 if (!phba
->msi_name
[i
]) {
823 ret
= request_irq(pci_irq_vector(pcidev
, i
),
824 be_isr_msix
, 0, phba
->msi_name
[i
],
825 &phwi_context
->be_eq
[i
]);
827 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
828 "BM_%d : beiscsi_init_irqs-Failed to"
829 "register msix for i = %d\n",
831 kfree(phba
->msi_name
[i
]);
835 phba
->msi_name
[i
] = kasprintf(GFP_KERNEL
, "beiscsi_mcc_%02x",
836 phba
->shost
->host_no
);
837 if (!phba
->msi_name
[i
]) {
841 ret
= request_irq(pci_irq_vector(pcidev
, i
), be_isr_mcc
, 0,
842 phba
->msi_name
[i
], &phwi_context
->be_eq
[i
]);
844 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
845 "BM_%d : beiscsi_init_irqs-"
846 "Failed to register beiscsi_msix_mcc\n");
847 kfree(phba
->msi_name
[i
]);
852 ret
= request_irq(pcidev
->irq
, be_isr
, IRQF_SHARED
,
855 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
856 "BM_%d : beiscsi_init_irqs-"
857 "Failed to register irq\\n");
863 for (j
= i
- 1; j
>= 0; j
--) {
864 free_irq(pci_irq_vector(pcidev
, i
), &phwi_context
->be_eq
[j
]);
865 kfree(phba
->msi_name
[j
]);
870 void hwi_ring_cq_db(struct beiscsi_hba
*phba
,
871 unsigned int id
, unsigned int num_processed
,
877 val
|= 1 << DB_CQ_REARM_SHIFT
;
879 val
|= num_processed
<< DB_CQ_NUM_POPPED_SHIFT
;
881 /* Setting lower order CQ_ID Bits */
882 val
|= (id
& DB_CQ_RING_ID_LOW_MASK
);
884 /* Setting Higher order CQ_ID Bits */
885 val
|= (((id
>> DB_CQ_HIGH_FEILD_SHIFT
) &
886 DB_CQ_RING_ID_HIGH_MASK
)
887 << DB_CQ_HIGH_SET_SHIFT
);
889 iowrite32(val
, phba
->db_va
+ DB_CQ_OFFSET
);
892 static struct sgl_handle
*alloc_io_sgl_handle(struct beiscsi_hba
*phba
)
894 struct sgl_handle
*psgl_handle
;
897 spin_lock_irqsave(&phba
->io_sgl_lock
, flags
);
898 if (phba
->io_sgl_hndl_avbl
) {
899 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_IO
,
900 "BM_%d : In alloc_io_sgl_handle,"
901 " io_sgl_alloc_index=%d\n",
902 phba
->io_sgl_alloc_index
);
904 psgl_handle
= phba
->io_sgl_hndl_base
[phba
->
906 phba
->io_sgl_hndl_base
[phba
->io_sgl_alloc_index
] = NULL
;
907 phba
->io_sgl_hndl_avbl
--;
908 if (phba
->io_sgl_alloc_index
== (phba
->params
.
910 phba
->io_sgl_alloc_index
= 0;
912 phba
->io_sgl_alloc_index
++;
915 spin_unlock_irqrestore(&phba
->io_sgl_lock
, flags
);
920 free_io_sgl_handle(struct beiscsi_hba
*phba
, struct sgl_handle
*psgl_handle
)
924 spin_lock_irqsave(&phba
->io_sgl_lock
, flags
);
925 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_IO
,
926 "BM_%d : In free_,io_sgl_free_index=%d\n",
927 phba
->io_sgl_free_index
);
929 if (phba
->io_sgl_hndl_base
[phba
->io_sgl_free_index
]) {
931 * this can happen if clean_task is called on a task that
932 * failed in xmit_task or alloc_pdu.
934 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_IO
,
935 "BM_%d : Double Free in IO SGL io_sgl_free_index=%d, value there=%p\n",
936 phba
->io_sgl_free_index
,
937 phba
->io_sgl_hndl_base
[phba
->io_sgl_free_index
]);
938 spin_unlock_irqrestore(&phba
->io_sgl_lock
, flags
);
941 phba
->io_sgl_hndl_base
[phba
->io_sgl_free_index
] = psgl_handle
;
942 phba
->io_sgl_hndl_avbl
++;
943 if (phba
->io_sgl_free_index
== (phba
->params
.ios_per_ctrl
- 1))
944 phba
->io_sgl_free_index
= 0;
946 phba
->io_sgl_free_index
++;
947 spin_unlock_irqrestore(&phba
->io_sgl_lock
, flags
);
950 static inline struct wrb_handle
*
951 beiscsi_get_wrb_handle(struct hwi_wrb_context
*pwrb_context
,
952 unsigned int wrbs_per_cxn
)
954 struct wrb_handle
*pwrb_handle
;
957 spin_lock_irqsave(&pwrb_context
->wrb_lock
, flags
);
958 if (!pwrb_context
->wrb_handles_available
) {
959 spin_unlock_irqrestore(&pwrb_context
->wrb_lock
, flags
);
962 pwrb_handle
= pwrb_context
->pwrb_handle_base
[pwrb_context
->alloc_index
];
963 pwrb_context
->wrb_handles_available
--;
964 if (pwrb_context
->alloc_index
== (wrbs_per_cxn
- 1))
965 pwrb_context
->alloc_index
= 0;
967 pwrb_context
->alloc_index
++;
968 spin_unlock_irqrestore(&pwrb_context
->wrb_lock
, flags
);
971 memset(pwrb_handle
->pwrb
, 0, sizeof(*pwrb_handle
->pwrb
));
977 * alloc_wrb_handle - To allocate a wrb handle
978 * @phba: The hba pointer
979 * @cid: The cid to use for allocation
980 * @pwrb_context: ptr to ptr to wrb context
982 * This happens under session_lock until submission to chip
984 struct wrb_handle
*alloc_wrb_handle(struct beiscsi_hba
*phba
, unsigned int cid
,
985 struct hwi_wrb_context
**pcontext
)
987 struct hwi_wrb_context
*pwrb_context
;
988 struct hwi_controller
*phwi_ctrlr
;
989 uint16_t cri_index
= BE_GET_CRI_FROM_CID(cid
);
991 phwi_ctrlr
= phba
->phwi_ctrlr
;
992 pwrb_context
= &phwi_ctrlr
->wrb_context
[cri_index
];
993 /* return the context address */
994 *pcontext
= pwrb_context
;
995 return beiscsi_get_wrb_handle(pwrb_context
, phba
->params
.wrbs_per_cxn
);
999 beiscsi_put_wrb_handle(struct hwi_wrb_context
*pwrb_context
,
1000 struct wrb_handle
*pwrb_handle
,
1001 unsigned int wrbs_per_cxn
)
1003 unsigned long flags
;
1005 spin_lock_irqsave(&pwrb_context
->wrb_lock
, flags
);
1006 pwrb_context
->pwrb_handle_base
[pwrb_context
->free_index
] = pwrb_handle
;
1007 pwrb_context
->wrb_handles_available
++;
1008 if (pwrb_context
->free_index
== (wrbs_per_cxn
- 1))
1009 pwrb_context
->free_index
= 0;
1011 pwrb_context
->free_index
++;
1012 pwrb_handle
->pio_handle
= NULL
;
1013 spin_unlock_irqrestore(&pwrb_context
->wrb_lock
, flags
);
1017 * free_wrb_handle - To free the wrb handle back to pool
1018 * @phba: The hba pointer
1019 * @pwrb_context: The context to free from
1020 * @pwrb_handle: The wrb_handle to free
1022 * This happens under session_lock until submission to chip
1025 free_wrb_handle(struct beiscsi_hba
*phba
, struct hwi_wrb_context
*pwrb_context
,
1026 struct wrb_handle
*pwrb_handle
)
1028 beiscsi_put_wrb_handle(pwrb_context
,
1030 phba
->params
.wrbs_per_cxn
);
1031 beiscsi_log(phba
, KERN_INFO
,
1032 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
1033 "BM_%d : FREE WRB: pwrb_handle=%p free_index=0x%x"
1034 "wrb_handles_available=%d\n",
1035 pwrb_handle
, pwrb_context
->free_index
,
1036 pwrb_context
->wrb_handles_available
);
1039 static struct sgl_handle
*alloc_mgmt_sgl_handle(struct beiscsi_hba
*phba
)
1041 struct sgl_handle
*psgl_handle
;
1042 unsigned long flags
;
1044 spin_lock_irqsave(&phba
->mgmt_sgl_lock
, flags
);
1045 if (phba
->eh_sgl_hndl_avbl
) {
1046 psgl_handle
= phba
->eh_sgl_hndl_base
[phba
->eh_sgl_alloc_index
];
1047 phba
->eh_sgl_hndl_base
[phba
->eh_sgl_alloc_index
] = NULL
;
1048 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_CONFIG
,
1049 "BM_%d : mgmt_sgl_alloc_index=%d=0x%x\n",
1050 phba
->eh_sgl_alloc_index
,
1051 phba
->eh_sgl_alloc_index
);
1053 phba
->eh_sgl_hndl_avbl
--;
1054 if (phba
->eh_sgl_alloc_index
==
1055 (phba
->params
.icds_per_ctrl
- phba
->params
.ios_per_ctrl
-
1057 phba
->eh_sgl_alloc_index
= 0;
1059 phba
->eh_sgl_alloc_index
++;
1062 spin_unlock_irqrestore(&phba
->mgmt_sgl_lock
, flags
);
1067 free_mgmt_sgl_handle(struct beiscsi_hba
*phba
, struct sgl_handle
*psgl_handle
)
1069 unsigned long flags
;
1071 spin_lock_irqsave(&phba
->mgmt_sgl_lock
, flags
);
1072 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_CONFIG
,
1073 "BM_%d : In free_mgmt_sgl_handle,"
1074 "eh_sgl_free_index=%d\n",
1075 phba
->eh_sgl_free_index
);
1077 if (phba
->eh_sgl_hndl_base
[phba
->eh_sgl_free_index
]) {
1079 * this can happen if clean_task is called on a task that
1080 * failed in xmit_task or alloc_pdu.
1082 beiscsi_log(phba
, KERN_WARNING
, BEISCSI_LOG_CONFIG
,
1083 "BM_%d : Double Free in eh SGL ,"
1084 "eh_sgl_free_index=%d\n",
1085 phba
->eh_sgl_free_index
);
1086 spin_unlock_irqrestore(&phba
->mgmt_sgl_lock
, flags
);
1089 phba
->eh_sgl_hndl_base
[phba
->eh_sgl_free_index
] = psgl_handle
;
1090 phba
->eh_sgl_hndl_avbl
++;
1091 if (phba
->eh_sgl_free_index
==
1092 (phba
->params
.icds_per_ctrl
- phba
->params
.ios_per_ctrl
- 1))
1093 phba
->eh_sgl_free_index
= 0;
1095 phba
->eh_sgl_free_index
++;
1096 spin_unlock_irqrestore(&phba
->mgmt_sgl_lock
, flags
);
1100 be_complete_io(struct beiscsi_conn
*beiscsi_conn
,
1101 struct iscsi_task
*task
,
1102 struct common_sol_cqe
*csol_cqe
)
1104 struct beiscsi_io_task
*io_task
= task
->dd_data
;
1105 struct be_status_bhs
*sts_bhs
=
1106 (struct be_status_bhs
*)io_task
->cmd_bhs
;
1107 struct iscsi_conn
*conn
= beiscsi_conn
->conn
;
1108 unsigned char *sense
;
1109 u32 resid
= 0, exp_cmdsn
, max_cmdsn
;
1110 u8 rsp
, status
, flags
;
1112 exp_cmdsn
= csol_cqe
->exp_cmdsn
;
1113 max_cmdsn
= (csol_cqe
->exp_cmdsn
+
1114 csol_cqe
->cmd_wnd
- 1);
1115 rsp
= csol_cqe
->i_resp
;
1116 status
= csol_cqe
->i_sts
;
1117 flags
= csol_cqe
->i_flags
;
1118 resid
= csol_cqe
->res_cnt
;
1121 if (io_task
->scsi_cmnd
) {
1122 scsi_dma_unmap(io_task
->scsi_cmnd
);
1123 io_task
->scsi_cmnd
= NULL
;
1128 task
->sc
->result
= (DID_OK
<< 16) | status
;
1129 if (rsp
!= ISCSI_STATUS_CMD_COMPLETED
) {
1130 task
->sc
->result
= DID_ERROR
<< 16;
1134 /* bidi not initially supported */
1135 if (flags
& (ISCSI_FLAG_CMD_UNDERFLOW
| ISCSI_FLAG_CMD_OVERFLOW
)) {
1136 if (!status
&& (flags
& ISCSI_FLAG_CMD_OVERFLOW
))
1137 task
->sc
->result
= DID_ERROR
<< 16;
1139 if (flags
& ISCSI_FLAG_CMD_UNDERFLOW
) {
1140 scsi_set_resid(task
->sc
, resid
);
1141 if (!status
&& (scsi_bufflen(task
->sc
) - resid
<
1142 task
->sc
->underflow
))
1143 task
->sc
->result
= DID_ERROR
<< 16;
1147 if (status
== SAM_STAT_CHECK_CONDITION
) {
1149 unsigned short *slen
= (unsigned short *)sts_bhs
->sense_info
;
1151 sense
= sts_bhs
->sense_info
+ sizeof(unsigned short);
1152 sense_len
= be16_to_cpu(*slen
);
1153 memcpy(task
->sc
->sense_buffer
, sense
,
1154 min_t(u16
, sense_len
, SCSI_SENSE_BUFFERSIZE
));
1157 if (io_task
->cmd_bhs
->iscsi_hdr
.flags
& ISCSI_FLAG_CMD_READ
)
1158 conn
->rxdata_octets
+= resid
;
1160 if (io_task
->scsi_cmnd
) {
1161 scsi_dma_unmap(io_task
->scsi_cmnd
);
1162 io_task
->scsi_cmnd
= NULL
;
1164 iscsi_complete_scsi_task(task
, exp_cmdsn
, max_cmdsn
);
1168 be_complete_logout(struct beiscsi_conn
*beiscsi_conn
,
1169 struct iscsi_task
*task
,
1170 struct common_sol_cqe
*csol_cqe
)
1172 struct iscsi_logout_rsp
*hdr
;
1173 struct beiscsi_io_task
*io_task
= task
->dd_data
;
1174 struct iscsi_conn
*conn
= beiscsi_conn
->conn
;
1176 hdr
= (struct iscsi_logout_rsp
*)task
->hdr
;
1177 hdr
->opcode
= ISCSI_OP_LOGOUT_RSP
;
1180 hdr
->flags
= csol_cqe
->i_flags
;
1181 hdr
->response
= csol_cqe
->i_resp
;
1182 hdr
->exp_cmdsn
= cpu_to_be32(csol_cqe
->exp_cmdsn
);
1183 hdr
->max_cmdsn
= cpu_to_be32(csol_cqe
->exp_cmdsn
+
1184 csol_cqe
->cmd_wnd
- 1);
1186 hdr
->dlength
[0] = 0;
1187 hdr
->dlength
[1] = 0;
1188 hdr
->dlength
[2] = 0;
1190 hdr
->itt
= io_task
->libiscsi_itt
;
1191 __iscsi_complete_pdu(conn
, (struct iscsi_hdr
*)hdr
, NULL
, 0);
1195 be_complete_tmf(struct beiscsi_conn
*beiscsi_conn
,
1196 struct iscsi_task
*task
,
1197 struct common_sol_cqe
*csol_cqe
)
1199 struct iscsi_tm_rsp
*hdr
;
1200 struct iscsi_conn
*conn
= beiscsi_conn
->conn
;
1201 struct beiscsi_io_task
*io_task
= task
->dd_data
;
1203 hdr
= (struct iscsi_tm_rsp
*)task
->hdr
;
1204 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC_RSP
;
1205 hdr
->flags
= csol_cqe
->i_flags
;
1206 hdr
->response
= csol_cqe
->i_resp
;
1207 hdr
->exp_cmdsn
= cpu_to_be32(csol_cqe
->exp_cmdsn
);
1208 hdr
->max_cmdsn
= cpu_to_be32(csol_cqe
->exp_cmdsn
+
1209 csol_cqe
->cmd_wnd
- 1);
1211 hdr
->itt
= io_task
->libiscsi_itt
;
1212 __iscsi_complete_pdu(conn
, (struct iscsi_hdr
*)hdr
, NULL
, 0);
1216 hwi_complete_drvr_msgs(struct beiscsi_conn
*beiscsi_conn
,
1217 struct beiscsi_hba
*phba
, struct sol_cqe
*psol
)
1219 struct hwi_wrb_context
*pwrb_context
;
1220 uint16_t wrb_index
, cid
, cri_index
;
1221 struct hwi_controller
*phwi_ctrlr
;
1222 struct wrb_handle
*pwrb_handle
;
1223 struct iscsi_session
*session
;
1224 struct iscsi_task
*task
;
1226 phwi_ctrlr
= phba
->phwi_ctrlr
;
1227 if (is_chip_be2_be3r(phba
)) {
1228 wrb_index
= AMAP_GET_BITS(struct amap_it_dmsg_cqe
,
1230 cid
= AMAP_GET_BITS(struct amap_it_dmsg_cqe
,
1233 wrb_index
= AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2
,
1235 cid
= AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2
,
1239 cri_index
= BE_GET_CRI_FROM_CID(cid
);
1240 pwrb_context
= &phwi_ctrlr
->wrb_context
[cri_index
];
1241 pwrb_handle
= pwrb_context
->pwrb_handle_basestd
[wrb_index
];
1242 session
= beiscsi_conn
->conn
->session
;
1243 spin_lock_bh(&session
->back_lock
);
1244 task
= pwrb_handle
->pio_handle
;
1246 __iscsi_put_task(task
);
1247 spin_unlock_bh(&session
->back_lock
);
1251 be_complete_nopin_resp(struct beiscsi_conn
*beiscsi_conn
,
1252 struct iscsi_task
*task
,
1253 struct common_sol_cqe
*csol_cqe
)
1255 struct iscsi_nopin
*hdr
;
1256 struct iscsi_conn
*conn
= beiscsi_conn
->conn
;
1257 struct beiscsi_io_task
*io_task
= task
->dd_data
;
1259 hdr
= (struct iscsi_nopin
*)task
->hdr
;
1260 hdr
->flags
= csol_cqe
->i_flags
;
1261 hdr
->exp_cmdsn
= cpu_to_be32(csol_cqe
->exp_cmdsn
);
1262 hdr
->max_cmdsn
= cpu_to_be32(csol_cqe
->exp_cmdsn
+
1263 csol_cqe
->cmd_wnd
- 1);
1265 hdr
->opcode
= ISCSI_OP_NOOP_IN
;
1266 hdr
->itt
= io_task
->libiscsi_itt
;
1267 __iscsi_complete_pdu(conn
, (struct iscsi_hdr
*)hdr
, NULL
, 0);
1270 static void adapter_get_sol_cqe(struct beiscsi_hba
*phba
,
1271 struct sol_cqe
*psol
,
1272 struct common_sol_cqe
*csol_cqe
)
1274 if (is_chip_be2_be3r(phba
)) {
1275 csol_cqe
->exp_cmdsn
= AMAP_GET_BITS(struct amap_sol_cqe
,
1276 i_exp_cmd_sn
, psol
);
1277 csol_cqe
->res_cnt
= AMAP_GET_BITS(struct amap_sol_cqe
,
1279 csol_cqe
->cmd_wnd
= AMAP_GET_BITS(struct amap_sol_cqe
,
1281 csol_cqe
->wrb_index
= AMAP_GET_BITS(struct amap_sol_cqe
,
1283 csol_cqe
->cid
= AMAP_GET_BITS(struct amap_sol_cqe
,
1285 csol_cqe
->hw_sts
= AMAP_GET_BITS(struct amap_sol_cqe
,
1287 csol_cqe
->i_resp
= AMAP_GET_BITS(struct amap_sol_cqe
,
1289 csol_cqe
->i_sts
= AMAP_GET_BITS(struct amap_sol_cqe
,
1291 csol_cqe
->i_flags
= AMAP_GET_BITS(struct amap_sol_cqe
,
1294 csol_cqe
->exp_cmdsn
= AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1295 i_exp_cmd_sn
, psol
);
1296 csol_cqe
->res_cnt
= AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1298 csol_cqe
->wrb_index
= AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1300 csol_cqe
->cid
= AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1302 csol_cqe
->hw_sts
= AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1304 csol_cqe
->cmd_wnd
= AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1306 if (AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1308 csol_cqe
->i_sts
= AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1311 csol_cqe
->i_resp
= AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1313 if (AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1315 csol_cqe
->i_flags
= ISCSI_FLAG_CMD_UNDERFLOW
;
1317 if (AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1319 csol_cqe
->i_flags
|= ISCSI_FLAG_CMD_OVERFLOW
;
1324 static void hwi_complete_cmd(struct beiscsi_conn
*beiscsi_conn
,
1325 struct beiscsi_hba
*phba
, struct sol_cqe
*psol
)
1327 struct iscsi_conn
*conn
= beiscsi_conn
->conn
;
1328 struct iscsi_session
*session
= conn
->session
;
1329 struct common_sol_cqe csol_cqe
= {0};
1330 struct hwi_wrb_context
*pwrb_context
;
1331 struct hwi_controller
*phwi_ctrlr
;
1332 struct wrb_handle
*pwrb_handle
;
1333 struct iscsi_task
*task
;
1334 uint16_t cri_index
= 0;
1337 phwi_ctrlr
= phba
->phwi_ctrlr
;
1339 /* Copy the elements to a common structure */
1340 adapter_get_sol_cqe(phba
, psol
, &csol_cqe
);
1342 cri_index
= BE_GET_CRI_FROM_CID(csol_cqe
.cid
);
1343 pwrb_context
= &phwi_ctrlr
->wrb_context
[cri_index
];
1345 pwrb_handle
= pwrb_context
->pwrb_handle_basestd
[
1346 csol_cqe
.wrb_index
];
1348 spin_lock_bh(&session
->back_lock
);
1349 task
= pwrb_handle
->pio_handle
;
1351 spin_unlock_bh(&session
->back_lock
);
1354 type
= ((struct beiscsi_io_task
*)task
->dd_data
)->wrb_type
;
1358 case HWH_TYPE_IO_RD
:
1359 if ((task
->hdr
->opcode
& ISCSI_OPCODE_MASK
) ==
1361 be_complete_nopin_resp(beiscsi_conn
, task
, &csol_cqe
);
1363 be_complete_io(beiscsi_conn
, task
, &csol_cqe
);
1366 case HWH_TYPE_LOGOUT
:
1367 if ((task
->hdr
->opcode
& ISCSI_OPCODE_MASK
) == ISCSI_OP_LOGOUT
)
1368 be_complete_logout(beiscsi_conn
, task
, &csol_cqe
);
1370 be_complete_tmf(beiscsi_conn
, task
, &csol_cqe
);
1373 case HWH_TYPE_LOGIN
:
1374 beiscsi_log(phba
, KERN_ERR
,
1375 BEISCSI_LOG_CONFIG
| BEISCSI_LOG_IO
,
1376 "BM_%d :\t\t No HWH_TYPE_LOGIN Expected in"
1377 " hwi_complete_cmd- Solicited path\n");
1381 be_complete_nopin_resp(beiscsi_conn
, task
, &csol_cqe
);
1385 beiscsi_log(phba
, KERN_WARNING
,
1386 BEISCSI_LOG_CONFIG
| BEISCSI_LOG_IO
,
1387 "BM_%d : In hwi_complete_cmd, unknown type = %d"
1388 "wrb_index 0x%x CID 0x%x\n", type
,
1394 spin_unlock_bh(&session
->back_lock
);
1398 * ASYNC PDUs include
1399 * a. Unsolicited NOP-In (target initiated NOP-In)
1403 * These headers arrive unprocessed by the EP firmware.
1404 * iSCSI layer processes them.
1407 beiscsi_complete_pdu(struct beiscsi_conn
*beiscsi_conn
,
1408 struct pdu_base
*phdr
, void *pdata
, unsigned int dlen
)
1410 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
1411 struct iscsi_conn
*conn
= beiscsi_conn
->conn
;
1412 struct beiscsi_io_task
*io_task
;
1413 struct iscsi_hdr
*login_hdr
;
1414 struct iscsi_task
*task
;
1417 code
= AMAP_GET_BITS(struct amap_pdu_base
, opcode
, phdr
);
1419 case ISCSI_OP_NOOP_IN
:
1423 case ISCSI_OP_ASYNC_EVENT
:
1425 case ISCSI_OP_REJECT
:
1427 WARN_ON(!(dlen
== 48));
1428 beiscsi_log(phba
, KERN_ERR
,
1429 BEISCSI_LOG_CONFIG
| BEISCSI_LOG_IO
,
1430 "BM_%d : In ISCSI_OP_REJECT\n");
1432 case ISCSI_OP_LOGIN_RSP
:
1433 case ISCSI_OP_TEXT_RSP
:
1434 task
= conn
->login_task
;
1435 io_task
= task
->dd_data
;
1436 login_hdr
= (struct iscsi_hdr
*)phdr
;
1437 login_hdr
->itt
= io_task
->libiscsi_itt
;
1440 beiscsi_log(phba
, KERN_WARNING
,
1441 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
1442 "BM_%d : unrecognized async PDU opcode 0x%x\n",
1446 __iscsi_complete_pdu(conn
, (struct iscsi_hdr
*)phdr
, pdata
, dlen
);
1451 beiscsi_hdl_put_handle(struct hd_async_context
*pasync_ctx
,
1452 struct hd_async_handle
*pasync_handle
)
1454 pasync_handle
->is_final
= 0;
1455 pasync_handle
->buffer_len
= 0;
1456 pasync_handle
->in_use
= 0;
1457 list_del_init(&pasync_handle
->link
);
1461 beiscsi_hdl_purge_handles(struct beiscsi_hba
*phba
,
1462 struct hd_async_context
*pasync_ctx
,
1465 struct hd_async_handle
*pasync_handle
, *tmp_handle
;
1466 struct list_head
*plist
;
1468 plist
= &pasync_ctx
->async_entry
[cri
].wq
.list
;
1469 list_for_each_entry_safe(pasync_handle
, tmp_handle
, plist
, link
)
1470 beiscsi_hdl_put_handle(pasync_ctx
, pasync_handle
);
1472 INIT_LIST_HEAD(&pasync_ctx
->async_entry
[cri
].wq
.list
);
1473 pasync_ctx
->async_entry
[cri
].wq
.hdr_len
= 0;
1474 pasync_ctx
->async_entry
[cri
].wq
.bytes_received
= 0;
1475 pasync_ctx
->async_entry
[cri
].wq
.bytes_needed
= 0;
1478 static struct hd_async_handle
*
1479 beiscsi_hdl_get_handle(struct beiscsi_conn
*beiscsi_conn
,
1480 struct hd_async_context
*pasync_ctx
,
1481 struct i_t_dpdu_cqe
*pdpdu_cqe
,
1484 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
1485 struct hd_async_handle
*pasync_handle
;
1486 struct be_bus_address phys_addr
;
1487 u16 cid
, code
, ci
, cri
;
1488 u8 final
, error
= 0;
1491 cid
= beiscsi_conn
->beiscsi_conn_cid
;
1492 cri
= BE_GET_ASYNC_CRI_FROM_CID(cid
);
1494 * This function is invoked to get the right async_handle structure
1495 * from a given DEF PDU CQ entry.
1497 * - index in CQ entry gives the vertical index
1498 * - address in CQ entry is the offset where the DMA last ended
1499 * - final - no more notifications for this PDU
1501 if (is_chip_be2_be3r(phba
)) {
1502 dpl
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe
,
1504 ci
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe
,
1506 final
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe
,
1509 dpl
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2
,
1511 ci
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2
,
1513 final
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2
,
1518 * DB addr Hi/Lo is same for BE and SKH.
1519 * Subtract the dataplacementlength to get to the base.
1521 phys_addr
.u
.a32
.address_lo
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe
,
1522 db_addr_lo
, pdpdu_cqe
);
1523 phys_addr
.u
.a32
.address_lo
-= dpl
;
1524 phys_addr
.u
.a32
.address_hi
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe
,
1525 db_addr_hi
, pdpdu_cqe
);
1527 code
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe
, code
, pdpdu_cqe
);
1529 case UNSOL_HDR_NOTIFY
:
1530 pasync_handle
= pasync_ctx
->async_entry
[ci
].header
;
1533 case UNSOL_DATA_DIGEST_ERROR_NOTIFY
:
1536 case UNSOL_DATA_NOTIFY
:
1537 pasync_handle
= pasync_ctx
->async_entry
[ci
].data
;
1539 /* called only for above codes */
1544 if (pasync_handle
->pa
.u
.a64
.address
!= phys_addr
.u
.a64
.address
||
1545 pasync_handle
->index
!= ci
) {
1546 /* driver bug - if ci does not match async handle index */
1548 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_ISCSI
,
1549 "BM_%d : cid %u async PDU handle mismatch - addr in %cQE %llx at %u:addr in CQE %llx ci %u\n",
1550 cid
, pasync_handle
->is_header
? 'H' : 'D',
1551 pasync_handle
->pa
.u
.a64
.address
,
1552 pasync_handle
->index
,
1553 phys_addr
.u
.a64
.address
, ci
);
1554 /* FW has stale address - attempt continuing by dropping */
1558 * DEF PDU header and data buffers with errors should be simply
1559 * dropped as there are no consumers for it.
1562 beiscsi_hdl_put_handle(pasync_ctx
, pasync_handle
);
1566 if (pasync_handle
->in_use
|| !list_empty(&pasync_handle
->link
)) {
1567 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_ISCSI
,
1568 "BM_%d : cid %d async PDU handle in use - code %d ci %d addr %llx\n",
1569 cid
, code
, ci
, phys_addr
.u
.a64
.address
);
1570 beiscsi_hdl_purge_handles(phba
, pasync_ctx
, cri
);
1573 list_del_init(&pasync_handle
->link
);
1575 * Each CID is associated with unique CRI.
1576 * ASYNC_CRI_FROM_CID mapping and CRI_FROM_CID are totaly different.
1578 pasync_handle
->cri
= cri
;
1579 pasync_handle
->is_final
= final
;
1580 pasync_handle
->buffer_len
= dpl
;
1581 pasync_handle
->in_use
= 1;
1583 return pasync_handle
;
1587 beiscsi_hdl_fwd_pdu(struct beiscsi_conn
*beiscsi_conn
,
1588 struct hd_async_context
*pasync_ctx
,
1591 struct iscsi_session
*session
= beiscsi_conn
->conn
->session
;
1592 struct hd_async_handle
*pasync_handle
, *plast_handle
;
1593 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
1594 void *phdr
= NULL
, *pdata
= NULL
;
1595 u32 dlen
= 0, status
= 0;
1596 struct list_head
*plist
;
1598 plist
= &pasync_ctx
->async_entry
[cri
].wq
.list
;
1599 plast_handle
= NULL
;
1600 list_for_each_entry(pasync_handle
, plist
, link
) {
1601 plast_handle
= pasync_handle
;
1602 /* get the header, the first entry */
1604 phdr
= pasync_handle
->pbuffer
;
1607 /* use first buffer to collect all the data */
1609 pdata
= pasync_handle
->pbuffer
;
1610 dlen
= pasync_handle
->buffer_len
;
1613 if (!pasync_handle
->buffer_len
||
1614 (dlen
+ pasync_handle
->buffer_len
) >
1615 pasync_ctx
->async_data
.buffer_size
)
1617 memcpy(pdata
+ dlen
, pasync_handle
->pbuffer
,
1618 pasync_handle
->buffer_len
);
1619 dlen
+= pasync_handle
->buffer_len
;
1622 if (!plast_handle
->is_final
) {
1623 /* last handle should have final PDU notification from FW */
1624 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_ISCSI
,
1625 "BM_%d : cid %u %p fwd async PDU opcode %x with last handle missing - HL%u:DN%u:DR%u\n",
1626 beiscsi_conn
->beiscsi_conn_cid
, plast_handle
,
1627 AMAP_GET_BITS(struct amap_pdu_base
, opcode
, phdr
),
1628 pasync_ctx
->async_entry
[cri
].wq
.hdr_len
,
1629 pasync_ctx
->async_entry
[cri
].wq
.bytes_needed
,
1630 pasync_ctx
->async_entry
[cri
].wq
.bytes_received
);
1632 spin_lock_bh(&session
->back_lock
);
1633 status
= beiscsi_complete_pdu(beiscsi_conn
, phdr
, pdata
, dlen
);
1634 spin_unlock_bh(&session
->back_lock
);
1635 beiscsi_hdl_purge_handles(phba
, pasync_ctx
, cri
);
1640 beiscsi_hdl_gather_pdu(struct beiscsi_conn
*beiscsi_conn
,
1641 struct hd_async_context
*pasync_ctx
,
1642 struct hd_async_handle
*pasync_handle
)
1644 unsigned int bytes_needed
= 0, status
= 0;
1645 u16 cri
= pasync_handle
->cri
;
1646 struct cri_wait_queue
*wq
;
1647 struct beiscsi_hba
*phba
;
1648 struct pdu_base
*ppdu
;
1651 phba
= beiscsi_conn
->phba
;
1652 wq
= &pasync_ctx
->async_entry
[cri
].wq
;
1653 if (pasync_handle
->is_header
) {
1654 /* check if PDU hdr is rcv'd when old hdr not completed */
1659 ppdu
= pasync_handle
->pbuffer
;
1660 bytes_needed
= AMAP_GET_BITS(struct amap_pdu_base
,
1662 bytes_needed
<<= 16;
1663 bytes_needed
|= be16_to_cpu(AMAP_GET_BITS(struct amap_pdu_base
,
1664 data_len_lo
, ppdu
));
1665 wq
->hdr_len
= pasync_handle
->buffer_len
;
1666 wq
->bytes_received
= 0;
1667 wq
->bytes_needed
= bytes_needed
;
1668 list_add_tail(&pasync_handle
->link
, &wq
->list
);
1670 status
= beiscsi_hdl_fwd_pdu(beiscsi_conn
,
1673 /* check if data received has header and is needed */
1674 if (!wq
->hdr_len
|| !wq
->bytes_needed
) {
1675 err
= "header less";
1678 wq
->bytes_received
+= pasync_handle
->buffer_len
;
1679 /* Something got overwritten? Better catch it here. */
1680 if (wq
->bytes_received
> wq
->bytes_needed
) {
1684 list_add_tail(&pasync_handle
->link
, &wq
->list
);
1685 if (wq
->bytes_received
== wq
->bytes_needed
)
1686 status
= beiscsi_hdl_fwd_pdu(beiscsi_conn
,
1692 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_ISCSI
,
1693 "BM_%d : cid %u async PDU %s - def-%c:HL%u:DN%u:DR%u\n",
1694 beiscsi_conn
->beiscsi_conn_cid
, err
,
1695 pasync_handle
->is_header
? 'H' : 'D',
1696 wq
->hdr_len
, wq
->bytes_needed
,
1697 pasync_handle
->buffer_len
);
1698 /* discard this handle */
1699 beiscsi_hdl_put_handle(pasync_ctx
, pasync_handle
);
1700 /* free all the other handles in cri_wait_queue */
1701 beiscsi_hdl_purge_handles(phba
, pasync_ctx
, cri
);
1702 /* try continuing */
1707 beiscsi_hdq_post_handles(struct beiscsi_hba
*phba
,
1708 u8 header
, u8 ulp_num
, u16 nbuf
)
1710 struct hd_async_handle
*pasync_handle
;
1711 struct hd_async_context
*pasync_ctx
;
1712 struct hwi_controller
*phwi_ctrlr
;
1713 struct phys_addr
*pasync_sge
;
1714 u32 ring_id
, doorbell
= 0;
1715 u32 doorbell_offset
;
1718 phwi_ctrlr
= phba
->phwi_ctrlr
;
1719 pasync_ctx
= HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr
, ulp_num
);
1721 pasync_sge
= pasync_ctx
->async_header
.ring_base
;
1722 pi
= pasync_ctx
->async_header
.pi
;
1723 ring_id
= phwi_ctrlr
->default_pdu_hdr
[ulp_num
].id
;
1724 doorbell_offset
= phwi_ctrlr
->default_pdu_hdr
[ulp_num
].
1727 pasync_sge
= pasync_ctx
->async_data
.ring_base
;
1728 pi
= pasync_ctx
->async_data
.pi
;
1729 ring_id
= phwi_ctrlr
->default_pdu_data
[ulp_num
].id
;
1730 doorbell_offset
= phwi_ctrlr
->default_pdu_data
[ulp_num
].
1734 for (prod
= 0; prod
< nbuf
; prod
++) {
1736 pasync_handle
= pasync_ctx
->async_entry
[pi
].header
;
1738 pasync_handle
= pasync_ctx
->async_entry
[pi
].data
;
1739 WARN_ON(pasync_handle
->is_header
!= header
);
1740 WARN_ON(pasync_handle
->index
!= pi
);
1741 /* setup the ring only once */
1742 if (nbuf
== pasync_ctx
->num_entries
) {
1744 pasync_sge
[pi
].hi
= pasync_handle
->pa
.u
.a32
.address_lo
;
1745 pasync_sge
[pi
].lo
= pasync_handle
->pa
.u
.a32
.address_hi
;
1747 if (++pi
== pasync_ctx
->num_entries
)
1752 pasync_ctx
->async_header
.pi
= pi
;
1754 pasync_ctx
->async_data
.pi
= pi
;
1756 doorbell
|= ring_id
& DB_DEF_PDU_RING_ID_MASK
;
1757 doorbell
|= 1 << DB_DEF_PDU_REARM_SHIFT
;
1758 doorbell
|= 0 << DB_DEF_PDU_EVENT_SHIFT
;
1759 doorbell
|= (prod
& DB_DEF_PDU_CQPROC_MASK
) << DB_DEF_PDU_CQPROC_SHIFT
;
1760 iowrite32(doorbell
, phba
->db_va
+ doorbell_offset
);
1764 beiscsi_hdq_process_compl(struct beiscsi_conn
*beiscsi_conn
,
1765 struct i_t_dpdu_cqe
*pdpdu_cqe
)
1767 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
1768 struct hd_async_handle
*pasync_handle
= NULL
;
1769 struct hd_async_context
*pasync_ctx
;
1770 struct hwi_controller
*phwi_ctrlr
;
1771 u8 ulp_num
, consumed
, header
= 0;
1774 phwi_ctrlr
= phba
->phwi_ctrlr
;
1775 cid_cri
= BE_GET_CRI_FROM_CID(beiscsi_conn
->beiscsi_conn_cid
);
1776 ulp_num
= BEISCSI_GET_ULP_FROM_CRI(phwi_ctrlr
, cid_cri
);
1777 pasync_ctx
= HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr
, ulp_num
);
1778 pasync_handle
= beiscsi_hdl_get_handle(beiscsi_conn
, pasync_ctx
,
1779 pdpdu_cqe
, &header
);
1780 if (is_chip_be2_be3r(phba
))
1781 consumed
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe
,
1782 num_cons
, pdpdu_cqe
);
1784 consumed
= AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2
,
1785 num_cons
, pdpdu_cqe
);
1787 beiscsi_hdl_gather_pdu(beiscsi_conn
, pasync_ctx
, pasync_handle
);
1788 /* num_cons indicates number of 8 RQEs consumed */
1790 beiscsi_hdq_post_handles(phba
, header
, ulp_num
, 8 * consumed
);
1793 void beiscsi_process_mcc_cq(struct beiscsi_hba
*phba
)
1795 struct be_queue_info
*mcc_cq
;
1796 struct be_mcc_compl
*mcc_compl
;
1797 unsigned int num_processed
= 0;
1799 mcc_cq
= &phba
->ctrl
.mcc_obj
.cq
;
1800 mcc_compl
= queue_tail_node(mcc_cq
);
1801 mcc_compl
->flags
= le32_to_cpu(mcc_compl
->flags
);
1802 while (mcc_compl
->flags
& CQE_FLAGS_VALID_MASK
) {
1803 if (beiscsi_hba_in_error(phba
))
1806 if (num_processed
>= 32) {
1807 hwi_ring_cq_db(phba
, mcc_cq
->id
,
1811 if (mcc_compl
->flags
& CQE_FLAGS_ASYNC_MASK
) {
1812 beiscsi_process_async_event(phba
, mcc_compl
);
1813 } else if (mcc_compl
->flags
& CQE_FLAGS_COMPLETED_MASK
) {
1814 beiscsi_process_mcc_compl(&phba
->ctrl
, mcc_compl
);
1817 mcc_compl
->flags
= 0;
1818 queue_tail_inc(mcc_cq
);
1819 mcc_compl
= queue_tail_node(mcc_cq
);
1820 mcc_compl
->flags
= le32_to_cpu(mcc_compl
->flags
);
1824 if (num_processed
> 0)
1825 hwi_ring_cq_db(phba
, mcc_cq
->id
, num_processed
, 1);
1828 static void beiscsi_mcc_work(struct work_struct
*work
)
1830 struct be_eq_obj
*pbe_eq
;
1831 struct beiscsi_hba
*phba
;
1833 pbe_eq
= container_of(work
, struct be_eq_obj
, mcc_work
);
1834 phba
= pbe_eq
->phba
;
1835 beiscsi_process_mcc_cq(phba
);
1836 /* rearm EQ for further interrupts */
1837 if (!beiscsi_hba_in_error(phba
))
1838 hwi_ring_eq_db(phba
, pbe_eq
->q
.id
, 0, 0, 1, 1);
1842 * beiscsi_process_cq()- Process the Completion Queue
1843 * @pbe_eq: Event Q on which the Completion has come
1844 * @budget: Max number of events to processed
1847 * Number of Completion Entries processed.
1849 unsigned int beiscsi_process_cq(struct be_eq_obj
*pbe_eq
, int budget
)
1851 struct be_queue_info
*cq
;
1852 struct sol_cqe
*sol
;
1853 unsigned int total
= 0;
1854 unsigned int num_processed
= 0;
1855 unsigned short code
= 0, cid
= 0;
1856 uint16_t cri_index
= 0;
1857 struct beiscsi_conn
*beiscsi_conn
;
1858 struct beiscsi_endpoint
*beiscsi_ep
;
1859 struct iscsi_endpoint
*ep
;
1860 struct beiscsi_hba
*phba
;
1863 sol
= queue_tail_node(cq
);
1864 phba
= pbe_eq
->phba
;
1866 while (sol
->dw
[offsetof(struct amap_sol_cqe
, valid
) / 32] &
1868 if (beiscsi_hba_in_error(phba
))
1871 be_dws_le_to_cpu(sol
, sizeof(struct sol_cqe
));
1873 code
= (sol
->dw
[offsetof(struct amap_sol_cqe
, code
) / 32] &
1877 if (is_chip_be2_be3r(phba
)) {
1878 cid
= AMAP_GET_BITS(struct amap_sol_cqe
, cid
, sol
);
1880 if ((code
== DRIVERMSG_NOTIFY
) ||
1881 (code
== UNSOL_HDR_NOTIFY
) ||
1882 (code
== UNSOL_DATA_NOTIFY
))
1883 cid
= AMAP_GET_BITS(
1884 struct amap_i_t_dpdu_cqe_v2
,
1887 cid
= AMAP_GET_BITS(struct amap_sol_cqe_v2
,
1891 cri_index
= BE_GET_CRI_FROM_CID(cid
);
1892 ep
= phba
->ep_array
[cri_index
];
1895 /* connection has already been freed
1896 * just move on to next one
1898 beiscsi_log(phba
, KERN_WARNING
,
1900 "BM_%d : proc cqe of disconn ep: cid %d\n",
1905 beiscsi_ep
= ep
->dd_data
;
1906 beiscsi_conn
= beiscsi_ep
->conn
;
1909 if (num_processed
== 32) {
1910 hwi_ring_cq_db(phba
, cq
->id
, 32, 0);
1916 case SOL_CMD_COMPLETE
:
1917 hwi_complete_cmd(beiscsi_conn
, phba
, sol
);
1919 case DRIVERMSG_NOTIFY
:
1920 beiscsi_log(phba
, KERN_INFO
,
1921 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
1922 "BM_%d : Received %s[%d] on CID : %d\n",
1923 cqe_desc
[code
], code
, cid
);
1925 hwi_complete_drvr_msgs(beiscsi_conn
, phba
, sol
);
1927 case UNSOL_HDR_NOTIFY
:
1928 beiscsi_log(phba
, KERN_INFO
,
1929 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
1930 "BM_%d : Received %s[%d] on CID : %d\n",
1931 cqe_desc
[code
], code
, cid
);
1933 spin_lock_bh(&phba
->async_pdu_lock
);
1934 beiscsi_hdq_process_compl(beiscsi_conn
,
1935 (struct i_t_dpdu_cqe
*)sol
);
1936 spin_unlock_bh(&phba
->async_pdu_lock
);
1938 case UNSOL_DATA_NOTIFY
:
1939 beiscsi_log(phba
, KERN_INFO
,
1940 BEISCSI_LOG_CONFIG
| BEISCSI_LOG_IO
,
1941 "BM_%d : Received %s[%d] on CID : %d\n",
1942 cqe_desc
[code
], code
, cid
);
1944 spin_lock_bh(&phba
->async_pdu_lock
);
1945 beiscsi_hdq_process_compl(beiscsi_conn
,
1946 (struct i_t_dpdu_cqe
*)sol
);
1947 spin_unlock_bh(&phba
->async_pdu_lock
);
1949 case CXN_INVALIDATE_INDEX_NOTIFY
:
1950 case CMD_INVALIDATED_NOTIFY
:
1951 case CXN_INVALIDATE_NOTIFY
:
1952 beiscsi_log(phba
, KERN_ERR
,
1953 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
1954 "BM_%d : Ignoring %s[%d] on CID : %d\n",
1955 cqe_desc
[code
], code
, cid
);
1957 case CXN_KILLED_HDR_DIGEST_ERR
:
1958 case SOL_CMD_KILLED_DATA_DIGEST_ERR
:
1959 beiscsi_log(phba
, KERN_ERR
,
1960 BEISCSI_LOG_CONFIG
| BEISCSI_LOG_IO
,
1961 "BM_%d : Cmd Notification %s[%d] on CID : %d\n",
1962 cqe_desc
[code
], code
, cid
);
1964 case CMD_KILLED_INVALID_STATSN_RCVD
:
1965 case CMD_KILLED_INVALID_R2T_RCVD
:
1966 case CMD_CXN_KILLED_LUN_INVALID
:
1967 case CMD_CXN_KILLED_ICD_INVALID
:
1968 case CMD_CXN_KILLED_ITT_INVALID
:
1969 case CMD_CXN_KILLED_SEQ_OUTOFORDER
:
1970 case CMD_CXN_KILLED_INVALID_DATASN_RCVD
:
1971 beiscsi_log(phba
, KERN_ERR
,
1972 BEISCSI_LOG_CONFIG
| BEISCSI_LOG_IO
,
1973 "BM_%d : Cmd Notification %s[%d] on CID : %d\n",
1974 cqe_desc
[code
], code
, cid
);
1976 case UNSOL_DATA_DIGEST_ERROR_NOTIFY
:
1977 beiscsi_log(phba
, KERN_ERR
,
1978 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
1979 "BM_%d : Dropping %s[%d] on DPDU ring on CID : %d\n",
1980 cqe_desc
[code
], code
, cid
);
1981 spin_lock_bh(&phba
->async_pdu_lock
);
1982 /* driver consumes the entry and drops the contents */
1983 beiscsi_hdq_process_compl(beiscsi_conn
,
1984 (struct i_t_dpdu_cqe
*)sol
);
1985 spin_unlock_bh(&phba
->async_pdu_lock
);
1987 case CXN_KILLED_PDU_SIZE_EXCEEDS_DSL
:
1988 case CXN_KILLED_BURST_LEN_MISMATCH
:
1989 case CXN_KILLED_AHS_RCVD
:
1990 case CXN_KILLED_UNKNOWN_HDR
:
1991 case CXN_KILLED_STALE_ITT_TTT_RCVD
:
1992 case CXN_KILLED_INVALID_ITT_TTT_RCVD
:
1993 case CXN_KILLED_TIMED_OUT
:
1994 case CXN_KILLED_FIN_RCVD
:
1995 case CXN_KILLED_RST_SENT
:
1996 case CXN_KILLED_RST_RCVD
:
1997 case CXN_KILLED_BAD_UNSOL_PDU_RCVD
:
1998 case CXN_KILLED_BAD_WRB_INDEX_ERROR
:
1999 case CXN_KILLED_OVER_RUN_RESIDUAL
:
2000 case CXN_KILLED_UNDER_RUN_RESIDUAL
:
2001 case CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN
:
2002 beiscsi_log(phba
, KERN_ERR
,
2003 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
2004 "BM_%d : Event %s[%d] received on CID : %d\n",
2005 cqe_desc
[code
], code
, cid
);
2007 iscsi_conn_failure(beiscsi_conn
->conn
,
2008 ISCSI_ERR_CONN_FAILED
);
2011 beiscsi_log(phba
, KERN_ERR
,
2012 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
2013 "BM_%d : Invalid CQE Event Received Code : %d"
2020 AMAP_SET_BITS(struct amap_sol_cqe
, valid
, sol
, 0);
2022 sol
= queue_tail_node(cq
);
2024 if (total
== budget
)
2028 hwi_ring_cq_db(phba
, cq
->id
, num_processed
, 1);
2032 static int be_iopoll(struct irq_poll
*iop
, int budget
)
2034 unsigned int ret
, io_events
;
2035 struct beiscsi_hba
*phba
;
2036 struct be_eq_obj
*pbe_eq
;
2037 struct be_eq_entry
*eqe
= NULL
;
2038 struct be_queue_info
*eq
;
2040 pbe_eq
= container_of(iop
, struct be_eq_obj
, iopoll
);
2041 phba
= pbe_eq
->phba
;
2042 if (beiscsi_hba_in_error(phba
)) {
2043 irq_poll_complete(iop
);
2049 eqe
= queue_tail_node(eq
);
2050 while (eqe
->dw
[offsetof(struct amap_eq_entry
, valid
) / 32] &
2052 AMAP_SET_BITS(struct amap_eq_entry
, valid
, eqe
, 0);
2054 eqe
= queue_tail_node(eq
);
2057 hwi_ring_eq_db(phba
, eq
->id
, 1, io_events
, 0, 1);
2059 ret
= beiscsi_process_cq(pbe_eq
, budget
);
2060 pbe_eq
->cq_count
+= ret
;
2062 irq_poll_complete(iop
);
2063 beiscsi_log(phba
, KERN_INFO
,
2064 BEISCSI_LOG_CONFIG
| BEISCSI_LOG_IO
,
2065 "BM_%d : rearm pbe_eq->q.id =%d ret %d\n",
2067 if (!beiscsi_hba_in_error(phba
))
2068 hwi_ring_eq_db(phba
, pbe_eq
->q
.id
, 0, 0, 1, 1);
2074 hwi_write_sgl_v2(struct iscsi_wrb
*pwrb
, struct scatterlist
*sg
,
2075 unsigned int num_sg
, struct beiscsi_io_task
*io_task
)
2077 struct iscsi_sge
*psgl
;
2078 unsigned int sg_len
, index
;
2079 unsigned int sge_len
= 0;
2080 unsigned long long addr
;
2081 struct scatterlist
*l_sg
;
2082 unsigned int offset
;
2084 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, iscsi_bhs_addr_lo
, pwrb
,
2085 io_task
->bhs_pa
.u
.a32
.address_lo
);
2086 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, iscsi_bhs_addr_hi
, pwrb
,
2087 io_task
->bhs_pa
.u
.a32
.address_hi
);
2090 for (index
= 0; (index
< num_sg
) && (index
< 2); index
++,
2093 sg_len
= sg_dma_len(sg
);
2094 addr
= (u64
) sg_dma_address(sg
);
2095 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
,
2097 lower_32_bits(addr
));
2098 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
,
2100 upper_32_bits(addr
));
2101 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
,
2106 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, sge1_r2t_offset
,
2108 sg_len
= sg_dma_len(sg
);
2109 addr
= (u64
) sg_dma_address(sg
);
2110 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
,
2112 lower_32_bits(addr
));
2113 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
,
2115 upper_32_bits(addr
));
2116 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
,
2121 psgl
= (struct iscsi_sge
*)io_task
->psgl_handle
->pfrag
;
2122 memset(psgl
, 0, sizeof(*psgl
) * BE2_SGE
);
2124 AMAP_SET_BITS(struct amap_iscsi_sge
, len
, psgl
, io_task
->bhs_len
- 2);
2126 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_hi
, psgl
,
2127 io_task
->bhs_pa
.u
.a32
.address_hi
);
2128 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_lo
, psgl
,
2129 io_task
->bhs_pa
.u
.a32
.address_lo
);
2132 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, sge0_last
, pwrb
,
2134 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, sge1_last
, pwrb
,
2136 } else if (num_sg
== 2) {
2137 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, sge0_last
, pwrb
,
2139 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, sge1_last
, pwrb
,
2142 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, sge0_last
, pwrb
,
2144 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, sge1_last
, pwrb
,
2152 for (index
= 0; index
< num_sg
; index
++, sg
= sg_next(sg
), psgl
++) {
2153 sg_len
= sg_dma_len(sg
);
2154 addr
= (u64
) sg_dma_address(sg
);
2155 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_lo
, psgl
,
2156 lower_32_bits(addr
));
2157 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_hi
, psgl
,
2158 upper_32_bits(addr
));
2159 AMAP_SET_BITS(struct amap_iscsi_sge
, len
, psgl
, sg_len
);
2160 AMAP_SET_BITS(struct amap_iscsi_sge
, sge_offset
, psgl
, offset
);
2161 AMAP_SET_BITS(struct amap_iscsi_sge
, last_sge
, psgl
, 0);
2165 AMAP_SET_BITS(struct amap_iscsi_sge
, last_sge
, psgl
, 1);
2169 hwi_write_sgl(struct iscsi_wrb
*pwrb
, struct scatterlist
*sg
,
2170 unsigned int num_sg
, struct beiscsi_io_task
*io_task
)
2172 struct iscsi_sge
*psgl
;
2173 unsigned int sg_len
, index
;
2174 unsigned int sge_len
= 0;
2175 unsigned long long addr
;
2176 struct scatterlist
*l_sg
;
2177 unsigned int offset
;
2179 AMAP_SET_BITS(struct amap_iscsi_wrb
, iscsi_bhs_addr_lo
, pwrb
,
2180 io_task
->bhs_pa
.u
.a32
.address_lo
);
2181 AMAP_SET_BITS(struct amap_iscsi_wrb
, iscsi_bhs_addr_hi
, pwrb
,
2182 io_task
->bhs_pa
.u
.a32
.address_hi
);
2185 for (index
= 0; (index
< num_sg
) && (index
< 2); index
++,
2188 sg_len
= sg_dma_len(sg
);
2189 addr
= (u64
) sg_dma_address(sg
);
2190 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_addr_lo
, pwrb
,
2191 ((u32
)(addr
& 0xFFFFFFFF)));
2192 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_addr_hi
, pwrb
,
2193 ((u32
)(addr
>> 32)));
2194 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_len
, pwrb
,
2198 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge1_r2t_offset
,
2200 sg_len
= sg_dma_len(sg
);
2201 addr
= (u64
) sg_dma_address(sg
);
2202 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge1_addr_lo
, pwrb
,
2203 ((u32
)(addr
& 0xFFFFFFFF)));
2204 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge1_addr_hi
, pwrb
,
2205 ((u32
)(addr
>> 32)));
2206 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge1_len
, pwrb
,
2210 psgl
= (struct iscsi_sge
*)io_task
->psgl_handle
->pfrag
;
2211 memset(psgl
, 0, sizeof(*psgl
) * BE2_SGE
);
2213 AMAP_SET_BITS(struct amap_iscsi_sge
, len
, psgl
, io_task
->bhs_len
- 2);
2215 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_hi
, psgl
,
2216 io_task
->bhs_pa
.u
.a32
.address_hi
);
2217 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_lo
, psgl
,
2218 io_task
->bhs_pa
.u
.a32
.address_lo
);
2221 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_last
, pwrb
,
2223 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge1_last
, pwrb
,
2225 } else if (num_sg
== 2) {
2226 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_last
, pwrb
,
2228 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge1_last
, pwrb
,
2231 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_last
, pwrb
,
2233 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge1_last
, pwrb
,
2240 for (index
= 0; index
< num_sg
; index
++, sg
= sg_next(sg
), psgl
++) {
2241 sg_len
= sg_dma_len(sg
);
2242 addr
= (u64
) sg_dma_address(sg
);
2243 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_lo
, psgl
,
2244 (addr
& 0xFFFFFFFF));
2245 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_hi
, psgl
,
2247 AMAP_SET_BITS(struct amap_iscsi_sge
, len
, psgl
, sg_len
);
2248 AMAP_SET_BITS(struct amap_iscsi_sge
, sge_offset
, psgl
, offset
);
2249 AMAP_SET_BITS(struct amap_iscsi_sge
, last_sge
, psgl
, 0);
2253 AMAP_SET_BITS(struct amap_iscsi_sge
, last_sge
, psgl
, 1);
2257 * hwi_write_buffer()- Populate the WRB with task info
2258 * @pwrb: ptr to the WRB entry
2259 * @task: iscsi task which is to be executed
2261 static int hwi_write_buffer(struct iscsi_wrb
*pwrb
, struct iscsi_task
*task
)
2263 struct iscsi_sge
*psgl
;
2264 struct beiscsi_io_task
*io_task
= task
->dd_data
;
2265 struct beiscsi_conn
*beiscsi_conn
= io_task
->conn
;
2266 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
2267 uint8_t dsp_value
= 0;
2269 io_task
->bhs_len
= sizeof(struct be_nonio_bhs
) - 2;
2270 AMAP_SET_BITS(struct amap_iscsi_wrb
, iscsi_bhs_addr_lo
, pwrb
,
2271 io_task
->bhs_pa
.u
.a32
.address_lo
);
2272 AMAP_SET_BITS(struct amap_iscsi_wrb
, iscsi_bhs_addr_hi
, pwrb
,
2273 io_task
->bhs_pa
.u
.a32
.address_hi
);
2277 /* Check for the data_count */
2278 dsp_value
= (task
->data_count
) ? 1 : 0;
2280 if (is_chip_be2_be3r(phba
))
2281 AMAP_SET_BITS(struct amap_iscsi_wrb
, dsp
,
2284 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, dsp
,
2287 /* Map addr only if there is data_count */
2289 io_task
->mtask_addr
= dma_map_single(&phba
->pcidev
->dev
,
2293 if (dma_mapping_error(&phba
->pcidev
->dev
,
2294 io_task
->mtask_addr
))
2296 io_task
->mtask_data_count
= task
->data_count
;
2298 io_task
->mtask_addr
= 0;
2300 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_addr_lo
, pwrb
,
2301 lower_32_bits(io_task
->mtask_addr
));
2302 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_addr_hi
, pwrb
,
2303 upper_32_bits(io_task
->mtask_addr
));
2304 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_len
, pwrb
,
2307 AMAP_SET_BITS(struct amap_iscsi_wrb
, sge0_last
, pwrb
, 1);
2309 AMAP_SET_BITS(struct amap_iscsi_wrb
, dsp
, pwrb
, 0);
2310 io_task
->mtask_addr
= 0;
2313 psgl
= (struct iscsi_sge
*)io_task
->psgl_handle
->pfrag
;
2315 AMAP_SET_BITS(struct amap_iscsi_sge
, len
, psgl
, io_task
->bhs_len
);
2317 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_hi
, psgl
,
2318 io_task
->bhs_pa
.u
.a32
.address_hi
);
2319 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_lo
, psgl
,
2320 io_task
->bhs_pa
.u
.a32
.address_lo
);
2323 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_hi
, psgl
, 0);
2324 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_lo
, psgl
, 0);
2325 AMAP_SET_BITS(struct amap_iscsi_sge
, len
, psgl
, 0);
2326 AMAP_SET_BITS(struct amap_iscsi_sge
, sge_offset
, psgl
, 0);
2327 AMAP_SET_BITS(struct amap_iscsi_sge
, rsvd0
, psgl
, 0);
2328 AMAP_SET_BITS(struct amap_iscsi_sge
, last_sge
, psgl
, 0);
2332 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_lo
, psgl
,
2333 lower_32_bits(io_task
->mtask_addr
));
2334 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_hi
, psgl
,
2335 upper_32_bits(io_task
->mtask_addr
));
2337 AMAP_SET_BITS(struct amap_iscsi_sge
, len
, psgl
, 0x106);
2339 AMAP_SET_BITS(struct amap_iscsi_sge
, last_sge
, psgl
, 1);
2344 * beiscsi_find_mem_req()- Find mem needed
2345 * @phba: ptr to HBA struct
2347 static void beiscsi_find_mem_req(struct beiscsi_hba
*phba
)
2349 uint8_t mem_descr_index
, ulp_num
;
2350 unsigned int num_async_pdu_buf_pages
;
2351 unsigned int num_async_pdu_data_pages
, wrb_sz_per_cxn
;
2352 unsigned int num_async_pdu_buf_sgl_pages
, num_async_pdu_data_sgl_pages
;
2354 phba
->params
.hwi_ws_sz
= sizeof(struct hwi_controller
);
2356 phba
->mem_req
[ISCSI_MEM_GLOBAL_HEADER
] = 2 *
2357 BE_ISCSI_PDU_HEADER_SIZE
;
2358 phba
->mem_req
[HWI_MEM_ADDN_CONTEXT
] =
2359 sizeof(struct hwi_context_memory
);
2362 phba
->mem_req
[HWI_MEM_WRB
] = sizeof(struct iscsi_wrb
)
2363 * (phba
->params
.wrbs_per_cxn
)
2364 * phba
->params
.cxns_per_ctrl
;
2365 wrb_sz_per_cxn
= sizeof(struct wrb_handle
) *
2366 (phba
->params
.wrbs_per_cxn
);
2367 phba
->mem_req
[HWI_MEM_WRBH
] = roundup_pow_of_two((wrb_sz_per_cxn
) *
2368 phba
->params
.cxns_per_ctrl
);
2370 phba
->mem_req
[HWI_MEM_SGLH
] = sizeof(struct sgl_handle
) *
2371 phba
->params
.icds_per_ctrl
;
2372 phba
->mem_req
[HWI_MEM_SGE
] = sizeof(struct iscsi_sge
) *
2373 phba
->params
.num_sge_per_io
* phba
->params
.icds_per_ctrl
;
2374 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
2375 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
)) {
2377 num_async_pdu_buf_sgl_pages
=
2378 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
2380 sizeof(struct phys_addr
));
2382 num_async_pdu_buf_pages
=
2383 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
2385 phba
->params
.defpdu_hdr_sz
);
2387 num_async_pdu_data_pages
=
2388 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
2390 phba
->params
.defpdu_data_sz
);
2392 num_async_pdu_data_sgl_pages
=
2393 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
2395 sizeof(struct phys_addr
));
2397 mem_descr_index
= (HWI_MEM_TEMPLATE_HDR_ULP0
+
2398 (ulp_num
* MEM_DESCR_OFFSET
));
2399 phba
->mem_req
[mem_descr_index
] =
2400 BEISCSI_GET_CID_COUNT(phba
, ulp_num
) *
2401 BEISCSI_TEMPLATE_HDR_PER_CXN_SIZE
;
2403 mem_descr_index
= (HWI_MEM_ASYNC_HEADER_BUF_ULP0
+
2404 (ulp_num
* MEM_DESCR_OFFSET
));
2405 phba
->mem_req
[mem_descr_index
] =
2406 num_async_pdu_buf_pages
*
2409 mem_descr_index
= (HWI_MEM_ASYNC_DATA_BUF_ULP0
+
2410 (ulp_num
* MEM_DESCR_OFFSET
));
2411 phba
->mem_req
[mem_descr_index
] =
2412 num_async_pdu_data_pages
*
2415 mem_descr_index
= (HWI_MEM_ASYNC_HEADER_RING_ULP0
+
2416 (ulp_num
* MEM_DESCR_OFFSET
));
2417 phba
->mem_req
[mem_descr_index
] =
2418 num_async_pdu_buf_sgl_pages
*
2421 mem_descr_index
= (HWI_MEM_ASYNC_DATA_RING_ULP0
+
2422 (ulp_num
* MEM_DESCR_OFFSET
));
2423 phba
->mem_req
[mem_descr_index
] =
2424 num_async_pdu_data_sgl_pages
*
2427 mem_descr_index
= (HWI_MEM_ASYNC_HEADER_HANDLE_ULP0
+
2428 (ulp_num
* MEM_DESCR_OFFSET
));
2429 phba
->mem_req
[mem_descr_index
] =
2430 BEISCSI_ASYNC_HDQ_SIZE(phba
, ulp_num
) *
2431 sizeof(struct hd_async_handle
);
2433 mem_descr_index
= (HWI_MEM_ASYNC_DATA_HANDLE_ULP0
+
2434 (ulp_num
* MEM_DESCR_OFFSET
));
2435 phba
->mem_req
[mem_descr_index
] =
2436 BEISCSI_ASYNC_HDQ_SIZE(phba
, ulp_num
) *
2437 sizeof(struct hd_async_handle
);
2439 mem_descr_index
= (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0
+
2440 (ulp_num
* MEM_DESCR_OFFSET
));
2441 phba
->mem_req
[mem_descr_index
] =
2442 sizeof(struct hd_async_context
) +
2443 (BEISCSI_ASYNC_HDQ_SIZE(phba
, ulp_num
) *
2444 sizeof(struct hd_async_entry
));
2449 static int beiscsi_alloc_mem(struct beiscsi_hba
*phba
)
2452 struct hwi_controller
*phwi_ctrlr
;
2453 struct be_mem_descriptor
*mem_descr
;
2454 struct mem_array
*mem_arr
, *mem_arr_orig
;
2455 unsigned int i
, j
, alloc_size
, curr_alloc_size
;
2457 phba
->phwi_ctrlr
= kzalloc(phba
->params
.hwi_ws_sz
, GFP_KERNEL
);
2458 if (!phba
->phwi_ctrlr
)
2461 /* Allocate memory for wrb_context */
2462 phwi_ctrlr
= phba
->phwi_ctrlr
;
2463 phwi_ctrlr
->wrb_context
= kcalloc(phba
->params
.cxns_per_ctrl
,
2464 sizeof(struct hwi_wrb_context
),
2466 if (!phwi_ctrlr
->wrb_context
) {
2467 kfree(phba
->phwi_ctrlr
);
2471 phba
->init_mem
= kcalloc(SE_MEM_MAX
, sizeof(*mem_descr
),
2473 if (!phba
->init_mem
) {
2474 kfree(phwi_ctrlr
->wrb_context
);
2475 kfree(phba
->phwi_ctrlr
);
2479 mem_arr_orig
= kmalloc_array(BEISCSI_MAX_FRAGS_INIT
,
2480 sizeof(*mem_arr_orig
),
2482 if (!mem_arr_orig
) {
2483 kfree(phba
->init_mem
);
2484 kfree(phwi_ctrlr
->wrb_context
);
2485 kfree(phba
->phwi_ctrlr
);
2489 mem_descr
= phba
->init_mem
;
2490 for (i
= 0; i
< SE_MEM_MAX
; i
++) {
2491 if (!phba
->mem_req
[i
]) {
2492 mem_descr
->mem_array
= NULL
;
2498 mem_arr
= mem_arr_orig
;
2499 alloc_size
= phba
->mem_req
[i
];
2500 memset(mem_arr
, 0, sizeof(struct mem_array
) *
2501 BEISCSI_MAX_FRAGS_INIT
);
2502 curr_alloc_size
= min(be_max_phys_size
* 1024, alloc_size
);
2504 mem_arr
->virtual_address
=
2505 dma_alloc_coherent(&phba
->pcidev
->dev
,
2506 curr_alloc_size
, &bus_add
, GFP_KERNEL
);
2507 if (!mem_arr
->virtual_address
) {
2508 if (curr_alloc_size
<= BE_MIN_MEM_SIZE
)
2510 if (curr_alloc_size
-
2511 rounddown_pow_of_two(curr_alloc_size
))
2512 curr_alloc_size
= rounddown_pow_of_two
2515 curr_alloc_size
= curr_alloc_size
/ 2;
2517 mem_arr
->bus_address
.u
.
2518 a64
.address
= (__u64
) bus_add
;
2519 mem_arr
->size
= curr_alloc_size
;
2520 alloc_size
-= curr_alloc_size
;
2521 curr_alloc_size
= min(be_max_phys_size
*
2526 } while (alloc_size
);
2527 mem_descr
->num_elements
= j
;
2528 mem_descr
->size_in_bytes
= phba
->mem_req
[i
];
2529 mem_descr
->mem_array
= kmalloc_array(j
, sizeof(*mem_arr
),
2531 if (!mem_descr
->mem_array
)
2534 memcpy(mem_descr
->mem_array
, mem_arr_orig
,
2535 sizeof(struct mem_array
) * j
);
2538 kfree(mem_arr_orig
);
2541 mem_descr
->num_elements
= j
;
2542 while ((i
) || (j
)) {
2543 for (j
= mem_descr
->num_elements
; j
> 0; j
--) {
2544 dma_free_coherent(&phba
->pcidev
->dev
,
2545 mem_descr
->mem_array
[j
- 1].size
,
2546 mem_descr
->mem_array
[j
- 1].
2548 (unsigned long)mem_descr
->
2550 bus_address
.u
.a64
.address
);
2554 kfree(mem_descr
->mem_array
);
2558 kfree(mem_arr_orig
);
2559 kfree(phba
->init_mem
);
2560 kfree(phba
->phwi_ctrlr
->wrb_context
);
2561 kfree(phba
->phwi_ctrlr
);
2565 static int beiscsi_get_memory(struct beiscsi_hba
*phba
)
2567 beiscsi_find_mem_req(phba
);
2568 return beiscsi_alloc_mem(phba
);
2571 static void iscsi_init_global_templates(struct beiscsi_hba
*phba
)
2573 struct pdu_data_out
*pdata_out
;
2574 struct pdu_nop_out
*pnop_out
;
2575 struct be_mem_descriptor
*mem_descr
;
2577 mem_descr
= phba
->init_mem
;
2578 mem_descr
+= ISCSI_MEM_GLOBAL_HEADER
;
2580 (struct pdu_data_out
*)mem_descr
->mem_array
[0].virtual_address
;
2581 memset(pdata_out
, 0, BE_ISCSI_PDU_HEADER_SIZE
);
2583 AMAP_SET_BITS(struct amap_pdu_data_out
, opcode
, pdata_out
,
2587 (struct pdu_nop_out
*)((unsigned char *)mem_descr
->mem_array
[0].
2588 virtual_address
+ BE_ISCSI_PDU_HEADER_SIZE
);
2590 memset(pnop_out
, 0, BE_ISCSI_PDU_HEADER_SIZE
);
2591 AMAP_SET_BITS(struct amap_pdu_nop_out
, ttt
, pnop_out
, 0xFFFFFFFF);
2592 AMAP_SET_BITS(struct amap_pdu_nop_out
, f_bit
, pnop_out
, 1);
2593 AMAP_SET_BITS(struct amap_pdu_nop_out
, i_bit
, pnop_out
, 0);
2596 static int beiscsi_init_wrb_handle(struct beiscsi_hba
*phba
)
2598 struct be_mem_descriptor
*mem_descr_wrbh
, *mem_descr_wrb
;
2599 struct hwi_context_memory
*phwi_ctxt
;
2600 struct wrb_handle
*pwrb_handle
= NULL
;
2601 struct hwi_controller
*phwi_ctrlr
;
2602 struct hwi_wrb_context
*pwrb_context
;
2603 struct iscsi_wrb
*pwrb
= NULL
;
2604 unsigned int num_cxn_wrbh
= 0;
2605 unsigned int num_cxn_wrb
= 0, j
, idx
= 0, index
;
2607 mem_descr_wrbh
= phba
->init_mem
;
2608 mem_descr_wrbh
+= HWI_MEM_WRBH
;
2610 mem_descr_wrb
= phba
->init_mem
;
2611 mem_descr_wrb
+= HWI_MEM_WRB
;
2612 phwi_ctrlr
= phba
->phwi_ctrlr
;
2614 /* Allocate memory for WRBQ */
2615 phwi_ctxt
= phwi_ctrlr
->phwi_ctxt
;
2616 phwi_ctxt
->be_wrbq
= kcalloc(phba
->params
.cxns_per_ctrl
,
2617 sizeof(struct be_queue_info
),
2619 if (!phwi_ctxt
->be_wrbq
) {
2620 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
2621 "BM_%d : WRBQ Mem Alloc Failed\n");
2625 for (index
= 0; index
< phba
->params
.cxns_per_ctrl
; index
++) {
2626 pwrb_context
= &phwi_ctrlr
->wrb_context
[index
];
2627 pwrb_context
->pwrb_handle_base
=
2628 kcalloc(phba
->params
.wrbs_per_cxn
,
2629 sizeof(struct wrb_handle
*),
2631 if (!pwrb_context
->pwrb_handle_base
) {
2632 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
2633 "BM_%d : Mem Alloc Failed. Failing to load\n");
2634 goto init_wrb_hndl_failed
;
2636 pwrb_context
->pwrb_handle_basestd
=
2637 kcalloc(phba
->params
.wrbs_per_cxn
,
2638 sizeof(struct wrb_handle
*),
2640 if (!pwrb_context
->pwrb_handle_basestd
) {
2641 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
2642 "BM_%d : Mem Alloc Failed. Failing to load\n");
2643 goto init_wrb_hndl_failed
;
2645 if (!num_cxn_wrbh
) {
2647 mem_descr_wrbh
->mem_array
[idx
].virtual_address
;
2648 num_cxn_wrbh
= ((mem_descr_wrbh
->mem_array
[idx
].size
) /
2649 ((sizeof(struct wrb_handle
)) *
2650 phba
->params
.wrbs_per_cxn
));
2653 pwrb_context
->alloc_index
= 0;
2654 pwrb_context
->wrb_handles_available
= 0;
2655 pwrb_context
->free_index
= 0;
2658 for (j
= 0; j
< phba
->params
.wrbs_per_cxn
; j
++) {
2659 pwrb_context
->pwrb_handle_base
[j
] = pwrb_handle
;
2660 pwrb_context
->pwrb_handle_basestd
[j
] =
2662 pwrb_context
->wrb_handles_available
++;
2663 pwrb_handle
->wrb_index
= j
;
2668 spin_lock_init(&pwrb_context
->wrb_lock
);
2671 for (index
= 0; index
< phba
->params
.cxns_per_ctrl
; index
++) {
2672 pwrb_context
= &phwi_ctrlr
->wrb_context
[index
];
2674 pwrb
= mem_descr_wrb
->mem_array
[idx
].virtual_address
;
2675 num_cxn_wrb
= (mem_descr_wrb
->mem_array
[idx
].size
) /
2676 ((sizeof(struct iscsi_wrb
) *
2677 phba
->params
.wrbs_per_cxn
));
2682 for (j
= 0; j
< phba
->params
.wrbs_per_cxn
; j
++) {
2683 pwrb_handle
= pwrb_context
->pwrb_handle_base
[j
];
2684 pwrb_handle
->pwrb
= pwrb
;
2691 init_wrb_hndl_failed
:
2692 for (j
= index
; j
> 0; j
--) {
2693 pwrb_context
= &phwi_ctrlr
->wrb_context
[j
];
2694 kfree(pwrb_context
->pwrb_handle_base
);
2695 kfree(pwrb_context
->pwrb_handle_basestd
);
2700 static int hwi_init_async_pdu_ctx(struct beiscsi_hba
*phba
)
2703 struct hwi_controller
*phwi_ctrlr
;
2704 struct hba_parameters
*p
= &phba
->params
;
2705 struct hd_async_context
*pasync_ctx
;
2706 struct hd_async_handle
*pasync_header_h
, *pasync_data_h
;
2707 unsigned int index
, idx
, num_per_mem
, num_async_data
;
2708 struct be_mem_descriptor
*mem_descr
;
2710 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
2711 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
)) {
2712 /* get async_ctx for each ULP */
2713 mem_descr
= (struct be_mem_descriptor
*)phba
->init_mem
;
2714 mem_descr
+= (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0
+
2715 (ulp_num
* MEM_DESCR_OFFSET
));
2717 phwi_ctrlr
= phba
->phwi_ctrlr
;
2718 phwi_ctrlr
->phwi_ctxt
->pasync_ctx
[ulp_num
] =
2719 (struct hd_async_context
*)
2720 mem_descr
->mem_array
[0].virtual_address
;
2722 pasync_ctx
= phwi_ctrlr
->phwi_ctxt
->pasync_ctx
[ulp_num
];
2723 memset(pasync_ctx
, 0, sizeof(*pasync_ctx
));
2725 pasync_ctx
->async_entry
=
2726 (struct hd_async_entry
*)
2727 ((long unsigned int)pasync_ctx
+
2728 sizeof(struct hd_async_context
));
2730 pasync_ctx
->num_entries
= BEISCSI_ASYNC_HDQ_SIZE(phba
,
2732 /* setup header buffers */
2733 mem_descr
= (struct be_mem_descriptor
*)phba
->init_mem
;
2734 mem_descr
+= HWI_MEM_ASYNC_HEADER_BUF_ULP0
+
2735 (ulp_num
* MEM_DESCR_OFFSET
);
2736 if (mem_descr
->mem_array
[0].virtual_address
) {
2737 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
2738 "BM_%d : hwi_init_async_pdu_ctx"
2739 " HWI_MEM_ASYNC_HEADER_BUF_ULP%d va=%p\n",
2741 mem_descr
->mem_array
[0].
2744 beiscsi_log(phba
, KERN_WARNING
,
2746 "BM_%d : No Virtual address for ULP : %d\n",
2749 pasync_ctx
->async_header
.pi
= 0;
2750 pasync_ctx
->async_header
.buffer_size
= p
->defpdu_hdr_sz
;
2751 pasync_ctx
->async_header
.va_base
=
2752 mem_descr
->mem_array
[0].virtual_address
;
2754 pasync_ctx
->async_header
.pa_base
.u
.a64
.address
=
2755 mem_descr
->mem_array
[0].
2756 bus_address
.u
.a64
.address
;
2758 /* setup header buffer sgls */
2759 mem_descr
= (struct be_mem_descriptor
*)phba
->init_mem
;
2760 mem_descr
+= HWI_MEM_ASYNC_HEADER_RING_ULP0
+
2761 (ulp_num
* MEM_DESCR_OFFSET
);
2762 if (mem_descr
->mem_array
[0].virtual_address
) {
2763 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
2764 "BM_%d : hwi_init_async_pdu_ctx"
2765 " HWI_MEM_ASYNC_HEADER_RING_ULP%d va=%p\n",
2767 mem_descr
->mem_array
[0].
2770 beiscsi_log(phba
, KERN_WARNING
,
2772 "BM_%d : No Virtual address for ULP : %d\n",
2775 pasync_ctx
->async_header
.ring_base
=
2776 mem_descr
->mem_array
[0].virtual_address
;
2778 /* setup header buffer handles */
2779 mem_descr
= (struct be_mem_descriptor
*)phba
->init_mem
;
2780 mem_descr
+= HWI_MEM_ASYNC_HEADER_HANDLE_ULP0
+
2781 (ulp_num
* MEM_DESCR_OFFSET
);
2782 if (mem_descr
->mem_array
[0].virtual_address
) {
2783 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
2784 "BM_%d : hwi_init_async_pdu_ctx"
2785 " HWI_MEM_ASYNC_HEADER_HANDLE_ULP%d va=%p\n",
2787 mem_descr
->mem_array
[0].
2790 beiscsi_log(phba
, KERN_WARNING
,
2792 "BM_%d : No Virtual address for ULP : %d\n",
2795 pasync_ctx
->async_header
.handle_base
=
2796 mem_descr
->mem_array
[0].virtual_address
;
2798 /* setup data buffer sgls */
2799 mem_descr
= (struct be_mem_descriptor
*)phba
->init_mem
;
2800 mem_descr
+= HWI_MEM_ASYNC_DATA_RING_ULP0
+
2801 (ulp_num
* MEM_DESCR_OFFSET
);
2802 if (mem_descr
->mem_array
[0].virtual_address
) {
2803 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
2804 "BM_%d : hwi_init_async_pdu_ctx"
2805 " HWI_MEM_ASYNC_DATA_RING_ULP%d va=%p\n",
2807 mem_descr
->mem_array
[0].
2810 beiscsi_log(phba
, KERN_WARNING
,
2812 "BM_%d : No Virtual address for ULP : %d\n",
2815 pasync_ctx
->async_data
.ring_base
=
2816 mem_descr
->mem_array
[0].virtual_address
;
2818 /* setup data buffer handles */
2819 mem_descr
= (struct be_mem_descriptor
*)phba
->init_mem
;
2820 mem_descr
+= HWI_MEM_ASYNC_DATA_HANDLE_ULP0
+
2821 (ulp_num
* MEM_DESCR_OFFSET
);
2822 if (!mem_descr
->mem_array
[0].virtual_address
)
2823 beiscsi_log(phba
, KERN_WARNING
,
2825 "BM_%d : No Virtual address for ULP : %d\n",
2828 pasync_ctx
->async_data
.handle_base
=
2829 mem_descr
->mem_array
[0].virtual_address
;
2832 (struct hd_async_handle
*)
2833 pasync_ctx
->async_header
.handle_base
;
2835 (struct hd_async_handle
*)
2836 pasync_ctx
->async_data
.handle_base
;
2838 /* setup data buffers */
2839 mem_descr
= (struct be_mem_descriptor
*)phba
->init_mem
;
2840 mem_descr
+= HWI_MEM_ASYNC_DATA_BUF_ULP0
+
2841 (ulp_num
* MEM_DESCR_OFFSET
);
2842 if (mem_descr
->mem_array
[0].virtual_address
) {
2843 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
2844 "BM_%d : hwi_init_async_pdu_ctx"
2845 " HWI_MEM_ASYNC_DATA_BUF_ULP%d va=%p\n",
2847 mem_descr
->mem_array
[0].
2850 beiscsi_log(phba
, KERN_WARNING
,
2852 "BM_%d : No Virtual address for ULP : %d\n",
2856 pasync_ctx
->async_data
.pi
= 0;
2857 pasync_ctx
->async_data
.buffer_size
= p
->defpdu_data_sz
;
2858 pasync_ctx
->async_data
.va_base
=
2859 mem_descr
->mem_array
[idx
].virtual_address
;
2860 pasync_ctx
->async_data
.pa_base
.u
.a64
.address
=
2861 mem_descr
->mem_array
[idx
].
2862 bus_address
.u
.a64
.address
;
2864 num_async_data
= ((mem_descr
->mem_array
[idx
].size
) /
2865 phba
->params
.defpdu_data_sz
);
2868 for (index
= 0; index
< BEISCSI_ASYNC_HDQ_SIZE
2869 (phba
, ulp_num
); index
++) {
2870 pasync_header_h
->cri
= -1;
2871 pasync_header_h
->is_header
= 1;
2872 pasync_header_h
->index
= index
;
2873 INIT_LIST_HEAD(&pasync_header_h
->link
);
2874 pasync_header_h
->pbuffer
=
2875 (void *)((unsigned long)
2877 async_header
.va_base
) +
2878 (p
->defpdu_hdr_sz
* index
));
2880 pasync_header_h
->pa
.u
.a64
.address
=
2881 pasync_ctx
->async_header
.pa_base
.u
.a64
.
2882 address
+ (p
->defpdu_hdr_sz
* index
);
2884 pasync_ctx
->async_entry
[index
].header
=
2887 INIT_LIST_HEAD(&pasync_ctx
->async_entry
[index
].
2890 pasync_data_h
->cri
= -1;
2891 pasync_data_h
->is_header
= 0;
2892 pasync_data_h
->index
= index
;
2893 INIT_LIST_HEAD(&pasync_data_h
->link
);
2895 if (!num_async_data
) {
2898 pasync_ctx
->async_data
.va_base
=
2899 mem_descr
->mem_array
[idx
].
2901 pasync_ctx
->async_data
.pa_base
.u
.
2903 mem_descr
->mem_array
[idx
].
2904 bus_address
.u
.a64
.address
;
2906 ((mem_descr
->mem_array
[idx
].
2908 phba
->params
.defpdu_data_sz
);
2910 pasync_data_h
->pbuffer
=
2911 (void *)((unsigned long)
2912 (pasync_ctx
->async_data
.va_base
) +
2913 (p
->defpdu_data_sz
* num_per_mem
));
2915 pasync_data_h
->pa
.u
.a64
.address
=
2916 pasync_ctx
->async_data
.pa_base
.u
.a64
.
2917 address
+ (p
->defpdu_data_sz
*
2922 pasync_ctx
->async_entry
[index
].data
=
2933 be_sgl_create_contiguous(void *virtual_address
,
2934 u64 physical_address
, u32 length
,
2935 struct be_dma_mem
*sgl
)
2937 WARN_ON(!virtual_address
);
2938 WARN_ON(!physical_address
);
2942 sgl
->va
= virtual_address
;
2943 sgl
->dma
= (unsigned long)physical_address
;
2949 static void be_sgl_destroy_contiguous(struct be_dma_mem
*sgl
)
2951 memset(sgl
, 0, sizeof(*sgl
));
2955 hwi_build_be_sgl_arr(struct beiscsi_hba
*phba
,
2956 struct mem_array
*pmem
, struct be_dma_mem
*sgl
)
2959 be_sgl_destroy_contiguous(sgl
);
2961 be_sgl_create_contiguous(pmem
->virtual_address
,
2962 pmem
->bus_address
.u
.a64
.address
,
2967 hwi_build_be_sgl_by_offset(struct beiscsi_hba
*phba
,
2968 struct mem_array
*pmem
, struct be_dma_mem
*sgl
)
2971 be_sgl_destroy_contiguous(sgl
);
2973 be_sgl_create_contiguous((unsigned char *)pmem
->virtual_address
,
2974 pmem
->bus_address
.u
.a64
.address
,
2978 static int be_fill_queue(struct be_queue_info
*q
,
2979 u16 len
, u16 entry_size
, void *vaddress
)
2981 struct be_dma_mem
*mem
= &q
->dma_mem
;
2983 memset(q
, 0, sizeof(*q
));
2985 q
->entry_size
= entry_size
;
2986 mem
->size
= len
* entry_size
;
2990 memset(mem
->va
, 0, mem
->size
);
2994 static int beiscsi_create_eqs(struct beiscsi_hba
*phba
,
2995 struct hwi_context_memory
*phwi_context
)
2997 int ret
= -ENOMEM
, eq_for_mcc
;
2998 unsigned int i
, num_eq_pages
;
2999 struct be_queue_info
*eq
;
3000 struct be_dma_mem
*mem
;
3004 num_eq_pages
= PAGES_REQUIRED(phba
->params
.num_eq_entries
* \
3005 sizeof(struct be_eq_entry
));
3007 if (phba
->pcidev
->msix_enabled
)
3011 for (i
= 0; i
< (phba
->num_cpus
+ eq_for_mcc
); i
++) {
3012 eq
= &phwi_context
->be_eq
[i
].q
;
3014 phwi_context
->be_eq
[i
].phba
= phba
;
3015 eq_vaddress
= dma_alloc_coherent(&phba
->pcidev
->dev
,
3016 num_eq_pages
* PAGE_SIZE
,
3017 &paddr
, GFP_KERNEL
);
3020 goto create_eq_error
;
3023 mem
->va
= eq_vaddress
;
3024 ret
= be_fill_queue(eq
, phba
->params
.num_eq_entries
,
3025 sizeof(struct be_eq_entry
), eq_vaddress
);
3027 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3028 "BM_%d : be_fill_queue Failed for EQ\n");
3029 goto create_eq_error
;
3033 ret
= beiscsi_cmd_eq_create(&phba
->ctrl
, eq
,
3034 BEISCSI_EQ_DELAY_DEF
);
3036 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3037 "BM_%d : beiscsi_cmd_eq_create"
3039 goto create_eq_error
;
3042 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3043 "BM_%d : eqid = %d\n",
3044 phwi_context
->be_eq
[i
].q
.id
);
3049 for (i
= 0; i
< (phba
->num_cpus
+ eq_for_mcc
); i
++) {
3050 eq
= &phwi_context
->be_eq
[i
].q
;
3053 dma_free_coherent(&phba
->pcidev
->dev
, num_eq_pages
3060 static int beiscsi_create_cqs(struct beiscsi_hba
*phba
,
3061 struct hwi_context_memory
*phwi_context
)
3063 unsigned int i
, num_cq_pages
;
3064 struct be_queue_info
*cq
, *eq
;
3065 struct be_dma_mem
*mem
;
3066 struct be_eq_obj
*pbe_eq
;
3071 num_cq_pages
= PAGES_REQUIRED(phba
->params
.num_cq_entries
* \
3072 sizeof(struct sol_cqe
));
3074 for (i
= 0; i
< phba
->num_cpus
; i
++) {
3075 cq
= &phwi_context
->be_cq
[i
];
3076 eq
= &phwi_context
->be_eq
[i
].q
;
3077 pbe_eq
= &phwi_context
->be_eq
[i
];
3079 pbe_eq
->phba
= phba
;
3081 cq_vaddress
= dma_alloc_coherent(&phba
->pcidev
->dev
,
3082 num_cq_pages
* PAGE_SIZE
,
3083 &paddr
, GFP_KERNEL
);
3086 goto create_cq_error
;
3089 ret
= be_fill_queue(cq
, phba
->params
.num_cq_entries
,
3090 sizeof(struct sol_cqe
), cq_vaddress
);
3092 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3093 "BM_%d : be_fill_queue Failed "
3095 goto create_cq_error
;
3099 ret
= beiscsi_cmd_cq_create(&phba
->ctrl
, cq
, eq
, false,
3102 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3103 "BM_%d : beiscsi_cmd_eq_create"
3104 "Failed for ISCSI CQ\n");
3105 goto create_cq_error
;
3107 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3108 "BM_%d : iscsi cq_id is %d for eq_id %d\n"
3109 "iSCSI CQ CREATED\n", cq
->id
, eq
->id
);
3114 for (i
= 0; i
< phba
->num_cpus
; i
++) {
3115 cq
= &phwi_context
->be_cq
[i
];
3118 dma_free_coherent(&phba
->pcidev
->dev
, num_cq_pages
3126 beiscsi_create_def_hdr(struct beiscsi_hba
*phba
,
3127 struct hwi_context_memory
*phwi_context
,
3128 struct hwi_controller
*phwi_ctrlr
,
3129 unsigned int def_pdu_ring_sz
, uint8_t ulp_num
)
3133 struct be_queue_info
*dq
, *cq
;
3134 struct be_dma_mem
*mem
;
3135 struct be_mem_descriptor
*mem_descr
;
3139 dq
= &phwi_context
->be_def_hdrq
[ulp_num
];
3140 cq
= &phwi_context
->be_cq
[0];
3142 mem_descr
= phba
->init_mem
;
3143 mem_descr
+= HWI_MEM_ASYNC_HEADER_RING_ULP0
+
3144 (ulp_num
* MEM_DESCR_OFFSET
);
3145 dq_vaddress
= mem_descr
->mem_array
[idx
].virtual_address
;
3146 ret
= be_fill_queue(dq
, mem_descr
->mem_array
[0].size
/
3147 sizeof(struct phys_addr
),
3148 sizeof(struct phys_addr
), dq_vaddress
);
3150 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3151 "BM_%d : be_fill_queue Failed for DEF PDU HDR on ULP : %d\n",
3156 mem
->dma
= (unsigned long)mem_descr
->mem_array
[idx
].
3157 bus_address
.u
.a64
.address
;
3158 ret
= be_cmd_create_default_pdu_queue(&phba
->ctrl
, cq
, dq
,
3160 phba
->params
.defpdu_hdr_sz
,
3161 BEISCSI_DEFQ_HDR
, ulp_num
);
3163 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3164 "BM_%d : be_cmd_create_default_pdu_queue Failed DEFHDR on ULP : %d\n",
3170 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3171 "BM_%d : iscsi hdr def pdu id for ULP : %d is %d\n",
3173 phwi_context
->be_def_hdrq
[ulp_num
].id
);
3178 beiscsi_create_def_data(struct beiscsi_hba
*phba
,
3179 struct hwi_context_memory
*phwi_context
,
3180 struct hwi_controller
*phwi_ctrlr
,
3181 unsigned int def_pdu_ring_sz
, uint8_t ulp_num
)
3185 struct be_queue_info
*dataq
, *cq
;
3186 struct be_dma_mem
*mem
;
3187 struct be_mem_descriptor
*mem_descr
;
3191 dataq
= &phwi_context
->be_def_dataq
[ulp_num
];
3192 cq
= &phwi_context
->be_cq
[0];
3193 mem
= &dataq
->dma_mem
;
3194 mem_descr
= phba
->init_mem
;
3195 mem_descr
+= HWI_MEM_ASYNC_DATA_RING_ULP0
+
3196 (ulp_num
* MEM_DESCR_OFFSET
);
3197 dq_vaddress
= mem_descr
->mem_array
[idx
].virtual_address
;
3198 ret
= be_fill_queue(dataq
, mem_descr
->mem_array
[0].size
/
3199 sizeof(struct phys_addr
),
3200 sizeof(struct phys_addr
), dq_vaddress
);
3202 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3203 "BM_%d : be_fill_queue Failed for DEF PDU "
3204 "DATA on ULP : %d\n",
3209 mem
->dma
= (unsigned long)mem_descr
->mem_array
[idx
].
3210 bus_address
.u
.a64
.address
;
3211 ret
= be_cmd_create_default_pdu_queue(&phba
->ctrl
, cq
, dataq
,
3213 phba
->params
.defpdu_data_sz
,
3214 BEISCSI_DEFQ_DATA
, ulp_num
);
3216 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3217 "BM_%d be_cmd_create_default_pdu_queue"
3218 " Failed for DEF PDU DATA on ULP : %d\n",
3223 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3224 "BM_%d : iscsi def data id on ULP : %d is %d\n",
3226 phwi_context
->be_def_dataq
[ulp_num
].id
);
3228 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3229 "BM_%d : DEFAULT PDU DATA RING CREATED"
3230 "on ULP : %d\n", ulp_num
);
3236 beiscsi_post_template_hdr(struct beiscsi_hba
*phba
)
3238 struct be_mem_descriptor
*mem_descr
;
3239 struct mem_array
*pm_arr
;
3240 struct be_dma_mem sgl
;
3241 int status
, ulp_num
;
3243 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
3244 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
)) {
3245 mem_descr
= (struct be_mem_descriptor
*)phba
->init_mem
;
3246 mem_descr
+= HWI_MEM_TEMPLATE_HDR_ULP0
+
3247 (ulp_num
* MEM_DESCR_OFFSET
);
3248 pm_arr
= mem_descr
->mem_array
;
3250 hwi_build_be_sgl_arr(phba
, pm_arr
, &sgl
);
3251 status
= be_cmd_iscsi_post_template_hdr(
3255 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3256 "BM_%d : Post Template HDR Failed for"
3257 "ULP_%d\n", ulp_num
);
3261 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3262 "BM_%d : Template HDR Pages Posted for"
3263 "ULP_%d\n", ulp_num
);
3270 beiscsi_post_pages(struct beiscsi_hba
*phba
)
3272 struct be_mem_descriptor
*mem_descr
;
3273 struct mem_array
*pm_arr
;
3274 unsigned int page_offset
, i
;
3275 struct be_dma_mem sgl
;
3276 int status
, ulp_num
= 0;
3278 mem_descr
= phba
->init_mem
;
3279 mem_descr
+= HWI_MEM_SGE
;
3280 pm_arr
= mem_descr
->mem_array
;
3282 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++)
3283 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
))
3286 page_offset
= (sizeof(struct iscsi_sge
) * phba
->params
.num_sge_per_io
*
3287 phba
->fw_config
.iscsi_icd_start
[ulp_num
]) / PAGE_SIZE
;
3288 for (i
= 0; i
< mem_descr
->num_elements
; i
++) {
3289 hwi_build_be_sgl_arr(phba
, pm_arr
, &sgl
);
3290 status
= be_cmd_iscsi_post_sgl_pages(&phba
->ctrl
, &sgl
,
3292 (pm_arr
->size
/ PAGE_SIZE
));
3293 page_offset
+= pm_arr
->size
/ PAGE_SIZE
;
3295 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3296 "BM_%d : post sgl failed.\n");
3301 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3302 "BM_%d : POSTED PAGES\n");
3306 static void be_queue_free(struct beiscsi_hba
*phba
, struct be_queue_info
*q
)
3308 struct be_dma_mem
*mem
= &q
->dma_mem
;
3310 dma_free_coherent(&phba
->pcidev
->dev
, mem
->size
,
3316 static int be_queue_alloc(struct beiscsi_hba
*phba
, struct be_queue_info
*q
,
3317 u16 len
, u16 entry_size
)
3319 struct be_dma_mem
*mem
= &q
->dma_mem
;
3321 memset(q
, 0, sizeof(*q
));
3323 q
->entry_size
= entry_size
;
3324 mem
->size
= len
* entry_size
;
3325 mem
->va
= dma_alloc_coherent(&phba
->pcidev
->dev
, mem
->size
, &mem
->dma
,
3333 beiscsi_create_wrb_rings(struct beiscsi_hba
*phba
,
3334 struct hwi_context_memory
*phwi_context
,
3335 struct hwi_controller
*phwi_ctrlr
)
3337 unsigned int num_wrb_rings
;
3339 unsigned int idx
, num
, i
, ulp_num
;
3340 struct mem_array
*pwrb_arr
;
3342 struct be_dma_mem sgl
;
3343 struct be_mem_descriptor
*mem_descr
;
3344 struct hwi_wrb_context
*pwrb_context
;
3346 uint8_t ulp_count
= 0, ulp_base_num
= 0;
3347 uint16_t cid_count_ulp
[BEISCSI_ULP_COUNT
] = { 0 };
3350 mem_descr
= phba
->init_mem
;
3351 mem_descr
+= HWI_MEM_WRB
;
3352 pwrb_arr
= kmalloc_array(phba
->params
.cxns_per_ctrl
,
3356 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3357 "BM_%d : Memory alloc failed in create wrb ring.\n");
3360 wrb_vaddr
= mem_descr
->mem_array
[idx
].virtual_address
;
3361 pa_addr_lo
= mem_descr
->mem_array
[idx
].bus_address
.u
.a64
.address
;
3362 num_wrb_rings
= mem_descr
->mem_array
[idx
].size
/
3363 (phba
->params
.wrbs_per_cxn
* sizeof(struct iscsi_wrb
));
3365 for (num
= 0; num
< phba
->params
.cxns_per_ctrl
; num
++) {
3366 if (num_wrb_rings
) {
3367 pwrb_arr
[num
].virtual_address
= wrb_vaddr
;
3368 pwrb_arr
[num
].bus_address
.u
.a64
.address
= pa_addr_lo
;
3369 pwrb_arr
[num
].size
= phba
->params
.wrbs_per_cxn
*
3370 sizeof(struct iscsi_wrb
);
3371 wrb_vaddr
+= pwrb_arr
[num
].size
;
3372 pa_addr_lo
+= pwrb_arr
[num
].size
;
3376 wrb_vaddr
= mem_descr
->mem_array
[idx
].virtual_address
;
3377 pa_addr_lo
= mem_descr
->mem_array
[idx
].\
3378 bus_address
.u
.a64
.address
;
3379 num_wrb_rings
= mem_descr
->mem_array
[idx
].size
/
3380 (phba
->params
.wrbs_per_cxn
*
3381 sizeof(struct iscsi_wrb
));
3382 pwrb_arr
[num
].virtual_address
= wrb_vaddr
;
3383 pwrb_arr
[num
].bus_address
.u
.a64
.address\
3385 pwrb_arr
[num
].size
= phba
->params
.wrbs_per_cxn
*
3386 sizeof(struct iscsi_wrb
);
3387 wrb_vaddr
+= pwrb_arr
[num
].size
;
3388 pa_addr_lo
+= pwrb_arr
[num
].size
;
3393 /* Get the ULP Count */
3394 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++)
3395 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
)) {
3397 ulp_base_num
= ulp_num
;
3398 cid_count_ulp
[ulp_num
] =
3399 BEISCSI_GET_CID_COUNT(phba
, ulp_num
);
3402 for (i
= 0; i
< phba
->params
.cxns_per_ctrl
; i
++) {
3403 if (ulp_count
> 1) {
3404 ulp_base_num
= (ulp_base_num
+ 1) % BEISCSI_ULP_COUNT
;
3406 if (!cid_count_ulp
[ulp_base_num
])
3407 ulp_base_num
= (ulp_base_num
+ 1) %
3410 cid_count_ulp
[ulp_base_num
]--;
3414 hwi_build_be_sgl_by_offset(phba
, &pwrb_arr
[i
], &sgl
);
3415 status
= be_cmd_wrbq_create(&phba
->ctrl
, &sgl
,
3416 &phwi_context
->be_wrbq
[i
],
3417 &phwi_ctrlr
->wrb_context
[i
],
3420 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3421 "BM_%d : wrbq create failed.");
3425 pwrb_context
= &phwi_ctrlr
->wrb_context
[i
];
3426 BE_SET_CID_TO_CRI(i
, pwrb_context
->cid
);
3432 static void free_wrb_handles(struct beiscsi_hba
*phba
)
3435 struct hwi_controller
*phwi_ctrlr
;
3436 struct hwi_wrb_context
*pwrb_context
;
3438 phwi_ctrlr
= phba
->phwi_ctrlr
;
3439 for (index
= 0; index
< phba
->params
.cxns_per_ctrl
; index
++) {
3440 pwrb_context
= &phwi_ctrlr
->wrb_context
[index
];
3441 kfree(pwrb_context
->pwrb_handle_base
);
3442 kfree(pwrb_context
->pwrb_handle_basestd
);
3446 static void be_mcc_queues_destroy(struct beiscsi_hba
*phba
)
3448 struct be_ctrl_info
*ctrl
= &phba
->ctrl
;
3449 struct be_dma_mem
*ptag_mem
;
3450 struct be_queue_info
*q
;
3453 q
= &phba
->ctrl
.mcc_obj
.q
;
3454 for (i
= 0; i
< MAX_MCC_CMD
; i
++) {
3456 if (!test_bit(MCC_TAG_STATE_RUNNING
,
3457 &ctrl
->ptag_state
[tag
].tag_state
))
3460 if (test_bit(MCC_TAG_STATE_TIMEOUT
,
3461 &ctrl
->ptag_state
[tag
].tag_state
)) {
3462 ptag_mem
= &ctrl
->ptag_state
[tag
].tag_mem_state
;
3463 if (ptag_mem
->size
) {
3464 dma_free_coherent(&ctrl
->pdev
->dev
,
3473 * If MCC is still active and waiting then wake up the process.
3474 * We are here only because port is going offline. The process
3475 * sees that (BEISCSI_HBA_ONLINE is cleared) and EIO error is
3476 * returned for the operation and allocated memory cleaned up.
3478 if (waitqueue_active(&ctrl
->mcc_wait
[tag
])) {
3479 ctrl
->mcc_tag_status
[tag
] = MCC_STATUS_FAILED
;
3480 ctrl
->mcc_tag_status
[tag
] |= CQE_VALID_MASK
;
3481 wake_up_interruptible(&ctrl
->mcc_wait
[tag
]);
3483 * Control tag info gets reinitialized in enable
3484 * so wait for the process to clear running state.
3486 while (test_bit(MCC_TAG_STATE_RUNNING
,
3487 &ctrl
->ptag_state
[tag
].tag_state
))
3488 schedule_timeout_uninterruptible(HZ
);
3491 * For MCC with tag_states MCC_TAG_STATE_ASYNC and
3492 * MCC_TAG_STATE_IGNORE nothing needs to done.
3496 beiscsi_cmd_q_destroy(ctrl
, q
, QTYPE_MCCQ
);
3497 be_queue_free(phba
, q
);
3500 q
= &phba
->ctrl
.mcc_obj
.cq
;
3502 beiscsi_cmd_q_destroy(ctrl
, q
, QTYPE_CQ
);
3503 be_queue_free(phba
, q
);
3507 static int be_mcc_queues_create(struct beiscsi_hba
*phba
,
3508 struct hwi_context_memory
*phwi_context
)
3510 struct be_queue_info
*q
, *cq
;
3511 struct be_ctrl_info
*ctrl
= &phba
->ctrl
;
3513 /* Alloc MCC compl queue */
3514 cq
= &phba
->ctrl
.mcc_obj
.cq
;
3515 if (be_queue_alloc(phba
, cq
, MCC_CQ_LEN
,
3516 sizeof(struct be_mcc_compl
)))
3518 /* Ask BE to create MCC compl queue; */
3519 if (phba
->pcidev
->msix_enabled
) {
3520 if (beiscsi_cmd_cq_create(ctrl
, cq
,
3521 &phwi_context
->be_eq
[phba
->num_cpus
].q
,
3525 if (beiscsi_cmd_cq_create(ctrl
, cq
, &phwi_context
->be_eq
[0].q
,
3530 /* Alloc MCC queue */
3531 q
= &phba
->ctrl
.mcc_obj
.q
;
3532 if (be_queue_alloc(phba
, q
, MCC_Q_LEN
, sizeof(struct be_mcc_wrb
)))
3533 goto mcc_cq_destroy
;
3535 /* Ask BE to create MCC queue */
3536 if (beiscsi_cmd_mccq_create(phba
, q
, cq
))
3542 be_queue_free(phba
, q
);
3544 beiscsi_cmd_q_destroy(ctrl
, cq
, QTYPE_CQ
);
3546 be_queue_free(phba
, cq
);
3551 static void be2iscsi_enable_msix(struct beiscsi_hba
*phba
)
3555 switch (phba
->generation
) {
3558 nvec
= BEISCSI_MAX_NUM_CPUS
+ 1;
3561 nvec
= phba
->fw_config
.eqid_count
;
3568 /* if eqid_count == 1 fall back to INTX */
3569 if (enable_msix
&& nvec
> 1) {
3570 struct irq_affinity desc
= { .post_vectors
= 1 };
3572 if (pci_alloc_irq_vectors_affinity(phba
->pcidev
, 2, nvec
,
3573 PCI_IRQ_MSIX
| PCI_IRQ_AFFINITY
, &desc
) < 0) {
3574 phba
->num_cpus
= nvec
- 1;
3582 static void hwi_purge_eq(struct beiscsi_hba
*phba
)
3584 struct hwi_controller
*phwi_ctrlr
;
3585 struct hwi_context_memory
*phwi_context
;
3586 struct be_queue_info
*eq
;
3587 struct be_eq_entry
*eqe
= NULL
;
3589 unsigned int num_processed
;
3591 if (beiscsi_hba_in_error(phba
))
3594 phwi_ctrlr
= phba
->phwi_ctrlr
;
3595 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
3596 if (phba
->pcidev
->msix_enabled
)
3601 for (i
= 0; i
< (phba
->num_cpus
+ eq_msix
); i
++) {
3602 eq
= &phwi_context
->be_eq
[i
].q
;
3603 eqe
= queue_tail_node(eq
);
3605 while (eqe
->dw
[offsetof(struct amap_eq_entry
, valid
) / 32]
3607 AMAP_SET_BITS(struct amap_eq_entry
, valid
, eqe
, 0);
3609 eqe
= queue_tail_node(eq
);
3614 hwi_ring_eq_db(phba
, eq
->id
, 1, num_processed
, 1, 1);
3618 static void hwi_cleanup_port(struct beiscsi_hba
*phba
)
3620 struct be_queue_info
*q
;
3621 struct be_ctrl_info
*ctrl
= &phba
->ctrl
;
3622 struct hwi_controller
*phwi_ctrlr
;
3623 struct hwi_context_memory
*phwi_context
;
3624 int i
, eq_for_mcc
, ulp_num
;
3626 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++)
3627 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
))
3628 beiscsi_cmd_iscsi_cleanup(phba
, ulp_num
);
3631 * Purge all EQ entries that may have been left out. This is to
3632 * workaround a problem we've seen occasionally where driver gets an
3633 * interrupt with EQ entry bit set after stopping the controller.
3637 phwi_ctrlr
= phba
->phwi_ctrlr
;
3638 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
3640 be_cmd_iscsi_remove_template_hdr(ctrl
);
3642 for (i
= 0; i
< phba
->params
.cxns_per_ctrl
; i
++) {
3643 q
= &phwi_context
->be_wrbq
[i
];
3645 beiscsi_cmd_q_destroy(ctrl
, q
, QTYPE_WRBQ
);
3647 kfree(phwi_context
->be_wrbq
);
3648 free_wrb_handles(phba
);
3650 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
3651 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
)) {
3653 q
= &phwi_context
->be_def_hdrq
[ulp_num
];
3655 beiscsi_cmd_q_destroy(ctrl
, q
, QTYPE_DPDUQ
);
3657 q
= &phwi_context
->be_def_dataq
[ulp_num
];
3659 beiscsi_cmd_q_destroy(ctrl
, q
, QTYPE_DPDUQ
);
3663 beiscsi_cmd_q_destroy(ctrl
, NULL
, QTYPE_SGL
);
3665 for (i
= 0; i
< (phba
->num_cpus
); i
++) {
3666 q
= &phwi_context
->be_cq
[i
];
3668 be_queue_free(phba
, q
);
3669 beiscsi_cmd_q_destroy(ctrl
, q
, QTYPE_CQ
);
3673 be_mcc_queues_destroy(phba
);
3674 if (phba
->pcidev
->msix_enabled
)
3678 for (i
= 0; i
< (phba
->num_cpus
+ eq_for_mcc
); i
++) {
3679 q
= &phwi_context
->be_eq
[i
].q
;
3681 be_queue_free(phba
, q
);
3682 beiscsi_cmd_q_destroy(ctrl
, q
, QTYPE_EQ
);
3685 /* this ensures complete FW cleanup */
3686 beiscsi_cmd_function_reset(phba
);
3687 /* last communication, indicate driver is unloading */
3688 beiscsi_cmd_special_wrb(&phba
->ctrl
, 0);
3691 static int hwi_init_port(struct beiscsi_hba
*phba
)
3693 struct hwi_controller
*phwi_ctrlr
;
3694 struct hwi_context_memory
*phwi_context
;
3695 unsigned int def_pdu_ring_sz
;
3696 struct be_ctrl_info
*ctrl
= &phba
->ctrl
;
3697 int status
, ulp_num
;
3700 phwi_ctrlr
= phba
->phwi_ctrlr
;
3701 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
3702 /* set port optic state to unknown */
3703 phba
->optic_state
= 0xff;
3705 status
= beiscsi_create_eqs(phba
, phwi_context
);
3707 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3708 "BM_%d : EQ not created\n");
3712 status
= be_mcc_queues_create(phba
, phwi_context
);
3716 status
= beiscsi_check_supported_fw(ctrl
, phba
);
3718 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3719 "BM_%d : Unsupported fw version\n");
3723 status
= beiscsi_create_cqs(phba
, phwi_context
);
3725 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3726 "BM_%d : CQ not created\n");
3730 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
3731 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
)) {
3732 nbufs
= phwi_context
->pasync_ctx
[ulp_num
]->num_entries
;
3733 def_pdu_ring_sz
= nbufs
* sizeof(struct phys_addr
);
3735 status
= beiscsi_create_def_hdr(phba
, phwi_context
,
3740 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3741 "BM_%d : Default Header not created for ULP : %d\n",
3746 status
= beiscsi_create_def_data(phba
, phwi_context
,
3751 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3752 "BM_%d : Default Data not created for ULP : %d\n",
3757 * Now that the default PDU rings have been created,
3758 * let EP know about it.
3760 beiscsi_hdq_post_handles(phba
, BEISCSI_DEFQ_HDR
,
3762 beiscsi_hdq_post_handles(phba
, BEISCSI_DEFQ_DATA
,
3767 status
= beiscsi_post_pages(phba
);
3769 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3770 "BM_%d : Post SGL Pages Failed\n");
3774 status
= beiscsi_post_template_hdr(phba
);
3776 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3777 "BM_%d : Template HDR Posting for CXN Failed\n");
3780 status
= beiscsi_create_wrb_rings(phba
, phwi_context
, phwi_ctrlr
);
3782 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3783 "BM_%d : WRB Rings not created\n");
3787 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
3788 uint16_t async_arr_idx
= 0;
3790 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
)) {
3792 struct hd_async_context
*pasync_ctx
;
3794 pasync_ctx
= HWI_GET_ASYNC_PDU_CTX(
3795 phwi_ctrlr
, ulp_num
);
3797 phba
->params
.cxns_per_ctrl
; cri
++) {
3798 if (ulp_num
== BEISCSI_GET_ULP_FROM_CRI
3800 pasync_ctx
->cid_to_async_cri_map
[
3801 phwi_ctrlr
->wrb_context
[cri
].cid
] =
3807 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3808 "BM_%d : hwi_init_port success\n");
3812 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3813 "BM_%d : hwi_init_port failed");
3814 hwi_cleanup_port(phba
);
3818 static int hwi_init_controller(struct beiscsi_hba
*phba
)
3820 struct hwi_controller
*phwi_ctrlr
;
3822 phwi_ctrlr
= phba
->phwi_ctrlr
;
3823 if (1 == phba
->init_mem
[HWI_MEM_ADDN_CONTEXT
].num_elements
) {
3824 phwi_ctrlr
->phwi_ctxt
= (struct hwi_context_memory
*)phba
->
3825 init_mem
[HWI_MEM_ADDN_CONTEXT
].mem_array
[0].virtual_address
;
3826 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3827 "BM_%d : phwi_ctrlr->phwi_ctxt=%p\n",
3828 phwi_ctrlr
->phwi_ctxt
);
3830 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3831 "BM_%d : HWI_MEM_ADDN_CONTEXT is more "
3832 "than one element.Failing to load\n");
3836 iscsi_init_global_templates(phba
);
3837 if (beiscsi_init_wrb_handle(phba
))
3840 if (hwi_init_async_pdu_ctx(phba
)) {
3841 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3842 "BM_%d : hwi_init_async_pdu_ctx failed\n");
3846 if (hwi_init_port(phba
) != 0) {
3847 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3848 "BM_%d : hwi_init_controller failed\n");
3855 static void beiscsi_free_mem(struct beiscsi_hba
*phba
)
3857 struct be_mem_descriptor
*mem_descr
;
3860 mem_descr
= phba
->init_mem
;
3863 for (i
= 0; i
< SE_MEM_MAX
; i
++) {
3864 for (j
= mem_descr
->num_elements
; j
> 0; j
--) {
3865 dma_free_coherent(&phba
->pcidev
->dev
,
3866 mem_descr
->mem_array
[j
- 1].size
,
3867 mem_descr
->mem_array
[j
- 1].virtual_address
,
3868 (unsigned long)mem_descr
->mem_array
[j
- 1].
3869 bus_address
.u
.a64
.address
);
3872 kfree(mem_descr
->mem_array
);
3875 kfree(phba
->init_mem
);
3876 kfree(phba
->phwi_ctrlr
->wrb_context
);
3877 kfree(phba
->phwi_ctrlr
);
3880 static int beiscsi_init_sgl_handle(struct beiscsi_hba
*phba
)
3882 struct be_mem_descriptor
*mem_descr_sglh
, *mem_descr_sg
;
3883 struct sgl_handle
*psgl_handle
;
3884 struct iscsi_sge
*pfrag
;
3885 unsigned int arr_index
, i
, idx
;
3886 unsigned int ulp_icd_start
, ulp_num
= 0;
3888 phba
->io_sgl_hndl_avbl
= 0;
3889 phba
->eh_sgl_hndl_avbl
= 0;
3891 mem_descr_sglh
= phba
->init_mem
;
3892 mem_descr_sglh
+= HWI_MEM_SGLH
;
3893 if (1 == mem_descr_sglh
->num_elements
) {
3894 phba
->io_sgl_hndl_base
= kcalloc(phba
->params
.ios_per_ctrl
,
3895 sizeof(struct sgl_handle
*),
3897 if (!phba
->io_sgl_hndl_base
) {
3898 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3899 "BM_%d : Mem Alloc Failed. Failing to load\n");
3902 phba
->eh_sgl_hndl_base
=
3903 kcalloc(phba
->params
.icds_per_ctrl
-
3904 phba
->params
.ios_per_ctrl
,
3905 sizeof(struct sgl_handle
*), GFP_KERNEL
);
3906 if (!phba
->eh_sgl_hndl_base
) {
3907 kfree(phba
->io_sgl_hndl_base
);
3908 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3909 "BM_%d : Mem Alloc Failed. Failing to load\n");
3913 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
3914 "BM_%d : HWI_MEM_SGLH is more than one element."
3915 "Failing to load\n");
3921 while (idx
< mem_descr_sglh
->num_elements
) {
3922 psgl_handle
= mem_descr_sglh
->mem_array
[idx
].virtual_address
;
3924 for (i
= 0; i
< (mem_descr_sglh
->mem_array
[idx
].size
/
3925 sizeof(struct sgl_handle
)); i
++) {
3926 if (arr_index
< phba
->params
.ios_per_ctrl
) {
3927 phba
->io_sgl_hndl_base
[arr_index
] = psgl_handle
;
3928 phba
->io_sgl_hndl_avbl
++;
3931 phba
->eh_sgl_hndl_base
[arr_index
-
3932 phba
->params
.ios_per_ctrl
] =
3935 phba
->eh_sgl_hndl_avbl
++;
3941 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3942 "BM_%d : phba->io_sgl_hndl_avbl=%d"
3943 "phba->eh_sgl_hndl_avbl=%d\n",
3944 phba
->io_sgl_hndl_avbl
,
3945 phba
->eh_sgl_hndl_avbl
);
3947 mem_descr_sg
= phba
->init_mem
;
3948 mem_descr_sg
+= HWI_MEM_SGE
;
3949 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
3950 "\n BM_%d : mem_descr_sg->num_elements=%d\n",
3951 mem_descr_sg
->num_elements
);
3953 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++)
3954 if (test_bit(ulp_num
, &phba
->fw_config
.ulp_supported
))
3957 ulp_icd_start
= phba
->fw_config
.iscsi_icd_start
[ulp_num
];
3961 while (idx
< mem_descr_sg
->num_elements
) {
3962 pfrag
= mem_descr_sg
->mem_array
[idx
].virtual_address
;
3965 i
< (mem_descr_sg
->mem_array
[idx
].size
) /
3966 (sizeof(struct iscsi_sge
) * phba
->params
.num_sge_per_io
);
3968 if (arr_index
< phba
->params
.ios_per_ctrl
)
3969 psgl_handle
= phba
->io_sgl_hndl_base
[arr_index
];
3971 psgl_handle
= phba
->eh_sgl_hndl_base
[arr_index
-
3972 phba
->params
.ios_per_ctrl
];
3973 psgl_handle
->pfrag
= pfrag
;
3974 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_hi
, pfrag
, 0);
3975 AMAP_SET_BITS(struct amap_iscsi_sge
, addr_lo
, pfrag
, 0);
3976 pfrag
+= phba
->params
.num_sge_per_io
;
3977 psgl_handle
->sgl_index
= ulp_icd_start
+ arr_index
++;
3981 phba
->io_sgl_free_index
= 0;
3982 phba
->io_sgl_alloc_index
= 0;
3983 phba
->eh_sgl_free_index
= 0;
3984 phba
->eh_sgl_alloc_index
= 0;
3988 static int hba_setup_cid_tbls(struct beiscsi_hba
*phba
)
3991 uint16_t i
, ulp_num
;
3992 struct ulp_cid_info
*ptr_cid_info
= NULL
;
3994 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
3995 if (test_bit(ulp_num
, (void *)&phba
->fw_config
.ulp_supported
)) {
3996 ptr_cid_info
= kzalloc(sizeof(struct ulp_cid_info
),
3999 if (!ptr_cid_info
) {
4000 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
4001 "BM_%d : Failed to allocate memory"
4002 "for ULP_CID_INFO for ULP : %d\n",
4009 /* Allocate memory for CID array */
4010 ptr_cid_info
->cid_array
=
4011 kcalloc(BEISCSI_GET_CID_COUNT(phba
, ulp_num
),
4012 sizeof(*ptr_cid_info
->cid_array
),
4014 if (!ptr_cid_info
->cid_array
) {
4015 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
4016 "BM_%d : Failed to allocate memory"
4017 "for CID_ARRAY for ULP : %d\n",
4019 kfree(ptr_cid_info
);
4020 ptr_cid_info
= NULL
;
4025 ptr_cid_info
->avlbl_cids
= BEISCSI_GET_CID_COUNT(
4028 /* Save the cid_info_array ptr */
4029 phba
->cid_array_info
[ulp_num
] = ptr_cid_info
;
4032 phba
->ep_array
= kcalloc(phba
->params
.cxns_per_ctrl
,
4033 sizeof(struct iscsi_endpoint
*),
4035 if (!phba
->ep_array
) {
4036 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
4037 "BM_%d : Failed to allocate memory in "
4038 "hba_setup_cid_tbls\n");
4044 phba
->conn_table
= kcalloc(phba
->params
.cxns_per_ctrl
,
4045 sizeof(struct beiscsi_conn
*),
4047 if (!phba
->conn_table
) {
4048 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
4049 "BM_%d : Failed to allocate memory in"
4050 "hba_setup_cid_tbls\n");
4052 kfree(phba
->ep_array
);
4053 phba
->ep_array
= NULL
;
4059 for (i
= 0; i
< phba
->params
.cxns_per_ctrl
; i
++) {
4060 ulp_num
= phba
->phwi_ctrlr
->wrb_context
[i
].ulp_num
;
4062 ptr_cid_info
= phba
->cid_array_info
[ulp_num
];
4063 ptr_cid_info
->cid_array
[ptr_cid_info
->cid_alloc
++] =
4064 phba
->phwi_ctrlr
->wrb_context
[i
].cid
;
4068 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
4069 if (test_bit(ulp_num
, (void *)&phba
->fw_config
.ulp_supported
)) {
4070 ptr_cid_info
= phba
->cid_array_info
[ulp_num
];
4072 ptr_cid_info
->cid_alloc
= 0;
4073 ptr_cid_info
->cid_free
= 0;
4079 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
4080 if (test_bit(ulp_num
, (void *)&phba
->fw_config
.ulp_supported
)) {
4081 ptr_cid_info
= phba
->cid_array_info
[ulp_num
];
4084 kfree(ptr_cid_info
->cid_array
);
4085 kfree(ptr_cid_info
);
4086 phba
->cid_array_info
[ulp_num
] = NULL
;
4094 static void hwi_enable_intr(struct beiscsi_hba
*phba
)
4096 struct be_ctrl_info
*ctrl
= &phba
->ctrl
;
4097 struct hwi_controller
*phwi_ctrlr
;
4098 struct hwi_context_memory
*phwi_context
;
4099 struct be_queue_info
*eq
;
4104 phwi_ctrlr
= phba
->phwi_ctrlr
;
4105 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
4107 addr
= (u8 __iomem
*) ((u8 __iomem
*) ctrl
->pcicfg
+
4108 PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET
);
4109 reg
= ioread32(addr
);
4111 enabled
= reg
& MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK
;
4113 reg
|= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK
;
4114 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
4115 "BM_%d : reg =x%08x addr=%p\n", reg
, addr
);
4116 iowrite32(reg
, addr
);
4119 if (!phba
->pcidev
->msix_enabled
) {
4120 eq
= &phwi_context
->be_eq
[0].q
;
4121 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
4122 "BM_%d : eq->id=%d\n", eq
->id
);
4124 hwi_ring_eq_db(phba
, eq
->id
, 0, 0, 1, 1);
4126 for (i
= 0; i
<= phba
->num_cpus
; i
++) {
4127 eq
= &phwi_context
->be_eq
[i
].q
;
4128 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
4129 "BM_%d : eq->id=%d\n", eq
->id
);
4130 hwi_ring_eq_db(phba
, eq
->id
, 0, 0, 1, 1);
4135 static void hwi_disable_intr(struct beiscsi_hba
*phba
)
4137 struct be_ctrl_info
*ctrl
= &phba
->ctrl
;
4139 u8 __iomem
*addr
= ctrl
->pcicfg
+ PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET
;
4140 u32 reg
= ioread32(addr
);
4142 u32 enabled
= reg
& MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK
;
4144 reg
&= ~MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK
;
4145 iowrite32(reg
, addr
);
4147 beiscsi_log(phba
, KERN_WARNING
, BEISCSI_LOG_INIT
,
4148 "BM_%d : In hwi_disable_intr, Already Disabled\n");
4151 static int beiscsi_init_port(struct beiscsi_hba
*phba
)
4155 ret
= hwi_init_controller(phba
);
4157 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
4158 "BM_%d : init controller failed\n");
4161 ret
= beiscsi_init_sgl_handle(phba
);
4163 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
4164 "BM_%d : init sgl handles failed\n");
4168 ret
= hba_setup_cid_tbls(phba
);
4170 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
4171 "BM_%d : setup CID table failed\n");
4172 kfree(phba
->io_sgl_hndl_base
);
4173 kfree(phba
->eh_sgl_hndl_base
);
4179 hwi_cleanup_port(phba
);
4183 static void beiscsi_cleanup_port(struct beiscsi_hba
*phba
)
4185 struct ulp_cid_info
*ptr_cid_info
= NULL
;
4188 kfree(phba
->io_sgl_hndl_base
);
4189 kfree(phba
->eh_sgl_hndl_base
);
4190 kfree(phba
->ep_array
);
4191 kfree(phba
->conn_table
);
4193 for (ulp_num
= 0; ulp_num
< BEISCSI_ULP_COUNT
; ulp_num
++) {
4194 if (test_bit(ulp_num
, (void *)&phba
->fw_config
.ulp_supported
)) {
4195 ptr_cid_info
= phba
->cid_array_info
[ulp_num
];
4198 kfree(ptr_cid_info
->cid_array
);
4199 kfree(ptr_cid_info
);
4200 phba
->cid_array_info
[ulp_num
] = NULL
;
4207 * beiscsi_free_mgmt_task_handles()- Free driver CXN resources
4208 * @beiscsi_conn: ptr to the conn to be cleaned up
4209 * @task: ptr to iscsi_task resource to be freed.
4211 * Free driver mgmt resources binded to CXN.
4214 beiscsi_free_mgmt_task_handles(struct beiscsi_conn
*beiscsi_conn
,
4215 struct iscsi_task
*task
)
4217 struct beiscsi_io_task
*io_task
;
4218 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
4219 struct hwi_wrb_context
*pwrb_context
;
4220 struct hwi_controller
*phwi_ctrlr
;
4221 uint16_t cri_index
= BE_GET_CRI_FROM_CID(
4222 beiscsi_conn
->beiscsi_conn_cid
);
4224 phwi_ctrlr
= phba
->phwi_ctrlr
;
4225 pwrb_context
= &phwi_ctrlr
->wrb_context
[cri_index
];
4227 io_task
= task
->dd_data
;
4229 if (io_task
->pwrb_handle
) {
4230 free_wrb_handle(phba
, pwrb_context
, io_task
->pwrb_handle
);
4231 io_task
->pwrb_handle
= NULL
;
4234 if (io_task
->psgl_handle
) {
4235 free_mgmt_sgl_handle(phba
, io_task
->psgl_handle
);
4236 io_task
->psgl_handle
= NULL
;
4239 if (io_task
->mtask_addr
) {
4240 dma_unmap_single(&phba
->pcidev
->dev
,
4241 io_task
->mtask_addr
,
4242 io_task
->mtask_data_count
,
4244 io_task
->mtask_addr
= 0;
4249 * beiscsi_cleanup_task()- Free driver resources of the task
4250 * @task: ptr to the iscsi task
4253 static void beiscsi_cleanup_task(struct iscsi_task
*task
)
4255 struct beiscsi_io_task
*io_task
= task
->dd_data
;
4256 struct iscsi_conn
*conn
= task
->conn
;
4257 struct beiscsi_conn
*beiscsi_conn
= conn
->dd_data
;
4258 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
4259 struct beiscsi_session
*beiscsi_sess
= beiscsi_conn
->beiscsi_sess
;
4260 struct hwi_wrb_context
*pwrb_context
;
4261 struct hwi_controller
*phwi_ctrlr
;
4262 uint16_t cri_index
= BE_GET_CRI_FROM_CID(
4263 beiscsi_conn
->beiscsi_conn_cid
);
4265 phwi_ctrlr
= phba
->phwi_ctrlr
;
4266 pwrb_context
= &phwi_ctrlr
->wrb_context
[cri_index
];
4268 if (io_task
->cmd_bhs
) {
4269 dma_pool_free(beiscsi_sess
->bhs_pool
, io_task
->cmd_bhs
,
4270 io_task
->bhs_pa
.u
.a64
.address
);
4271 io_task
->cmd_bhs
= NULL
;
4276 if (io_task
->pwrb_handle
) {
4277 free_wrb_handle(phba
, pwrb_context
,
4278 io_task
->pwrb_handle
);
4279 io_task
->pwrb_handle
= NULL
;
4282 if (io_task
->psgl_handle
) {
4283 free_io_sgl_handle(phba
, io_task
->psgl_handle
);
4284 io_task
->psgl_handle
= NULL
;
4287 if (io_task
->scsi_cmnd
) {
4288 if (io_task
->num_sg
)
4289 scsi_dma_unmap(io_task
->scsi_cmnd
);
4290 io_task
->scsi_cmnd
= NULL
;
4293 if (!beiscsi_conn
->login_in_progress
)
4294 beiscsi_free_mgmt_task_handles(beiscsi_conn
, task
);
4299 beiscsi_offload_connection(struct beiscsi_conn
*beiscsi_conn
,
4300 struct beiscsi_offload_params
*params
)
4302 struct wrb_handle
*pwrb_handle
;
4303 struct hwi_wrb_context
*pwrb_context
= NULL
;
4304 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
4305 struct iscsi_task
*task
= beiscsi_conn
->task
;
4306 struct iscsi_session
*session
= task
->conn
->session
;
4310 * We can always use 0 here because it is reserved by libiscsi for
4311 * login/startup related tasks.
4313 beiscsi_conn
->login_in_progress
= 0;
4314 spin_lock_bh(&session
->back_lock
);
4315 beiscsi_cleanup_task(task
);
4316 spin_unlock_bh(&session
->back_lock
);
4318 pwrb_handle
= alloc_wrb_handle(phba
, beiscsi_conn
->beiscsi_conn_cid
,
4321 /* Check for the adapter family */
4322 if (is_chip_be2_be3r(phba
))
4323 beiscsi_offload_cxn_v0(params
, pwrb_handle
,
4327 beiscsi_offload_cxn_v2(params
, pwrb_handle
,
4330 be_dws_le_to_cpu(pwrb_handle
->pwrb
,
4331 sizeof(struct iscsi_target_context_update_wrb
));
4333 doorbell
|= beiscsi_conn
->beiscsi_conn_cid
& DB_WRB_POST_CID_MASK
;
4334 doorbell
|= (pwrb_handle
->wrb_index
& DB_DEF_PDU_WRB_INDEX_MASK
)
4335 << DB_DEF_PDU_WRB_INDEX_SHIFT
;
4336 doorbell
|= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT
;
4337 iowrite32(doorbell
, phba
->db_va
+
4338 beiscsi_conn
->doorbell_offset
);
4341 * There is no completion for CONTEXT_UPDATE. The completion of next
4342 * WRB posted guarantees FW's processing and DMA'ing of it.
4343 * Use beiscsi_put_wrb_handle to put it back in the pool which makes
4344 * sure zero'ing or reuse of the WRB only after wrbs_per_cxn.
4346 beiscsi_put_wrb_handle(pwrb_context
, pwrb_handle
,
4347 phba
->params
.wrbs_per_cxn
);
4348 beiscsi_log(phba
, KERN_INFO
,
4349 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
4350 "BM_%d : put CONTEXT_UPDATE pwrb_handle=%p free_index=0x%x wrb_handles_available=%d\n",
4351 pwrb_handle
, pwrb_context
->free_index
,
4352 pwrb_context
->wrb_handles_available
);
4355 static void beiscsi_parse_pdu(struct iscsi_conn
*conn
, itt_t itt
,
4356 int *index
, int *age
)
4360 *age
= conn
->session
->age
;
4364 * beiscsi_alloc_pdu - allocates pdu and related resources
4365 * @task: libiscsi task
4366 * @opcode: opcode of pdu for task
4368 * This is called with the session lock held. It will allocate
4369 * the wrb and sgl if needed for the command. And it will prep
4370 * the pdu's itt. beiscsi_parse_pdu will later translate
4371 * the pdu itt to the libiscsi task itt.
4373 static int beiscsi_alloc_pdu(struct iscsi_task
*task
, uint8_t opcode
)
4375 struct beiscsi_io_task
*io_task
= task
->dd_data
;
4376 struct iscsi_conn
*conn
= task
->conn
;
4377 struct beiscsi_conn
*beiscsi_conn
= conn
->dd_data
;
4378 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
4379 struct hwi_wrb_context
*pwrb_context
;
4380 struct hwi_controller
*phwi_ctrlr
;
4382 uint16_t cri_index
= 0;
4383 struct beiscsi_session
*beiscsi_sess
= beiscsi_conn
->beiscsi_sess
;
4386 io_task
->cmd_bhs
= dma_pool_alloc(beiscsi_sess
->bhs_pool
,
4387 GFP_ATOMIC
, &paddr
);
4388 if (!io_task
->cmd_bhs
)
4390 io_task
->bhs_pa
.u
.a64
.address
= paddr
;
4391 io_task
->libiscsi_itt
= (itt_t
)task
->itt
;
4392 io_task
->conn
= beiscsi_conn
;
4394 task
->hdr
= (struct iscsi_hdr
*)&io_task
->cmd_bhs
->iscsi_hdr
;
4395 task
->hdr_max
= sizeof(struct be_cmd_bhs
);
4396 io_task
->psgl_handle
= NULL
;
4397 io_task
->pwrb_handle
= NULL
;
4400 io_task
->psgl_handle
= alloc_io_sgl_handle(phba
);
4401 if (!io_task
->psgl_handle
) {
4402 beiscsi_log(phba
, KERN_ERR
,
4403 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
4404 "BM_%d : Alloc of IO_SGL_ICD Failed"
4405 "for the CID : %d\n",
4406 beiscsi_conn
->beiscsi_conn_cid
);
4409 io_task
->pwrb_handle
= alloc_wrb_handle(phba
,
4410 beiscsi_conn
->beiscsi_conn_cid
,
4411 &io_task
->pwrb_context
);
4412 if (!io_task
->pwrb_handle
) {
4413 beiscsi_log(phba
, KERN_ERR
,
4414 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
4415 "BM_%d : Alloc of WRB_HANDLE Failed"
4416 "for the CID : %d\n",
4417 beiscsi_conn
->beiscsi_conn_cid
);
4421 io_task
->scsi_cmnd
= NULL
;
4422 if ((opcode
& ISCSI_OPCODE_MASK
) == ISCSI_OP_LOGIN
) {
4423 beiscsi_conn
->task
= task
;
4424 if (!beiscsi_conn
->login_in_progress
) {
4425 io_task
->psgl_handle
= (struct sgl_handle
*)
4426 alloc_mgmt_sgl_handle(phba
);
4427 if (!io_task
->psgl_handle
) {
4428 beiscsi_log(phba
, KERN_ERR
,
4431 "BM_%d : Alloc of MGMT_SGL_ICD Failed"
4432 "for the CID : %d\n",
4438 beiscsi_conn
->login_in_progress
= 1;
4439 beiscsi_conn
->plogin_sgl_handle
=
4440 io_task
->psgl_handle
;
4441 io_task
->pwrb_handle
=
4442 alloc_wrb_handle(phba
,
4443 beiscsi_conn
->beiscsi_conn_cid
,
4444 &io_task
->pwrb_context
);
4445 if (!io_task
->pwrb_handle
) {
4446 beiscsi_log(phba
, KERN_ERR
,
4449 "BM_%d : Alloc of WRB_HANDLE Failed"
4450 "for the CID : %d\n",
4453 goto free_mgmt_hndls
;
4455 beiscsi_conn
->plogin_wrb_handle
=
4456 io_task
->pwrb_handle
;
4459 io_task
->psgl_handle
=
4460 beiscsi_conn
->plogin_sgl_handle
;
4461 io_task
->pwrb_handle
=
4462 beiscsi_conn
->plogin_wrb_handle
;
4465 io_task
->psgl_handle
= alloc_mgmt_sgl_handle(phba
);
4466 if (!io_task
->psgl_handle
) {
4467 beiscsi_log(phba
, KERN_ERR
,
4470 "BM_%d : Alloc of MGMT_SGL_ICD Failed"
4471 "for the CID : %d\n",
4476 io_task
->pwrb_handle
=
4477 alloc_wrb_handle(phba
,
4478 beiscsi_conn
->beiscsi_conn_cid
,
4479 &io_task
->pwrb_context
);
4480 if (!io_task
->pwrb_handle
) {
4481 beiscsi_log(phba
, KERN_ERR
,
4482 BEISCSI_LOG_IO
| BEISCSI_LOG_CONFIG
,
4483 "BM_%d : Alloc of WRB_HANDLE Failed"
4484 "for the CID : %d\n",
4485 beiscsi_conn
->beiscsi_conn_cid
);
4486 goto free_mgmt_hndls
;
4491 itt
= (itt_t
) cpu_to_be32(((unsigned int)io_task
->pwrb_handle
->
4492 wrb_index
<< 16) | (unsigned int)
4493 (io_task
->psgl_handle
->sgl_index
));
4494 io_task
->pwrb_handle
->pio_handle
= task
;
4496 io_task
->cmd_bhs
->iscsi_hdr
.itt
= itt
;
4500 free_io_sgl_handle(phba
, io_task
->psgl_handle
);
4503 free_mgmt_sgl_handle(phba
, io_task
->psgl_handle
);
4504 io_task
->psgl_handle
= NULL
;
4506 phwi_ctrlr
= phba
->phwi_ctrlr
;
4507 cri_index
= BE_GET_CRI_FROM_CID(
4508 beiscsi_conn
->beiscsi_conn_cid
);
4509 pwrb_context
= &phwi_ctrlr
->wrb_context
[cri_index
];
4510 if (io_task
->pwrb_handle
)
4511 free_wrb_handle(phba
, pwrb_context
, io_task
->pwrb_handle
);
4512 io_task
->pwrb_handle
= NULL
;
4513 dma_pool_free(beiscsi_sess
->bhs_pool
, io_task
->cmd_bhs
,
4514 io_task
->bhs_pa
.u
.a64
.address
);
4515 io_task
->cmd_bhs
= NULL
;
4518 static int beiscsi_iotask_v2(struct iscsi_task
*task
, struct scatterlist
*sg
,
4519 unsigned int num_sg
, unsigned int xferlen
,
4520 unsigned int writedir
)
4523 struct beiscsi_io_task
*io_task
= task
->dd_data
;
4524 struct iscsi_conn
*conn
= task
->conn
;
4525 struct beiscsi_conn
*beiscsi_conn
= conn
->dd_data
;
4526 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
4527 struct iscsi_wrb
*pwrb
= NULL
;
4528 unsigned int doorbell
= 0;
4530 pwrb
= io_task
->pwrb_handle
->pwrb
;
4532 io_task
->bhs_len
= sizeof(struct be_cmd_bhs
);
4535 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, type
, pwrb
,
4537 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, dsp
, pwrb
, 1);
4539 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, type
, pwrb
,
4541 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, dsp
, pwrb
, 0);
4544 io_task
->wrb_type
= AMAP_GET_BITS(struct amap_iscsi_wrb_v2
,
4547 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, lun
, pwrb
,
4548 cpu_to_be16(*(unsigned short *)
4549 &io_task
->cmd_bhs
->iscsi_hdr
.lun
));
4550 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, r2t_exp_dtl
, pwrb
, xferlen
);
4551 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, wrb_idx
, pwrb
,
4552 io_task
->pwrb_handle
->wrb_index
);
4553 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, cmdsn_itt
, pwrb
,
4554 be32_to_cpu(task
->cmdsn
));
4555 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, sgl_idx
, pwrb
,
4556 io_task
->psgl_handle
->sgl_index
);
4558 hwi_write_sgl_v2(pwrb
, sg
, num_sg
, io_task
);
4559 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, ptr2nextwrb
, pwrb
,
4560 io_task
->pwrb_handle
->wrb_index
);
4561 if (io_task
->pwrb_context
->plast_wrb
)
4562 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, ptr2nextwrb
,
4563 io_task
->pwrb_context
->plast_wrb
,
4564 io_task
->pwrb_handle
->wrb_index
);
4565 io_task
->pwrb_context
->plast_wrb
= pwrb
;
4567 be_dws_le_to_cpu(pwrb
, sizeof(struct iscsi_wrb
));
4569 doorbell
|= beiscsi_conn
->beiscsi_conn_cid
& DB_WRB_POST_CID_MASK
;
4570 doorbell
|= (io_task
->pwrb_handle
->wrb_index
&
4571 DB_DEF_PDU_WRB_INDEX_MASK
) <<
4572 DB_DEF_PDU_WRB_INDEX_SHIFT
;
4573 doorbell
|= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT
;
4574 iowrite32(doorbell
, phba
->db_va
+
4575 beiscsi_conn
->doorbell_offset
);
4579 static int beiscsi_iotask(struct iscsi_task
*task
, struct scatterlist
*sg
,
4580 unsigned int num_sg
, unsigned int xferlen
,
4581 unsigned int writedir
)
4584 struct beiscsi_io_task
*io_task
= task
->dd_data
;
4585 struct iscsi_conn
*conn
= task
->conn
;
4586 struct beiscsi_conn
*beiscsi_conn
= conn
->dd_data
;
4587 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
4588 struct iscsi_wrb
*pwrb
= NULL
;
4589 unsigned int doorbell
= 0;
4591 pwrb
= io_task
->pwrb_handle
->pwrb
;
4592 io_task
->bhs_len
= sizeof(struct be_cmd_bhs
);
4595 AMAP_SET_BITS(struct amap_iscsi_wrb
, type
, pwrb
,
4597 AMAP_SET_BITS(struct amap_iscsi_wrb
, dsp
, pwrb
, 1);
4599 AMAP_SET_BITS(struct amap_iscsi_wrb
, type
, pwrb
,
4601 AMAP_SET_BITS(struct amap_iscsi_wrb
, dsp
, pwrb
, 0);
4604 io_task
->wrb_type
= AMAP_GET_BITS(struct amap_iscsi_wrb
,
4607 AMAP_SET_BITS(struct amap_iscsi_wrb
, lun
, pwrb
,
4608 cpu_to_be16(*(unsigned short *)
4609 &io_task
->cmd_bhs
->iscsi_hdr
.lun
));
4610 AMAP_SET_BITS(struct amap_iscsi_wrb
, r2t_exp_dtl
, pwrb
, xferlen
);
4611 AMAP_SET_BITS(struct amap_iscsi_wrb
, wrb_idx
, pwrb
,
4612 io_task
->pwrb_handle
->wrb_index
);
4613 AMAP_SET_BITS(struct amap_iscsi_wrb
, cmdsn_itt
, pwrb
,
4614 be32_to_cpu(task
->cmdsn
));
4615 AMAP_SET_BITS(struct amap_iscsi_wrb
, sgl_icd_idx
, pwrb
,
4616 io_task
->psgl_handle
->sgl_index
);
4618 hwi_write_sgl(pwrb
, sg
, num_sg
, io_task
);
4620 AMAP_SET_BITS(struct amap_iscsi_wrb
, ptr2nextwrb
, pwrb
,
4621 io_task
->pwrb_handle
->wrb_index
);
4622 if (io_task
->pwrb_context
->plast_wrb
)
4623 AMAP_SET_BITS(struct amap_iscsi_wrb
, ptr2nextwrb
,
4624 io_task
->pwrb_context
->plast_wrb
,
4625 io_task
->pwrb_handle
->wrb_index
);
4626 io_task
->pwrb_context
->plast_wrb
= pwrb
;
4628 be_dws_le_to_cpu(pwrb
, sizeof(struct iscsi_wrb
));
4630 doorbell
|= beiscsi_conn
->beiscsi_conn_cid
& DB_WRB_POST_CID_MASK
;
4631 doorbell
|= (io_task
->pwrb_handle
->wrb_index
&
4632 DB_DEF_PDU_WRB_INDEX_MASK
) << DB_DEF_PDU_WRB_INDEX_SHIFT
;
4633 doorbell
|= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT
;
4635 iowrite32(doorbell
, phba
->db_va
+
4636 beiscsi_conn
->doorbell_offset
);
4640 static int beiscsi_mtask(struct iscsi_task
*task
)
4642 struct beiscsi_io_task
*io_task
= task
->dd_data
;
4643 struct iscsi_conn
*conn
= task
->conn
;
4644 struct beiscsi_conn
*beiscsi_conn
= conn
->dd_data
;
4645 struct beiscsi_hba
*phba
= beiscsi_conn
->phba
;
4646 struct iscsi_wrb
*pwrb
= NULL
;
4647 unsigned int doorbell
= 0;
4649 unsigned int pwrb_typeoffset
= 0;
4652 cid
= beiscsi_conn
->beiscsi_conn_cid
;
4653 pwrb
= io_task
->pwrb_handle
->pwrb
;
4655 if (is_chip_be2_be3r(phba
)) {
4656 AMAP_SET_BITS(struct amap_iscsi_wrb
, cmdsn_itt
, pwrb
,
4657 be32_to_cpu(task
->cmdsn
));
4658 AMAP_SET_BITS(struct amap_iscsi_wrb
, wrb_idx
, pwrb
,
4659 io_task
->pwrb_handle
->wrb_index
);
4660 AMAP_SET_BITS(struct amap_iscsi_wrb
, sgl_icd_idx
, pwrb
,
4661 io_task
->psgl_handle
->sgl_index
);
4662 AMAP_SET_BITS(struct amap_iscsi_wrb
, r2t_exp_dtl
, pwrb
,
4664 AMAP_SET_BITS(struct amap_iscsi_wrb
, ptr2nextwrb
, pwrb
,
4665 io_task
->pwrb_handle
->wrb_index
);
4666 if (io_task
->pwrb_context
->plast_wrb
)
4667 AMAP_SET_BITS(struct amap_iscsi_wrb
, ptr2nextwrb
,
4668 io_task
->pwrb_context
->plast_wrb
,
4669 io_task
->pwrb_handle
->wrb_index
);
4670 io_task
->pwrb_context
->plast_wrb
= pwrb
;
4672 pwrb_typeoffset
= BE_WRB_TYPE_OFFSET
;
4674 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, cmdsn_itt
, pwrb
,
4675 be32_to_cpu(task
->cmdsn
));
4676 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, wrb_idx
, pwrb
,
4677 io_task
->pwrb_handle
->wrb_index
);
4678 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, sgl_idx
, pwrb
,
4679 io_task
->psgl_handle
->sgl_index
);
4680 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, r2t_exp_dtl
, pwrb
,
4682 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, ptr2nextwrb
, pwrb
,
4683 io_task
->pwrb_handle
->wrb_index
);
4684 if (io_task
->pwrb_context
->plast_wrb
)
4685 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
, ptr2nextwrb
,
4686 io_task
->pwrb_context
->plast_wrb
,
4687 io_task
->pwrb_handle
->wrb_index
);
4688 io_task
->pwrb_context
->plast_wrb
= pwrb
;
4690 pwrb_typeoffset
= SKH_WRB_TYPE_OFFSET
;
4694 switch (task
->hdr
->opcode
& ISCSI_OPCODE_MASK
) {
4695 case ISCSI_OP_LOGIN
:
4696 AMAP_SET_BITS(struct amap_iscsi_wrb
, cmdsn_itt
, pwrb
, 1);
4697 ADAPTER_SET_WRB_TYPE(pwrb
, TGT_DM_CMD
, pwrb_typeoffset
);
4698 ret
= hwi_write_buffer(pwrb
, task
);
4700 case ISCSI_OP_NOOP_OUT
:
4701 if (task
->hdr
->ttt
!= ISCSI_RESERVED_TAG
) {
4702 ADAPTER_SET_WRB_TYPE(pwrb
, TGT_DM_CMD
, pwrb_typeoffset
);
4703 if (is_chip_be2_be3r(phba
))
4704 AMAP_SET_BITS(struct amap_iscsi_wrb
,
4707 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
,
4710 ADAPTER_SET_WRB_TYPE(pwrb
, INI_RD_CMD
, pwrb_typeoffset
);
4711 if (is_chip_be2_be3r(phba
))
4712 AMAP_SET_BITS(struct amap_iscsi_wrb
,
4715 AMAP_SET_BITS(struct amap_iscsi_wrb_v2
,
4718 ret
= hwi_write_buffer(pwrb
, task
);
4721 ADAPTER_SET_WRB_TYPE(pwrb
, TGT_DM_CMD
, pwrb_typeoffset
);
4722 ret
= hwi_write_buffer(pwrb
, task
);
4724 case ISCSI_OP_SCSI_TMFUNC
:
4725 ADAPTER_SET_WRB_TYPE(pwrb
, INI_TMF_CMD
, pwrb_typeoffset
);
4726 ret
= hwi_write_buffer(pwrb
, task
);
4728 case ISCSI_OP_LOGOUT
:
4729 ADAPTER_SET_WRB_TYPE(pwrb
, HWH_TYPE_LOGOUT
, pwrb_typeoffset
);
4730 ret
= hwi_write_buffer(pwrb
, task
);
4734 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_CONFIG
,
4735 "BM_%d : opcode =%d Not supported\n",
4736 task
->hdr
->opcode
& ISCSI_OPCODE_MASK
);
4744 /* Set the task type */
4745 io_task
->wrb_type
= (is_chip_be2_be3r(phba
)) ?
4746 AMAP_GET_BITS(struct amap_iscsi_wrb
, type
, pwrb
) :
4747 AMAP_GET_BITS(struct amap_iscsi_wrb_v2
, type
, pwrb
);
4749 doorbell
|= cid
& DB_WRB_POST_CID_MASK
;
4750 doorbell
|= (io_task
->pwrb_handle
->wrb_index
&
4751 DB_DEF_PDU_WRB_INDEX_MASK
) << DB_DEF_PDU_WRB_INDEX_SHIFT
;
4752 doorbell
|= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT
;
4753 iowrite32(doorbell
, phba
->db_va
+
4754 beiscsi_conn
->doorbell_offset
);
4758 static int beiscsi_task_xmit(struct iscsi_task
*task
)
4760 struct beiscsi_io_task
*io_task
= task
->dd_data
;
4761 struct scsi_cmnd
*sc
= task
->sc
;
4762 struct beiscsi_hba
*phba
;
4763 struct scatterlist
*sg
;
4765 unsigned int writedir
= 0, xferlen
= 0;
4767 phba
= io_task
->conn
->phba
;
4769 * HBA in error includes BEISCSI_HBA_FW_TIMEOUT. IO path might be
4770 * operational if FW still gets heartbeat from EP FW. Is management
4771 * path really needed to continue further?
4773 if (!beiscsi_hba_is_online(phba
))
4776 if (!io_task
->conn
->login_in_progress
)
4777 task
->hdr
->exp_statsn
= 0;
4780 return beiscsi_mtask(task
);
4782 io_task
->scsi_cmnd
= sc
;
4783 io_task
->num_sg
= 0;
4784 num_sg
= scsi_dma_map(sc
);
4786 beiscsi_log(phba
, KERN_ERR
,
4787 BEISCSI_LOG_IO
| BEISCSI_LOG_ISCSI
,
4788 "BM_%d : scsi_dma_map Failed "
4789 "Driver_ITT : 0x%x ITT : 0x%x Xferlen : 0x%x\n",
4790 be32_to_cpu(io_task
->cmd_bhs
->iscsi_hdr
.itt
),
4791 io_task
->libiscsi_itt
, scsi_bufflen(sc
));
4796 * For scsi cmd task, check num_sg before unmapping in cleanup_task.
4797 * For management task, cleanup_task checks mtask_addr before unmapping.
4799 io_task
->num_sg
= num_sg
;
4800 xferlen
= scsi_bufflen(sc
);
4801 sg
= scsi_sglist(sc
);
4802 if (sc
->sc_data_direction
== DMA_TO_DEVICE
)
4807 return phba
->iotask_fn(task
, sg
, num_sg
, xferlen
, writedir
);
4811 * beiscsi_bsg_request - handle bsg request from ISCSI transport
4812 * @job: job to handle
4814 static int beiscsi_bsg_request(struct bsg_job
*job
)
4816 struct Scsi_Host
*shost
;
4817 struct beiscsi_hba
*phba
;
4818 struct iscsi_bsg_request
*bsg_req
= job
->request
;
4821 struct be_dma_mem nonemb_cmd
;
4822 struct be_cmd_resp_hdr
*resp
;
4823 struct iscsi_bsg_reply
*bsg_reply
= job
->reply
;
4824 unsigned short status
, extd_status
;
4826 shost
= iscsi_job_to_shost(job
);
4827 phba
= iscsi_host_priv(shost
);
4829 if (!beiscsi_hba_is_online(phba
)) {
4830 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_CONFIG
,
4831 "BM_%d : HBA in error 0x%lx\n", phba
->state
);
4835 switch (bsg_req
->msgcode
) {
4836 case ISCSI_BSG_HST_VENDOR
:
4837 nonemb_cmd
.va
= dma_alloc_coherent(&phba
->ctrl
.pdev
->dev
,
4838 job
->request_payload
.payload_len
,
4839 &nonemb_cmd
.dma
, GFP_KERNEL
);
4840 if (nonemb_cmd
.va
== NULL
) {
4841 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_CONFIG
,
4842 "BM_%d : Failed to allocate memory for "
4843 "beiscsi_bsg_request\n");
4846 tag
= mgmt_vendor_specific_fw_cmd(&phba
->ctrl
, phba
, job
,
4849 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_CONFIG
,
4850 "BM_%d : MBX Tag Allocation Failed\n");
4852 dma_free_coherent(&phba
->ctrl
.pdev
->dev
, nonemb_cmd
.size
,
4853 nonemb_cmd
.va
, nonemb_cmd
.dma
);
4857 rc
= wait_event_interruptible_timeout(
4858 phba
->ctrl
.mcc_wait
[tag
],
4859 phba
->ctrl
.mcc_tag_status
[tag
],
4861 BEISCSI_HOST_MBX_TIMEOUT
));
4863 if (!test_bit(BEISCSI_HBA_ONLINE
, &phba
->state
)) {
4864 clear_bit(MCC_TAG_STATE_RUNNING
,
4865 &phba
->ctrl
.ptag_state
[tag
].tag_state
);
4866 dma_free_coherent(&phba
->ctrl
.pdev
->dev
, nonemb_cmd
.size
,
4867 nonemb_cmd
.va
, nonemb_cmd
.dma
);
4870 extd_status
= (phba
->ctrl
.mcc_tag_status
[tag
] &
4871 CQE_STATUS_ADDL_MASK
) >> CQE_STATUS_ADDL_SHIFT
;
4872 status
= phba
->ctrl
.mcc_tag_status
[tag
] & CQE_STATUS_MASK
;
4873 free_mcc_wrb(&phba
->ctrl
, tag
);
4874 resp
= (struct be_cmd_resp_hdr
*)nonemb_cmd
.va
;
4875 sg_copy_from_buffer(job
->reply_payload
.sg_list
,
4876 job
->reply_payload
.sg_cnt
,
4877 nonemb_cmd
.va
, (resp
->response_length
4879 bsg_reply
->reply_payload_rcv_len
= resp
->response_length
;
4880 bsg_reply
->result
= status
;
4881 bsg_job_done(job
, bsg_reply
->result
,
4882 bsg_reply
->reply_payload_rcv_len
);
4883 dma_free_coherent(&phba
->ctrl
.pdev
->dev
, nonemb_cmd
.size
,
4884 nonemb_cmd
.va
, nonemb_cmd
.dma
);
4885 if (status
|| extd_status
) {
4886 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_CONFIG
,
4887 "BM_%d : MBX Cmd Failed"
4888 " status = %d extd_status = %d\n",
4889 status
, extd_status
);
4898 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_CONFIG
,
4899 "BM_%d : Unsupported bsg command: 0x%x\n",
4907 static void beiscsi_hba_attrs_init(struct beiscsi_hba
*phba
)
4909 /* Set the logging parameter */
4910 beiscsi_log_enable_init(phba
, beiscsi_log_enable
);
4913 void beiscsi_start_boot_work(struct beiscsi_hba
*phba
, unsigned int s_handle
)
4915 if (phba
->boot_struct
.boot_kset
)
4918 /* skip if boot work is already in progress */
4919 if (test_and_set_bit(BEISCSI_HBA_BOOT_WORK
, &phba
->state
))
4922 phba
->boot_struct
.retry
= 3;
4923 phba
->boot_struct
.tag
= 0;
4924 phba
->boot_struct
.s_handle
= s_handle
;
4925 phba
->boot_struct
.action
= BEISCSI_BOOT_GET_SHANDLE
;
4926 schedule_work(&phba
->boot_work
);
4930 * Boot flag info for iscsi-utilities
4931 * Bit 0 Block valid flag
4932 * Bit 1 Firmware booting selected
4934 #define BEISCSI_SYSFS_ISCSI_BOOT_FLAGS 3
4936 static ssize_t
beiscsi_show_boot_tgt_info(void *data
, int type
, char *buf
)
4938 struct beiscsi_hba
*phba
= data
;
4939 struct mgmt_session_info
*boot_sess
= &phba
->boot_struct
.boot_sess
;
4940 struct mgmt_conn_info
*boot_conn
= &boot_sess
->conn_list
[0];
4945 case ISCSI_BOOT_TGT_NAME
:
4946 rc
= sprintf(buf
, "%.*s\n",
4947 (int)strlen(boot_sess
->target_name
),
4948 (char *)&boot_sess
->target_name
);
4950 case ISCSI_BOOT_TGT_IP_ADDR
:
4951 if (boot_conn
->dest_ipaddr
.ip_type
== BEISCSI_IP_TYPE_V4
)
4952 rc
= sprintf(buf
, "%pI4\n",
4953 (char *)&boot_conn
->dest_ipaddr
.addr
);
4955 rc
= sprintf(str
, "%pI6\n",
4956 (char *)&boot_conn
->dest_ipaddr
.addr
);
4958 case ISCSI_BOOT_TGT_PORT
:
4959 rc
= sprintf(str
, "%d\n", boot_conn
->dest_port
);
4962 case ISCSI_BOOT_TGT_CHAP_NAME
:
4963 rc
= sprintf(str
, "%.*s\n",
4964 boot_conn
->negotiated_login_options
.auth_data
.chap
.
4965 target_chap_name_length
,
4966 (char *)&boot_conn
->negotiated_login_options
.
4967 auth_data
.chap
.target_chap_name
);
4969 case ISCSI_BOOT_TGT_CHAP_SECRET
:
4970 rc
= sprintf(str
, "%.*s\n",
4971 boot_conn
->negotiated_login_options
.auth_data
.chap
.
4972 target_secret_length
,
4973 (char *)&boot_conn
->negotiated_login_options
.
4974 auth_data
.chap
.target_secret
);
4976 case ISCSI_BOOT_TGT_REV_CHAP_NAME
:
4977 rc
= sprintf(str
, "%.*s\n",
4978 boot_conn
->negotiated_login_options
.auth_data
.chap
.
4979 intr_chap_name_length
,
4980 (char *)&boot_conn
->negotiated_login_options
.
4981 auth_data
.chap
.intr_chap_name
);
4983 case ISCSI_BOOT_TGT_REV_CHAP_SECRET
:
4984 rc
= sprintf(str
, "%.*s\n",
4985 boot_conn
->negotiated_login_options
.auth_data
.chap
.
4987 (char *)&boot_conn
->negotiated_login_options
.
4988 auth_data
.chap
.intr_secret
);
4990 case ISCSI_BOOT_TGT_FLAGS
:
4991 rc
= sprintf(str
, "%d\n", BEISCSI_SYSFS_ISCSI_BOOT_FLAGS
);
4993 case ISCSI_BOOT_TGT_NIC_ASSOC
:
4994 rc
= sprintf(str
, "0\n");
5000 static ssize_t
beiscsi_show_boot_ini_info(void *data
, int type
, char *buf
)
5002 struct beiscsi_hba
*phba
= data
;
5007 case ISCSI_BOOT_INI_INITIATOR_NAME
:
5008 rc
= sprintf(str
, "%s\n",
5009 phba
->boot_struct
.boot_sess
.initiator_iscsiname
);
5015 static ssize_t
beiscsi_show_boot_eth_info(void *data
, int type
, char *buf
)
5017 struct beiscsi_hba
*phba
= data
;
5022 case ISCSI_BOOT_ETH_FLAGS
:
5023 rc
= sprintf(str
, "%d\n", BEISCSI_SYSFS_ISCSI_BOOT_FLAGS
);
5025 case ISCSI_BOOT_ETH_INDEX
:
5026 rc
= sprintf(str
, "0\n");
5028 case ISCSI_BOOT_ETH_MAC
:
5029 rc
= beiscsi_get_macaddr(str
, phba
);
5035 static umode_t
beiscsi_tgt_get_attr_visibility(void *data
, int type
)
5040 case ISCSI_BOOT_TGT_NAME
:
5041 case ISCSI_BOOT_TGT_IP_ADDR
:
5042 case ISCSI_BOOT_TGT_PORT
:
5043 case ISCSI_BOOT_TGT_CHAP_NAME
:
5044 case ISCSI_BOOT_TGT_CHAP_SECRET
:
5045 case ISCSI_BOOT_TGT_REV_CHAP_NAME
:
5046 case ISCSI_BOOT_TGT_REV_CHAP_SECRET
:
5047 case ISCSI_BOOT_TGT_NIC_ASSOC
:
5048 case ISCSI_BOOT_TGT_FLAGS
:
5055 static umode_t
beiscsi_ini_get_attr_visibility(void *data
, int type
)
5060 case ISCSI_BOOT_INI_INITIATOR_NAME
:
5067 static umode_t
beiscsi_eth_get_attr_visibility(void *data
, int type
)
5072 case ISCSI_BOOT_ETH_FLAGS
:
5073 case ISCSI_BOOT_ETH_MAC
:
5074 case ISCSI_BOOT_ETH_INDEX
:
5081 static void beiscsi_boot_kobj_release(void *data
)
5083 struct beiscsi_hba
*phba
= data
;
5085 scsi_host_put(phba
->shost
);
5088 static int beiscsi_boot_create_kset(struct beiscsi_hba
*phba
)
5090 struct boot_struct
*bs
= &phba
->boot_struct
;
5091 struct iscsi_boot_kobj
*boot_kobj
;
5093 if (bs
->boot_kset
) {
5094 __beiscsi_log(phba
, KERN_ERR
,
5095 "BM_%d: boot_kset already created\n");
5099 bs
->boot_kset
= iscsi_boot_create_host_kset(phba
->shost
->host_no
);
5100 if (!bs
->boot_kset
) {
5101 __beiscsi_log(phba
, KERN_ERR
,
5102 "BM_%d: boot_kset alloc failed\n");
5106 /* get shost ref because the show function will refer phba */
5107 if (!scsi_host_get(phba
->shost
))
5110 boot_kobj
= iscsi_boot_create_target(bs
->boot_kset
, 0, phba
,
5111 beiscsi_show_boot_tgt_info
,
5112 beiscsi_tgt_get_attr_visibility
,
5113 beiscsi_boot_kobj_release
);
5117 if (!scsi_host_get(phba
->shost
))
5120 boot_kobj
= iscsi_boot_create_initiator(bs
->boot_kset
, 0, phba
,
5121 beiscsi_show_boot_ini_info
,
5122 beiscsi_ini_get_attr_visibility
,
5123 beiscsi_boot_kobj_release
);
5127 if (!scsi_host_get(phba
->shost
))
5130 boot_kobj
= iscsi_boot_create_ethernet(bs
->boot_kset
, 0, phba
,
5131 beiscsi_show_boot_eth_info
,
5132 beiscsi_eth_get_attr_visibility
,
5133 beiscsi_boot_kobj_release
);
5140 scsi_host_put(phba
->shost
);
5142 iscsi_boot_destroy_kset(bs
->boot_kset
);
5143 bs
->boot_kset
= NULL
;
5147 static void beiscsi_boot_work(struct work_struct
*work
)
5149 struct beiscsi_hba
*phba
=
5150 container_of(work
, struct beiscsi_hba
, boot_work
);
5151 struct boot_struct
*bs
= &phba
->boot_struct
;
5152 unsigned int tag
= 0;
5154 if (!beiscsi_hba_is_online(phba
))
5157 beiscsi_log(phba
, KERN_INFO
,
5158 BEISCSI_LOG_CONFIG
| BEISCSI_LOG_MBOX
,
5159 "BM_%d : %s action %d\n",
5160 __func__
, phba
->boot_struct
.action
);
5162 switch (phba
->boot_struct
.action
) {
5163 case BEISCSI_BOOT_REOPEN_SESS
:
5164 tag
= beiscsi_boot_reopen_sess(phba
);
5166 case BEISCSI_BOOT_GET_SHANDLE
:
5167 tag
= __beiscsi_boot_get_shandle(phba
, 1);
5169 case BEISCSI_BOOT_GET_SINFO
:
5170 tag
= beiscsi_boot_get_sinfo(phba
);
5172 case BEISCSI_BOOT_LOGOUT_SESS
:
5173 tag
= beiscsi_boot_logout_sess(phba
);
5175 case BEISCSI_BOOT_CREATE_KSET
:
5176 beiscsi_boot_create_kset(phba
);
5178 * updated boot_kset is made visible to all before
5179 * ending the boot work.
5182 clear_bit(BEISCSI_HBA_BOOT_WORK
, &phba
->state
);
5187 schedule_work(&phba
->boot_work
);
5189 clear_bit(BEISCSI_HBA_BOOT_WORK
, &phba
->state
);
5193 static void beiscsi_eqd_update_work(struct work_struct
*work
)
5195 struct hwi_context_memory
*phwi_context
;
5196 struct be_set_eqd set_eqd
[MAX_CPUS
];
5197 struct hwi_controller
*phwi_ctrlr
;
5198 struct be_eq_obj
*pbe_eq
;
5199 struct beiscsi_hba
*phba
;
5200 unsigned int pps
, delta
;
5201 struct be_aic_obj
*aic
;
5202 int eqd
, i
, num
= 0;
5205 phba
= container_of(work
, struct beiscsi_hba
, eqd_update
.work
);
5206 if (!beiscsi_hba_is_online(phba
))
5209 phwi_ctrlr
= phba
->phwi_ctrlr
;
5210 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
5212 for (i
= 0; i
<= phba
->num_cpus
; i
++) {
5213 aic
= &phba
->aic_obj
[i
];
5214 pbe_eq
= &phwi_context
->be_eq
[i
];
5216 if (!aic
->jiffies
|| time_before(now
, aic
->jiffies
) ||
5217 pbe_eq
->cq_count
< aic
->eq_prev
) {
5219 aic
->eq_prev
= pbe_eq
->cq_count
;
5222 delta
= jiffies_to_msecs(now
- aic
->jiffies
);
5223 pps
= (((u32
)(pbe_eq
->cq_count
- aic
->eq_prev
) * 1000) / delta
);
5224 eqd
= (pps
/ 1500) << 2;
5228 eqd
= min_t(u32
, eqd
, BEISCSI_EQ_DELAY_MAX
);
5229 eqd
= max_t(u32
, eqd
, BEISCSI_EQ_DELAY_MIN
);
5232 aic
->eq_prev
= pbe_eq
->cq_count
;
5234 if (eqd
!= aic
->prev_eqd
) {
5235 set_eqd
[num
].delay_multiplier
= (eqd
* 65)/100;
5236 set_eqd
[num
].eq_id
= pbe_eq
->q
.id
;
5237 aic
->prev_eqd
= eqd
;
5242 /* completion of this is ignored */
5243 beiscsi_modify_eq_delay(phba
, set_eqd
, num
);
5245 schedule_delayed_work(&phba
->eqd_update
,
5246 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL
));
5249 static void beiscsi_hw_tpe_check(struct timer_list
*t
)
5251 struct beiscsi_hba
*phba
= from_timer(phba
, t
, hw_check
);
5254 /* if not TPE, do nothing */
5255 if (!beiscsi_detect_tpe(phba
))
5258 /* wait default 4000ms before recovering */
5260 if (phba
->ue2rp
> BEISCSI_UE_DETECT_INTERVAL
)
5261 wait
= phba
->ue2rp
- BEISCSI_UE_DETECT_INTERVAL
;
5262 queue_delayed_work(phba
->wq
, &phba
->recover_port
,
5263 msecs_to_jiffies(wait
));
5266 static void beiscsi_hw_health_check(struct timer_list
*t
)
5268 struct beiscsi_hba
*phba
= from_timer(phba
, t
, hw_check
);
5270 beiscsi_detect_ue(phba
);
5271 if (beiscsi_detect_ue(phba
)) {
5272 __beiscsi_log(phba
, KERN_ERR
,
5273 "BM_%d : port in error: %lx\n", phba
->state
);
5274 /* sessions are no longer valid, so first fail the sessions */
5275 queue_work(phba
->wq
, &phba
->sess_work
);
5277 /* detect UER supported */
5278 if (!test_bit(BEISCSI_HBA_UER_SUPP
, &phba
->state
))
5280 /* modify this timer to check TPE */
5281 phba
->hw_check
.function
= beiscsi_hw_tpe_check
;
5284 mod_timer(&phba
->hw_check
,
5285 jiffies
+ msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL
));
5289 * beiscsi_enable_port()- Enables the disabled port.
5290 * Only port resources freed in disable function are reallocated.
5291 * This is called in HBA error handling path.
5293 * @phba: Instance of driver private structure
5296 static int beiscsi_enable_port(struct beiscsi_hba
*phba
)
5298 struct hwi_context_memory
*phwi_context
;
5299 struct hwi_controller
*phwi_ctrlr
;
5300 struct be_eq_obj
*pbe_eq
;
5303 if (test_bit(BEISCSI_HBA_ONLINE
, &phba
->state
)) {
5304 __beiscsi_log(phba
, KERN_ERR
,
5305 "BM_%d : %s : port is online %lx\n",
5306 __func__
, phba
->state
);
5310 ret
= beiscsi_init_sliport(phba
);
5314 be2iscsi_enable_msix(phba
);
5316 beiscsi_get_params(phba
);
5317 beiscsi_set_host_data(phba
);
5318 /* Re-enable UER. If different TPE occurs then it is recoverable. */
5319 beiscsi_set_uer_feature(phba
);
5321 phba
->shost
->max_id
= phba
->params
.cxns_per_ctrl
;
5322 phba
->shost
->can_queue
= phba
->params
.ios_per_ctrl
;
5323 ret
= beiscsi_init_port(phba
);
5325 __beiscsi_log(phba
, KERN_ERR
,
5326 "BM_%d : init port failed\n");
5330 for (i
= 0; i
< MAX_MCC_CMD
; i
++) {
5331 init_waitqueue_head(&phba
->ctrl
.mcc_wait
[i
+ 1]);
5332 phba
->ctrl
.mcc_tag
[i
] = i
+ 1;
5333 phba
->ctrl
.mcc_tag_status
[i
+ 1] = 0;
5334 phba
->ctrl
.mcc_tag_available
++;
5337 phwi_ctrlr
= phba
->phwi_ctrlr
;
5338 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
5339 for (i
= 0; i
< phba
->num_cpus
; i
++) {
5340 pbe_eq
= &phwi_context
->be_eq
[i
];
5341 irq_poll_init(&pbe_eq
->iopoll
, be_iopoll_budget
, be_iopoll
);
5344 i
= (phba
->pcidev
->msix_enabled
) ? i
: 0;
5345 /* Work item for MCC handling */
5346 pbe_eq
= &phwi_context
->be_eq
[i
];
5347 INIT_WORK(&pbe_eq
->mcc_work
, beiscsi_mcc_work
);
5349 ret
= beiscsi_init_irqs(phba
);
5351 __beiscsi_log(phba
, KERN_ERR
,
5352 "BM_%d : setup IRQs failed %d\n", ret
);
5355 hwi_enable_intr(phba
);
5356 /* port operational: clear all error bits */
5357 set_bit(BEISCSI_HBA_ONLINE
, &phba
->state
);
5358 __beiscsi_log(phba
, KERN_INFO
,
5359 "BM_%d : port online: 0x%lx\n", phba
->state
);
5361 /* start hw_check timer and eqd_update work */
5362 schedule_delayed_work(&phba
->eqd_update
,
5363 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL
));
5366 * Timer function gets modified for TPE detection.
5367 * Always reinit to do health check first.
5369 phba
->hw_check
.function
= beiscsi_hw_health_check
;
5370 mod_timer(&phba
->hw_check
,
5371 jiffies
+ msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL
));
5375 for (i
= 0; i
< phba
->num_cpus
; i
++) {
5376 pbe_eq
= &phwi_context
->be_eq
[i
];
5377 irq_poll_disable(&pbe_eq
->iopoll
);
5379 hwi_cleanup_port(phba
);
5382 pci_free_irq_vectors(phba
->pcidev
);
5387 * beiscsi_disable_port()- Disable port and cleanup driver resources.
5388 * This is called in HBA error handling and driver removal.
5389 * @phba: Instance Priv structure
5390 * @unload: indicate driver is unloading
5392 * Free the OS and HW resources held by the driver
5394 static void beiscsi_disable_port(struct beiscsi_hba
*phba
, int unload
)
5396 struct hwi_context_memory
*phwi_context
;
5397 struct hwi_controller
*phwi_ctrlr
;
5398 struct be_eq_obj
*pbe_eq
;
5401 if (!test_and_clear_bit(BEISCSI_HBA_ONLINE
, &phba
->state
))
5404 phwi_ctrlr
= phba
->phwi_ctrlr
;
5405 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
5406 hwi_disable_intr(phba
);
5407 beiscsi_free_irqs(phba
);
5408 pci_free_irq_vectors(phba
->pcidev
);
5410 for (i
= 0; i
< phba
->num_cpus
; i
++) {
5411 pbe_eq
= &phwi_context
->be_eq
[i
];
5412 irq_poll_disable(&pbe_eq
->iopoll
);
5414 cancel_delayed_work_sync(&phba
->eqd_update
);
5415 cancel_work_sync(&phba
->boot_work
);
5416 /* WQ might be running cancel queued mcc_work if we are not exiting */
5417 if (!unload
&& beiscsi_hba_in_error(phba
)) {
5418 pbe_eq
= &phwi_context
->be_eq
[i
];
5419 cancel_work_sync(&pbe_eq
->mcc_work
);
5421 hwi_cleanup_port(phba
);
5422 beiscsi_cleanup_port(phba
);
5425 static void beiscsi_sess_work(struct work_struct
*work
)
5427 struct beiscsi_hba
*phba
;
5429 phba
= container_of(work
, struct beiscsi_hba
, sess_work
);
5431 * This work gets scheduled only in case of HBA error.
5432 * Old sessions are gone so need to be re-established.
5433 * iscsi_session_failure needs process context hence this work.
5435 iscsi_host_for_each_session(phba
->shost
, beiscsi_session_fail
);
5438 static void beiscsi_recover_port(struct work_struct
*work
)
5440 struct beiscsi_hba
*phba
;
5442 phba
= container_of(work
, struct beiscsi_hba
, recover_port
.work
);
5443 beiscsi_disable_port(phba
, 0);
5444 beiscsi_enable_port(phba
);
5447 static pci_ers_result_t
beiscsi_eeh_err_detected(struct pci_dev
*pdev
,
5448 pci_channel_state_t state
)
5450 struct beiscsi_hba
*phba
= NULL
;
5452 phba
= (struct beiscsi_hba
*)pci_get_drvdata(pdev
);
5453 set_bit(BEISCSI_HBA_PCI_ERR
, &phba
->state
);
5455 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
5456 "BM_%d : EEH error detected\n");
5458 /* first stop UE detection when PCI error detected */
5459 del_timer_sync(&phba
->hw_check
);
5460 cancel_delayed_work_sync(&phba
->recover_port
);
5462 /* sessions are no longer valid, so first fail the sessions */
5463 iscsi_host_for_each_session(phba
->shost
, beiscsi_session_fail
);
5464 beiscsi_disable_port(phba
, 0);
5466 if (state
== pci_channel_io_perm_failure
) {
5467 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
5468 "BM_%d : EEH : State PERM Failure");
5469 return PCI_ERS_RESULT_DISCONNECT
;
5472 pci_disable_device(pdev
);
5474 /* The error could cause the FW to trigger a flash debug dump.
5475 * Resetting the card while flash dump is in progress
5476 * can cause it not to recover; wait for it to finish.
5477 * Wait only for first function as it is needed only once per
5480 if (pdev
->devfn
== 0)
5483 return PCI_ERS_RESULT_NEED_RESET
;
5486 static pci_ers_result_t
beiscsi_eeh_reset(struct pci_dev
*pdev
)
5488 struct beiscsi_hba
*phba
= NULL
;
5491 phba
= (struct beiscsi_hba
*)pci_get_drvdata(pdev
);
5493 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
5494 "BM_%d : EEH Reset\n");
5496 status
= pci_enable_device(pdev
);
5498 return PCI_ERS_RESULT_DISCONNECT
;
5500 pci_set_master(pdev
);
5501 pci_set_power_state(pdev
, PCI_D0
);
5502 pci_restore_state(pdev
);
5504 status
= beiscsi_check_fw_rdy(phba
);
5506 beiscsi_log(phba
, KERN_WARNING
, BEISCSI_LOG_INIT
,
5507 "BM_%d : EEH Reset Completed\n");
5509 beiscsi_log(phba
, KERN_WARNING
, BEISCSI_LOG_INIT
,
5510 "BM_%d : EEH Reset Completion Failure\n");
5511 return PCI_ERS_RESULT_DISCONNECT
;
5514 return PCI_ERS_RESULT_RECOVERED
;
5517 static void beiscsi_eeh_resume(struct pci_dev
*pdev
)
5519 struct beiscsi_hba
*phba
;
5522 phba
= (struct beiscsi_hba
*)pci_get_drvdata(pdev
);
5523 pci_save_state(pdev
);
5525 ret
= beiscsi_enable_port(phba
);
5527 __beiscsi_log(phba
, KERN_ERR
,
5528 "BM_%d : AER EEH resume failed\n");
5531 static int beiscsi_dev_probe(struct pci_dev
*pcidev
,
5532 const struct pci_device_id
*id
)
5534 struct hwi_context_memory
*phwi_context
;
5535 struct hwi_controller
*phwi_ctrlr
;
5536 struct beiscsi_hba
*phba
= NULL
;
5537 struct be_eq_obj
*pbe_eq
;
5538 unsigned int s_handle
;
5542 ret
= beiscsi_enable_pci(pcidev
);
5544 dev_err(&pcidev
->dev
,
5545 "beiscsi_dev_probe - Failed to enable pci device\n");
5549 phba
= beiscsi_hba_alloc(pcidev
);
5551 dev_err(&pcidev
->dev
,
5552 "beiscsi_dev_probe - Failed in beiscsi_hba_alloc\n");
5557 /* Enable EEH reporting */
5558 ret
= pci_enable_pcie_error_reporting(pcidev
);
5560 beiscsi_log(phba
, KERN_WARNING
, BEISCSI_LOG_INIT
,
5561 "BM_%d : PCIe Error Reporting "
5562 "Enabling Failed\n");
5564 pci_save_state(pcidev
);
5566 /* Initialize Driver configuration Paramters */
5567 beiscsi_hba_attrs_init(phba
);
5569 phba
->mac_addr_set
= false;
5571 switch (pcidev
->device
) {
5575 phba
->generation
= BE_GEN2
;
5576 phba
->iotask_fn
= beiscsi_iotask
;
5577 dev_warn(&pcidev
->dev
,
5578 "Obsolete/Unsupported BE2 Adapter Family\n");
5582 phba
->generation
= BE_GEN3
;
5583 phba
->iotask_fn
= beiscsi_iotask
;
5586 phba
->generation
= BE_GEN4
;
5587 phba
->iotask_fn
= beiscsi_iotask_v2
;
5590 phba
->generation
= 0;
5593 ret
= be_ctrl_init(phba
, pcidev
);
5595 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
5596 "BM_%d : be_ctrl_init failed\n");
5600 ret
= beiscsi_init_sliport(phba
);
5604 spin_lock_init(&phba
->io_sgl_lock
);
5605 spin_lock_init(&phba
->mgmt_sgl_lock
);
5606 spin_lock_init(&phba
->async_pdu_lock
);
5607 ret
= beiscsi_get_fw_config(&phba
->ctrl
, phba
);
5609 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
5610 "BM_%d : Error getting fw config\n");
5613 beiscsi_get_port_name(&phba
->ctrl
, phba
);
5614 beiscsi_get_params(phba
);
5615 beiscsi_set_host_data(phba
);
5616 beiscsi_set_uer_feature(phba
);
5618 be2iscsi_enable_msix(phba
);
5620 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
5621 "BM_%d : num_cpus = %d\n",
5624 phba
->shost
->max_id
= phba
->params
.cxns_per_ctrl
;
5625 phba
->shost
->can_queue
= phba
->params
.ios_per_ctrl
;
5626 ret
= beiscsi_get_memory(phba
);
5628 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
5629 "BM_%d : alloc host mem failed\n");
5633 ret
= beiscsi_init_port(phba
);
5635 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
5636 "BM_%d : init port failed\n");
5637 beiscsi_free_mem(phba
);
5641 for (i
= 0; i
< MAX_MCC_CMD
; i
++) {
5642 init_waitqueue_head(&phba
->ctrl
.mcc_wait
[i
+ 1]);
5643 phba
->ctrl
.mcc_tag
[i
] = i
+ 1;
5644 phba
->ctrl
.mcc_tag_status
[i
+ 1] = 0;
5645 phba
->ctrl
.mcc_tag_available
++;
5646 memset(&phba
->ctrl
.ptag_state
[i
].tag_mem_state
, 0,
5647 sizeof(struct be_dma_mem
));
5650 phba
->ctrl
.mcc_alloc_index
= phba
->ctrl
.mcc_free_index
= 0;
5652 snprintf(wq_name
, sizeof(wq_name
), "beiscsi_%02x_wq",
5653 phba
->shost
->host_no
);
5654 phba
->wq
= alloc_workqueue("%s", WQ_MEM_RECLAIM
, 1, wq_name
);
5656 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
5657 "BM_%d : beiscsi_dev_probe-"
5658 "Failed to allocate work queue\n");
5663 INIT_DELAYED_WORK(&phba
->eqd_update
, beiscsi_eqd_update_work
);
5665 phwi_ctrlr
= phba
->phwi_ctrlr
;
5666 phwi_context
= phwi_ctrlr
->phwi_ctxt
;
5668 for (i
= 0; i
< phba
->num_cpus
; i
++) {
5669 pbe_eq
= &phwi_context
->be_eq
[i
];
5670 irq_poll_init(&pbe_eq
->iopoll
, be_iopoll_budget
, be_iopoll
);
5673 i
= (phba
->pcidev
->msix_enabled
) ? i
: 0;
5674 /* Work item for MCC handling */
5675 pbe_eq
= &phwi_context
->be_eq
[i
];
5676 INIT_WORK(&pbe_eq
->mcc_work
, beiscsi_mcc_work
);
5678 ret
= beiscsi_init_irqs(phba
);
5680 beiscsi_log(phba
, KERN_ERR
, BEISCSI_LOG_INIT
,
5681 "BM_%d : beiscsi_dev_probe-"
5682 "Failed to beiscsi_init_irqs\n");
5683 goto disable_iopoll
;
5685 hwi_enable_intr(phba
);
5687 ret
= iscsi_host_add(phba
->shost
, &phba
->pcidev
->dev
);
5691 /* set online bit after port is operational */
5692 set_bit(BEISCSI_HBA_ONLINE
, &phba
->state
);
5693 __beiscsi_log(phba
, KERN_INFO
,
5694 "BM_%d : port online: 0x%lx\n", phba
->state
);
5696 INIT_WORK(&phba
->boot_work
, beiscsi_boot_work
);
5697 ret
= beiscsi_boot_get_shandle(phba
, &s_handle
);
5699 beiscsi_start_boot_work(phba
, s_handle
);
5701 * Set this bit after starting the work to let
5702 * probe handle it first.
5703 * ASYNC event can too schedule this work.
5705 set_bit(BEISCSI_HBA_BOOT_FOUND
, &phba
->state
);
5708 beiscsi_iface_create_default(phba
);
5709 schedule_delayed_work(&phba
->eqd_update
,
5710 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL
));
5712 INIT_WORK(&phba
->sess_work
, beiscsi_sess_work
);
5713 INIT_DELAYED_WORK(&phba
->recover_port
, beiscsi_recover_port
);
5715 * Start UE detection here. UE before this will cause stall in probe
5716 * and eventually fail the probe.
5718 timer_setup(&phba
->hw_check
, beiscsi_hw_health_check
, 0);
5719 mod_timer(&phba
->hw_check
,
5720 jiffies
+ msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL
));
5721 beiscsi_log(phba
, KERN_INFO
, BEISCSI_LOG_INIT
,
5722 "\n\n\n BM_%d : SUCCESS - DRIVER LOADED\n\n\n");
5726 hwi_disable_intr(phba
);
5727 beiscsi_free_irqs(phba
);
5729 for (i
= 0; i
< phba
->num_cpus
; i
++) {
5730 pbe_eq
= &phwi_context
->be_eq
[i
];
5731 irq_poll_disable(&pbe_eq
->iopoll
);
5733 destroy_workqueue(phba
->wq
);
5735 hwi_cleanup_port(phba
);
5736 beiscsi_cleanup_port(phba
);
5737 beiscsi_free_mem(phba
);
5739 dma_free_coherent(&phba
->pcidev
->dev
,
5740 phba
->ctrl
.mbox_mem_alloced
.size
,
5741 phba
->ctrl
.mbox_mem_alloced
.va
,
5742 phba
->ctrl
.mbox_mem_alloced
.dma
);
5743 beiscsi_unmap_pci_function(phba
);
5745 pci_disable_msix(phba
->pcidev
);
5746 pci_dev_put(phba
->pcidev
);
5747 iscsi_host_free(phba
->shost
);
5748 pci_set_drvdata(pcidev
, NULL
);
5750 pci_release_regions(pcidev
);
5751 pci_disable_device(pcidev
);
5755 static void beiscsi_remove(struct pci_dev
*pcidev
)
5757 struct beiscsi_hba
*phba
= NULL
;
5759 phba
= pci_get_drvdata(pcidev
);
5761 dev_err(&pcidev
->dev
, "beiscsi_remove called with no phba\n");
5765 /* first stop UE detection before unloading */
5766 del_timer_sync(&phba
->hw_check
);
5767 cancel_delayed_work_sync(&phba
->recover_port
);
5768 cancel_work_sync(&phba
->sess_work
);
5770 beiscsi_iface_destroy_default(phba
);
5771 iscsi_host_remove(phba
->shost
);
5772 beiscsi_disable_port(phba
, 1);
5774 /* after cancelling boot_work */
5775 iscsi_boot_destroy_kset(phba
->boot_struct
.boot_kset
);
5777 /* free all resources */
5778 destroy_workqueue(phba
->wq
);
5779 beiscsi_free_mem(phba
);
5782 beiscsi_unmap_pci_function(phba
);
5783 dma_free_coherent(&phba
->pcidev
->dev
,
5784 phba
->ctrl
.mbox_mem_alloced
.size
,
5785 phba
->ctrl
.mbox_mem_alloced
.va
,
5786 phba
->ctrl
.mbox_mem_alloced
.dma
);
5788 pci_dev_put(phba
->pcidev
);
5789 iscsi_host_free(phba
->shost
);
5790 pci_disable_pcie_error_reporting(pcidev
);
5791 pci_set_drvdata(pcidev
, NULL
);
5792 pci_release_regions(pcidev
);
5793 pci_disable_device(pcidev
);
5797 static struct pci_error_handlers beiscsi_eeh_handlers
= {
5798 .error_detected
= beiscsi_eeh_err_detected
,
5799 .slot_reset
= beiscsi_eeh_reset
,
5800 .resume
= beiscsi_eeh_resume
,
5803 struct iscsi_transport beiscsi_iscsi_transport
= {
5804 .owner
= THIS_MODULE
,
5806 .caps
= CAP_RECOVERY_L0
| CAP_HDRDGST
| CAP_TEXT_NEGO
|
5807 CAP_MULTI_R2T
| CAP_DATADGST
| CAP_DATA_PATH_OFFLOAD
,
5808 .create_session
= beiscsi_session_create
,
5809 .destroy_session
= beiscsi_session_destroy
,
5810 .create_conn
= beiscsi_conn_create
,
5811 .bind_conn
= beiscsi_conn_bind
,
5812 .destroy_conn
= iscsi_conn_teardown
,
5813 .attr_is_visible
= beiscsi_attr_is_visible
,
5814 .set_iface_param
= beiscsi_iface_set_param
,
5815 .get_iface_param
= beiscsi_iface_get_param
,
5816 .set_param
= beiscsi_set_param
,
5817 .get_conn_param
= iscsi_conn_get_param
,
5818 .get_session_param
= iscsi_session_get_param
,
5819 .get_host_param
= beiscsi_get_host_param
,
5820 .start_conn
= beiscsi_conn_start
,
5821 .stop_conn
= iscsi_conn_stop
,
5822 .send_pdu
= iscsi_conn_send_pdu
,
5823 .xmit_task
= beiscsi_task_xmit
,
5824 .cleanup_task
= beiscsi_cleanup_task
,
5825 .alloc_pdu
= beiscsi_alloc_pdu
,
5826 .parse_pdu_itt
= beiscsi_parse_pdu
,
5827 .get_stats
= beiscsi_conn_get_stats
,
5828 .get_ep_param
= beiscsi_ep_get_param
,
5829 .ep_connect
= beiscsi_ep_connect
,
5830 .ep_poll
= beiscsi_ep_poll
,
5831 .ep_disconnect
= beiscsi_ep_disconnect
,
5832 .session_recovery_timedout
= iscsi_session_recovery_timedout
,
5833 .bsg_request
= beiscsi_bsg_request
,
5836 static struct pci_driver beiscsi_pci_driver
= {
5838 .probe
= beiscsi_dev_probe
,
5839 .remove
= beiscsi_remove
,
5840 .id_table
= beiscsi_pci_id_table
,
5841 .err_handler
= &beiscsi_eeh_handlers
5844 static int __init
beiscsi_module_init(void)
5848 beiscsi_scsi_transport
=
5849 iscsi_register_transport(&beiscsi_iscsi_transport
);
5850 if (!beiscsi_scsi_transport
) {
5852 "beiscsi_module_init - Unable to register beiscsi transport.\n");
5855 printk(KERN_INFO
"In beiscsi_module_init, tt=%p\n",
5856 &beiscsi_iscsi_transport
);
5858 ret
= pci_register_driver(&beiscsi_pci_driver
);
5861 "beiscsi_module_init - Unable to register beiscsi pci driver.\n");
5862 goto unregister_iscsi_transport
;
5866 unregister_iscsi_transport
:
5867 iscsi_unregister_transport(&beiscsi_iscsi_transport
);
5871 static void __exit
beiscsi_module_exit(void)
5873 pci_unregister_driver(&beiscsi_pci_driver
);
5874 iscsi_unregister_transport(&beiscsi_iscsi_transport
);
5877 module_init(beiscsi_module_init
);
5878 module_exit(beiscsi_module_exit
);