blob: 1db21b657800110298e618b69043009d17f018c3 [file] [log] [blame]
Jitendra Bhivare942b7652017-03-24 14:11:48 +05301/*
Jitendra Bhivare0172dc62017-10-10 16:18:19 +05302 * Copyright 2017 Broadcom. All Rights Reserved.
Jitendra Bhivare942b7652017-03-24 14:11:48 +05303 * The term "Broadcom" refers to Broadcom Limited and/or its subsidiaries.
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License version 2
Jitendra Bhivare942b7652017-03-24 14:11:48 +05307 * as published by the Free Software Foundation. The full GNU General
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05308 * Public License is included in this distribution in the file called COPYING.
9 *
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053010 * Contact Information:
Jitendra Bhivare60f36e02016-08-19 15:20:24 +053011 * linux-drivers@broadcom.com
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053012 *
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053013 */
Jayamohan Kallickal255fa9a2011-03-25 14:23:57 -070014
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053015#include <linux/reboot.h>
16#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053018#include <linux/interrupt.h>
19#include <linux/blkdev.h>
20#include <linux/pci.h>
21#include <linux/string.h>
22#include <linux/kernel.h>
23#include <linux/semaphore.h>
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +053024#include <linux/iscsi_boot_sysfs.h>
Paul Gortmakeracf3368f2011-05-27 09:47:43 -040025#include <linux/module.h>
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -050026#include <linux/bsg-lib.h>
Jitendra Bhivare1094cf62016-01-20 14:10:56 +053027#include <linux/irq_poll.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053028
29#include <scsi/libiscsi.h>
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -050030#include <scsi/scsi_bsg_iscsi.h>
31#include <scsi/scsi_netlink.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053032#include <scsi/scsi_transport_iscsi.h>
33#include <scsi/scsi_transport.h>
34#include <scsi/scsi_cmnd.h>
35#include <scsi/scsi_device.h>
36#include <scsi/scsi_host.h>
37#include <scsi/scsi.h>
38#include "be_main.h"
39#include "be_iscsi.h"
40#include "be_mgmt.h"
John Soni Jose0a513dd2012-08-20 23:00:55 +053041#include "be_cmds.h"
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053042
43static unsigned int be_iopoll_budget = 10;
44static unsigned int be_max_phys_size = 64;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +053045static unsigned int enable_msix = 1;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053046
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053047MODULE_DESCRIPTION(DRV_DESC " " BUILD_STR);
Jayamohan Kallickal76d15db2012-04-03 23:41:46 -050048MODULE_VERSION(BUILD_STR);
Ketan Mukadamc4f39bd2015-07-04 04:12:33 +053049MODULE_AUTHOR("Emulex Corporation");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053050MODULE_LICENSE("GPL");
51module_param(be_iopoll_budget, int, 0);
52module_param(enable_msix, int, 0);
53module_param(be_max_phys_size, uint, S_IRUGO);
John Soni Jose99bc5d52012-08-20 23:00:18 +053054MODULE_PARM_DESC(be_max_phys_size,
55 "Maximum Size (In Kilobytes) of physically contiguous "
56 "memory that can be allocated. Range is 16 - 128");
57
58#define beiscsi_disp_param(_name)\
Baoyou Xie0825b8e2016-09-26 20:00:59 +080059static ssize_t \
John Soni Jose99bc5d52012-08-20 23:00:18 +053060beiscsi_##_name##_disp(struct device *dev,\
61 struct device_attribute *attrib, char *buf) \
62{ \
63 struct Scsi_Host *shost = class_to_shost(dev);\
64 struct beiscsi_hba *phba = iscsi_host_priv(shost); \
John Soni Jose99bc5d52012-08-20 23:00:18 +053065 return snprintf(buf, PAGE_SIZE, "%d\n",\
66 phba->attr_##_name);\
67}
68
69#define beiscsi_change_param(_name, _minval, _maxval, _defaval)\
Baoyou Xie0825b8e2016-09-26 20:00:59 +080070static int \
John Soni Jose99bc5d52012-08-20 23:00:18 +053071beiscsi_##_name##_change(struct beiscsi_hba *phba, uint32_t val)\
72{\
73 if (val >= _minval && val <= _maxval) {\
74 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,\
75 "BA_%d : beiscsi_"#_name" updated "\
76 "from 0x%x ==> 0x%x\n",\
77 phba->attr_##_name, val); \
78 phba->attr_##_name = val;\
79 return 0;\
80 } \
81 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, \
82 "BA_%d beiscsi_"#_name" attribute "\
83 "cannot be updated to 0x%x, "\
84 "range allowed is ["#_minval" - "#_maxval"]\n", val);\
85 return -EINVAL;\
86}
87
88#define beiscsi_store_param(_name) \
Baoyou Xie0825b8e2016-09-26 20:00:59 +080089static ssize_t \
John Soni Jose99bc5d52012-08-20 23:00:18 +053090beiscsi_##_name##_store(struct device *dev,\
91 struct device_attribute *attr, const char *buf,\
92 size_t count) \
93{ \
94 struct Scsi_Host *shost = class_to_shost(dev);\
95 struct beiscsi_hba *phba = iscsi_host_priv(shost);\
96 uint32_t param_val = 0;\
97 if (!isdigit(buf[0]))\
98 return -EINVAL;\
99 if (sscanf(buf, "%i", &param_val) != 1)\
100 return -EINVAL;\
101 if (beiscsi_##_name##_change(phba, param_val) == 0) \
102 return strlen(buf);\
103 else \
104 return -EINVAL;\
105}
106
107#define beiscsi_init_param(_name, _minval, _maxval, _defval) \
Baoyou Xie0825b8e2016-09-26 20:00:59 +0800108static int \
John Soni Jose99bc5d52012-08-20 23:00:18 +0530109beiscsi_##_name##_init(struct beiscsi_hba *phba, uint32_t val) \
110{ \
111 if (val >= _minval && val <= _maxval) {\
112 phba->attr_##_name = val;\
113 return 0;\
114 } \
115 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,\
116 "BA_%d beiscsi_"#_name" attribute " \
117 "cannot be updated to 0x%x, "\
118 "range allowed is ["#_minval" - "#_maxval"]\n", val);\
119 phba->attr_##_name = _defval;\
120 return -EINVAL;\
121}
122
123#define BEISCSI_RW_ATTR(_name, _minval, _maxval, _defval, _descp) \
124static uint beiscsi_##_name = _defval;\
125module_param(beiscsi_##_name, uint, S_IRUGO);\
126MODULE_PARM_DESC(beiscsi_##_name, _descp);\
127beiscsi_disp_param(_name)\
128beiscsi_change_param(_name, _minval, _maxval, _defval)\
129beiscsi_store_param(_name)\
130beiscsi_init_param(_name, _minval, _maxval, _defval)\
131DEVICE_ATTR(beiscsi_##_name, S_IRUGO | S_IWUSR,\
132 beiscsi_##_name##_disp, beiscsi_##_name##_store)
133
134/*
135 * When new log level added update the
136 * the MAX allowed value for log_enable
137 */
138BEISCSI_RW_ATTR(log_enable, 0x00,
139 0xFF, 0x00, "Enable logging Bit Mask\n"
140 "\t\t\t\tInitialization Events : 0x01\n"
141 "\t\t\t\tMailbox Events : 0x02\n"
142 "\t\t\t\tMiscellaneous Events : 0x04\n"
143 "\t\t\t\tError Handling : 0x08\n"
144 "\t\t\t\tIO Path Events : 0x10\n"
Jayamohan Kallickalafb96052013-09-28 15:35:55 -0700145 "\t\t\t\tConfiguration Path : 0x20\n"
146 "\t\t\t\tiSCSI Protocol : 0x40\n");
John Soni Jose99bc5d52012-08-20 23:00:18 +0530147
John Soni Jose5cac7592012-10-20 04:42:25 +0530148DEVICE_ATTR(beiscsi_drvr_ver, S_IRUGO, beiscsi_drvr_ver_disp, NULL);
John Soni Jose26000db2012-10-20 04:45:06 +0530149DEVICE_ATTR(beiscsi_adapter_family, S_IRUGO, beiscsi_adap_family_disp, NULL);
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700150DEVICE_ATTR(beiscsi_fw_ver, S_IRUGO, beiscsi_fw_ver_disp, NULL);
Jayamohan Kallickald3fea9a2013-09-28 15:35:53 -0700151DEVICE_ATTR(beiscsi_phys_port, S_IRUGO, beiscsi_phys_port_disp, NULL);
Jayamohan Kallickal6103c1f2013-09-28 15:35:52 -0700152DEVICE_ATTR(beiscsi_active_session_count, S_IRUGO,
153 beiscsi_active_session_disp, NULL);
154DEVICE_ATTR(beiscsi_free_session_count, S_IRUGO,
155 beiscsi_free_session_disp, NULL);
John Soni Jose99bc5d52012-08-20 23:00:18 +0530156struct device_attribute *beiscsi_attrs[] = {
157 &dev_attr_beiscsi_log_enable,
John Soni Jose5cac7592012-10-20 04:42:25 +0530158 &dev_attr_beiscsi_drvr_ver,
John Soni Jose26000db2012-10-20 04:45:06 +0530159 &dev_attr_beiscsi_adapter_family,
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700160 &dev_attr_beiscsi_fw_ver,
Jayamohan Kallickal6103c1f2013-09-28 15:35:52 -0700161 &dev_attr_beiscsi_active_session_count,
162 &dev_attr_beiscsi_free_session_count,
Jayamohan Kallickald3fea9a2013-09-28 15:35:53 -0700163 &dev_attr_beiscsi_phys_port,
John Soni Jose99bc5d52012-08-20 23:00:18 +0530164 NULL,
165};
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530166
John Soni Jose6763daa2012-10-20 04:41:45 +0530167static char const *cqe_desc[] = {
168 "RESERVED_DESC",
169 "SOL_CMD_COMPLETE",
170 "SOL_CMD_KILLED_DATA_DIGEST_ERR",
171 "CXN_KILLED_PDU_SIZE_EXCEEDS_DSL",
172 "CXN_KILLED_BURST_LEN_MISMATCH",
173 "CXN_KILLED_AHS_RCVD",
174 "CXN_KILLED_HDR_DIGEST_ERR",
175 "CXN_KILLED_UNKNOWN_HDR",
176 "CXN_KILLED_STALE_ITT_TTT_RCVD",
177 "CXN_KILLED_INVALID_ITT_TTT_RCVD",
178 "CXN_KILLED_RST_RCVD",
179 "CXN_KILLED_TIMED_OUT",
180 "CXN_KILLED_RST_SENT",
181 "CXN_KILLED_FIN_RCVD",
182 "CXN_KILLED_BAD_UNSOL_PDU_RCVD",
183 "CXN_KILLED_BAD_WRB_INDEX_ERROR",
184 "CXN_KILLED_OVER_RUN_RESIDUAL",
185 "CXN_KILLED_UNDER_RUN_RESIDUAL",
186 "CMD_KILLED_INVALID_STATSN_RCVD",
187 "CMD_KILLED_INVALID_R2T_RCVD",
188 "CMD_CXN_KILLED_LUN_INVALID",
189 "CMD_CXN_KILLED_ICD_INVALID",
190 "CMD_CXN_KILLED_ITT_INVALID",
191 "CMD_CXN_KILLED_SEQ_OUTOFORDER",
192 "CMD_CXN_KILLED_INVALID_DATASN_RCVD",
193 "CXN_INVALIDATE_NOTIFY",
194 "CXN_INVALIDATE_INDEX_NOTIFY",
195 "CMD_INVALIDATED_NOTIFY",
196 "UNSOL_HDR_NOTIFY",
197 "UNSOL_DATA_NOTIFY",
198 "UNSOL_DATA_DIGEST_ERROR_NOTIFY",
199 "DRIVERMSG_NOTIFY",
200 "CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN",
201 "SOL_CMD_KILLED_DIF_ERR",
202 "CXN_KILLED_SYN_RCVD",
203 "CXN_KILLED_IMM_DATA_RCVD"
204};
205
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530206static int beiscsi_slave_configure(struct scsi_device *sdev)
207{
208 blk_queue_max_segment_size(sdev->request_queue, 65536);
209 return 0;
210}
211
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530212static int beiscsi_eh_abort(struct scsi_cmnd *sc)
213{
Jitendra Bhivarefaa0a222016-12-13 15:55:56 +0530214 struct iscsi_task *abrt_task = (struct iscsi_task *)sc->SCp.ptr;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530215 struct iscsi_cls_session *cls_session;
Jitendra Bhivarefaa0a222016-12-13 15:55:56 +0530216 struct beiscsi_io_task *abrt_io_task;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530217 struct beiscsi_conn *beiscsi_conn;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530218 struct iscsi_session *session;
Jitendra Bhivaref3505012016-12-13 15:55:54 +0530219 struct invldt_cmd_tbl inv_tbl;
Jitendra Bhivarefaa0a222016-12-13 15:55:56 +0530220 struct beiscsi_hba *phba;
221 struct iscsi_conn *conn;
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -0500222 int rc;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530223
224 cls_session = starget_to_session(scsi_target(sc->device));
225 session = cls_session->dd_data;
226
Jitendra Bhivarefaa0a222016-12-13 15:55:56 +0530227 /* check if we raced, task just got cleaned up under us */
228 spin_lock_bh(&session->back_lock);
229 if (!abrt_task || !abrt_task->sc) {
230 spin_unlock_bh(&session->back_lock);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530231 return SUCCESS;
232 }
Jitendra Bhivarefaa0a222016-12-13 15:55:56 +0530233 /* get a task ref till FW processes the req for the ICD used */
234 __iscsi_get_task(abrt_task);
235 abrt_io_task = abrt_task->dd_data;
236 conn = abrt_task->conn;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530237 beiscsi_conn = conn->dd_data;
238 phba = beiscsi_conn->phba;
Jitendra Bhivarefaa0a222016-12-13 15:55:56 +0530239 /* mark WRB invalid which have been not processed by FW yet */
Jitendra Bhivare392b7d22016-12-13 15:55:57 +0530240 if (is_chip_be2_be3r(phba)) {
241 AMAP_SET_BITS(struct amap_iscsi_wrb, invld,
242 abrt_io_task->pwrb_handle->pwrb, 1);
243 } else {
244 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, invld,
245 abrt_io_task->pwrb_handle->pwrb, 1);
246 }
Jitendra Bhivarefaa0a222016-12-13 15:55:56 +0530247 inv_tbl.cid = beiscsi_conn->beiscsi_conn_cid;
248 inv_tbl.icd = abrt_io_task->psgl_handle->sgl_index;
249 spin_unlock_bh(&session->back_lock);
250
Jitendra Bhivare98713212016-12-13 15:55:55 +0530251 rc = beiscsi_mgmt_invalidate_icds(phba, &inv_tbl, 1);
Jitendra Bhivarefaa0a222016-12-13 15:55:56 +0530252 iscsi_put_task(abrt_task);
Jitendra Bhivare98713212016-12-13 15:55:55 +0530253 if (rc) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530254 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_EH,
Jitendra Bhivare98713212016-12-13 15:55:55 +0530255 "BM_%d : sc %p invalidation failed %d\n",
256 sc, rc);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530257 return FAILED;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530258 }
John Soni Josee175def2012-10-20 04:45:40 +0530259
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530260 return iscsi_eh_abort(sc);
261}
262
263static int beiscsi_eh_device_reset(struct scsi_cmnd *sc)
264{
Jitendra Bhivare98713212016-12-13 15:55:55 +0530265 struct beiscsi_invldt_cmd_tbl {
266 struct invldt_cmd_tbl tbl[BE_INVLDT_CMD_TBL_SZ];
267 struct iscsi_task *task[BE_INVLDT_CMD_TBL_SZ];
268 } *inv_tbl;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530269 struct iscsi_cls_session *cls_session;
Jitendra Bhivare98713212016-12-13 15:55:55 +0530270 struct beiscsi_conn *beiscsi_conn;
271 struct beiscsi_io_task *io_task;
272 struct iscsi_session *session;
273 struct beiscsi_hba *phba;
274 struct iscsi_conn *conn;
275 struct iscsi_task *task;
276 unsigned int i, nents;
Jitendra Bhivaref3505012016-12-13 15:55:54 +0530277 int rc, more = 0;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530278
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530279 cls_session = starget_to_session(scsi_target(sc->device));
280 session = cls_session->dd_data;
Jitendra Bhivare98713212016-12-13 15:55:55 +0530281
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600282 spin_lock_bh(&session->frwd_lock);
Jayamohan Kallickaldb7f7702012-04-03 23:41:43 -0500283 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600284 spin_unlock_bh(&session->frwd_lock);
Jayamohan Kallickaldb7f7702012-04-03 23:41:43 -0500285 return FAILED;
286 }
Jitendra Bhivare98713212016-12-13 15:55:55 +0530287
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530288 conn = session->leadconn;
289 beiscsi_conn = conn->dd_data;
290 phba = beiscsi_conn->phba;
Jitendra Bhivaref3505012016-12-13 15:55:54 +0530291
Wei Yongjunf2534732017-01-12 14:21:32 +0000292 inv_tbl = kzalloc(sizeof(*inv_tbl), GFP_ATOMIC);
Jitendra Bhivaref3505012016-12-13 15:55:54 +0530293 if (!inv_tbl) {
294 spin_unlock_bh(&session->frwd_lock);
295 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_EH,
296 "BM_%d : invldt_cmd_tbl alloc failed\n");
297 return FAILED;
298 }
299 nents = 0;
Jitendra Bhivare98713212016-12-13 15:55:55 +0530300 /* take back_lock to prevent task from getting cleaned up under us */
301 spin_lock(&session->back_lock);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530302 for (i = 0; i < conn->session->cmds_max; i++) {
Jitendra Bhivare98713212016-12-13 15:55:55 +0530303 task = conn->session->cmds[i];
304 if (!task->sc)
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530305 continue;
306
Jitendra Bhivare98713212016-12-13 15:55:55 +0530307 if (sc->device->lun != task->sc->device->lun)
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530308 continue;
Jitendra Bhivaref3505012016-12-13 15:55:54 +0530309 /**
310 * Can't fit in more cmds? Normally this won't happen b'coz
311 * BEISCSI_CMD_PER_LUN is same as BE_INVLDT_CMD_TBL_SZ.
312 */
313 if (nents == BE_INVLDT_CMD_TBL_SZ) {
314 more = 1;
315 break;
316 }
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530317
Jitendra Bhivare98713212016-12-13 15:55:55 +0530318 /* get a task ref till FW processes the req for the ICD used */
319 __iscsi_get_task(task);
320 io_task = task->dd_data;
321 /* mark WRB invalid which have been not processed by FW yet */
Jitendra Bhivare392b7d22016-12-13 15:55:57 +0530322 if (is_chip_be2_be3r(phba)) {
323 AMAP_SET_BITS(struct amap_iscsi_wrb, invld,
324 io_task->pwrb_handle->pwrb, 1);
325 } else {
326 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, invld,
327 io_task->pwrb_handle->pwrb, 1);
328 }
Jayamohan Kallickal7626c062013-09-28 15:35:57 -0700329
Jitendra Bhivare98713212016-12-13 15:55:55 +0530330 inv_tbl->tbl[nents].cid = beiscsi_conn->beiscsi_conn_cid;
331 inv_tbl->tbl[nents].icd = io_task->psgl_handle->sgl_index;
332 inv_tbl->task[nents] = task;
Jitendra Bhivaref3505012016-12-13 15:55:54 +0530333 nents++;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530334 }
Jitendra Bhivared1e1d632017-03-24 14:11:42 +0530335 spin_unlock(&session->back_lock);
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600336 spin_unlock_bh(&session->frwd_lock);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530337
Jitendra Bhivare98713212016-12-13 15:55:55 +0530338 rc = SUCCESS;
339 if (!nents)
340 goto end_reset;
341
Jitendra Bhivaref3505012016-12-13 15:55:54 +0530342 if (more) {
343 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_EH,
344 "BM_%d : number of cmds exceeds size of invalidation table\n");
Jitendra Bhivare98713212016-12-13 15:55:55 +0530345 rc = FAILED;
346 goto end_reset;
Jitendra Bhivaref3505012016-12-13 15:55:54 +0530347 }
348
Jitendra Bhivare98713212016-12-13 15:55:55 +0530349 if (beiscsi_mgmt_invalidate_icds(phba, &inv_tbl->tbl[0], nents)) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530350 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_EH,
Jitendra Bhivare98713212016-12-13 15:55:55 +0530351 "BM_%d : cid %u scmds invalidation failed\n",
352 beiscsi_conn->beiscsi_conn_cid);
353 rc = FAILED;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530354 }
John Soni Josee175def2012-10-20 04:45:40 +0530355
Jitendra Bhivare98713212016-12-13 15:55:55 +0530356end_reset:
357 for (i = 0; i < nents; i++)
358 iscsi_put_task(inv_tbl->task[i]);
359 kfree(inv_tbl);
360
361 if (rc == SUCCESS)
362 rc = iscsi_eh_device_reset(sc);
363 return rc;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530364}
365
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530366/*------------------- PCI Driver operations and data ----------------- */
Benoit Taine9baa3c32014-08-08 15:56:03 +0200367static const struct pci_device_id beiscsi_pci_id_table[] = {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530368 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID1) },
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +0530369 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID2) },
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530370 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID1) },
371 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) },
372 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID3) },
John Soni Jose139a1b12012-10-20 04:43:20 +0530373 { PCI_DEVICE(ELX_VENDOR_ID, OC_SKH_ID1) },
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530374 { 0 }
375};
376MODULE_DEVICE_TABLE(pci, beiscsi_pci_id_table);
377
John Soni Jose99bc5d52012-08-20 23:00:18 +0530378
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530379static struct scsi_host_template beiscsi_sht = {
380 .module = THIS_MODULE,
Ketan Mukadamc4f39bd2015-07-04 04:12:33 +0530381 .name = "Emulex 10Gbe open-iscsi Initiator Driver",
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530382 .proc_name = DRV_NAME,
383 .queuecommand = iscsi_queuecommand,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100384 .change_queue_depth = scsi_change_queue_depth,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530385 .slave_configure = beiscsi_slave_configure,
386 .target_alloc = iscsi_target_alloc,
Christoph Hellwigb6a05c82017-01-30 13:18:58 +0100387 .eh_timed_out = iscsi_eh_cmd_timed_out,
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530388 .eh_abort_handler = beiscsi_eh_abort,
389 .eh_device_reset_handler = beiscsi_eh_device_reset,
Jayamohan Kallickal309ce152010-02-20 08:02:10 +0530390 .eh_target_reset_handler = iscsi_eh_session_reset,
John Soni Jose99bc5d52012-08-20 23:00:18 +0530391 .shost_attrs = beiscsi_attrs,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530392 .sg_tablesize = BEISCSI_SGLIST_ELEMENTS,
393 .can_queue = BE2_IO_DEPTH,
394 .this_id = -1,
395 .max_sectors = BEISCSI_MAX_SECTORS,
396 .cmd_per_lun = BEISCSI_CMD_PER_LUN,
397 .use_clustering = ENABLE_CLUSTERING,
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -0500398 .vendor_id = SCSI_NL_VID_TYPE_PCI | BE_VENDOR_ID,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100399 .track_queue_depth = 1,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530400};
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530401
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530402static struct scsi_transport_template *beiscsi_scsi_transport;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530403
404static struct beiscsi_hba *beiscsi_hba_alloc(struct pci_dev *pcidev)
405{
406 struct beiscsi_hba *phba;
407 struct Scsi_Host *shost;
408
409 shost = iscsi_host_alloc(&beiscsi_sht, sizeof(*phba), 0);
410 if (!shost) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530411 dev_err(&pcidev->dev,
412 "beiscsi_hba_alloc - iscsi_host_alloc failed\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530413 return NULL;
414 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530415 shost->max_id = BE2_MAX_SESSIONS;
416 shost->max_channel = 0;
417 shost->max_cmd_len = BEISCSI_MAX_CMD_LEN;
418 shost->max_lun = BEISCSI_NUM_MAX_LUN;
419 shost->transportt = beiscsi_scsi_transport;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530420 phba = iscsi_host_priv(shost);
421 memset(phba, 0, sizeof(*phba));
422 phba->shost = shost;
423 phba->pcidev = pci_dev_get(pcidev);
Jayamohan Kallickal2807afb2010-01-05 05:07:49 +0530424 pci_set_drvdata(pcidev, phba);
Mike Christie0e438952012-04-03 23:41:51 -0500425 phba->interface_handle = 0xFFFFFFFF;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530426
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530427 return phba;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530428}
429
430static void beiscsi_unmap_pci_function(struct beiscsi_hba *phba)
431{
432 if (phba->csr_va) {
433 iounmap(phba->csr_va);
434 phba->csr_va = NULL;
435 }
436 if (phba->db_va) {
437 iounmap(phba->db_va);
438 phba->db_va = NULL;
439 }
440 if (phba->pci_va) {
441 iounmap(phba->pci_va);
442 phba->pci_va = NULL;
443 }
444}
445
446static int beiscsi_map_pci_bars(struct beiscsi_hba *phba,
447 struct pci_dev *pcidev)
448{
449 u8 __iomem *addr;
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +0530450 int pcicfg_reg;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530451
452 addr = ioremap_nocache(pci_resource_start(pcidev, 2),
453 pci_resource_len(pcidev, 2));
454 if (addr == NULL)
455 return -ENOMEM;
456 phba->ctrl.csr = addr;
457 phba->csr_va = addr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530458
459 addr = ioremap_nocache(pci_resource_start(pcidev, 4), 128 * 1024);
460 if (addr == NULL)
461 goto pci_map_err;
462 phba->ctrl.db = addr;
463 phba->db_va = addr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530464
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +0530465 if (phba->generation == BE_GEN2)
466 pcicfg_reg = 1;
467 else
468 pcicfg_reg = 0;
469
470 addr = ioremap_nocache(pci_resource_start(pcidev, pcicfg_reg),
471 pci_resource_len(pcidev, pcicfg_reg));
472
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530473 if (addr == NULL)
474 goto pci_map_err;
475 phba->ctrl.pcicfg = addr;
476 phba->pci_va = addr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530477 return 0;
478
479pci_map_err:
480 beiscsi_unmap_pci_function(phba);
481 return -ENOMEM;
482}
483
484static int beiscsi_enable_pci(struct pci_dev *pcidev)
485{
486 int ret;
487
488 ret = pci_enable_device(pcidev);
489 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530490 dev_err(&pcidev->dev,
491 "beiscsi_enable_pci - enable device failed\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530492 return ret;
493 }
494
John Soni Josee307f3a2015-04-25 08:17:19 +0530495 ret = pci_request_regions(pcidev, DRV_NAME);
496 if (ret) {
497 dev_err(&pcidev->dev,
498 "beiscsi_enable_pci - request region failed\n");
499 goto pci_dev_disable;
500 }
501
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530502 pci_set_master(pcidev);
Jayamohan Kallickal6c57625b2014-01-29 02:16:45 -0500503 ret = pci_set_dma_mask(pcidev, DMA_BIT_MASK(64));
504 if (ret) {
505 ret = pci_set_dma_mask(pcidev, DMA_BIT_MASK(32));
506 if (ret) {
507 dev_err(&pcidev->dev, "Could not set PCI DMA Mask\n");
John Soni Josee307f3a2015-04-25 08:17:19 +0530508 goto pci_region_release;
Jayamohan Kallickal6c57625b2014-01-29 02:16:45 -0500509 } else {
510 ret = pci_set_consistent_dma_mask(pcidev,
511 DMA_BIT_MASK(32));
512 }
513 } else {
514 ret = pci_set_consistent_dma_mask(pcidev, DMA_BIT_MASK(64));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530515 if (ret) {
516 dev_err(&pcidev->dev, "Could not set PCI DMA Mask\n");
John Soni Josee307f3a2015-04-25 08:17:19 +0530517 goto pci_region_release;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530518 }
519 }
520 return 0;
John Soni Josee307f3a2015-04-25 08:17:19 +0530521
522pci_region_release:
523 pci_release_regions(pcidev);
524pci_dev_disable:
525 pci_disable_device(pcidev);
526
527 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530528}
529
530static int be_ctrl_init(struct beiscsi_hba *phba, struct pci_dev *pdev)
531{
532 struct be_ctrl_info *ctrl = &phba->ctrl;
533 struct be_dma_mem *mbox_mem_alloc = &ctrl->mbox_mem_alloced;
534 struct be_dma_mem *mbox_mem_align = &ctrl->mbox_mem;
535 int status = 0;
536
537 ctrl->pdev = pdev;
538 status = beiscsi_map_pci_bars(phba, pdev);
539 if (status)
540 return status;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530541 mbox_mem_alloc->size = sizeof(struct be_mcc_mailbox) + 16;
542 mbox_mem_alloc->va = pci_alloc_consistent(pdev,
543 mbox_mem_alloc->size,
544 &mbox_mem_alloc->dma);
545 if (!mbox_mem_alloc->va) {
546 beiscsi_unmap_pci_function(phba);
Jayamohan Kallickala49e06d2012-04-03 23:41:44 -0500547 return -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530548 }
549
550 mbox_mem_align->size = sizeof(struct be_mcc_mailbox);
551 mbox_mem_align->va = PTR_ALIGN(mbox_mem_alloc->va, 16);
552 mbox_mem_align->dma = PTR_ALIGN(mbox_mem_alloc->dma, 16);
553 memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox));
Jitendra Bhivarec03a50f2016-01-20 14:10:46 +0530554 mutex_init(&ctrl->mbox_lock);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530555 spin_lock_init(&phba->ctrl.mcc_lock);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530556
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530557 return status;
558}
559
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700560/**
561 * beiscsi_get_params()- Set the config paramters
562 * @phba: ptr device priv structure
563 **/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530564static void beiscsi_get_params(struct beiscsi_hba *phba)
565{
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700566 uint32_t total_cid_count = 0;
567 uint32_t total_icd_count = 0;
568 uint8_t ulp_num = 0;
569
570 total_cid_count = BEISCSI_GET_CID_COUNT(phba, BEISCSI_ULP0) +
571 BEISCSI_GET_CID_COUNT(phba, BEISCSI_ULP1);
572
Jayamohan Kallickalcf987b72013-09-28 15:35:59 -0700573 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
574 uint32_t align_mask = 0;
575 uint32_t icd_post_per_page = 0;
576 uint32_t icd_count_unavailable = 0;
577 uint32_t icd_start = 0, icd_count = 0;
578 uint32_t icd_start_align = 0, icd_count_align = 0;
579
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700580 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
Jayamohan Kallickalcf987b72013-09-28 15:35:59 -0700581 icd_start = phba->fw_config.iscsi_icd_start[ulp_num];
582 icd_count = phba->fw_config.iscsi_icd_count[ulp_num];
583
584 /* Get ICD count that can be posted on each page */
585 icd_post_per_page = (PAGE_SIZE / (BE2_SGE *
586 sizeof(struct iscsi_sge)));
587 align_mask = (icd_post_per_page - 1);
588
589 /* Check if icd_start is aligned ICD per page posting */
590 if (icd_start % icd_post_per_page) {
591 icd_start_align = ((icd_start +
592 icd_post_per_page) &
593 ~(align_mask));
594 phba->fw_config.
595 iscsi_icd_start[ulp_num] =
596 icd_start_align;
597 }
598
599 icd_count_align = (icd_count & ~align_mask);
600
601 /* ICD discarded in the process of alignment */
602 if (icd_start_align)
603 icd_count_unavailable = ((icd_start_align -
604 icd_start) +
605 (icd_count -
606 icd_count_align));
607
608 /* Updated ICD count available */
609 phba->fw_config.iscsi_icd_count[ulp_num] = (icd_count -
610 icd_count_unavailable);
611
612 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
613 "BM_%d : Aligned ICD values\n"
614 "\t ICD Start : %d\n"
615 "\t ICD Count : %d\n"
616 "\t ICD Discarded : %d\n",
617 phba->fw_config.
618 iscsi_icd_start[ulp_num],
619 phba->fw_config.
620 iscsi_icd_count[ulp_num],
621 icd_count_unavailable);
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700622 break;
623 }
Jayamohan Kallickalcf987b72013-09-28 15:35:59 -0700624 }
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700625
Jayamohan Kallickalcf987b72013-09-28 15:35:59 -0700626 total_icd_count = phba->fw_config.iscsi_icd_count[ulp_num];
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700627 phba->params.ios_per_ctrl = (total_icd_count -
628 (total_cid_count +
629 BE2_TMFS + BE2_NOPOUT_REQ));
630 phba->params.cxns_per_ctrl = total_cid_count;
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700631 phba->params.icds_per_ctrl = total_icd_count;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530632 phba->params.num_sge_per_io = BE2_SGE;
633 phba->params.defpdu_hdr_sz = BE2_DEFPDU_HDR_SZ;
634 phba->params.defpdu_data_sz = BE2_DEFPDU_DATA_SZ;
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700635 phba->params.num_eq_entries = 1024;
636 phba->params.num_cq_entries = 1024;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530637 phba->params.wrbs_per_cxn = 256;
638}
639
640static void hwi_ring_eq_db(struct beiscsi_hba *phba,
641 unsigned int id, unsigned int clr_interrupt,
642 unsigned int num_processed,
643 unsigned char rearm, unsigned char event)
644{
645 u32 val = 0;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500646
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530647 if (rearm)
648 val |= 1 << DB_EQ_REARM_SHIFT;
649 if (clr_interrupt)
650 val |= 1 << DB_EQ_CLR_SHIFT;
651 if (event)
652 val |= 1 << DB_EQ_EVNT_SHIFT;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500653
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530654 val |= num_processed << DB_EQ_NUM_POPPED_SHIFT;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500655 /* Setting lower order EQ_ID Bits */
656 val |= (id & DB_EQ_RING_ID_LOW_MASK);
657
658 /* Setting Higher order EQ_ID Bits */
659 val |= (((id >> DB_EQ_HIGH_FEILD_SHIFT) &
660 DB_EQ_RING_ID_HIGH_MASK)
661 << DB_EQ_HIGH_SET_SHIFT);
662
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530663 iowrite32(val, phba->db_va + DB_EQ_OFFSET);
664}
665
666/**
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530667 * be_isr_mcc - The isr routine of the driver.
668 * @irq: Not used
669 * @dev_id: Pointer to host adapter structure
670 */
671static irqreturn_t be_isr_mcc(int irq, void *dev_id)
672{
673 struct beiscsi_hba *phba;
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530674 struct be_eq_entry *eqe;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530675 struct be_queue_info *eq;
676 struct be_queue_info *mcc;
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530677 unsigned int mcc_events;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530678 struct be_eq_obj *pbe_eq;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530679
680 pbe_eq = dev_id;
681 eq = &pbe_eq->q;
682 phba = pbe_eq->phba;
683 mcc = &phba->ctrl.mcc_obj.cq;
684 eqe = queue_tail_node(eq);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530685
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530686 mcc_events = 0;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530687 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
688 & EQE_VALID_MASK) {
689 if (((eqe->dw[offsetof(struct amap_eq_entry,
690 resource_id) / 32] &
691 EQE_RESID_MASK) >> 16) == mcc->id) {
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530692 mcc_events++;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530693 }
694 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
695 queue_tail_inc(eq);
696 eqe = queue_tail_node(eq);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530697 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530698
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530699 if (mcc_events) {
700 queue_work(phba->wq, &pbe_eq->mcc_work);
701 hwi_ring_eq_db(phba, eq->id, 1, mcc_events, 1, 1);
702 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530703 return IRQ_HANDLED;
704}
705
706/**
707 * be_isr_msix - The isr routine of the driver.
708 * @irq: Not used
709 * @dev_id: Pointer to host adapter structure
710 */
711static irqreturn_t be_isr_msix(int irq, void *dev_id)
712{
713 struct beiscsi_hba *phba;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530714 struct be_queue_info *eq;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530715 struct be_eq_obj *pbe_eq;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530716
717 pbe_eq = dev_id;
718 eq = &pbe_eq->q;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530719
720 phba = pbe_eq->phba;
Jitendra Bhivare1094cf62016-01-20 14:10:56 +0530721 /* disable interrupt till iopoll completes */
722 hwi_ring_eq_db(phba, eq->id, 1, 0, 0, 1);
723 irq_poll_sched(&pbe_eq->iopoll);
John Soni Jose72fb46a2012-10-20 04:42:49 +0530724
725 return IRQ_HANDLED;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530726}
727
728/**
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530729 * be_isr - The isr routine of the driver.
730 * @irq: Not used
731 * @dev_id: Pointer to host adapter structure
732 */
733static irqreturn_t be_isr(int irq, void *dev_id)
734{
735 struct beiscsi_hba *phba;
736 struct hwi_controller *phwi_ctrlr;
737 struct hwi_context_memory *phwi_context;
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530738 struct be_eq_entry *eqe;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530739 struct be_queue_info *eq;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530740 struct be_queue_info *mcc;
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530741 unsigned int mcc_events, io_events;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530742 struct be_ctrl_info *ctrl;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530743 struct be_eq_obj *pbe_eq;
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530744 int isr, rearm;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530745
746 phba = dev_id;
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700747 ctrl = &phba->ctrl;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530748 isr = ioread32(ctrl->csr + CEV_ISR0_OFFSET +
749 (PCI_FUNC(ctrl->pdev->devfn) * CEV_ISR_SIZE));
750 if (!isr)
751 return IRQ_NONE;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530752
753 phwi_ctrlr = phba->phwi_ctrlr;
754 phwi_context = phwi_ctrlr->phwi_ctxt;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530755 pbe_eq = &phwi_context->be_eq[0];
756
757 eq = &phwi_context->be_eq[0].q;
758 mcc = &phba->ctrl.mcc_obj.cq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530759 eqe = queue_tail_node(eq);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530760
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530761 io_events = 0;
762 mcc_events = 0;
Jens Axboe89f8b332014-03-13 09:38:42 -0600763 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
764 & EQE_VALID_MASK) {
765 if (((eqe->dw[offsetof(struct amap_eq_entry,
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530766 resource_id) / 32] & EQE_RESID_MASK) >> 16) == mcc->id)
767 mcc_events++;
768 else
769 io_events++;
Jens Axboe89f8b332014-03-13 09:38:42 -0600770 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
771 queue_tail_inc(eq);
772 eqe = queue_tail_node(eq);
773 }
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530774 if (!io_events && !mcc_events)
Jens Axboe89f8b332014-03-13 09:38:42 -0600775 return IRQ_NONE;
Jitendra Bhivarea30950162016-08-19 15:20:10 +0530776
777 /* no need to rearm if interrupt is only for IOs */
778 rearm = 0;
779 if (mcc_events) {
780 queue_work(phba->wq, &pbe_eq->mcc_work);
781 /* rearm for MCCQ */
782 rearm = 1;
783 }
784 if (io_events)
785 irq_poll_sched(&pbe_eq->iopoll);
786 hwi_ring_eq_db(phba, eq->id, 0, (io_events + mcc_events), rearm, 1);
787 return IRQ_HANDLED;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530788}
789
Jitendra Bhivare45371aa2017-10-10 16:18:13 +0530790static void beiscsi_free_irqs(struct beiscsi_hba *phba)
791{
792 struct hwi_context_memory *phwi_context;
793 int i;
794
795 if (!phba->pcidev->msix_enabled) {
796 if (phba->pcidev->irq)
797 free_irq(phba->pcidev->irq, phba);
798 return;
799 }
800
801 phwi_context = phba->phwi_ctrlr->phwi_ctxt;
802 for (i = 0; i <= phba->num_cpus; i++) {
803 free_irq(pci_irq_vector(phba->pcidev, i),
804 &phwi_context->be_eq[i]);
805 kfree(phba->msi_name[i]);
806 }
807}
Jitendra Bhivare1094cf62016-01-20 14:10:56 +0530808
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530809static int beiscsi_init_irqs(struct beiscsi_hba *phba)
810{
811 struct pci_dev *pcidev = phba->pcidev;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530812 struct hwi_controller *phwi_ctrlr;
813 struct hwi_context_memory *phwi_context;
Christoph Hellwig83148862017-01-13 17:29:48 +0100814 int ret, i, j;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530815
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530816 phwi_ctrlr = phba->phwi_ctrlr;
817 phwi_context = phwi_ctrlr->phwi_ctxt;
818
Christoph Hellwig83148862017-01-13 17:29:48 +0100819 if (pcidev->msix_enabled) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530820 for (i = 0; i < phba->num_cpus; i++) {
Himanshu Jhad38c9a82017-10-11 21:06:14 +0530821 phba->msi_name[i] = kasprintf(GFP_KERNEL,
822 "beiscsi_%02x_%02x",
823 phba->shost->host_no, i);
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -0700824 if (!phba->msi_name[i]) {
825 ret = -ENOMEM;
826 goto free_msix_irqs;
827 }
828
Christoph Hellwig83148862017-01-13 17:29:48 +0100829 ret = request_irq(pci_irq_vector(pcidev, i),
830 be_isr_msix, 0, phba->msi_name[i],
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530831 &phwi_context->be_eq[i]);
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +0530832 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530833 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
834 "BM_%d : beiscsi_init_irqs-Failed to"
835 "register msix for i = %d\n",
836 i);
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -0700837 kfree(phba->msi_name[i]);
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +0530838 goto free_msix_irqs;
839 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530840 }
Himanshu Jhad38c9a82017-10-11 21:06:14 +0530841 phba->msi_name[i] = kasprintf(GFP_KERNEL, "beiscsi_mcc_%02x",
842 phba->shost->host_no);
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -0700843 if (!phba->msi_name[i]) {
844 ret = -ENOMEM;
845 goto free_msix_irqs;
846 }
Christoph Hellwig83148862017-01-13 17:29:48 +0100847 ret = request_irq(pci_irq_vector(pcidev, i), be_isr_mcc, 0,
848 phba->msi_name[i], &phwi_context->be_eq[i]);
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +0530849 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530850 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT ,
851 "BM_%d : beiscsi_init_irqs-"
852 "Failed to register beiscsi_msix_mcc\n");
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -0700853 kfree(phba->msi_name[i]);
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +0530854 goto free_msix_irqs;
855 }
856
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530857 } else {
858 ret = request_irq(pcidev->irq, be_isr, IRQF_SHARED,
859 "beiscsi", phba);
860 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530861 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
862 "BM_%d : beiscsi_init_irqs-"
863 "Failed to register irq\\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530864 return ret;
865 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530866 }
867 return 0;
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +0530868free_msix_irqs:
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -0700869 for (j = i - 1; j >= 0; j--) {
Christoph Hellwig83148862017-01-13 17:29:48 +0100870 free_irq(pci_irq_vector(pcidev, i), &phwi_context->be_eq[j]);
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -0700871 kfree(phba->msi_name[j]);
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -0700872 }
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +0530873 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530874}
875
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500876void hwi_ring_cq_db(struct beiscsi_hba *phba,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530877 unsigned int id, unsigned int num_processed,
Jitendra Bhivare1094cf62016-01-20 14:10:56 +0530878 unsigned char rearm)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530879{
880 u32 val = 0;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500881
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530882 if (rearm)
883 val |= 1 << DB_CQ_REARM_SHIFT;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500884
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530885 val |= num_processed << DB_CQ_NUM_POPPED_SHIFT;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500886
887 /* Setting lower order CQ_ID Bits */
888 val |= (id & DB_CQ_RING_ID_LOW_MASK);
889
890 /* Setting Higher order CQ_ID Bits */
891 val |= (((id >> DB_CQ_HIGH_FEILD_SHIFT) &
892 DB_CQ_RING_ID_HIGH_MASK)
893 << DB_CQ_HIGH_SET_SHIFT);
894
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530895 iowrite32(val, phba->db_va + DB_CQ_OFFSET);
896}
897
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530898static struct sgl_handle *alloc_io_sgl_handle(struct beiscsi_hba *phba)
899{
900 struct sgl_handle *psgl_handle;
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +0530901 unsigned long flags;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530902
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +0530903 spin_lock_irqsave(&phba->io_sgl_lock, flags);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530904 if (phba->io_sgl_hndl_avbl) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530905 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO,
906 "BM_%d : In alloc_io_sgl_handle,"
907 " io_sgl_alloc_index=%d\n",
908 phba->io_sgl_alloc_index);
909
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530910 psgl_handle = phba->io_sgl_hndl_base[phba->
911 io_sgl_alloc_index];
912 phba->io_sgl_hndl_base[phba->io_sgl_alloc_index] = NULL;
913 phba->io_sgl_hndl_avbl--;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530914 if (phba->io_sgl_alloc_index == (phba->params.
915 ios_per_ctrl - 1))
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530916 phba->io_sgl_alloc_index = 0;
917 else
918 phba->io_sgl_alloc_index++;
919 } else
920 psgl_handle = NULL;
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +0530921 spin_unlock_irqrestore(&phba->io_sgl_lock, flags);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530922 return psgl_handle;
923}
924
925static void
926free_io_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
927{
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +0530928 unsigned long flags;
929
930 spin_lock_irqsave(&phba->io_sgl_lock, flags);
John Soni Jose99bc5d52012-08-20 23:00:18 +0530931 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO,
932 "BM_%d : In free_,io_sgl_free_index=%d\n",
933 phba->io_sgl_free_index);
934
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530935 if (phba->io_sgl_hndl_base[phba->io_sgl_free_index]) {
936 /*
937 * this can happen if clean_task is called on a task that
938 * failed in xmit_task or alloc_pdu.
939 */
Jitendra Bhivare45efc9402017-10-10 16:18:18 +0530940 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO,
941 "BM_%d : Double Free in IO SGL io_sgl_free_index=%d, value there=%p\n",
942 phba->io_sgl_free_index,
943 phba->io_sgl_hndl_base[phba->io_sgl_free_index]);
944 spin_unlock_irqrestore(&phba->io_sgl_lock, flags);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530945 return;
946 }
947 phba->io_sgl_hndl_base[phba->io_sgl_free_index] = psgl_handle;
948 phba->io_sgl_hndl_avbl++;
949 if (phba->io_sgl_free_index == (phba->params.ios_per_ctrl - 1))
950 phba->io_sgl_free_index = 0;
951 else
952 phba->io_sgl_free_index++;
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +0530953 spin_unlock_irqrestore(&phba->io_sgl_lock, flags);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530954}
955
Jitendra Bhivarecb564c62016-01-20 14:11:00 +0530956static inline struct wrb_handle *
957beiscsi_get_wrb_handle(struct hwi_wrb_context *pwrb_context,
958 unsigned int wrbs_per_cxn)
959{
960 struct wrb_handle *pwrb_handle;
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +0530961 unsigned long flags;
Jitendra Bhivarecb564c62016-01-20 14:11:00 +0530962
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +0530963 spin_lock_irqsave(&pwrb_context->wrb_lock, flags);
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +0530964 if (!pwrb_context->wrb_handles_available) {
965 spin_unlock_irqrestore(&pwrb_context->wrb_lock, flags);
966 return NULL;
967 }
Jitendra Bhivarecb564c62016-01-20 14:11:00 +0530968 pwrb_handle = pwrb_context->pwrb_handle_base[pwrb_context->alloc_index];
969 pwrb_context->wrb_handles_available--;
970 if (pwrb_context->alloc_index == (wrbs_per_cxn - 1))
971 pwrb_context->alloc_index = 0;
972 else
973 pwrb_context->alloc_index++;
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +0530974 spin_unlock_irqrestore(&pwrb_context->wrb_lock, flags);
Jitendra Bhivarebf9b7552016-08-26 15:09:07 +0530975
976 if (pwrb_handle)
977 memset(pwrb_handle->pwrb, 0, sizeof(*pwrb_handle->pwrb));
Jitendra Bhivarecb564c62016-01-20 14:11:00 +0530978
979 return pwrb_handle;
980}
981
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530982/**
983 * alloc_wrb_handle - To allocate a wrb handle
984 * @phba: The hba pointer
985 * @cid: The cid to use for allocation
John Soni Jose340c99e2015-08-20 04:44:30 +0530986 * @pwrb_context: ptr to ptr to wrb context
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530987 *
988 * This happens under session_lock until submission to chip
989 */
John Soni Jose340c99e2015-08-20 04:44:30 +0530990struct wrb_handle *alloc_wrb_handle(struct beiscsi_hba *phba, unsigned int cid,
Jitendra Bhivarecb564c62016-01-20 14:11:00 +0530991 struct hwi_wrb_context **pcontext)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530992{
993 struct hwi_wrb_context *pwrb_context;
994 struct hwi_controller *phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700995 uint16_t cri_index = BE_GET_CRI_FROM_CID(cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530996
997 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700998 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
Jitendra Bhivarecb564c62016-01-20 14:11:00 +0530999 /* return the context address */
1000 *pcontext = pwrb_context;
1001 return beiscsi_get_wrb_handle(pwrb_context, phba->params.wrbs_per_cxn);
1002}
John Soni Jose340c99e2015-08-20 04:44:30 +05301003
Jitendra Bhivarecb564c62016-01-20 14:11:00 +05301004static inline void
1005beiscsi_put_wrb_handle(struct hwi_wrb_context *pwrb_context,
1006 struct wrb_handle *pwrb_handle,
1007 unsigned int wrbs_per_cxn)
1008{
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +05301009 unsigned long flags;
1010
1011 spin_lock_irqsave(&pwrb_context->wrb_lock, flags);
Jitendra Bhivarecb564c62016-01-20 14:11:00 +05301012 pwrb_context->pwrb_handle_base[pwrb_context->free_index] = pwrb_handle;
1013 pwrb_context->wrb_handles_available++;
1014 if (pwrb_context->free_index == (wrbs_per_cxn - 1))
1015 pwrb_context->free_index = 0;
1016 else
1017 pwrb_context->free_index++;
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +05301018 pwrb_handle->pio_handle = NULL;
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +05301019 spin_unlock_irqrestore(&pwrb_context->wrb_lock, flags);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301020}
1021
1022/**
1023 * free_wrb_handle - To free the wrb handle back to pool
1024 * @phba: The hba pointer
1025 * @pwrb_context: The context to free from
1026 * @pwrb_handle: The wrb_handle to free
1027 *
1028 * This happens under session_lock until submission to chip
1029 */
1030static void
1031free_wrb_handle(struct beiscsi_hba *phba, struct hwi_wrb_context *pwrb_context,
1032 struct wrb_handle *pwrb_handle)
1033{
Jitendra Bhivarecb564c62016-01-20 14:11:00 +05301034 beiscsi_put_wrb_handle(pwrb_context,
1035 pwrb_handle,
1036 phba->params.wrbs_per_cxn);
John Soni Jose99bc5d52012-08-20 23:00:18 +05301037 beiscsi_log(phba, KERN_INFO,
1038 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1039 "BM_%d : FREE WRB: pwrb_handle=%p free_index=0x%x"
1040 "wrb_handles_available=%d\n",
1041 pwrb_handle, pwrb_context->free_index,
1042 pwrb_context->wrb_handles_available);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301043}
1044
1045static struct sgl_handle *alloc_mgmt_sgl_handle(struct beiscsi_hba *phba)
1046{
1047 struct sgl_handle *psgl_handle;
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +05301048 unsigned long flags;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301049
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +05301050 spin_lock_irqsave(&phba->mgmt_sgl_lock, flags);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301051 if (phba->eh_sgl_hndl_avbl) {
1052 psgl_handle = phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index];
1053 phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index] = NULL;
John Soni Jose99bc5d52012-08-20 23:00:18 +05301054 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1055 "BM_%d : mgmt_sgl_alloc_index=%d=0x%x\n",
1056 phba->eh_sgl_alloc_index,
1057 phba->eh_sgl_alloc_index);
1058
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301059 phba->eh_sgl_hndl_avbl--;
1060 if (phba->eh_sgl_alloc_index ==
1061 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl -
1062 1))
1063 phba->eh_sgl_alloc_index = 0;
1064 else
1065 phba->eh_sgl_alloc_index++;
1066 } else
1067 psgl_handle = NULL;
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +05301068 spin_unlock_irqrestore(&phba->mgmt_sgl_lock, flags);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301069 return psgl_handle;
1070}
1071
1072void
1073free_mgmt_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
1074{
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +05301075 unsigned long flags;
1076
1077 spin_lock_irqsave(&phba->mgmt_sgl_lock, flags);
John Soni Jose99bc5d52012-08-20 23:00:18 +05301078 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1079 "BM_%d : In free_mgmt_sgl_handle,"
1080 "eh_sgl_free_index=%d\n",
1081 phba->eh_sgl_free_index);
1082
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301083 if (phba->eh_sgl_hndl_base[phba->eh_sgl_free_index]) {
1084 /*
1085 * this can happen if clean_task is called on a task that
1086 * failed in xmit_task or alloc_pdu.
1087 */
John Soni Jose99bc5d52012-08-20 23:00:18 +05301088 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
1089 "BM_%d : Double Free in eh SGL ,"
1090 "eh_sgl_free_index=%d\n",
1091 phba->eh_sgl_free_index);
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +05301092 spin_unlock_irqrestore(&phba->mgmt_sgl_lock, flags);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301093 return;
1094 }
1095 phba->eh_sgl_hndl_base[phba->eh_sgl_free_index] = psgl_handle;
1096 phba->eh_sgl_hndl_avbl++;
1097 if (phba->eh_sgl_free_index ==
1098 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl - 1))
1099 phba->eh_sgl_free_index = 0;
1100 else
1101 phba->eh_sgl_free_index++;
Jitendra Bhivare7d2c0d62016-10-13 12:08:49 +05301102 spin_unlock_irqrestore(&phba->mgmt_sgl_lock, flags);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301103}
1104
1105static void
1106be_complete_io(struct beiscsi_conn *beiscsi_conn,
John Soni Jose73133262012-10-20 04:44:49 +05301107 struct iscsi_task *task,
1108 struct common_sol_cqe *csol_cqe)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301109{
1110 struct beiscsi_io_task *io_task = task->dd_data;
1111 struct be_status_bhs *sts_bhs =
1112 (struct be_status_bhs *)io_task->cmd_bhs;
1113 struct iscsi_conn *conn = beiscsi_conn->conn;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301114 unsigned char *sense;
1115 u32 resid = 0, exp_cmdsn, max_cmdsn;
1116 u8 rsp, status, flags;
1117
John Soni Jose73133262012-10-20 04:44:49 +05301118 exp_cmdsn = csol_cqe->exp_cmdsn;
1119 max_cmdsn = (csol_cqe->exp_cmdsn +
1120 csol_cqe->cmd_wnd - 1);
1121 rsp = csol_cqe->i_resp;
1122 status = csol_cqe->i_sts;
1123 flags = csol_cqe->i_flags;
1124 resid = csol_cqe->res_cnt;
1125
Jayamohan Kallickalbd535452011-10-07 19:31:10 -05001126 if (!task->sc) {
Jayamohan Kallickalda334972014-01-29 02:16:44 -05001127 if (io_task->scsi_cmnd) {
Jayamohan Kallickalbd535452011-10-07 19:31:10 -05001128 scsi_dma_unmap(io_task->scsi_cmnd);
Jayamohan Kallickalda334972014-01-29 02:16:44 -05001129 io_task->scsi_cmnd = NULL;
1130 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301131
Jayamohan Kallickalbd535452011-10-07 19:31:10 -05001132 return;
1133 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301134 task->sc->result = (DID_OK << 16) | status;
1135 if (rsp != ISCSI_STATUS_CMD_COMPLETED) {
1136 task->sc->result = DID_ERROR << 16;
1137 goto unmap;
1138 }
1139
1140 /* bidi not initially supported */
1141 if (flags & (ISCSI_FLAG_CMD_UNDERFLOW | ISCSI_FLAG_CMD_OVERFLOW)) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301142 if (!status && (flags & ISCSI_FLAG_CMD_OVERFLOW))
1143 task->sc->result = DID_ERROR << 16;
1144
1145 if (flags & ISCSI_FLAG_CMD_UNDERFLOW) {
1146 scsi_set_resid(task->sc, resid);
1147 if (!status && (scsi_bufflen(task->sc) - resid <
1148 task->sc->underflow))
1149 task->sc->result = DID_ERROR << 16;
1150 }
1151 }
1152
1153 if (status == SAM_STAT_CHECK_CONDITION) {
Dan Carpenter4053a4b2011-09-26 09:23:37 +03001154 u16 sense_len;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301155 unsigned short *slen = (unsigned short *)sts_bhs->sense_info;
Dan Carpenter4053a4b2011-09-26 09:23:37 +03001156
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301157 sense = sts_bhs->sense_info + sizeof(unsigned short);
Dan Carpenter4053a4b2011-09-26 09:23:37 +03001158 sense_len = be16_to_cpu(*slen);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301159 memcpy(task->sc->sense_buffer, sense,
1160 min_t(u16, sense_len, SCSI_SENSE_BUFFERSIZE));
1161 }
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301162
John Soni Jose73133262012-10-20 04:44:49 +05301163 if (io_task->cmd_bhs->iscsi_hdr.flags & ISCSI_FLAG_CMD_READ)
1164 conn->rxdata_octets += resid;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301165unmap:
John Soni Joseeb1c4692015-04-25 08:17:45 +05301166 if (io_task->scsi_cmnd) {
1167 scsi_dma_unmap(io_task->scsi_cmnd);
1168 io_task->scsi_cmnd = NULL;
1169 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301170 iscsi_complete_scsi_task(task, exp_cmdsn, max_cmdsn);
1171}
1172
1173static void
1174be_complete_logout(struct beiscsi_conn *beiscsi_conn,
John Soni Jose73133262012-10-20 04:44:49 +05301175 struct iscsi_task *task,
1176 struct common_sol_cqe *csol_cqe)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301177{
1178 struct iscsi_logout_rsp *hdr;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301179 struct beiscsi_io_task *io_task = task->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301180 struct iscsi_conn *conn = beiscsi_conn->conn;
1181
1182 hdr = (struct iscsi_logout_rsp *)task->hdr;
Jayamohan Kallickal7bd6e252010-01-05 05:07:02 +05301183 hdr->opcode = ISCSI_OP_LOGOUT_RSP;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301184 hdr->t2wait = 5;
1185 hdr->t2retain = 0;
John Soni Jose73133262012-10-20 04:44:49 +05301186 hdr->flags = csol_cqe->i_flags;
1187 hdr->response = csol_cqe->i_resp;
Jayamohan Kallickal702dc5e2013-04-05 20:38:37 -07001188 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn);
1189 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn +
1190 csol_cqe->cmd_wnd - 1);
John Soni Jose73133262012-10-20 04:44:49 +05301191
Jayamohan Kallickal7bd6e252010-01-05 05:07:02 +05301192 hdr->dlength[0] = 0;
1193 hdr->dlength[1] = 0;
1194 hdr->dlength[2] = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301195 hdr->hlength = 0;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301196 hdr->itt = io_task->libiscsi_itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301197 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1198}
1199
1200static void
1201be_complete_tmf(struct beiscsi_conn *beiscsi_conn,
John Soni Jose73133262012-10-20 04:44:49 +05301202 struct iscsi_task *task,
1203 struct common_sol_cqe *csol_cqe)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301204{
1205 struct iscsi_tm_rsp *hdr;
1206 struct iscsi_conn *conn = beiscsi_conn->conn;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301207 struct beiscsi_io_task *io_task = task->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301208
1209 hdr = (struct iscsi_tm_rsp *)task->hdr;
Jayamohan Kallickal7bd6e252010-01-05 05:07:02 +05301210 hdr->opcode = ISCSI_OP_SCSI_TMFUNC_RSP;
John Soni Jose73133262012-10-20 04:44:49 +05301211 hdr->flags = csol_cqe->i_flags;
1212 hdr->response = csol_cqe->i_resp;
Jayamohan Kallickal702dc5e2013-04-05 20:38:37 -07001213 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn);
1214 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn +
1215 csol_cqe->cmd_wnd - 1);
John Soni Jose73133262012-10-20 04:44:49 +05301216
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301217 hdr->itt = io_task->libiscsi_itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301218 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1219}
1220
1221static void
1222hwi_complete_drvr_msgs(struct beiscsi_conn *beiscsi_conn,
1223 struct beiscsi_hba *phba, struct sol_cqe *psol)
1224{
1225 struct hwi_wrb_context *pwrb_context;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001226 uint16_t wrb_index, cid, cri_index;
Jitendra Bhivaree1f9d312016-08-19 15:20:22 +05301227 struct hwi_controller *phwi_ctrlr;
1228 struct wrb_handle *pwrb_handle;
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +05301229 struct iscsi_session *session;
Jitendra Bhivaree1f9d312016-08-19 15:20:22 +05301230 struct iscsi_task *task;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301231
1232 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001233 if (is_chip_be2_be3r(phba)) {
John Soni Jose73133262012-10-20 04:44:49 +05301234 wrb_index = AMAP_GET_BITS(struct amap_it_dmsg_cqe,
1235 wrb_idx, psol);
1236 cid = AMAP_GET_BITS(struct amap_it_dmsg_cqe,
1237 cid, psol);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001238 } else {
1239 wrb_index = AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2,
1240 wrb_idx, psol);
1241 cid = AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2,
1242 cid, psol);
John Soni Jose73133262012-10-20 04:44:49 +05301243 }
1244
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001245 cri_index = BE_GET_CRI_FROM_CID(cid);
1246 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
John Soni Jose73133262012-10-20 04:44:49 +05301247 pwrb_handle = pwrb_context->pwrb_handle_basestd[wrb_index];
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +05301248 session = beiscsi_conn->conn->session;
1249 spin_lock_bh(&session->back_lock);
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05301250 task = pwrb_handle->pio_handle;
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +05301251 if (task)
1252 __iscsi_put_task(task);
1253 spin_unlock_bh(&session->back_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301254}
1255
1256static void
1257be_complete_nopin_resp(struct beiscsi_conn *beiscsi_conn,
John Soni Jose73133262012-10-20 04:44:49 +05301258 struct iscsi_task *task,
1259 struct common_sol_cqe *csol_cqe)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301260{
1261 struct iscsi_nopin *hdr;
1262 struct iscsi_conn *conn = beiscsi_conn->conn;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301263 struct beiscsi_io_task *io_task = task->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301264
1265 hdr = (struct iscsi_nopin *)task->hdr;
John Soni Jose73133262012-10-20 04:44:49 +05301266 hdr->flags = csol_cqe->i_flags;
1267 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn);
Jayamohan Kallickal702dc5e2013-04-05 20:38:37 -07001268 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn +
1269 csol_cqe->cmd_wnd - 1);
John Soni Jose73133262012-10-20 04:44:49 +05301270
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301271 hdr->opcode = ISCSI_OP_NOOP_IN;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301272 hdr->itt = io_task->libiscsi_itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301273 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1274}
1275
John Soni Jose73133262012-10-20 04:44:49 +05301276static void adapter_get_sol_cqe(struct beiscsi_hba *phba,
1277 struct sol_cqe *psol,
1278 struct common_sol_cqe *csol_cqe)
1279{
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001280 if (is_chip_be2_be3r(phba)) {
1281 csol_cqe->exp_cmdsn = AMAP_GET_BITS(struct amap_sol_cqe,
1282 i_exp_cmd_sn, psol);
1283 csol_cqe->res_cnt = AMAP_GET_BITS(struct amap_sol_cqe,
1284 i_res_cnt, psol);
1285 csol_cqe->cmd_wnd = AMAP_GET_BITS(struct amap_sol_cqe,
1286 i_cmd_wnd, psol);
1287 csol_cqe->wrb_index = AMAP_GET_BITS(struct amap_sol_cqe,
1288 wrb_index, psol);
1289 csol_cqe->cid = AMAP_GET_BITS(struct amap_sol_cqe,
1290 cid, psol);
1291 csol_cqe->hw_sts = AMAP_GET_BITS(struct amap_sol_cqe,
1292 hw_sts, psol);
1293 csol_cqe->i_resp = AMAP_GET_BITS(struct amap_sol_cqe,
1294 i_resp, psol);
1295 csol_cqe->i_sts = AMAP_GET_BITS(struct amap_sol_cqe,
1296 i_sts, psol);
1297 csol_cqe->i_flags = AMAP_GET_BITS(struct amap_sol_cqe,
1298 i_flags, psol);
1299 } else {
John Soni Jose73133262012-10-20 04:44:49 +05301300 csol_cqe->exp_cmdsn = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1301 i_exp_cmd_sn, psol);
1302 csol_cqe->res_cnt = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1303 i_res_cnt, psol);
1304 csol_cqe->wrb_index = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1305 wrb_index, psol);
1306 csol_cqe->cid = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1307 cid, psol);
1308 csol_cqe->hw_sts = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1309 hw_sts, psol);
Jayamohan Kallickal702dc5e2013-04-05 20:38:37 -07001310 csol_cqe->cmd_wnd = AMAP_GET_BITS(struct amap_sol_cqe_v2,
John Soni Jose73133262012-10-20 04:44:49 +05301311 i_cmd_wnd, psol);
1312 if (AMAP_GET_BITS(struct amap_sol_cqe_v2,
1313 cmd_cmpl, psol))
1314 csol_cqe->i_sts = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1315 i_sts, psol);
1316 else
1317 csol_cqe->i_resp = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1318 i_sts, psol);
1319 if (AMAP_GET_BITS(struct amap_sol_cqe_v2,
1320 u, psol))
1321 csol_cqe->i_flags = ISCSI_FLAG_CMD_UNDERFLOW;
1322
1323 if (AMAP_GET_BITS(struct amap_sol_cqe_v2,
1324 o, psol))
1325 csol_cqe->i_flags |= ISCSI_FLAG_CMD_OVERFLOW;
John Soni Jose73133262012-10-20 04:44:49 +05301326 }
1327}
1328
1329
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301330static void hwi_complete_cmd(struct beiscsi_conn *beiscsi_conn,
1331 struct beiscsi_hba *phba, struct sol_cqe *psol)
1332{
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301333 struct iscsi_conn *conn = beiscsi_conn->conn;
1334 struct iscsi_session *session = conn->session;
John Soni Jose73133262012-10-20 04:44:49 +05301335 struct common_sol_cqe csol_cqe = {0};
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +05301336 struct hwi_wrb_context *pwrb_context;
1337 struct hwi_controller *phwi_ctrlr;
1338 struct wrb_handle *pwrb_handle;
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +05301339 struct iscsi_task *task;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001340 uint16_t cri_index = 0;
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +05301341 uint8_t type;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301342
1343 phwi_ctrlr = phba->phwi_ctrlr;
John Soni Jose73133262012-10-20 04:44:49 +05301344
1345 /* Copy the elements to a common structure */
1346 adapter_get_sol_cqe(phba, psol, &csol_cqe);
1347
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001348 cri_index = BE_GET_CRI_FROM_CID(csol_cqe.cid);
1349 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
John Soni Jose73133262012-10-20 04:44:49 +05301350
1351 pwrb_handle = pwrb_context->pwrb_handle_basestd[
1352 csol_cqe.wrb_index];
1353
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +05301354 spin_lock_bh(&session->back_lock);
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05301355 task = pwrb_handle->pio_handle;
Jitendra Bhivare3f7f62e2016-12-13 15:55:58 +05301356 if (!task) {
1357 spin_unlock_bh(&session->back_lock);
1358 return;
1359 }
John Soni Jose73133262012-10-20 04:44:49 +05301360 type = ((struct beiscsi_io_task *)task->dd_data)->wrb_type;
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05301361
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301362 switch (type) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301363 case HWH_TYPE_IO:
1364 case HWH_TYPE_IO_RD:
1365 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) ==
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05301366 ISCSI_OP_NOOP_OUT)
John Soni Jose73133262012-10-20 04:44:49 +05301367 be_complete_nopin_resp(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05301368 else
John Soni Jose73133262012-10-20 04:44:49 +05301369 be_complete_io(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301370 break;
1371
1372 case HWH_TYPE_LOGOUT:
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05301373 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
John Soni Jose73133262012-10-20 04:44:49 +05301374 be_complete_logout(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05301375 else
John Soni Jose73133262012-10-20 04:44:49 +05301376 be_complete_tmf(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301377 break;
1378
1379 case HWH_TYPE_LOGIN:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301380 beiscsi_log(phba, KERN_ERR,
1381 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1382 "BM_%d :\t\t No HWH_TYPE_LOGIN Expected in"
1383 " hwi_complete_cmd- Solicited path\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301384 break;
1385
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301386 case HWH_TYPE_NOP:
John Soni Jose73133262012-10-20 04:44:49 +05301387 be_complete_nopin_resp(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301388 break;
1389
1390 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301391 beiscsi_log(phba, KERN_WARNING,
1392 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1393 "BM_%d : In hwi_complete_cmd, unknown type = %d"
1394 "wrb_index 0x%x CID 0x%x\n", type,
John Soni Jose73133262012-10-20 04:44:49 +05301395 csol_cqe.wrb_index,
1396 csol_cqe.cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301397 break;
1398 }
Jayamohan Kallickal35e66012009-10-23 11:53:49 +05301399
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001400 spin_unlock_bh(&session->back_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301401}
1402
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301403/**
1404 * ASYNC PDUs include
1405 * a. Unsolicited NOP-In (target initiated NOP-In)
1406 * b. ASYNC Messages
1407 * c. Reject PDU
1408 * d. Login response
1409 * These headers arrive unprocessed by the EP firmware.
1410 * iSCSI layer processes them.
1411 */
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301412static unsigned int
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301413beiscsi_complete_pdu(struct beiscsi_conn *beiscsi_conn,
1414 struct pdu_base *phdr, void *pdata, unsigned int dlen)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301415{
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301416 struct beiscsi_hba *phba = beiscsi_conn->phba;
1417 struct iscsi_conn *conn = beiscsi_conn->conn;
1418 struct beiscsi_io_task *io_task;
1419 struct iscsi_hdr *login_hdr;
1420 struct iscsi_task *task;
1421 u8 code;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301422
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301423 code = AMAP_GET_BITS(struct amap_pdu_base, opcode, phdr);
1424 switch (code) {
1425 case ISCSI_OP_NOOP_IN:
1426 pdata = NULL;
1427 dlen = 0;
1428 break;
1429 case ISCSI_OP_ASYNC_EVENT:
1430 break;
1431 case ISCSI_OP_REJECT:
1432 WARN_ON(!pdata);
1433 WARN_ON(!(dlen == 48));
John Soni Jose99bc5d52012-08-20 23:00:18 +05301434 beiscsi_log(phba, KERN_ERR,
1435 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301436 "BM_%d : In ISCSI_OP_REJECT\n");
1437 break;
1438 case ISCSI_OP_LOGIN_RSP:
1439 case ISCSI_OP_TEXT_RSP:
1440 task = conn->login_task;
1441 io_task = task->dd_data;
1442 login_hdr = (struct iscsi_hdr *)phdr;
1443 login_hdr->itt = io_task->libiscsi_itt;
1444 break;
1445 default:
1446 beiscsi_log(phba, KERN_WARNING,
1447 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1448 "BM_%d : unrecognized async PDU opcode 0x%x\n",
1449 code);
1450 return 1;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301451 }
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301452 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)phdr, pdata, dlen);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301453 return 0;
1454}
1455
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301456static inline void
1457beiscsi_hdl_put_handle(struct hd_async_context *pasync_ctx,
1458 struct hd_async_handle *pasync_handle)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301459{
Jitendra Bhivareba6983a2017-03-24 14:11:46 +05301460 pasync_handle->is_final = 0;
1461 pasync_handle->buffer_len = 0;
1462 pasync_handle->in_use = 0;
1463 list_del_init(&pasync_handle->link);
1464}
1465
1466static void
1467beiscsi_hdl_purge_handles(struct beiscsi_hba *phba,
1468 struct hd_async_context *pasync_ctx,
1469 u16 cri)
1470{
1471 struct hd_async_handle *pasync_handle, *tmp_handle;
1472 struct list_head *plist;
1473
1474 plist = &pasync_ctx->async_entry[cri].wq.list;
1475 list_for_each_entry_safe(pasync_handle, tmp_handle, plist, link)
1476 beiscsi_hdl_put_handle(pasync_ctx, pasync_handle);
1477
1478 INIT_LIST_HEAD(&pasync_ctx->async_entry[cri].wq.list);
1479 pasync_ctx->async_entry[cri].wq.hdr_len = 0;
1480 pasync_ctx->async_entry[cri].wq.bytes_received = 0;
1481 pasync_ctx->async_entry[cri].wq.bytes_needed = 0;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301482}
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301483
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301484static struct hd_async_handle *
1485beiscsi_hdl_get_handle(struct beiscsi_conn *beiscsi_conn,
1486 struct hd_async_context *pasync_ctx,
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301487 struct i_t_dpdu_cqe *pdpdu_cqe,
1488 u8 *header)
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301489{
1490 struct beiscsi_hba *phba = beiscsi_conn->phba;
1491 struct hd_async_handle *pasync_handle;
1492 struct be_bus_address phys_addr;
Jitendra Bhivareba6983a2017-03-24 14:11:46 +05301493 u16 cid, code, ci, cri;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301494 u8 final, error = 0;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301495 u32 dpl;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301496
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301497 cid = beiscsi_conn->beiscsi_conn_cid;
Jitendra Bhivareba6983a2017-03-24 14:11:46 +05301498 cri = BE_GET_ASYNC_CRI_FROM_CID(cid);
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301499 /**
1500 * This function is invoked to get the right async_handle structure
1501 * from a given DEF PDU CQ entry.
1502 *
1503 * - index in CQ entry gives the vertical index
1504 * - address in CQ entry is the offset where the DMA last ended
1505 * - final - no more notifications for this PDU
1506 */
1507 if (is_chip_be2_be3r(phba)) {
1508 dpl = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1509 dpl, pdpdu_cqe);
1510 ci = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1511 index, pdpdu_cqe);
1512 final = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1513 final, pdpdu_cqe);
1514 } else {
1515 dpl = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1516 dpl, pdpdu_cqe);
1517 ci = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1518 index, pdpdu_cqe);
1519 final = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1520 final, pdpdu_cqe);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301521 }
1522
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301523 /**
1524 * DB addr Hi/Lo is same for BE and SKH.
1525 * Subtract the dataplacementlength to get to the base.
1526 */
1527 phys_addr.u.a32.address_lo = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1528 db_addr_lo, pdpdu_cqe);
1529 phys_addr.u.a32.address_lo -= dpl;
1530 phys_addr.u.a32.address_hi = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1531 db_addr_hi, pdpdu_cqe);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301532
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301533 code = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe, code, pdpdu_cqe);
1534 switch (code) {
1535 case UNSOL_HDR_NOTIFY:
1536 pasync_handle = pasync_ctx->async_entry[ci].header;
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301537 *header = 1;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301538 break;
1539 case UNSOL_DATA_DIGEST_ERROR_NOTIFY:
1540 error = 1;
1541 case UNSOL_DATA_NOTIFY:
1542 pasync_handle = pasync_ctx->async_entry[ci].data;
1543 break;
1544 /* called only for above codes */
1545 default:
Jitendra Bhivareba6983a2017-03-24 14:11:46 +05301546 return NULL;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301547 }
1548
1549 if (pasync_handle->pa.u.a64.address != phys_addr.u.a64.address ||
1550 pasync_handle->index != ci) {
1551 /* driver bug - if ci does not match async handle index */
1552 error = 1;
1553 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI,
1554 "BM_%d : cid %u async PDU handle mismatch - addr in %cQE %llx at %u:addr in CQE %llx ci %u\n",
1555 cid, pasync_handle->is_header ? 'H' : 'D',
1556 pasync_handle->pa.u.a64.address,
1557 pasync_handle->index,
1558 phys_addr.u.a64.address, ci);
1559 /* FW has stale address - attempt continuing by dropping */
1560 }
1561
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301562 /**
1563 * DEF PDU header and data buffers with errors should be simply
1564 * dropped as there are no consumers for it.
1565 */
1566 if (error) {
1567 beiscsi_hdl_put_handle(pasync_ctx, pasync_handle);
Jitendra Bhivareba6983a2017-03-24 14:11:46 +05301568 return NULL;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301569 }
Jitendra Bhivareba6983a2017-03-24 14:11:46 +05301570
1571 if (pasync_handle->in_use || !list_empty(&pasync_handle->link)) {
1572 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI,
1573 "BM_%d : cid %d async PDU handle in use - code %d ci %d addr %llx\n",
1574 cid, code, ci, phys_addr.u.a64.address);
1575 beiscsi_hdl_purge_handles(phba, pasync_ctx, cri);
1576 }
1577
1578 list_del_init(&pasync_handle->link);
1579 /**
1580 * Each CID is associated with unique CRI.
1581 * ASYNC_CRI_FROM_CID mapping and CRI_FROM_CID are totaly different.
1582 **/
1583 pasync_handle->cri = cri;
1584 pasync_handle->is_final = final;
1585 pasync_handle->buffer_len = dpl;
1586 pasync_handle->in_use = 1;
1587
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301588 return pasync_handle;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301589}
1590
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301591static unsigned int
1592beiscsi_hdl_fwd_pdu(struct beiscsi_conn *beiscsi_conn,
1593 struct hd_async_context *pasync_ctx,
1594 u16 cri)
1595{
1596 struct iscsi_session *session = beiscsi_conn->conn->session;
1597 struct hd_async_handle *pasync_handle, *plast_handle;
1598 struct beiscsi_hba *phba = beiscsi_conn->phba;
1599 void *phdr = NULL, *pdata = NULL;
1600 u32 dlen = 0, status = 0;
1601 struct list_head *plist;
1602
1603 plist = &pasync_ctx->async_entry[cri].wq.list;
1604 plast_handle = NULL;
1605 list_for_each_entry(pasync_handle, plist, link) {
1606 plast_handle = pasync_handle;
1607 /* get the header, the first entry */
1608 if (!phdr) {
1609 phdr = pasync_handle->pbuffer;
1610 continue;
1611 }
1612 /* use first buffer to collect all the data */
1613 if (!pdata) {
1614 pdata = pasync_handle->pbuffer;
1615 dlen = pasync_handle->buffer_len;
1616 continue;
1617 }
Jitendra Bhivare0ddee502017-03-24 14:11:47 +05301618 if (!pasync_handle->buffer_len ||
1619 (dlen + pasync_handle->buffer_len) >
1620 pasync_ctx->async_data.buffer_size)
1621 break;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301622 memcpy(pdata + dlen, pasync_handle->pbuffer,
1623 pasync_handle->buffer_len);
1624 dlen += pasync_handle->buffer_len;
1625 }
1626
1627 if (!plast_handle->is_final) {
1628 /* last handle should have final PDU notification from FW */
1629 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI,
Jitendra Bhivare0ddee502017-03-24 14:11:47 +05301630 "BM_%d : cid %u %p fwd async PDU opcode %x with last handle missing - HL%u:DN%u:DR%u\n",
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301631 beiscsi_conn->beiscsi_conn_cid, plast_handle,
Jitendra Bhivare0ddee502017-03-24 14:11:47 +05301632 AMAP_GET_BITS(struct amap_pdu_base, opcode, phdr),
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301633 pasync_ctx->async_entry[cri].wq.hdr_len,
1634 pasync_ctx->async_entry[cri].wq.bytes_needed,
1635 pasync_ctx->async_entry[cri].wq.bytes_received);
1636 }
1637 spin_lock_bh(&session->back_lock);
1638 status = beiscsi_complete_pdu(beiscsi_conn, phdr, pdata, dlen);
1639 spin_unlock_bh(&session->back_lock);
1640 beiscsi_hdl_purge_handles(phba, pasync_ctx, cri);
1641 return status;
1642}
1643
1644static unsigned int
1645beiscsi_hdl_gather_pdu(struct beiscsi_conn *beiscsi_conn,
1646 struct hd_async_context *pasync_ctx,
1647 struct hd_async_handle *pasync_handle)
1648{
1649 unsigned int bytes_needed = 0, status = 0;
1650 u16 cri = pasync_handle->cri;
1651 struct cri_wait_queue *wq;
1652 struct beiscsi_hba *phba;
1653 struct pdu_base *ppdu;
1654 char *err = "";
1655
1656 phba = beiscsi_conn->phba;
1657 wq = &pasync_ctx->async_entry[cri].wq;
1658 if (pasync_handle->is_header) {
1659 /* check if PDU hdr is rcv'd when old hdr not completed */
1660 if (wq->hdr_len) {
1661 err = "incomplete";
1662 goto drop_pdu;
1663 }
1664 ppdu = pasync_handle->pbuffer;
1665 bytes_needed = AMAP_GET_BITS(struct amap_pdu_base,
1666 data_len_hi, ppdu);
1667 bytes_needed <<= 16;
1668 bytes_needed |= be16_to_cpu(AMAP_GET_BITS(struct amap_pdu_base,
1669 data_len_lo, ppdu));
1670 wq->hdr_len = pasync_handle->buffer_len;
1671 wq->bytes_received = 0;
1672 wq->bytes_needed = bytes_needed;
1673 list_add_tail(&pasync_handle->link, &wq->list);
1674 if (!bytes_needed)
1675 status = beiscsi_hdl_fwd_pdu(beiscsi_conn,
1676 pasync_ctx, cri);
1677 } else {
1678 /* check if data received has header and is needed */
1679 if (!wq->hdr_len || !wq->bytes_needed) {
1680 err = "header less";
1681 goto drop_pdu;
1682 }
1683 wq->bytes_received += pasync_handle->buffer_len;
1684 /* Something got overwritten? Better catch it here. */
1685 if (wq->bytes_received > wq->bytes_needed) {
1686 err = "overflow";
1687 goto drop_pdu;
1688 }
1689 list_add_tail(&pasync_handle->link, &wq->list);
1690 if (wq->bytes_received == wq->bytes_needed)
1691 status = beiscsi_hdl_fwd_pdu(beiscsi_conn,
1692 pasync_ctx, cri);
1693 }
1694 return status;
1695
1696drop_pdu:
1697 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_ISCSI,
1698 "BM_%d : cid %u async PDU %s - def-%c:HL%u:DN%u:DR%u\n",
1699 beiscsi_conn->beiscsi_conn_cid, err,
1700 pasync_handle->is_header ? 'H' : 'D',
1701 wq->hdr_len, wq->bytes_needed,
1702 pasync_handle->buffer_len);
1703 /* discard this handle */
1704 beiscsi_hdl_put_handle(pasync_ctx, pasync_handle);
1705 /* free all the other handles in cri_wait_queue */
1706 beiscsi_hdl_purge_handles(phba, pasync_ctx, cri);
1707 /* try continuing */
1708 return status;
1709}
1710
1711static void
1712beiscsi_hdq_post_handles(struct beiscsi_hba *phba,
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301713 u8 header, u8 ulp_num, u16 nbuf)
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301714{
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301715 struct hd_async_handle *pasync_handle;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301716 struct hd_async_context *pasync_ctx;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301717 struct hwi_controller *phwi_ctrlr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301718 struct phys_addr *pasync_sge;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301719 u32 ring_id, doorbell = 0;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301720 u32 doorbell_offset;
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301721 u16 prod, pi;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301722
1723 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001724 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr, ulp_num);
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301725 if (header) {
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301726 pasync_sge = pasync_ctx->async_header.ring_base;
1727 pi = pasync_ctx->async_header.pi;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001728 ring_id = phwi_ctrlr->default_pdu_hdr[ulp_num].id;
1729 doorbell_offset = phwi_ctrlr->default_pdu_hdr[ulp_num].
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301730 doorbell_offset;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301731 } else {
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301732 pasync_sge = pasync_ctx->async_data.ring_base;
1733 pi = pasync_ctx->async_data.pi;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001734 ring_id = phwi_ctrlr->default_pdu_data[ulp_num].id;
1735 doorbell_offset = phwi_ctrlr->default_pdu_data[ulp_num].
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301736 doorbell_offset;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301737 }
1738
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301739 for (prod = 0; prod < nbuf; prod++) {
1740 if (header)
1741 pasync_handle = pasync_ctx->async_entry[pi].header;
1742 else
1743 pasync_handle = pasync_ctx->async_entry[pi].data;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301744 WARN_ON(pasync_handle->is_header != header);
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301745 WARN_ON(pasync_handle->index != pi);
1746 /* setup the ring only once */
1747 if (nbuf == pasync_ctx->num_entries) {
1748 /* note hi is lo */
1749 pasync_sge[pi].hi = pasync_handle->pa.u.a32.address_lo;
1750 pasync_sge[pi].lo = pasync_handle->pa.u.a32.address_hi;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301751 }
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301752 if (++pi == pasync_ctx->num_entries)
1753 pi = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301754 }
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301755
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301756 if (header)
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301757 pasync_ctx->async_header.pi = pi;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301758 else
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301759 pasync_ctx->async_data.pi = pi;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301760
1761 doorbell |= ring_id & DB_DEF_PDU_RING_ID_MASK;
1762 doorbell |= 1 << DB_DEF_PDU_REARM_SHIFT;
1763 doorbell |= 0 << DB_DEF_PDU_EVENT_SHIFT;
1764 doorbell |= (prod & DB_DEF_PDU_CQPROC_MASK) << DB_DEF_PDU_CQPROC_SHIFT;
1765 iowrite32(doorbell, phba->db_va + doorbell_offset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301766}
1767
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301768static void
1769beiscsi_hdq_process_compl(struct beiscsi_conn *beiscsi_conn,
1770 struct i_t_dpdu_cqe *pdpdu_cqe)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301771{
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301772 struct beiscsi_hba *phba = beiscsi_conn->phba;
1773 struct hd_async_handle *pasync_handle = NULL;
1774 struct hd_async_context *pasync_ctx;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301775 struct hwi_controller *phwi_ctrlr;
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301776 u8 ulp_num, consumed, header = 0;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301777 u16 cid_cri;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301778
1779 phwi_ctrlr = phba->phwi_ctrlr;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301780 cid_cri = BE_GET_CRI_FROM_CID(beiscsi_conn->beiscsi_conn_cid);
1781 ulp_num = BEISCSI_GET_ULP_FROM_CRI(phwi_ctrlr, cid_cri);
1782 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr, ulp_num);
1783 pasync_handle = beiscsi_hdl_get_handle(beiscsi_conn, pasync_ctx,
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05301784 pdpdu_cqe, &header);
1785 if (is_chip_be2_be3r(phba))
1786 consumed = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1787 num_cons, pdpdu_cqe);
1788 else
1789 consumed = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1790 num_cons, pdpdu_cqe);
1791 if (pasync_handle)
1792 beiscsi_hdl_gather_pdu(beiscsi_conn, pasync_ctx, pasync_handle);
1793 /* num_cons indicates number of 8 RQEs consumed */
1794 if (consumed)
1795 beiscsi_hdq_post_handles(phba, header, ulp_num, 8 * consumed);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301796}
1797
Jitendra Bhivare2e4e8f62016-02-04 15:49:11 +05301798void beiscsi_process_mcc_cq(struct beiscsi_hba *phba)
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301799{
1800 struct be_queue_info *mcc_cq;
1801 struct be_mcc_compl *mcc_compl;
1802 unsigned int num_processed = 0;
1803
1804 mcc_cq = &phba->ctrl.mcc_obj.cq;
1805 mcc_compl = queue_tail_node(mcc_cq);
1806 mcc_compl->flags = le32_to_cpu(mcc_compl->flags);
1807 while (mcc_compl->flags & CQE_FLAGS_VALID_MASK) {
Jitendra Bhivare9122e992016-08-19 15:20:11 +05301808 if (beiscsi_hba_in_error(phba))
1809 return;
1810
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301811 if (num_processed >= 32) {
1812 hwi_ring_cq_db(phba, mcc_cq->id,
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05301813 num_processed, 0);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301814 num_processed = 0;
1815 }
1816 if (mcc_compl->flags & CQE_FLAGS_ASYNC_MASK) {
Jitendra Bhivare53aefe22016-01-20 14:10:53 +05301817 beiscsi_process_async_event(phba, mcc_compl);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301818 } else if (mcc_compl->flags & CQE_FLAGS_COMPLETED_MASK) {
Jitendra Bhivare2e4e8f62016-02-04 15:49:11 +05301819 beiscsi_process_mcc_compl(&phba->ctrl, mcc_compl);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301820 }
1821
1822 mcc_compl->flags = 0;
1823 queue_tail_inc(mcc_cq);
1824 mcc_compl = queue_tail_node(mcc_cq);
1825 mcc_compl->flags = le32_to_cpu(mcc_compl->flags);
1826 num_processed++;
1827 }
1828
1829 if (num_processed > 0)
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05301830 hwi_ring_cq_db(phba, mcc_cq->id, num_processed, 1);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301831}
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301832
Jitendra Bhivarea30950162016-08-19 15:20:10 +05301833static void beiscsi_mcc_work(struct work_struct *work)
1834{
1835 struct be_eq_obj *pbe_eq;
1836 struct beiscsi_hba *phba;
1837
1838 pbe_eq = container_of(work, struct be_eq_obj, mcc_work);
1839 phba = pbe_eq->phba;
1840 beiscsi_process_mcc_cq(phba);
1841 /* rearm EQ for further interrupts */
Jitendra Bhivare9122e992016-08-19 15:20:11 +05301842 if (!beiscsi_hba_in_error(phba))
1843 hwi_ring_eq_db(phba, pbe_eq->q.id, 0, 0, 1, 1);
Jitendra Bhivarea30950162016-08-19 15:20:10 +05301844}
1845
John Soni Jose6763daa2012-10-20 04:41:45 +05301846/**
1847 * beiscsi_process_cq()- Process the Completion Queue
1848 * @pbe_eq: Event Q on which the Completion has come
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05301849 * @budget: Max number of events to processed
John Soni Jose6763daa2012-10-20 04:41:45 +05301850 *
1851 * return
1852 * Number of Completion Entries processed.
1853 **/
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05301854unsigned int beiscsi_process_cq(struct be_eq_obj *pbe_eq, int budget)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301855{
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301856 struct be_queue_info *cq;
1857 struct sol_cqe *sol;
1858 struct dmsg_cqe *dmsg;
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05301859 unsigned int total = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301860 unsigned int num_processed = 0;
John Soni Jose0a513dd2012-08-20 23:00:55 +05301861 unsigned short code = 0, cid = 0;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001862 uint16_t cri_index = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301863 struct beiscsi_conn *beiscsi_conn;
Jayamohan Kallickalc2462282010-01-05 05:05:34 +05301864 struct beiscsi_endpoint *beiscsi_ep;
1865 struct iscsi_endpoint *ep;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301866 struct beiscsi_hba *phba;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301867
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301868 cq = pbe_eq->cq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301869 sol = queue_tail_node(cq);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301870 phba = pbe_eq->phba;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301871
1872 while (sol->dw[offsetof(struct amap_sol_cqe, valid) / 32] &
1873 CQE_VALID_MASK) {
Jitendra Bhivare9122e992016-08-19 15:20:11 +05301874 if (beiscsi_hba_in_error(phba))
1875 return 0;
1876
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301877 be_dws_le_to_cpu(sol, sizeof(struct sol_cqe));
1878
Jitendra Bhivare45efc9402017-10-10 16:18:18 +05301879 code = (sol->dw[offsetof(struct amap_sol_cqe, code) / 32] &
1880 CQE_CODE_MASK);
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05301881
John Soni Jose73133262012-10-20 04:44:49 +05301882 /* Get the CID */
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001883 if (is_chip_be2_be3r(phba)) {
1884 cid = AMAP_GET_BITS(struct amap_sol_cqe, cid, sol);
1885 } else {
John Soni Jose73133262012-10-20 04:44:49 +05301886 if ((code == DRIVERMSG_NOTIFY) ||
1887 (code == UNSOL_HDR_NOTIFY) ||
1888 (code == UNSOL_DATA_NOTIFY))
1889 cid = AMAP_GET_BITS(
1890 struct amap_i_t_dpdu_cqe_v2,
1891 cid, sol);
1892 else
1893 cid = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1894 cid, sol);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001895 }
John Soni Jose73133262012-10-20 04:44:49 +05301896
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001897 cri_index = BE_GET_CRI_FROM_CID(cid);
1898 ep = phba->ep_array[cri_index];
Jayamohan Kallickalb7ab35b2014-08-08 01:00:01 -04001899
1900 if (ep == NULL) {
1901 /* connection has already been freed
1902 * just move on to next one
1903 */
1904 beiscsi_log(phba, KERN_WARNING,
1905 BEISCSI_LOG_INIT,
1906 "BM_%d : proc cqe of disconn ep: cid %d\n",
1907 cid);
1908 goto proc_next_cqe;
1909 }
1910
Jayamohan Kallickalc2462282010-01-05 05:05:34 +05301911 beiscsi_ep = ep->dd_data;
1912 beiscsi_conn = beiscsi_ep->conn;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301913
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05301914 /* replenish cq */
1915 if (num_processed == 32) {
1916 hwi_ring_cq_db(phba, cq->id, 32, 0);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301917 num_processed = 0;
1918 }
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05301919 total++;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301920
John Soni Jose0a513dd2012-08-20 23:00:55 +05301921 switch (code) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301922 case SOL_CMD_COMPLETE:
1923 hwi_complete_cmd(beiscsi_conn, phba, sol);
1924 break;
1925 case DRIVERMSG_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301926 beiscsi_log(phba, KERN_INFO,
1927 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05301928 "BM_%d : Received %s[%d] on CID : %d\n",
1929 cqe_desc[code], code, cid);
John Soni Jose99bc5d52012-08-20 23:00:18 +05301930
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301931 dmsg = (struct dmsg_cqe *)sol;
1932 hwi_complete_drvr_msgs(beiscsi_conn, phba, sol);
1933 break;
1934 case UNSOL_HDR_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301935 beiscsi_log(phba, KERN_INFO,
1936 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05301937 "BM_%d : Received %s[%d] on CID : %d\n",
1938 cqe_desc[code], code, cid);
John Soni Jose99bc5d52012-08-20 23:00:18 +05301939
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07001940 spin_lock_bh(&phba->async_pdu_lock);
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301941 beiscsi_hdq_process_compl(beiscsi_conn,
1942 (struct i_t_dpdu_cqe *)sol);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07001943 spin_unlock_bh(&phba->async_pdu_lock);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301944 break;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301945 case UNSOL_DATA_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301946 beiscsi_log(phba, KERN_INFO,
1947 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
John Soni Jose6763daa2012-10-20 04:41:45 +05301948 "BM_%d : Received %s[%d] on CID : %d\n",
1949 cqe_desc[code], code, cid);
John Soni Jose99bc5d52012-08-20 23:00:18 +05301950
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07001951 spin_lock_bh(&phba->async_pdu_lock);
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301952 beiscsi_hdq_process_compl(beiscsi_conn,
1953 (struct i_t_dpdu_cqe *)sol);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07001954 spin_unlock_bh(&phba->async_pdu_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301955 break;
1956 case CXN_INVALIDATE_INDEX_NOTIFY:
1957 case CMD_INVALIDATED_NOTIFY:
1958 case CXN_INVALIDATE_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301959 beiscsi_log(phba, KERN_ERR,
1960 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05301961 "BM_%d : Ignoring %s[%d] on CID : %d\n",
1962 cqe_desc[code], code, cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301963 break;
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05301964 case CXN_KILLED_HDR_DIGEST_ERR:
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301965 case SOL_CMD_KILLED_DATA_DIGEST_ERR:
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05301966 beiscsi_log(phba, KERN_ERR,
1967 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1968 "BM_%d : Cmd Notification %s[%d] on CID : %d\n",
1969 cqe_desc[code], code, cid);
1970 break;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301971 case CMD_KILLED_INVALID_STATSN_RCVD:
1972 case CMD_KILLED_INVALID_R2T_RCVD:
1973 case CMD_CXN_KILLED_LUN_INVALID:
1974 case CMD_CXN_KILLED_ICD_INVALID:
1975 case CMD_CXN_KILLED_ITT_INVALID:
1976 case CMD_CXN_KILLED_SEQ_OUTOFORDER:
1977 case CMD_CXN_KILLED_INVALID_DATASN_RCVD:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301978 beiscsi_log(phba, KERN_ERR,
1979 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
John Soni Jose6763daa2012-10-20 04:41:45 +05301980 "BM_%d : Cmd Notification %s[%d] on CID : %d\n",
1981 cqe_desc[code], code, cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301982 break;
1983 case UNSOL_DATA_DIGEST_ERROR_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301984 beiscsi_log(phba, KERN_ERR,
1985 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05301986 "BM_%d : Dropping %s[%d] on DPDU ring on CID : %d\n",
1987 cqe_desc[code], code, cid);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07001988 spin_lock_bh(&phba->async_pdu_lock);
Jitendra Bhivare938f3722016-08-19 15:20:21 +05301989 /* driver consumes the entry and drops the contents */
1990 beiscsi_hdq_process_compl(beiscsi_conn,
1991 (struct i_t_dpdu_cqe *)sol);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07001992 spin_unlock_bh(&phba->async_pdu_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301993 break;
1994 case CXN_KILLED_PDU_SIZE_EXCEEDS_DSL:
1995 case CXN_KILLED_BURST_LEN_MISMATCH:
1996 case CXN_KILLED_AHS_RCVD:
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301997 case CXN_KILLED_UNKNOWN_HDR:
1998 case CXN_KILLED_STALE_ITT_TTT_RCVD:
1999 case CXN_KILLED_INVALID_ITT_TTT_RCVD:
2000 case CXN_KILLED_TIMED_OUT:
2001 case CXN_KILLED_FIN_RCVD:
John Soni Jose6763daa2012-10-20 04:41:45 +05302002 case CXN_KILLED_RST_SENT:
2003 case CXN_KILLED_RST_RCVD:
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302004 case CXN_KILLED_BAD_UNSOL_PDU_RCVD:
2005 case CXN_KILLED_BAD_WRB_INDEX_ERROR:
2006 case CXN_KILLED_OVER_RUN_RESIDUAL:
2007 case CXN_KILLED_UNDER_RUN_RESIDUAL:
2008 case CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302009 beiscsi_log(phba, KERN_ERR,
2010 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05302011 "BM_%d : Event %s[%d] received on CID : %d\n",
2012 cqe_desc[code], code, cid);
John Soni Jose0a513dd2012-08-20 23:00:55 +05302013 if (beiscsi_conn)
2014 iscsi_conn_failure(beiscsi_conn->conn,
2015 ISCSI_ERR_CONN_FAILED);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302016 break;
2017 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302018 beiscsi_log(phba, KERN_ERR,
2019 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05302020 "BM_%d : Invalid CQE Event Received Code : %d"
2021 "CID 0x%x...\n",
John Soni Jose0a513dd2012-08-20 23:00:55 +05302022 code, cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302023 break;
2024 }
2025
Jayamohan Kallickalb7ab35b2014-08-08 01:00:01 -04002026proc_next_cqe:
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302027 AMAP_SET_BITS(struct amap_sol_cqe, valid, sol, 0);
2028 queue_tail_inc(cq);
2029 sol = queue_tail_node(cq);
2030 num_processed++;
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05302031 if (total == budget)
2032 break;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302033 }
2034
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05302035 hwi_ring_cq_db(phba, cq->id, num_processed, 1);
2036 return total;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302037}
2038
Christoph Hellwig511cbce2015-11-10 14:56:14 +01002039static int be_iopoll(struct irq_poll *iop, int budget)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302040{
Jitendra Bhivarea30950162016-08-19 15:20:10 +05302041 unsigned int ret, io_events;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302042 struct beiscsi_hba *phba;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302043 struct be_eq_obj *pbe_eq;
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05302044 struct be_eq_entry *eqe = NULL;
2045 struct be_queue_info *eq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302046
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302047 pbe_eq = container_of(iop, struct be_eq_obj, iopoll);
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05302048 phba = pbe_eq->phba;
Jitendra Bhivare9122e992016-08-19 15:20:11 +05302049 if (beiscsi_hba_in_error(phba)) {
2050 irq_poll_complete(iop);
2051 return 0;
2052 }
2053
2054 io_events = 0;
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05302055 eq = &pbe_eq->q;
2056 eqe = queue_tail_node(eq);
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05302057 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32] &
2058 EQE_VALID_MASK) {
2059 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
2060 queue_tail_inc(eq);
2061 eqe = queue_tail_node(eq);
Jitendra Bhivarea30950162016-08-19 15:20:10 +05302062 io_events++;
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05302063 }
Jitendra Bhivarea30950162016-08-19 15:20:10 +05302064 hwi_ring_eq_db(phba, eq->id, 1, io_events, 0, 1);
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05302065
2066 ret = beiscsi_process_cq(pbe_eq, budget);
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04002067 pbe_eq->cq_count += ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302068 if (ret < budget) {
Christoph Hellwig511cbce2015-11-10 14:56:14 +01002069 irq_poll_complete(iop);
John Soni Jose99bc5d52012-08-20 23:00:18 +05302070 beiscsi_log(phba, KERN_INFO,
2071 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
Jitendra Bhivare1094cf62016-01-20 14:10:56 +05302072 "BM_%d : rearm pbe_eq->q.id =%d ret %d\n",
2073 pbe_eq->q.id, ret);
Jitendra Bhivare9122e992016-08-19 15:20:11 +05302074 if (!beiscsi_hba_in_error(phba))
2075 hwi_ring_eq_db(phba, pbe_eq->q.id, 0, 0, 1, 1);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302076 }
2077 return ret;
2078}
2079
2080static void
John Soni Jose09a10932012-10-20 04:44:23 +05302081hwi_write_sgl_v2(struct iscsi_wrb *pwrb, struct scatterlist *sg,
2082 unsigned int num_sg, struct beiscsi_io_task *io_task)
2083{
2084 struct iscsi_sge *psgl;
2085 unsigned int sg_len, index;
2086 unsigned int sge_len = 0;
2087 unsigned long long addr;
2088 struct scatterlist *l_sg;
2089 unsigned int offset;
2090
2091 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, iscsi_bhs_addr_lo, pwrb,
2092 io_task->bhs_pa.u.a32.address_lo);
2093 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, iscsi_bhs_addr_hi, pwrb,
2094 io_task->bhs_pa.u.a32.address_hi);
2095
2096 l_sg = sg;
2097 for (index = 0; (index < num_sg) && (index < 2); index++,
2098 sg = sg_next(sg)) {
2099 if (index == 0) {
2100 sg_len = sg_dma_len(sg);
2101 addr = (u64) sg_dma_address(sg);
2102 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2103 sge0_addr_lo, pwrb,
2104 lower_32_bits(addr));
2105 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2106 sge0_addr_hi, pwrb,
2107 upper_32_bits(addr));
2108 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2109 sge0_len, pwrb,
2110 sg_len);
2111 sge_len = sg_len;
2112 } else {
2113 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_r2t_offset,
2114 pwrb, sge_len);
2115 sg_len = sg_dma_len(sg);
2116 addr = (u64) sg_dma_address(sg);
2117 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2118 sge1_addr_lo, pwrb,
2119 lower_32_bits(addr));
2120 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2121 sge1_addr_hi, pwrb,
2122 upper_32_bits(addr));
2123 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2124 sge1_len, pwrb,
2125 sg_len);
2126 }
2127 }
2128 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
2129 memset(psgl, 0, sizeof(*psgl) * BE2_SGE);
2130
2131 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len - 2);
2132
2133 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2134 io_task->bhs_pa.u.a32.address_hi);
2135 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2136 io_task->bhs_pa.u.a32.address_lo);
2137
2138 if (num_sg == 1) {
2139 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb,
2140 1);
2141 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb,
2142 0);
2143 } else if (num_sg == 2) {
2144 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb,
2145 0);
2146 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb,
2147 1);
2148 } else {
2149 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb,
2150 0);
2151 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb,
2152 0);
2153 }
2154
2155 sg = l_sg;
2156 psgl++;
2157 psgl++;
2158 offset = 0;
2159 for (index = 0; index < num_sg; index++, sg = sg_next(sg), psgl++) {
2160 sg_len = sg_dma_len(sg);
2161 addr = (u64) sg_dma_address(sg);
2162 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2163 lower_32_bits(addr));
2164 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2165 upper_32_bits(addr));
2166 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, sg_len);
2167 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, offset);
2168 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
2169 offset += sg_len;
2170 }
2171 psgl--;
2172 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
2173}
2174
2175static void
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302176hwi_write_sgl(struct iscsi_wrb *pwrb, struct scatterlist *sg,
2177 unsigned int num_sg, struct beiscsi_io_task *io_task)
2178{
2179 struct iscsi_sge *psgl;
Jayamohan Kallickal58ff4bd2010-10-06 23:46:47 +05302180 unsigned int sg_len, index;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302181 unsigned int sge_len = 0;
2182 unsigned long long addr;
2183 struct scatterlist *l_sg;
2184 unsigned int offset;
2185
2186 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb,
2187 io_task->bhs_pa.u.a32.address_lo);
2188 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb,
2189 io_task->bhs_pa.u.a32.address_hi);
2190
2191 l_sg = sg;
Jayamohan Kallickal48bd86c2010-01-07 01:50:19 +05302192 for (index = 0; (index < num_sg) && (index < 2); index++,
2193 sg = sg_next(sg)) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302194 if (index == 0) {
2195 sg_len = sg_dma_len(sg);
2196 addr = (u64) sg_dma_address(sg);
2197 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302198 ((u32)(addr & 0xFFFFFFFF)));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302199 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302200 ((u32)(addr >> 32)));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302201 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
2202 sg_len);
2203 sge_len = sg_len;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302204 } else {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302205 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_r2t_offset,
2206 pwrb, sge_len);
2207 sg_len = sg_dma_len(sg);
2208 addr = (u64) sg_dma_address(sg);
2209 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_lo, pwrb,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302210 ((u32)(addr & 0xFFFFFFFF)));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302211 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_hi, pwrb,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302212 ((u32)(addr >> 32)));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302213 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_len, pwrb,
2214 sg_len);
2215 }
2216 }
2217 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
2218 memset(psgl, 0, sizeof(*psgl) * BE2_SGE);
2219
2220 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len - 2);
2221
2222 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2223 io_task->bhs_pa.u.a32.address_hi);
2224 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2225 io_task->bhs_pa.u.a32.address_lo);
2226
Jayamohan Kallickalcaf818f2010-01-23 05:38:18 +05302227 if (num_sg == 1) {
2228 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
2229 1);
2230 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
2231 0);
2232 } else if (num_sg == 2) {
2233 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
2234 0);
2235 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
2236 1);
2237 } else {
2238 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
2239 0);
2240 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
2241 0);
2242 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302243 sg = l_sg;
2244 psgl++;
2245 psgl++;
2246 offset = 0;
Jayamohan Kallickal48bd86c2010-01-07 01:50:19 +05302247 for (index = 0; index < num_sg; index++, sg = sg_next(sg), psgl++) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302248 sg_len = sg_dma_len(sg);
2249 addr = (u64) sg_dma_address(sg);
2250 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2251 (addr & 0xFFFFFFFF));
2252 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2253 (addr >> 32));
2254 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, sg_len);
2255 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, offset);
2256 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
2257 offset += sg_len;
2258 }
2259 psgl--;
2260 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
2261}
2262
John Soni Josed629c472012-10-20 04:42:00 +05302263/**
2264 * hwi_write_buffer()- Populate the WRB with task info
2265 * @pwrb: ptr to the WRB entry
2266 * @task: iscsi task which is to be executed
2267 **/
Alexey Khoroshilove0493622016-01-16 00:45:34 +03002268static int hwi_write_buffer(struct iscsi_wrb *pwrb, struct iscsi_task *task)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302269{
2270 struct iscsi_sge *psgl;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302271 struct beiscsi_io_task *io_task = task->dd_data;
2272 struct beiscsi_conn *beiscsi_conn = io_task->conn;
2273 struct beiscsi_hba *phba = beiscsi_conn->phba;
John Soni Jose09a10932012-10-20 04:44:23 +05302274 uint8_t dsp_value = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302275
2276 io_task->bhs_len = sizeof(struct be_nonio_bhs) - 2;
2277 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb,
2278 io_task->bhs_pa.u.a32.address_lo);
2279 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb,
2280 io_task->bhs_pa.u.a32.address_hi);
2281
2282 if (task->data) {
John Soni Jose09a10932012-10-20 04:44:23 +05302283
2284 /* Check for the data_count */
2285 dsp_value = (task->data_count) ? 1 : 0;
2286
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07002287 if (is_chip_be2_be3r(phba))
2288 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp,
John Soni Jose09a10932012-10-20 04:44:23 +05302289 pwrb, dsp_value);
2290 else
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07002291 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp,
John Soni Jose09a10932012-10-20 04:44:23 +05302292 pwrb, dsp_value);
2293
2294 /* Map addr only if there is data_count */
2295 if (dsp_value) {
John Soni Josed629c472012-10-20 04:42:00 +05302296 io_task->mtask_addr = pci_map_single(phba->pcidev,
2297 task->data,
2298 task->data_count,
2299 PCI_DMA_TODEVICE);
Alexey Khoroshilove0493622016-01-16 00:45:34 +03002300 if (pci_dma_mapping_error(phba->pcidev,
2301 io_task->mtask_addr))
2302 return -ENOMEM;
John Soni Josed629c472012-10-20 04:42:00 +05302303 io_task->mtask_data_count = task->data_count;
John Soni Jose09a10932012-10-20 04:44:23 +05302304 } else
John Soni Josed629c472012-10-20 04:42:00 +05302305 io_task->mtask_addr = 0;
John Soni Jose09a10932012-10-20 04:44:23 +05302306
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302307 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
John Soni Josed629c472012-10-20 04:42:00 +05302308 lower_32_bits(io_task->mtask_addr));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302309 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
John Soni Josed629c472012-10-20 04:42:00 +05302310 upper_32_bits(io_task->mtask_addr));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302311 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
2312 task->data_count);
2313
2314 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb, 1);
2315 } else {
2316 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0);
John Soni Josed629c472012-10-20 04:42:00 +05302317 io_task->mtask_addr = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302318 }
2319
2320 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
2321
2322 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len);
2323
2324 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2325 io_task->bhs_pa.u.a32.address_hi);
2326 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2327 io_task->bhs_pa.u.a32.address_lo);
2328 if (task->data) {
2329 psgl++;
2330 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 0);
2331 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 0);
2332 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0);
2333 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, 0);
2334 AMAP_SET_BITS(struct amap_iscsi_sge, rsvd0, psgl, 0);
2335 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
2336
2337 psgl++;
2338 if (task->data) {
2339 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
John Soni Josed629c472012-10-20 04:42:00 +05302340 lower_32_bits(io_task->mtask_addr));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302341 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
John Soni Josed629c472012-10-20 04:42:00 +05302342 upper_32_bits(io_task->mtask_addr));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302343 }
2344 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0x106);
2345 }
2346 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
Alexey Khoroshilove0493622016-01-16 00:45:34 +03002347 return 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302348}
2349
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07002350/**
2351 * beiscsi_find_mem_req()- Find mem needed
2352 * @phba: ptr to HBA struct
2353 **/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302354static void beiscsi_find_mem_req(struct beiscsi_hba *phba)
2355{
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002356 uint8_t mem_descr_index, ulp_num;
Jitendra Bhivarefa1261c2016-12-13 15:56:01 +05302357 unsigned int num_async_pdu_buf_pages;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302358 unsigned int num_async_pdu_data_pages, wrb_sz_per_cxn;
2359 unsigned int num_async_pdu_buf_sgl_pages, num_async_pdu_data_sgl_pages;
2360
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302361 phba->params.hwi_ws_sz = sizeof(struct hwi_controller);
2362
2363 phba->mem_req[ISCSI_MEM_GLOBAL_HEADER] = 2 *
2364 BE_ISCSI_PDU_HEADER_SIZE;
2365 phba->mem_req[HWI_MEM_ADDN_CONTEXT] =
2366 sizeof(struct hwi_context_memory);
2367
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302368
2369 phba->mem_req[HWI_MEM_WRB] = sizeof(struct iscsi_wrb)
2370 * (phba->params.wrbs_per_cxn)
2371 * phba->params.cxns_per_ctrl;
2372 wrb_sz_per_cxn = sizeof(struct wrb_handle) *
2373 (phba->params.wrbs_per_cxn);
2374 phba->mem_req[HWI_MEM_WRBH] = roundup_pow_of_two((wrb_sz_per_cxn) *
2375 phba->params.cxns_per_ctrl);
2376
2377 phba->mem_req[HWI_MEM_SGLH] = sizeof(struct sgl_handle) *
2378 phba->params.icds_per_ctrl;
2379 phba->mem_req[HWI_MEM_SGE] = sizeof(struct iscsi_sge) *
2380 phba->params.num_sge_per_io * phba->params.icds_per_ctrl;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002381 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
2382 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302383
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002384 num_async_pdu_buf_sgl_pages =
Jitendra Bhivarefecc3822017-03-24 14:11:44 +05302385 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002386 phba, ulp_num) *
2387 sizeof(struct phys_addr));
2388
2389 num_async_pdu_buf_pages =
Jitendra Bhivarefecc3822017-03-24 14:11:44 +05302390 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002391 phba, ulp_num) *
2392 phba->params.defpdu_hdr_sz);
2393
2394 num_async_pdu_data_pages =
Jitendra Bhivarefecc3822017-03-24 14:11:44 +05302395 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002396 phba, ulp_num) *
2397 phba->params.defpdu_data_sz);
2398
2399 num_async_pdu_data_sgl_pages =
Jitendra Bhivarefecc3822017-03-24 14:11:44 +05302400 PAGES_REQUIRED(BEISCSI_ASYNC_HDQ_SIZE(
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002401 phba, ulp_num) *
2402 sizeof(struct phys_addr));
2403
Jayamohan Kallickala129d922013-09-28 15:35:46 -07002404 mem_descr_index = (HWI_MEM_TEMPLATE_HDR_ULP0 +
2405 (ulp_num * MEM_DESCR_OFFSET));
2406 phba->mem_req[mem_descr_index] =
2407 BEISCSI_GET_CID_COUNT(phba, ulp_num) *
2408 BEISCSI_TEMPLATE_HDR_PER_CXN_SIZE;
2409
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002410 mem_descr_index = (HWI_MEM_ASYNC_HEADER_BUF_ULP0 +
2411 (ulp_num * MEM_DESCR_OFFSET));
2412 phba->mem_req[mem_descr_index] =
2413 num_async_pdu_buf_pages *
2414 PAGE_SIZE;
2415
2416 mem_descr_index = (HWI_MEM_ASYNC_DATA_BUF_ULP0 +
2417 (ulp_num * MEM_DESCR_OFFSET));
2418 phba->mem_req[mem_descr_index] =
2419 num_async_pdu_data_pages *
2420 PAGE_SIZE;
2421
2422 mem_descr_index = (HWI_MEM_ASYNC_HEADER_RING_ULP0 +
2423 (ulp_num * MEM_DESCR_OFFSET));
2424 phba->mem_req[mem_descr_index] =
2425 num_async_pdu_buf_sgl_pages *
2426 PAGE_SIZE;
2427
2428 mem_descr_index = (HWI_MEM_ASYNC_DATA_RING_ULP0 +
2429 (ulp_num * MEM_DESCR_OFFSET));
2430 phba->mem_req[mem_descr_index] =
2431 num_async_pdu_data_sgl_pages *
2432 PAGE_SIZE;
2433
2434 mem_descr_index = (HWI_MEM_ASYNC_HEADER_HANDLE_ULP0 +
2435 (ulp_num * MEM_DESCR_OFFSET));
2436 phba->mem_req[mem_descr_index] =
Jitendra Bhivarefecc3822017-03-24 14:11:44 +05302437 BEISCSI_ASYNC_HDQ_SIZE(phba, ulp_num) *
2438 sizeof(struct hd_async_handle);
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002439
2440 mem_descr_index = (HWI_MEM_ASYNC_DATA_HANDLE_ULP0 +
2441 (ulp_num * MEM_DESCR_OFFSET));
2442 phba->mem_req[mem_descr_index] =
Jitendra Bhivarefecc3822017-03-24 14:11:44 +05302443 BEISCSI_ASYNC_HDQ_SIZE(phba, ulp_num) *
2444 sizeof(struct hd_async_handle);
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002445
2446 mem_descr_index = (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0 +
2447 (ulp_num * MEM_DESCR_OFFSET));
2448 phba->mem_req[mem_descr_index] =
Jitendra Bhivarefecc3822017-03-24 14:11:44 +05302449 sizeof(struct hd_async_context) +
2450 (BEISCSI_ASYNC_HDQ_SIZE(phba, ulp_num) *
2451 sizeof(struct hd_async_entry));
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002452 }
2453 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302454}
2455
2456static int beiscsi_alloc_mem(struct beiscsi_hba *phba)
2457{
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302458 dma_addr_t bus_add;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002459 struct hwi_controller *phwi_ctrlr;
2460 struct be_mem_descriptor *mem_descr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302461 struct mem_array *mem_arr, *mem_arr_orig;
2462 unsigned int i, j, alloc_size, curr_alloc_size;
2463
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002464 phba->phwi_ctrlr = kzalloc(phba->params.hwi_ws_sz, GFP_KERNEL);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302465 if (!phba->phwi_ctrlr)
2466 return -ENOMEM;
2467
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002468 /* Allocate memory for wrb_context */
2469 phwi_ctrlr = phba->phwi_ctrlr;
2470 phwi_ctrlr->wrb_context = kzalloc(sizeof(struct hwi_wrb_context) *
2471 phba->params.cxns_per_ctrl,
2472 GFP_KERNEL);
Maurizio Lombardi0c887402015-10-01 10:56:25 +02002473 if (!phwi_ctrlr->wrb_context) {
2474 kfree(phba->phwi_ctrlr);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002475 return -ENOMEM;
Maurizio Lombardi0c887402015-10-01 10:56:25 +02002476 }
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002477
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302478 phba->init_mem = kcalloc(SE_MEM_MAX, sizeof(*mem_descr),
2479 GFP_KERNEL);
2480 if (!phba->init_mem) {
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002481 kfree(phwi_ctrlr->wrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302482 kfree(phba->phwi_ctrlr);
2483 return -ENOMEM;
2484 }
2485
2486 mem_arr_orig = kmalloc(sizeof(*mem_arr_orig) * BEISCSI_MAX_FRAGS_INIT,
2487 GFP_KERNEL);
2488 if (!mem_arr_orig) {
2489 kfree(phba->init_mem);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002490 kfree(phwi_ctrlr->wrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302491 kfree(phba->phwi_ctrlr);
2492 return -ENOMEM;
2493 }
2494
2495 mem_descr = phba->init_mem;
2496 for (i = 0; i < SE_MEM_MAX; i++) {
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002497 if (!phba->mem_req[i]) {
2498 mem_descr->mem_array = NULL;
2499 mem_descr++;
2500 continue;
2501 }
2502
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302503 j = 0;
2504 mem_arr = mem_arr_orig;
2505 alloc_size = phba->mem_req[i];
2506 memset(mem_arr, 0, sizeof(struct mem_array) *
2507 BEISCSI_MAX_FRAGS_INIT);
2508 curr_alloc_size = min(be_max_phys_size * 1024, alloc_size);
2509 do {
2510 mem_arr->virtual_address = pci_alloc_consistent(
2511 phba->pcidev,
2512 curr_alloc_size,
2513 &bus_add);
2514 if (!mem_arr->virtual_address) {
2515 if (curr_alloc_size <= BE_MIN_MEM_SIZE)
2516 goto free_mem;
2517 if (curr_alloc_size -
2518 rounddown_pow_of_two(curr_alloc_size))
2519 curr_alloc_size = rounddown_pow_of_two
2520 (curr_alloc_size);
2521 else
2522 curr_alloc_size = curr_alloc_size / 2;
2523 } else {
2524 mem_arr->bus_address.u.
2525 a64.address = (__u64) bus_add;
2526 mem_arr->size = curr_alloc_size;
2527 alloc_size -= curr_alloc_size;
2528 curr_alloc_size = min(be_max_phys_size *
2529 1024, alloc_size);
2530 j++;
2531 mem_arr++;
2532 }
2533 } while (alloc_size);
2534 mem_descr->num_elements = j;
2535 mem_descr->size_in_bytes = phba->mem_req[i];
2536 mem_descr->mem_array = kmalloc(sizeof(*mem_arr) * j,
2537 GFP_KERNEL);
2538 if (!mem_descr->mem_array)
2539 goto free_mem;
2540
2541 memcpy(mem_descr->mem_array, mem_arr_orig,
2542 sizeof(struct mem_array) * j);
2543 mem_descr++;
2544 }
2545 kfree(mem_arr_orig);
2546 return 0;
2547free_mem:
2548 mem_descr->num_elements = j;
2549 while ((i) || (j)) {
2550 for (j = mem_descr->num_elements; j > 0; j--) {
2551 pci_free_consistent(phba->pcidev,
2552 mem_descr->mem_array[j - 1].size,
2553 mem_descr->mem_array[j - 1].
2554 virtual_address,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302555 (unsigned long)mem_descr->
2556 mem_array[j - 1].
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302557 bus_address.u.a64.address);
2558 }
2559 if (i) {
2560 i--;
2561 kfree(mem_descr->mem_array);
2562 mem_descr--;
2563 }
2564 }
2565 kfree(mem_arr_orig);
2566 kfree(phba->init_mem);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002567 kfree(phba->phwi_ctrlr->wrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302568 kfree(phba->phwi_ctrlr);
2569 return -ENOMEM;
2570}
2571
2572static int beiscsi_get_memory(struct beiscsi_hba *phba)
2573{
2574 beiscsi_find_mem_req(phba);
2575 return beiscsi_alloc_mem(phba);
2576}
2577
2578static void iscsi_init_global_templates(struct beiscsi_hba *phba)
2579{
2580 struct pdu_data_out *pdata_out;
2581 struct pdu_nop_out *pnop_out;
2582 struct be_mem_descriptor *mem_descr;
2583
2584 mem_descr = phba->init_mem;
2585 mem_descr += ISCSI_MEM_GLOBAL_HEADER;
2586 pdata_out =
2587 (struct pdu_data_out *)mem_descr->mem_array[0].virtual_address;
2588 memset(pdata_out, 0, BE_ISCSI_PDU_HEADER_SIZE);
2589
2590 AMAP_SET_BITS(struct amap_pdu_data_out, opcode, pdata_out,
2591 IIOC_SCSI_DATA);
2592
2593 pnop_out =
2594 (struct pdu_nop_out *)((unsigned char *)mem_descr->mem_array[0].
2595 virtual_address + BE_ISCSI_PDU_HEADER_SIZE);
2596
2597 memset(pnop_out, 0, BE_ISCSI_PDU_HEADER_SIZE);
2598 AMAP_SET_BITS(struct amap_pdu_nop_out, ttt, pnop_out, 0xFFFFFFFF);
2599 AMAP_SET_BITS(struct amap_pdu_nop_out, f_bit, pnop_out, 1);
2600 AMAP_SET_BITS(struct amap_pdu_nop_out, i_bit, pnop_out, 0);
2601}
2602
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002603static int beiscsi_init_wrb_handle(struct beiscsi_hba *phba)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302604{
2605 struct be_mem_descriptor *mem_descr_wrbh, *mem_descr_wrb;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002606 struct hwi_context_memory *phwi_ctxt;
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002607 struct wrb_handle *pwrb_handle = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302608 struct hwi_controller *phwi_ctrlr;
2609 struct hwi_wrb_context *pwrb_context;
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002610 struct iscsi_wrb *pwrb = NULL;
2611 unsigned int num_cxn_wrbh = 0;
2612 unsigned int num_cxn_wrb = 0, j, idx = 0, index;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302613
2614 mem_descr_wrbh = phba->init_mem;
2615 mem_descr_wrbh += HWI_MEM_WRBH;
2616
2617 mem_descr_wrb = phba->init_mem;
2618 mem_descr_wrb += HWI_MEM_WRB;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302619 phwi_ctrlr = phba->phwi_ctrlr;
2620
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002621 /* Allocate memory for WRBQ */
2622 phwi_ctxt = phwi_ctrlr->phwi_ctxt;
2623 phwi_ctxt->be_wrbq = kzalloc(sizeof(struct be_queue_info) *
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07002624 phba->params.cxns_per_ctrl,
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002625 GFP_KERNEL);
2626 if (!phwi_ctxt->be_wrbq) {
2627 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
2628 "BM_%d : WRBQ Mem Alloc Failed\n");
2629 return -ENOMEM;
2630 }
2631
2632 for (index = 0; index < phba->params.cxns_per_ctrl; index++) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302633 pwrb_context = &phwi_ctrlr->wrb_context[index];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302634 pwrb_context->pwrb_handle_base =
2635 kzalloc(sizeof(struct wrb_handle *) *
2636 phba->params.wrbs_per_cxn, GFP_KERNEL);
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002637 if (!pwrb_context->pwrb_handle_base) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05302638 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
2639 "BM_%d : Mem Alloc Failed. Failing to load\n");
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002640 goto init_wrb_hndl_failed;
2641 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302642 pwrb_context->pwrb_handle_basestd =
2643 kzalloc(sizeof(struct wrb_handle *) *
2644 phba->params.wrbs_per_cxn, GFP_KERNEL);
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002645 if (!pwrb_context->pwrb_handle_basestd) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05302646 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
2647 "BM_%d : Mem Alloc Failed. Failing to load\n");
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002648 goto init_wrb_hndl_failed;
2649 }
2650 if (!num_cxn_wrbh) {
2651 pwrb_handle =
2652 mem_descr_wrbh->mem_array[idx].virtual_address;
2653 num_cxn_wrbh = ((mem_descr_wrbh->mem_array[idx].size) /
2654 ((sizeof(struct wrb_handle)) *
2655 phba->params.wrbs_per_cxn));
2656 idx++;
2657 }
2658 pwrb_context->alloc_index = 0;
2659 pwrb_context->wrb_handles_available = 0;
2660 pwrb_context->free_index = 0;
2661
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302662 if (num_cxn_wrbh) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302663 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2664 pwrb_context->pwrb_handle_base[j] = pwrb_handle;
2665 pwrb_context->pwrb_handle_basestd[j] =
2666 pwrb_handle;
2667 pwrb_context->wrb_handles_available++;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302668 pwrb_handle->wrb_index = j;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302669 pwrb_handle++;
2670 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302671 num_cxn_wrbh--;
2672 }
Jitendra Bhivaref64d92e2016-02-04 15:49:20 +05302673 spin_lock_init(&pwrb_context->wrb_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302674 }
2675 idx = 0;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002676 for (index = 0; index < phba->params.cxns_per_ctrl; index++) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302677 pwrb_context = &phwi_ctrlr->wrb_context[index];
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002678 if (!num_cxn_wrb) {
2679 pwrb = mem_descr_wrb->mem_array[idx].virtual_address;
2680 num_cxn_wrb = (mem_descr_wrb->mem_array[idx].size) /
2681 ((sizeof(struct iscsi_wrb) *
2682 phba->params.wrbs_per_cxn));
2683 idx++;
2684 }
2685
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302686 if (num_cxn_wrb) {
2687 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2688 pwrb_handle = pwrb_context->pwrb_handle_base[j];
2689 pwrb_handle->pwrb = pwrb;
2690 pwrb++;
2691 }
2692 num_cxn_wrb--;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302693 }
2694 }
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002695 return 0;
2696init_wrb_hndl_failed:
2697 for (j = index; j > 0; j--) {
2698 pwrb_context = &phwi_ctrlr->wrb_context[j];
2699 kfree(pwrb_context->pwrb_handle_base);
2700 kfree(pwrb_context->pwrb_handle_basestd);
2701 }
2702 return -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302703}
2704
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002705static int hwi_init_async_pdu_ctx(struct beiscsi_hba *phba)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302706{
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002707 uint8_t ulp_num;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302708 struct hwi_controller *phwi_ctrlr;
2709 struct hba_parameters *p = &phba->params;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302710 struct hd_async_context *pasync_ctx;
2711 struct hd_async_handle *pasync_header_h, *pasync_data_h;
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05002712 unsigned int index, idx, num_per_mem, num_async_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302713 struct be_mem_descriptor *mem_descr;
2714
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002715 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
2716 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
Jitendra Bhivared7401052016-12-13 15:55:59 +05302717 /* get async_ctx for each ULP */
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002718 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2719 mem_descr += (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0 +
2720 (ulp_num * MEM_DESCR_OFFSET));
2721
2722 phwi_ctrlr = phba->phwi_ctrlr;
2723 phwi_ctrlr->phwi_ctxt->pasync_ctx[ulp_num] =
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302724 (struct hd_async_context *)
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002725 mem_descr->mem_array[0].virtual_address;
2726
2727 pasync_ctx = phwi_ctrlr->phwi_ctxt->pasync_ctx[ulp_num];
2728 memset(pasync_ctx, 0, sizeof(*pasync_ctx));
2729
2730 pasync_ctx->async_entry =
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302731 (struct hd_async_entry *)
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002732 ((long unsigned int)pasync_ctx +
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302733 sizeof(struct hd_async_context));
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002734
Jitendra Bhivarefecc3822017-03-24 14:11:44 +05302735 pasync_ctx->num_entries = BEISCSI_ASYNC_HDQ_SIZE(phba,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002736 ulp_num);
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302737 /* setup header buffers */
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002738 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2739 mem_descr += HWI_MEM_ASYNC_HEADER_BUF_ULP0 +
2740 (ulp_num * MEM_DESCR_OFFSET);
2741 if (mem_descr->mem_array[0].virtual_address) {
2742 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2743 "BM_%d : hwi_init_async_pdu_ctx"
2744 " HWI_MEM_ASYNC_HEADER_BUF_ULP%d va=%p\n",
2745 ulp_num,
2746 mem_descr->mem_array[0].
2747 virtual_address);
2748 } else
2749 beiscsi_log(phba, KERN_WARNING,
2750 BEISCSI_LOG_INIT,
2751 "BM_%d : No Virtual address for ULP : %d\n",
2752 ulp_num);
2753
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05302754 pasync_ctx->async_header.pi = 0;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302755 pasync_ctx->async_header.buffer_size = p->defpdu_hdr_sz;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002756 pasync_ctx->async_header.va_base =
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302757 mem_descr->mem_array[0].virtual_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302758
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002759 pasync_ctx->async_header.pa_base.u.a64.address =
2760 mem_descr->mem_array[0].
2761 bus_address.u.a64.address;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002762
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302763 /* setup header buffer sgls */
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002764 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2765 mem_descr += HWI_MEM_ASYNC_HEADER_RING_ULP0 +
2766 (ulp_num * MEM_DESCR_OFFSET);
2767 if (mem_descr->mem_array[0].virtual_address) {
2768 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2769 "BM_%d : hwi_init_async_pdu_ctx"
2770 " HWI_MEM_ASYNC_HEADER_RING_ULP%d va=%p\n",
2771 ulp_num,
2772 mem_descr->mem_array[0].
2773 virtual_address);
2774 } else
2775 beiscsi_log(phba, KERN_WARNING,
2776 BEISCSI_LOG_INIT,
2777 "BM_%d : No Virtual address for ULP : %d\n",
2778 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302779
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002780 pasync_ctx->async_header.ring_base =
2781 mem_descr->mem_array[0].virtual_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302782
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302783 /* setup header buffer handles */
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002784 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2785 mem_descr += HWI_MEM_ASYNC_HEADER_HANDLE_ULP0 +
2786 (ulp_num * MEM_DESCR_OFFSET);
2787 if (mem_descr->mem_array[0].virtual_address) {
2788 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2789 "BM_%d : hwi_init_async_pdu_ctx"
2790 " HWI_MEM_ASYNC_HEADER_HANDLE_ULP%d va=%p\n",
2791 ulp_num,
2792 mem_descr->mem_array[0].
2793 virtual_address);
2794 } else
2795 beiscsi_log(phba, KERN_WARNING,
2796 BEISCSI_LOG_INIT,
2797 "BM_%d : No Virtual address for ULP : %d\n",
2798 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302799
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002800 pasync_ctx->async_header.handle_base =
2801 mem_descr->mem_array[0].virtual_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302802
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302803 /* setup data buffer sgls */
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002804 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2805 mem_descr += HWI_MEM_ASYNC_DATA_RING_ULP0 +
2806 (ulp_num * MEM_DESCR_OFFSET);
2807 if (mem_descr->mem_array[0].virtual_address) {
2808 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2809 "BM_%d : hwi_init_async_pdu_ctx"
2810 " HWI_MEM_ASYNC_DATA_RING_ULP%d va=%p\n",
2811 ulp_num,
2812 mem_descr->mem_array[0].
2813 virtual_address);
2814 } else
2815 beiscsi_log(phba, KERN_WARNING,
2816 BEISCSI_LOG_INIT,
2817 "BM_%d : No Virtual address for ULP : %d\n",
2818 ulp_num);
John Soni Jose99bc5d52012-08-20 23:00:18 +05302819
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002820 pasync_ctx->async_data.ring_base =
2821 mem_descr->mem_array[0].virtual_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302822
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302823 /* setup data buffer handles */
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002824 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2825 mem_descr += HWI_MEM_ASYNC_DATA_HANDLE_ULP0 +
2826 (ulp_num * MEM_DESCR_OFFSET);
2827 if (!mem_descr->mem_array[0].virtual_address)
2828 beiscsi_log(phba, KERN_WARNING,
2829 BEISCSI_LOG_INIT,
2830 "BM_%d : No Virtual address for ULP : %d\n",
2831 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302832
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002833 pasync_ctx->async_data.handle_base =
2834 mem_descr->mem_array[0].virtual_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302835
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002836 pasync_header_h =
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302837 (struct hd_async_handle *)
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002838 pasync_ctx->async_header.handle_base;
2839 pasync_data_h =
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302840 (struct hd_async_handle *)
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002841 pasync_ctx->async_data.handle_base;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302842
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302843 /* setup data buffers */
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002844 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2845 mem_descr += HWI_MEM_ASYNC_DATA_BUF_ULP0 +
2846 (ulp_num * MEM_DESCR_OFFSET);
2847 if (mem_descr->mem_array[0].virtual_address) {
2848 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2849 "BM_%d : hwi_init_async_pdu_ctx"
2850 " HWI_MEM_ASYNC_DATA_BUF_ULP%d va=%p\n",
2851 ulp_num,
2852 mem_descr->mem_array[0].
2853 virtual_address);
2854 } else
2855 beiscsi_log(phba, KERN_WARNING,
2856 BEISCSI_LOG_INIT,
2857 "BM_%d : No Virtual address for ULP : %d\n",
2858 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302859
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002860 idx = 0;
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05302861 pasync_ctx->async_data.pi = 0;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302862 pasync_ctx->async_data.buffer_size = p->defpdu_data_sz;
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05002863 pasync_ctx->async_data.va_base =
2864 mem_descr->mem_array[idx].virtual_address;
2865 pasync_ctx->async_data.pa_base.u.a64.address =
2866 mem_descr->mem_array[idx].
2867 bus_address.u.a64.address;
2868
2869 num_async_data = ((mem_descr->mem_array[idx].size) /
2870 phba->params.defpdu_data_sz);
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002871 num_per_mem = 0;
2872
Jitendra Bhivarefecc3822017-03-24 14:11:44 +05302873 for (index = 0; index < BEISCSI_ASYNC_HDQ_SIZE
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002874 (phba, ulp_num); index++) {
2875 pasync_header_h->cri = -1;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302876 pasync_header_h->is_header = 1;
2877 pasync_header_h->index = index;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002878 INIT_LIST_HEAD(&pasync_header_h->link);
2879 pasync_header_h->pbuffer =
2880 (void *)((unsigned long)
2881 (pasync_ctx->
2882 async_header.va_base) +
2883 (p->defpdu_hdr_sz * index));
2884
2885 pasync_header_h->pa.u.a64.address =
2886 pasync_ctx->async_header.pa_base.u.a64.
2887 address + (p->defpdu_hdr_sz * index);
2888
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05302889 pasync_ctx->async_entry[index].header =
2890 pasync_header_h;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002891 pasync_header_h++;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302892 INIT_LIST_HEAD(&pasync_ctx->async_entry[index].
2893 wq.list);
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002894
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002895 pasync_data_h->cri = -1;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05302896 pasync_data_h->is_header = 0;
2897 pasync_data_h->index = index;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002898 INIT_LIST_HEAD(&pasync_data_h->link);
2899
2900 if (!num_async_data) {
2901 num_per_mem = 0;
2902 idx++;
2903 pasync_ctx->async_data.va_base =
2904 mem_descr->mem_array[idx].
2905 virtual_address;
2906 pasync_ctx->async_data.pa_base.u.
2907 a64.address =
2908 mem_descr->mem_array[idx].
2909 bus_address.u.a64.address;
2910 num_async_data =
2911 ((mem_descr->mem_array[idx].
2912 size) /
2913 phba->params.defpdu_data_sz);
2914 }
2915 pasync_data_h->pbuffer =
2916 (void *)((unsigned long)
2917 (pasync_ctx->async_data.va_base) +
2918 (p->defpdu_data_sz * num_per_mem));
2919
2920 pasync_data_h->pa.u.a64.address =
2921 pasync_ctx->async_data.pa_base.u.a64.
2922 address + (p->defpdu_data_sz *
2923 num_per_mem);
2924 num_per_mem++;
2925 num_async_data--;
2926
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05302927 pasync_ctx->async_entry[index].data =
2928 pasync_data_h;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002929 pasync_data_h++;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002930 }
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05002931 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302932 }
2933
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002934 return 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302935}
2936
2937static int
2938be_sgl_create_contiguous(void *virtual_address,
2939 u64 physical_address, u32 length,
2940 struct be_dma_mem *sgl)
2941{
2942 WARN_ON(!virtual_address);
2943 WARN_ON(!physical_address);
Tim Gardnerdd29dae2015-10-30 12:22:58 -06002944 WARN_ON(!length);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302945 WARN_ON(!sgl);
2946
2947 sgl->va = virtual_address;
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302948 sgl->dma = (unsigned long)physical_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302949 sgl->size = length;
2950
2951 return 0;
2952}
2953
2954static void be_sgl_destroy_contiguous(struct be_dma_mem *sgl)
2955{
2956 memset(sgl, 0, sizeof(*sgl));
2957}
2958
2959static void
2960hwi_build_be_sgl_arr(struct beiscsi_hba *phba,
2961 struct mem_array *pmem, struct be_dma_mem *sgl)
2962{
2963 if (sgl->va)
2964 be_sgl_destroy_contiguous(sgl);
2965
2966 be_sgl_create_contiguous(pmem->virtual_address,
2967 pmem->bus_address.u.a64.address,
2968 pmem->size, sgl);
2969}
2970
2971static void
2972hwi_build_be_sgl_by_offset(struct beiscsi_hba *phba,
2973 struct mem_array *pmem, struct be_dma_mem *sgl)
2974{
2975 if (sgl->va)
2976 be_sgl_destroy_contiguous(sgl);
2977
2978 be_sgl_create_contiguous((unsigned char *)pmem->virtual_address,
2979 pmem->bus_address.u.a64.address,
2980 pmem->size, sgl);
2981}
2982
2983static int be_fill_queue(struct be_queue_info *q,
2984 u16 len, u16 entry_size, void *vaddress)
2985{
2986 struct be_dma_mem *mem = &q->dma_mem;
2987
2988 memset(q, 0, sizeof(*q));
2989 q->len = len;
2990 q->entry_size = entry_size;
2991 mem->size = len * entry_size;
2992 mem->va = vaddress;
2993 if (!mem->va)
2994 return -ENOMEM;
2995 memset(mem->va, 0, mem->size);
2996 return 0;
2997}
2998
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302999static int beiscsi_create_eqs(struct beiscsi_hba *phba,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303000 struct hwi_context_memory *phwi_context)
3001{
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05303002 int ret = -ENOMEM, eq_for_mcc;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303003 unsigned int i, num_eq_pages;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303004 struct be_queue_info *eq;
3005 struct be_dma_mem *mem;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303006 void *eq_vaddress;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303007 dma_addr_t paddr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303008
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303009 num_eq_pages = PAGES_REQUIRED(phba->params.num_eq_entries * \
3010 sizeof(struct be_eq_entry));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303011
Christoph Hellwig83148862017-01-13 17:29:48 +01003012 if (phba->pcidev->msix_enabled)
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303013 eq_for_mcc = 1;
3014 else
3015 eq_for_mcc = 0;
3016 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
3017 eq = &phwi_context->be_eq[i].q;
3018 mem = &eq->dma_mem;
3019 phwi_context->be_eq[i].phba = phba;
3020 eq_vaddress = pci_alloc_consistent(phba->pcidev,
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05303021 num_eq_pages * PAGE_SIZE,
3022 &paddr);
Pan Bian84a261f2016-12-04 13:23:04 +08003023 if (!eq_vaddress) {
3024 ret = -ENOMEM;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303025 goto create_eq_error;
Pan Bian84a261f2016-12-04 13:23:04 +08003026 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303027
3028 mem->va = eq_vaddress;
3029 ret = be_fill_queue(eq, phba->params.num_eq_entries,
3030 sizeof(struct be_eq_entry), eq_vaddress);
3031 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303032 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3033 "BM_%d : be_fill_queue Failed for EQ\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303034 goto create_eq_error;
3035 }
3036
3037 mem->dma = paddr;
3038 ret = beiscsi_cmd_eq_create(&phba->ctrl, eq,
Jitendra Bhivare45efc9402017-10-10 16:18:18 +05303039 BEISCSI_EQ_DELAY_DEF);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303040 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303041 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3042 "BM_%d : beiscsi_cmd_eq_create"
3043 "Failed for EQ\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303044 goto create_eq_error;
3045 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303046
3047 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3048 "BM_%d : eqid = %d\n",
3049 phwi_context->be_eq[i].q.id);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303050 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303051 return 0;
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05303052
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303053create_eq_error:
John Soni Jose107dfcb2012-10-20 04:42:13 +05303054 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303055 eq = &phwi_context->be_eq[i].q;
3056 mem = &eq->dma_mem;
3057 if (mem->va)
3058 pci_free_consistent(phba->pcidev, num_eq_pages
3059 * PAGE_SIZE,
3060 mem->va, mem->dma);
3061 }
3062 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303063}
3064
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303065static int beiscsi_create_cqs(struct beiscsi_hba *phba,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303066 struct hwi_context_memory *phwi_context)
3067{
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303068 unsigned int i, num_cq_pages;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303069 struct be_queue_info *cq, *eq;
3070 struct be_dma_mem *mem;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303071 struct be_eq_obj *pbe_eq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303072 void *cq_vaddress;
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05303073 int ret = -ENOMEM;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303074 dma_addr_t paddr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303075
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303076 num_cq_pages = PAGES_REQUIRED(phba->params.num_cq_entries * \
3077 sizeof(struct sol_cqe));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303078
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303079 for (i = 0; i < phba->num_cpus; i++) {
3080 cq = &phwi_context->be_cq[i];
3081 eq = &phwi_context->be_eq[i].q;
3082 pbe_eq = &phwi_context->be_eq[i];
3083 pbe_eq->cq = cq;
3084 pbe_eq->phba = phba;
3085 mem = &cq->dma_mem;
3086 cq_vaddress = pci_alloc_consistent(phba->pcidev,
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05303087 num_cq_pages * PAGE_SIZE,
3088 &paddr);
Pan Bian29b33252016-12-04 13:21:42 +08003089 if (!cq_vaddress) {
3090 ret = -ENOMEM;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303091 goto create_cq_error;
Pan Bian29b33252016-12-04 13:21:42 +08003092 }
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05303093
Jayamohan Kallickal7da50872010-01-05 05:04:12 +05303094 ret = be_fill_queue(cq, phba->params.num_cq_entries,
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303095 sizeof(struct sol_cqe), cq_vaddress);
3096 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303097 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3098 "BM_%d : be_fill_queue Failed "
3099 "for ISCSI CQ\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303100 goto create_cq_error;
3101 }
3102
3103 mem->dma = paddr;
3104 ret = beiscsi_cmd_cq_create(&phba->ctrl, cq, eq, false,
3105 false, 0);
3106 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303107 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3108 "BM_%d : beiscsi_cmd_eq_create"
3109 "Failed for ISCSI CQ\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303110 goto create_cq_error;
3111 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303112 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3113 "BM_%d : iscsi cq_id is %d for eq_id %d\n"
3114 "iSCSI CQ CREATED\n", cq->id, eq->id);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303115 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303116 return 0;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303117
3118create_cq_error:
3119 for (i = 0; i < phba->num_cpus; i++) {
3120 cq = &phwi_context->be_cq[i];
3121 mem = &cq->dma_mem;
3122 if (mem->va)
3123 pci_free_consistent(phba->pcidev, num_cq_pages
3124 * PAGE_SIZE,
3125 mem->va, mem->dma);
3126 }
3127 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303128}
3129
3130static int
3131beiscsi_create_def_hdr(struct beiscsi_hba *phba,
3132 struct hwi_context_memory *phwi_context,
3133 struct hwi_controller *phwi_ctrlr,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003134 unsigned int def_pdu_ring_sz, uint8_t ulp_num)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303135{
3136 unsigned int idx;
3137 int ret;
3138 struct be_queue_info *dq, *cq;
3139 struct be_dma_mem *mem;
3140 struct be_mem_descriptor *mem_descr;
3141 void *dq_vaddress;
3142
3143 idx = 0;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003144 dq = &phwi_context->be_def_hdrq[ulp_num];
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303145 cq = &phwi_context->be_cq[0];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303146 mem = &dq->dma_mem;
3147 mem_descr = phba->init_mem;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003148 mem_descr += HWI_MEM_ASYNC_HEADER_RING_ULP0 +
3149 (ulp_num * MEM_DESCR_OFFSET);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303150 dq_vaddress = mem_descr->mem_array[idx].virtual_address;
3151 ret = be_fill_queue(dq, mem_descr->mem_array[0].size /
3152 sizeof(struct phys_addr),
3153 sizeof(struct phys_addr), dq_vaddress);
3154 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303155 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003156 "BM_%d : be_fill_queue Failed for DEF PDU HDR on ULP : %d\n",
3157 ulp_num);
3158
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303159 return ret;
3160 }
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05303161 mem->dma = (unsigned long)mem_descr->mem_array[idx].
3162 bus_address.u.a64.address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303163 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dq,
3164 def_pdu_ring_sz,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003165 phba->params.defpdu_hdr_sz,
3166 BEISCSI_DEFQ_HDR, ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303167 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303168 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003169 "BM_%d : be_cmd_create_default_pdu_queue Failed DEFHDR on ULP : %d\n",
3170 ulp_num);
3171
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303172 return ret;
3173 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303174
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003175 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3176 "BM_%d : iscsi hdr def pdu id for ULP : %d is %d\n",
3177 ulp_num,
3178 phwi_context->be_def_hdrq[ulp_num].id);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303179 return 0;
3180}
3181
3182static int
3183beiscsi_create_def_data(struct beiscsi_hba *phba,
3184 struct hwi_context_memory *phwi_context,
3185 struct hwi_controller *phwi_ctrlr,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003186 unsigned int def_pdu_ring_sz, uint8_t ulp_num)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303187{
3188 unsigned int idx;
3189 int ret;
3190 struct be_queue_info *dataq, *cq;
3191 struct be_dma_mem *mem;
3192 struct be_mem_descriptor *mem_descr;
3193 void *dq_vaddress;
3194
3195 idx = 0;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003196 dataq = &phwi_context->be_def_dataq[ulp_num];
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303197 cq = &phwi_context->be_cq[0];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303198 mem = &dataq->dma_mem;
3199 mem_descr = phba->init_mem;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003200 mem_descr += HWI_MEM_ASYNC_DATA_RING_ULP0 +
3201 (ulp_num * MEM_DESCR_OFFSET);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303202 dq_vaddress = mem_descr->mem_array[idx].virtual_address;
3203 ret = be_fill_queue(dataq, mem_descr->mem_array[0].size /
3204 sizeof(struct phys_addr),
3205 sizeof(struct phys_addr), dq_vaddress);
3206 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303207 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003208 "BM_%d : be_fill_queue Failed for DEF PDU "
3209 "DATA on ULP : %d\n",
3210 ulp_num);
3211
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303212 return ret;
3213 }
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05303214 mem->dma = (unsigned long)mem_descr->mem_array[idx].
3215 bus_address.u.a64.address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303216 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dataq,
3217 def_pdu_ring_sz,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003218 phba->params.defpdu_data_sz,
3219 BEISCSI_DEFQ_DATA, ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303220 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303221 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3222 "BM_%d be_cmd_create_default_pdu_queue"
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003223 " Failed for DEF PDU DATA on ULP : %d\n",
3224 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303225 return ret;
3226 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303227
John Soni Jose99bc5d52012-08-20 23:00:18 +05303228 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003229 "BM_%d : iscsi def data id on ULP : %d is %d\n",
3230 ulp_num,
3231 phwi_context->be_def_dataq[ulp_num].id);
3232
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003233 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3234 "BM_%d : DEFAULT PDU DATA RING CREATED"
3235 "on ULP : %d\n", ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303236 return 0;
3237}
3238
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003239
3240static int
3241beiscsi_post_template_hdr(struct beiscsi_hba *phba)
3242{
3243 struct be_mem_descriptor *mem_descr;
3244 struct mem_array *pm_arr;
3245 struct be_dma_mem sgl;
Jayamohan Kallickala129d922013-09-28 15:35:46 -07003246 int status, ulp_num;
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003247
Jayamohan Kallickala129d922013-09-28 15:35:46 -07003248 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3249 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3250 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
3251 mem_descr += HWI_MEM_TEMPLATE_HDR_ULP0 +
3252 (ulp_num * MEM_DESCR_OFFSET);
3253 pm_arr = mem_descr->mem_array;
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003254
Jayamohan Kallickala129d922013-09-28 15:35:46 -07003255 hwi_build_be_sgl_arr(phba, pm_arr, &sgl);
3256 status = be_cmd_iscsi_post_template_hdr(
3257 &phba->ctrl, &sgl);
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003258
Jayamohan Kallickala129d922013-09-28 15:35:46 -07003259 if (status != 0) {
3260 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3261 "BM_%d : Post Template HDR Failed for"
3262 "ULP_%d\n", ulp_num);
3263 return status;
3264 }
3265
3266 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3267 "BM_%d : Template HDR Pages Posted for"
3268 "ULP_%d\n", ulp_num);
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003269 }
3270 }
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003271 return 0;
3272}
3273
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303274static int
3275beiscsi_post_pages(struct beiscsi_hba *phba)
3276{
3277 struct be_mem_descriptor *mem_descr;
3278 struct mem_array *pm_arr;
3279 unsigned int page_offset, i;
3280 struct be_dma_mem sgl;
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07003281 int status, ulp_num = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303282
3283 mem_descr = phba->init_mem;
3284 mem_descr += HWI_MEM_SGE;
3285 pm_arr = mem_descr->mem_array;
3286
Jayamohan Kallickal90622db2013-09-28 15:35:47 -07003287 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3288 if (test_bit(ulp_num, &phba->fw_config.ulp_supported))
3289 break;
3290
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303291 page_offset = (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io *
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07003292 phba->fw_config.iscsi_icd_start[ulp_num]) / PAGE_SIZE;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303293 for (i = 0; i < mem_descr->num_elements; i++) {
3294 hwi_build_be_sgl_arr(phba, pm_arr, &sgl);
3295 status = be_cmd_iscsi_post_sgl_pages(&phba->ctrl, &sgl,
3296 page_offset,
3297 (pm_arr->size / PAGE_SIZE));
3298 page_offset += pm_arr->size / PAGE_SIZE;
3299 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303300 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3301 "BM_%d : post sgl failed.\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303302 return status;
3303 }
3304 pm_arr++;
3305 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303306 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3307 "BM_%d : POSTED PAGES\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303308 return 0;
3309}
3310
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303311static void be_queue_free(struct beiscsi_hba *phba, struct be_queue_info *q)
3312{
3313 struct be_dma_mem *mem = &q->dma_mem;
Jayamohan Kallickalc8b25592012-04-03 23:41:42 -05003314 if (mem->va) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303315 pci_free_consistent(phba->pcidev, mem->size,
3316 mem->va, mem->dma);
Jayamohan Kallickalc8b25592012-04-03 23:41:42 -05003317 mem->va = NULL;
3318 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303319}
3320
3321static int be_queue_alloc(struct beiscsi_hba *phba, struct be_queue_info *q,
3322 u16 len, u16 entry_size)
3323{
3324 struct be_dma_mem *mem = &q->dma_mem;
3325
3326 memset(q, 0, sizeof(*q));
3327 q->len = len;
3328 q->entry_size = entry_size;
3329 mem->size = len * entry_size;
Joe Perches7c845eb2014-08-08 14:24:46 -07003330 mem->va = pci_zalloc_consistent(phba->pcidev, mem->size, &mem->dma);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303331 if (!mem->va)
Jayamohan Kallickald3ad2bb2010-07-22 04:16:38 +05303332 return -ENOMEM;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303333 return 0;
3334}
3335
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303336static int
3337beiscsi_create_wrb_rings(struct beiscsi_hba *phba,
3338 struct hwi_context_memory *phwi_context,
3339 struct hwi_controller *phwi_ctrlr)
3340{
Jitendra Bhivarefa1261c2016-12-13 15:56:01 +05303341 unsigned int num_wrb_rings;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303342 u64 pa_addr_lo;
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003343 unsigned int idx, num, i, ulp_num;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303344 struct mem_array *pwrb_arr;
3345 void *wrb_vaddr;
3346 struct be_dma_mem sgl;
3347 struct be_mem_descriptor *mem_descr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003348 struct hwi_wrb_context *pwrb_context;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303349 int status;
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003350 uint8_t ulp_count = 0, ulp_base_num = 0;
3351 uint16_t cid_count_ulp[BEISCSI_ULP_COUNT] = { 0 };
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303352
3353 idx = 0;
3354 mem_descr = phba->init_mem;
3355 mem_descr += HWI_MEM_WRB;
3356 pwrb_arr = kmalloc(sizeof(*pwrb_arr) * phba->params.cxns_per_ctrl,
3357 GFP_KERNEL);
3358 if (!pwrb_arr) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303359 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3360 "BM_%d : Memory alloc failed in create wrb ring.\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303361 return -ENOMEM;
3362 }
3363 wrb_vaddr = mem_descr->mem_array[idx].virtual_address;
3364 pa_addr_lo = mem_descr->mem_array[idx].bus_address.u.a64.address;
3365 num_wrb_rings = mem_descr->mem_array[idx].size /
3366 (phba->params.wrbs_per_cxn * sizeof(struct iscsi_wrb));
3367
3368 for (num = 0; num < phba->params.cxns_per_ctrl; num++) {
3369 if (num_wrb_rings) {
3370 pwrb_arr[num].virtual_address = wrb_vaddr;
3371 pwrb_arr[num].bus_address.u.a64.address = pa_addr_lo;
3372 pwrb_arr[num].size = phba->params.wrbs_per_cxn *
3373 sizeof(struct iscsi_wrb);
3374 wrb_vaddr += pwrb_arr[num].size;
3375 pa_addr_lo += pwrb_arr[num].size;
3376 num_wrb_rings--;
3377 } else {
3378 idx++;
3379 wrb_vaddr = mem_descr->mem_array[idx].virtual_address;
3380 pa_addr_lo = mem_descr->mem_array[idx].\
3381 bus_address.u.a64.address;
3382 num_wrb_rings = mem_descr->mem_array[idx].size /
3383 (phba->params.wrbs_per_cxn *
3384 sizeof(struct iscsi_wrb));
3385 pwrb_arr[num].virtual_address = wrb_vaddr;
3386 pwrb_arr[num].bus_address.u.a64.address\
3387 = pa_addr_lo;
3388 pwrb_arr[num].size = phba->params.wrbs_per_cxn *
3389 sizeof(struct iscsi_wrb);
3390 wrb_vaddr += pwrb_arr[num].size;
3391 pa_addr_lo += pwrb_arr[num].size;
3392 num_wrb_rings--;
3393 }
3394 }
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003395
3396 /* Get the ULP Count */
3397 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3398 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3399 ulp_count++;
3400 ulp_base_num = ulp_num;
3401 cid_count_ulp[ulp_num] =
3402 BEISCSI_GET_CID_COUNT(phba, ulp_num);
3403 }
3404
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303405 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003406 if (ulp_count > 1) {
3407 ulp_base_num = (ulp_base_num + 1) % BEISCSI_ULP_COUNT;
3408
3409 if (!cid_count_ulp[ulp_base_num])
3410 ulp_base_num = (ulp_base_num + 1) %
3411 BEISCSI_ULP_COUNT;
3412
3413 cid_count_ulp[ulp_base_num]--;
3414 }
3415
3416
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303417 hwi_build_be_sgl_by_offset(phba, &pwrb_arr[i], &sgl);
3418 status = be_cmd_wrbq_create(&phba->ctrl, &sgl,
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003419 &phwi_context->be_wrbq[i],
3420 &phwi_ctrlr->wrb_context[i],
3421 ulp_base_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303422 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303423 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3424 "BM_%d : wrbq create failed.");
Dan Carpenter1462b8f2010-06-10 09:52:21 +02003425 kfree(pwrb_arr);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303426 return status;
3427 }
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003428 pwrb_context = &phwi_ctrlr->wrb_context[i];
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003429 BE_SET_CID_TO_CRI(i, pwrb_context->cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303430 }
3431 kfree(pwrb_arr);
3432 return 0;
3433}
3434
3435static void free_wrb_handles(struct beiscsi_hba *phba)
3436{
3437 unsigned int index;
3438 struct hwi_controller *phwi_ctrlr;
3439 struct hwi_wrb_context *pwrb_context;
3440
3441 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003442 for (index = 0; index < phba->params.cxns_per_ctrl; index++) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303443 pwrb_context = &phwi_ctrlr->wrb_context[index];
3444 kfree(pwrb_context->pwrb_handle_base);
3445 kfree(pwrb_context->pwrb_handle_basestd);
3446 }
3447}
3448
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303449static void be_mcc_queues_destroy(struct beiscsi_hba *phba)
3450{
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303451 struct be_ctrl_info *ctrl = &phba->ctrl;
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05303452 struct be_dma_mem *ptag_mem;
3453 struct be_queue_info *q;
3454 int i, tag;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303455
3456 q = &phba->ctrl.mcc_obj.q;
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05303457 for (i = 0; i < MAX_MCC_CMD; i++) {
3458 tag = i + 1;
3459 if (!test_bit(MCC_TAG_STATE_RUNNING,
3460 &ctrl->ptag_state[tag].tag_state))
3461 continue;
3462
3463 if (test_bit(MCC_TAG_STATE_TIMEOUT,
3464 &ctrl->ptag_state[tag].tag_state)) {
3465 ptag_mem = &ctrl->ptag_state[tag].tag_mem_state;
3466 if (ptag_mem->size) {
3467 pci_free_consistent(ctrl->pdev,
3468 ptag_mem->size,
3469 ptag_mem->va,
3470 ptag_mem->dma);
3471 ptag_mem->size = 0;
3472 }
3473 continue;
3474 }
3475 /**
3476 * If MCC is still active and waiting then wake up the process.
3477 * We are here only because port is going offline. The process
3478 * sees that (BEISCSI_HBA_ONLINE is cleared) and EIO error is
3479 * returned for the operation and allocated memory cleaned up.
3480 */
3481 if (waitqueue_active(&ctrl->mcc_wait[tag])) {
3482 ctrl->mcc_tag_status[tag] = MCC_STATUS_FAILED;
3483 ctrl->mcc_tag_status[tag] |= CQE_VALID_MASK;
3484 wake_up_interruptible(&ctrl->mcc_wait[tag]);
3485 /*
3486 * Control tag info gets reinitialized in enable
3487 * so wait for the process to clear running state.
3488 */
3489 while (test_bit(MCC_TAG_STATE_RUNNING,
3490 &ctrl->ptag_state[tag].tag_state))
3491 schedule_timeout_uninterruptible(HZ);
3492 }
3493 /**
3494 * For MCC with tag_states MCC_TAG_STATE_ASYNC and
3495 * MCC_TAG_STATE_IGNORE nothing needs to done.
3496 */
3497 }
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303498 if (q->created) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303499 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_MCCQ);
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303500 be_queue_free(phba, q);
3501 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303502
3503 q = &phba->ctrl.mcc_obj.cq;
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303504 if (q->created) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303505 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ);
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303506 be_queue_free(phba, q);
3507 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303508}
3509
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303510static int be_mcc_queues_create(struct beiscsi_hba *phba,
3511 struct hwi_context_memory *phwi_context)
3512{
3513 struct be_queue_info *q, *cq;
3514 struct be_ctrl_info *ctrl = &phba->ctrl;
3515
3516 /* Alloc MCC compl queue */
3517 cq = &phba->ctrl.mcc_obj.cq;
3518 if (be_queue_alloc(phba, cq, MCC_CQ_LEN,
3519 sizeof(struct be_mcc_compl)))
3520 goto err;
3521 /* Ask BE to create MCC compl queue; */
Christoph Hellwig83148862017-01-13 17:29:48 +01003522 if (phba->pcidev->msix_enabled) {
Jitendra Bhivare45efc9402017-10-10 16:18:18 +05303523 if (beiscsi_cmd_cq_create(ctrl, cq,
3524 &phwi_context->be_eq[phba->num_cpus].q,
3525 false, true, 0))
3526 goto mcc_cq_free;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303527 } else {
3528 if (beiscsi_cmd_cq_create(ctrl, cq, &phwi_context->be_eq[0].q,
3529 false, true, 0))
Jitendra Bhivare45efc9402017-10-10 16:18:18 +05303530 goto mcc_cq_free;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303531 }
3532
3533 /* Alloc MCC queue */
3534 q = &phba->ctrl.mcc_obj.q;
3535 if (be_queue_alloc(phba, q, MCC_Q_LEN, sizeof(struct be_mcc_wrb)))
3536 goto mcc_cq_destroy;
3537
3538 /* Ask BE to create MCC queue */
Jayamohan Kallickal35e66012009-10-23 11:53:49 +05303539 if (beiscsi_cmd_mccq_create(phba, q, cq))
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303540 goto mcc_q_free;
3541
3542 return 0;
3543
3544mcc_q_free:
3545 be_queue_free(phba, q);
3546mcc_cq_destroy:
3547 beiscsi_cmd_q_destroy(ctrl, cq, QTYPE_CQ);
3548mcc_cq_free:
3549 be_queue_free(phba, cq);
3550err:
Jayamohan Kallickald3ad2bb2010-07-22 04:16:38 +05303551 return -ENOMEM;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303552}
3553
Christoph Hellwig83148862017-01-13 17:29:48 +01003554static void be2iscsi_enable_msix(struct beiscsi_hba *phba)
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303555{
Christoph Hellwig83148862017-01-13 17:29:48 +01003556 int nvec = 1;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303557
John Soni Jose22abeef2012-10-20 04:43:32 +05303558 switch (phba->generation) {
3559 case BE_GEN2:
3560 case BE_GEN3:
Christoph Hellwig83148862017-01-13 17:29:48 +01003561 nvec = BEISCSI_MAX_NUM_CPUS + 1;
John Soni Jose22abeef2012-10-20 04:43:32 +05303562 break;
3563 case BE_GEN4:
Christoph Hellwig83148862017-01-13 17:29:48 +01003564 nvec = phba->fw_config.eqid_count;
John Soni Jose22abeef2012-10-20 04:43:32 +05303565 break;
3566 default:
Christoph Hellwig83148862017-01-13 17:29:48 +01003567 nvec = 2;
3568 break;
John Soni Jose22abeef2012-10-20 04:43:32 +05303569 }
Christoph Hellwig83148862017-01-13 17:29:48 +01003570
3571 /* if eqid_count == 1 fall back to INTX */
3572 if (enable_msix && nvec > 1) {
3573 const struct irq_affinity desc = { .post_vectors = 1 };
3574
3575 if (pci_alloc_irq_vectors_affinity(phba->pcidev, 2, nvec,
3576 PCI_IRQ_MSIX | PCI_IRQ_AFFINITY, &desc) < 0) {
3577 phba->num_cpus = nvec - 1;
3578 return;
3579 }
3580 }
3581
3582 phba->num_cpus = 1;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303583}
3584
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05303585static void hwi_purge_eq(struct beiscsi_hba *phba)
3586{
3587 struct hwi_controller *phwi_ctrlr;
3588 struct hwi_context_memory *phwi_context;
3589 struct be_queue_info *eq;
3590 struct be_eq_entry *eqe = NULL;
3591 int i, eq_msix;
3592 unsigned int num_processed;
3593
3594 if (beiscsi_hba_in_error(phba))
3595 return;
3596
3597 phwi_ctrlr = phba->phwi_ctrlr;
3598 phwi_context = phwi_ctrlr->phwi_ctxt;
Christoph Hellwig83148862017-01-13 17:29:48 +01003599 if (phba->pcidev->msix_enabled)
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05303600 eq_msix = 1;
3601 else
3602 eq_msix = 0;
3603
3604 for (i = 0; i < (phba->num_cpus + eq_msix); i++) {
3605 eq = &phwi_context->be_eq[i].q;
3606 eqe = queue_tail_node(eq);
3607 num_processed = 0;
3608 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
3609 & EQE_VALID_MASK) {
3610 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
3611 queue_tail_inc(eq);
3612 eqe = queue_tail_node(eq);
3613 num_processed++;
3614 }
3615
3616 if (num_processed)
3617 hwi_ring_eq_db(phba, eq->id, 1, num_processed, 1, 1);
3618 }
3619}
3620
3621static void hwi_cleanup_port(struct beiscsi_hba *phba)
3622{
3623 struct be_queue_info *q;
3624 struct be_ctrl_info *ctrl = &phba->ctrl;
3625 struct hwi_controller *phwi_ctrlr;
3626 struct hwi_context_memory *phwi_context;
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05303627 int i, eq_for_mcc, ulp_num;
3628
3629 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3630 if (test_bit(ulp_num, &phba->fw_config.ulp_supported))
3631 beiscsi_cmd_iscsi_cleanup(phba, ulp_num);
3632
3633 /**
3634 * Purge all EQ entries that may have been left out. This is to
3635 * workaround a problem we've seen occasionally where driver gets an
3636 * interrupt with EQ entry bit set after stopping the controller.
3637 */
3638 hwi_purge_eq(phba);
3639
3640 phwi_ctrlr = phba->phwi_ctrlr;
3641 phwi_context = phwi_ctrlr->phwi_ctxt;
3642
3643 be_cmd_iscsi_remove_template_hdr(ctrl);
3644
3645 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
3646 q = &phwi_context->be_wrbq[i];
3647 if (q->created)
3648 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_WRBQ);
3649 }
3650 kfree(phwi_context->be_wrbq);
3651 free_wrb_handles(phba);
3652
3653 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3654 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3655
3656 q = &phwi_context->be_def_hdrq[ulp_num];
3657 if (q->created)
3658 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ);
3659
3660 q = &phwi_context->be_def_dataq[ulp_num];
3661 if (q->created)
3662 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05303663 }
3664 }
3665
3666 beiscsi_cmd_q_destroy(ctrl, NULL, QTYPE_SGL);
3667
3668 for (i = 0; i < (phba->num_cpus); i++) {
3669 q = &phwi_context->be_cq[i];
3670 if (q->created) {
3671 be_queue_free(phba, q);
3672 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ);
3673 }
3674 }
3675
3676 be_mcc_queues_destroy(phba);
Christoph Hellwig83148862017-01-13 17:29:48 +01003677 if (phba->pcidev->msix_enabled)
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05303678 eq_for_mcc = 1;
3679 else
3680 eq_for_mcc = 0;
3681 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
3682 q = &phwi_context->be_eq[i].q;
3683 if (q->created) {
3684 be_queue_free(phba, q);
3685 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_EQ);
3686 }
3687 }
Jitendra Bhivare4ee1ec42016-08-19 15:20:20 +05303688 /* this ensures complete FW cleanup */
3689 beiscsi_cmd_function_reset(phba);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05303690 /* last communication, indicate driver is unloading */
3691 beiscsi_cmd_special_wrb(&phba->ctrl, 0);
3692}
Jitendra Bhivare4ee1ec42016-08-19 15:20:20 +05303693
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303694static int hwi_init_port(struct beiscsi_hba *phba)
3695{
3696 struct hwi_controller *phwi_ctrlr;
3697 struct hwi_context_memory *phwi_context;
3698 unsigned int def_pdu_ring_sz;
3699 struct be_ctrl_info *ctrl = &phba->ctrl;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003700 int status, ulp_num;
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05303701 u16 nbufs;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303702
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303703 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303704 phwi_context = phwi_ctrlr->phwi_ctxt;
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05303705 /* set port optic state to unknown */
Jitendra Bhivare53aefe22016-01-20 14:10:53 +05303706 phba->optic_state = 0xff;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303707
3708 status = beiscsi_create_eqs(phba, phwi_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303709 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303710 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3711 "BM_%d : EQ not created\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303712 goto error;
3713 }
3714
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303715 status = be_mcc_queues_create(phba, phwi_context);
3716 if (status != 0)
3717 goto error;
3718
Jitendra Bhivare480195c2016-08-19 15:20:15 +05303719 status = beiscsi_check_supported_fw(ctrl, phba);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303720 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303721 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3722 "BM_%d : Unsupported fw version\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303723 goto error;
3724 }
3725
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303726 status = beiscsi_create_cqs(phba, phwi_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303727 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303728 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3729 "BM_%d : CQ not created\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303730 goto error;
3731 }
3732
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003733 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3734 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05303735 nbufs = phwi_context->pasync_ctx[ulp_num]->num_entries;
3736 def_pdu_ring_sz = nbufs * sizeof(struct phys_addr);
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003737
3738 status = beiscsi_create_def_hdr(phba, phwi_context,
3739 phwi_ctrlr,
3740 def_pdu_ring_sz,
3741 ulp_num);
3742 if (status != 0) {
3743 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3744 "BM_%d : Default Header not created for ULP : %d\n",
3745 ulp_num);
3746 goto error;
3747 }
3748
3749 status = beiscsi_create_def_data(phba, phwi_context,
3750 phwi_ctrlr,
3751 def_pdu_ring_sz,
3752 ulp_num);
3753 if (status != 0) {
3754 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3755 "BM_%d : Default Data not created for ULP : %d\n",
3756 ulp_num);
3757 goto error;
3758 }
Jitendra Bhivaref79929d2016-08-19 15:20:17 +05303759 /**
3760 * Now that the default PDU rings have been created,
3761 * let EP know about it.
Jitendra Bhivaref79929d2016-08-19 15:20:17 +05303762 */
Jitendra Bhivare938f3722016-08-19 15:20:21 +05303763 beiscsi_hdq_post_handles(phba, BEISCSI_DEFQ_HDR,
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05303764 ulp_num, nbufs);
Jitendra Bhivare938f3722016-08-19 15:20:21 +05303765 beiscsi_hdq_post_handles(phba, BEISCSI_DEFQ_DATA,
Jitendra Bhivare1e2931f2017-03-24 14:11:45 +05303766 ulp_num, nbufs);
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003767 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303768 }
3769
3770 status = beiscsi_post_pages(phba);
3771 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303772 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3773 "BM_%d : Post SGL Pages Failed\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303774 goto error;
3775 }
3776
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003777 status = beiscsi_post_template_hdr(phba);
3778 if (status != 0) {
3779 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3780 "BM_%d : Template HDR Posting for CXN Failed\n");
3781 }
3782
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303783 status = beiscsi_create_wrb_rings(phba, phwi_context, phwi_ctrlr);
3784 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303785 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3786 "BM_%d : WRB Rings not created\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303787 goto error;
3788 }
3789
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003790 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3791 uint16_t async_arr_idx = 0;
3792
3793 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3794 uint16_t cri = 0;
Jitendra Bhivare938f3722016-08-19 15:20:21 +05303795 struct hd_async_context *pasync_ctx;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003796
3797 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(
3798 phwi_ctrlr, ulp_num);
3799 for (cri = 0; cri <
3800 phba->params.cxns_per_ctrl; cri++) {
3801 if (ulp_num == BEISCSI_GET_ULP_FROM_CRI
3802 (phwi_ctrlr, cri))
3803 pasync_ctx->cid_to_async_cri_map[
3804 phwi_ctrlr->wrb_context[cri].cid] =
3805 async_arr_idx++;
3806 }
3807 }
3808 }
3809
John Soni Jose99bc5d52012-08-20 23:00:18 +05303810 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3811 "BM_%d : hwi_init_port success\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303812 return 0;
3813
3814error:
John Soni Jose99bc5d52012-08-20 23:00:18 +05303815 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3816 "BM_%d : hwi_init_port failed");
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05303817 hwi_cleanup_port(phba);
Jayamohan Kallickala49e06d2012-04-03 23:41:44 -05003818 return status;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303819}
3820
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303821static int hwi_init_controller(struct beiscsi_hba *phba)
3822{
3823 struct hwi_controller *phwi_ctrlr;
3824
3825 phwi_ctrlr = phba->phwi_ctrlr;
3826 if (1 == phba->init_mem[HWI_MEM_ADDN_CONTEXT].num_elements) {
3827 phwi_ctrlr->phwi_ctxt = (struct hwi_context_memory *)phba->
3828 init_mem[HWI_MEM_ADDN_CONTEXT].mem_array[0].virtual_address;
John Soni Jose99bc5d52012-08-20 23:00:18 +05303829 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3830 "BM_%d : phwi_ctrlr->phwi_ctxt=%p\n",
3831 phwi_ctrlr->phwi_ctxt);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303832 } else {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303833 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3834 "BM_%d : HWI_MEM_ADDN_CONTEXT is more "
3835 "than one element.Failing to load\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303836 return -ENOMEM;
3837 }
3838
3839 iscsi_init_global_templates(phba);
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05003840 if (beiscsi_init_wrb_handle(phba))
3841 return -ENOMEM;
3842
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003843 if (hwi_init_async_pdu_ctx(phba)) {
3844 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3845 "BM_%d : hwi_init_async_pdu_ctx failed\n");
3846 return -ENOMEM;
3847 }
3848
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303849 if (hwi_init_port(phba) != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303850 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3851 "BM_%d : hwi_init_controller failed\n");
3852
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303853 return -ENOMEM;
3854 }
3855 return 0;
3856}
3857
3858static void beiscsi_free_mem(struct beiscsi_hba *phba)
3859{
3860 struct be_mem_descriptor *mem_descr;
3861 int i, j;
3862
3863 mem_descr = phba->init_mem;
3864 i = 0;
3865 j = 0;
3866 for (i = 0; i < SE_MEM_MAX; i++) {
3867 for (j = mem_descr->num_elements; j > 0; j--) {
3868 pci_free_consistent(phba->pcidev,
3869 mem_descr->mem_array[j - 1].size,
3870 mem_descr->mem_array[j - 1].virtual_address,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05303871 (unsigned long)mem_descr->mem_array[j - 1].
3872 bus_address.u.a64.address);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303873 }
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003874
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303875 kfree(mem_descr->mem_array);
3876 mem_descr++;
3877 }
3878 kfree(phba->init_mem);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003879 kfree(phba->phwi_ctrlr->wrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303880 kfree(phba->phwi_ctrlr);
3881}
3882
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303883static int beiscsi_init_sgl_handle(struct beiscsi_hba *phba)
3884{
3885 struct be_mem_descriptor *mem_descr_sglh, *mem_descr_sg;
3886 struct sgl_handle *psgl_handle;
3887 struct iscsi_sge *pfrag;
Jayamohan Kallickal90622db2013-09-28 15:35:47 -07003888 unsigned int arr_index, i, idx;
3889 unsigned int ulp_icd_start, ulp_num = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303890
3891 phba->io_sgl_hndl_avbl = 0;
3892 phba->eh_sgl_hndl_avbl = 0;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303893
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303894 mem_descr_sglh = phba->init_mem;
3895 mem_descr_sglh += HWI_MEM_SGLH;
3896 if (1 == mem_descr_sglh->num_elements) {
3897 phba->io_sgl_hndl_base = kzalloc(sizeof(struct sgl_handle *) *
3898 phba->params.ios_per_ctrl,
3899 GFP_KERNEL);
3900 if (!phba->io_sgl_hndl_base) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303901 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3902 "BM_%d : Mem Alloc Failed. Failing to load\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303903 return -ENOMEM;
3904 }
3905 phba->eh_sgl_hndl_base = kzalloc(sizeof(struct sgl_handle *) *
3906 (phba->params.icds_per_ctrl -
3907 phba->params.ios_per_ctrl),
3908 GFP_KERNEL);
3909 if (!phba->eh_sgl_hndl_base) {
3910 kfree(phba->io_sgl_hndl_base);
John Soni Jose99bc5d52012-08-20 23:00:18 +05303911 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3912 "BM_%d : Mem Alloc Failed. Failing to load\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303913 return -ENOMEM;
3914 }
3915 } else {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303916 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3917 "BM_%d : HWI_MEM_SGLH is more than one element."
3918 "Failing to load\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303919 return -ENOMEM;
3920 }
3921
3922 arr_index = 0;
3923 idx = 0;
3924 while (idx < mem_descr_sglh->num_elements) {
3925 psgl_handle = mem_descr_sglh->mem_array[idx].virtual_address;
3926
3927 for (i = 0; i < (mem_descr_sglh->mem_array[idx].size /
3928 sizeof(struct sgl_handle)); i++) {
3929 if (arr_index < phba->params.ios_per_ctrl) {
3930 phba->io_sgl_hndl_base[arr_index] = psgl_handle;
3931 phba->io_sgl_hndl_avbl++;
3932 arr_index++;
3933 } else {
3934 phba->eh_sgl_hndl_base[arr_index -
3935 phba->params.ios_per_ctrl] =
3936 psgl_handle;
3937 arr_index++;
3938 phba->eh_sgl_hndl_avbl++;
3939 }
3940 psgl_handle++;
3941 }
3942 idx++;
3943 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303944 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3945 "BM_%d : phba->io_sgl_hndl_avbl=%d"
3946 "phba->eh_sgl_hndl_avbl=%d\n",
3947 phba->io_sgl_hndl_avbl,
3948 phba->eh_sgl_hndl_avbl);
3949
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303950 mem_descr_sg = phba->init_mem;
3951 mem_descr_sg += HWI_MEM_SGE;
John Soni Jose99bc5d52012-08-20 23:00:18 +05303952 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3953 "\n BM_%d : mem_descr_sg->num_elements=%d\n",
3954 mem_descr_sg->num_elements);
3955
Jayamohan Kallickal90622db2013-09-28 15:35:47 -07003956 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3957 if (test_bit(ulp_num, &phba->fw_config.ulp_supported))
3958 break;
3959
3960 ulp_icd_start = phba->fw_config.iscsi_icd_start[ulp_num];
3961
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303962 arr_index = 0;
3963 idx = 0;
3964 while (idx < mem_descr_sg->num_elements) {
3965 pfrag = mem_descr_sg->mem_array[idx].virtual_address;
3966
3967 for (i = 0;
3968 i < (mem_descr_sg->mem_array[idx].size) /
3969 (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io);
3970 i++) {
3971 if (arr_index < phba->params.ios_per_ctrl)
3972 psgl_handle = phba->io_sgl_hndl_base[arr_index];
3973 else
3974 psgl_handle = phba->eh_sgl_hndl_base[arr_index -
3975 phba->params.ios_per_ctrl];
3976 psgl_handle->pfrag = pfrag;
3977 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, pfrag, 0);
3978 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, pfrag, 0);
3979 pfrag += phba->params.num_sge_per_io;
Jayamohan Kallickal90622db2013-09-28 15:35:47 -07003980 psgl_handle->sgl_index = ulp_icd_start + arr_index++;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303981 }
3982 idx++;
3983 }
3984 phba->io_sgl_free_index = 0;
3985 phba->io_sgl_alloc_index = 0;
3986 phba->eh_sgl_free_index = 0;
3987 phba->eh_sgl_alloc_index = 0;
3988 return 0;
3989}
3990
3991static int hba_setup_cid_tbls(struct beiscsi_hba *phba)
3992{
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07003993 int ret;
3994 uint16_t i, ulp_num;
3995 struct ulp_cid_info *ptr_cid_info = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303996
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07003997 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3998 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
3999 ptr_cid_info = kzalloc(sizeof(struct ulp_cid_info),
4000 GFP_KERNEL);
4001
4002 if (!ptr_cid_info) {
4003 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4004 "BM_%d : Failed to allocate memory"
4005 "for ULP_CID_INFO for ULP : %d\n",
4006 ulp_num);
4007 ret = -ENOMEM;
4008 goto free_memory;
4009
4010 }
4011
4012 /* Allocate memory for CID array */
Jitendra Bhivare413f3652016-12-13 15:56:03 +05304013 ptr_cid_info->cid_array =
4014 kcalloc(BEISCSI_GET_CID_COUNT(phba, ulp_num),
4015 sizeof(*ptr_cid_info->cid_array),
4016 GFP_KERNEL);
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004017 if (!ptr_cid_info->cid_array) {
4018 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4019 "BM_%d : Failed to allocate memory"
4020 "for CID_ARRAY for ULP : %d\n",
4021 ulp_num);
4022 kfree(ptr_cid_info);
4023 ptr_cid_info = NULL;
4024 ret = -ENOMEM;
4025
4026 goto free_memory;
4027 }
4028 ptr_cid_info->avlbl_cids = BEISCSI_GET_CID_COUNT(
4029 phba, ulp_num);
4030
4031 /* Save the cid_info_array ptr */
4032 phba->cid_array_info[ulp_num] = ptr_cid_info;
4033 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304034 }
Jayamohan Kallickalc2462282010-01-05 05:05:34 +05304035 phba->ep_array = kzalloc(sizeof(struct iscsi_endpoint *) *
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004036 phba->params.cxns_per_ctrl, GFP_KERNEL);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304037 if (!phba->ep_array) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304038 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4039 "BM_%d : Failed to allocate memory in "
4040 "hba_setup_cid_tbls\n");
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004041 ret = -ENOMEM;
4042
4043 goto free_memory;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304044 }
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004045
4046 phba->conn_table = kzalloc(sizeof(struct beiscsi_conn *) *
4047 phba->params.cxns_per_ctrl, GFP_KERNEL);
4048 if (!phba->conn_table) {
4049 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4050 "BM_%d : Failed to allocate memory in"
4051 "hba_setup_cid_tbls\n");
4052
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004053 kfree(phba->ep_array);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004054 phba->ep_array = NULL;
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004055 ret = -ENOMEM;
Tomas Henzl5f2d25e2014-06-06 14:06:30 +02004056
4057 goto free_memory;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304058 }
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004059
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004060 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
4061 ulp_num = phba->phwi_ctrlr->wrb_context[i].ulp_num;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004062
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004063 ptr_cid_info = phba->cid_array_info[ulp_num];
4064 ptr_cid_info->cid_array[ptr_cid_info->cid_alloc++] =
4065 phba->phwi_ctrlr->wrb_context[i].cid;
4066
4067 }
4068
4069 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4070 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4071 ptr_cid_info = phba->cid_array_info[ulp_num];
4072
4073 ptr_cid_info->cid_alloc = 0;
4074 ptr_cid_info->cid_free = 0;
4075 }
4076 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304077 return 0;
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004078
4079free_memory:
4080 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4081 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4082 ptr_cid_info = phba->cid_array_info[ulp_num];
4083
4084 if (ptr_cid_info) {
4085 kfree(ptr_cid_info->cid_array);
4086 kfree(ptr_cid_info);
4087 phba->cid_array_info[ulp_num] = NULL;
4088 }
4089 }
4090 }
4091
4092 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304093}
4094
Jayamohan Kallickal238f6b72010-07-22 04:23:22 +05304095static void hwi_enable_intr(struct beiscsi_hba *phba)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304096{
4097 struct be_ctrl_info *ctrl = &phba->ctrl;
4098 struct hwi_controller *phwi_ctrlr;
4099 struct hwi_context_memory *phwi_context;
4100 struct be_queue_info *eq;
4101 u8 __iomem *addr;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304102 u32 reg, i;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304103 u32 enabled;
4104
4105 phwi_ctrlr = phba->phwi_ctrlr;
4106 phwi_context = phwi_ctrlr->phwi_ctxt;
4107
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304108 addr = (u8 __iomem *) ((u8 __iomem *) ctrl->pcicfg +
4109 PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET);
4110 reg = ioread32(addr);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304111
4112 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4113 if (!enabled) {
4114 reg |= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
John Soni Jose99bc5d52012-08-20 23:00:18 +05304115 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4116 "BM_%d : reg =x%08x addr=%p\n", reg, addr);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304117 iowrite32(reg, addr);
Jayamohan Kallickal665d6d92011-04-29 14:30:06 -05004118 }
4119
Christoph Hellwig83148862017-01-13 17:29:48 +01004120 if (!phba->pcidev->msix_enabled) {
Jayamohan Kallickal665d6d92011-04-29 14:30:06 -05004121 eq = &phwi_context->be_eq[0].q;
John Soni Jose99bc5d52012-08-20 23:00:18 +05304122 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4123 "BM_%d : eq->id=%d\n", eq->id);
4124
Jayamohan Kallickal665d6d92011-04-29 14:30:06 -05004125 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
4126 } else {
4127 for (i = 0; i <= phba->num_cpus; i++) {
4128 eq = &phwi_context->be_eq[i].q;
John Soni Jose99bc5d52012-08-20 23:00:18 +05304129 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4130 "BM_%d : eq->id=%d\n", eq->id);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304131 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
4132 }
Jayamohan Kallickalc03af1a2010-02-20 08:05:43 +05304133 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304134}
4135
4136static void hwi_disable_intr(struct beiscsi_hba *phba)
4137{
4138 struct be_ctrl_info *ctrl = &phba->ctrl;
4139
4140 u8 __iomem *addr = ctrl->pcicfg + PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET;
4141 u32 reg = ioread32(addr);
4142
4143 u32 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4144 if (enabled) {
4145 reg &= ~MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4146 iowrite32(reg, addr);
4147 } else
John Soni Jose99bc5d52012-08-20 23:00:18 +05304148 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
4149 "BM_%d : In hwi_disable_intr, Already Disabled\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304150}
4151
4152static int beiscsi_init_port(struct beiscsi_hba *phba)
4153{
4154 int ret;
4155
Jitendra Bhivaredd940972016-12-13 15:56:04 +05304156 ret = hwi_init_controller(phba);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304157 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304158 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jitendra Bhivaredd940972016-12-13 15:56:04 +05304159 "BM_%d : init controller failed\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304160 return ret;
4161 }
4162 ret = beiscsi_init_sgl_handle(phba);
4163 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304164 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jitendra Bhivaredd940972016-12-13 15:56:04 +05304165 "BM_%d : init sgl handles failed\n");
4166 goto cleanup_port;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304167 }
4168
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05304169 ret = hba_setup_cid_tbls(phba);
4170 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304171 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jitendra Bhivaredd940972016-12-13 15:56:04 +05304172 "BM_%d : setup CID table failed\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304173 kfree(phba->io_sgl_hndl_base);
4174 kfree(phba->eh_sgl_hndl_base);
Jitendra Bhivaredd940972016-12-13 15:56:04 +05304175 goto cleanup_port;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304176 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304177 return ret;
4178
Jitendra Bhivaredd940972016-12-13 15:56:04 +05304179cleanup_port:
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05304180 hwi_cleanup_port(phba);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304181 return ret;
4182}
4183
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05304184static void beiscsi_cleanup_port(struct beiscsi_hba *phba)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304185{
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004186 struct ulp_cid_info *ptr_cid_info = NULL;
Jitendra Bhivaref79929d2016-08-19 15:20:17 +05304187 int ulp_num;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304188
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304189 kfree(phba->io_sgl_hndl_base);
4190 kfree(phba->eh_sgl_hndl_base);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304191 kfree(phba->ep_array);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004192 kfree(phba->conn_table);
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004193
4194 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4195 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4196 ptr_cid_info = phba->cid_array_info[ulp_num];
4197
4198 if (ptr_cid_info) {
4199 kfree(ptr_cid_info->cid_array);
4200 kfree(ptr_cid_info);
4201 phba->cid_array_info[ulp_num] = NULL;
4202 }
4203 }
4204 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304205}
4206
John Soni Josed629c472012-10-20 04:42:00 +05304207/**
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004208 * beiscsi_free_mgmt_task_handles()- Free driver CXN resources
4209 * @beiscsi_conn: ptr to the conn to be cleaned up
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07004210 * @task: ptr to iscsi_task resource to be freed.
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004211 *
4212 * Free driver mgmt resources binded to CXN.
4213 **/
4214void
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07004215beiscsi_free_mgmt_task_handles(struct beiscsi_conn *beiscsi_conn,
4216 struct iscsi_task *task)
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004217{
4218 struct beiscsi_io_task *io_task;
4219 struct beiscsi_hba *phba = beiscsi_conn->phba;
4220 struct hwi_wrb_context *pwrb_context;
4221 struct hwi_controller *phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004222 uint16_t cri_index = BE_GET_CRI_FROM_CID(
4223 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004224
4225 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004226 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
4227
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07004228 io_task = task->dd_data;
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004229
4230 if (io_task->pwrb_handle) {
Jitendra Bhivaree1f9d312016-08-19 15:20:22 +05304231 free_wrb_handle(phba, pwrb_context, io_task->pwrb_handle);
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004232 io_task->pwrb_handle = NULL;
4233 }
4234
4235 if (io_task->psgl_handle) {
Jitendra Bhivaree1f9d312016-08-19 15:20:22 +05304236 free_mgmt_sgl_handle(phba, io_task->psgl_handle);
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004237 io_task->psgl_handle = NULL;
4238 }
4239
John Soni Joseeb1c4692015-04-25 08:17:45 +05304240 if (io_task->mtask_addr) {
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004241 pci_unmap_single(phba->pcidev,
4242 io_task->mtask_addr,
4243 io_task->mtask_data_count,
4244 PCI_DMA_TODEVICE);
John Soni Joseeb1c4692015-04-25 08:17:45 +05304245 io_task->mtask_addr = 0;
4246 }
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004247}
4248
4249/**
John Soni Josed629c472012-10-20 04:42:00 +05304250 * beiscsi_cleanup_task()- Free driver resources of the task
4251 * @task: ptr to the iscsi task
4252 *
4253 **/
Mike Christie1282ab72012-04-18 03:06:00 -05004254static void beiscsi_cleanup_task(struct iscsi_task *task)
4255{
4256 struct beiscsi_io_task *io_task = task->dd_data;
4257 struct iscsi_conn *conn = task->conn;
4258 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4259 struct beiscsi_hba *phba = beiscsi_conn->phba;
4260 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess;
4261 struct hwi_wrb_context *pwrb_context;
4262 struct hwi_controller *phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004263 uint16_t cri_index = BE_GET_CRI_FROM_CID(
4264 beiscsi_conn->beiscsi_conn_cid);
Mike Christie1282ab72012-04-18 03:06:00 -05004265
4266 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004267 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
Mike Christie1282ab72012-04-18 03:06:00 -05004268
4269 if (io_task->cmd_bhs) {
Romain Perieraf007b02017-07-06 10:13:03 +02004270 dma_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs,
Mike Christie1282ab72012-04-18 03:06:00 -05004271 io_task->bhs_pa.u.a64.address);
4272 io_task->cmd_bhs = NULL;
Jitendra Bhivaree1f9d312016-08-19 15:20:22 +05304273 task->hdr = NULL;
Mike Christie1282ab72012-04-18 03:06:00 -05004274 }
4275
4276 if (task->sc) {
4277 if (io_task->pwrb_handle) {
4278 free_wrb_handle(phba, pwrb_context,
4279 io_task->pwrb_handle);
4280 io_task->pwrb_handle = NULL;
4281 }
4282
4283 if (io_task->psgl_handle) {
Mike Christie1282ab72012-04-18 03:06:00 -05004284 free_io_sgl_handle(phba, io_task->psgl_handle);
Mike Christie1282ab72012-04-18 03:06:00 -05004285 io_task->psgl_handle = NULL;
4286 }
Jayamohan Kallickalda334972014-01-29 02:16:44 -05004287
4288 if (io_task->scsi_cmnd) {
Jitendra Bhivare9122e992016-08-19 15:20:11 +05304289 if (io_task->num_sg)
4290 scsi_dma_unmap(io_task->scsi_cmnd);
Jayamohan Kallickalda334972014-01-29 02:16:44 -05004291 io_task->scsi_cmnd = NULL;
4292 }
Mike Christie1282ab72012-04-18 03:06:00 -05004293 } else {
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004294 if (!beiscsi_conn->login_in_progress)
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07004295 beiscsi_free_mgmt_task_handles(beiscsi_conn, task);
Mike Christie1282ab72012-04-18 03:06:00 -05004296 }
4297}
4298
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304299void
4300beiscsi_offload_connection(struct beiscsi_conn *beiscsi_conn,
4301 struct beiscsi_offload_params *params)
4302{
4303 struct wrb_handle *pwrb_handle;
John Soni Jose340c99e2015-08-20 04:44:30 +05304304 struct hwi_wrb_context *pwrb_context = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304305 struct beiscsi_hba *phba = beiscsi_conn->phba;
Mike Christie1282ab72012-04-18 03:06:00 -05004306 struct iscsi_task *task = beiscsi_conn->task;
4307 struct iscsi_session *session = task->conn->session;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304308 u32 doorbell = 0;
4309
4310 /*
4311 * We can always use 0 here because it is reserved by libiscsi for
4312 * login/startup related tasks.
4313 */
Mike Christie1282ab72012-04-18 03:06:00 -05004314 beiscsi_conn->login_in_progress = 0;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06004315 spin_lock_bh(&session->back_lock);
Mike Christie1282ab72012-04-18 03:06:00 -05004316 beiscsi_cleanup_task(task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06004317 spin_unlock_bh(&session->back_lock);
Mike Christie1282ab72012-04-18 03:06:00 -05004318
John Soni Jose340c99e2015-08-20 04:44:30 +05304319 pwrb_handle = alloc_wrb_handle(phba, beiscsi_conn->beiscsi_conn_cid,
4320 &pwrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304321
John Soni Joseacb96932012-10-20 04:44:35 +05304322 /* Check for the adapter family */
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004323 if (is_chip_be2_be3r(phba))
John Soni Joseacb96932012-10-20 04:44:35 +05304324 beiscsi_offload_cxn_v0(params, pwrb_handle,
John Soni Jose340c99e2015-08-20 04:44:30 +05304325 phba->init_mem,
4326 pwrb_context);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004327 else
John Soni Jose340c99e2015-08-20 04:44:30 +05304328 beiscsi_offload_cxn_v2(params, pwrb_handle,
4329 pwrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304330
John Soni Joseacb96932012-10-20 04:44:35 +05304331 be_dws_le_to_cpu(pwrb_handle->pwrb,
4332 sizeof(struct iscsi_target_context_update_wrb));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304333
4334 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304335 doorbell |= (pwrb_handle->wrb_index & DB_DEF_PDU_WRB_INDEX_MASK)
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304336 << DB_DEF_PDU_WRB_INDEX_SHIFT;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304337 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -07004338 iowrite32(doorbell, phba->db_va +
4339 beiscsi_conn->doorbell_offset);
Jitendra Bhivarecb564c62016-01-20 14:11:00 +05304340
4341 /*
4342 * There is no completion for CONTEXT_UPDATE. The completion of next
4343 * WRB posted guarantees FW's processing and DMA'ing of it.
4344 * Use beiscsi_put_wrb_handle to put it back in the pool which makes
4345 * sure zero'ing or reuse of the WRB only after wrbs_per_cxn.
4346 */
4347 beiscsi_put_wrb_handle(pwrb_context, pwrb_handle,
4348 phba->params.wrbs_per_cxn);
4349 beiscsi_log(phba, KERN_INFO,
4350 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4351 "BM_%d : put CONTEXT_UPDATE pwrb_handle=%p free_index=0x%x wrb_handles_available=%d\n",
4352 pwrb_handle, pwrb_context->free_index,
4353 pwrb_context->wrb_handles_available);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304354}
4355
4356static void beiscsi_parse_pdu(struct iscsi_conn *conn, itt_t itt,
4357 int *index, int *age)
4358{
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304359 *index = (int)itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304360 if (age)
4361 *age = conn->session->age;
4362}
4363
4364/**
4365 * beiscsi_alloc_pdu - allocates pdu and related resources
4366 * @task: libiscsi task
4367 * @opcode: opcode of pdu for task
4368 *
4369 * This is called with the session lock held. It will allocate
4370 * the wrb and sgl if needed for the command. And it will prep
4371 * the pdu's itt. beiscsi_parse_pdu will later translate
4372 * the pdu itt to the libiscsi task itt.
4373 */
4374static int beiscsi_alloc_pdu(struct iscsi_task *task, uint8_t opcode)
4375{
4376 struct beiscsi_io_task *io_task = task->dd_data;
4377 struct iscsi_conn *conn = task->conn;
4378 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4379 struct beiscsi_hba *phba = beiscsi_conn->phba;
4380 struct hwi_wrb_context *pwrb_context;
4381 struct hwi_controller *phwi_ctrlr;
4382 itt_t itt;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004383 uint16_t cri_index = 0;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304384 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess;
4385 dma_addr_t paddr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304386
Romain Perieraf007b02017-07-06 10:13:03 +02004387 io_task->cmd_bhs = dma_pool_alloc(beiscsi_sess->bhs_pool,
Mike Christiebc7acce2010-12-31 02:22:19 -06004388 GFP_ATOMIC, &paddr);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304389 if (!io_task->cmd_bhs)
4390 return -ENOMEM;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304391 io_task->bhs_pa.u.a64.address = paddr;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304392 io_task->libiscsi_itt = (itt_t)task->itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304393 io_task->conn = beiscsi_conn;
4394
4395 task->hdr = (struct iscsi_hdr *)&io_task->cmd_bhs->iscsi_hdr;
4396 task->hdr_max = sizeof(struct be_cmd_bhs);
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304397 io_task->psgl_handle = NULL;
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05004398 io_task->pwrb_handle = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304399
4400 if (task->sc) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304401 io_task->psgl_handle = alloc_io_sgl_handle(phba);
John Soni Jose8359c792012-10-20 04:43:03 +05304402 if (!io_task->psgl_handle) {
4403 beiscsi_log(phba, KERN_ERR,
4404 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4405 "BM_%d : Alloc of IO_SGL_ICD Failed"
4406 "for the CID : %d\n",
4407 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304408 goto free_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304409 }
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304410 io_task->pwrb_handle = alloc_wrb_handle(phba,
John Soni Jose340c99e2015-08-20 04:44:30 +05304411 beiscsi_conn->beiscsi_conn_cid,
4412 &io_task->pwrb_context);
John Soni Jose8359c792012-10-20 04:43:03 +05304413 if (!io_task->pwrb_handle) {
4414 beiscsi_log(phba, KERN_ERR,
4415 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4416 "BM_%d : Alloc of WRB_HANDLE Failed"
4417 "for the CID : %d\n",
4418 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304419 goto free_io_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304420 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304421 } else {
4422 io_task->scsi_cmnd = NULL;
Jayamohan Kallickald7aea672010-01-05 05:08:39 +05304423 if ((opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGIN) {
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004424 beiscsi_conn->task = task;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304425 if (!beiscsi_conn->login_in_progress) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304426 io_task->psgl_handle = (struct sgl_handle *)
4427 alloc_mgmt_sgl_handle(phba);
John Soni Jose8359c792012-10-20 04:43:03 +05304428 if (!io_task->psgl_handle) {
4429 beiscsi_log(phba, KERN_ERR,
4430 BEISCSI_LOG_IO |
4431 BEISCSI_LOG_CONFIG,
4432 "BM_%d : Alloc of MGMT_SGL_ICD Failed"
4433 "for the CID : %d\n",
4434 beiscsi_conn->
4435 beiscsi_conn_cid);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304436 goto free_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304437 }
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304438
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304439 beiscsi_conn->login_in_progress = 1;
4440 beiscsi_conn->plogin_sgl_handle =
4441 io_task->psgl_handle;
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304442 io_task->pwrb_handle =
4443 alloc_wrb_handle(phba,
John Soni Jose340c99e2015-08-20 04:44:30 +05304444 beiscsi_conn->beiscsi_conn_cid,
4445 &io_task->pwrb_context);
John Soni Jose8359c792012-10-20 04:43:03 +05304446 if (!io_task->pwrb_handle) {
4447 beiscsi_log(phba, KERN_ERR,
4448 BEISCSI_LOG_IO |
4449 BEISCSI_LOG_CONFIG,
4450 "BM_%d : Alloc of WRB_HANDLE Failed"
4451 "for the CID : %d\n",
4452 beiscsi_conn->
4453 beiscsi_conn_cid);
4454 goto free_mgmt_hndls;
4455 }
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304456 beiscsi_conn->plogin_wrb_handle =
4457 io_task->pwrb_handle;
4458
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304459 } else {
4460 io_task->psgl_handle =
4461 beiscsi_conn->plogin_sgl_handle;
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304462 io_task->pwrb_handle =
4463 beiscsi_conn->plogin_wrb_handle;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304464 }
4465 } else {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304466 io_task->psgl_handle = alloc_mgmt_sgl_handle(phba);
John Soni Jose8359c792012-10-20 04:43:03 +05304467 if (!io_task->psgl_handle) {
4468 beiscsi_log(phba, KERN_ERR,
4469 BEISCSI_LOG_IO |
4470 BEISCSI_LOG_CONFIG,
4471 "BM_%d : Alloc of MGMT_SGL_ICD Failed"
4472 "for the CID : %d\n",
4473 beiscsi_conn->
4474 beiscsi_conn_cid);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304475 goto free_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304476 }
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304477 io_task->pwrb_handle =
4478 alloc_wrb_handle(phba,
John Soni Jose340c99e2015-08-20 04:44:30 +05304479 beiscsi_conn->beiscsi_conn_cid,
4480 &io_task->pwrb_context);
John Soni Jose8359c792012-10-20 04:43:03 +05304481 if (!io_task->pwrb_handle) {
4482 beiscsi_log(phba, KERN_ERR,
4483 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4484 "BM_%d : Alloc of WRB_HANDLE Failed"
4485 "for the CID : %d\n",
4486 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304487 goto free_mgmt_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304488 }
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304489
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304490 }
4491 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304492 itt = (itt_t) cpu_to_be32(((unsigned int)io_task->pwrb_handle->
4493 wrb_index << 16) | (unsigned int)
4494 (io_task->psgl_handle->sgl_index));
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304495 io_task->pwrb_handle->pio_handle = task;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304496
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304497 io_task->cmd_bhs->iscsi_hdr.itt = itt;
4498 return 0;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304499
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304500free_io_hndls:
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304501 free_io_sgl_handle(phba, io_task->psgl_handle);
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304502 goto free_hndls;
4503free_mgmt_hndls:
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304504 free_mgmt_sgl_handle(phba, io_task->psgl_handle);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004505 io_task->psgl_handle = NULL;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304506free_hndls:
4507 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004508 cri_index = BE_GET_CRI_FROM_CID(
4509 beiscsi_conn->beiscsi_conn_cid);
4510 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304511 if (io_task->pwrb_handle)
4512 free_wrb_handle(phba, pwrb_context, io_task->pwrb_handle);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304513 io_task->pwrb_handle = NULL;
Romain Perieraf007b02017-07-06 10:13:03 +02004514 dma_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs,
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304515 io_task->bhs_pa.u.a64.address);
Mike Christie1282ab72012-04-18 03:06:00 -05004516 io_task->cmd_bhs = NULL;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304517 return -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304518}
Baoyou Xie0825b8e2016-09-26 20:00:59 +08004519static int beiscsi_iotask_v2(struct iscsi_task *task, struct scatterlist *sg,
John Soni Jose09a10932012-10-20 04:44:23 +05304520 unsigned int num_sg, unsigned int xferlen,
4521 unsigned int writedir)
4522{
4523
4524 struct beiscsi_io_task *io_task = task->dd_data;
4525 struct iscsi_conn *conn = task->conn;
4526 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4527 struct beiscsi_hba *phba = beiscsi_conn->phba;
4528 struct iscsi_wrb *pwrb = NULL;
4529 unsigned int doorbell = 0;
4530
4531 pwrb = io_task->pwrb_handle->pwrb;
John Soni Jose09a10932012-10-20 04:44:23 +05304532
John Soni Jose09a10932012-10-20 04:44:23 +05304533 io_task->bhs_len = sizeof(struct be_cmd_bhs);
4534
4535 if (writedir) {
4536 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, type, pwrb,
4537 INI_WR_CMD);
4538 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp, pwrb, 1);
4539 } else {
4540 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, type, pwrb,
4541 INI_RD_CMD);
4542 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp, pwrb, 0);
4543 }
4544
4545 io_task->wrb_type = AMAP_GET_BITS(struct amap_iscsi_wrb_v2,
4546 type, pwrb);
4547
4548 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, lun, pwrb,
4549 cpu_to_be16(*(unsigned short *)
4550 &io_task->cmd_bhs->iscsi_hdr.lun));
4551 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, r2t_exp_dtl, pwrb, xferlen);
4552 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, wrb_idx, pwrb,
4553 io_task->pwrb_handle->wrb_index);
4554 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, cmdsn_itt, pwrb,
4555 be32_to_cpu(task->cmdsn));
4556 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sgl_idx, pwrb,
4557 io_task->psgl_handle->sgl_index);
4558
4559 hwi_write_sgl_v2(pwrb, sg, num_sg, io_task);
4560 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, pwrb,
John Soni Jose340c99e2015-08-20 04:44:30 +05304561 io_task->pwrb_handle->wrb_index);
4562 if (io_task->pwrb_context->plast_wrb)
4563 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb,
4564 io_task->pwrb_context->plast_wrb,
4565 io_task->pwrb_handle->wrb_index);
4566 io_task->pwrb_context->plast_wrb = pwrb;
John Soni Jose09a10932012-10-20 04:44:23 +05304567
4568 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb));
4569
4570 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
4571 doorbell |= (io_task->pwrb_handle->wrb_index &
4572 DB_DEF_PDU_WRB_INDEX_MASK) <<
4573 DB_DEF_PDU_WRB_INDEX_SHIFT;
4574 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -07004575 iowrite32(doorbell, phba->db_va +
4576 beiscsi_conn->doorbell_offset);
John Soni Jose09a10932012-10-20 04:44:23 +05304577 return 0;
4578}
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304579
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304580static int beiscsi_iotask(struct iscsi_task *task, struct scatterlist *sg,
4581 unsigned int num_sg, unsigned int xferlen,
4582 unsigned int writedir)
4583{
4584
4585 struct beiscsi_io_task *io_task = task->dd_data;
4586 struct iscsi_conn *conn = task->conn;
4587 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4588 struct beiscsi_hba *phba = beiscsi_conn->phba;
4589 struct iscsi_wrb *pwrb = NULL;
4590 unsigned int doorbell = 0;
4591
4592 pwrb = io_task->pwrb_handle->pwrb;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304593 io_task->bhs_len = sizeof(struct be_cmd_bhs);
4594
4595 if (writedir) {
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304596 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
4597 INI_WR_CMD);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304598 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 1);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304599 } else {
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304600 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
4601 INI_RD_CMD);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304602 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0);
4603 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304604
John Soni Jose09a10932012-10-20 04:44:23 +05304605 io_task->wrb_type = AMAP_GET_BITS(struct amap_iscsi_wrb,
4606 type, pwrb);
4607
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304608 AMAP_SET_BITS(struct amap_iscsi_wrb, lun, pwrb,
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05004609 cpu_to_be16(*(unsigned short *)
4610 &io_task->cmd_bhs->iscsi_hdr.lun));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304611 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb, xferlen);
4612 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb,
4613 io_task->pwrb_handle->wrb_index);
4614 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb,
4615 be32_to_cpu(task->cmdsn));
4616 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb,
4617 io_task->psgl_handle->sgl_index);
4618
4619 hwi_write_sgl(pwrb, sg, num_sg, io_task);
4620
4621 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb,
John Soni Jose340c99e2015-08-20 04:44:30 +05304622 io_task->pwrb_handle->wrb_index);
4623 if (io_task->pwrb_context->plast_wrb)
4624 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb,
4625 io_task->pwrb_context->plast_wrb,
4626 io_task->pwrb_handle->wrb_index);
4627 io_task->pwrb_context->plast_wrb = pwrb;
4628
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304629 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb));
4630
4631 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304632 doorbell |= (io_task->pwrb_handle->wrb_index &
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304633 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT;
4634 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
4635
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -07004636 iowrite32(doorbell, phba->db_va +
4637 beiscsi_conn->doorbell_offset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304638 return 0;
4639}
4640
4641static int beiscsi_mtask(struct iscsi_task *task)
4642{
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05304643 struct beiscsi_io_task *io_task = task->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304644 struct iscsi_conn *conn = task->conn;
4645 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4646 struct beiscsi_hba *phba = beiscsi_conn->phba;
4647 struct iscsi_wrb *pwrb = NULL;
4648 unsigned int doorbell = 0;
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05304649 unsigned int cid;
John Soni Jose09a10932012-10-20 04:44:23 +05304650 unsigned int pwrb_typeoffset = 0;
Alexey Khoroshilove0493622016-01-16 00:45:34 +03004651 int ret = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304652
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304653 cid = beiscsi_conn->beiscsi_conn_cid;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304654 pwrb = io_task->pwrb_handle->pwrb;
John Soni Jose09a10932012-10-20 04:44:23 +05304655
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004656 if (is_chip_be2_be3r(phba)) {
John Soni Jose09a10932012-10-20 04:44:23 +05304657 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb,
4658 be32_to_cpu(task->cmdsn));
4659 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb,
4660 io_task->pwrb_handle->wrb_index);
4661 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb,
4662 io_task->psgl_handle->sgl_index);
4663 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb,
4664 task->data_count);
4665 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb,
John Soni Jose340c99e2015-08-20 04:44:30 +05304666 io_task->pwrb_handle->wrb_index);
4667 if (io_task->pwrb_context->plast_wrb)
4668 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb,
4669 io_task->pwrb_context->plast_wrb,
4670 io_task->pwrb_handle->wrb_index);
4671 io_task->pwrb_context->plast_wrb = pwrb;
4672
John Soni Jose09a10932012-10-20 04:44:23 +05304673 pwrb_typeoffset = BE_WRB_TYPE_OFFSET;
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004674 } else {
4675 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, cmdsn_itt, pwrb,
4676 be32_to_cpu(task->cmdsn));
4677 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, wrb_idx, pwrb,
4678 io_task->pwrb_handle->wrb_index);
4679 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sgl_idx, pwrb,
4680 io_task->psgl_handle->sgl_index);
4681 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, r2t_exp_dtl, pwrb,
4682 task->data_count);
4683 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, pwrb,
John Soni Jose340c99e2015-08-20 04:44:30 +05304684 io_task->pwrb_handle->wrb_index);
4685 if (io_task->pwrb_context->plast_wrb)
4686 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb,
4687 io_task->pwrb_context->plast_wrb,
4688 io_task->pwrb_handle->wrb_index);
4689 io_task->pwrb_context->plast_wrb = pwrb;
4690
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004691 pwrb_typeoffset = SKH_WRB_TYPE_OFFSET;
John Soni Jose09a10932012-10-20 04:44:23 +05304692 }
4693
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05304694
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304695 switch (task->hdr->opcode & ISCSI_OPCODE_MASK) {
4696 case ISCSI_OP_LOGIN:
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304697 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb, 1);
John Soni Jose09a10932012-10-20 04:44:23 +05304698 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset);
Alexey Khoroshilove0493622016-01-16 00:45:34 +03004699 ret = hwi_write_buffer(pwrb, task);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304700 break;
4701 case ISCSI_OP_NOOP_OUT:
Jayamohan Kallickal1390b012011-03-25 14:24:01 -07004702 if (task->hdr->ttt != ISCSI_RESERVED_TAG) {
John Soni Jose09a10932012-10-20 04:44:23 +05304703 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004704 if (is_chip_be2_be3r(phba))
4705 AMAP_SET_BITS(struct amap_iscsi_wrb,
John Soni Jose09a10932012-10-20 04:44:23 +05304706 dmsg, pwrb, 1);
4707 else
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004708 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
John Soni Jose09a10932012-10-20 04:44:23 +05304709 dmsg, pwrb, 1);
Jayamohan Kallickal1390b012011-03-25 14:24:01 -07004710 } else {
John Soni Jose09a10932012-10-20 04:44:23 +05304711 ADAPTER_SET_WRB_TYPE(pwrb, INI_RD_CMD, pwrb_typeoffset);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004712 if (is_chip_be2_be3r(phba))
4713 AMAP_SET_BITS(struct amap_iscsi_wrb,
John Soni Jose09a10932012-10-20 04:44:23 +05304714 dmsg, pwrb, 0);
4715 else
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004716 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
John Soni Jose09a10932012-10-20 04:44:23 +05304717 dmsg, pwrb, 0);
Jayamohan Kallickal1390b012011-03-25 14:24:01 -07004718 }
Alexey Khoroshilove0493622016-01-16 00:45:34 +03004719 ret = hwi_write_buffer(pwrb, task);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304720 break;
4721 case ISCSI_OP_TEXT:
John Soni Jose09a10932012-10-20 04:44:23 +05304722 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset);
Alexey Khoroshilove0493622016-01-16 00:45:34 +03004723 ret = hwi_write_buffer(pwrb, task);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304724 break;
4725 case ISCSI_OP_SCSI_TMFUNC:
John Soni Jose09a10932012-10-20 04:44:23 +05304726 ADAPTER_SET_WRB_TYPE(pwrb, INI_TMF_CMD, pwrb_typeoffset);
Alexey Khoroshilove0493622016-01-16 00:45:34 +03004727 ret = hwi_write_buffer(pwrb, task);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304728 break;
4729 case ISCSI_OP_LOGOUT:
John Soni Jose09a10932012-10-20 04:44:23 +05304730 ADAPTER_SET_WRB_TYPE(pwrb, HWH_TYPE_LOGOUT, pwrb_typeoffset);
Alexey Khoroshilove0493622016-01-16 00:45:34 +03004731 ret = hwi_write_buffer(pwrb, task);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304732 break;
4733
4734 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +05304735 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
4736 "BM_%d : opcode =%d Not supported\n",
4737 task->hdr->opcode & ISCSI_OPCODE_MASK);
4738
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304739 return -EINVAL;
4740 }
4741
Alexey Khoroshilove0493622016-01-16 00:45:34 +03004742 if (ret)
4743 return ret;
4744
John Soni Jose09a10932012-10-20 04:44:23 +05304745 /* Set the task type */
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004746 io_task->wrb_type = (is_chip_be2_be3r(phba)) ?
4747 AMAP_GET_BITS(struct amap_iscsi_wrb, type, pwrb) :
4748 AMAP_GET_BITS(struct amap_iscsi_wrb_v2, type, pwrb);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304749
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304750 doorbell |= cid & DB_WRB_POST_CID_MASK;
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304751 doorbell |= (io_task->pwrb_handle->wrb_index &
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304752 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT;
4753 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -07004754 iowrite32(doorbell, phba->db_va +
4755 beiscsi_conn->doorbell_offset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304756 return 0;
4757}
4758
4759static int beiscsi_task_xmit(struct iscsi_task *task)
4760{
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304761 struct beiscsi_io_task *io_task = task->dd_data;
4762 struct scsi_cmnd *sc = task->sc;
Jitendra Bhivare18683792016-02-04 15:49:18 +05304763 struct beiscsi_hba *phba;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304764 struct scatterlist *sg;
4765 int num_sg;
4766 unsigned int writedir = 0, xferlen = 0;
4767
Jitendra Bhivare9122e992016-08-19 15:20:11 +05304768 phba = io_task->conn->phba;
4769 /**
4770 * HBA in error includes BEISCSI_HBA_FW_TIMEOUT. IO path might be
4771 * operational if FW still gets heartbeat from EP FW. Is management
4772 * path really needed to continue further?
4773 */
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05304774 if (!beiscsi_hba_is_online(phba))
Jitendra Bhivare9122e992016-08-19 15:20:11 +05304775 return -EIO;
4776
Jitendra Bhivare18683792016-02-04 15:49:18 +05304777 if (!io_task->conn->login_in_progress)
4778 task->hdr->exp_statsn = 0;
John Soni Jose09a10932012-10-20 04:44:23 +05304779
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304780 if (!sc)
4781 return beiscsi_mtask(task);
4782
4783 io_task->scsi_cmnd = sc;
Jitendra Bhivare9122e992016-08-19 15:20:11 +05304784 io_task->num_sg = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304785 num_sg = scsi_dma_map(sc);
4786 if (num_sg < 0) {
Jayamohan Kallickalafb96052013-09-28 15:35:55 -07004787 beiscsi_log(phba, KERN_ERR,
4788 BEISCSI_LOG_IO | BEISCSI_LOG_ISCSI,
4789 "BM_%d : scsi_dma_map Failed "
4790 "Driver_ITT : 0x%x ITT : 0x%x Xferlen : 0x%x\n",
4791 be32_to_cpu(io_task->cmd_bhs->iscsi_hdr.itt),
4792 io_task->libiscsi_itt, scsi_bufflen(sc));
John Soni Jose99bc5d52012-08-20 23:00:18 +05304793
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304794 return num_sg;
4795 }
Jitendra Bhivare9122e992016-08-19 15:20:11 +05304796 /**
4797 * For scsi cmd task, check num_sg before unmapping in cleanup_task.
4798 * For management task, cleanup_task checks mtask_addr before unmapping.
4799 */
4800 io_task->num_sg = num_sg;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304801 xferlen = scsi_bufflen(sc);
4802 sg = scsi_sglist(sc);
John Soni Jose99bc5d52012-08-20 23:00:18 +05304803 if (sc->sc_data_direction == DMA_TO_DEVICE)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304804 writedir = 1;
Jitendra Bhivare45efc9402017-10-10 16:18:18 +05304805 else
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304806 writedir = 0;
John Soni Jose99bc5d52012-08-20 23:00:18 +05304807
Jitendra Bhivare45efc9402017-10-10 16:18:18 +05304808 return phba->iotask_fn(task, sg, num_sg, xferlen, writedir);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304809}
4810
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05004811/**
4812 * beiscsi_bsg_request - handle bsg request from ISCSI transport
4813 * @job: job to handle
4814 */
4815static int beiscsi_bsg_request(struct bsg_job *job)
4816{
4817 struct Scsi_Host *shost;
4818 struct beiscsi_hba *phba;
4819 struct iscsi_bsg_request *bsg_req = job->request;
4820 int rc = -EINVAL;
4821 unsigned int tag;
4822 struct be_dma_mem nonemb_cmd;
4823 struct be_cmd_resp_hdr *resp;
4824 struct iscsi_bsg_reply *bsg_reply = job->reply;
4825 unsigned short status, extd_status;
4826
4827 shost = iscsi_job_to_shost(job);
4828 phba = iscsi_host_priv(shost);
4829
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05304830 if (!beiscsi_hba_is_online(phba)) {
Jitendra Bhivare9122e992016-08-19 15:20:11 +05304831 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
4832 "BM_%d : HBA in error 0x%lx\n", phba->state);
4833 return -ENXIO;
4834 }
4835
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05004836 switch (bsg_req->msgcode) {
4837 case ISCSI_BSG_HST_VENDOR:
4838 nonemb_cmd.va = pci_alloc_consistent(phba->ctrl.pdev,
4839 job->request_payload.payload_len,
4840 &nonemb_cmd.dma);
4841 if (nonemb_cmd.va == NULL) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304842 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
4843 "BM_%d : Failed to allocate memory for "
4844 "beiscsi_bsg_request\n");
John Soni Jose8359c792012-10-20 04:43:03 +05304845 return -ENOMEM;
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05004846 }
4847 tag = mgmt_vendor_specific_fw_cmd(&phba->ctrl, phba, job,
4848 &nonemb_cmd);
4849 if (!tag) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304850 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
John Soni Jose8359c792012-10-20 04:43:03 +05304851 "BM_%d : MBX Tag Allocation Failed\n");
John Soni Jose99bc5d52012-08-20 23:00:18 +05304852
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05004853 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
4854 nonemb_cmd.va, nonemb_cmd.dma);
4855 return -EAGAIN;
John Soni Josee175def2012-10-20 04:45:40 +05304856 }
4857
4858 rc = wait_event_interruptible_timeout(
4859 phba->ctrl.mcc_wait[tag],
Jitendra Bhivare67296ad2016-02-04 15:49:10 +05304860 phba->ctrl.mcc_tag_status[tag],
John Soni Josee175def2012-10-20 04:45:40 +05304861 msecs_to_jiffies(
4862 BEISCSI_HOST_MBX_TIMEOUT));
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05304863
4864 if (!test_bit(BEISCSI_HBA_ONLINE, &phba->state)) {
4865 clear_bit(MCC_TAG_STATE_RUNNING,
4866 &phba->ctrl.ptag_state[tag].tag_state);
4867 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
4868 nonemb_cmd.va, nonemb_cmd.dma);
4869 return -EIO;
4870 }
Jitendra Bhivare67296ad2016-02-04 15:49:10 +05304871 extd_status = (phba->ctrl.mcc_tag_status[tag] &
4872 CQE_STATUS_ADDL_MASK) >> CQE_STATUS_ADDL_SHIFT;
4873 status = phba->ctrl.mcc_tag_status[tag] & CQE_STATUS_MASK;
Jitendra Bhivare090e2182016-02-04 15:49:17 +05304874 free_mcc_wrb(&phba->ctrl, tag);
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05004875 resp = (struct be_cmd_resp_hdr *)nonemb_cmd.va;
4876 sg_copy_from_buffer(job->reply_payload.sg_list,
4877 job->reply_payload.sg_cnt,
4878 nonemb_cmd.va, (resp->response_length
4879 + sizeof(*resp)));
4880 bsg_reply->reply_payload_rcv_len = resp->response_length;
4881 bsg_reply->result = status;
4882 bsg_job_done(job, bsg_reply->result,
4883 bsg_reply->reply_payload_rcv_len);
4884 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
4885 nonemb_cmd.va, nonemb_cmd.dma);
4886 if (status || extd_status) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304887 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
John Soni Jose8359c792012-10-20 04:43:03 +05304888 "BM_%d : MBX Cmd Failed"
John Soni Jose99bc5d52012-08-20 23:00:18 +05304889 " status = %d extd_status = %d\n",
4890 status, extd_status);
4891
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05004892 return -EIO;
John Soni Jose8359c792012-10-20 04:43:03 +05304893 } else {
4894 rc = 0;
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05004895 }
4896 break;
4897
4898 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +05304899 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
4900 "BM_%d : Unsupported bsg command: 0x%x\n",
4901 bsg_req->msgcode);
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05004902 break;
4903 }
4904
4905 return rc;
4906}
4907
Baoyou Xie0825b8e2016-09-26 20:00:59 +08004908static void beiscsi_hba_attrs_init(struct beiscsi_hba *phba)
John Soni Jose99bc5d52012-08-20 23:00:18 +05304909{
4910 /* Set the logging parameter */
4911 beiscsi_log_enable_init(phba, beiscsi_log_enable);
4912}
4913
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05304914void beiscsi_start_boot_work(struct beiscsi_hba *phba, unsigned int s_handle)
4915{
4916 if (phba->boot_struct.boot_kset)
4917 return;
4918
4919 /* skip if boot work is already in progress */
4920 if (test_and_set_bit(BEISCSI_HBA_BOOT_WORK, &phba->state))
4921 return;
4922
4923 phba->boot_struct.retry = 3;
4924 phba->boot_struct.tag = 0;
4925 phba->boot_struct.s_handle = s_handle;
4926 phba->boot_struct.action = BEISCSI_BOOT_GET_SHANDLE;
4927 schedule_work(&phba->boot_work);
4928}
4929
Jitendra Bhivare8d9ecd42017-10-10 16:18:11 +05304930/**
4931 * Boot flag info for iscsi-utilities
4932 * Bit 0 Block valid flag
4933 * Bit 1 Firmware booting selected
4934 */
4935#define BEISCSI_SYSFS_ISCSI_BOOT_FLAGS 3
4936
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05304937static ssize_t beiscsi_show_boot_tgt_info(void *data, int type, char *buf)
4938{
4939 struct beiscsi_hba *phba = data;
4940 struct mgmt_session_info *boot_sess = &phba->boot_struct.boot_sess;
4941 struct mgmt_conn_info *boot_conn = &boot_sess->conn_list[0];
4942 char *str = buf;
4943 int rc = -EPERM;
4944
4945 switch (type) {
4946 case ISCSI_BOOT_TGT_NAME:
4947 rc = sprintf(buf, "%.*s\n",
4948 (int)strlen(boot_sess->target_name),
4949 (char *)&boot_sess->target_name);
4950 break;
4951 case ISCSI_BOOT_TGT_IP_ADDR:
4952 if (boot_conn->dest_ipaddr.ip_type == BEISCSI_IP_TYPE_V4)
4953 rc = sprintf(buf, "%pI4\n",
4954 (char *)&boot_conn->dest_ipaddr.addr);
4955 else
4956 rc = sprintf(str, "%pI6\n",
4957 (char *)&boot_conn->dest_ipaddr.addr);
4958 break;
4959 case ISCSI_BOOT_TGT_PORT:
4960 rc = sprintf(str, "%d\n", boot_conn->dest_port);
4961 break;
4962
4963 case ISCSI_BOOT_TGT_CHAP_NAME:
4964 rc = sprintf(str, "%.*s\n",
4965 boot_conn->negotiated_login_options.auth_data.chap.
4966 target_chap_name_length,
4967 (char *)&boot_conn->negotiated_login_options.
4968 auth_data.chap.target_chap_name);
4969 break;
4970 case ISCSI_BOOT_TGT_CHAP_SECRET:
4971 rc = sprintf(str, "%.*s\n",
4972 boot_conn->negotiated_login_options.auth_data.chap.
4973 target_secret_length,
4974 (char *)&boot_conn->negotiated_login_options.
4975 auth_data.chap.target_secret);
4976 break;
4977 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
4978 rc = sprintf(str, "%.*s\n",
4979 boot_conn->negotiated_login_options.auth_data.chap.
4980 intr_chap_name_length,
4981 (char *)&boot_conn->negotiated_login_options.
4982 auth_data.chap.intr_chap_name);
4983 break;
4984 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
4985 rc = sprintf(str, "%.*s\n",
4986 boot_conn->negotiated_login_options.auth_data.chap.
4987 intr_secret_length,
4988 (char *)&boot_conn->negotiated_login_options.
4989 auth_data.chap.intr_secret);
4990 break;
4991 case ISCSI_BOOT_TGT_FLAGS:
Jitendra Bhivare8d9ecd42017-10-10 16:18:11 +05304992 rc = sprintf(str, "%d\n", BEISCSI_SYSFS_ISCSI_BOOT_FLAGS);
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05304993 break;
4994 case ISCSI_BOOT_TGT_NIC_ASSOC:
4995 rc = sprintf(str, "0\n");
4996 break;
4997 }
4998 return rc;
4999}
5000
5001static ssize_t beiscsi_show_boot_ini_info(void *data, int type, char *buf)
5002{
5003 struct beiscsi_hba *phba = data;
5004 char *str = buf;
5005 int rc = -EPERM;
5006
5007 switch (type) {
5008 case ISCSI_BOOT_INI_INITIATOR_NAME:
5009 rc = sprintf(str, "%s\n",
5010 phba->boot_struct.boot_sess.initiator_iscsiname);
5011 break;
5012 }
5013 return rc;
5014}
5015
5016static ssize_t beiscsi_show_boot_eth_info(void *data, int type, char *buf)
5017{
5018 struct beiscsi_hba *phba = data;
5019 char *str = buf;
5020 int rc = -EPERM;
5021
5022 switch (type) {
5023 case ISCSI_BOOT_ETH_FLAGS:
Jitendra Bhivare8d9ecd42017-10-10 16:18:11 +05305024 rc = sprintf(str, "%d\n", BEISCSI_SYSFS_ISCSI_BOOT_FLAGS);
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05305025 break;
5026 case ISCSI_BOOT_ETH_INDEX:
5027 rc = sprintf(str, "0\n");
5028 break;
5029 case ISCSI_BOOT_ETH_MAC:
5030 rc = beiscsi_get_macaddr(str, phba);
5031 break;
5032 }
5033 return rc;
5034}
5035
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05305036static umode_t beiscsi_tgt_get_attr_visibility(void *data, int type)
5037{
5038 umode_t rc = 0;
5039
5040 switch (type) {
5041 case ISCSI_BOOT_TGT_NAME:
5042 case ISCSI_BOOT_TGT_IP_ADDR:
5043 case ISCSI_BOOT_TGT_PORT:
5044 case ISCSI_BOOT_TGT_CHAP_NAME:
5045 case ISCSI_BOOT_TGT_CHAP_SECRET:
5046 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
5047 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
5048 case ISCSI_BOOT_TGT_NIC_ASSOC:
5049 case ISCSI_BOOT_TGT_FLAGS:
5050 rc = S_IRUGO;
5051 break;
5052 }
5053 return rc;
5054}
5055
5056static umode_t beiscsi_ini_get_attr_visibility(void *data, int type)
5057{
5058 umode_t rc = 0;
5059
5060 switch (type) {
5061 case ISCSI_BOOT_INI_INITIATOR_NAME:
5062 rc = S_IRUGO;
5063 break;
5064 }
5065 return rc;
5066}
5067
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05305068static umode_t beiscsi_eth_get_attr_visibility(void *data, int type)
5069{
5070 umode_t rc = 0;
5071
5072 switch (type) {
5073 case ISCSI_BOOT_ETH_FLAGS:
5074 case ISCSI_BOOT_ETH_MAC:
5075 case ISCSI_BOOT_ETH_INDEX:
5076 rc = S_IRUGO;
5077 break;
5078 }
5079 return rc;
5080}
5081
5082static void beiscsi_boot_kobj_release(void *data)
5083{
5084 struct beiscsi_hba *phba = data;
5085
5086 scsi_host_put(phba->shost);
5087}
5088
5089static int beiscsi_boot_create_kset(struct beiscsi_hba *phba)
5090{
5091 struct boot_struct *bs = &phba->boot_struct;
5092 struct iscsi_boot_kobj *boot_kobj;
5093
5094 if (bs->boot_kset) {
5095 __beiscsi_log(phba, KERN_ERR,
5096 "BM_%d: boot_kset already created\n");
5097 return 0;
5098 }
5099
5100 bs->boot_kset = iscsi_boot_create_host_kset(phba->shost->host_no);
5101 if (!bs->boot_kset) {
5102 __beiscsi_log(phba, KERN_ERR,
5103 "BM_%d: boot_kset alloc failed\n");
5104 return -ENOMEM;
5105 }
5106
5107 /* get shost ref because the show function will refer phba */
5108 if (!scsi_host_get(phba->shost))
5109 goto free_kset;
5110
5111 boot_kobj = iscsi_boot_create_target(bs->boot_kset, 0, phba,
5112 beiscsi_show_boot_tgt_info,
5113 beiscsi_tgt_get_attr_visibility,
5114 beiscsi_boot_kobj_release);
5115 if (!boot_kobj)
5116 goto put_shost;
5117
5118 if (!scsi_host_get(phba->shost))
5119 goto free_kset;
5120
5121 boot_kobj = iscsi_boot_create_initiator(bs->boot_kset, 0, phba,
5122 beiscsi_show_boot_ini_info,
5123 beiscsi_ini_get_attr_visibility,
5124 beiscsi_boot_kobj_release);
5125 if (!boot_kobj)
5126 goto put_shost;
5127
5128 if (!scsi_host_get(phba->shost))
5129 goto free_kset;
5130
5131 boot_kobj = iscsi_boot_create_ethernet(bs->boot_kset, 0, phba,
5132 beiscsi_show_boot_eth_info,
5133 beiscsi_eth_get_attr_visibility,
5134 beiscsi_boot_kobj_release);
5135 if (!boot_kobj)
5136 goto put_shost;
5137
5138 return 0;
5139
5140put_shost:
5141 scsi_host_put(phba->shost);
5142free_kset:
5143 iscsi_boot_destroy_kset(bs->boot_kset);
5144 bs->boot_kset = NULL;
5145 return -ENOMEM;
5146}
5147
5148static void beiscsi_boot_work(struct work_struct *work)
5149{
5150 struct beiscsi_hba *phba =
5151 container_of(work, struct beiscsi_hba, boot_work);
5152 struct boot_struct *bs = &phba->boot_struct;
5153 unsigned int tag = 0;
5154
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305155 if (!beiscsi_hba_is_online(phba))
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05305156 return;
5157
5158 beiscsi_log(phba, KERN_INFO,
5159 BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX,
5160 "BM_%d : %s action %d\n",
5161 __func__, phba->boot_struct.action);
5162
5163 switch (phba->boot_struct.action) {
5164 case BEISCSI_BOOT_REOPEN_SESS:
5165 tag = beiscsi_boot_reopen_sess(phba);
5166 break;
5167 case BEISCSI_BOOT_GET_SHANDLE:
5168 tag = __beiscsi_boot_get_shandle(phba, 1);
5169 break;
5170 case BEISCSI_BOOT_GET_SINFO:
5171 tag = beiscsi_boot_get_sinfo(phba);
5172 break;
5173 case BEISCSI_BOOT_LOGOUT_SESS:
5174 tag = beiscsi_boot_logout_sess(phba);
5175 break;
5176 case BEISCSI_BOOT_CREATE_KSET:
5177 beiscsi_boot_create_kset(phba);
5178 /**
5179 * updated boot_kset is made visible to all before
5180 * ending the boot work.
5181 */
5182 mb();
5183 clear_bit(BEISCSI_HBA_BOOT_WORK, &phba->state);
5184 return;
5185 }
5186 if (!tag) {
5187 if (bs->retry--)
5188 schedule_work(&phba->boot_work);
5189 else
5190 clear_bit(BEISCSI_HBA_BOOT_WORK, &phba->state);
5191 }
5192}
5193
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305194static void beiscsi_eqd_update_work(struct work_struct *work)
5195{
5196 struct hwi_context_memory *phwi_context;
5197 struct be_set_eqd set_eqd[MAX_CPUS];
5198 struct hwi_controller *phwi_ctrlr;
5199 struct be_eq_obj *pbe_eq;
5200 struct beiscsi_hba *phba;
5201 unsigned int pps, delta;
5202 struct be_aic_obj *aic;
5203 int eqd, i, num = 0;
5204 unsigned long now;
5205
5206 phba = container_of(work, struct beiscsi_hba, eqd_update.work);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305207 if (!beiscsi_hba_is_online(phba))
Jitendra Bhivare9122e992016-08-19 15:20:11 +05305208 return;
5209
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04005210 phwi_ctrlr = phba->phwi_ctrlr;
5211 phwi_context = phwi_ctrlr->phwi_ctxt;
5212
5213 for (i = 0; i <= phba->num_cpus; i++) {
5214 aic = &phba->aic_obj[i];
5215 pbe_eq = &phwi_context->be_eq[i];
5216 now = jiffies;
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305217 if (!aic->jiffies || time_before(now, aic->jiffies) ||
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04005218 pbe_eq->cq_count < aic->eq_prev) {
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305219 aic->jiffies = now;
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04005220 aic->eq_prev = pbe_eq->cq_count;
5221 continue;
5222 }
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305223 delta = jiffies_to_msecs(now - aic->jiffies);
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04005224 pps = (((u32)(pbe_eq->cq_count - aic->eq_prev) * 1000) / delta);
5225 eqd = (pps / 1500) << 2;
5226
5227 if (eqd < 8)
5228 eqd = 0;
Jitendra Bhivare45efc9402017-10-10 16:18:18 +05305229 eqd = min_t(u32, eqd, BEISCSI_EQ_DELAY_MAX);
5230 eqd = max_t(u32, eqd, BEISCSI_EQ_DELAY_MIN);
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04005231
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305232 aic->jiffies = now;
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04005233 aic->eq_prev = pbe_eq->cq_count;
5234
5235 if (eqd != aic->prev_eqd) {
5236 set_eqd[num].delay_multiplier = (eqd * 65)/100;
5237 set_eqd[num].eq_id = pbe_eq->q.id;
5238 aic->prev_eqd = eqd;
5239 num++;
5240 }
5241 }
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305242 if (num)
5243 /* completion of this is ignored */
5244 beiscsi_modify_eq_delay(phba, set_eqd, num);
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04005245
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305246 schedule_delayed_work(&phba->eqd_update,
5247 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL));
John Soni Jose7a158002012-10-20 04:45:51 +05305248}
5249
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305250static void beiscsi_hw_tpe_check(unsigned long ptr)
5251{
5252 struct beiscsi_hba *phba;
5253 u32 wait;
5254
5255 phba = (struct beiscsi_hba *)ptr;
5256 /* if not TPE, do nothing */
5257 if (!beiscsi_detect_tpe(phba))
5258 return;
5259
5260 /* wait default 4000ms before recovering */
5261 wait = 4000;
5262 if (phba->ue2rp > BEISCSI_UE_DETECT_INTERVAL)
5263 wait = phba->ue2rp - BEISCSI_UE_DETECT_INTERVAL;
5264 queue_delayed_work(phba->wq, &phba->recover_port,
5265 msecs_to_jiffies(wait));
5266}
5267
5268static void beiscsi_hw_health_check(unsigned long ptr)
5269{
5270 struct beiscsi_hba *phba;
5271
5272 phba = (struct beiscsi_hba *)ptr;
5273 beiscsi_detect_ue(phba);
5274 if (beiscsi_detect_ue(phba)) {
5275 __beiscsi_log(phba, KERN_ERR,
5276 "BM_%d : port in error: %lx\n", phba->state);
Jitendra Bhivare10e1a442016-08-19 15:20:19 +05305277 /* sessions are no longer valid, so first fail the sessions */
5278 queue_work(phba->wq, &phba->sess_work);
5279
5280 /* detect UER supported */
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305281 if (!test_bit(BEISCSI_HBA_UER_SUPP, &phba->state))
5282 return;
5283 /* modify this timer to check TPE */
5284 phba->hw_check.function = beiscsi_hw_tpe_check;
5285 }
5286
5287 mod_timer(&phba->hw_check,
5288 jiffies + msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL));
5289}
5290
5291/*
5292 * beiscsi_enable_port()- Enables the disabled port.
5293 * Only port resources freed in disable function are reallocated.
5294 * This is called in HBA error handling path.
5295 *
5296 * @phba: Instance of driver private structure
5297 *
5298 **/
5299static int beiscsi_enable_port(struct beiscsi_hba *phba)
5300{
5301 struct hwi_context_memory *phwi_context;
5302 struct hwi_controller *phwi_ctrlr;
5303 struct be_eq_obj *pbe_eq;
5304 int ret, i;
5305
5306 if (test_bit(BEISCSI_HBA_ONLINE, &phba->state)) {
5307 __beiscsi_log(phba, KERN_ERR,
5308 "BM_%d : %s : port is online %lx\n",
5309 __func__, phba->state);
5310 return 0;
5311 }
5312
5313 ret = beiscsi_init_sliport(phba);
5314 if (ret)
5315 return ret;
5316
Christoph Hellwig83148862017-01-13 17:29:48 +01005317 be2iscsi_enable_msix(phba);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305318
5319 beiscsi_get_params(phba);
Jitendra Bhivare1cb3c3f2017-10-10 16:18:17 +05305320 beiscsi_set_host_data(phba);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305321 /* Re-enable UER. If different TPE occurs then it is recoverable. */
5322 beiscsi_set_uer_feature(phba);
5323
5324 phba->shost->max_id = phba->params.cxns_per_ctrl;
5325 phba->shost->can_queue = phba->params.ios_per_ctrl;
Jitendra Bhivaredd940972016-12-13 15:56:04 +05305326 ret = beiscsi_init_port(phba);
5327 if (ret < 0) {
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305328 __beiscsi_log(phba, KERN_ERR,
Jitendra Bhivaredd940972016-12-13 15:56:04 +05305329 "BM_%d : init port failed\n");
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305330 goto disable_msix;
5331 }
5332
5333 for (i = 0; i < MAX_MCC_CMD; i++) {
5334 init_waitqueue_head(&phba->ctrl.mcc_wait[i + 1]);
5335 phba->ctrl.mcc_tag[i] = i + 1;
5336 phba->ctrl.mcc_tag_status[i + 1] = 0;
5337 phba->ctrl.mcc_tag_available++;
5338 }
5339
5340 phwi_ctrlr = phba->phwi_ctrlr;
5341 phwi_context = phwi_ctrlr->phwi_ctxt;
5342 for (i = 0; i < phba->num_cpus; i++) {
5343 pbe_eq = &phwi_context->be_eq[i];
5344 irq_poll_init(&pbe_eq->iopoll, be_iopoll_budget, be_iopoll);
5345 }
5346
Christoph Hellwig83148862017-01-13 17:29:48 +01005347 i = (phba->pcidev->msix_enabled) ? i : 0;
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305348 /* Work item for MCC handling */
5349 pbe_eq = &phwi_context->be_eq[i];
5350 INIT_WORK(&pbe_eq->mcc_work, beiscsi_mcc_work);
5351
5352 ret = beiscsi_init_irqs(phba);
5353 if (ret < 0) {
5354 __beiscsi_log(phba, KERN_ERR,
5355 "BM_%d : setup IRQs failed %d\n", ret);
5356 goto cleanup_port;
5357 }
5358 hwi_enable_intr(phba);
5359 /* port operational: clear all error bits */
5360 set_bit(BEISCSI_HBA_ONLINE, &phba->state);
5361 __beiscsi_log(phba, KERN_INFO,
5362 "BM_%d : port online: 0x%lx\n", phba->state);
5363
5364 /* start hw_check timer and eqd_update work */
5365 schedule_delayed_work(&phba->eqd_update,
5366 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL));
5367
5368 /**
5369 * Timer function gets modified for TPE detection.
5370 * Always reinit to do health check first.
5371 */
5372 phba->hw_check.function = beiscsi_hw_health_check;
5373 mod_timer(&phba->hw_check,
5374 jiffies + msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL));
5375 return 0;
5376
5377cleanup_port:
5378 for (i = 0; i < phba->num_cpus; i++) {
5379 pbe_eq = &phwi_context->be_eq[i];
5380 irq_poll_disable(&pbe_eq->iopoll);
5381 }
5382 hwi_cleanup_port(phba);
5383
5384disable_msix:
Christoph Hellwig83148862017-01-13 17:29:48 +01005385 pci_free_irq_vectors(phba->pcidev);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305386 return ret;
5387}
5388
5389/*
5390 * beiscsi_disable_port()- Disable port and cleanup driver resources.
5391 * This is called in HBA error handling and driver removal.
5392 * @phba: Instance Priv structure
5393 * @unload: indicate driver is unloading
5394 *
5395 * Free the OS and HW resources held by the driver
5396 **/
5397static void beiscsi_disable_port(struct beiscsi_hba *phba, int unload)
5398{
5399 struct hwi_context_memory *phwi_context;
5400 struct hwi_controller *phwi_ctrlr;
5401 struct be_eq_obj *pbe_eq;
Christoph Hellwig83148862017-01-13 17:29:48 +01005402 unsigned int i;
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305403
5404 if (!test_and_clear_bit(BEISCSI_HBA_ONLINE, &phba->state))
5405 return;
5406
5407 phwi_ctrlr = phba->phwi_ctrlr;
5408 phwi_context = phwi_ctrlr->phwi_ctxt;
5409 hwi_disable_intr(phba);
Jitendra Bhivare45371aa2017-10-10 16:18:13 +05305410 beiscsi_free_irqs(phba);
Christoph Hellwig83148862017-01-13 17:29:48 +01005411 pci_free_irq_vectors(phba->pcidev);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305412
5413 for (i = 0; i < phba->num_cpus; i++) {
5414 pbe_eq = &phwi_context->be_eq[i];
5415 irq_poll_disable(&pbe_eq->iopoll);
5416 }
5417 cancel_delayed_work_sync(&phba->eqd_update);
5418 cancel_work_sync(&phba->boot_work);
5419 /* WQ might be running cancel queued mcc_work if we are not exiting */
5420 if (!unload && beiscsi_hba_in_error(phba)) {
5421 pbe_eq = &phwi_context->be_eq[i];
5422 cancel_work_sync(&pbe_eq->mcc_work);
5423 }
5424 hwi_cleanup_port(phba);
Jitendra Bhivaredd940972016-12-13 15:56:04 +05305425 beiscsi_cleanup_port(phba);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305426}
5427
Jitendra Bhivare10e1a442016-08-19 15:20:19 +05305428static void beiscsi_sess_work(struct work_struct *work)
5429{
5430 struct beiscsi_hba *phba;
5431
5432 phba = container_of(work, struct beiscsi_hba, sess_work);
5433 /*
5434 * This work gets scheduled only in case of HBA error.
5435 * Old sessions are gone so need to be re-established.
5436 * iscsi_session_failure needs process context hence this work.
5437 */
5438 iscsi_host_for_each_session(phba->shost, beiscsi_session_fail);
5439}
5440
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305441static void beiscsi_recover_port(struct work_struct *work)
5442{
5443 struct beiscsi_hba *phba;
5444
5445 phba = container_of(work, struct beiscsi_hba, recover_port.work);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305446 beiscsi_disable_port(phba, 0);
5447 beiscsi_enable_port(phba);
5448}
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005449
5450static pci_ers_result_t beiscsi_eeh_err_detected(struct pci_dev *pdev,
5451 pci_channel_state_t state)
5452{
5453 struct beiscsi_hba *phba = NULL;
5454
5455 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev);
Jitendra Bhivare9122e992016-08-19 15:20:11 +05305456 set_bit(BEISCSI_HBA_PCI_ERR, &phba->state);
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005457
5458 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5459 "BM_%d : EEH error detected\n");
5460
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305461 /* first stop UE detection when PCI error detected */
5462 del_timer_sync(&phba->hw_check);
5463 cancel_delayed_work_sync(&phba->recover_port);
5464
Jitendra Bhivare10e1a442016-08-19 15:20:19 +05305465 /* sessions are no longer valid, so first fail the sessions */
5466 iscsi_host_for_each_session(phba->shost, beiscsi_session_fail);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305467 beiscsi_disable_port(phba, 0);
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005468
5469 if (state == pci_channel_io_perm_failure) {
5470 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5471 "BM_%d : EEH : State PERM Failure");
5472 return PCI_ERS_RESULT_DISCONNECT;
5473 }
5474
5475 pci_disable_device(pdev);
5476
5477 /* The error could cause the FW to trigger a flash debug dump.
5478 * Resetting the card while flash dump is in progress
5479 * can cause it not to recover; wait for it to finish.
5480 * Wait only for first function as it is needed only once per
5481 * adapter.
5482 **/
5483 if (pdev->devfn == 0)
5484 ssleep(30);
5485
5486 return PCI_ERS_RESULT_NEED_RESET;
5487}
5488
5489static pci_ers_result_t beiscsi_eeh_reset(struct pci_dev *pdev)
5490{
5491 struct beiscsi_hba *phba = NULL;
5492 int status = 0;
5493
5494 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev);
5495
5496 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5497 "BM_%d : EEH Reset\n");
5498
5499 status = pci_enable_device(pdev);
5500 if (status)
5501 return PCI_ERS_RESULT_DISCONNECT;
5502
5503 pci_set_master(pdev);
5504 pci_set_power_state(pdev, PCI_D0);
5505 pci_restore_state(pdev);
5506
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05305507 status = beiscsi_check_fw_rdy(phba);
5508 if (status) {
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005509 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
5510 "BM_%d : EEH Reset Completed\n");
5511 } else {
5512 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
5513 "BM_%d : EEH Reset Completion Failure\n");
5514 return PCI_ERS_RESULT_DISCONNECT;
5515 }
5516
5517 pci_cleanup_aer_uncorrect_error_status(pdev);
5518 return PCI_ERS_RESULT_RECOVERED;
5519}
5520
5521static void beiscsi_eeh_resume(struct pci_dev *pdev)
5522{
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305523 struct beiscsi_hba *phba;
5524 int ret;
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005525
5526 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev);
5527 pci_save_state(pdev);
5528
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305529 ret = beiscsi_enable_port(phba);
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05305530 if (ret)
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305531 __beiscsi_log(phba, KERN_ERR,
5532 "BM_%d : AER EEH resume failed\n");
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005533}
5534
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005535static int beiscsi_dev_probe(struct pci_dev *pcidev,
5536 const struct pci_device_id *id)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305537{
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305538 struct hwi_context_memory *phwi_context;
Jitendra Bhivare29e80b72016-12-13 15:56:02 +05305539 struct hwi_controller *phwi_ctrlr;
5540 struct beiscsi_hba *phba = NULL;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305541 struct be_eq_obj *pbe_eq;
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05305542 unsigned int s_handle;
Jitendra Bhivare29e80b72016-12-13 15:56:02 +05305543 char wq_name[20];
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05305544 int ret, i;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305545
5546 ret = beiscsi_enable_pci(pcidev);
5547 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305548 dev_err(&pcidev->dev,
5549 "beiscsi_dev_probe - Failed to enable pci device\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305550 return ret;
5551 }
5552
5553 phba = beiscsi_hba_alloc(pcidev);
5554 if (!phba) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305555 dev_err(&pcidev->dev,
5556 "beiscsi_dev_probe - Failed in beiscsi_hba_alloc\n");
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05305557 ret = -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305558 goto disable_pci;
5559 }
5560
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005561 /* Enable EEH reporting */
5562 ret = pci_enable_pcie_error_reporting(pcidev);
5563 if (ret)
5564 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
5565 "BM_%d : PCIe Error Reporting "
5566 "Enabling Failed\n");
5567
5568 pci_save_state(pcidev);
5569
John Soni Jose99bc5d52012-08-20 23:00:18 +05305570 /* Initialize Driver configuration Paramters */
5571 beiscsi_hba_attrs_init(phba);
5572
Jayamohan Kallickal6c831852013-09-28 15:35:40 -07005573 phba->mac_addr_set = false;
John Soni Josee175def2012-10-20 04:45:40 +05305574
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +05305575 switch (pcidev->device) {
5576 case BE_DEVICE_ID1:
5577 case OC_DEVICE_ID1:
5578 case OC_DEVICE_ID2:
5579 phba->generation = BE_GEN2;
John Soni Jose09a10932012-10-20 04:44:23 +05305580 phba->iotask_fn = beiscsi_iotask;
Ketan Mukadam5fa7db22016-12-13 15:56:05 +05305581 dev_warn(&pcidev->dev,
5582 "Obsolete/Unsupported BE2 Adapter Family\n");
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +05305583 break;
5584 case BE_DEVICE_ID2:
5585 case OC_DEVICE_ID3:
5586 phba->generation = BE_GEN3;
John Soni Jose09a10932012-10-20 04:44:23 +05305587 phba->iotask_fn = beiscsi_iotask;
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +05305588 break;
John Soni Jose139a1b12012-10-20 04:43:20 +05305589 case OC_SKH_ID1:
5590 phba->generation = BE_GEN4;
John Soni Jose09a10932012-10-20 04:44:23 +05305591 phba->iotask_fn = beiscsi_iotask_v2;
Jayamohan Kallickalbf9131c2013-04-05 20:38:24 -07005592 break;
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +05305593 default:
5594 phba->generation = 0;
5595 }
5596
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305597 ret = be_ctrl_init(phba, pcidev);
5598 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305599 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05305600 "BM_%d : be_ctrl_init failed\n");
Jitendra Bhivare45371aa2017-10-10 16:18:13 +05305601 goto free_hba;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305602 }
5603
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05305604 ret = beiscsi_init_sliport(phba);
5605 if (ret)
Jitendra Bhivare45371aa2017-10-10 16:18:13 +05305606 goto free_hba;
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05305607
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305608 spin_lock_init(&phba->io_sgl_lock);
5609 spin_lock_init(&phba->mgmt_sgl_lock);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07005610 spin_lock_init(&phba->async_pdu_lock);
Jitendra Bhivare480195c2016-08-19 15:20:15 +05305611 ret = beiscsi_get_fw_config(&phba->ctrl, phba);
Jayamohan Kallickal7da50872010-01-05 05:04:12 +05305612 if (ret != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305613 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5614 "BM_%d : Error getting fw config\n");
Jayamohan Kallickal7da50872010-01-05 05:04:12 +05305615 goto free_port;
5616 }
Jitendra Bhivare480195c2016-08-19 15:20:15 +05305617 beiscsi_get_port_name(&phba->ctrl, phba);
Jitendra Bhivare4570f162016-01-20 14:10:54 +05305618 beiscsi_get_params(phba);
Jitendra Bhivare1cb3c3f2017-10-10 16:18:17 +05305619 beiscsi_set_host_data(phba);
Jitendra Bhivare66940952016-08-19 15:20:14 +05305620 beiscsi_set_uer_feature(phba);
Jayamohan Kallickal68c26a32013-09-28 15:35:54 -07005621
Christoph Hellwig83148862017-01-13 17:29:48 +01005622 be2iscsi_enable_msix(phba);
Jayamohan Kallickal68c26a32013-09-28 15:35:54 -07005623
5624 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
5625 "BM_%d : num_cpus = %d\n",
5626 phba->num_cpus);
5627
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07005628 phba->shost->max_id = phba->params.cxns_per_ctrl;
Jayamohan Kallickalaa874f02010-01-05 05:12:03 +05305629 phba->shost->can_queue = phba->params.ios_per_ctrl;
Jitendra Bhivaredd940972016-12-13 15:56:04 +05305630 ret = beiscsi_get_memory(phba);
5631 if (ret < 0) {
5632 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5633 "BM_%d : alloc host mem failed\n");
5634 goto free_port;
5635 }
5636
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305637 ret = beiscsi_init_port(phba);
5638 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305639 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jitendra Bhivaredd940972016-12-13 15:56:04 +05305640 "BM_%d : init port failed\n");
5641 beiscsi_free_mem(phba);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305642 goto free_port;
5643 }
5644
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005645 for (i = 0; i < MAX_MCC_CMD; i++) {
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05305646 init_waitqueue_head(&phba->ctrl.mcc_wait[i + 1]);
5647 phba->ctrl.mcc_tag[i] = i + 1;
Jitendra Bhivare67296ad2016-02-04 15:49:10 +05305648 phba->ctrl.mcc_tag_status[i + 1] = 0;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05305649 phba->ctrl.mcc_tag_available++;
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -05005650 memset(&phba->ctrl.ptag_state[i].tag_mem_state, 0,
Jayamohan Kallickal8fc01ea2014-05-05 21:41:28 -04005651 sizeof(struct be_dma_mem));
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05305652 }
5653
5654 phba->ctrl.mcc_alloc_index = phba->ctrl.mcc_free_index = 0;
5655
Jitendra Bhivare29e80b72016-12-13 15:56:02 +05305656 snprintf(wq_name, sizeof(wq_name), "beiscsi_%02x_wq",
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305657 phba->shost->host_no);
Jitendra Bhivare29e80b72016-12-13 15:56:02 +05305658 phba->wq = alloc_workqueue("%s", WQ_MEM_RECLAIM, 1, wq_name);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305659 if (!phba->wq) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305660 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5661 "BM_%d : beiscsi_dev_probe-"
5662 "Failed to allocate work queue\n");
Christophe JAILLETdeeea8e2016-08-26 15:09:06 +05305663 ret = -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305664 goto free_twq;
5665 }
5666
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305667 INIT_DELAYED_WORK(&phba->eqd_update, beiscsi_eqd_update_work);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305668
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305669 phwi_ctrlr = phba->phwi_ctrlr;
5670 phwi_context = phwi_ctrlr->phwi_ctxt;
John Soni Jose72fb46a2012-10-20 04:42:49 +05305671
Jens Axboe89f8b332014-03-13 09:38:42 -06005672 for (i = 0; i < phba->num_cpus; i++) {
John Soni Jose72fb46a2012-10-20 04:42:49 +05305673 pbe_eq = &phwi_context->be_eq[i];
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305674 irq_poll_init(&pbe_eq->iopoll, be_iopoll_budget, be_iopoll);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305675 }
John Soni Jose72fb46a2012-10-20 04:42:49 +05305676
Christoph Hellwig83148862017-01-13 17:29:48 +01005677 i = (phba->pcidev->msix_enabled) ? i : 0;
Jens Axboe89f8b332014-03-13 09:38:42 -06005678 /* Work item for MCC handling */
5679 pbe_eq = &phwi_context->be_eq[i];
Jitendra Bhivarea30950162016-08-19 15:20:10 +05305680 INIT_WORK(&pbe_eq->mcc_work, beiscsi_mcc_work);
Jens Axboe89f8b332014-03-13 09:38:42 -06005681
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305682 ret = beiscsi_init_irqs(phba);
5683 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305684 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5685 "BM_%d : beiscsi_dev_probe-"
5686 "Failed to beiscsi_init_irqs\n");
Jitendra Bhivare45371aa2017-10-10 16:18:13 +05305687 goto disable_iopoll;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305688 }
Jayamohan Kallickal238f6b72010-07-22 04:23:22 +05305689 hwi_enable_intr(phba);
Mike Christief457a462011-06-24 15:11:53 -05005690
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305691 ret = iscsi_host_add(phba->shost, &phba->pcidev->dev);
5692 if (ret)
Jitendra Bhivare45371aa2017-10-10 16:18:13 +05305693 goto free_irqs;
Jayamohan Kallickal0598b8a2014-05-05 21:41:25 -04005694
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305695 /* set online bit after port is operational */
5696 set_bit(BEISCSI_HBA_ONLINE, &phba->state);
5697 __beiscsi_log(phba, KERN_INFO,
5698 "BM_%d : port online: 0x%lx\n", phba->state);
5699
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05305700 INIT_WORK(&phba->boot_work, beiscsi_boot_work);
5701 ret = beiscsi_boot_get_shandle(phba, &s_handle);
5702 if (ret > 0) {
5703 beiscsi_start_boot_work(phba, s_handle);
5704 /**
5705 * Set this bit after starting the work to let
5706 * probe handle it first.
5707 * ASYNC event can too schedule this work.
Mike Christief457a462011-06-24 15:11:53 -05005708 */
Jitendra Bhivare50a4b822016-08-19 15:20:12 +05305709 set_bit(BEISCSI_HBA_BOOT_FOUND, &phba->state);
5710 }
Mike Christief457a462011-06-24 15:11:53 -05005711
Jitendra Bhivare96b48b92016-08-19 15:20:06 +05305712 beiscsi_iface_create_default(phba);
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305713 schedule_delayed_work(&phba->eqd_update,
5714 msecs_to_jiffies(BEISCSI_EQD_UPDATE_INTERVAL));
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305715
Jitendra Bhivare10e1a442016-08-19 15:20:19 +05305716 INIT_WORK(&phba->sess_work, beiscsi_sess_work);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305717 INIT_DELAYED_WORK(&phba->recover_port, beiscsi_recover_port);
Jitendra Bhivare10bcd472016-08-19 15:20:13 +05305718 /**
5719 * Start UE detection here. UE before this will cause stall in probe
5720 * and eventually fail the probe.
5721 */
5722 init_timer(&phba->hw_check);
5723 phba->hw_check.function = beiscsi_hw_health_check;
5724 phba->hw_check.data = (unsigned long)phba;
5725 mod_timer(&phba->hw_check,
5726 jiffies + msecs_to_jiffies(BEISCSI_UE_DETECT_INTERVAL));
John Soni Jose99bc5d52012-08-20 23:00:18 +05305727 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
5728 "\n\n\n BM_%d : SUCCESS - DRIVER LOADED\n\n\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305729 return 0;
5730
Jitendra Bhivare45371aa2017-10-10 16:18:13 +05305731free_irqs:
5732 hwi_disable_intr(phba);
5733 beiscsi_free_irqs(phba);
5734disable_iopoll:
Jens Axboe89f8b332014-03-13 09:38:42 -06005735 for (i = 0; i < phba->num_cpus; i++) {
5736 pbe_eq = &phwi_context->be_eq[i];
Christoph Hellwig511cbce2015-11-10 14:56:14 +01005737 irq_poll_disable(&pbe_eq->iopoll);
Jens Axboe89f8b332014-03-13 09:38:42 -06005738 }
Jitendra Bhivare45371aa2017-10-10 16:18:13 +05305739 destroy_workqueue(phba->wq);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305740free_twq:
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305741 hwi_cleanup_port(phba);
Jitendra Bhivare4d2ee1e2016-08-19 15:20:16 +05305742 beiscsi_cleanup_port(phba);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305743 beiscsi_free_mem(phba);
5744free_port:
5745 pci_free_consistent(phba->pcidev,
5746 phba->ctrl.mbox_mem_alloced.size,
5747 phba->ctrl.mbox_mem_alloced.va,
Jitendra Bhivare45371aa2017-10-10 16:18:13 +05305748 phba->ctrl.mbox_mem_alloced.dma);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305749 beiscsi_unmap_pci_function(phba);
Jitendra Bhivare45371aa2017-10-10 16:18:13 +05305750free_hba:
Christoph Hellwig83148862017-01-13 17:29:48 +01005751 pci_disable_msix(phba->pcidev);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305752 pci_dev_put(phba->pcidev);
5753 iscsi_host_free(phba->shost);
John Soni Jose2e7cee02015-02-12 06:45:47 +05305754 pci_set_drvdata(pcidev, NULL);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305755disable_pci:
John Soni Josee307f3a2015-04-25 08:17:19 +05305756 pci_release_regions(pcidev);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305757 pci_disable_device(pcidev);
5758 return ret;
5759}
5760
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305761static void beiscsi_remove(struct pci_dev *pcidev)
5762{
5763 struct beiscsi_hba *phba = NULL;
5764
5765 phba = pci_get_drvdata(pcidev);
5766 if (!phba) {
5767 dev_err(&pcidev->dev, "beiscsi_remove called with no phba\n");
5768 return;
5769 }
5770
5771 /* first stop UE detection before unloading */
5772 del_timer_sync(&phba->hw_check);
5773 cancel_delayed_work_sync(&phba->recover_port);
Jitendra Bhivare10e1a442016-08-19 15:20:19 +05305774 cancel_work_sync(&phba->sess_work);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305775
5776 beiscsi_iface_destroy_default(phba);
5777 iscsi_host_remove(phba->shost);
5778 beiscsi_disable_port(phba, 1);
5779
5780 /* after cancelling boot_work */
5781 iscsi_boot_destroy_kset(phba->boot_struct.boot_kset);
5782
5783 /* free all resources */
5784 destroy_workqueue(phba->wq);
Jitendra Bhivared1d5ca82016-08-19 15:20:18 +05305785 beiscsi_free_mem(phba);
5786
5787 /* ctrl uninit */
5788 beiscsi_unmap_pci_function(phba);
5789 pci_free_consistent(phba->pcidev,
5790 phba->ctrl.mbox_mem_alloced.size,
5791 phba->ctrl.mbox_mem_alloced.va,
5792 phba->ctrl.mbox_mem_alloced.dma);
5793
5794 pci_dev_put(phba->pcidev);
5795 iscsi_host_free(phba->shost);
5796 pci_disable_pcie_error_reporting(pcidev);
5797 pci_set_drvdata(pcidev, NULL);
5798 pci_release_regions(pcidev);
5799 pci_disable_device(pcidev);
5800}
5801
5802
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005803static struct pci_error_handlers beiscsi_eeh_handlers = {
5804 .error_detected = beiscsi_eeh_err_detected,
5805 .slot_reset = beiscsi_eeh_reset,
5806 .resume = beiscsi_eeh_resume,
5807};
5808
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305809struct iscsi_transport beiscsi_iscsi_transport = {
5810 .owner = THIS_MODULE,
5811 .name = DRV_NAME,
Jayamohan Kallickal9db0fb32010-01-05 05:12:43 +05305812 .caps = CAP_RECOVERY_L0 | CAP_HDRDGST | CAP_TEXT_NEGO |
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305813 CAP_MULTI_R2T | CAP_DATADGST | CAP_DATA_PATH_OFFLOAD,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305814 .create_session = beiscsi_session_create,
5815 .destroy_session = beiscsi_session_destroy,
5816 .create_conn = beiscsi_conn_create,
5817 .bind_conn = beiscsi_conn_bind,
5818 .destroy_conn = iscsi_conn_teardown,
Jitendra Bhivare96b48b92016-08-19 15:20:06 +05305819 .attr_is_visible = beiscsi_attr_is_visible,
5820 .set_iface_param = beiscsi_iface_set_param,
5821 .get_iface_param = beiscsi_iface_get_param,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305822 .set_param = beiscsi_set_param,
Mike Christiec7f7fd52011-02-16 15:04:41 -06005823 .get_conn_param = iscsi_conn_get_param,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305824 .get_session_param = iscsi_session_get_param,
5825 .get_host_param = beiscsi_get_host_param,
5826 .start_conn = beiscsi_conn_start,
Mike Christiefa95d202010-06-09 03:30:08 -05005827 .stop_conn = iscsi_conn_stop,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305828 .send_pdu = iscsi_conn_send_pdu,
5829 .xmit_task = beiscsi_task_xmit,
5830 .cleanup_task = beiscsi_cleanup_task,
5831 .alloc_pdu = beiscsi_alloc_pdu,
5832 .parse_pdu_itt = beiscsi_parse_pdu,
5833 .get_stats = beiscsi_conn_get_stats,
Mike Christiec7f7fd52011-02-16 15:04:41 -06005834 .get_ep_param = beiscsi_ep_get_param,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305835 .ep_connect = beiscsi_ep_connect,
5836 .ep_poll = beiscsi_ep_poll,
5837 .ep_disconnect = beiscsi_ep_disconnect,
5838 .session_recovery_timedout = iscsi_session_recovery_timedout,
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05005839 .bsg_request = beiscsi_bsg_request,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305840};
5841
5842static struct pci_driver beiscsi_pci_driver = {
5843 .name = DRV_NAME,
5844 .probe = beiscsi_dev_probe,
5845 .remove = beiscsi_remove,
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005846 .id_table = beiscsi_pci_id_table,
5847 .err_handler = &beiscsi_eeh_handlers
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305848};
5849
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305850static int __init beiscsi_module_init(void)
5851{
5852 int ret;
5853
5854 beiscsi_scsi_transport =
5855 iscsi_register_transport(&beiscsi_iscsi_transport);
5856 if (!beiscsi_scsi_transport) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305857 printk(KERN_ERR
5858 "beiscsi_module_init - Unable to register beiscsi transport.\n");
Jayamohan Kallickalf55a24f2010-01-23 05:37:40 +05305859 return -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305860 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05305861 printk(KERN_INFO "In beiscsi_module_init, tt=%p\n",
5862 &beiscsi_iscsi_transport);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305863
5864 ret = pci_register_driver(&beiscsi_pci_driver);
5865 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305866 printk(KERN_ERR
5867 "beiscsi_module_init - Unable to register beiscsi pci driver.\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305868 goto unregister_iscsi_transport;
5869 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305870 return 0;
5871
5872unregister_iscsi_transport:
5873 iscsi_unregister_transport(&beiscsi_iscsi_transport);
5874 return ret;
5875}
5876
5877static void __exit beiscsi_module_exit(void)
5878{
5879 pci_unregister_driver(&beiscsi_pci_driver);
5880 iscsi_unregister_transport(&beiscsi_iscsi_transport);
5881}
5882
5883module_init(beiscsi_module_init);
5884module_exit(beiscsi_module_exit);