blob: ca3dc4bfc4cf0eaab2c4f87ad1fc3e2fd2542672 [file] [log] [blame]
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301/**
Ketan Mukadamc4f39bd2015-07-04 04:12:33 +05302 * Copyright (C) 2005 - 2015 Emulex
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303 * All rights reserved.
4 *
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
7 * as published by the Free Software Foundation. The full GNU General
8 * Public License is included in this distribution in the file called COPYING.
9 *
Minh Tran4627de92015-05-14 23:16:17 -070010 * Written by: Jayamohan Kallickal (jayamohan.kallickal@avagotech.com)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053011 *
12 * Contact Information:
Minh Tran4627de92015-05-14 23:16:17 -070013 * linux-drivers@avagotech.com
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053014 *
Ketan Mukadamc4f39bd2015-07-04 04:12:33 +053015 * Emulex
Jayamohan Kallickal255fa9a2011-03-25 14:23:57 -070016 * 3333 Susan Street
17 * Costa Mesa, CA 92626
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053018 */
Jayamohan Kallickal255fa9a2011-03-25 14:23:57 -070019
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053020#include <linux/reboot.h>
21#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053023#include <linux/interrupt.h>
24#include <linux/blkdev.h>
25#include <linux/pci.h>
26#include <linux/string.h>
27#include <linux/kernel.h>
28#include <linux/semaphore.h>
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +053029#include <linux/iscsi_boot_sysfs.h>
Paul Gortmakeracf3368f2011-05-27 09:47:43 -040030#include <linux/module.h>
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -050031#include <linux/bsg-lib.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053032
33#include <scsi/libiscsi.h>
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -050034#include <scsi/scsi_bsg_iscsi.h>
35#include <scsi/scsi_netlink.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053036#include <scsi/scsi_transport_iscsi.h>
37#include <scsi/scsi_transport.h>
38#include <scsi/scsi_cmnd.h>
39#include <scsi/scsi_device.h>
40#include <scsi/scsi_host.h>
41#include <scsi/scsi.h>
42#include "be_main.h"
43#include "be_iscsi.h"
44#include "be_mgmt.h"
John Soni Jose0a513dd2012-08-20 23:00:55 +053045#include "be_cmds.h"
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053046
47static unsigned int be_iopoll_budget = 10;
48static unsigned int be_max_phys_size = 64;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +053049static unsigned int enable_msix = 1;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053050
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053051MODULE_DESCRIPTION(DRV_DESC " " BUILD_STR);
Jayamohan Kallickal76d15db2012-04-03 23:41:46 -050052MODULE_VERSION(BUILD_STR);
Ketan Mukadamc4f39bd2015-07-04 04:12:33 +053053MODULE_AUTHOR("Emulex Corporation");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053054MODULE_LICENSE("GPL");
55module_param(be_iopoll_budget, int, 0);
56module_param(enable_msix, int, 0);
57module_param(be_max_phys_size, uint, S_IRUGO);
John Soni Jose99bc5d52012-08-20 23:00:18 +053058MODULE_PARM_DESC(be_max_phys_size,
59 "Maximum Size (In Kilobytes) of physically contiguous "
60 "memory that can be allocated. Range is 16 - 128");
61
62#define beiscsi_disp_param(_name)\
63ssize_t \
64beiscsi_##_name##_disp(struct device *dev,\
65 struct device_attribute *attrib, char *buf) \
66{ \
67 struct Scsi_Host *shost = class_to_shost(dev);\
68 struct beiscsi_hba *phba = iscsi_host_priv(shost); \
69 uint32_t param_val = 0; \
70 param_val = phba->attr_##_name;\
71 return snprintf(buf, PAGE_SIZE, "%d\n",\
72 phba->attr_##_name);\
73}
74
75#define beiscsi_change_param(_name, _minval, _maxval, _defaval)\
76int \
77beiscsi_##_name##_change(struct beiscsi_hba *phba, uint32_t val)\
78{\
79 if (val >= _minval && val <= _maxval) {\
80 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,\
81 "BA_%d : beiscsi_"#_name" updated "\
82 "from 0x%x ==> 0x%x\n",\
83 phba->attr_##_name, val); \
84 phba->attr_##_name = val;\
85 return 0;\
86 } \
87 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, \
88 "BA_%d beiscsi_"#_name" attribute "\
89 "cannot be updated to 0x%x, "\
90 "range allowed is ["#_minval" - "#_maxval"]\n", val);\
91 return -EINVAL;\
92}
93
94#define beiscsi_store_param(_name) \
95ssize_t \
96beiscsi_##_name##_store(struct device *dev,\
97 struct device_attribute *attr, const char *buf,\
98 size_t count) \
99{ \
100 struct Scsi_Host *shost = class_to_shost(dev);\
101 struct beiscsi_hba *phba = iscsi_host_priv(shost);\
102 uint32_t param_val = 0;\
103 if (!isdigit(buf[0]))\
104 return -EINVAL;\
105 if (sscanf(buf, "%i", &param_val) != 1)\
106 return -EINVAL;\
107 if (beiscsi_##_name##_change(phba, param_val) == 0) \
108 return strlen(buf);\
109 else \
110 return -EINVAL;\
111}
112
113#define beiscsi_init_param(_name, _minval, _maxval, _defval) \
114int \
115beiscsi_##_name##_init(struct beiscsi_hba *phba, uint32_t val) \
116{ \
117 if (val >= _minval && val <= _maxval) {\
118 phba->attr_##_name = val;\
119 return 0;\
120 } \
121 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,\
122 "BA_%d beiscsi_"#_name" attribute " \
123 "cannot be updated to 0x%x, "\
124 "range allowed is ["#_minval" - "#_maxval"]\n", val);\
125 phba->attr_##_name = _defval;\
126 return -EINVAL;\
127}
128
129#define BEISCSI_RW_ATTR(_name, _minval, _maxval, _defval, _descp) \
130static uint beiscsi_##_name = _defval;\
131module_param(beiscsi_##_name, uint, S_IRUGO);\
132MODULE_PARM_DESC(beiscsi_##_name, _descp);\
133beiscsi_disp_param(_name)\
134beiscsi_change_param(_name, _minval, _maxval, _defval)\
135beiscsi_store_param(_name)\
136beiscsi_init_param(_name, _minval, _maxval, _defval)\
137DEVICE_ATTR(beiscsi_##_name, S_IRUGO | S_IWUSR,\
138 beiscsi_##_name##_disp, beiscsi_##_name##_store)
139
140/*
141 * When new log level added update the
142 * the MAX allowed value for log_enable
143 */
144BEISCSI_RW_ATTR(log_enable, 0x00,
145 0xFF, 0x00, "Enable logging Bit Mask\n"
146 "\t\t\t\tInitialization Events : 0x01\n"
147 "\t\t\t\tMailbox Events : 0x02\n"
148 "\t\t\t\tMiscellaneous Events : 0x04\n"
149 "\t\t\t\tError Handling : 0x08\n"
150 "\t\t\t\tIO Path Events : 0x10\n"
Jayamohan Kallickalafb96052013-09-28 15:35:55 -0700151 "\t\t\t\tConfiguration Path : 0x20\n"
152 "\t\t\t\tiSCSI Protocol : 0x40\n");
John Soni Jose99bc5d52012-08-20 23:00:18 +0530153
John Soni Jose5cac7592012-10-20 04:42:25 +0530154DEVICE_ATTR(beiscsi_drvr_ver, S_IRUGO, beiscsi_drvr_ver_disp, NULL);
John Soni Jose26000db2012-10-20 04:45:06 +0530155DEVICE_ATTR(beiscsi_adapter_family, S_IRUGO, beiscsi_adap_family_disp, NULL);
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700156DEVICE_ATTR(beiscsi_fw_ver, S_IRUGO, beiscsi_fw_ver_disp, NULL);
Jayamohan Kallickald3fea9a2013-09-28 15:35:53 -0700157DEVICE_ATTR(beiscsi_phys_port, S_IRUGO, beiscsi_phys_port_disp, NULL);
Jayamohan Kallickal6103c1f2013-09-28 15:35:52 -0700158DEVICE_ATTR(beiscsi_active_session_count, S_IRUGO,
159 beiscsi_active_session_disp, NULL);
160DEVICE_ATTR(beiscsi_free_session_count, S_IRUGO,
161 beiscsi_free_session_disp, NULL);
John Soni Jose99bc5d52012-08-20 23:00:18 +0530162struct device_attribute *beiscsi_attrs[] = {
163 &dev_attr_beiscsi_log_enable,
John Soni Jose5cac7592012-10-20 04:42:25 +0530164 &dev_attr_beiscsi_drvr_ver,
John Soni Jose26000db2012-10-20 04:45:06 +0530165 &dev_attr_beiscsi_adapter_family,
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700166 &dev_attr_beiscsi_fw_ver,
Jayamohan Kallickal6103c1f2013-09-28 15:35:52 -0700167 &dev_attr_beiscsi_active_session_count,
168 &dev_attr_beiscsi_free_session_count,
Jayamohan Kallickald3fea9a2013-09-28 15:35:53 -0700169 &dev_attr_beiscsi_phys_port,
John Soni Jose99bc5d52012-08-20 23:00:18 +0530170 NULL,
171};
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530172
John Soni Jose6763daa2012-10-20 04:41:45 +0530173static char const *cqe_desc[] = {
174 "RESERVED_DESC",
175 "SOL_CMD_COMPLETE",
176 "SOL_CMD_KILLED_DATA_DIGEST_ERR",
177 "CXN_KILLED_PDU_SIZE_EXCEEDS_DSL",
178 "CXN_KILLED_BURST_LEN_MISMATCH",
179 "CXN_KILLED_AHS_RCVD",
180 "CXN_KILLED_HDR_DIGEST_ERR",
181 "CXN_KILLED_UNKNOWN_HDR",
182 "CXN_KILLED_STALE_ITT_TTT_RCVD",
183 "CXN_KILLED_INVALID_ITT_TTT_RCVD",
184 "CXN_KILLED_RST_RCVD",
185 "CXN_KILLED_TIMED_OUT",
186 "CXN_KILLED_RST_SENT",
187 "CXN_KILLED_FIN_RCVD",
188 "CXN_KILLED_BAD_UNSOL_PDU_RCVD",
189 "CXN_KILLED_BAD_WRB_INDEX_ERROR",
190 "CXN_KILLED_OVER_RUN_RESIDUAL",
191 "CXN_KILLED_UNDER_RUN_RESIDUAL",
192 "CMD_KILLED_INVALID_STATSN_RCVD",
193 "CMD_KILLED_INVALID_R2T_RCVD",
194 "CMD_CXN_KILLED_LUN_INVALID",
195 "CMD_CXN_KILLED_ICD_INVALID",
196 "CMD_CXN_KILLED_ITT_INVALID",
197 "CMD_CXN_KILLED_SEQ_OUTOFORDER",
198 "CMD_CXN_KILLED_INVALID_DATASN_RCVD",
199 "CXN_INVALIDATE_NOTIFY",
200 "CXN_INVALIDATE_INDEX_NOTIFY",
201 "CMD_INVALIDATED_NOTIFY",
202 "UNSOL_HDR_NOTIFY",
203 "UNSOL_DATA_NOTIFY",
204 "UNSOL_DATA_DIGEST_ERROR_NOTIFY",
205 "DRIVERMSG_NOTIFY",
206 "CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN",
207 "SOL_CMD_KILLED_DIF_ERR",
208 "CXN_KILLED_SYN_RCVD",
209 "CXN_KILLED_IMM_DATA_RCVD"
210};
211
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530212static int beiscsi_slave_configure(struct scsi_device *sdev)
213{
214 blk_queue_max_segment_size(sdev->request_queue, 65536);
215 return 0;
216}
217
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530218static int beiscsi_eh_abort(struct scsi_cmnd *sc)
219{
220 struct iscsi_cls_session *cls_session;
221 struct iscsi_task *aborted_task = (struct iscsi_task *)sc->SCp.ptr;
222 struct beiscsi_io_task *aborted_io_task;
223 struct iscsi_conn *conn;
224 struct beiscsi_conn *beiscsi_conn;
225 struct beiscsi_hba *phba;
226 struct iscsi_session *session;
227 struct invalidate_command_table *inv_tbl;
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530228 struct be_dma_mem nonemb_cmd;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530229 unsigned int cid, tag, num_invalidate;
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -0500230 int rc;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530231
232 cls_session = starget_to_session(scsi_target(sc->device));
233 session = cls_session->dd_data;
234
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600235 spin_lock_bh(&session->frwd_lock);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530236 if (!aborted_task || !aborted_task->sc) {
237 /* we raced */
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600238 spin_unlock_bh(&session->frwd_lock);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530239 return SUCCESS;
240 }
241
242 aborted_io_task = aborted_task->dd_data;
243 if (!aborted_io_task->scsi_cmnd) {
244 /* raced or invalid command */
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600245 spin_unlock_bh(&session->frwd_lock);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530246 return SUCCESS;
247 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600248 spin_unlock_bh(&session->frwd_lock);
Jayamohan Kallickal7626c062013-09-28 15:35:57 -0700249 /* Invalidate WRB Posted for this Task */
250 AMAP_SET_BITS(struct amap_iscsi_wrb, invld,
251 aborted_io_task->pwrb_handle->pwrb,
252 1);
253
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530254 conn = aborted_task->conn;
255 beiscsi_conn = conn->dd_data;
256 phba = beiscsi_conn->phba;
257
258 /* invalidate iocb */
259 cid = beiscsi_conn->beiscsi_conn_cid;
260 inv_tbl = phba->inv_tbl;
261 memset(inv_tbl, 0x0, sizeof(*inv_tbl));
262 inv_tbl->cid = cid;
263 inv_tbl->icd = aborted_io_task->psgl_handle->sgl_index;
264 num_invalidate = 1;
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530265 nonemb_cmd.va = pci_alloc_consistent(phba->ctrl.pdev,
266 sizeof(struct invalidate_commands_params_in),
267 &nonemb_cmd.dma);
268 if (nonemb_cmd.va == NULL) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530269 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_EH,
270 "BM_%d : Failed to allocate memory for"
271 "mgmt_invalidate_icds\n");
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530272 return FAILED;
273 }
274 nonemb_cmd.size = sizeof(struct invalidate_commands_params_in);
275
276 tag = mgmt_invalidate_icds(phba, inv_tbl, num_invalidate,
277 cid, &nonemb_cmd);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530278 if (!tag) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530279 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_EH,
280 "BM_%d : mgmt_invalidate_icds could not be"
281 "submitted\n");
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530282 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
283 nonemb_cmd.va, nonemb_cmd.dma);
284
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530285 return FAILED;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530286 }
John Soni Josee175def2012-10-20 04:45:40 +0530287
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -0500288 rc = beiscsi_mccq_compl(phba, tag, NULL, &nonemb_cmd);
289 if (rc != -EBUSY)
290 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
291 nonemb_cmd.va, nonemb_cmd.dma);
292
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530293 return iscsi_eh_abort(sc);
294}
295
296static int beiscsi_eh_device_reset(struct scsi_cmnd *sc)
297{
298 struct iscsi_task *abrt_task;
299 struct beiscsi_io_task *abrt_io_task;
300 struct iscsi_conn *conn;
301 struct beiscsi_conn *beiscsi_conn;
302 struct beiscsi_hba *phba;
303 struct iscsi_session *session;
304 struct iscsi_cls_session *cls_session;
305 struct invalidate_command_table *inv_tbl;
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530306 struct be_dma_mem nonemb_cmd;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530307 unsigned int cid, tag, i, num_invalidate;
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -0500308 int rc;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530309
310 /* invalidate iocbs */
311 cls_session = starget_to_session(scsi_target(sc->device));
312 session = cls_session->dd_data;
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600313 spin_lock_bh(&session->frwd_lock);
Jayamohan Kallickaldb7f7702012-04-03 23:41:43 -0500314 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600315 spin_unlock_bh(&session->frwd_lock);
Jayamohan Kallickaldb7f7702012-04-03 23:41:43 -0500316 return FAILED;
317 }
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530318 conn = session->leadconn;
319 beiscsi_conn = conn->dd_data;
320 phba = beiscsi_conn->phba;
321 cid = beiscsi_conn->beiscsi_conn_cid;
322 inv_tbl = phba->inv_tbl;
323 memset(inv_tbl, 0x0, sizeof(*inv_tbl) * BE2_CMDS_PER_CXN);
324 num_invalidate = 0;
325 for (i = 0; i < conn->session->cmds_max; i++) {
326 abrt_task = conn->session->cmds[i];
327 abrt_io_task = abrt_task->dd_data;
328 if (!abrt_task->sc || abrt_task->state == ISCSI_TASK_FREE)
329 continue;
330
Mike Christie126e9642013-12-19 01:16:21 -0600331 if (sc->device->lun != abrt_task->sc->device->lun)
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530332 continue;
333
Jayamohan Kallickal7626c062013-09-28 15:35:57 -0700334 /* Invalidate WRB Posted for this Task */
335 AMAP_SET_BITS(struct amap_iscsi_wrb, invld,
336 abrt_io_task->pwrb_handle->pwrb,
337 1);
338
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530339 inv_tbl->cid = cid;
340 inv_tbl->icd = abrt_io_task->psgl_handle->sgl_index;
341 num_invalidate++;
342 inv_tbl++;
343 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600344 spin_unlock_bh(&session->frwd_lock);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530345 inv_tbl = phba->inv_tbl;
346
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530347 nonemb_cmd.va = pci_alloc_consistent(phba->ctrl.pdev,
348 sizeof(struct invalidate_commands_params_in),
349 &nonemb_cmd.dma);
350 if (nonemb_cmd.va == NULL) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530351 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_EH,
352 "BM_%d : Failed to allocate memory for"
353 "mgmt_invalidate_icds\n");
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530354 return FAILED;
355 }
356 nonemb_cmd.size = sizeof(struct invalidate_commands_params_in);
357 memset(nonemb_cmd.va, 0, nonemb_cmd.size);
358 tag = mgmt_invalidate_icds(phba, inv_tbl, num_invalidate,
359 cid, &nonemb_cmd);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530360 if (!tag) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530361 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_EH,
362 "BM_%d : mgmt_invalidate_icds could not be"
363 " submitted\n");
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530364 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
365 nonemb_cmd.va, nonemb_cmd.dma);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530366 return FAILED;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530367 }
John Soni Josee175def2012-10-20 04:45:40 +0530368
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -0500369 rc = beiscsi_mccq_compl(phba, tag, NULL, &nonemb_cmd);
370 if (rc != -EBUSY)
371 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
372 nonemb_cmd.va, nonemb_cmd.dma);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530373 return iscsi_eh_device_reset(sc);
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530374}
375
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530376static ssize_t beiscsi_show_boot_tgt_info(void *data, int type, char *buf)
377{
378 struct beiscsi_hba *phba = data;
Mike Christief457a462011-06-24 15:11:53 -0500379 struct mgmt_session_info *boot_sess = &phba->boot_sess;
380 struct mgmt_conn_info *boot_conn = &boot_sess->conn_list[0];
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530381 char *str = buf;
382 int rc;
383
384 switch (type) {
385 case ISCSI_BOOT_TGT_NAME:
386 rc = sprintf(buf, "%.*s\n",
Mike Christief457a462011-06-24 15:11:53 -0500387 (int)strlen(boot_sess->target_name),
388 (char *)&boot_sess->target_name);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530389 break;
390 case ISCSI_BOOT_TGT_IP_ADDR:
Mike Christief457a462011-06-24 15:11:53 -0500391 if (boot_conn->dest_ipaddr.ip_type == 0x1)
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530392 rc = sprintf(buf, "%pI4\n",
Mike Christie0e438952012-04-03 23:41:51 -0500393 (char *)&boot_conn->dest_ipaddr.addr);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530394 else
395 rc = sprintf(str, "%pI6\n",
Mike Christie0e438952012-04-03 23:41:51 -0500396 (char *)&boot_conn->dest_ipaddr.addr);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530397 break;
398 case ISCSI_BOOT_TGT_PORT:
Mike Christief457a462011-06-24 15:11:53 -0500399 rc = sprintf(str, "%d\n", boot_conn->dest_port);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530400 break;
401
402 case ISCSI_BOOT_TGT_CHAP_NAME:
403 rc = sprintf(str, "%.*s\n",
Mike Christief457a462011-06-24 15:11:53 -0500404 boot_conn->negotiated_login_options.auth_data.chap.
405 target_chap_name_length,
406 (char *)&boot_conn->negotiated_login_options.
407 auth_data.chap.target_chap_name);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530408 break;
409 case ISCSI_BOOT_TGT_CHAP_SECRET:
410 rc = sprintf(str, "%.*s\n",
Mike Christief457a462011-06-24 15:11:53 -0500411 boot_conn->negotiated_login_options.auth_data.chap.
412 target_secret_length,
413 (char *)&boot_conn->negotiated_login_options.
414 auth_data.chap.target_secret);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530415 break;
416 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
417 rc = sprintf(str, "%.*s\n",
Mike Christief457a462011-06-24 15:11:53 -0500418 boot_conn->negotiated_login_options.auth_data.chap.
419 intr_chap_name_length,
420 (char *)&boot_conn->negotiated_login_options.
421 auth_data.chap.intr_chap_name);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530422 break;
423 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
Mike Christief457a462011-06-24 15:11:53 -0500424 rc = sprintf(str, "%.*s\n",
425 boot_conn->negotiated_login_options.auth_data.chap.
426 intr_secret_length,
427 (char *)&boot_conn->negotiated_login_options.
428 auth_data.chap.intr_secret);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530429 break;
430 case ISCSI_BOOT_TGT_FLAGS:
Mike Christief457a462011-06-24 15:11:53 -0500431 rc = sprintf(str, "2\n");
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530432 break;
433 case ISCSI_BOOT_TGT_NIC_ASSOC:
Mike Christief457a462011-06-24 15:11:53 -0500434 rc = sprintf(str, "0\n");
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530435 break;
436 default:
437 rc = -ENOSYS;
438 break;
439 }
440 return rc;
441}
442
443static ssize_t beiscsi_show_boot_ini_info(void *data, int type, char *buf)
444{
445 struct beiscsi_hba *phba = data;
446 char *str = buf;
447 int rc;
448
449 switch (type) {
450 case ISCSI_BOOT_INI_INITIATOR_NAME:
451 rc = sprintf(str, "%s\n", phba->boot_sess.initiator_iscsiname);
452 break;
453 default:
454 rc = -ENOSYS;
455 break;
456 }
457 return rc;
458}
459
460static ssize_t beiscsi_show_boot_eth_info(void *data, int type, char *buf)
461{
462 struct beiscsi_hba *phba = data;
463 char *str = buf;
464 int rc;
465
466 switch (type) {
467 case ISCSI_BOOT_ETH_FLAGS:
Mike Christief457a462011-06-24 15:11:53 -0500468 rc = sprintf(str, "2\n");
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530469 break;
470 case ISCSI_BOOT_ETH_INDEX:
Mike Christief457a462011-06-24 15:11:53 -0500471 rc = sprintf(str, "0\n");
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530472 break;
473 case ISCSI_BOOT_ETH_MAC:
Mike Christie0e438952012-04-03 23:41:51 -0500474 rc = beiscsi_get_macaddr(str, phba);
475 break;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530476 default:
477 rc = -ENOSYS;
478 break;
479 }
480 return rc;
481}
482
483
Al Viro587a1f12011-07-23 23:11:19 -0400484static umode_t beiscsi_tgt_get_attr_visibility(void *data, int type)
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530485{
Al Viro587a1f12011-07-23 23:11:19 -0400486 umode_t rc;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530487
488 switch (type) {
489 case ISCSI_BOOT_TGT_NAME:
490 case ISCSI_BOOT_TGT_IP_ADDR:
491 case ISCSI_BOOT_TGT_PORT:
492 case ISCSI_BOOT_TGT_CHAP_NAME:
493 case ISCSI_BOOT_TGT_CHAP_SECRET:
494 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
495 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
496 case ISCSI_BOOT_TGT_NIC_ASSOC:
497 case ISCSI_BOOT_TGT_FLAGS:
498 rc = S_IRUGO;
499 break;
500 default:
501 rc = 0;
502 break;
503 }
504 return rc;
505}
506
Al Viro587a1f12011-07-23 23:11:19 -0400507static umode_t beiscsi_ini_get_attr_visibility(void *data, int type)
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530508{
Al Viro587a1f12011-07-23 23:11:19 -0400509 umode_t rc;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530510
511 switch (type) {
512 case ISCSI_BOOT_INI_INITIATOR_NAME:
513 rc = S_IRUGO;
514 break;
515 default:
516 rc = 0;
517 break;
518 }
519 return rc;
520}
521
522
Al Viro587a1f12011-07-23 23:11:19 -0400523static umode_t beiscsi_eth_get_attr_visibility(void *data, int type)
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530524{
Al Viro587a1f12011-07-23 23:11:19 -0400525 umode_t rc;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530526
527 switch (type) {
528 case ISCSI_BOOT_ETH_FLAGS:
529 case ISCSI_BOOT_ETH_MAC:
530 case ISCSI_BOOT_ETH_INDEX:
531 rc = S_IRUGO;
532 break;
533 default:
534 rc = 0;
535 break;
536 }
537 return rc;
538}
539
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530540/*------------------- PCI Driver operations and data ----------------- */
Benoit Taine9baa3c32014-08-08 15:56:03 +0200541static const struct pci_device_id beiscsi_pci_id_table[] = {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530542 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID1) },
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +0530543 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID2) },
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530544 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID1) },
545 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) },
546 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID3) },
John Soni Jose139a1b12012-10-20 04:43:20 +0530547 { PCI_DEVICE(ELX_VENDOR_ID, OC_SKH_ID1) },
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530548 { 0 }
549};
550MODULE_DEVICE_TABLE(pci, beiscsi_pci_id_table);
551
John Soni Jose99bc5d52012-08-20 23:00:18 +0530552
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530553static struct scsi_host_template beiscsi_sht = {
554 .module = THIS_MODULE,
Ketan Mukadamc4f39bd2015-07-04 04:12:33 +0530555 .name = "Emulex 10Gbe open-iscsi Initiator Driver",
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530556 .proc_name = DRV_NAME,
557 .queuecommand = iscsi_queuecommand,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100558 .change_queue_depth = scsi_change_queue_depth,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530559 .slave_configure = beiscsi_slave_configure,
560 .target_alloc = iscsi_target_alloc,
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530561 .eh_abort_handler = beiscsi_eh_abort,
562 .eh_device_reset_handler = beiscsi_eh_device_reset,
Jayamohan Kallickal309ce152010-02-20 08:02:10 +0530563 .eh_target_reset_handler = iscsi_eh_session_reset,
John Soni Jose99bc5d52012-08-20 23:00:18 +0530564 .shost_attrs = beiscsi_attrs,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530565 .sg_tablesize = BEISCSI_SGLIST_ELEMENTS,
566 .can_queue = BE2_IO_DEPTH,
567 .this_id = -1,
568 .max_sectors = BEISCSI_MAX_SECTORS,
569 .cmd_per_lun = BEISCSI_CMD_PER_LUN,
570 .use_clustering = ENABLE_CLUSTERING,
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -0500571 .vendor_id = SCSI_NL_VID_TYPE_PCI | BE_VENDOR_ID,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100572 .track_queue_depth = 1,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530573};
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530574
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530575static struct scsi_transport_template *beiscsi_scsi_transport;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530576
577static struct beiscsi_hba *beiscsi_hba_alloc(struct pci_dev *pcidev)
578{
579 struct beiscsi_hba *phba;
580 struct Scsi_Host *shost;
581
582 shost = iscsi_host_alloc(&beiscsi_sht, sizeof(*phba), 0);
583 if (!shost) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530584 dev_err(&pcidev->dev,
585 "beiscsi_hba_alloc - iscsi_host_alloc failed\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530586 return NULL;
587 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530588 shost->max_id = BE2_MAX_SESSIONS;
589 shost->max_channel = 0;
590 shost->max_cmd_len = BEISCSI_MAX_CMD_LEN;
591 shost->max_lun = BEISCSI_NUM_MAX_LUN;
592 shost->transportt = beiscsi_scsi_transport;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530593 phba = iscsi_host_priv(shost);
594 memset(phba, 0, sizeof(*phba));
595 phba->shost = shost;
596 phba->pcidev = pci_dev_get(pcidev);
Jayamohan Kallickal2807afb2010-01-05 05:07:49 +0530597 pci_set_drvdata(pcidev, phba);
Mike Christie0e438952012-04-03 23:41:51 -0500598 phba->interface_handle = 0xFFFFFFFF;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530599
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530600 return phba;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530601}
602
603static void beiscsi_unmap_pci_function(struct beiscsi_hba *phba)
604{
605 if (phba->csr_va) {
606 iounmap(phba->csr_va);
607 phba->csr_va = NULL;
608 }
609 if (phba->db_va) {
610 iounmap(phba->db_va);
611 phba->db_va = NULL;
612 }
613 if (phba->pci_va) {
614 iounmap(phba->pci_va);
615 phba->pci_va = NULL;
616 }
617}
618
619static int beiscsi_map_pci_bars(struct beiscsi_hba *phba,
620 struct pci_dev *pcidev)
621{
622 u8 __iomem *addr;
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +0530623 int pcicfg_reg;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530624
625 addr = ioremap_nocache(pci_resource_start(pcidev, 2),
626 pci_resource_len(pcidev, 2));
627 if (addr == NULL)
628 return -ENOMEM;
629 phba->ctrl.csr = addr;
630 phba->csr_va = addr;
631 phba->csr_pa.u.a64.address = pci_resource_start(pcidev, 2);
632
633 addr = ioremap_nocache(pci_resource_start(pcidev, 4), 128 * 1024);
634 if (addr == NULL)
635 goto pci_map_err;
636 phba->ctrl.db = addr;
637 phba->db_va = addr;
638 phba->db_pa.u.a64.address = pci_resource_start(pcidev, 4);
639
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +0530640 if (phba->generation == BE_GEN2)
641 pcicfg_reg = 1;
642 else
643 pcicfg_reg = 0;
644
645 addr = ioremap_nocache(pci_resource_start(pcidev, pcicfg_reg),
646 pci_resource_len(pcidev, pcicfg_reg));
647
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530648 if (addr == NULL)
649 goto pci_map_err;
650 phba->ctrl.pcicfg = addr;
651 phba->pci_va = addr;
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +0530652 phba->pci_pa.u.a64.address = pci_resource_start(pcidev, pcicfg_reg);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530653 return 0;
654
655pci_map_err:
656 beiscsi_unmap_pci_function(phba);
657 return -ENOMEM;
658}
659
660static int beiscsi_enable_pci(struct pci_dev *pcidev)
661{
662 int ret;
663
664 ret = pci_enable_device(pcidev);
665 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530666 dev_err(&pcidev->dev,
667 "beiscsi_enable_pci - enable device failed\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530668 return ret;
669 }
670
John Soni Josee307f3a2015-04-25 08:17:19 +0530671 ret = pci_request_regions(pcidev, DRV_NAME);
672 if (ret) {
673 dev_err(&pcidev->dev,
674 "beiscsi_enable_pci - request region failed\n");
675 goto pci_dev_disable;
676 }
677
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530678 pci_set_master(pcidev);
Jayamohan Kallickal6c576252014-01-29 02:16:45 -0500679 ret = pci_set_dma_mask(pcidev, DMA_BIT_MASK(64));
680 if (ret) {
681 ret = pci_set_dma_mask(pcidev, DMA_BIT_MASK(32));
682 if (ret) {
683 dev_err(&pcidev->dev, "Could not set PCI DMA Mask\n");
John Soni Josee307f3a2015-04-25 08:17:19 +0530684 goto pci_region_release;
Jayamohan Kallickal6c576252014-01-29 02:16:45 -0500685 } else {
686 ret = pci_set_consistent_dma_mask(pcidev,
687 DMA_BIT_MASK(32));
688 }
689 } else {
690 ret = pci_set_consistent_dma_mask(pcidev, DMA_BIT_MASK(64));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530691 if (ret) {
692 dev_err(&pcidev->dev, "Could not set PCI DMA Mask\n");
John Soni Josee307f3a2015-04-25 08:17:19 +0530693 goto pci_region_release;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530694 }
695 }
696 return 0;
John Soni Josee307f3a2015-04-25 08:17:19 +0530697
698pci_region_release:
699 pci_release_regions(pcidev);
700pci_dev_disable:
701 pci_disable_device(pcidev);
702
703 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530704}
705
706static int be_ctrl_init(struct beiscsi_hba *phba, struct pci_dev *pdev)
707{
708 struct be_ctrl_info *ctrl = &phba->ctrl;
709 struct be_dma_mem *mbox_mem_alloc = &ctrl->mbox_mem_alloced;
710 struct be_dma_mem *mbox_mem_align = &ctrl->mbox_mem;
711 int status = 0;
712
713 ctrl->pdev = pdev;
714 status = beiscsi_map_pci_bars(phba, pdev);
715 if (status)
716 return status;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530717 mbox_mem_alloc->size = sizeof(struct be_mcc_mailbox) + 16;
718 mbox_mem_alloc->va = pci_alloc_consistent(pdev,
719 mbox_mem_alloc->size,
720 &mbox_mem_alloc->dma);
721 if (!mbox_mem_alloc->va) {
722 beiscsi_unmap_pci_function(phba);
Jayamohan Kallickala49e06d2012-04-03 23:41:44 -0500723 return -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530724 }
725
726 mbox_mem_align->size = sizeof(struct be_mcc_mailbox);
727 mbox_mem_align->va = PTR_ALIGN(mbox_mem_alloc->va, 16);
728 mbox_mem_align->dma = PTR_ALIGN(mbox_mem_alloc->dma, 16);
729 memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox));
Jitendra Bhivarec03a50f2016-01-20 14:10:46 +0530730 mutex_init(&ctrl->mbox_lock);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530731 spin_lock_init(&phba->ctrl.mcc_lock);
732 spin_lock_init(&phba->ctrl.mcc_cq_lock);
733
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530734 return status;
735}
736
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700737/**
738 * beiscsi_get_params()- Set the config paramters
739 * @phba: ptr device priv structure
740 **/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530741static void beiscsi_get_params(struct beiscsi_hba *phba)
742{
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700743 uint32_t total_cid_count = 0;
744 uint32_t total_icd_count = 0;
745 uint8_t ulp_num = 0;
746
747 total_cid_count = BEISCSI_GET_CID_COUNT(phba, BEISCSI_ULP0) +
748 BEISCSI_GET_CID_COUNT(phba, BEISCSI_ULP1);
749
Jayamohan Kallickalcf987b72013-09-28 15:35:59 -0700750 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
751 uint32_t align_mask = 0;
752 uint32_t icd_post_per_page = 0;
753 uint32_t icd_count_unavailable = 0;
754 uint32_t icd_start = 0, icd_count = 0;
755 uint32_t icd_start_align = 0, icd_count_align = 0;
756
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700757 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
Jayamohan Kallickalcf987b72013-09-28 15:35:59 -0700758 icd_start = phba->fw_config.iscsi_icd_start[ulp_num];
759 icd_count = phba->fw_config.iscsi_icd_count[ulp_num];
760
761 /* Get ICD count that can be posted on each page */
762 icd_post_per_page = (PAGE_SIZE / (BE2_SGE *
763 sizeof(struct iscsi_sge)));
764 align_mask = (icd_post_per_page - 1);
765
766 /* Check if icd_start is aligned ICD per page posting */
767 if (icd_start % icd_post_per_page) {
768 icd_start_align = ((icd_start +
769 icd_post_per_page) &
770 ~(align_mask));
771 phba->fw_config.
772 iscsi_icd_start[ulp_num] =
773 icd_start_align;
774 }
775
776 icd_count_align = (icd_count & ~align_mask);
777
778 /* ICD discarded in the process of alignment */
779 if (icd_start_align)
780 icd_count_unavailable = ((icd_start_align -
781 icd_start) +
782 (icd_count -
783 icd_count_align));
784
785 /* Updated ICD count available */
786 phba->fw_config.iscsi_icd_count[ulp_num] = (icd_count -
787 icd_count_unavailable);
788
789 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
790 "BM_%d : Aligned ICD values\n"
791 "\t ICD Start : %d\n"
792 "\t ICD Count : %d\n"
793 "\t ICD Discarded : %d\n",
794 phba->fw_config.
795 iscsi_icd_start[ulp_num],
796 phba->fw_config.
797 iscsi_icd_count[ulp_num],
798 icd_count_unavailable);
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700799 break;
800 }
Jayamohan Kallickalcf987b72013-09-28 15:35:59 -0700801 }
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700802
Jayamohan Kallickalcf987b72013-09-28 15:35:59 -0700803 total_icd_count = phba->fw_config.iscsi_icd_count[ulp_num];
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700804 phba->params.ios_per_ctrl = (total_icd_count -
805 (total_cid_count +
806 BE2_TMFS + BE2_NOPOUT_REQ));
807 phba->params.cxns_per_ctrl = total_cid_count;
808 phba->params.asyncpdus_per_ctrl = total_cid_count;
809 phba->params.icds_per_ctrl = total_icd_count;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530810 phba->params.num_sge_per_io = BE2_SGE;
811 phba->params.defpdu_hdr_sz = BE2_DEFPDU_HDR_SZ;
812 phba->params.defpdu_data_sz = BE2_DEFPDU_DATA_SZ;
813 phba->params.eq_timer = 64;
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700814 phba->params.num_eq_entries = 1024;
815 phba->params.num_cq_entries = 1024;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530816 phba->params.wrbs_per_cxn = 256;
817}
818
819static void hwi_ring_eq_db(struct beiscsi_hba *phba,
820 unsigned int id, unsigned int clr_interrupt,
821 unsigned int num_processed,
822 unsigned char rearm, unsigned char event)
823{
824 u32 val = 0;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500825
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530826 if (rearm)
827 val |= 1 << DB_EQ_REARM_SHIFT;
828 if (clr_interrupt)
829 val |= 1 << DB_EQ_CLR_SHIFT;
830 if (event)
831 val |= 1 << DB_EQ_EVNT_SHIFT;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500832
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530833 val |= num_processed << DB_EQ_NUM_POPPED_SHIFT;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -0500834 /* Setting lower order EQ_ID Bits */
835 val |= (id & DB_EQ_RING_ID_LOW_MASK);
836
837 /* Setting Higher order EQ_ID Bits */
838 val |= (((id >> DB_EQ_HIGH_FEILD_SHIFT) &
839 DB_EQ_RING_ID_HIGH_MASK)
840 << DB_EQ_HIGH_SET_SHIFT);
841
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530842 iowrite32(val, phba->db_va + DB_EQ_OFFSET);
843}
844
845/**
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530846 * be_isr_mcc - The isr routine of the driver.
847 * @irq: Not used
848 * @dev_id: Pointer to host adapter structure
849 */
850static irqreturn_t be_isr_mcc(int irq, void *dev_id)
851{
852 struct beiscsi_hba *phba;
853 struct be_eq_entry *eqe = NULL;
854 struct be_queue_info *eq;
855 struct be_queue_info *mcc;
856 unsigned int num_eq_processed;
857 struct be_eq_obj *pbe_eq;
858 unsigned long flags;
859
860 pbe_eq = dev_id;
861 eq = &pbe_eq->q;
862 phba = pbe_eq->phba;
863 mcc = &phba->ctrl.mcc_obj.cq;
864 eqe = queue_tail_node(eq);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530865
866 num_eq_processed = 0;
867
868 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
869 & EQE_VALID_MASK) {
870 if (((eqe->dw[offsetof(struct amap_eq_entry,
871 resource_id) / 32] &
872 EQE_RESID_MASK) >> 16) == mcc->id) {
873 spin_lock_irqsave(&phba->isr_lock, flags);
John Soni Jose72fb46a2012-10-20 04:42:49 +0530874 pbe_eq->todo_mcc_cq = true;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530875 spin_unlock_irqrestore(&phba->isr_lock, flags);
876 }
877 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
878 queue_tail_inc(eq);
879 eqe = queue_tail_node(eq);
880 num_eq_processed++;
881 }
John Soni Jose72fb46a2012-10-20 04:42:49 +0530882 if (pbe_eq->todo_mcc_cq)
883 queue_work(phba->wq, &pbe_eq->work_cqs);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530884 if (num_eq_processed)
885 hwi_ring_eq_db(phba, eq->id, 1, num_eq_processed, 1, 1);
886
887 return IRQ_HANDLED;
888}
889
890/**
891 * be_isr_msix - The isr routine of the driver.
892 * @irq: Not used
893 * @dev_id: Pointer to host adapter structure
894 */
895static irqreturn_t be_isr_msix(int irq, void *dev_id)
896{
897 struct beiscsi_hba *phba;
898 struct be_eq_entry *eqe = NULL;
899 struct be_queue_info *eq;
900 struct be_queue_info *cq;
901 unsigned int num_eq_processed;
902 struct be_eq_obj *pbe_eq;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530903
904 pbe_eq = dev_id;
905 eq = &pbe_eq->q;
906 cq = pbe_eq->cq;
907 eqe = queue_tail_node(eq);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530908
909 phba = pbe_eq->phba;
910 num_eq_processed = 0;
Jens Axboe89f8b332014-03-13 09:38:42 -0600911 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
912 & EQE_VALID_MASK) {
Christoph Hellwigea511902015-12-07 06:41:11 -0800913 irq_poll_sched(&pbe_eq->iopoll);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530914
Jens Axboe89f8b332014-03-13 09:38:42 -0600915 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
916 queue_tail_inc(eq);
917 eqe = queue_tail_node(eq);
918 num_eq_processed++;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530919 }
John Soni Jose72fb46a2012-10-20 04:42:49 +0530920
921 if (num_eq_processed)
922 hwi_ring_eq_db(phba, eq->id, 1, num_eq_processed, 0, 1);
923
924 return IRQ_HANDLED;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530925}
926
927/**
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530928 * be_isr - The isr routine of the driver.
929 * @irq: Not used
930 * @dev_id: Pointer to host adapter structure
931 */
932static irqreturn_t be_isr(int irq, void *dev_id)
933{
934 struct beiscsi_hba *phba;
935 struct hwi_controller *phwi_ctrlr;
936 struct hwi_context_memory *phwi_context;
937 struct be_eq_entry *eqe = NULL;
938 struct be_queue_info *eq;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530939 struct be_queue_info *mcc;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530940 unsigned long flags, index;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530941 unsigned int num_mcceq_processed, num_ioeq_processed;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530942 struct be_ctrl_info *ctrl;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530943 struct be_eq_obj *pbe_eq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530944 int isr;
945
946 phba = dev_id;
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700947 ctrl = &phba->ctrl;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530948 isr = ioread32(ctrl->csr + CEV_ISR0_OFFSET +
949 (PCI_FUNC(ctrl->pdev->devfn) * CEV_ISR_SIZE));
950 if (!isr)
951 return IRQ_NONE;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530952
953 phwi_ctrlr = phba->phwi_ctrlr;
954 phwi_context = phwi_ctrlr->phwi_ctxt;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530955 pbe_eq = &phwi_context->be_eq[0];
956
957 eq = &phwi_context->be_eq[0].q;
958 mcc = &phba->ctrl.mcc_obj.cq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530959 index = 0;
960 eqe = queue_tail_node(eq);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530961
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530962 num_ioeq_processed = 0;
963 num_mcceq_processed = 0;
Jens Axboe89f8b332014-03-13 09:38:42 -0600964 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
965 & EQE_VALID_MASK) {
966 if (((eqe->dw[offsetof(struct amap_eq_entry,
967 resource_id) / 32] &
968 EQE_RESID_MASK) >> 16) == mcc->id) {
969 spin_lock_irqsave(&phba->isr_lock, flags);
970 pbe_eq->todo_mcc_cq = true;
971 spin_unlock_irqrestore(&phba->isr_lock, flags);
972 num_mcceq_processed++;
973 } else {
Christoph Hellwigea511902015-12-07 06:41:11 -0800974 irq_poll_sched(&pbe_eq->iopoll);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530975 num_ioeq_processed++;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530976 }
Jens Axboe89f8b332014-03-13 09:38:42 -0600977 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
978 queue_tail_inc(eq);
979 eqe = queue_tail_node(eq);
980 }
981 if (num_ioeq_processed || num_mcceq_processed) {
982 if (pbe_eq->todo_mcc_cq)
John Soni Jose72fb46a2012-10-20 04:42:49 +0530983 queue_work(phba->wq, &pbe_eq->work_cqs);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530984
Jens Axboe89f8b332014-03-13 09:38:42 -0600985 if ((num_mcceq_processed) && (!num_ioeq_processed))
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530986 hwi_ring_eq_db(phba, eq->id, 0,
Jens Axboe89f8b332014-03-13 09:38:42 -0600987 (num_ioeq_processed +
988 num_mcceq_processed) , 1, 1);
989 else
990 hwi_ring_eq_db(phba, eq->id, 0,
991 (num_ioeq_processed +
992 num_mcceq_processed), 0, 1);
993
994 return IRQ_HANDLED;
995 } else
996 return IRQ_NONE;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530997}
998
999static int beiscsi_init_irqs(struct beiscsi_hba *phba)
1000{
1001 struct pci_dev *pcidev = phba->pcidev;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301002 struct hwi_controller *phwi_ctrlr;
1003 struct hwi_context_memory *phwi_context;
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +05301004 int ret, msix_vec, i, j;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301005
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301006 phwi_ctrlr = phba->phwi_ctrlr;
1007 phwi_context = phwi_ctrlr->phwi_ctxt;
1008
1009 if (phba->msix_enabled) {
1010 for (i = 0; i < phba->num_cpus; i++) {
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -07001011 phba->msi_name[i] = kzalloc(BEISCSI_MSI_NAME,
1012 GFP_KERNEL);
1013 if (!phba->msi_name[i]) {
1014 ret = -ENOMEM;
1015 goto free_msix_irqs;
1016 }
1017
1018 sprintf(phba->msi_name[i], "beiscsi_%02x_%02x",
1019 phba->shost->host_no, i);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301020 msix_vec = phba->msix_entries[i].vector;
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -07001021 ret = request_irq(msix_vec, be_isr_msix, 0,
1022 phba->msi_name[i],
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301023 &phwi_context->be_eq[i]);
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +05301024 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301025 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
1026 "BM_%d : beiscsi_init_irqs-Failed to"
1027 "register msix for i = %d\n",
1028 i);
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -07001029 kfree(phba->msi_name[i]);
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +05301030 goto free_msix_irqs;
1031 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301032 }
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -07001033 phba->msi_name[i] = kzalloc(BEISCSI_MSI_NAME, GFP_KERNEL);
1034 if (!phba->msi_name[i]) {
1035 ret = -ENOMEM;
1036 goto free_msix_irqs;
1037 }
1038 sprintf(phba->msi_name[i], "beiscsi_mcc_%02x",
1039 phba->shost->host_no);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301040 msix_vec = phba->msix_entries[i].vector;
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -07001041 ret = request_irq(msix_vec, be_isr_mcc, 0, phba->msi_name[i],
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301042 &phwi_context->be_eq[i]);
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +05301043 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301044 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT ,
1045 "BM_%d : beiscsi_init_irqs-"
1046 "Failed to register beiscsi_msix_mcc\n");
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -07001047 kfree(phba->msi_name[i]);
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +05301048 goto free_msix_irqs;
1049 }
1050
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301051 } else {
1052 ret = request_irq(pcidev->irq, be_isr, IRQF_SHARED,
1053 "beiscsi", phba);
1054 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301055 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
1056 "BM_%d : beiscsi_init_irqs-"
1057 "Failed to register irq\\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301058 return ret;
1059 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301060 }
1061 return 0;
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +05301062free_msix_irqs:
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -07001063 for (j = i - 1; j >= 0; j--) {
1064 kfree(phba->msi_name[j]);
1065 msix_vec = phba->msix_entries[j].vector;
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +05301066 free_irq(msix_vec, &phwi_context->be_eq[j]);
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -07001067 }
Jayamohan Kallickal4f5af072010-07-22 04:23:55 +05301068 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301069}
1070
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -05001071void hwi_ring_cq_db(struct beiscsi_hba *phba,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301072 unsigned int id, unsigned int num_processed,
1073 unsigned char rearm, unsigned char event)
1074{
1075 u32 val = 0;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -05001076
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301077 if (rearm)
1078 val |= 1 << DB_CQ_REARM_SHIFT;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -05001079
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301080 val |= num_processed << DB_CQ_NUM_POPPED_SHIFT;
Jayamohan Kallickale08b3c82014-01-29 02:16:42 -05001081
1082 /* Setting lower order CQ_ID Bits */
1083 val |= (id & DB_CQ_RING_ID_LOW_MASK);
1084
1085 /* Setting Higher order CQ_ID Bits */
1086 val |= (((id >> DB_CQ_HIGH_FEILD_SHIFT) &
1087 DB_CQ_RING_ID_HIGH_MASK)
1088 << DB_CQ_HIGH_SET_SHIFT);
1089
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301090 iowrite32(val, phba->db_va + DB_CQ_OFFSET);
1091}
1092
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301093static unsigned int
1094beiscsi_process_async_pdu(struct beiscsi_conn *beiscsi_conn,
1095 struct beiscsi_hba *phba,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301096 struct pdu_base *ppdu,
1097 unsigned long pdu_len,
1098 void *pbuffer, unsigned long buf_len)
1099{
1100 struct iscsi_conn *conn = beiscsi_conn->conn;
1101 struct iscsi_session *session = conn->session;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301102 struct iscsi_task *task;
1103 struct beiscsi_io_task *io_task;
1104 struct iscsi_hdr *login_hdr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301105
1106 switch (ppdu->dw[offsetof(struct amap_pdu_base, opcode) / 32] &
1107 PDUBASE_OPCODE_MASK) {
1108 case ISCSI_OP_NOOP_IN:
1109 pbuffer = NULL;
1110 buf_len = 0;
1111 break;
1112 case ISCSI_OP_ASYNC_EVENT:
1113 break;
1114 case ISCSI_OP_REJECT:
1115 WARN_ON(!pbuffer);
1116 WARN_ON(!(buf_len == 48));
John Soni Jose99bc5d52012-08-20 23:00:18 +05301117 beiscsi_log(phba, KERN_ERR,
1118 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1119 "BM_%d : In ISCSI_OP_REJECT\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301120 break;
1121 case ISCSI_OP_LOGIN_RSP:
Jayamohan Kallickal7bd6e252010-01-05 05:07:02 +05301122 case ISCSI_OP_TEXT_RSP:
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301123 task = conn->login_task;
1124 io_task = task->dd_data;
1125 login_hdr = (struct iscsi_hdr *)ppdu;
1126 login_hdr->itt = io_task->libiscsi_itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301127 break;
1128 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301129 beiscsi_log(phba, KERN_WARNING,
1130 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1131 "BM_%d : Unrecognized opcode 0x%x in async msg\n",
1132 (ppdu->
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301133 dw[offsetof(struct amap_pdu_base, opcode) / 32]
John Soni Jose99bc5d52012-08-20 23:00:18 +05301134 & PDUBASE_OPCODE_MASK));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301135 return 1;
1136 }
1137
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001138 spin_lock_bh(&session->back_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301139 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)ppdu, pbuffer, buf_len);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001140 spin_unlock_bh(&session->back_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301141 return 0;
1142}
1143
1144static struct sgl_handle *alloc_io_sgl_handle(struct beiscsi_hba *phba)
1145{
1146 struct sgl_handle *psgl_handle;
1147
1148 if (phba->io_sgl_hndl_avbl) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301149 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO,
1150 "BM_%d : In alloc_io_sgl_handle,"
1151 " io_sgl_alloc_index=%d\n",
1152 phba->io_sgl_alloc_index);
1153
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301154 psgl_handle = phba->io_sgl_hndl_base[phba->
1155 io_sgl_alloc_index];
1156 phba->io_sgl_hndl_base[phba->io_sgl_alloc_index] = NULL;
1157 phba->io_sgl_hndl_avbl--;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301158 if (phba->io_sgl_alloc_index == (phba->params.
1159 ios_per_ctrl - 1))
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301160 phba->io_sgl_alloc_index = 0;
1161 else
1162 phba->io_sgl_alloc_index++;
1163 } else
1164 psgl_handle = NULL;
1165 return psgl_handle;
1166}
1167
1168static void
1169free_io_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
1170{
John Soni Jose99bc5d52012-08-20 23:00:18 +05301171 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO,
1172 "BM_%d : In free_,io_sgl_free_index=%d\n",
1173 phba->io_sgl_free_index);
1174
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301175 if (phba->io_sgl_hndl_base[phba->io_sgl_free_index]) {
1176 /*
1177 * this can happen if clean_task is called on a task that
1178 * failed in xmit_task or alloc_pdu.
1179 */
John Soni Jose99bc5d52012-08-20 23:00:18 +05301180 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_IO,
1181 "BM_%d : Double Free in IO SGL io_sgl_free_index=%d,"
1182 "value there=%p\n", phba->io_sgl_free_index,
1183 phba->io_sgl_hndl_base
1184 [phba->io_sgl_free_index]);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301185 return;
1186 }
1187 phba->io_sgl_hndl_base[phba->io_sgl_free_index] = psgl_handle;
1188 phba->io_sgl_hndl_avbl++;
1189 if (phba->io_sgl_free_index == (phba->params.ios_per_ctrl - 1))
1190 phba->io_sgl_free_index = 0;
1191 else
1192 phba->io_sgl_free_index++;
1193}
1194
1195/**
1196 * alloc_wrb_handle - To allocate a wrb handle
1197 * @phba: The hba pointer
1198 * @cid: The cid to use for allocation
John Soni Jose340c99e2015-08-20 04:44:30 +05301199 * @pwrb_context: ptr to ptr to wrb context
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301200 *
1201 * This happens under session_lock until submission to chip
1202 */
John Soni Jose340c99e2015-08-20 04:44:30 +05301203struct wrb_handle *alloc_wrb_handle(struct beiscsi_hba *phba, unsigned int cid,
1204 struct hwi_wrb_context **pcontext)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301205{
1206 struct hwi_wrb_context *pwrb_context;
1207 struct hwi_controller *phwi_ctrlr;
John Soni Jose340c99e2015-08-20 04:44:30 +05301208 struct wrb_handle *pwrb_handle;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001209 uint16_t cri_index = BE_GET_CRI_FROM_CID(cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301210
1211 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001212 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
Jayamohan Kallickald5431482010-01-05 05:06:21 +05301213 if (pwrb_context->wrb_handles_available >= 2) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301214 pwrb_handle = pwrb_context->pwrb_handle_base[
1215 pwrb_context->alloc_index];
1216 pwrb_context->wrb_handles_available--;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301217 if (pwrb_context->alloc_index ==
1218 (phba->params.wrbs_per_cxn - 1))
1219 pwrb_context->alloc_index = 0;
1220 else
1221 pwrb_context->alloc_index++;
John Soni Jose340c99e2015-08-20 04:44:30 +05301222
1223 /* Return the context address */
1224 *pcontext = pwrb_context;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301225 } else
1226 pwrb_handle = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301227 return pwrb_handle;
1228}
1229
1230/**
1231 * free_wrb_handle - To free the wrb handle back to pool
1232 * @phba: The hba pointer
1233 * @pwrb_context: The context to free from
1234 * @pwrb_handle: The wrb_handle to free
1235 *
1236 * This happens under session_lock until submission to chip
1237 */
1238static void
1239free_wrb_handle(struct beiscsi_hba *phba, struct hwi_wrb_context *pwrb_context,
1240 struct wrb_handle *pwrb_handle)
1241{
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05301242 pwrb_context->pwrb_handle_base[pwrb_context->free_index] = pwrb_handle;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301243 pwrb_context->wrb_handles_available++;
1244 if (pwrb_context->free_index == (phba->params.wrbs_per_cxn - 1))
1245 pwrb_context->free_index = 0;
1246 else
1247 pwrb_context->free_index++;
1248
John Soni Jose99bc5d52012-08-20 23:00:18 +05301249 beiscsi_log(phba, KERN_INFO,
1250 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1251 "BM_%d : FREE WRB: pwrb_handle=%p free_index=0x%x"
1252 "wrb_handles_available=%d\n",
1253 pwrb_handle, pwrb_context->free_index,
1254 pwrb_context->wrb_handles_available);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301255}
1256
1257static struct sgl_handle *alloc_mgmt_sgl_handle(struct beiscsi_hba *phba)
1258{
1259 struct sgl_handle *psgl_handle;
1260
1261 if (phba->eh_sgl_hndl_avbl) {
1262 psgl_handle = phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index];
1263 phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index] = NULL;
John Soni Jose99bc5d52012-08-20 23:00:18 +05301264 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1265 "BM_%d : mgmt_sgl_alloc_index=%d=0x%x\n",
1266 phba->eh_sgl_alloc_index,
1267 phba->eh_sgl_alloc_index);
1268
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301269 phba->eh_sgl_hndl_avbl--;
1270 if (phba->eh_sgl_alloc_index ==
1271 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl -
1272 1))
1273 phba->eh_sgl_alloc_index = 0;
1274 else
1275 phba->eh_sgl_alloc_index++;
1276 } else
1277 psgl_handle = NULL;
1278 return psgl_handle;
1279}
1280
1281void
1282free_mgmt_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
1283{
1284
John Soni Jose99bc5d52012-08-20 23:00:18 +05301285 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1286 "BM_%d : In free_mgmt_sgl_handle,"
1287 "eh_sgl_free_index=%d\n",
1288 phba->eh_sgl_free_index);
1289
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301290 if (phba->eh_sgl_hndl_base[phba->eh_sgl_free_index]) {
1291 /*
1292 * this can happen if clean_task is called on a task that
1293 * failed in xmit_task or alloc_pdu.
1294 */
John Soni Jose99bc5d52012-08-20 23:00:18 +05301295 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
1296 "BM_%d : Double Free in eh SGL ,"
1297 "eh_sgl_free_index=%d\n",
1298 phba->eh_sgl_free_index);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301299 return;
1300 }
1301 phba->eh_sgl_hndl_base[phba->eh_sgl_free_index] = psgl_handle;
1302 phba->eh_sgl_hndl_avbl++;
1303 if (phba->eh_sgl_free_index ==
1304 (phba->params.icds_per_ctrl - phba->params.ios_per_ctrl - 1))
1305 phba->eh_sgl_free_index = 0;
1306 else
1307 phba->eh_sgl_free_index++;
1308}
1309
1310static void
1311be_complete_io(struct beiscsi_conn *beiscsi_conn,
John Soni Jose73133262012-10-20 04:44:49 +05301312 struct iscsi_task *task,
1313 struct common_sol_cqe *csol_cqe)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301314{
1315 struct beiscsi_io_task *io_task = task->dd_data;
1316 struct be_status_bhs *sts_bhs =
1317 (struct be_status_bhs *)io_task->cmd_bhs;
1318 struct iscsi_conn *conn = beiscsi_conn->conn;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301319 unsigned char *sense;
1320 u32 resid = 0, exp_cmdsn, max_cmdsn;
1321 u8 rsp, status, flags;
1322
John Soni Jose73133262012-10-20 04:44:49 +05301323 exp_cmdsn = csol_cqe->exp_cmdsn;
1324 max_cmdsn = (csol_cqe->exp_cmdsn +
1325 csol_cqe->cmd_wnd - 1);
1326 rsp = csol_cqe->i_resp;
1327 status = csol_cqe->i_sts;
1328 flags = csol_cqe->i_flags;
1329 resid = csol_cqe->res_cnt;
1330
Jayamohan Kallickalbd535452011-10-07 19:31:10 -05001331 if (!task->sc) {
Jayamohan Kallickalda334972014-01-29 02:16:44 -05001332 if (io_task->scsi_cmnd) {
Jayamohan Kallickalbd535452011-10-07 19:31:10 -05001333 scsi_dma_unmap(io_task->scsi_cmnd);
Jayamohan Kallickalda334972014-01-29 02:16:44 -05001334 io_task->scsi_cmnd = NULL;
1335 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301336
Jayamohan Kallickalbd535452011-10-07 19:31:10 -05001337 return;
1338 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301339 task->sc->result = (DID_OK << 16) | status;
1340 if (rsp != ISCSI_STATUS_CMD_COMPLETED) {
1341 task->sc->result = DID_ERROR << 16;
1342 goto unmap;
1343 }
1344
1345 /* bidi not initially supported */
1346 if (flags & (ISCSI_FLAG_CMD_UNDERFLOW | ISCSI_FLAG_CMD_OVERFLOW)) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301347 if (!status && (flags & ISCSI_FLAG_CMD_OVERFLOW))
1348 task->sc->result = DID_ERROR << 16;
1349
1350 if (flags & ISCSI_FLAG_CMD_UNDERFLOW) {
1351 scsi_set_resid(task->sc, resid);
1352 if (!status && (scsi_bufflen(task->sc) - resid <
1353 task->sc->underflow))
1354 task->sc->result = DID_ERROR << 16;
1355 }
1356 }
1357
1358 if (status == SAM_STAT_CHECK_CONDITION) {
Dan Carpenter4053a4b2011-09-26 09:23:37 +03001359 u16 sense_len;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301360 unsigned short *slen = (unsigned short *)sts_bhs->sense_info;
Dan Carpenter4053a4b2011-09-26 09:23:37 +03001361
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301362 sense = sts_bhs->sense_info + sizeof(unsigned short);
Dan Carpenter4053a4b2011-09-26 09:23:37 +03001363 sense_len = be16_to_cpu(*slen);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301364 memcpy(task->sc->sense_buffer, sense,
1365 min_t(u16, sense_len, SCSI_SENSE_BUFFERSIZE));
1366 }
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301367
John Soni Jose73133262012-10-20 04:44:49 +05301368 if (io_task->cmd_bhs->iscsi_hdr.flags & ISCSI_FLAG_CMD_READ)
1369 conn->rxdata_octets += resid;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301370unmap:
John Soni Joseeb1c4692015-04-25 08:17:45 +05301371 if (io_task->scsi_cmnd) {
1372 scsi_dma_unmap(io_task->scsi_cmnd);
1373 io_task->scsi_cmnd = NULL;
1374 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301375 iscsi_complete_scsi_task(task, exp_cmdsn, max_cmdsn);
1376}
1377
1378static void
1379be_complete_logout(struct beiscsi_conn *beiscsi_conn,
John Soni Jose73133262012-10-20 04:44:49 +05301380 struct iscsi_task *task,
1381 struct common_sol_cqe *csol_cqe)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301382{
1383 struct iscsi_logout_rsp *hdr;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301384 struct beiscsi_io_task *io_task = task->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301385 struct iscsi_conn *conn = beiscsi_conn->conn;
1386
1387 hdr = (struct iscsi_logout_rsp *)task->hdr;
Jayamohan Kallickal7bd6e252010-01-05 05:07:02 +05301388 hdr->opcode = ISCSI_OP_LOGOUT_RSP;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301389 hdr->t2wait = 5;
1390 hdr->t2retain = 0;
John Soni Jose73133262012-10-20 04:44:49 +05301391 hdr->flags = csol_cqe->i_flags;
1392 hdr->response = csol_cqe->i_resp;
Jayamohan Kallickal702dc5e2013-04-05 20:38:37 -07001393 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn);
1394 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn +
1395 csol_cqe->cmd_wnd - 1);
John Soni Jose73133262012-10-20 04:44:49 +05301396
Jayamohan Kallickal7bd6e252010-01-05 05:07:02 +05301397 hdr->dlength[0] = 0;
1398 hdr->dlength[1] = 0;
1399 hdr->dlength[2] = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301400 hdr->hlength = 0;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301401 hdr->itt = io_task->libiscsi_itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301402 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1403}
1404
1405static void
1406be_complete_tmf(struct beiscsi_conn *beiscsi_conn,
John Soni Jose73133262012-10-20 04:44:49 +05301407 struct iscsi_task *task,
1408 struct common_sol_cqe *csol_cqe)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301409{
1410 struct iscsi_tm_rsp *hdr;
1411 struct iscsi_conn *conn = beiscsi_conn->conn;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301412 struct beiscsi_io_task *io_task = task->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301413
1414 hdr = (struct iscsi_tm_rsp *)task->hdr;
Jayamohan Kallickal7bd6e252010-01-05 05:07:02 +05301415 hdr->opcode = ISCSI_OP_SCSI_TMFUNC_RSP;
John Soni Jose73133262012-10-20 04:44:49 +05301416 hdr->flags = csol_cqe->i_flags;
1417 hdr->response = csol_cqe->i_resp;
Jayamohan Kallickal702dc5e2013-04-05 20:38:37 -07001418 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn);
1419 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn +
1420 csol_cqe->cmd_wnd - 1);
John Soni Jose73133262012-10-20 04:44:49 +05301421
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301422 hdr->itt = io_task->libiscsi_itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301423 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1424}
1425
1426static void
1427hwi_complete_drvr_msgs(struct beiscsi_conn *beiscsi_conn,
1428 struct beiscsi_hba *phba, struct sol_cqe *psol)
1429{
1430 struct hwi_wrb_context *pwrb_context;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301431 struct wrb_handle *pwrb_handle = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301432 struct hwi_controller *phwi_ctrlr;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301433 struct iscsi_task *task;
1434 struct beiscsi_io_task *io_task;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001435 uint16_t wrb_index, cid, cri_index;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301436
1437 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001438 if (is_chip_be2_be3r(phba)) {
John Soni Jose73133262012-10-20 04:44:49 +05301439 wrb_index = AMAP_GET_BITS(struct amap_it_dmsg_cqe,
1440 wrb_idx, psol);
1441 cid = AMAP_GET_BITS(struct amap_it_dmsg_cqe,
1442 cid, psol);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001443 } else {
1444 wrb_index = AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2,
1445 wrb_idx, psol);
1446 cid = AMAP_GET_BITS(struct amap_it_dmsg_cqe_v2,
1447 cid, psol);
John Soni Jose73133262012-10-20 04:44:49 +05301448 }
1449
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001450 cri_index = BE_GET_CRI_FROM_CID(cid);
1451 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
John Soni Jose73133262012-10-20 04:44:49 +05301452 pwrb_handle = pwrb_context->pwrb_handle_basestd[wrb_index];
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05301453 task = pwrb_handle->pio_handle;
Jayamohan Kallickal35e66012009-10-23 11:53:49 +05301454
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301455 io_task = task->dd_data;
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07001456 memset(io_task->pwrb_handle->pwrb, 0, sizeof(struct iscsi_wrb));
1457 iscsi_put_task(task);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301458}
1459
1460static void
1461be_complete_nopin_resp(struct beiscsi_conn *beiscsi_conn,
John Soni Jose73133262012-10-20 04:44:49 +05301462 struct iscsi_task *task,
1463 struct common_sol_cqe *csol_cqe)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301464{
1465 struct iscsi_nopin *hdr;
1466 struct iscsi_conn *conn = beiscsi_conn->conn;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301467 struct beiscsi_io_task *io_task = task->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301468
1469 hdr = (struct iscsi_nopin *)task->hdr;
John Soni Jose73133262012-10-20 04:44:49 +05301470 hdr->flags = csol_cqe->i_flags;
1471 hdr->exp_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn);
Jayamohan Kallickal702dc5e2013-04-05 20:38:37 -07001472 hdr->max_cmdsn = cpu_to_be32(csol_cqe->exp_cmdsn +
1473 csol_cqe->cmd_wnd - 1);
John Soni Jose73133262012-10-20 04:44:49 +05301474
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301475 hdr->opcode = ISCSI_OP_NOOP_IN;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301476 hdr->itt = io_task->libiscsi_itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301477 __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0);
1478}
1479
John Soni Jose73133262012-10-20 04:44:49 +05301480static void adapter_get_sol_cqe(struct beiscsi_hba *phba,
1481 struct sol_cqe *psol,
1482 struct common_sol_cqe *csol_cqe)
1483{
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001484 if (is_chip_be2_be3r(phba)) {
1485 csol_cqe->exp_cmdsn = AMAP_GET_BITS(struct amap_sol_cqe,
1486 i_exp_cmd_sn, psol);
1487 csol_cqe->res_cnt = AMAP_GET_BITS(struct amap_sol_cqe,
1488 i_res_cnt, psol);
1489 csol_cqe->cmd_wnd = AMAP_GET_BITS(struct amap_sol_cqe,
1490 i_cmd_wnd, psol);
1491 csol_cqe->wrb_index = AMAP_GET_BITS(struct amap_sol_cqe,
1492 wrb_index, psol);
1493 csol_cqe->cid = AMAP_GET_BITS(struct amap_sol_cqe,
1494 cid, psol);
1495 csol_cqe->hw_sts = AMAP_GET_BITS(struct amap_sol_cqe,
1496 hw_sts, psol);
1497 csol_cqe->i_resp = AMAP_GET_BITS(struct amap_sol_cqe,
1498 i_resp, psol);
1499 csol_cqe->i_sts = AMAP_GET_BITS(struct amap_sol_cqe,
1500 i_sts, psol);
1501 csol_cqe->i_flags = AMAP_GET_BITS(struct amap_sol_cqe,
1502 i_flags, psol);
1503 } else {
John Soni Jose73133262012-10-20 04:44:49 +05301504 csol_cqe->exp_cmdsn = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1505 i_exp_cmd_sn, psol);
1506 csol_cqe->res_cnt = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1507 i_res_cnt, psol);
1508 csol_cqe->wrb_index = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1509 wrb_index, psol);
1510 csol_cqe->cid = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1511 cid, psol);
1512 csol_cqe->hw_sts = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1513 hw_sts, psol);
Jayamohan Kallickal702dc5e2013-04-05 20:38:37 -07001514 csol_cqe->cmd_wnd = AMAP_GET_BITS(struct amap_sol_cqe_v2,
John Soni Jose73133262012-10-20 04:44:49 +05301515 i_cmd_wnd, psol);
1516 if (AMAP_GET_BITS(struct amap_sol_cqe_v2,
1517 cmd_cmpl, psol))
1518 csol_cqe->i_sts = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1519 i_sts, psol);
1520 else
1521 csol_cqe->i_resp = AMAP_GET_BITS(struct amap_sol_cqe_v2,
1522 i_sts, psol);
1523 if (AMAP_GET_BITS(struct amap_sol_cqe_v2,
1524 u, psol))
1525 csol_cqe->i_flags = ISCSI_FLAG_CMD_UNDERFLOW;
1526
1527 if (AMAP_GET_BITS(struct amap_sol_cqe_v2,
1528 o, psol))
1529 csol_cqe->i_flags |= ISCSI_FLAG_CMD_OVERFLOW;
John Soni Jose73133262012-10-20 04:44:49 +05301530 }
1531}
1532
1533
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301534static void hwi_complete_cmd(struct beiscsi_conn *beiscsi_conn,
1535 struct beiscsi_hba *phba, struct sol_cqe *psol)
1536{
1537 struct hwi_wrb_context *pwrb_context;
1538 struct wrb_handle *pwrb_handle;
1539 struct iscsi_wrb *pwrb = NULL;
1540 struct hwi_controller *phwi_ctrlr;
1541 struct iscsi_task *task;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301542 unsigned int type;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301543 struct iscsi_conn *conn = beiscsi_conn->conn;
1544 struct iscsi_session *session = conn->session;
John Soni Jose73133262012-10-20 04:44:49 +05301545 struct common_sol_cqe csol_cqe = {0};
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001546 uint16_t cri_index = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301547
1548 phwi_ctrlr = phba->phwi_ctrlr;
John Soni Jose73133262012-10-20 04:44:49 +05301549
1550 /* Copy the elements to a common structure */
1551 adapter_get_sol_cqe(phba, psol, &csol_cqe);
1552
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001553 cri_index = BE_GET_CRI_FROM_CID(csol_cqe.cid);
1554 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
John Soni Jose73133262012-10-20 04:44:49 +05301555
1556 pwrb_handle = pwrb_context->pwrb_handle_basestd[
1557 csol_cqe.wrb_index];
1558
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05301559 task = pwrb_handle->pio_handle;
1560 pwrb = pwrb_handle->pwrb;
John Soni Jose73133262012-10-20 04:44:49 +05301561 type = ((struct beiscsi_io_task *)task->dd_data)->wrb_type;
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05301562
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001563 spin_lock_bh(&session->back_lock);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301564 switch (type) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301565 case HWH_TYPE_IO:
1566 case HWH_TYPE_IO_RD:
1567 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) ==
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05301568 ISCSI_OP_NOOP_OUT)
John Soni Jose73133262012-10-20 04:44:49 +05301569 be_complete_nopin_resp(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05301570 else
John Soni Jose73133262012-10-20 04:44:49 +05301571 be_complete_io(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301572 break;
1573
1574 case HWH_TYPE_LOGOUT:
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05301575 if ((task->hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
John Soni Jose73133262012-10-20 04:44:49 +05301576 be_complete_logout(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05301577 else
John Soni Jose73133262012-10-20 04:44:49 +05301578 be_complete_tmf(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301579 break;
1580
1581 case HWH_TYPE_LOGIN:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301582 beiscsi_log(phba, KERN_ERR,
1583 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1584 "BM_%d :\t\t No HWH_TYPE_LOGIN Expected in"
1585 " hwi_complete_cmd- Solicited path\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301586 break;
1587
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301588 case HWH_TYPE_NOP:
John Soni Jose73133262012-10-20 04:44:49 +05301589 be_complete_nopin_resp(beiscsi_conn, task, &csol_cqe);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301590 break;
1591
1592 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +05301593 beiscsi_log(phba, KERN_WARNING,
1594 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1595 "BM_%d : In hwi_complete_cmd, unknown type = %d"
1596 "wrb_index 0x%x CID 0x%x\n", type,
John Soni Jose73133262012-10-20 04:44:49 +05301597 csol_cqe.wrb_index,
1598 csol_cqe.cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301599 break;
1600 }
Jayamohan Kallickal35e66012009-10-23 11:53:49 +05301601
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001602 spin_unlock_bh(&session->back_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301603}
1604
1605static struct list_head *hwi_get_async_busy_list(struct hwi_async_pdu_context
1606 *pasync_ctx, unsigned int is_header,
1607 unsigned int host_write_ptr)
1608{
1609 if (is_header)
1610 return &pasync_ctx->async_entry[host_write_ptr].
1611 header_busy_list;
1612 else
1613 return &pasync_ctx->async_entry[host_write_ptr].data_busy_list;
1614}
1615
1616static struct async_pdu_handle *
1617hwi_get_async_handle(struct beiscsi_hba *phba,
1618 struct beiscsi_conn *beiscsi_conn,
1619 struct hwi_async_pdu_context *pasync_ctx,
1620 struct i_t_dpdu_cqe *pdpdu_cqe, unsigned int *pcq_index)
1621{
1622 struct be_bus_address phys_addr;
1623 struct list_head *pbusy_list;
1624 struct async_pdu_handle *pasync_handle = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301625 unsigned char is_header = 0;
John Soni Jose73133262012-10-20 04:44:49 +05301626 unsigned int index, dpl;
1627
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001628 if (is_chip_be2_be3r(phba)) {
John Soni Jose73133262012-10-20 04:44:49 +05301629 dpl = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1630 dpl, pdpdu_cqe);
1631 index = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe,
1632 index, pdpdu_cqe);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07001633 } else {
1634 dpl = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1635 dpl, pdpdu_cqe);
1636 index = AMAP_GET_BITS(struct amap_i_t_dpdu_cqe_v2,
1637 index, pdpdu_cqe);
John Soni Jose73133262012-10-20 04:44:49 +05301638 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301639
1640 phys_addr.u.a32.address_lo =
John Soni Jose73133262012-10-20 04:44:49 +05301641 (pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe,
1642 db_addr_lo) / 32] - dpl);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301643 phys_addr.u.a32.address_hi =
John Soni Jose73133262012-10-20 04:44:49 +05301644 pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe,
1645 db_addr_hi) / 32];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301646
1647 phys_addr.u.a64.address =
1648 *((unsigned long long *)(&phys_addr.u.a64.address));
1649
1650 switch (pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe, code) / 32]
1651 & PDUCQE_CODE_MASK) {
1652 case UNSOL_HDR_NOTIFY:
1653 is_header = 1;
1654
John Soni Jose73133262012-10-20 04:44:49 +05301655 pbusy_list = hwi_get_async_busy_list(pasync_ctx,
1656 is_header, index);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301657 break;
1658 case UNSOL_DATA_NOTIFY:
John Soni Jose73133262012-10-20 04:44:49 +05301659 pbusy_list = hwi_get_async_busy_list(pasync_ctx,
1660 is_header, index);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301661 break;
1662 default:
1663 pbusy_list = NULL;
John Soni Jose99bc5d52012-08-20 23:00:18 +05301664 beiscsi_log(phba, KERN_WARNING,
1665 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
1666 "BM_%d : Unexpected code=%d\n",
1667 pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe,
1668 code) / 32] & PDUCQE_CODE_MASK);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301669 return NULL;
1670 }
1671
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301672 WARN_ON(list_empty(pbusy_list));
1673 list_for_each_entry(pasync_handle, pbusy_list, link) {
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05001674 if (pasync_handle->pa.u.a64.address == phys_addr.u.a64.address)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301675 break;
1676 }
1677
1678 WARN_ON(!pasync_handle);
1679
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001680 pasync_handle->cri = BE_GET_ASYNC_CRI_FROM_CID(
1681 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301682 pasync_handle->is_header = is_header;
John Soni Jose73133262012-10-20 04:44:49 +05301683 pasync_handle->buffer_len = dpl;
1684 *pcq_index = index;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301685
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301686 return pasync_handle;
1687}
1688
1689static unsigned int
John Soni Jose99bc5d52012-08-20 23:00:18 +05301690hwi_update_async_writables(struct beiscsi_hba *phba,
1691 struct hwi_async_pdu_context *pasync_ctx,
1692 unsigned int is_header, unsigned int cq_index)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301693{
1694 struct list_head *pbusy_list;
1695 struct async_pdu_handle *pasync_handle;
1696 unsigned int num_entries, writables = 0;
1697 unsigned int *pep_read_ptr, *pwritables;
1698
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05001699 num_entries = pasync_ctx->num_entries;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301700 if (is_header) {
1701 pep_read_ptr = &pasync_ctx->async_header.ep_read_ptr;
1702 pwritables = &pasync_ctx->async_header.writables;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301703 } else {
1704 pep_read_ptr = &pasync_ctx->async_data.ep_read_ptr;
1705 pwritables = &pasync_ctx->async_data.writables;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301706 }
1707
1708 while ((*pep_read_ptr) != cq_index) {
1709 (*pep_read_ptr)++;
1710 *pep_read_ptr = (*pep_read_ptr) % num_entries;
1711
1712 pbusy_list = hwi_get_async_busy_list(pasync_ctx, is_header,
1713 *pep_read_ptr);
1714 if (writables == 0)
1715 WARN_ON(list_empty(pbusy_list));
1716
1717 if (!list_empty(pbusy_list)) {
1718 pasync_handle = list_entry(pbusy_list->next,
1719 struct async_pdu_handle,
1720 link);
1721 WARN_ON(!pasync_handle);
1722 pasync_handle->consumed = 1;
1723 }
1724
1725 writables++;
1726 }
1727
1728 if (!writables) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301729 beiscsi_log(phba, KERN_ERR,
1730 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
1731 "BM_%d : Duplicate notification received - index 0x%x!!\n",
1732 cq_index);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301733 WARN_ON(1);
1734 }
1735
1736 *pwritables = *pwritables + writables;
1737 return 0;
1738}
1739
Jayamohan Kallickal9728d8d2012-04-03 23:41:47 -05001740static void hwi_free_async_msg(struct beiscsi_hba *phba,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001741 struct hwi_async_pdu_context *pasync_ctx,
1742 unsigned int cri)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301743{
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301744 struct async_pdu_handle *pasync_handle, *tmp_handle;
1745 struct list_head *plist;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301746
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301747 plist = &pasync_ctx->async_entry[cri].wait_queue.list;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301748 list_for_each_entry_safe(pasync_handle, tmp_handle, plist, link) {
1749 list_del(&pasync_handle->link);
1750
Jayamohan Kallickal9728d8d2012-04-03 23:41:47 -05001751 if (pasync_handle->is_header) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301752 list_add_tail(&pasync_handle->link,
1753 &pasync_ctx->async_header.free_list);
1754 pasync_ctx->async_header.free_entries++;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301755 } else {
1756 list_add_tail(&pasync_handle->link,
1757 &pasync_ctx->async_data.free_list);
1758 pasync_ctx->async_data.free_entries++;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301759 }
1760 }
1761
1762 INIT_LIST_HEAD(&pasync_ctx->async_entry[cri].wait_queue.list);
1763 pasync_ctx->async_entry[cri].wait_queue.hdr_received = 0;
1764 pasync_ctx->async_entry[cri].wait_queue.bytes_received = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301765}
1766
1767static struct phys_addr *
1768hwi_get_ring_address(struct hwi_async_pdu_context *pasync_ctx,
1769 unsigned int is_header, unsigned int host_write_ptr)
1770{
1771 struct phys_addr *pasync_sge = NULL;
1772
1773 if (is_header)
1774 pasync_sge = pasync_ctx->async_header.ring_base;
1775 else
1776 pasync_sge = pasync_ctx->async_data.ring_base;
1777
1778 return pasync_sge + host_write_ptr;
1779}
1780
1781static void hwi_post_async_buffers(struct beiscsi_hba *phba,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001782 unsigned int is_header, uint8_t ulp_num)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301783{
1784 struct hwi_controller *phwi_ctrlr;
1785 struct hwi_async_pdu_context *pasync_ctx;
1786 struct async_pdu_handle *pasync_handle;
1787 struct list_head *pfree_link, *pbusy_list;
1788 struct phys_addr *pasync_sge;
1789 unsigned int ring_id, num_entries;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001790 unsigned int host_write_num, doorbell_offset;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301791 unsigned int writables;
1792 unsigned int i = 0;
1793 u32 doorbell = 0;
1794
1795 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001796 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr, ulp_num);
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05001797 num_entries = pasync_ctx->num_entries;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301798
1799 if (is_header) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301800 writables = min(pasync_ctx->async_header.writables,
1801 pasync_ctx->async_header.free_entries);
1802 pfree_link = pasync_ctx->async_header.free_list.next;
1803 host_write_num = pasync_ctx->async_header.host_write_ptr;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001804 ring_id = phwi_ctrlr->default_pdu_hdr[ulp_num].id;
1805 doorbell_offset = phwi_ctrlr->default_pdu_hdr[ulp_num].
1806 doorbell_offset;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301807 } else {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301808 writables = min(pasync_ctx->async_data.writables,
1809 pasync_ctx->async_data.free_entries);
1810 pfree_link = pasync_ctx->async_data.free_list.next;
1811 host_write_num = pasync_ctx->async_data.host_write_ptr;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001812 ring_id = phwi_ctrlr->default_pdu_data[ulp_num].id;
1813 doorbell_offset = phwi_ctrlr->default_pdu_data[ulp_num].
1814 doorbell_offset;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301815 }
1816
1817 writables = (writables / 8) * 8;
1818 if (writables) {
1819 for (i = 0; i < writables; i++) {
1820 pbusy_list =
1821 hwi_get_async_busy_list(pasync_ctx, is_header,
1822 host_write_num);
1823 pasync_handle =
1824 list_entry(pfree_link, struct async_pdu_handle,
1825 link);
1826 WARN_ON(!pasync_handle);
1827 pasync_handle->consumed = 0;
1828
1829 pfree_link = pfree_link->next;
1830
1831 pasync_sge = hwi_get_ring_address(pasync_ctx,
1832 is_header, host_write_num);
1833
1834 pasync_sge->hi = pasync_handle->pa.u.a32.address_lo;
1835 pasync_sge->lo = pasync_handle->pa.u.a32.address_hi;
1836
1837 list_move(&pasync_handle->link, pbusy_list);
1838
1839 host_write_num++;
1840 host_write_num = host_write_num % num_entries;
1841 }
1842
1843 if (is_header) {
1844 pasync_ctx->async_header.host_write_ptr =
1845 host_write_num;
1846 pasync_ctx->async_header.free_entries -= writables;
1847 pasync_ctx->async_header.writables -= writables;
1848 pasync_ctx->async_header.busy_entries += writables;
1849 } else {
1850 pasync_ctx->async_data.host_write_ptr = host_write_num;
1851 pasync_ctx->async_data.free_entries -= writables;
1852 pasync_ctx->async_data.writables -= writables;
1853 pasync_ctx->async_data.busy_entries += writables;
1854 }
1855
1856 doorbell |= ring_id & DB_DEF_PDU_RING_ID_MASK;
1857 doorbell |= 1 << DB_DEF_PDU_REARM_SHIFT;
1858 doorbell |= 0 << DB_DEF_PDU_EVENT_SHIFT;
1859 doorbell |= (writables & DB_DEF_PDU_CQPROC_MASK)
1860 << DB_DEF_PDU_CQPROC_SHIFT;
1861
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001862 iowrite32(doorbell, phba->db_va + doorbell_offset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301863 }
1864}
1865
1866static void hwi_flush_default_pdu_buffer(struct beiscsi_hba *phba,
1867 struct beiscsi_conn *beiscsi_conn,
1868 struct i_t_dpdu_cqe *pdpdu_cqe)
1869{
1870 struct hwi_controller *phwi_ctrlr;
1871 struct hwi_async_pdu_context *pasync_ctx;
1872 struct async_pdu_handle *pasync_handle = NULL;
1873 unsigned int cq_index = -1;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001874 uint16_t cri_index = BE_GET_CRI_FROM_CID(
1875 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301876
1877 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001878 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr,
1879 BEISCSI_GET_ULP_FROM_CRI(phwi_ctrlr,
1880 cri_index));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301881
1882 pasync_handle = hwi_get_async_handle(phba, beiscsi_conn, pasync_ctx,
1883 pdpdu_cqe, &cq_index);
1884 BUG_ON(pasync_handle->is_header != 0);
1885 if (pasync_handle->consumed == 0)
John Soni Jose99bc5d52012-08-20 23:00:18 +05301886 hwi_update_async_writables(phba, pasync_ctx,
1887 pasync_handle->is_header, cq_index);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301888
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001889 hwi_free_async_msg(phba, pasync_ctx, pasync_handle->cri);
1890 hwi_post_async_buffers(phba, pasync_handle->is_header,
1891 BEISCSI_GET_ULP_FROM_CRI(phwi_ctrlr,
1892 cri_index));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301893}
1894
1895static unsigned int
1896hwi_fwd_async_msg(struct beiscsi_conn *beiscsi_conn,
1897 struct beiscsi_hba *phba,
1898 struct hwi_async_pdu_context *pasync_ctx, unsigned short cri)
1899{
1900 struct list_head *plist;
1901 struct async_pdu_handle *pasync_handle;
1902 void *phdr = NULL;
1903 unsigned int hdr_len = 0, buf_len = 0;
1904 unsigned int status, index = 0, offset = 0;
1905 void *pfirst_buffer = NULL;
1906 unsigned int num_buf = 0;
1907
1908 plist = &pasync_ctx->async_entry[cri].wait_queue.list;
1909
1910 list_for_each_entry(pasync_handle, plist, link) {
1911 if (index == 0) {
1912 phdr = pasync_handle->pbuffer;
1913 hdr_len = pasync_handle->buffer_len;
1914 } else {
1915 buf_len = pasync_handle->buffer_len;
1916 if (!num_buf) {
1917 pfirst_buffer = pasync_handle->pbuffer;
1918 num_buf++;
1919 }
1920 memcpy(pfirst_buffer + offset,
1921 pasync_handle->pbuffer, buf_len);
Jayamohan Kallickalf2ba02b2012-04-03 23:41:37 -05001922 offset += buf_len;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301923 }
1924 index++;
1925 }
1926
1927 status = beiscsi_process_async_pdu(beiscsi_conn, phba,
Jayamohan Kallickal7da50872010-01-05 05:04:12 +05301928 phdr, hdr_len, pfirst_buffer,
Jayamohan Kallickalf2ba02b2012-04-03 23:41:37 -05001929 offset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301930
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001931 hwi_free_async_msg(phba, pasync_ctx, cri);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301932 return 0;
1933}
1934
1935static unsigned int
1936hwi_gather_async_pdu(struct beiscsi_conn *beiscsi_conn,
1937 struct beiscsi_hba *phba,
1938 struct async_pdu_handle *pasync_handle)
1939{
1940 struct hwi_async_pdu_context *pasync_ctx;
1941 struct hwi_controller *phwi_ctrlr;
1942 unsigned int bytes_needed = 0, status = 0;
1943 unsigned short cri = pasync_handle->cri;
1944 struct pdu_base *ppdu;
1945
1946 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001947 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr,
1948 BEISCSI_GET_ULP_FROM_CRI(phwi_ctrlr,
1949 BE_GET_CRI_FROM_CID(beiscsi_conn->
1950 beiscsi_conn_cid)));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301951
1952 list_del(&pasync_handle->link);
1953 if (pasync_handle->is_header) {
1954 pasync_ctx->async_header.busy_entries--;
1955 if (pasync_ctx->async_entry[cri].wait_queue.hdr_received) {
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07001956 hwi_free_async_msg(phba, pasync_ctx, cri);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301957 BUG();
1958 }
1959
1960 pasync_ctx->async_entry[cri].wait_queue.bytes_received = 0;
1961 pasync_ctx->async_entry[cri].wait_queue.hdr_received = 1;
1962 pasync_ctx->async_entry[cri].wait_queue.hdr_len =
1963 (unsigned short)pasync_handle->buffer_len;
1964 list_add_tail(&pasync_handle->link,
1965 &pasync_ctx->async_entry[cri].wait_queue.list);
1966
1967 ppdu = pasync_handle->pbuffer;
1968 bytes_needed = ((((ppdu->dw[offsetof(struct amap_pdu_base,
1969 data_len_hi) / 32] & PDUBASE_DATALENHI_MASK) << 8) &
1970 0xFFFF0000) | ((be16_to_cpu((ppdu->
1971 dw[offsetof(struct amap_pdu_base, data_len_lo) / 32]
1972 & PDUBASE_DATALENLO_MASK) >> 16)) & 0x0000FFFF));
1973
1974 if (status == 0) {
1975 pasync_ctx->async_entry[cri].wait_queue.bytes_needed =
1976 bytes_needed;
1977
1978 if (bytes_needed == 0)
1979 status = hwi_fwd_async_msg(beiscsi_conn, phba,
1980 pasync_ctx, cri);
1981 }
1982 } else {
1983 pasync_ctx->async_data.busy_entries--;
1984 if (pasync_ctx->async_entry[cri].wait_queue.hdr_received) {
1985 list_add_tail(&pasync_handle->link,
1986 &pasync_ctx->async_entry[cri].wait_queue.
1987 list);
1988 pasync_ctx->async_entry[cri].wait_queue.
1989 bytes_received +=
1990 (unsigned short)pasync_handle->buffer_len;
1991
1992 if (pasync_ctx->async_entry[cri].wait_queue.
1993 bytes_received >=
1994 pasync_ctx->async_entry[cri].wait_queue.
1995 bytes_needed)
1996 status = hwi_fwd_async_msg(beiscsi_conn, phba,
1997 pasync_ctx, cri);
1998 }
1999 }
2000 return status;
2001}
2002
2003static void hwi_process_default_pdu_ring(struct beiscsi_conn *beiscsi_conn,
2004 struct beiscsi_hba *phba,
2005 struct i_t_dpdu_cqe *pdpdu_cqe)
2006{
2007 struct hwi_controller *phwi_ctrlr;
2008 struct hwi_async_pdu_context *pasync_ctx;
2009 struct async_pdu_handle *pasync_handle = NULL;
2010 unsigned int cq_index = -1;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002011 uint16_t cri_index = BE_GET_CRI_FROM_CID(
2012 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302013
2014 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002015 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(phwi_ctrlr,
2016 BEISCSI_GET_ULP_FROM_CRI(phwi_ctrlr,
2017 cri_index));
2018
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302019 pasync_handle = hwi_get_async_handle(phba, beiscsi_conn, pasync_ctx,
2020 pdpdu_cqe, &cq_index);
2021
2022 if (pasync_handle->consumed == 0)
John Soni Jose99bc5d52012-08-20 23:00:18 +05302023 hwi_update_async_writables(phba, pasync_ctx,
2024 pasync_handle->is_header, cq_index);
2025
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302026 hwi_gather_async_pdu(beiscsi_conn, phba, pasync_handle);
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002027 hwi_post_async_buffers(phba, pasync_handle->is_header,
2028 BEISCSI_GET_ULP_FROM_CRI(
2029 phwi_ctrlr, cri_index));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302030}
2031
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05302032static void beiscsi_process_mcc_isr(struct beiscsi_hba *phba)
2033{
2034 struct be_queue_info *mcc_cq;
2035 struct be_mcc_compl *mcc_compl;
2036 unsigned int num_processed = 0;
2037
2038 mcc_cq = &phba->ctrl.mcc_obj.cq;
2039 mcc_compl = queue_tail_node(mcc_cq);
2040 mcc_compl->flags = le32_to_cpu(mcc_compl->flags);
2041 while (mcc_compl->flags & CQE_FLAGS_VALID_MASK) {
2042
2043 if (num_processed >= 32) {
2044 hwi_ring_cq_db(phba, mcc_cq->id,
2045 num_processed, 0, 0);
2046 num_processed = 0;
2047 }
2048 if (mcc_compl->flags & CQE_FLAGS_ASYNC_MASK) {
2049 /* Interpret flags as an async trailer */
2050 if (is_link_state_evt(mcc_compl->flags))
2051 /* Interpret compl as a async link evt */
2052 beiscsi_async_link_state_process(phba,
2053 (struct be_async_event_link_state *) mcc_compl);
John Soni Jose3efde862015-04-25 08:16:57 +05302054 else {
John Soni Jose99bc5d52012-08-20 23:00:18 +05302055 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_MBOX,
2056 "BM_%d : Unsupported Async Event, flags"
2057 " = 0x%08x\n",
2058 mcc_compl->flags);
John Soni Jose3efde862015-04-25 08:16:57 +05302059 if (phba->state & BE_ADAPTER_LINK_UP) {
2060 phba->state |= BE_ADAPTER_CHECK_BOOT;
2061 phba->get_boot = BE_GET_BOOT_RETRIES;
2062 }
2063 }
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05302064 } else if (mcc_compl->flags & CQE_FLAGS_COMPLETED_MASK) {
2065 be_mcc_compl_process_isr(&phba->ctrl, mcc_compl);
2066 atomic_dec(&phba->ctrl.mcc_obj.q.used);
2067 }
2068
2069 mcc_compl->flags = 0;
2070 queue_tail_inc(mcc_cq);
2071 mcc_compl = queue_tail_node(mcc_cq);
2072 mcc_compl->flags = le32_to_cpu(mcc_compl->flags);
2073 num_processed++;
2074 }
2075
2076 if (num_processed > 0)
2077 hwi_ring_cq_db(phba, mcc_cq->id, num_processed, 1, 0);
2078
2079}
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302080
John Soni Jose6763daa2012-10-20 04:41:45 +05302081/**
2082 * beiscsi_process_cq()- Process the Completion Queue
2083 * @pbe_eq: Event Q on which the Completion has come
2084 *
2085 * return
2086 * Number of Completion Entries processed.
2087 **/
Jayamohan Kallickalb7ab35b2014-08-08 01:00:01 -04002088unsigned int beiscsi_process_cq(struct be_eq_obj *pbe_eq)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302089{
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302090 struct be_queue_info *cq;
2091 struct sol_cqe *sol;
2092 struct dmsg_cqe *dmsg;
2093 unsigned int num_processed = 0;
2094 unsigned int tot_nump = 0;
John Soni Jose0a513dd2012-08-20 23:00:55 +05302095 unsigned short code = 0, cid = 0;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002096 uint16_t cri_index = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302097 struct beiscsi_conn *beiscsi_conn;
Jayamohan Kallickalc2462282010-01-05 05:05:34 +05302098 struct beiscsi_endpoint *beiscsi_ep;
2099 struct iscsi_endpoint *ep;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302100 struct beiscsi_hba *phba;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302101
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302102 cq = pbe_eq->cq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302103 sol = queue_tail_node(cq);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302104 phba = pbe_eq->phba;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302105
2106 while (sol->dw[offsetof(struct amap_sol_cqe, valid) / 32] &
2107 CQE_VALID_MASK) {
2108 be_dws_le_to_cpu(sol, sizeof(struct sol_cqe));
2109
John Soni Jose73133262012-10-20 04:44:49 +05302110 code = (sol->dw[offsetof(struct amap_sol_cqe, code) /
2111 32] & CQE_CODE_MASK);
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05302112
John Soni Jose73133262012-10-20 04:44:49 +05302113 /* Get the CID */
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07002114 if (is_chip_be2_be3r(phba)) {
2115 cid = AMAP_GET_BITS(struct amap_sol_cqe, cid, sol);
2116 } else {
John Soni Jose73133262012-10-20 04:44:49 +05302117 if ((code == DRIVERMSG_NOTIFY) ||
2118 (code == UNSOL_HDR_NOTIFY) ||
2119 (code == UNSOL_DATA_NOTIFY))
2120 cid = AMAP_GET_BITS(
2121 struct amap_i_t_dpdu_cqe_v2,
2122 cid, sol);
2123 else
2124 cid = AMAP_GET_BITS(struct amap_sol_cqe_v2,
2125 cid, sol);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07002126 }
John Soni Jose73133262012-10-20 04:44:49 +05302127
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002128 cri_index = BE_GET_CRI_FROM_CID(cid);
2129 ep = phba->ep_array[cri_index];
Jayamohan Kallickalb7ab35b2014-08-08 01:00:01 -04002130
2131 if (ep == NULL) {
2132 /* connection has already been freed
2133 * just move on to next one
2134 */
2135 beiscsi_log(phba, KERN_WARNING,
2136 BEISCSI_LOG_INIT,
2137 "BM_%d : proc cqe of disconn ep: cid %d\n",
2138 cid);
2139 goto proc_next_cqe;
2140 }
2141
Jayamohan Kallickalc2462282010-01-05 05:05:34 +05302142 beiscsi_ep = ep->dd_data;
2143 beiscsi_conn = beiscsi_ep->conn;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05302144
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302145 if (num_processed >= 32) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302146 hwi_ring_cq_db(phba, cq->id,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302147 num_processed, 0, 0);
2148 tot_nump += num_processed;
2149 num_processed = 0;
2150 }
2151
John Soni Jose0a513dd2012-08-20 23:00:55 +05302152 switch (code) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302153 case SOL_CMD_COMPLETE:
2154 hwi_complete_cmd(beiscsi_conn, phba, sol);
2155 break;
2156 case DRIVERMSG_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302157 beiscsi_log(phba, KERN_INFO,
2158 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05302159 "BM_%d : Received %s[%d] on CID : %d\n",
2160 cqe_desc[code], code, cid);
John Soni Jose99bc5d52012-08-20 23:00:18 +05302161
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302162 dmsg = (struct dmsg_cqe *)sol;
2163 hwi_complete_drvr_msgs(beiscsi_conn, phba, sol);
2164 break;
2165 case UNSOL_HDR_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302166 beiscsi_log(phba, KERN_INFO,
2167 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05302168 "BM_%d : Received %s[%d] on CID : %d\n",
2169 cqe_desc[code], code, cid);
John Soni Jose99bc5d52012-08-20 23:00:18 +05302170
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07002171 spin_lock_bh(&phba->async_pdu_lock);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302172 hwi_process_default_pdu_ring(beiscsi_conn, phba,
2173 (struct i_t_dpdu_cqe *)sol);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07002174 spin_unlock_bh(&phba->async_pdu_lock);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302175 break;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302176 case UNSOL_DATA_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302177 beiscsi_log(phba, KERN_INFO,
2178 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
John Soni Jose6763daa2012-10-20 04:41:45 +05302179 "BM_%d : Received %s[%d] on CID : %d\n",
2180 cqe_desc[code], code, cid);
John Soni Jose99bc5d52012-08-20 23:00:18 +05302181
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07002182 spin_lock_bh(&phba->async_pdu_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302183 hwi_process_default_pdu_ring(beiscsi_conn, phba,
2184 (struct i_t_dpdu_cqe *)sol);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07002185 spin_unlock_bh(&phba->async_pdu_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302186 break;
2187 case CXN_INVALIDATE_INDEX_NOTIFY:
2188 case CMD_INVALIDATED_NOTIFY:
2189 case CXN_INVALIDATE_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302190 beiscsi_log(phba, KERN_ERR,
2191 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05302192 "BM_%d : Ignoring %s[%d] on CID : %d\n",
2193 cqe_desc[code], code, cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302194 break;
2195 case SOL_CMD_KILLED_DATA_DIGEST_ERR:
2196 case CMD_KILLED_INVALID_STATSN_RCVD:
2197 case CMD_KILLED_INVALID_R2T_RCVD:
2198 case CMD_CXN_KILLED_LUN_INVALID:
2199 case CMD_CXN_KILLED_ICD_INVALID:
2200 case CMD_CXN_KILLED_ITT_INVALID:
2201 case CMD_CXN_KILLED_SEQ_OUTOFORDER:
2202 case CMD_CXN_KILLED_INVALID_DATASN_RCVD:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302203 beiscsi_log(phba, KERN_ERR,
2204 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
John Soni Jose6763daa2012-10-20 04:41:45 +05302205 "BM_%d : Cmd Notification %s[%d] on CID : %d\n",
2206 cqe_desc[code], code, cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302207 break;
2208 case UNSOL_DATA_DIGEST_ERROR_NOTIFY:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302209 beiscsi_log(phba, KERN_ERR,
2210 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05302211 "BM_%d : Dropping %s[%d] on DPDU ring on CID : %d\n",
2212 cqe_desc[code], code, cid);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07002213 spin_lock_bh(&phba->async_pdu_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302214 hwi_flush_default_pdu_buffer(phba, beiscsi_conn,
2215 (struct i_t_dpdu_cqe *) sol);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07002216 spin_unlock_bh(&phba->async_pdu_lock);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302217 break;
2218 case CXN_KILLED_PDU_SIZE_EXCEEDS_DSL:
2219 case CXN_KILLED_BURST_LEN_MISMATCH:
2220 case CXN_KILLED_AHS_RCVD:
2221 case CXN_KILLED_HDR_DIGEST_ERR:
2222 case CXN_KILLED_UNKNOWN_HDR:
2223 case CXN_KILLED_STALE_ITT_TTT_RCVD:
2224 case CXN_KILLED_INVALID_ITT_TTT_RCVD:
2225 case CXN_KILLED_TIMED_OUT:
2226 case CXN_KILLED_FIN_RCVD:
John Soni Jose6763daa2012-10-20 04:41:45 +05302227 case CXN_KILLED_RST_SENT:
2228 case CXN_KILLED_RST_RCVD:
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302229 case CXN_KILLED_BAD_UNSOL_PDU_RCVD:
2230 case CXN_KILLED_BAD_WRB_INDEX_ERROR:
2231 case CXN_KILLED_OVER_RUN_RESIDUAL:
2232 case CXN_KILLED_UNDER_RUN_RESIDUAL:
2233 case CXN_KILLED_CMND_DATA_NOT_ON_SAME_CONN:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302234 beiscsi_log(phba, KERN_ERR,
2235 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05302236 "BM_%d : Event %s[%d] received on CID : %d\n",
2237 cqe_desc[code], code, cid);
John Soni Jose0a513dd2012-08-20 23:00:55 +05302238 if (beiscsi_conn)
2239 iscsi_conn_failure(beiscsi_conn->conn,
2240 ISCSI_ERR_CONN_FAILED);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302241 break;
2242 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +05302243 beiscsi_log(phba, KERN_ERR,
2244 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
John Soni Jose6763daa2012-10-20 04:41:45 +05302245 "BM_%d : Invalid CQE Event Received Code : %d"
2246 "CID 0x%x...\n",
John Soni Jose0a513dd2012-08-20 23:00:55 +05302247 code, cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302248 break;
2249 }
2250
Jayamohan Kallickalb7ab35b2014-08-08 01:00:01 -04002251proc_next_cqe:
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302252 AMAP_SET_BITS(struct amap_sol_cqe, valid, sol, 0);
2253 queue_tail_inc(cq);
2254 sol = queue_tail_node(cq);
2255 num_processed++;
2256 }
2257
2258 if (num_processed > 0) {
2259 tot_nump += num_processed;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302260 hwi_ring_cq_db(phba, cq->id, num_processed, 1, 0);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302261 }
2262 return tot_nump;
2263}
2264
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05302265void beiscsi_process_all_cqs(struct work_struct *work)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302266{
2267 unsigned long flags;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302268 struct hwi_controller *phwi_ctrlr;
2269 struct hwi_context_memory *phwi_context;
John Soni Jose72fb46a2012-10-20 04:42:49 +05302270 struct beiscsi_hba *phba;
2271 struct be_eq_obj *pbe_eq =
2272 container_of(work, struct be_eq_obj, work_cqs);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302273
John Soni Jose72fb46a2012-10-20 04:42:49 +05302274 phba = pbe_eq->phba;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302275 phwi_ctrlr = phba->phwi_ctrlr;
2276 phwi_context = phwi_ctrlr->phwi_ctxt;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302277
John Soni Jose72fb46a2012-10-20 04:42:49 +05302278 if (pbe_eq->todo_mcc_cq) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302279 spin_lock_irqsave(&phba->isr_lock, flags);
John Soni Jose72fb46a2012-10-20 04:42:49 +05302280 pbe_eq->todo_mcc_cq = false;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302281 spin_unlock_irqrestore(&phba->isr_lock, flags);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05302282 beiscsi_process_mcc_isr(phba);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302283 }
2284
John Soni Jose72fb46a2012-10-20 04:42:49 +05302285 if (pbe_eq->todo_cq) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302286 spin_lock_irqsave(&phba->isr_lock, flags);
John Soni Jose72fb46a2012-10-20 04:42:49 +05302287 pbe_eq->todo_cq = false;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302288 spin_unlock_irqrestore(&phba->isr_lock, flags);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302289 beiscsi_process_cq(pbe_eq);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302290 }
John Soni Jose72fb46a2012-10-20 04:42:49 +05302291
2292 /* rearm EQ for further interrupts */
2293 hwi_ring_eq_db(phba, pbe_eq->q.id, 0, 0, 1, 1);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302294}
2295
Christoph Hellwig511cbce2015-11-10 14:56:14 +01002296static int be_iopoll(struct irq_poll *iop, int budget)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302297{
Shlomo Pongratzad3f4282013-04-05 20:38:36 -07002298 unsigned int ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302299 struct beiscsi_hba *phba;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302300 struct be_eq_obj *pbe_eq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302301
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302302 pbe_eq = container_of(iop, struct be_eq_obj, iopoll);
2303 ret = beiscsi_process_cq(pbe_eq);
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04002304 pbe_eq->cq_count += ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302305 if (ret < budget) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302306 phba = pbe_eq->phba;
Christoph Hellwig511cbce2015-11-10 14:56:14 +01002307 irq_poll_complete(iop);
John Soni Jose99bc5d52012-08-20 23:00:18 +05302308 beiscsi_log(phba, KERN_INFO,
2309 BEISCSI_LOG_CONFIG | BEISCSI_LOG_IO,
2310 "BM_%d : rearm pbe_eq->q.id =%d\n",
2311 pbe_eq->q.id);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302312 hwi_ring_eq_db(phba, pbe_eq->q.id, 0, 0, 1, 1);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302313 }
2314 return ret;
2315}
2316
2317static void
John Soni Jose09a10932012-10-20 04:44:23 +05302318hwi_write_sgl_v2(struct iscsi_wrb *pwrb, struct scatterlist *sg,
2319 unsigned int num_sg, struct beiscsi_io_task *io_task)
2320{
2321 struct iscsi_sge *psgl;
2322 unsigned int sg_len, index;
2323 unsigned int sge_len = 0;
2324 unsigned long long addr;
2325 struct scatterlist *l_sg;
2326 unsigned int offset;
2327
2328 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, iscsi_bhs_addr_lo, pwrb,
2329 io_task->bhs_pa.u.a32.address_lo);
2330 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, iscsi_bhs_addr_hi, pwrb,
2331 io_task->bhs_pa.u.a32.address_hi);
2332
2333 l_sg = sg;
2334 for (index = 0; (index < num_sg) && (index < 2); index++,
2335 sg = sg_next(sg)) {
2336 if (index == 0) {
2337 sg_len = sg_dma_len(sg);
2338 addr = (u64) sg_dma_address(sg);
2339 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2340 sge0_addr_lo, pwrb,
2341 lower_32_bits(addr));
2342 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2343 sge0_addr_hi, pwrb,
2344 upper_32_bits(addr));
2345 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2346 sge0_len, pwrb,
2347 sg_len);
2348 sge_len = sg_len;
2349 } else {
2350 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_r2t_offset,
2351 pwrb, sge_len);
2352 sg_len = sg_dma_len(sg);
2353 addr = (u64) sg_dma_address(sg);
2354 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2355 sge1_addr_lo, pwrb,
2356 lower_32_bits(addr));
2357 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2358 sge1_addr_hi, pwrb,
2359 upper_32_bits(addr));
2360 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
2361 sge1_len, pwrb,
2362 sg_len);
2363 }
2364 }
2365 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
2366 memset(psgl, 0, sizeof(*psgl) * BE2_SGE);
2367
2368 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len - 2);
2369
2370 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2371 io_task->bhs_pa.u.a32.address_hi);
2372 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2373 io_task->bhs_pa.u.a32.address_lo);
2374
2375 if (num_sg == 1) {
2376 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb,
2377 1);
2378 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb,
2379 0);
2380 } else if (num_sg == 2) {
2381 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb,
2382 0);
2383 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb,
2384 1);
2385 } else {
2386 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge0_last, pwrb,
2387 0);
2388 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sge1_last, pwrb,
2389 0);
2390 }
2391
2392 sg = l_sg;
2393 psgl++;
2394 psgl++;
2395 offset = 0;
2396 for (index = 0; index < num_sg; index++, sg = sg_next(sg), psgl++) {
2397 sg_len = sg_dma_len(sg);
2398 addr = (u64) sg_dma_address(sg);
2399 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2400 lower_32_bits(addr));
2401 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2402 upper_32_bits(addr));
2403 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, sg_len);
2404 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, offset);
2405 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
2406 offset += sg_len;
2407 }
2408 psgl--;
2409 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
2410}
2411
2412static void
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302413hwi_write_sgl(struct iscsi_wrb *pwrb, struct scatterlist *sg,
2414 unsigned int num_sg, struct beiscsi_io_task *io_task)
2415{
2416 struct iscsi_sge *psgl;
Jayamohan Kallickal58ff4bd2010-10-06 23:46:47 +05302417 unsigned int sg_len, index;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302418 unsigned int sge_len = 0;
2419 unsigned long long addr;
2420 struct scatterlist *l_sg;
2421 unsigned int offset;
2422
2423 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb,
2424 io_task->bhs_pa.u.a32.address_lo);
2425 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb,
2426 io_task->bhs_pa.u.a32.address_hi);
2427
2428 l_sg = sg;
Jayamohan Kallickal48bd86c2010-01-07 01:50:19 +05302429 for (index = 0; (index < num_sg) && (index < 2); index++,
2430 sg = sg_next(sg)) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302431 if (index == 0) {
2432 sg_len = sg_dma_len(sg);
2433 addr = (u64) sg_dma_address(sg);
2434 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302435 ((u32)(addr & 0xFFFFFFFF)));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302436 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302437 ((u32)(addr >> 32)));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302438 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
2439 sg_len);
2440 sge_len = sg_len;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302441 } else {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302442 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_r2t_offset,
2443 pwrb, sge_len);
2444 sg_len = sg_dma_len(sg);
2445 addr = (u64) sg_dma_address(sg);
2446 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_lo, pwrb,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302447 ((u32)(addr & 0xFFFFFFFF)));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302448 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_hi, pwrb,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302449 ((u32)(addr >> 32)));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302450 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_len, pwrb,
2451 sg_len);
2452 }
2453 }
2454 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
2455 memset(psgl, 0, sizeof(*psgl) * BE2_SGE);
2456
2457 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len - 2);
2458
2459 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2460 io_task->bhs_pa.u.a32.address_hi);
2461 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2462 io_task->bhs_pa.u.a32.address_lo);
2463
Jayamohan Kallickalcaf818f2010-01-23 05:38:18 +05302464 if (num_sg == 1) {
2465 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
2466 1);
2467 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
2468 0);
2469 } else if (num_sg == 2) {
2470 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
2471 0);
2472 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
2473 1);
2474 } else {
2475 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb,
2476 0);
2477 AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_last, pwrb,
2478 0);
2479 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302480 sg = l_sg;
2481 psgl++;
2482 psgl++;
2483 offset = 0;
Jayamohan Kallickal48bd86c2010-01-07 01:50:19 +05302484 for (index = 0; index < num_sg; index++, sg = sg_next(sg), psgl++) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302485 sg_len = sg_dma_len(sg);
2486 addr = (u64) sg_dma_address(sg);
2487 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2488 (addr & 0xFFFFFFFF));
2489 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2490 (addr >> 32));
2491 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, sg_len);
2492 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, offset);
2493 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
2494 offset += sg_len;
2495 }
2496 psgl--;
2497 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
2498}
2499
John Soni Josed629c472012-10-20 04:42:00 +05302500/**
2501 * hwi_write_buffer()- Populate the WRB with task info
2502 * @pwrb: ptr to the WRB entry
2503 * @task: iscsi task which is to be executed
2504 **/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302505static void hwi_write_buffer(struct iscsi_wrb *pwrb, struct iscsi_task *task)
2506{
2507 struct iscsi_sge *psgl;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302508 struct beiscsi_io_task *io_task = task->dd_data;
2509 struct beiscsi_conn *beiscsi_conn = io_task->conn;
2510 struct beiscsi_hba *phba = beiscsi_conn->phba;
John Soni Jose09a10932012-10-20 04:44:23 +05302511 uint8_t dsp_value = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302512
2513 io_task->bhs_len = sizeof(struct be_nonio_bhs) - 2;
2514 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_lo, pwrb,
2515 io_task->bhs_pa.u.a32.address_lo);
2516 AMAP_SET_BITS(struct amap_iscsi_wrb, iscsi_bhs_addr_hi, pwrb,
2517 io_task->bhs_pa.u.a32.address_hi);
2518
2519 if (task->data) {
John Soni Jose09a10932012-10-20 04:44:23 +05302520
2521 /* Check for the data_count */
2522 dsp_value = (task->data_count) ? 1 : 0;
2523
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07002524 if (is_chip_be2_be3r(phba))
2525 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp,
John Soni Jose09a10932012-10-20 04:44:23 +05302526 pwrb, dsp_value);
2527 else
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07002528 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp,
John Soni Jose09a10932012-10-20 04:44:23 +05302529 pwrb, dsp_value);
2530
2531 /* Map addr only if there is data_count */
2532 if (dsp_value) {
John Soni Josed629c472012-10-20 04:42:00 +05302533 io_task->mtask_addr = pci_map_single(phba->pcidev,
2534 task->data,
2535 task->data_count,
2536 PCI_DMA_TODEVICE);
John Soni Josed629c472012-10-20 04:42:00 +05302537 io_task->mtask_data_count = task->data_count;
John Soni Jose09a10932012-10-20 04:44:23 +05302538 } else
John Soni Josed629c472012-10-20 04:42:00 +05302539 io_task->mtask_addr = 0;
John Soni Jose09a10932012-10-20 04:44:23 +05302540
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302541 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
John Soni Josed629c472012-10-20 04:42:00 +05302542 lower_32_bits(io_task->mtask_addr));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302543 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
John Soni Josed629c472012-10-20 04:42:00 +05302544 upper_32_bits(io_task->mtask_addr));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302545 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
2546 task->data_count);
2547
2548 AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_last, pwrb, 1);
2549 } else {
2550 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0);
John Soni Josed629c472012-10-20 04:42:00 +05302551 io_task->mtask_addr = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302552 }
2553
2554 psgl = (struct iscsi_sge *)io_task->psgl_handle->pfrag;
2555
2556 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, io_task->bhs_len);
2557
2558 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
2559 io_task->bhs_pa.u.a32.address_hi);
2560 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
2561 io_task->bhs_pa.u.a32.address_lo);
2562 if (task->data) {
2563 psgl++;
2564 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl, 0);
2565 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl, 0);
2566 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0);
2567 AMAP_SET_BITS(struct amap_iscsi_sge, sge_offset, psgl, 0);
2568 AMAP_SET_BITS(struct amap_iscsi_sge, rsvd0, psgl, 0);
2569 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 0);
2570
2571 psgl++;
2572 if (task->data) {
2573 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
John Soni Josed629c472012-10-20 04:42:00 +05302574 lower_32_bits(io_task->mtask_addr));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302575 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
John Soni Josed629c472012-10-20 04:42:00 +05302576 upper_32_bits(io_task->mtask_addr));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302577 }
2578 AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0x106);
2579 }
2580 AMAP_SET_BITS(struct amap_iscsi_sge, last_sge, psgl, 1);
2581}
2582
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07002583/**
2584 * beiscsi_find_mem_req()- Find mem needed
2585 * @phba: ptr to HBA struct
2586 **/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302587static void beiscsi_find_mem_req(struct beiscsi_hba *phba)
2588{
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002589 uint8_t mem_descr_index, ulp_num;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302590 unsigned int num_cq_pages, num_async_pdu_buf_pages;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302591 unsigned int num_async_pdu_data_pages, wrb_sz_per_cxn;
2592 unsigned int num_async_pdu_buf_sgl_pages, num_async_pdu_data_sgl_pages;
2593
2594 num_cq_pages = PAGES_REQUIRED(phba->params.num_cq_entries * \
2595 sizeof(struct sol_cqe));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302596
2597 phba->params.hwi_ws_sz = sizeof(struct hwi_controller);
2598
2599 phba->mem_req[ISCSI_MEM_GLOBAL_HEADER] = 2 *
2600 BE_ISCSI_PDU_HEADER_SIZE;
2601 phba->mem_req[HWI_MEM_ADDN_CONTEXT] =
2602 sizeof(struct hwi_context_memory);
2603
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302604
2605 phba->mem_req[HWI_MEM_WRB] = sizeof(struct iscsi_wrb)
2606 * (phba->params.wrbs_per_cxn)
2607 * phba->params.cxns_per_ctrl;
2608 wrb_sz_per_cxn = sizeof(struct wrb_handle) *
2609 (phba->params.wrbs_per_cxn);
2610 phba->mem_req[HWI_MEM_WRBH] = roundup_pow_of_two((wrb_sz_per_cxn) *
2611 phba->params.cxns_per_ctrl);
2612
2613 phba->mem_req[HWI_MEM_SGLH] = sizeof(struct sgl_handle) *
2614 phba->params.icds_per_ctrl;
2615 phba->mem_req[HWI_MEM_SGE] = sizeof(struct iscsi_sge) *
2616 phba->params.num_sge_per_io * phba->params.icds_per_ctrl;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002617 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
2618 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302619
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002620 num_async_pdu_buf_sgl_pages =
2621 PAGES_REQUIRED(BEISCSI_GET_CID_COUNT(
2622 phba, ulp_num) *
2623 sizeof(struct phys_addr));
2624
2625 num_async_pdu_buf_pages =
2626 PAGES_REQUIRED(BEISCSI_GET_CID_COUNT(
2627 phba, ulp_num) *
2628 phba->params.defpdu_hdr_sz);
2629
2630 num_async_pdu_data_pages =
2631 PAGES_REQUIRED(BEISCSI_GET_CID_COUNT(
2632 phba, ulp_num) *
2633 phba->params.defpdu_data_sz);
2634
2635 num_async_pdu_data_sgl_pages =
2636 PAGES_REQUIRED(BEISCSI_GET_CID_COUNT(
2637 phba, ulp_num) *
2638 sizeof(struct phys_addr));
2639
Jayamohan Kallickala129d922013-09-28 15:35:46 -07002640 mem_descr_index = (HWI_MEM_TEMPLATE_HDR_ULP0 +
2641 (ulp_num * MEM_DESCR_OFFSET));
2642 phba->mem_req[mem_descr_index] =
2643 BEISCSI_GET_CID_COUNT(phba, ulp_num) *
2644 BEISCSI_TEMPLATE_HDR_PER_CXN_SIZE;
2645
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002646 mem_descr_index = (HWI_MEM_ASYNC_HEADER_BUF_ULP0 +
2647 (ulp_num * MEM_DESCR_OFFSET));
2648 phba->mem_req[mem_descr_index] =
2649 num_async_pdu_buf_pages *
2650 PAGE_SIZE;
2651
2652 mem_descr_index = (HWI_MEM_ASYNC_DATA_BUF_ULP0 +
2653 (ulp_num * MEM_DESCR_OFFSET));
2654 phba->mem_req[mem_descr_index] =
2655 num_async_pdu_data_pages *
2656 PAGE_SIZE;
2657
2658 mem_descr_index = (HWI_MEM_ASYNC_HEADER_RING_ULP0 +
2659 (ulp_num * MEM_DESCR_OFFSET));
2660 phba->mem_req[mem_descr_index] =
2661 num_async_pdu_buf_sgl_pages *
2662 PAGE_SIZE;
2663
2664 mem_descr_index = (HWI_MEM_ASYNC_DATA_RING_ULP0 +
2665 (ulp_num * MEM_DESCR_OFFSET));
2666 phba->mem_req[mem_descr_index] =
2667 num_async_pdu_data_sgl_pages *
2668 PAGE_SIZE;
2669
2670 mem_descr_index = (HWI_MEM_ASYNC_HEADER_HANDLE_ULP0 +
2671 (ulp_num * MEM_DESCR_OFFSET));
2672 phba->mem_req[mem_descr_index] =
2673 BEISCSI_GET_CID_COUNT(phba, ulp_num) *
2674 sizeof(struct async_pdu_handle);
2675
2676 mem_descr_index = (HWI_MEM_ASYNC_DATA_HANDLE_ULP0 +
2677 (ulp_num * MEM_DESCR_OFFSET));
2678 phba->mem_req[mem_descr_index] =
2679 BEISCSI_GET_CID_COUNT(phba, ulp_num) *
2680 sizeof(struct async_pdu_handle);
2681
2682 mem_descr_index = (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0 +
2683 (ulp_num * MEM_DESCR_OFFSET));
2684 phba->mem_req[mem_descr_index] =
2685 sizeof(struct hwi_async_pdu_context) +
2686 (BEISCSI_GET_CID_COUNT(phba, ulp_num) *
2687 sizeof(struct hwi_async_entry));
2688 }
2689 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302690}
2691
2692static int beiscsi_alloc_mem(struct beiscsi_hba *phba)
2693{
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302694 dma_addr_t bus_add;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002695 struct hwi_controller *phwi_ctrlr;
2696 struct be_mem_descriptor *mem_descr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302697 struct mem_array *mem_arr, *mem_arr_orig;
2698 unsigned int i, j, alloc_size, curr_alloc_size;
2699
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002700 phba->phwi_ctrlr = kzalloc(phba->params.hwi_ws_sz, GFP_KERNEL);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302701 if (!phba->phwi_ctrlr)
2702 return -ENOMEM;
2703
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002704 /* Allocate memory for wrb_context */
2705 phwi_ctrlr = phba->phwi_ctrlr;
2706 phwi_ctrlr->wrb_context = kzalloc(sizeof(struct hwi_wrb_context) *
2707 phba->params.cxns_per_ctrl,
2708 GFP_KERNEL);
2709 if (!phwi_ctrlr->wrb_context)
2710 return -ENOMEM;
2711
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302712 phba->init_mem = kcalloc(SE_MEM_MAX, sizeof(*mem_descr),
2713 GFP_KERNEL);
2714 if (!phba->init_mem) {
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002715 kfree(phwi_ctrlr->wrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302716 kfree(phba->phwi_ctrlr);
2717 return -ENOMEM;
2718 }
2719
2720 mem_arr_orig = kmalloc(sizeof(*mem_arr_orig) * BEISCSI_MAX_FRAGS_INIT,
2721 GFP_KERNEL);
2722 if (!mem_arr_orig) {
2723 kfree(phba->init_mem);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002724 kfree(phwi_ctrlr->wrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302725 kfree(phba->phwi_ctrlr);
2726 return -ENOMEM;
2727 }
2728
2729 mem_descr = phba->init_mem;
2730 for (i = 0; i < SE_MEM_MAX; i++) {
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002731 if (!phba->mem_req[i]) {
2732 mem_descr->mem_array = NULL;
2733 mem_descr++;
2734 continue;
2735 }
2736
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302737 j = 0;
2738 mem_arr = mem_arr_orig;
2739 alloc_size = phba->mem_req[i];
2740 memset(mem_arr, 0, sizeof(struct mem_array) *
2741 BEISCSI_MAX_FRAGS_INIT);
2742 curr_alloc_size = min(be_max_phys_size * 1024, alloc_size);
2743 do {
2744 mem_arr->virtual_address = pci_alloc_consistent(
2745 phba->pcidev,
2746 curr_alloc_size,
2747 &bus_add);
2748 if (!mem_arr->virtual_address) {
2749 if (curr_alloc_size <= BE_MIN_MEM_SIZE)
2750 goto free_mem;
2751 if (curr_alloc_size -
2752 rounddown_pow_of_two(curr_alloc_size))
2753 curr_alloc_size = rounddown_pow_of_two
2754 (curr_alloc_size);
2755 else
2756 curr_alloc_size = curr_alloc_size / 2;
2757 } else {
2758 mem_arr->bus_address.u.
2759 a64.address = (__u64) bus_add;
2760 mem_arr->size = curr_alloc_size;
2761 alloc_size -= curr_alloc_size;
2762 curr_alloc_size = min(be_max_phys_size *
2763 1024, alloc_size);
2764 j++;
2765 mem_arr++;
2766 }
2767 } while (alloc_size);
2768 mem_descr->num_elements = j;
2769 mem_descr->size_in_bytes = phba->mem_req[i];
2770 mem_descr->mem_array = kmalloc(sizeof(*mem_arr) * j,
2771 GFP_KERNEL);
2772 if (!mem_descr->mem_array)
2773 goto free_mem;
2774
2775 memcpy(mem_descr->mem_array, mem_arr_orig,
2776 sizeof(struct mem_array) * j);
2777 mem_descr++;
2778 }
2779 kfree(mem_arr_orig);
2780 return 0;
2781free_mem:
2782 mem_descr->num_elements = j;
2783 while ((i) || (j)) {
2784 for (j = mem_descr->num_elements; j > 0; j--) {
2785 pci_free_consistent(phba->pcidev,
2786 mem_descr->mem_array[j - 1].size,
2787 mem_descr->mem_array[j - 1].
2788 virtual_address,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05302789 (unsigned long)mem_descr->
2790 mem_array[j - 1].
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302791 bus_address.u.a64.address);
2792 }
2793 if (i) {
2794 i--;
2795 kfree(mem_descr->mem_array);
2796 mem_descr--;
2797 }
2798 }
2799 kfree(mem_arr_orig);
2800 kfree(phba->init_mem);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002801 kfree(phba->phwi_ctrlr->wrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302802 kfree(phba->phwi_ctrlr);
2803 return -ENOMEM;
2804}
2805
2806static int beiscsi_get_memory(struct beiscsi_hba *phba)
2807{
2808 beiscsi_find_mem_req(phba);
2809 return beiscsi_alloc_mem(phba);
2810}
2811
2812static void iscsi_init_global_templates(struct beiscsi_hba *phba)
2813{
2814 struct pdu_data_out *pdata_out;
2815 struct pdu_nop_out *pnop_out;
2816 struct be_mem_descriptor *mem_descr;
2817
2818 mem_descr = phba->init_mem;
2819 mem_descr += ISCSI_MEM_GLOBAL_HEADER;
2820 pdata_out =
2821 (struct pdu_data_out *)mem_descr->mem_array[0].virtual_address;
2822 memset(pdata_out, 0, BE_ISCSI_PDU_HEADER_SIZE);
2823
2824 AMAP_SET_BITS(struct amap_pdu_data_out, opcode, pdata_out,
2825 IIOC_SCSI_DATA);
2826
2827 pnop_out =
2828 (struct pdu_nop_out *)((unsigned char *)mem_descr->mem_array[0].
2829 virtual_address + BE_ISCSI_PDU_HEADER_SIZE);
2830
2831 memset(pnop_out, 0, BE_ISCSI_PDU_HEADER_SIZE);
2832 AMAP_SET_BITS(struct amap_pdu_nop_out, ttt, pnop_out, 0xFFFFFFFF);
2833 AMAP_SET_BITS(struct amap_pdu_nop_out, f_bit, pnop_out, 1);
2834 AMAP_SET_BITS(struct amap_pdu_nop_out, i_bit, pnop_out, 0);
2835}
2836
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002837static int beiscsi_init_wrb_handle(struct beiscsi_hba *phba)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302838{
2839 struct be_mem_descriptor *mem_descr_wrbh, *mem_descr_wrb;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002840 struct hwi_context_memory *phwi_ctxt;
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002841 struct wrb_handle *pwrb_handle = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302842 struct hwi_controller *phwi_ctrlr;
2843 struct hwi_wrb_context *pwrb_context;
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002844 struct iscsi_wrb *pwrb = NULL;
2845 unsigned int num_cxn_wrbh = 0;
2846 unsigned int num_cxn_wrb = 0, j, idx = 0, index;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302847
2848 mem_descr_wrbh = phba->init_mem;
2849 mem_descr_wrbh += HWI_MEM_WRBH;
2850
2851 mem_descr_wrb = phba->init_mem;
2852 mem_descr_wrb += HWI_MEM_WRB;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302853 phwi_ctrlr = phba->phwi_ctrlr;
2854
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002855 /* Allocate memory for WRBQ */
2856 phwi_ctxt = phwi_ctrlr->phwi_ctxt;
2857 phwi_ctxt->be_wrbq = kzalloc(sizeof(struct be_queue_info) *
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07002858 phba->params.cxns_per_ctrl,
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002859 GFP_KERNEL);
2860 if (!phwi_ctxt->be_wrbq) {
2861 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
2862 "BM_%d : WRBQ Mem Alloc Failed\n");
2863 return -ENOMEM;
2864 }
2865
2866 for (index = 0; index < phba->params.cxns_per_ctrl; index++) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302867 pwrb_context = &phwi_ctrlr->wrb_context[index];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302868 pwrb_context->pwrb_handle_base =
2869 kzalloc(sizeof(struct wrb_handle *) *
2870 phba->params.wrbs_per_cxn, GFP_KERNEL);
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002871 if (!pwrb_context->pwrb_handle_base) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05302872 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
2873 "BM_%d : Mem Alloc Failed. Failing to load\n");
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002874 goto init_wrb_hndl_failed;
2875 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302876 pwrb_context->pwrb_handle_basestd =
2877 kzalloc(sizeof(struct wrb_handle *) *
2878 phba->params.wrbs_per_cxn, GFP_KERNEL);
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002879 if (!pwrb_context->pwrb_handle_basestd) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05302880 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
2881 "BM_%d : Mem Alloc Failed. Failing to load\n");
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002882 goto init_wrb_hndl_failed;
2883 }
2884 if (!num_cxn_wrbh) {
2885 pwrb_handle =
2886 mem_descr_wrbh->mem_array[idx].virtual_address;
2887 num_cxn_wrbh = ((mem_descr_wrbh->mem_array[idx].size) /
2888 ((sizeof(struct wrb_handle)) *
2889 phba->params.wrbs_per_cxn));
2890 idx++;
2891 }
2892 pwrb_context->alloc_index = 0;
2893 pwrb_context->wrb_handles_available = 0;
2894 pwrb_context->free_index = 0;
2895
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302896 if (num_cxn_wrbh) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302897 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2898 pwrb_context->pwrb_handle_base[j] = pwrb_handle;
2899 pwrb_context->pwrb_handle_basestd[j] =
2900 pwrb_handle;
2901 pwrb_context->wrb_handles_available++;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05302902 pwrb_handle->wrb_index = j;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302903 pwrb_handle++;
2904 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302905 num_cxn_wrbh--;
2906 }
2907 }
2908 idx = 0;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002909 for (index = 0; index < phba->params.cxns_per_ctrl; index++) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302910 pwrb_context = &phwi_ctrlr->wrb_context[index];
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002911 if (!num_cxn_wrb) {
2912 pwrb = mem_descr_wrb->mem_array[idx].virtual_address;
2913 num_cxn_wrb = (mem_descr_wrb->mem_array[idx].size) /
2914 ((sizeof(struct iscsi_wrb) *
2915 phba->params.wrbs_per_cxn));
2916 idx++;
2917 }
2918
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302919 if (num_cxn_wrb) {
2920 for (j = 0; j < phba->params.wrbs_per_cxn; j++) {
2921 pwrb_handle = pwrb_context->pwrb_handle_base[j];
2922 pwrb_handle->pwrb = pwrb;
2923 pwrb++;
2924 }
2925 num_cxn_wrb--;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302926 }
2927 }
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05002928 return 0;
2929init_wrb_hndl_failed:
2930 for (j = index; j > 0; j--) {
2931 pwrb_context = &phwi_ctrlr->wrb_context[j];
2932 kfree(pwrb_context->pwrb_handle_base);
2933 kfree(pwrb_context->pwrb_handle_basestd);
2934 }
2935 return -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302936}
2937
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002938static int hwi_init_async_pdu_ctx(struct beiscsi_hba *phba)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302939{
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002940 uint8_t ulp_num;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302941 struct hwi_controller *phwi_ctrlr;
2942 struct hba_parameters *p = &phba->params;
2943 struct hwi_async_pdu_context *pasync_ctx;
2944 struct async_pdu_handle *pasync_header_h, *pasync_data_h;
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05002945 unsigned int index, idx, num_per_mem, num_async_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302946 struct be_mem_descriptor *mem_descr;
2947
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002948 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
2949 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302950
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002951 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2952 mem_descr += (HWI_MEM_ASYNC_PDU_CONTEXT_ULP0 +
2953 (ulp_num * MEM_DESCR_OFFSET));
2954
2955 phwi_ctrlr = phba->phwi_ctrlr;
2956 phwi_ctrlr->phwi_ctxt->pasync_ctx[ulp_num] =
2957 (struct hwi_async_pdu_context *)
2958 mem_descr->mem_array[0].virtual_address;
2959
2960 pasync_ctx = phwi_ctrlr->phwi_ctxt->pasync_ctx[ulp_num];
2961 memset(pasync_ctx, 0, sizeof(*pasync_ctx));
2962
2963 pasync_ctx->async_entry =
2964 (struct hwi_async_entry *)
2965 ((long unsigned int)pasync_ctx +
2966 sizeof(struct hwi_async_pdu_context));
2967
2968 pasync_ctx->num_entries = BEISCSI_GET_CID_COUNT(phba,
2969 ulp_num);
2970 pasync_ctx->buffer_size = p->defpdu_hdr_sz;
2971
2972 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2973 mem_descr += HWI_MEM_ASYNC_HEADER_BUF_ULP0 +
2974 (ulp_num * MEM_DESCR_OFFSET);
2975 if (mem_descr->mem_array[0].virtual_address) {
2976 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
2977 "BM_%d : hwi_init_async_pdu_ctx"
2978 " HWI_MEM_ASYNC_HEADER_BUF_ULP%d va=%p\n",
2979 ulp_num,
2980 mem_descr->mem_array[0].
2981 virtual_address);
2982 } else
2983 beiscsi_log(phba, KERN_WARNING,
2984 BEISCSI_LOG_INIT,
2985 "BM_%d : No Virtual address for ULP : %d\n",
2986 ulp_num);
2987
2988 pasync_ctx->async_header.va_base =
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302989 mem_descr->mem_array[0].virtual_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05302990
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002991 pasync_ctx->async_header.pa_base.u.a64.address =
2992 mem_descr->mem_array[0].
2993 bus_address.u.a64.address;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07002994
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07002995 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
2996 mem_descr += HWI_MEM_ASYNC_HEADER_RING_ULP0 +
2997 (ulp_num * MEM_DESCR_OFFSET);
2998 if (mem_descr->mem_array[0].virtual_address) {
2999 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3000 "BM_%d : hwi_init_async_pdu_ctx"
3001 " HWI_MEM_ASYNC_HEADER_RING_ULP%d va=%p\n",
3002 ulp_num,
3003 mem_descr->mem_array[0].
3004 virtual_address);
3005 } else
3006 beiscsi_log(phba, KERN_WARNING,
3007 BEISCSI_LOG_INIT,
3008 "BM_%d : No Virtual address for ULP : %d\n",
3009 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303010
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003011 pasync_ctx->async_header.ring_base =
3012 mem_descr->mem_array[0].virtual_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303013
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003014 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
3015 mem_descr += HWI_MEM_ASYNC_HEADER_HANDLE_ULP0 +
3016 (ulp_num * MEM_DESCR_OFFSET);
3017 if (mem_descr->mem_array[0].virtual_address) {
3018 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3019 "BM_%d : hwi_init_async_pdu_ctx"
3020 " HWI_MEM_ASYNC_HEADER_HANDLE_ULP%d va=%p\n",
3021 ulp_num,
3022 mem_descr->mem_array[0].
3023 virtual_address);
3024 } else
3025 beiscsi_log(phba, KERN_WARNING,
3026 BEISCSI_LOG_INIT,
3027 "BM_%d : No Virtual address for ULP : %d\n",
3028 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303029
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003030 pasync_ctx->async_header.handle_base =
3031 mem_descr->mem_array[0].virtual_address;
3032 pasync_ctx->async_header.writables = 0;
3033 INIT_LIST_HEAD(&pasync_ctx->async_header.free_list);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303034
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003035 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
3036 mem_descr += HWI_MEM_ASYNC_DATA_RING_ULP0 +
3037 (ulp_num * MEM_DESCR_OFFSET);
3038 if (mem_descr->mem_array[0].virtual_address) {
3039 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3040 "BM_%d : hwi_init_async_pdu_ctx"
3041 " HWI_MEM_ASYNC_DATA_RING_ULP%d va=%p\n",
3042 ulp_num,
3043 mem_descr->mem_array[0].
3044 virtual_address);
3045 } else
3046 beiscsi_log(phba, KERN_WARNING,
3047 BEISCSI_LOG_INIT,
3048 "BM_%d : No Virtual address for ULP : %d\n",
3049 ulp_num);
John Soni Jose99bc5d52012-08-20 23:00:18 +05303050
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003051 pasync_ctx->async_data.ring_base =
3052 mem_descr->mem_array[0].virtual_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303053
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003054 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
3055 mem_descr += HWI_MEM_ASYNC_DATA_HANDLE_ULP0 +
3056 (ulp_num * MEM_DESCR_OFFSET);
3057 if (!mem_descr->mem_array[0].virtual_address)
3058 beiscsi_log(phba, KERN_WARNING,
3059 BEISCSI_LOG_INIT,
3060 "BM_%d : No Virtual address for ULP : %d\n",
3061 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303062
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003063 pasync_ctx->async_data.handle_base =
3064 mem_descr->mem_array[0].virtual_address;
3065 pasync_ctx->async_data.writables = 0;
3066 INIT_LIST_HEAD(&pasync_ctx->async_data.free_list);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303067
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003068 pasync_header_h =
3069 (struct async_pdu_handle *)
3070 pasync_ctx->async_header.handle_base;
3071 pasync_data_h =
3072 (struct async_pdu_handle *)
3073 pasync_ctx->async_data.handle_base;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303074
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003075 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
3076 mem_descr += HWI_MEM_ASYNC_DATA_BUF_ULP0 +
3077 (ulp_num * MEM_DESCR_OFFSET);
3078 if (mem_descr->mem_array[0].virtual_address) {
3079 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3080 "BM_%d : hwi_init_async_pdu_ctx"
3081 " HWI_MEM_ASYNC_DATA_BUF_ULP%d va=%p\n",
3082 ulp_num,
3083 mem_descr->mem_array[0].
3084 virtual_address);
3085 } else
3086 beiscsi_log(phba, KERN_WARNING,
3087 BEISCSI_LOG_INIT,
3088 "BM_%d : No Virtual address for ULP : %d\n",
3089 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303090
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003091 idx = 0;
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05003092 pasync_ctx->async_data.va_base =
3093 mem_descr->mem_array[idx].virtual_address;
3094 pasync_ctx->async_data.pa_base.u.a64.address =
3095 mem_descr->mem_array[idx].
3096 bus_address.u.a64.address;
3097
3098 num_async_data = ((mem_descr->mem_array[idx].size) /
3099 phba->params.defpdu_data_sz);
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003100 num_per_mem = 0;
3101
3102 for (index = 0; index < BEISCSI_GET_CID_COUNT
3103 (phba, ulp_num); index++) {
3104 pasync_header_h->cri = -1;
3105 pasync_header_h->index = (char)index;
3106 INIT_LIST_HEAD(&pasync_header_h->link);
3107 pasync_header_h->pbuffer =
3108 (void *)((unsigned long)
3109 (pasync_ctx->
3110 async_header.va_base) +
3111 (p->defpdu_hdr_sz * index));
3112
3113 pasync_header_h->pa.u.a64.address =
3114 pasync_ctx->async_header.pa_base.u.a64.
3115 address + (p->defpdu_hdr_sz * index);
3116
3117 list_add_tail(&pasync_header_h->link,
3118 &pasync_ctx->async_header.
3119 free_list);
3120 pasync_header_h++;
3121 pasync_ctx->async_header.free_entries++;
3122 pasync_ctx->async_header.writables++;
3123
3124 INIT_LIST_HEAD(&pasync_ctx->async_entry[index].
3125 wait_queue.list);
3126 INIT_LIST_HEAD(&pasync_ctx->async_entry[index].
3127 header_busy_list);
3128 pasync_data_h->cri = -1;
3129 pasync_data_h->index = (char)index;
3130 INIT_LIST_HEAD(&pasync_data_h->link);
3131
3132 if (!num_async_data) {
3133 num_per_mem = 0;
3134 idx++;
3135 pasync_ctx->async_data.va_base =
3136 mem_descr->mem_array[idx].
3137 virtual_address;
3138 pasync_ctx->async_data.pa_base.u.
3139 a64.address =
3140 mem_descr->mem_array[idx].
3141 bus_address.u.a64.address;
3142 num_async_data =
3143 ((mem_descr->mem_array[idx].
3144 size) /
3145 phba->params.defpdu_data_sz);
3146 }
3147 pasync_data_h->pbuffer =
3148 (void *)((unsigned long)
3149 (pasync_ctx->async_data.va_base) +
3150 (p->defpdu_data_sz * num_per_mem));
3151
3152 pasync_data_h->pa.u.a64.address =
3153 pasync_ctx->async_data.pa_base.u.a64.
3154 address + (p->defpdu_data_sz *
3155 num_per_mem);
3156 num_per_mem++;
3157 num_async_data--;
3158
3159 list_add_tail(&pasync_data_h->link,
3160 &pasync_ctx->async_data.
3161 free_list);
3162 pasync_data_h++;
3163 pasync_ctx->async_data.free_entries++;
3164 pasync_ctx->async_data.writables++;
3165
3166 INIT_LIST_HEAD(&pasync_ctx->async_entry[index].
3167 data_busy_list);
3168 }
3169
3170 pasync_ctx->async_header.host_write_ptr = 0;
3171 pasync_ctx->async_header.ep_read_ptr = -1;
3172 pasync_ctx->async_data.host_write_ptr = 0;
3173 pasync_ctx->async_data.ep_read_ptr = -1;
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05003174 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303175 }
3176
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003177 return 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303178}
3179
3180static int
3181be_sgl_create_contiguous(void *virtual_address,
3182 u64 physical_address, u32 length,
3183 struct be_dma_mem *sgl)
3184{
3185 WARN_ON(!virtual_address);
3186 WARN_ON(!physical_address);
Tim Gardnerdd29dae2015-10-30 12:22:58 -06003187 WARN_ON(!length);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303188 WARN_ON(!sgl);
3189
3190 sgl->va = virtual_address;
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05303191 sgl->dma = (unsigned long)physical_address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303192 sgl->size = length;
3193
3194 return 0;
3195}
3196
3197static void be_sgl_destroy_contiguous(struct be_dma_mem *sgl)
3198{
3199 memset(sgl, 0, sizeof(*sgl));
3200}
3201
3202static void
3203hwi_build_be_sgl_arr(struct beiscsi_hba *phba,
3204 struct mem_array *pmem, struct be_dma_mem *sgl)
3205{
3206 if (sgl->va)
3207 be_sgl_destroy_contiguous(sgl);
3208
3209 be_sgl_create_contiguous(pmem->virtual_address,
3210 pmem->bus_address.u.a64.address,
3211 pmem->size, sgl);
3212}
3213
3214static void
3215hwi_build_be_sgl_by_offset(struct beiscsi_hba *phba,
3216 struct mem_array *pmem, struct be_dma_mem *sgl)
3217{
3218 if (sgl->va)
3219 be_sgl_destroy_contiguous(sgl);
3220
3221 be_sgl_create_contiguous((unsigned char *)pmem->virtual_address,
3222 pmem->bus_address.u.a64.address,
3223 pmem->size, sgl);
3224}
3225
3226static int be_fill_queue(struct be_queue_info *q,
3227 u16 len, u16 entry_size, void *vaddress)
3228{
3229 struct be_dma_mem *mem = &q->dma_mem;
3230
3231 memset(q, 0, sizeof(*q));
3232 q->len = len;
3233 q->entry_size = entry_size;
3234 mem->size = len * entry_size;
3235 mem->va = vaddress;
3236 if (!mem->va)
3237 return -ENOMEM;
3238 memset(mem->va, 0, mem->size);
3239 return 0;
3240}
3241
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303242static int beiscsi_create_eqs(struct beiscsi_hba *phba,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303243 struct hwi_context_memory *phwi_context)
3244{
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303245 unsigned int i, num_eq_pages;
John Soni Jose99bc5d52012-08-20 23:00:18 +05303246 int ret = 0, eq_for_mcc;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303247 struct be_queue_info *eq;
3248 struct be_dma_mem *mem;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303249 void *eq_vaddress;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303250 dma_addr_t paddr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303251
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303252 num_eq_pages = PAGES_REQUIRED(phba->params.num_eq_entries * \
3253 sizeof(struct be_eq_entry));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303254
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303255 if (phba->msix_enabled)
3256 eq_for_mcc = 1;
3257 else
3258 eq_for_mcc = 0;
3259 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
3260 eq = &phwi_context->be_eq[i].q;
3261 mem = &eq->dma_mem;
3262 phwi_context->be_eq[i].phba = phba;
3263 eq_vaddress = pci_alloc_consistent(phba->pcidev,
3264 num_eq_pages * PAGE_SIZE,
3265 &paddr);
3266 if (!eq_vaddress)
3267 goto create_eq_error;
3268
3269 mem->va = eq_vaddress;
3270 ret = be_fill_queue(eq, phba->params.num_eq_entries,
3271 sizeof(struct be_eq_entry), eq_vaddress);
3272 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303273 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3274 "BM_%d : be_fill_queue Failed for EQ\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303275 goto create_eq_error;
3276 }
3277
3278 mem->dma = paddr;
3279 ret = beiscsi_cmd_eq_create(&phba->ctrl, eq,
3280 phwi_context->cur_eqd);
3281 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303282 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3283 "BM_%d : beiscsi_cmd_eq_create"
3284 "Failed for EQ\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303285 goto create_eq_error;
3286 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303287
3288 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3289 "BM_%d : eqid = %d\n",
3290 phwi_context->be_eq[i].q.id);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303291 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303292 return 0;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303293create_eq_error:
John Soni Jose107dfcb2012-10-20 04:42:13 +05303294 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303295 eq = &phwi_context->be_eq[i].q;
3296 mem = &eq->dma_mem;
3297 if (mem->va)
3298 pci_free_consistent(phba->pcidev, num_eq_pages
3299 * PAGE_SIZE,
3300 mem->va, mem->dma);
3301 }
3302 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303303}
3304
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303305static int beiscsi_create_cqs(struct beiscsi_hba *phba,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303306 struct hwi_context_memory *phwi_context)
3307{
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303308 unsigned int i, num_cq_pages;
John Soni Jose99bc5d52012-08-20 23:00:18 +05303309 int ret = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303310 struct be_queue_info *cq, *eq;
3311 struct be_dma_mem *mem;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303312 struct be_eq_obj *pbe_eq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303313 void *cq_vaddress;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303314 dma_addr_t paddr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303315
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303316 num_cq_pages = PAGES_REQUIRED(phba->params.num_cq_entries * \
3317 sizeof(struct sol_cqe));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303318
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303319 for (i = 0; i < phba->num_cpus; i++) {
3320 cq = &phwi_context->be_cq[i];
3321 eq = &phwi_context->be_eq[i].q;
3322 pbe_eq = &phwi_context->be_eq[i];
3323 pbe_eq->cq = cq;
3324 pbe_eq->phba = phba;
3325 mem = &cq->dma_mem;
3326 cq_vaddress = pci_alloc_consistent(phba->pcidev,
3327 num_cq_pages * PAGE_SIZE,
3328 &paddr);
3329 if (!cq_vaddress)
3330 goto create_cq_error;
Jayamohan Kallickal7da50872010-01-05 05:04:12 +05303331 ret = be_fill_queue(cq, phba->params.num_cq_entries,
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303332 sizeof(struct sol_cqe), cq_vaddress);
3333 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303334 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3335 "BM_%d : be_fill_queue Failed "
3336 "for ISCSI CQ\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303337 goto create_cq_error;
3338 }
3339
3340 mem->dma = paddr;
3341 ret = beiscsi_cmd_cq_create(&phba->ctrl, cq, eq, false,
3342 false, 0);
3343 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303344 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3345 "BM_%d : beiscsi_cmd_eq_create"
3346 "Failed for ISCSI CQ\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303347 goto create_cq_error;
3348 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303349 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3350 "BM_%d : iscsi cq_id is %d for eq_id %d\n"
3351 "iSCSI CQ CREATED\n", cq->id, eq->id);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303352 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303353 return 0;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303354
3355create_cq_error:
3356 for (i = 0; i < phba->num_cpus; i++) {
3357 cq = &phwi_context->be_cq[i];
3358 mem = &cq->dma_mem;
3359 if (mem->va)
3360 pci_free_consistent(phba->pcidev, num_cq_pages
3361 * PAGE_SIZE,
3362 mem->va, mem->dma);
3363 }
3364 return ret;
3365
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303366}
3367
3368static int
3369beiscsi_create_def_hdr(struct beiscsi_hba *phba,
3370 struct hwi_context_memory *phwi_context,
3371 struct hwi_controller *phwi_ctrlr,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003372 unsigned int def_pdu_ring_sz, uint8_t ulp_num)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303373{
3374 unsigned int idx;
3375 int ret;
3376 struct be_queue_info *dq, *cq;
3377 struct be_dma_mem *mem;
3378 struct be_mem_descriptor *mem_descr;
3379 void *dq_vaddress;
3380
3381 idx = 0;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003382 dq = &phwi_context->be_def_hdrq[ulp_num];
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303383 cq = &phwi_context->be_cq[0];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303384 mem = &dq->dma_mem;
3385 mem_descr = phba->init_mem;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003386 mem_descr += HWI_MEM_ASYNC_HEADER_RING_ULP0 +
3387 (ulp_num * MEM_DESCR_OFFSET);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303388 dq_vaddress = mem_descr->mem_array[idx].virtual_address;
3389 ret = be_fill_queue(dq, mem_descr->mem_array[0].size /
3390 sizeof(struct phys_addr),
3391 sizeof(struct phys_addr), dq_vaddress);
3392 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303393 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003394 "BM_%d : be_fill_queue Failed for DEF PDU HDR on ULP : %d\n",
3395 ulp_num);
3396
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303397 return ret;
3398 }
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05303399 mem->dma = (unsigned long)mem_descr->mem_array[idx].
3400 bus_address.u.a64.address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303401 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dq,
3402 def_pdu_ring_sz,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003403 phba->params.defpdu_hdr_sz,
3404 BEISCSI_DEFQ_HDR, ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303405 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303406 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003407 "BM_%d : be_cmd_create_default_pdu_queue Failed DEFHDR on ULP : %d\n",
3408 ulp_num);
3409
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303410 return ret;
3411 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303412
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003413 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3414 "BM_%d : iscsi hdr def pdu id for ULP : %d is %d\n",
3415 ulp_num,
3416 phwi_context->be_def_hdrq[ulp_num].id);
3417 hwi_post_async_buffers(phba, BEISCSI_DEFQ_HDR, ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303418 return 0;
3419}
3420
3421static int
3422beiscsi_create_def_data(struct beiscsi_hba *phba,
3423 struct hwi_context_memory *phwi_context,
3424 struct hwi_controller *phwi_ctrlr,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003425 unsigned int def_pdu_ring_sz, uint8_t ulp_num)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303426{
3427 unsigned int idx;
3428 int ret;
3429 struct be_queue_info *dataq, *cq;
3430 struct be_dma_mem *mem;
3431 struct be_mem_descriptor *mem_descr;
3432 void *dq_vaddress;
3433
3434 idx = 0;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003435 dataq = &phwi_context->be_def_dataq[ulp_num];
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303436 cq = &phwi_context->be_cq[0];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303437 mem = &dataq->dma_mem;
3438 mem_descr = phba->init_mem;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003439 mem_descr += HWI_MEM_ASYNC_DATA_RING_ULP0 +
3440 (ulp_num * MEM_DESCR_OFFSET);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303441 dq_vaddress = mem_descr->mem_array[idx].virtual_address;
3442 ret = be_fill_queue(dataq, mem_descr->mem_array[0].size /
3443 sizeof(struct phys_addr),
3444 sizeof(struct phys_addr), dq_vaddress);
3445 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303446 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003447 "BM_%d : be_fill_queue Failed for DEF PDU "
3448 "DATA on ULP : %d\n",
3449 ulp_num);
3450
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303451 return ret;
3452 }
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05303453 mem->dma = (unsigned long)mem_descr->mem_array[idx].
3454 bus_address.u.a64.address;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303455 ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dataq,
3456 def_pdu_ring_sz,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003457 phba->params.defpdu_data_sz,
3458 BEISCSI_DEFQ_DATA, ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303459 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303460 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3461 "BM_%d be_cmd_create_default_pdu_queue"
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003462 " Failed for DEF PDU DATA on ULP : %d\n",
3463 ulp_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303464 return ret;
3465 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303466
John Soni Jose99bc5d52012-08-20 23:00:18 +05303467 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003468 "BM_%d : iscsi def data id on ULP : %d is %d\n",
3469 ulp_num,
3470 phwi_context->be_def_dataq[ulp_num].id);
3471
3472 hwi_post_async_buffers(phba, BEISCSI_DEFQ_DATA, ulp_num);
3473 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3474 "BM_%d : DEFAULT PDU DATA RING CREATED"
3475 "on ULP : %d\n", ulp_num);
John Soni Jose99bc5d52012-08-20 23:00:18 +05303476
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303477 return 0;
3478}
3479
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003480
3481static int
3482beiscsi_post_template_hdr(struct beiscsi_hba *phba)
3483{
3484 struct be_mem_descriptor *mem_descr;
3485 struct mem_array *pm_arr;
3486 struct be_dma_mem sgl;
Jayamohan Kallickala129d922013-09-28 15:35:46 -07003487 int status, ulp_num;
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003488
Jayamohan Kallickala129d922013-09-28 15:35:46 -07003489 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3490 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3491 mem_descr = (struct be_mem_descriptor *)phba->init_mem;
3492 mem_descr += HWI_MEM_TEMPLATE_HDR_ULP0 +
3493 (ulp_num * MEM_DESCR_OFFSET);
3494 pm_arr = mem_descr->mem_array;
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003495
Jayamohan Kallickala129d922013-09-28 15:35:46 -07003496 hwi_build_be_sgl_arr(phba, pm_arr, &sgl);
3497 status = be_cmd_iscsi_post_template_hdr(
3498 &phba->ctrl, &sgl);
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003499
Jayamohan Kallickala129d922013-09-28 15:35:46 -07003500 if (status != 0) {
3501 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3502 "BM_%d : Post Template HDR Failed for"
3503 "ULP_%d\n", ulp_num);
3504 return status;
3505 }
3506
3507 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3508 "BM_%d : Template HDR Pages Posted for"
3509 "ULP_%d\n", ulp_num);
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003510 }
3511 }
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003512 return 0;
3513}
3514
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303515static int
3516beiscsi_post_pages(struct beiscsi_hba *phba)
3517{
3518 struct be_mem_descriptor *mem_descr;
3519 struct mem_array *pm_arr;
3520 unsigned int page_offset, i;
3521 struct be_dma_mem sgl;
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07003522 int status, ulp_num = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303523
3524 mem_descr = phba->init_mem;
3525 mem_descr += HWI_MEM_SGE;
3526 pm_arr = mem_descr->mem_array;
3527
Jayamohan Kallickal90622db2013-09-28 15:35:47 -07003528 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3529 if (test_bit(ulp_num, &phba->fw_config.ulp_supported))
3530 break;
3531
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303532 page_offset = (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io *
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07003533 phba->fw_config.iscsi_icd_start[ulp_num]) / PAGE_SIZE;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303534 for (i = 0; i < mem_descr->num_elements; i++) {
3535 hwi_build_be_sgl_arr(phba, pm_arr, &sgl);
3536 status = be_cmd_iscsi_post_sgl_pages(&phba->ctrl, &sgl,
3537 page_offset,
3538 (pm_arr->size / PAGE_SIZE));
3539 page_offset += pm_arr->size / PAGE_SIZE;
3540 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303541 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3542 "BM_%d : post sgl failed.\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303543 return status;
3544 }
3545 pm_arr++;
3546 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05303547 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3548 "BM_%d : POSTED PAGES\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303549 return 0;
3550}
3551
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303552static void be_queue_free(struct beiscsi_hba *phba, struct be_queue_info *q)
3553{
3554 struct be_dma_mem *mem = &q->dma_mem;
Jayamohan Kallickalc8b25592012-04-03 23:41:42 -05003555 if (mem->va) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303556 pci_free_consistent(phba->pcidev, mem->size,
3557 mem->va, mem->dma);
Jayamohan Kallickalc8b25592012-04-03 23:41:42 -05003558 mem->va = NULL;
3559 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303560}
3561
3562static int be_queue_alloc(struct beiscsi_hba *phba, struct be_queue_info *q,
3563 u16 len, u16 entry_size)
3564{
3565 struct be_dma_mem *mem = &q->dma_mem;
3566
3567 memset(q, 0, sizeof(*q));
3568 q->len = len;
3569 q->entry_size = entry_size;
3570 mem->size = len * entry_size;
Joe Perches7c845eb2014-08-08 14:24:46 -07003571 mem->va = pci_zalloc_consistent(phba->pcidev, mem->size, &mem->dma);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303572 if (!mem->va)
Jayamohan Kallickald3ad2bb2010-07-22 04:16:38 +05303573 return -ENOMEM;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303574 return 0;
3575}
3576
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303577static int
3578beiscsi_create_wrb_rings(struct beiscsi_hba *phba,
3579 struct hwi_context_memory *phwi_context,
3580 struct hwi_controller *phwi_ctrlr)
3581{
3582 unsigned int wrb_mem_index, offset, size, num_wrb_rings;
3583 u64 pa_addr_lo;
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003584 unsigned int idx, num, i, ulp_num;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303585 struct mem_array *pwrb_arr;
3586 void *wrb_vaddr;
3587 struct be_dma_mem sgl;
3588 struct be_mem_descriptor *mem_descr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003589 struct hwi_wrb_context *pwrb_context;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303590 int status;
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003591 uint8_t ulp_count = 0, ulp_base_num = 0;
3592 uint16_t cid_count_ulp[BEISCSI_ULP_COUNT] = { 0 };
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303593
3594 idx = 0;
3595 mem_descr = phba->init_mem;
3596 mem_descr += HWI_MEM_WRB;
3597 pwrb_arr = kmalloc(sizeof(*pwrb_arr) * phba->params.cxns_per_ctrl,
3598 GFP_KERNEL);
3599 if (!pwrb_arr) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303600 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3601 "BM_%d : Memory alloc failed in create wrb ring.\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303602 return -ENOMEM;
3603 }
3604 wrb_vaddr = mem_descr->mem_array[idx].virtual_address;
3605 pa_addr_lo = mem_descr->mem_array[idx].bus_address.u.a64.address;
3606 num_wrb_rings = mem_descr->mem_array[idx].size /
3607 (phba->params.wrbs_per_cxn * sizeof(struct iscsi_wrb));
3608
3609 for (num = 0; num < phba->params.cxns_per_ctrl; num++) {
3610 if (num_wrb_rings) {
3611 pwrb_arr[num].virtual_address = wrb_vaddr;
3612 pwrb_arr[num].bus_address.u.a64.address = pa_addr_lo;
3613 pwrb_arr[num].size = phba->params.wrbs_per_cxn *
3614 sizeof(struct iscsi_wrb);
3615 wrb_vaddr += pwrb_arr[num].size;
3616 pa_addr_lo += pwrb_arr[num].size;
3617 num_wrb_rings--;
3618 } else {
3619 idx++;
3620 wrb_vaddr = mem_descr->mem_array[idx].virtual_address;
3621 pa_addr_lo = mem_descr->mem_array[idx].\
3622 bus_address.u.a64.address;
3623 num_wrb_rings = mem_descr->mem_array[idx].size /
3624 (phba->params.wrbs_per_cxn *
3625 sizeof(struct iscsi_wrb));
3626 pwrb_arr[num].virtual_address = wrb_vaddr;
3627 pwrb_arr[num].bus_address.u.a64.address\
3628 = pa_addr_lo;
3629 pwrb_arr[num].size = phba->params.wrbs_per_cxn *
3630 sizeof(struct iscsi_wrb);
3631 wrb_vaddr += pwrb_arr[num].size;
3632 pa_addr_lo += pwrb_arr[num].size;
3633 num_wrb_rings--;
3634 }
3635 }
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003636
3637 /* Get the ULP Count */
3638 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
3639 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3640 ulp_count++;
3641 ulp_base_num = ulp_num;
3642 cid_count_ulp[ulp_num] =
3643 BEISCSI_GET_CID_COUNT(phba, ulp_num);
3644 }
3645
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303646 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
3647 wrb_mem_index = 0;
3648 offset = 0;
3649 size = 0;
3650
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003651 if (ulp_count > 1) {
3652 ulp_base_num = (ulp_base_num + 1) % BEISCSI_ULP_COUNT;
3653
3654 if (!cid_count_ulp[ulp_base_num])
3655 ulp_base_num = (ulp_base_num + 1) %
3656 BEISCSI_ULP_COUNT;
3657
3658 cid_count_ulp[ulp_base_num]--;
3659 }
3660
3661
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303662 hwi_build_be_sgl_by_offset(phba, &pwrb_arr[i], &sgl);
3663 status = be_cmd_wrbq_create(&phba->ctrl, &sgl,
Jayamohan Kallickal4eea99d2013-09-28 15:35:48 -07003664 &phwi_context->be_wrbq[i],
3665 &phwi_ctrlr->wrb_context[i],
3666 ulp_base_num);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303667 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303668 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3669 "BM_%d : wrbq create failed.");
Dan Carpenter1462b8f2010-06-10 09:52:21 +02003670 kfree(pwrb_arr);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303671 return status;
3672 }
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003673 pwrb_context = &phwi_ctrlr->wrb_context[i];
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003674 BE_SET_CID_TO_CRI(i, pwrb_context->cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303675 }
3676 kfree(pwrb_arr);
3677 return 0;
3678}
3679
3680static void free_wrb_handles(struct beiscsi_hba *phba)
3681{
3682 unsigned int index;
3683 struct hwi_controller *phwi_ctrlr;
3684 struct hwi_wrb_context *pwrb_context;
3685
3686 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003687 for (index = 0; index < phba->params.cxns_per_ctrl; index++) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303688 pwrb_context = &phwi_ctrlr->wrb_context[index];
3689 kfree(pwrb_context->pwrb_handle_base);
3690 kfree(pwrb_context->pwrb_handle_basestd);
3691 }
3692}
3693
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303694static void be_mcc_queues_destroy(struct beiscsi_hba *phba)
3695{
3696 struct be_queue_info *q;
3697 struct be_ctrl_info *ctrl = &phba->ctrl;
3698
3699 q = &phba->ctrl.mcc_obj.q;
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303700 if (q->created) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303701 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_MCCQ);
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303702 be_queue_free(phba, q);
3703 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303704
3705 q = &phba->ctrl.mcc_obj.cq;
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303706 if (q->created) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303707 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ);
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303708 be_queue_free(phba, q);
3709 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303710}
3711
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303712static void hwi_cleanup(struct beiscsi_hba *phba)
3713{
3714 struct be_queue_info *q;
3715 struct be_ctrl_info *ctrl = &phba->ctrl;
3716 struct hwi_controller *phwi_ctrlr;
3717 struct hwi_context_memory *phwi_context;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003718 struct hwi_async_pdu_context *pasync_ctx;
Jayamohan Kallickal23188162014-05-05 21:41:29 -04003719 int i, eq_for_mcc, ulp_num;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303720
3721 phwi_ctrlr = phba->phwi_ctrlr;
3722 phwi_context = phwi_ctrlr->phwi_ctxt;
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003723
3724 be_cmd_iscsi_remove_template_hdr(ctrl);
3725
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303726 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
3727 q = &phwi_context->be_wrbq[i];
3728 if (q->created)
3729 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_WRBQ);
3730 }
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003731 kfree(phwi_context->be_wrbq);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303732 free_wrb_handles(phba);
3733
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003734 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3735 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303736
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003737 q = &phwi_context->be_def_hdrq[ulp_num];
3738 if (q->created)
3739 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ);
3740
3741 q = &phwi_context->be_def_dataq[ulp_num];
3742 if (q->created)
3743 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_DPDUQ);
3744
3745 pasync_ctx = phwi_ctrlr->phwi_ctxt->pasync_ctx[ulp_num];
3746 }
3747 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303748
3749 beiscsi_cmd_q_destroy(ctrl, NULL, QTYPE_SGL);
3750
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303751 for (i = 0; i < (phba->num_cpus); i++) {
3752 q = &phwi_context->be_cq[i];
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303753 if (q->created) {
3754 be_queue_free(phba, q);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303755 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_CQ);
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303756 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303757 }
Jayamohan Kallickal23188162014-05-05 21:41:29 -04003758
3759 be_mcc_queues_destroy(phba);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303760 if (phba->msix_enabled)
Jayamohan Kallickal23188162014-05-05 21:41:29 -04003761 eq_for_mcc = 1;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303762 else
Jayamohan Kallickal23188162014-05-05 21:41:29 -04003763 eq_for_mcc = 0;
3764 for (i = 0; i < (phba->num_cpus + eq_for_mcc); i++) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303765 q = &phwi_context->be_eq[i].q;
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303766 if (q->created) {
3767 be_queue_free(phba, q);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303768 beiscsi_cmd_q_destroy(ctrl, q, QTYPE_EQ);
John Soni Jose4e2bdf72015-04-25 08:17:31 +05303769 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303770 }
Jayamohan Kallickal0283fbb2013-04-05 20:38:21 -07003771 be_cmd_fw_uninit(ctrl);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303772}
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303773
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303774static int be_mcc_queues_create(struct beiscsi_hba *phba,
3775 struct hwi_context_memory *phwi_context)
3776{
3777 struct be_queue_info *q, *cq;
3778 struct be_ctrl_info *ctrl = &phba->ctrl;
3779
3780 /* Alloc MCC compl queue */
3781 cq = &phba->ctrl.mcc_obj.cq;
3782 if (be_queue_alloc(phba, cq, MCC_CQ_LEN,
3783 sizeof(struct be_mcc_compl)))
3784 goto err;
3785 /* Ask BE to create MCC compl queue; */
3786 if (phba->msix_enabled) {
3787 if (beiscsi_cmd_cq_create(ctrl, cq, &phwi_context->be_eq
3788 [phba->num_cpus].q, false, true, 0))
3789 goto mcc_cq_free;
3790 } else {
3791 if (beiscsi_cmd_cq_create(ctrl, cq, &phwi_context->be_eq[0].q,
3792 false, true, 0))
3793 goto mcc_cq_free;
3794 }
3795
3796 /* Alloc MCC queue */
3797 q = &phba->ctrl.mcc_obj.q;
3798 if (be_queue_alloc(phba, q, MCC_Q_LEN, sizeof(struct be_mcc_wrb)))
3799 goto mcc_cq_destroy;
3800
3801 /* Ask BE to create MCC queue */
Jayamohan Kallickal35e66012009-10-23 11:53:49 +05303802 if (beiscsi_cmd_mccq_create(phba, q, cq))
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303803 goto mcc_q_free;
3804
3805 return 0;
3806
3807mcc_q_free:
3808 be_queue_free(phba, q);
3809mcc_cq_destroy:
3810 beiscsi_cmd_q_destroy(ctrl, cq, QTYPE_CQ);
3811mcc_cq_free:
3812 be_queue_free(phba, cq);
3813err:
Jayamohan Kallickald3ad2bb2010-07-22 04:16:38 +05303814 return -ENOMEM;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303815}
3816
John Soni Jose107dfcb2012-10-20 04:42:13 +05303817/**
3818 * find_num_cpus()- Get the CPU online count
3819 * @phba: ptr to priv structure
3820 *
3821 * CPU count is used for creating EQ.
3822 **/
3823static void find_num_cpus(struct beiscsi_hba *phba)
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303824{
3825 int num_cpus = 0;
3826
3827 num_cpus = num_online_cpus();
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303828
John Soni Jose22abeef2012-10-20 04:43:32 +05303829 switch (phba->generation) {
3830 case BE_GEN2:
3831 case BE_GEN3:
3832 phba->num_cpus = (num_cpus > BEISCSI_MAX_NUM_CPUS) ?
3833 BEISCSI_MAX_NUM_CPUS : num_cpus;
3834 break;
3835 case BE_GEN4:
Jayamohan Kallickal68c26a32013-09-28 15:35:54 -07003836 /*
3837 * If eqid_count == 1 fall back to
3838 * INTX mechanism
3839 **/
3840 if (phba->fw_config.eqid_count == 1) {
3841 enable_msix = 0;
3842 phba->num_cpus = 1;
3843 return;
3844 }
3845
3846 phba->num_cpus =
3847 (num_cpus > (phba->fw_config.eqid_count - 1)) ?
3848 (phba->fw_config.eqid_count - 1) : num_cpus;
John Soni Jose22abeef2012-10-20 04:43:32 +05303849 break;
3850 default:
3851 phba->num_cpus = 1;
3852 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303853}
3854
3855static int hwi_init_port(struct beiscsi_hba *phba)
3856{
3857 struct hwi_controller *phwi_ctrlr;
3858 struct hwi_context_memory *phwi_context;
3859 unsigned int def_pdu_ring_sz;
3860 struct be_ctrl_info *ctrl = &phba->ctrl;
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003861 int status, ulp_num;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303862
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303863 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303864 phwi_context = phwi_ctrlr->phwi_ctxt;
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04003865 phwi_context->max_eqd = 128;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303866 phwi_context->min_eqd = 0;
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04003867 phwi_context->cur_eqd = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303868 be_cmd_fw_initialize(&phba->ctrl);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303869
3870 status = beiscsi_create_eqs(phba, phwi_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303871 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303872 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3873 "BM_%d : EQ not created\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303874 goto error;
3875 }
3876
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303877 status = be_mcc_queues_create(phba, phwi_context);
3878 if (status != 0)
3879 goto error;
3880
3881 status = mgmt_check_supported_fw(ctrl, phba);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303882 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303883 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3884 "BM_%d : Unsupported fw version\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303885 goto error;
3886 }
3887
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05303888 status = beiscsi_create_cqs(phba, phwi_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303889 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303890 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3891 "BM_%d : CQ not created\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303892 goto error;
3893 }
3894
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003895 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3896 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303897
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003898 def_pdu_ring_sz =
3899 BEISCSI_GET_CID_COUNT(phba, ulp_num) *
3900 sizeof(struct phys_addr);
3901
3902 status = beiscsi_create_def_hdr(phba, phwi_context,
3903 phwi_ctrlr,
3904 def_pdu_ring_sz,
3905 ulp_num);
3906 if (status != 0) {
3907 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3908 "BM_%d : Default Header not created for ULP : %d\n",
3909 ulp_num);
3910 goto error;
3911 }
3912
3913 status = beiscsi_create_def_data(phba, phwi_context,
3914 phwi_ctrlr,
3915 def_pdu_ring_sz,
3916 ulp_num);
3917 if (status != 0) {
3918 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3919 "BM_%d : Default Data not created for ULP : %d\n",
3920 ulp_num);
3921 goto error;
3922 }
3923 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303924 }
3925
3926 status = beiscsi_post_pages(phba);
3927 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303928 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3929 "BM_%d : Post SGL Pages Failed\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303930 goto error;
3931 }
3932
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -07003933 status = beiscsi_post_template_hdr(phba);
3934 if (status != 0) {
3935 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3936 "BM_%d : Template HDR Posting for CXN Failed\n");
3937 }
3938
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303939 status = beiscsi_create_wrb_rings(phba, phwi_context, phwi_ctrlr);
3940 if (status != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303941 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3942 "BM_%d : WRB Rings not created\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303943 goto error;
3944 }
3945
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07003946 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
3947 uint16_t async_arr_idx = 0;
3948
3949 if (test_bit(ulp_num, &phba->fw_config.ulp_supported)) {
3950 uint16_t cri = 0;
3951 struct hwi_async_pdu_context *pasync_ctx;
3952
3953 pasync_ctx = HWI_GET_ASYNC_PDU_CTX(
3954 phwi_ctrlr, ulp_num);
3955 for (cri = 0; cri <
3956 phba->params.cxns_per_ctrl; cri++) {
3957 if (ulp_num == BEISCSI_GET_ULP_FROM_CRI
3958 (phwi_ctrlr, cri))
3959 pasync_ctx->cid_to_async_cri_map[
3960 phwi_ctrlr->wrb_context[cri].cid] =
3961 async_arr_idx++;
3962 }
3963 }
3964 }
3965
John Soni Jose99bc5d52012-08-20 23:00:18 +05303966 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3967 "BM_%d : hwi_init_port success\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303968 return 0;
3969
3970error:
John Soni Jose99bc5d52012-08-20 23:00:18 +05303971 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3972 "BM_%d : hwi_init_port failed");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303973 hwi_cleanup(phba);
Jayamohan Kallickala49e06d2012-04-03 23:41:44 -05003974 return status;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303975}
3976
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303977static int hwi_init_controller(struct beiscsi_hba *phba)
3978{
3979 struct hwi_controller *phwi_ctrlr;
3980
3981 phwi_ctrlr = phba->phwi_ctrlr;
3982 if (1 == phba->init_mem[HWI_MEM_ADDN_CONTEXT].num_elements) {
3983 phwi_ctrlr->phwi_ctxt = (struct hwi_context_memory *)phba->
3984 init_mem[HWI_MEM_ADDN_CONTEXT].mem_array[0].virtual_address;
John Soni Jose99bc5d52012-08-20 23:00:18 +05303985 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
3986 "BM_%d : phwi_ctrlr->phwi_ctxt=%p\n",
3987 phwi_ctrlr->phwi_ctxt);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303988 } else {
John Soni Jose99bc5d52012-08-20 23:00:18 +05303989 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
3990 "BM_%d : HWI_MEM_ADDN_CONTEXT is more "
3991 "than one element.Failing to load\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303992 return -ENOMEM;
3993 }
3994
3995 iscsi_init_global_templates(phba);
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05003996 if (beiscsi_init_wrb_handle(phba))
3997 return -ENOMEM;
3998
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07003999 if (hwi_init_async_pdu_ctx(phba)) {
4000 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4001 "BM_%d : hwi_init_async_pdu_ctx failed\n");
4002 return -ENOMEM;
4003 }
4004
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304005 if (hwi_init_port(phba) != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304006 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4007 "BM_%d : hwi_init_controller failed\n");
4008
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304009 return -ENOMEM;
4010 }
4011 return 0;
4012}
4013
4014static void beiscsi_free_mem(struct beiscsi_hba *phba)
4015{
4016 struct be_mem_descriptor *mem_descr;
4017 int i, j;
4018
4019 mem_descr = phba->init_mem;
4020 i = 0;
4021 j = 0;
4022 for (i = 0; i < SE_MEM_MAX; i++) {
4023 for (j = mem_descr->num_elements; j > 0; j--) {
4024 pci_free_consistent(phba->pcidev,
4025 mem_descr->mem_array[j - 1].size,
4026 mem_descr->mem_array[j - 1].virtual_address,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +05304027 (unsigned long)mem_descr->mem_array[j - 1].
4028 bus_address.u.a64.address);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304029 }
Jayamohan Kallickal8a86e832013-09-28 15:35:45 -07004030
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304031 kfree(mem_descr->mem_array);
4032 mem_descr++;
4033 }
4034 kfree(phba->init_mem);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004035 kfree(phba->phwi_ctrlr->wrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304036 kfree(phba->phwi_ctrlr);
4037}
4038
4039static int beiscsi_init_controller(struct beiscsi_hba *phba)
4040{
4041 int ret = -ENOMEM;
4042
4043 ret = beiscsi_get_memory(phba);
4044 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304045 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4046 "BM_%d : beiscsi_dev_probe -"
4047 "Failed in beiscsi_alloc_memory\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304048 return ret;
4049 }
4050
4051 ret = hwi_init_controller(phba);
4052 if (ret)
4053 goto free_init;
John Soni Jose99bc5d52012-08-20 23:00:18 +05304054 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4055 "BM_%d : Return success from beiscsi_init_controller");
4056
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304057 return 0;
4058
4059free_init:
4060 beiscsi_free_mem(phba);
Jayamohan Kallickala49e06d2012-04-03 23:41:44 -05004061 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304062}
4063
4064static int beiscsi_init_sgl_handle(struct beiscsi_hba *phba)
4065{
4066 struct be_mem_descriptor *mem_descr_sglh, *mem_descr_sg;
4067 struct sgl_handle *psgl_handle;
4068 struct iscsi_sge *pfrag;
Jayamohan Kallickal90622db2013-09-28 15:35:47 -07004069 unsigned int arr_index, i, idx;
4070 unsigned int ulp_icd_start, ulp_num = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304071
4072 phba->io_sgl_hndl_avbl = 0;
4073 phba->eh_sgl_hndl_avbl = 0;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304074
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304075 mem_descr_sglh = phba->init_mem;
4076 mem_descr_sglh += HWI_MEM_SGLH;
4077 if (1 == mem_descr_sglh->num_elements) {
4078 phba->io_sgl_hndl_base = kzalloc(sizeof(struct sgl_handle *) *
4079 phba->params.ios_per_ctrl,
4080 GFP_KERNEL);
4081 if (!phba->io_sgl_hndl_base) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304082 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4083 "BM_%d : Mem Alloc Failed. Failing to load\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304084 return -ENOMEM;
4085 }
4086 phba->eh_sgl_hndl_base = kzalloc(sizeof(struct sgl_handle *) *
4087 (phba->params.icds_per_ctrl -
4088 phba->params.ios_per_ctrl),
4089 GFP_KERNEL);
4090 if (!phba->eh_sgl_hndl_base) {
4091 kfree(phba->io_sgl_hndl_base);
John Soni Jose99bc5d52012-08-20 23:00:18 +05304092 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4093 "BM_%d : Mem Alloc Failed. Failing to load\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304094 return -ENOMEM;
4095 }
4096 } else {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304097 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4098 "BM_%d : HWI_MEM_SGLH is more than one element."
4099 "Failing to load\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304100 return -ENOMEM;
4101 }
4102
4103 arr_index = 0;
4104 idx = 0;
4105 while (idx < mem_descr_sglh->num_elements) {
4106 psgl_handle = mem_descr_sglh->mem_array[idx].virtual_address;
4107
4108 for (i = 0; i < (mem_descr_sglh->mem_array[idx].size /
4109 sizeof(struct sgl_handle)); i++) {
4110 if (arr_index < phba->params.ios_per_ctrl) {
4111 phba->io_sgl_hndl_base[arr_index] = psgl_handle;
4112 phba->io_sgl_hndl_avbl++;
4113 arr_index++;
4114 } else {
4115 phba->eh_sgl_hndl_base[arr_index -
4116 phba->params.ios_per_ctrl] =
4117 psgl_handle;
4118 arr_index++;
4119 phba->eh_sgl_hndl_avbl++;
4120 }
4121 psgl_handle++;
4122 }
4123 idx++;
4124 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05304125 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4126 "BM_%d : phba->io_sgl_hndl_avbl=%d"
4127 "phba->eh_sgl_hndl_avbl=%d\n",
4128 phba->io_sgl_hndl_avbl,
4129 phba->eh_sgl_hndl_avbl);
4130
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304131 mem_descr_sg = phba->init_mem;
4132 mem_descr_sg += HWI_MEM_SGE;
John Soni Jose99bc5d52012-08-20 23:00:18 +05304133 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4134 "\n BM_%d : mem_descr_sg->num_elements=%d\n",
4135 mem_descr_sg->num_elements);
4136
Jayamohan Kallickal90622db2013-09-28 15:35:47 -07004137 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++)
4138 if (test_bit(ulp_num, &phba->fw_config.ulp_supported))
4139 break;
4140
4141 ulp_icd_start = phba->fw_config.iscsi_icd_start[ulp_num];
4142
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304143 arr_index = 0;
4144 idx = 0;
4145 while (idx < mem_descr_sg->num_elements) {
4146 pfrag = mem_descr_sg->mem_array[idx].virtual_address;
4147
4148 for (i = 0;
4149 i < (mem_descr_sg->mem_array[idx].size) /
4150 (sizeof(struct iscsi_sge) * phba->params.num_sge_per_io);
4151 i++) {
4152 if (arr_index < phba->params.ios_per_ctrl)
4153 psgl_handle = phba->io_sgl_hndl_base[arr_index];
4154 else
4155 psgl_handle = phba->eh_sgl_hndl_base[arr_index -
4156 phba->params.ios_per_ctrl];
4157 psgl_handle->pfrag = pfrag;
4158 AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, pfrag, 0);
4159 AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, pfrag, 0);
4160 pfrag += phba->params.num_sge_per_io;
Jayamohan Kallickal90622db2013-09-28 15:35:47 -07004161 psgl_handle->sgl_index = ulp_icd_start + arr_index++;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304162 }
4163 idx++;
4164 }
4165 phba->io_sgl_free_index = 0;
4166 phba->io_sgl_alloc_index = 0;
4167 phba->eh_sgl_free_index = 0;
4168 phba->eh_sgl_alloc_index = 0;
4169 return 0;
4170}
4171
4172static int hba_setup_cid_tbls(struct beiscsi_hba *phba)
4173{
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004174 int ret;
4175 uint16_t i, ulp_num;
4176 struct ulp_cid_info *ptr_cid_info = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304177
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004178 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4179 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4180 ptr_cid_info = kzalloc(sizeof(struct ulp_cid_info),
4181 GFP_KERNEL);
4182
4183 if (!ptr_cid_info) {
4184 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4185 "BM_%d : Failed to allocate memory"
4186 "for ULP_CID_INFO for ULP : %d\n",
4187 ulp_num);
4188 ret = -ENOMEM;
4189 goto free_memory;
4190
4191 }
4192
4193 /* Allocate memory for CID array */
4194 ptr_cid_info->cid_array = kzalloc(sizeof(void *) *
4195 BEISCSI_GET_CID_COUNT(phba,
4196 ulp_num), GFP_KERNEL);
4197 if (!ptr_cid_info->cid_array) {
4198 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4199 "BM_%d : Failed to allocate memory"
4200 "for CID_ARRAY for ULP : %d\n",
4201 ulp_num);
4202 kfree(ptr_cid_info);
4203 ptr_cid_info = NULL;
4204 ret = -ENOMEM;
4205
4206 goto free_memory;
4207 }
4208 ptr_cid_info->avlbl_cids = BEISCSI_GET_CID_COUNT(
4209 phba, ulp_num);
4210
4211 /* Save the cid_info_array ptr */
4212 phba->cid_array_info[ulp_num] = ptr_cid_info;
4213 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304214 }
Jayamohan Kallickalc2462282010-01-05 05:05:34 +05304215 phba->ep_array = kzalloc(sizeof(struct iscsi_endpoint *) *
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004216 phba->params.cxns_per_ctrl, GFP_KERNEL);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304217 if (!phba->ep_array) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304218 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4219 "BM_%d : Failed to allocate memory in "
4220 "hba_setup_cid_tbls\n");
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004221 ret = -ENOMEM;
4222
4223 goto free_memory;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304224 }
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004225
4226 phba->conn_table = kzalloc(sizeof(struct beiscsi_conn *) *
4227 phba->params.cxns_per_ctrl, GFP_KERNEL);
4228 if (!phba->conn_table) {
4229 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4230 "BM_%d : Failed to allocate memory in"
4231 "hba_setup_cid_tbls\n");
4232
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004233 kfree(phba->ep_array);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004234 phba->ep_array = NULL;
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004235 ret = -ENOMEM;
Tomas Henzl5f2d25e2014-06-06 14:06:30 +02004236
4237 goto free_memory;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304238 }
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004239
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004240 for (i = 0; i < phba->params.cxns_per_ctrl; i++) {
4241 ulp_num = phba->phwi_ctrlr->wrb_context[i].ulp_num;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004242
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004243 ptr_cid_info = phba->cid_array_info[ulp_num];
4244 ptr_cid_info->cid_array[ptr_cid_info->cid_alloc++] =
4245 phba->phwi_ctrlr->wrb_context[i].cid;
4246
4247 }
4248
4249 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4250 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4251 ptr_cid_info = phba->cid_array_info[ulp_num];
4252
4253 ptr_cid_info->cid_alloc = 0;
4254 ptr_cid_info->cid_free = 0;
4255 }
4256 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304257 return 0;
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004258
4259free_memory:
4260 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4261 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4262 ptr_cid_info = phba->cid_array_info[ulp_num];
4263
4264 if (ptr_cid_info) {
4265 kfree(ptr_cid_info->cid_array);
4266 kfree(ptr_cid_info);
4267 phba->cid_array_info[ulp_num] = NULL;
4268 }
4269 }
4270 }
4271
4272 return ret;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304273}
4274
Jayamohan Kallickal238f6b72010-07-22 04:23:22 +05304275static void hwi_enable_intr(struct beiscsi_hba *phba)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304276{
4277 struct be_ctrl_info *ctrl = &phba->ctrl;
4278 struct hwi_controller *phwi_ctrlr;
4279 struct hwi_context_memory *phwi_context;
4280 struct be_queue_info *eq;
4281 u8 __iomem *addr;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304282 u32 reg, i;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304283 u32 enabled;
4284
4285 phwi_ctrlr = phba->phwi_ctrlr;
4286 phwi_context = phwi_ctrlr->phwi_ctxt;
4287
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304288 addr = (u8 __iomem *) ((u8 __iomem *) ctrl->pcicfg +
4289 PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET);
4290 reg = ioread32(addr);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304291
4292 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4293 if (!enabled) {
4294 reg |= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
John Soni Jose99bc5d52012-08-20 23:00:18 +05304295 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4296 "BM_%d : reg =x%08x addr=%p\n", reg, addr);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304297 iowrite32(reg, addr);
Jayamohan Kallickal665d6d92011-04-29 14:30:06 -05004298 }
4299
4300 if (!phba->msix_enabled) {
4301 eq = &phwi_context->be_eq[0].q;
John Soni Jose99bc5d52012-08-20 23:00:18 +05304302 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4303 "BM_%d : eq->id=%d\n", eq->id);
4304
Jayamohan Kallickal665d6d92011-04-29 14:30:06 -05004305 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
4306 } else {
4307 for (i = 0; i <= phba->num_cpus; i++) {
4308 eq = &phwi_context->be_eq[i].q;
John Soni Jose99bc5d52012-08-20 23:00:18 +05304309 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
4310 "BM_%d : eq->id=%d\n", eq->id);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304311 hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
4312 }
Jayamohan Kallickalc03af1a2010-02-20 08:05:43 +05304313 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304314}
4315
4316static void hwi_disable_intr(struct beiscsi_hba *phba)
4317{
4318 struct be_ctrl_info *ctrl = &phba->ctrl;
4319
4320 u8 __iomem *addr = ctrl->pcicfg + PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET;
4321 u32 reg = ioread32(addr);
4322
4323 u32 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4324 if (enabled) {
4325 reg &= ~MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
4326 iowrite32(reg, addr);
4327 } else
John Soni Jose99bc5d52012-08-20 23:00:18 +05304328 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
4329 "BM_%d : In hwi_disable_intr, Already Disabled\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304330}
4331
John Soni Jose9aef4202012-08-20 23:00:08 +05304332/**
4333 * beiscsi_get_boot_info()- Get the boot session info
4334 * @phba: The device priv structure instance
4335 *
4336 * Get the boot target info and store in driver priv structure
4337 *
4338 * return values
4339 * Success: 0
4340 * Failure: Non-Zero Value
4341 **/
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304342static int beiscsi_get_boot_info(struct beiscsi_hba *phba)
4343{
Mike Christie0e438952012-04-03 23:41:51 -05004344 struct be_cmd_get_session_resp *session_resp;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304345 struct be_dma_mem nonemb_cmd;
John Soni Josee175def2012-10-20 04:45:40 +05304346 unsigned int tag;
John Soni Jose9aef4202012-08-20 23:00:08 +05304347 unsigned int s_handle;
Mike Christief457a462011-06-24 15:11:53 -05004348 int ret = -ENOMEM;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304349
John Soni Jose9aef4202012-08-20 23:00:08 +05304350 /* Get the session handle of the boot target */
4351 ret = be_mgmt_get_boot_shandle(phba, &s_handle);
4352 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304353 beiscsi_log(phba, KERN_ERR,
4354 BEISCSI_LOG_INIT | BEISCSI_LOG_CONFIG,
4355 "BM_%d : No boot session\n");
John Soni Jose3efde862015-04-25 08:16:57 +05304356
4357 if (ret == -ENXIO)
4358 phba->get_boot = 0;
4359
4360
John Soni Jose9aef4202012-08-20 23:00:08 +05304361 return ret;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304362 }
John Soni Jose3efde862015-04-25 08:16:57 +05304363 phba->get_boot = 0;
Joe Perches7c845eb2014-08-08 14:24:46 -07004364 nonemb_cmd.va = pci_zalloc_consistent(phba->ctrl.pdev,
4365 sizeof(*session_resp),
4366 &nonemb_cmd.dma);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304367 if (nonemb_cmd.va == NULL) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304368 beiscsi_log(phba, KERN_ERR,
4369 BEISCSI_LOG_INIT | BEISCSI_LOG_CONFIG,
4370 "BM_%d : Failed to allocate memory for"
4371 "beiscsi_get_session_info\n");
4372
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304373 return -ENOMEM;
4374 }
4375
John Soni Jose9aef4202012-08-20 23:00:08 +05304376 tag = mgmt_get_session_info(phba, s_handle,
Mike Christie0e438952012-04-03 23:41:51 -05004377 &nonemb_cmd);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304378 if (!tag) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304379 beiscsi_log(phba, KERN_ERR,
4380 BEISCSI_LOG_INIT | BEISCSI_LOG_CONFIG,
4381 "BM_%d : beiscsi_get_session_info"
4382 " Failed\n");
4383
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304384 goto boot_freemem;
John Soni Josee175def2012-10-20 04:45:40 +05304385 }
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304386
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -05004387 ret = beiscsi_mccq_compl(phba, tag, NULL, &nonemb_cmd);
John Soni Josee175def2012-10-20 04:45:40 +05304388 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304389 beiscsi_log(phba, KERN_ERR,
4390 BEISCSI_LOG_INIT | BEISCSI_LOG_CONFIG,
John Soni Josee175def2012-10-20 04:45:40 +05304391 "BM_%d : beiscsi_get_session_info Failed");
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -05004392
4393 if (ret != -EBUSY)
4394 goto boot_freemem;
4395 else
4396 return ret;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304397 }
John Soni Josee175def2012-10-20 04:45:40 +05304398
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304399 session_resp = nonemb_cmd.va ;
Mike Christief457a462011-06-24 15:11:53 -05004400
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304401 memcpy(&phba->boot_sess, &session_resp->session_info,
4402 sizeof(struct mgmt_session_info));
John Soni Jose3f4134c2015-04-25 08:18:13 +05304403
4404 beiscsi_logout_fw_sess(phba,
4405 phba->boot_sess.session_handle);
Mike Christief457a462011-06-24 15:11:53 -05004406 ret = 0;
4407
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304408boot_freemem:
4409 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
4410 nonemb_cmd.va, nonemb_cmd.dma);
Mike Christief457a462011-06-24 15:11:53 -05004411 return ret;
4412}
4413
4414static void beiscsi_boot_release(void *data)
4415{
4416 struct beiscsi_hba *phba = data;
4417
4418 scsi_host_put(phba->shost);
4419}
4420
4421static int beiscsi_setup_boot_info(struct beiscsi_hba *phba)
4422{
4423 struct iscsi_boot_kobj *boot_kobj;
4424
Jayamohan Kallickala3d313e2014-08-08 01:00:00 -04004425 /* it has been created previously */
4426 if (phba->boot_kset)
4427 return 0;
4428
Mike Christief457a462011-06-24 15:11:53 -05004429 /* get boot info using mgmt cmd */
4430 if (beiscsi_get_boot_info(phba))
4431 /* Try to see if we can carry on without this */
4432 return 0;
4433
4434 phba->boot_kset = iscsi_boot_create_host_kset(phba->shost->host_no);
4435 if (!phba->boot_kset)
4436 return -ENOMEM;
4437
4438 /* get a ref because the show function will ref the phba */
4439 if (!scsi_host_get(phba->shost))
4440 goto free_kset;
4441 boot_kobj = iscsi_boot_create_target(phba->boot_kset, 0, phba,
4442 beiscsi_show_boot_tgt_info,
4443 beiscsi_tgt_get_attr_visibility,
4444 beiscsi_boot_release);
4445 if (!boot_kobj)
4446 goto put_shost;
4447
4448 if (!scsi_host_get(phba->shost))
4449 goto free_kset;
4450 boot_kobj = iscsi_boot_create_initiator(phba->boot_kset, 0, phba,
4451 beiscsi_show_boot_ini_info,
4452 beiscsi_ini_get_attr_visibility,
4453 beiscsi_boot_release);
4454 if (!boot_kobj)
4455 goto put_shost;
4456
4457 if (!scsi_host_get(phba->shost))
4458 goto free_kset;
4459 boot_kobj = iscsi_boot_create_ethernet(phba->boot_kset, 0, phba,
4460 beiscsi_show_boot_eth_info,
4461 beiscsi_eth_get_attr_visibility,
4462 beiscsi_boot_release);
4463 if (!boot_kobj)
4464 goto put_shost;
4465 return 0;
4466
4467put_shost:
4468 scsi_host_put(phba->shost);
4469free_kset:
4470 iscsi_boot_destroy_kset(phba->boot_kset);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +05304471 return -ENOMEM;
4472}
4473
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304474static int beiscsi_init_port(struct beiscsi_hba *phba)
4475{
4476 int ret;
4477
4478 ret = beiscsi_init_controller(phba);
4479 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304480 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4481 "BM_%d : beiscsi_dev_probe - Failed in"
4482 "beiscsi_init_controller\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304483 return ret;
4484 }
4485 ret = beiscsi_init_sgl_handle(phba);
4486 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304487 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4488 "BM_%d : beiscsi_dev_probe - Failed in"
4489 "beiscsi_init_sgl_handle\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304490 goto do_cleanup_ctrlr;
4491 }
4492
4493 if (hba_setup_cid_tbls(phba)) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05304494 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
4495 "BM_%d : Failed in hba_setup_cid_tbls\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304496 kfree(phba->io_sgl_hndl_base);
4497 kfree(phba->eh_sgl_hndl_base);
4498 goto do_cleanup_ctrlr;
4499 }
4500
4501 return ret;
4502
4503do_cleanup_ctrlr:
4504 hwi_cleanup(phba);
4505 return ret;
4506}
4507
4508static void hwi_purge_eq(struct beiscsi_hba *phba)
4509{
4510 struct hwi_controller *phwi_ctrlr;
4511 struct hwi_context_memory *phwi_context;
4512 struct be_queue_info *eq;
4513 struct be_eq_entry *eqe = NULL;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304514 int i, eq_msix;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05304515 unsigned int num_processed;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304516
4517 phwi_ctrlr = phba->phwi_ctrlr;
4518 phwi_context = phwi_ctrlr->phwi_ctxt;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304519 if (phba->msix_enabled)
4520 eq_msix = 1;
4521 else
4522 eq_msix = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304523
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304524 for (i = 0; i < (phba->num_cpus + eq_msix); i++) {
4525 eq = &phwi_context->be_eq[i].q;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304526 eqe = queue_tail_node(eq);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05304527 num_processed = 0;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304528 while (eqe->dw[offsetof(struct amap_eq_entry, valid) / 32]
4529 & EQE_VALID_MASK) {
4530 AMAP_SET_BITS(struct amap_eq_entry, valid, eqe, 0);
4531 queue_tail_inc(eq);
4532 eqe = queue_tail_node(eq);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05304533 num_processed++;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304534 }
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05304535
4536 if (num_processed)
4537 hwi_ring_eq_db(phba, eq->id, 1, num_processed, 1, 1);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304538 }
4539}
4540
4541static void beiscsi_clean_port(struct beiscsi_hba *phba)
4542{
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004543 int mgmt_status, ulp_num;
4544 struct ulp_cid_info *ptr_cid_info = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304545
Jayamohan Kallickalbd41c2b2013-09-28 15:35:51 -07004546 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4547 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4548 mgmt_status = mgmt_epfw_cleanup(phba, ulp_num);
4549 if (mgmt_status)
4550 beiscsi_log(phba, KERN_WARNING,
4551 BEISCSI_LOG_INIT,
4552 "BM_%d : mgmt_epfw_cleanup FAILED"
4553 " for ULP_%d\n", ulp_num);
4554 }
4555 }
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05304556
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304557 hwi_purge_eq(phba);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05304558 hwi_cleanup(phba);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304559 kfree(phba->io_sgl_hndl_base);
4560 kfree(phba->eh_sgl_hndl_base);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304561 kfree(phba->ep_array);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004562 kfree(phba->conn_table);
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07004563
4564 for (ulp_num = 0; ulp_num < BEISCSI_ULP_COUNT; ulp_num++) {
4565 if (test_bit(ulp_num, (void *)&phba->fw_config.ulp_supported)) {
4566 ptr_cid_info = phba->cid_array_info[ulp_num];
4567
4568 if (ptr_cid_info) {
4569 kfree(ptr_cid_info->cid_array);
4570 kfree(ptr_cid_info);
4571 phba->cid_array_info[ulp_num] = NULL;
4572 }
4573 }
4574 }
4575
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304576}
4577
John Soni Josed629c472012-10-20 04:42:00 +05304578/**
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004579 * beiscsi_free_mgmt_task_handles()- Free driver CXN resources
4580 * @beiscsi_conn: ptr to the conn to be cleaned up
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07004581 * @task: ptr to iscsi_task resource to be freed.
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004582 *
4583 * Free driver mgmt resources binded to CXN.
4584 **/
4585void
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07004586beiscsi_free_mgmt_task_handles(struct beiscsi_conn *beiscsi_conn,
4587 struct iscsi_task *task)
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004588{
4589 struct beiscsi_io_task *io_task;
4590 struct beiscsi_hba *phba = beiscsi_conn->phba;
4591 struct hwi_wrb_context *pwrb_context;
4592 struct hwi_controller *phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004593 uint16_t cri_index = BE_GET_CRI_FROM_CID(
4594 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004595
4596 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004597 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
4598
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07004599 io_task = task->dd_data;
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004600
4601 if (io_task->pwrb_handle) {
4602 memset(io_task->pwrb_handle->pwrb, 0,
4603 sizeof(struct iscsi_wrb));
4604 free_wrb_handle(phba, pwrb_context,
4605 io_task->pwrb_handle);
4606 io_task->pwrb_handle = NULL;
4607 }
4608
4609 if (io_task->psgl_handle) {
4610 spin_lock_bh(&phba->mgmt_sgl_lock);
4611 free_mgmt_sgl_handle(phba,
4612 io_task->psgl_handle);
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004613 io_task->psgl_handle = NULL;
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07004614 spin_unlock_bh(&phba->mgmt_sgl_lock);
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004615 }
4616
John Soni Joseeb1c4692015-04-25 08:17:45 +05304617 if (io_task->mtask_addr) {
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004618 pci_unmap_single(phba->pcidev,
4619 io_task->mtask_addr,
4620 io_task->mtask_data_count,
4621 PCI_DMA_TODEVICE);
John Soni Joseeb1c4692015-04-25 08:17:45 +05304622 io_task->mtask_addr = 0;
4623 }
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004624}
4625
4626/**
John Soni Josed629c472012-10-20 04:42:00 +05304627 * beiscsi_cleanup_task()- Free driver resources of the task
4628 * @task: ptr to the iscsi task
4629 *
4630 **/
Mike Christie1282ab72012-04-18 03:06:00 -05004631static void beiscsi_cleanup_task(struct iscsi_task *task)
4632{
4633 struct beiscsi_io_task *io_task = task->dd_data;
4634 struct iscsi_conn *conn = task->conn;
4635 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4636 struct beiscsi_hba *phba = beiscsi_conn->phba;
4637 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess;
4638 struct hwi_wrb_context *pwrb_context;
4639 struct hwi_controller *phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004640 uint16_t cri_index = BE_GET_CRI_FROM_CID(
4641 beiscsi_conn->beiscsi_conn_cid);
Mike Christie1282ab72012-04-18 03:06:00 -05004642
4643 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004644 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
Mike Christie1282ab72012-04-18 03:06:00 -05004645
4646 if (io_task->cmd_bhs) {
4647 pci_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs,
4648 io_task->bhs_pa.u.a64.address);
4649 io_task->cmd_bhs = NULL;
4650 }
4651
4652 if (task->sc) {
4653 if (io_task->pwrb_handle) {
4654 free_wrb_handle(phba, pwrb_context,
4655 io_task->pwrb_handle);
4656 io_task->pwrb_handle = NULL;
4657 }
4658
4659 if (io_task->psgl_handle) {
4660 spin_lock(&phba->io_sgl_lock);
4661 free_io_sgl_handle(phba, io_task->psgl_handle);
4662 spin_unlock(&phba->io_sgl_lock);
4663 io_task->psgl_handle = NULL;
4664 }
Jayamohan Kallickalda334972014-01-29 02:16:44 -05004665
4666 if (io_task->scsi_cmnd) {
4667 scsi_dma_unmap(io_task->scsi_cmnd);
4668 io_task->scsi_cmnd = NULL;
4669 }
Mike Christie1282ab72012-04-18 03:06:00 -05004670 } else {
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004671 if (!beiscsi_conn->login_in_progress)
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07004672 beiscsi_free_mgmt_task_handles(beiscsi_conn, task);
Mike Christie1282ab72012-04-18 03:06:00 -05004673 }
4674}
4675
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304676void
4677beiscsi_offload_connection(struct beiscsi_conn *beiscsi_conn,
4678 struct beiscsi_offload_params *params)
4679{
4680 struct wrb_handle *pwrb_handle;
John Soni Jose340c99e2015-08-20 04:44:30 +05304681 struct hwi_wrb_context *pwrb_context = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304682 struct beiscsi_hba *phba = beiscsi_conn->phba;
Mike Christie1282ab72012-04-18 03:06:00 -05004683 struct iscsi_task *task = beiscsi_conn->task;
4684 struct iscsi_session *session = task->conn->session;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304685 u32 doorbell = 0;
4686
4687 /*
4688 * We can always use 0 here because it is reserved by libiscsi for
4689 * login/startup related tasks.
4690 */
Mike Christie1282ab72012-04-18 03:06:00 -05004691 beiscsi_conn->login_in_progress = 0;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06004692 spin_lock_bh(&session->back_lock);
Mike Christie1282ab72012-04-18 03:06:00 -05004693 beiscsi_cleanup_task(task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06004694 spin_unlock_bh(&session->back_lock);
Mike Christie1282ab72012-04-18 03:06:00 -05004695
John Soni Jose340c99e2015-08-20 04:44:30 +05304696 pwrb_handle = alloc_wrb_handle(phba, beiscsi_conn->beiscsi_conn_cid,
4697 &pwrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304698
John Soni Joseacb96932012-10-20 04:44:35 +05304699 /* Check for the adapter family */
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004700 if (is_chip_be2_be3r(phba))
John Soni Joseacb96932012-10-20 04:44:35 +05304701 beiscsi_offload_cxn_v0(params, pwrb_handle,
John Soni Jose340c99e2015-08-20 04:44:30 +05304702 phba->init_mem,
4703 pwrb_context);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07004704 else
John Soni Jose340c99e2015-08-20 04:44:30 +05304705 beiscsi_offload_cxn_v2(params, pwrb_handle,
4706 pwrb_context);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304707
John Soni Joseacb96932012-10-20 04:44:35 +05304708 be_dws_le_to_cpu(pwrb_handle->pwrb,
4709 sizeof(struct iscsi_target_context_update_wrb));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304710
4711 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304712 doorbell |= (pwrb_handle->wrb_index & DB_DEF_PDU_WRB_INDEX_MASK)
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304713 << DB_DEF_PDU_WRB_INDEX_SHIFT;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304714 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -07004715 iowrite32(doorbell, phba->db_va +
4716 beiscsi_conn->doorbell_offset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304717}
4718
4719static void beiscsi_parse_pdu(struct iscsi_conn *conn, itt_t itt,
4720 int *index, int *age)
4721{
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304722 *index = (int)itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304723 if (age)
4724 *age = conn->session->age;
4725}
4726
4727/**
4728 * beiscsi_alloc_pdu - allocates pdu and related resources
4729 * @task: libiscsi task
4730 * @opcode: opcode of pdu for task
4731 *
4732 * This is called with the session lock held. It will allocate
4733 * the wrb and sgl if needed for the command. And it will prep
4734 * the pdu's itt. beiscsi_parse_pdu will later translate
4735 * the pdu itt to the libiscsi task itt.
4736 */
4737static int beiscsi_alloc_pdu(struct iscsi_task *task, uint8_t opcode)
4738{
4739 struct beiscsi_io_task *io_task = task->dd_data;
4740 struct iscsi_conn *conn = task->conn;
4741 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4742 struct beiscsi_hba *phba = beiscsi_conn->phba;
4743 struct hwi_wrb_context *pwrb_context;
4744 struct hwi_controller *phwi_ctrlr;
4745 itt_t itt;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004746 uint16_t cri_index = 0;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304747 struct beiscsi_session *beiscsi_sess = beiscsi_conn->beiscsi_sess;
4748 dma_addr_t paddr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304749
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304750 io_task->cmd_bhs = pci_pool_alloc(beiscsi_sess->bhs_pool,
Mike Christiebc7acce2010-12-31 02:22:19 -06004751 GFP_ATOMIC, &paddr);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304752 if (!io_task->cmd_bhs)
4753 return -ENOMEM;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304754 io_task->bhs_pa.u.a64.address = paddr;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304755 io_task->libiscsi_itt = (itt_t)task->itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304756 io_task->conn = beiscsi_conn;
4757
4758 task->hdr = (struct iscsi_hdr *)&io_task->cmd_bhs->iscsi_hdr;
4759 task->hdr_max = sizeof(struct be_cmd_bhs);
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304760 io_task->psgl_handle = NULL;
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -05004761 io_task->pwrb_handle = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304762
4763 if (task->sc) {
4764 spin_lock(&phba->io_sgl_lock);
4765 io_task->psgl_handle = alloc_io_sgl_handle(phba);
4766 spin_unlock(&phba->io_sgl_lock);
John Soni Jose8359c792012-10-20 04:43:03 +05304767 if (!io_task->psgl_handle) {
4768 beiscsi_log(phba, KERN_ERR,
4769 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4770 "BM_%d : Alloc of IO_SGL_ICD Failed"
4771 "for the CID : %d\n",
4772 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304773 goto free_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304774 }
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304775 io_task->pwrb_handle = alloc_wrb_handle(phba,
John Soni Jose340c99e2015-08-20 04:44:30 +05304776 beiscsi_conn->beiscsi_conn_cid,
4777 &io_task->pwrb_context);
John Soni Jose8359c792012-10-20 04:43:03 +05304778 if (!io_task->pwrb_handle) {
4779 beiscsi_log(phba, KERN_ERR,
4780 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4781 "BM_%d : Alloc of WRB_HANDLE Failed"
4782 "for the CID : %d\n",
4783 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304784 goto free_io_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304785 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304786 } else {
4787 io_task->scsi_cmnd = NULL;
Jayamohan Kallickald7aea672010-01-05 05:08:39 +05304788 if ((opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGIN) {
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07004789 beiscsi_conn->task = task;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304790 if (!beiscsi_conn->login_in_progress) {
4791 spin_lock(&phba->mgmt_sgl_lock);
4792 io_task->psgl_handle = (struct sgl_handle *)
4793 alloc_mgmt_sgl_handle(phba);
4794 spin_unlock(&phba->mgmt_sgl_lock);
John Soni Jose8359c792012-10-20 04:43:03 +05304795 if (!io_task->psgl_handle) {
4796 beiscsi_log(phba, KERN_ERR,
4797 BEISCSI_LOG_IO |
4798 BEISCSI_LOG_CONFIG,
4799 "BM_%d : Alloc of MGMT_SGL_ICD Failed"
4800 "for the CID : %d\n",
4801 beiscsi_conn->
4802 beiscsi_conn_cid);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304803 goto free_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304804 }
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304805
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304806 beiscsi_conn->login_in_progress = 1;
4807 beiscsi_conn->plogin_sgl_handle =
4808 io_task->psgl_handle;
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304809 io_task->pwrb_handle =
4810 alloc_wrb_handle(phba,
John Soni Jose340c99e2015-08-20 04:44:30 +05304811 beiscsi_conn->beiscsi_conn_cid,
4812 &io_task->pwrb_context);
John Soni Jose8359c792012-10-20 04:43:03 +05304813 if (!io_task->pwrb_handle) {
4814 beiscsi_log(phba, KERN_ERR,
4815 BEISCSI_LOG_IO |
4816 BEISCSI_LOG_CONFIG,
4817 "BM_%d : Alloc of WRB_HANDLE Failed"
4818 "for the CID : %d\n",
4819 beiscsi_conn->
4820 beiscsi_conn_cid);
4821 goto free_mgmt_hndls;
4822 }
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304823 beiscsi_conn->plogin_wrb_handle =
4824 io_task->pwrb_handle;
4825
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304826 } else {
4827 io_task->psgl_handle =
4828 beiscsi_conn->plogin_sgl_handle;
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304829 io_task->pwrb_handle =
4830 beiscsi_conn->plogin_wrb_handle;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304831 }
4832 } else {
4833 spin_lock(&phba->mgmt_sgl_lock);
4834 io_task->psgl_handle = alloc_mgmt_sgl_handle(phba);
4835 spin_unlock(&phba->mgmt_sgl_lock);
John Soni Jose8359c792012-10-20 04:43:03 +05304836 if (!io_task->psgl_handle) {
4837 beiscsi_log(phba, KERN_ERR,
4838 BEISCSI_LOG_IO |
4839 BEISCSI_LOG_CONFIG,
4840 "BM_%d : Alloc of MGMT_SGL_ICD Failed"
4841 "for the CID : %d\n",
4842 beiscsi_conn->
4843 beiscsi_conn_cid);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304844 goto free_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304845 }
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304846 io_task->pwrb_handle =
4847 alloc_wrb_handle(phba,
John Soni Jose340c99e2015-08-20 04:44:30 +05304848 beiscsi_conn->beiscsi_conn_cid,
4849 &io_task->pwrb_context);
John Soni Jose8359c792012-10-20 04:43:03 +05304850 if (!io_task->pwrb_handle) {
4851 beiscsi_log(phba, KERN_ERR,
4852 BEISCSI_LOG_IO | BEISCSI_LOG_CONFIG,
4853 "BM_%d : Alloc of WRB_HANDLE Failed"
4854 "for the CID : %d\n",
4855 beiscsi_conn->beiscsi_conn_cid);
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304856 goto free_mgmt_hndls;
John Soni Jose8359c792012-10-20 04:43:03 +05304857 }
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304858
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304859 }
4860 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304861 itt = (itt_t) cpu_to_be32(((unsigned int)io_task->pwrb_handle->
4862 wrb_index << 16) | (unsigned int)
4863 (io_task->psgl_handle->sgl_index));
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304864 io_task->pwrb_handle->pio_handle = task;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05304865
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304866 io_task->cmd_bhs->iscsi_hdr.itt = itt;
4867 return 0;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304868
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304869free_io_hndls:
4870 spin_lock(&phba->io_sgl_lock);
4871 free_io_sgl_handle(phba, io_task->psgl_handle);
4872 spin_unlock(&phba->io_sgl_lock);
4873 goto free_hndls;
4874free_mgmt_hndls:
4875 spin_lock(&phba->mgmt_sgl_lock);
4876 free_mgmt_sgl_handle(phba, io_task->psgl_handle);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004877 io_task->psgl_handle = NULL;
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304878 spin_unlock(&phba->mgmt_sgl_lock);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304879free_hndls:
4880 phwi_ctrlr = phba->phwi_ctrlr;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07004881 cri_index = BE_GET_CRI_FROM_CID(
4882 beiscsi_conn->beiscsi_conn_cid);
4883 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +05304884 if (io_task->pwrb_handle)
4885 free_wrb_handle(phba, pwrb_context, io_task->pwrb_handle);
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304886 io_task->pwrb_handle = NULL;
4887 pci_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs,
4888 io_task->bhs_pa.u.a64.address);
Mike Christie1282ab72012-04-18 03:06:00 -05004889 io_task->cmd_bhs = NULL;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +05304890 return -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304891}
John Soni Jose09a10932012-10-20 04:44:23 +05304892int beiscsi_iotask_v2(struct iscsi_task *task, struct scatterlist *sg,
4893 unsigned int num_sg, unsigned int xferlen,
4894 unsigned int writedir)
4895{
4896
4897 struct beiscsi_io_task *io_task = task->dd_data;
4898 struct iscsi_conn *conn = task->conn;
4899 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4900 struct beiscsi_hba *phba = beiscsi_conn->phba;
4901 struct iscsi_wrb *pwrb = NULL;
4902 unsigned int doorbell = 0;
4903
4904 pwrb = io_task->pwrb_handle->pwrb;
John Soni Jose09a10932012-10-20 04:44:23 +05304905
4906 io_task->cmd_bhs->iscsi_hdr.exp_statsn = 0;
4907 io_task->bhs_len = sizeof(struct be_cmd_bhs);
4908
4909 if (writedir) {
4910 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, type, pwrb,
4911 INI_WR_CMD);
4912 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp, pwrb, 1);
4913 } else {
4914 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, type, pwrb,
4915 INI_RD_CMD);
4916 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, dsp, pwrb, 0);
4917 }
4918
4919 io_task->wrb_type = AMAP_GET_BITS(struct amap_iscsi_wrb_v2,
4920 type, pwrb);
4921
4922 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, lun, pwrb,
4923 cpu_to_be16(*(unsigned short *)
4924 &io_task->cmd_bhs->iscsi_hdr.lun));
4925 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, r2t_exp_dtl, pwrb, xferlen);
4926 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, wrb_idx, pwrb,
4927 io_task->pwrb_handle->wrb_index);
4928 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, cmdsn_itt, pwrb,
4929 be32_to_cpu(task->cmdsn));
4930 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sgl_idx, pwrb,
4931 io_task->psgl_handle->sgl_index);
4932
4933 hwi_write_sgl_v2(pwrb, sg, num_sg, io_task);
4934 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, pwrb,
John Soni Jose340c99e2015-08-20 04:44:30 +05304935 io_task->pwrb_handle->wrb_index);
4936 if (io_task->pwrb_context->plast_wrb)
4937 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb,
4938 io_task->pwrb_context->plast_wrb,
4939 io_task->pwrb_handle->wrb_index);
4940 io_task->pwrb_context->plast_wrb = pwrb;
John Soni Jose09a10932012-10-20 04:44:23 +05304941
4942 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb));
4943
4944 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
4945 doorbell |= (io_task->pwrb_handle->wrb_index &
4946 DB_DEF_PDU_WRB_INDEX_MASK) <<
4947 DB_DEF_PDU_WRB_INDEX_SHIFT;
4948 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -07004949 iowrite32(doorbell, phba->db_va +
4950 beiscsi_conn->doorbell_offset);
John Soni Jose09a10932012-10-20 04:44:23 +05304951 return 0;
4952}
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304953
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304954static int beiscsi_iotask(struct iscsi_task *task, struct scatterlist *sg,
4955 unsigned int num_sg, unsigned int xferlen,
4956 unsigned int writedir)
4957{
4958
4959 struct beiscsi_io_task *io_task = task->dd_data;
4960 struct iscsi_conn *conn = task->conn;
4961 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
4962 struct beiscsi_hba *phba = beiscsi_conn->phba;
4963 struct iscsi_wrb *pwrb = NULL;
4964 unsigned int doorbell = 0;
4965
4966 pwrb = io_task->pwrb_handle->pwrb;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304967 io_task->cmd_bhs->iscsi_hdr.exp_statsn = 0;
4968 io_task->bhs_len = sizeof(struct be_cmd_bhs);
4969
4970 if (writedir) {
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304971 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
4972 INI_WR_CMD);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304973 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 1);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304974 } else {
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05304975 AMAP_SET_BITS(struct amap_iscsi_wrb, type, pwrb,
4976 INI_RD_CMD);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304977 AMAP_SET_BITS(struct amap_iscsi_wrb, dsp, pwrb, 0);
4978 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304979
John Soni Jose09a10932012-10-20 04:44:23 +05304980 io_task->wrb_type = AMAP_GET_BITS(struct amap_iscsi_wrb,
4981 type, pwrb);
4982
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304983 AMAP_SET_BITS(struct amap_iscsi_wrb, lun, pwrb,
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -05004984 cpu_to_be16(*(unsigned short *)
4985 &io_task->cmd_bhs->iscsi_hdr.lun));
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304986 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb, xferlen);
4987 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb,
4988 io_task->pwrb_handle->wrb_index);
4989 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb,
4990 be32_to_cpu(task->cmdsn));
4991 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb,
4992 io_task->psgl_handle->sgl_index);
4993
4994 hwi_write_sgl(pwrb, sg, num_sg, io_task);
4995
4996 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb,
John Soni Jose340c99e2015-08-20 04:44:30 +05304997 io_task->pwrb_handle->wrb_index);
4998 if (io_task->pwrb_context->plast_wrb)
4999 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb,
5000 io_task->pwrb_context->plast_wrb,
5001 io_task->pwrb_handle->wrb_index);
5002 io_task->pwrb_context->plast_wrb = pwrb;
5003
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305004 be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb));
5005
5006 doorbell |= beiscsi_conn->beiscsi_conn_cid & DB_WRB_POST_CID_MASK;
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05305007 doorbell |= (io_task->pwrb_handle->wrb_index &
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305008 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT;
5009 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
5010
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -07005011 iowrite32(doorbell, phba->db_va +
5012 beiscsi_conn->doorbell_offset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305013 return 0;
5014}
5015
5016static int beiscsi_mtask(struct iscsi_task *task)
5017{
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05305018 struct beiscsi_io_task *io_task = task->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305019 struct iscsi_conn *conn = task->conn;
5020 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
5021 struct beiscsi_hba *phba = beiscsi_conn->phba;
5022 struct iscsi_wrb *pwrb = NULL;
5023 unsigned int doorbell = 0;
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05305024 unsigned int cid;
John Soni Jose09a10932012-10-20 04:44:23 +05305025 unsigned int pwrb_typeoffset = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305026
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305027 cid = beiscsi_conn->beiscsi_conn_cid;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305028 pwrb = io_task->pwrb_handle->pwrb;
Jayamohan Kallickalcaf818f2010-01-23 05:38:18 +05305029 memset(pwrb, 0, sizeof(*pwrb));
John Soni Jose09a10932012-10-20 04:44:23 +05305030
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07005031 if (is_chip_be2_be3r(phba)) {
John Soni Jose09a10932012-10-20 04:44:23 +05305032 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb,
5033 be32_to_cpu(task->cmdsn));
5034 AMAP_SET_BITS(struct amap_iscsi_wrb, wrb_idx, pwrb,
5035 io_task->pwrb_handle->wrb_index);
5036 AMAP_SET_BITS(struct amap_iscsi_wrb, sgl_icd_idx, pwrb,
5037 io_task->psgl_handle->sgl_index);
5038 AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb,
5039 task->data_count);
5040 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb,
John Soni Jose340c99e2015-08-20 04:44:30 +05305041 io_task->pwrb_handle->wrb_index);
5042 if (io_task->pwrb_context->plast_wrb)
5043 AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb,
5044 io_task->pwrb_context->plast_wrb,
5045 io_task->pwrb_handle->wrb_index);
5046 io_task->pwrb_context->plast_wrb = pwrb;
5047
John Soni Jose09a10932012-10-20 04:44:23 +05305048 pwrb_typeoffset = BE_WRB_TYPE_OFFSET;
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07005049 } else {
5050 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, cmdsn_itt, pwrb,
5051 be32_to_cpu(task->cmdsn));
5052 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, wrb_idx, pwrb,
5053 io_task->pwrb_handle->wrb_index);
5054 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, sgl_idx, pwrb,
5055 io_task->psgl_handle->sgl_index);
5056 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, r2t_exp_dtl, pwrb,
5057 task->data_count);
5058 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb, pwrb,
John Soni Jose340c99e2015-08-20 04:44:30 +05305059 io_task->pwrb_handle->wrb_index);
5060 if (io_task->pwrb_context->plast_wrb)
5061 AMAP_SET_BITS(struct amap_iscsi_wrb_v2, ptr2nextwrb,
5062 io_task->pwrb_context->plast_wrb,
5063 io_task->pwrb_handle->wrb_index);
5064 io_task->pwrb_context->plast_wrb = pwrb;
5065
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07005066 pwrb_typeoffset = SKH_WRB_TYPE_OFFSET;
John Soni Jose09a10932012-10-20 04:44:23 +05305067 }
5068
Jayamohan Kallickaldafab8e2010-02-20 08:03:56 +05305069
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305070 switch (task->hdr->opcode & ISCSI_OPCODE_MASK) {
5071 case ISCSI_OP_LOGIN:
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305072 AMAP_SET_BITS(struct amap_iscsi_wrb, cmdsn_itt, pwrb, 1);
John Soni Jose09a10932012-10-20 04:44:23 +05305073 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305074 hwi_write_buffer(pwrb, task);
5075 break;
5076 case ISCSI_OP_NOOP_OUT:
Jayamohan Kallickal1390b012011-03-25 14:24:01 -07005077 if (task->hdr->ttt != ISCSI_RESERVED_TAG) {
John Soni Jose09a10932012-10-20 04:44:23 +05305078 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07005079 if (is_chip_be2_be3r(phba))
5080 AMAP_SET_BITS(struct amap_iscsi_wrb,
John Soni Jose09a10932012-10-20 04:44:23 +05305081 dmsg, pwrb, 1);
5082 else
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07005083 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
John Soni Jose09a10932012-10-20 04:44:23 +05305084 dmsg, pwrb, 1);
Jayamohan Kallickal1390b012011-03-25 14:24:01 -07005085 } else {
John Soni Jose09a10932012-10-20 04:44:23 +05305086 ADAPTER_SET_WRB_TYPE(pwrb, INI_RD_CMD, pwrb_typeoffset);
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07005087 if (is_chip_be2_be3r(phba))
5088 AMAP_SET_BITS(struct amap_iscsi_wrb,
John Soni Jose09a10932012-10-20 04:44:23 +05305089 dmsg, pwrb, 0);
5090 else
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07005091 AMAP_SET_BITS(struct amap_iscsi_wrb_v2,
John Soni Jose09a10932012-10-20 04:44:23 +05305092 dmsg, pwrb, 0);
Jayamohan Kallickal1390b012011-03-25 14:24:01 -07005093 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305094 hwi_write_buffer(pwrb, task);
5095 break;
5096 case ISCSI_OP_TEXT:
John Soni Jose09a10932012-10-20 04:44:23 +05305097 ADAPTER_SET_WRB_TYPE(pwrb, TGT_DM_CMD, pwrb_typeoffset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305098 hwi_write_buffer(pwrb, task);
5099 break;
5100 case ISCSI_OP_SCSI_TMFUNC:
John Soni Jose09a10932012-10-20 04:44:23 +05305101 ADAPTER_SET_WRB_TYPE(pwrb, INI_TMF_CMD, pwrb_typeoffset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305102 hwi_write_buffer(pwrb, task);
5103 break;
5104 case ISCSI_OP_LOGOUT:
John Soni Jose09a10932012-10-20 04:44:23 +05305105 ADAPTER_SET_WRB_TYPE(pwrb, HWH_TYPE_LOGOUT, pwrb_typeoffset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305106 hwi_write_buffer(pwrb, task);
5107 break;
5108
5109 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +05305110 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
5111 "BM_%d : opcode =%d Not supported\n",
5112 task->hdr->opcode & ISCSI_OPCODE_MASK);
5113
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305114 return -EINVAL;
5115 }
5116
John Soni Jose09a10932012-10-20 04:44:23 +05305117 /* Set the task type */
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -07005118 io_task->wrb_type = (is_chip_be2_be3r(phba)) ?
5119 AMAP_GET_BITS(struct amap_iscsi_wrb, type, pwrb) :
5120 AMAP_GET_BITS(struct amap_iscsi_wrb_v2, type, pwrb);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305121
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305122 doorbell |= cid & DB_WRB_POST_CID_MASK;
Jayamohan Kallickal32951dd2010-01-23 05:34:24 +05305123 doorbell |= (io_task->pwrb_handle->wrb_index &
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305124 DB_DEF_PDU_WRB_INDEX_MASK) << DB_DEF_PDU_WRB_INDEX_SHIFT;
5125 doorbell |= 1 << DB_DEF_PDU_NUM_POSTED_SHIFT;
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -07005126 iowrite32(doorbell, phba->db_va +
5127 beiscsi_conn->doorbell_offset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305128 return 0;
5129}
5130
5131static int beiscsi_task_xmit(struct iscsi_task *task)
5132{
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305133 struct beiscsi_io_task *io_task = task->dd_data;
5134 struct scsi_cmnd *sc = task->sc;
John Soni Jose09a10932012-10-20 04:44:23 +05305135 struct beiscsi_hba *phba = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305136 struct scatterlist *sg;
5137 int num_sg;
5138 unsigned int writedir = 0, xferlen = 0;
5139
John Soni Jose09a10932012-10-20 04:44:23 +05305140 phba = ((struct beiscsi_conn *)task->conn->dd_data)->phba;
5141
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305142 if (!sc)
5143 return beiscsi_mtask(task);
5144
5145 io_task->scsi_cmnd = sc;
5146 num_sg = scsi_dma_map(sc);
5147 if (num_sg < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305148 struct iscsi_conn *conn = task->conn;
5149 struct beiscsi_hba *phba = NULL;
5150
5151 phba = ((struct beiscsi_conn *)conn->dd_data)->phba;
Jayamohan Kallickalafb96052013-09-28 15:35:55 -07005152 beiscsi_log(phba, KERN_ERR,
5153 BEISCSI_LOG_IO | BEISCSI_LOG_ISCSI,
5154 "BM_%d : scsi_dma_map Failed "
5155 "Driver_ITT : 0x%x ITT : 0x%x Xferlen : 0x%x\n",
5156 be32_to_cpu(io_task->cmd_bhs->iscsi_hdr.itt),
5157 io_task->libiscsi_itt, scsi_bufflen(sc));
John Soni Jose99bc5d52012-08-20 23:00:18 +05305158
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305159 return num_sg;
5160 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305161 xferlen = scsi_bufflen(sc);
5162 sg = scsi_sglist(sc);
John Soni Jose99bc5d52012-08-20 23:00:18 +05305163 if (sc->sc_data_direction == DMA_TO_DEVICE)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305164 writedir = 1;
John Soni Jose99bc5d52012-08-20 23:00:18 +05305165 else
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305166 writedir = 0;
John Soni Jose99bc5d52012-08-20 23:00:18 +05305167
John Soni Jose09a10932012-10-20 04:44:23 +05305168 return phba->iotask_fn(task, sg, num_sg, xferlen, writedir);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305169}
5170
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05005171/**
5172 * beiscsi_bsg_request - handle bsg request from ISCSI transport
5173 * @job: job to handle
5174 */
5175static int beiscsi_bsg_request(struct bsg_job *job)
5176{
5177 struct Scsi_Host *shost;
5178 struct beiscsi_hba *phba;
5179 struct iscsi_bsg_request *bsg_req = job->request;
5180 int rc = -EINVAL;
5181 unsigned int tag;
5182 struct be_dma_mem nonemb_cmd;
5183 struct be_cmd_resp_hdr *resp;
5184 struct iscsi_bsg_reply *bsg_reply = job->reply;
5185 unsigned short status, extd_status;
5186
5187 shost = iscsi_job_to_shost(job);
5188 phba = iscsi_host_priv(shost);
5189
5190 switch (bsg_req->msgcode) {
5191 case ISCSI_BSG_HST_VENDOR:
5192 nonemb_cmd.va = pci_alloc_consistent(phba->ctrl.pdev,
5193 job->request_payload.payload_len,
5194 &nonemb_cmd.dma);
5195 if (nonemb_cmd.va == NULL) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305196 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
5197 "BM_%d : Failed to allocate memory for "
5198 "beiscsi_bsg_request\n");
John Soni Jose8359c792012-10-20 04:43:03 +05305199 return -ENOMEM;
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05005200 }
5201 tag = mgmt_vendor_specific_fw_cmd(&phba->ctrl, phba, job,
5202 &nonemb_cmd);
5203 if (!tag) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305204 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
John Soni Jose8359c792012-10-20 04:43:03 +05305205 "BM_%d : MBX Tag Allocation Failed\n");
John Soni Jose99bc5d52012-08-20 23:00:18 +05305206
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05005207 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
5208 nonemb_cmd.va, nonemb_cmd.dma);
5209 return -EAGAIN;
John Soni Josee175def2012-10-20 04:45:40 +05305210 }
5211
5212 rc = wait_event_interruptible_timeout(
5213 phba->ctrl.mcc_wait[tag],
5214 phba->ctrl.mcc_numtag[tag],
5215 msecs_to_jiffies(
5216 BEISCSI_HOST_MBX_TIMEOUT));
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05005217 extd_status = (phba->ctrl.mcc_numtag[tag] & 0x0000FF00) >> 8;
5218 status = phba->ctrl.mcc_numtag[tag] & 0x000000FF;
5219 free_mcc_tag(&phba->ctrl, tag);
5220 resp = (struct be_cmd_resp_hdr *)nonemb_cmd.va;
5221 sg_copy_from_buffer(job->reply_payload.sg_list,
5222 job->reply_payload.sg_cnt,
5223 nonemb_cmd.va, (resp->response_length
5224 + sizeof(*resp)));
5225 bsg_reply->reply_payload_rcv_len = resp->response_length;
5226 bsg_reply->result = status;
5227 bsg_job_done(job, bsg_reply->result,
5228 bsg_reply->reply_payload_rcv_len);
5229 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
5230 nonemb_cmd.va, nonemb_cmd.dma);
5231 if (status || extd_status) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305232 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
John Soni Jose8359c792012-10-20 04:43:03 +05305233 "BM_%d : MBX Cmd Failed"
John Soni Jose99bc5d52012-08-20 23:00:18 +05305234 " status = %d extd_status = %d\n",
5235 status, extd_status);
5236
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05005237 return -EIO;
John Soni Jose8359c792012-10-20 04:43:03 +05305238 } else {
5239 rc = 0;
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05005240 }
5241 break;
5242
5243 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +05305244 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
5245 "BM_%d : Unsupported bsg command: 0x%x\n",
5246 bsg_req->msgcode);
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05005247 break;
5248 }
5249
5250 return rc;
5251}
5252
John Soni Jose99bc5d52012-08-20 23:00:18 +05305253void beiscsi_hba_attrs_init(struct beiscsi_hba *phba)
5254{
5255 /* Set the logging parameter */
5256 beiscsi_log_enable_init(phba, beiscsi_log_enable);
5257}
5258
John Soni Jose4d4d1ef2012-10-20 04:42:37 +05305259/*
5260 * beiscsi_quiesce()- Cleanup Driver resources
5261 * @phba: Instance Priv structure
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005262 * @unload_state:i Clean or EEH unload state
John Soni Jose4d4d1ef2012-10-20 04:42:37 +05305263 *
5264 * Free the OS and HW resources held by the driver
5265 **/
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005266static void beiscsi_quiesce(struct beiscsi_hba *phba,
5267 uint32_t unload_state)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305268{
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305269 struct hwi_controller *phwi_ctrlr;
5270 struct hwi_context_memory *phwi_context;
5271 struct be_eq_obj *pbe_eq;
5272 unsigned int i, msix_vec;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305273
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305274 phwi_ctrlr = phba->phwi_ctrlr;
5275 phwi_context = phwi_ctrlr->phwi_ctxt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305276 hwi_disable_intr(phba);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305277 if (phba->msix_enabled) {
5278 for (i = 0; i <= phba->num_cpus; i++) {
5279 msix_vec = phba->msix_entries[i].vector;
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005280 synchronize_irq(msix_vec);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305281 free_irq(msix_vec, &phwi_context->be_eq[i]);
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -07005282 kfree(phba->msi_name[i]);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305283 }
5284 } else
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005285 if (phba->pcidev->irq) {
5286 synchronize_irq(phba->pcidev->irq);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305287 free_irq(phba->pcidev->irq, phba);
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005288 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305289 pci_disable_msix(phba->pcidev);
John Soni Jose53281ed2014-09-26 15:13:55 -04005290 cancel_delayed_work_sync(&phba->beiscsi_hw_check_task);
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005291
Jens Axboe89f8b332014-03-13 09:38:42 -06005292 for (i = 0; i < phba->num_cpus; i++) {
5293 pbe_eq = &phwi_context->be_eq[i];
Christoph Hellwig511cbce2015-11-10 14:56:14 +01005294 irq_poll_disable(&pbe_eq->iopoll);
Jens Axboe89f8b332014-03-13 09:38:42 -06005295 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305296
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005297 if (unload_state == BEISCSI_CLEAN_UNLOAD) {
5298 destroy_workqueue(phba->wq);
5299 beiscsi_clean_port(phba);
5300 beiscsi_free_mem(phba);
Jayamohan Kallickale9b91192010-07-22 04:24:53 +05305301
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005302 beiscsi_unmap_pci_function(phba);
5303 pci_free_consistent(phba->pcidev,
5304 phba->ctrl.mbox_mem_alloced.size,
5305 phba->ctrl.mbox_mem_alloced.va,
5306 phba->ctrl.mbox_mem_alloced.dma);
5307 } else {
5308 hwi_purge_eq(phba);
5309 hwi_cleanup(phba);
5310 }
John Soni Jose7a158002012-10-20 04:45:51 +05305311
Jayamohan Kallickal25602c92011-08-22 10:08:28 -07005312}
5313
5314static void beiscsi_remove(struct pci_dev *pcidev)
5315{
5316
5317 struct beiscsi_hba *phba = NULL;
5318
5319 phba = pci_get_drvdata(pcidev);
5320 if (!phba) {
5321 dev_err(&pcidev->dev, "beiscsi_remove called with no phba\n");
5322 return;
5323 }
5324
Mike Christie0e438952012-04-03 23:41:51 -05005325 beiscsi_destroy_def_ifaces(phba);
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005326 beiscsi_quiesce(phba, BEISCSI_CLEAN_UNLOAD);
Mike Christie9d045162011-06-24 15:11:52 -05005327 iscsi_boot_destroy_kset(phba->boot_kset);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305328 iscsi_host_remove(phba->shost);
5329 pci_dev_put(phba->pcidev);
5330 iscsi_host_free(phba->shost);
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005331 pci_disable_pcie_error_reporting(pcidev);
5332 pci_set_drvdata(pcidev, NULL);
John Soni Josee307f3a2015-04-25 08:17:19 +05305333 pci_release_regions(pcidev);
Jayamohan Kallickal8dce69f2011-08-22 10:08:29 -07005334 pci_disable_device(pcidev);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305335}
5336
Jayamohan Kallickal25602c92011-08-22 10:08:28 -07005337static void beiscsi_shutdown(struct pci_dev *pcidev)
5338{
5339
5340 struct beiscsi_hba *phba = NULL;
5341
5342 phba = (struct beiscsi_hba *)pci_get_drvdata(pcidev);
5343 if (!phba) {
5344 dev_err(&pcidev->dev, "beiscsi_shutdown called with no phba\n");
5345 return;
5346 }
5347
Jayamohan Kallickal9343be72014-01-29 02:16:43 -05005348 phba->state = BE_ADAPTER_STATE_SHUTDOWN;
5349 iscsi_host_for_each_session(phba->shost, be2iscsi_fail_session);
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005350 beiscsi_quiesce(phba, BEISCSI_CLEAN_UNLOAD);
Jayamohan Kallickal8dce69f2011-08-22 10:08:29 -07005351 pci_disable_device(pcidev);
Jayamohan Kallickal25602c92011-08-22 10:08:28 -07005352}
5353
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305354static void beiscsi_msix_enable(struct beiscsi_hba *phba)
5355{
5356 int i, status;
5357
5358 for (i = 0; i <= phba->num_cpus; i++)
5359 phba->msix_entries[i].entry = i;
5360
Alexander Gordeeve149fc12014-08-18 08:01:48 +02005361 status = pci_enable_msix_range(phba->pcidev, phba->msix_entries,
5362 phba->num_cpus + 1, phba->num_cpus + 1);
5363 if (status > 0)
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305364 phba->msix_enabled = true;
5365
5366 return;
5367}
5368
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04005369static void be_eqd_update(struct beiscsi_hba *phba)
5370{
5371 struct be_set_eqd set_eqd[MAX_CPUS];
5372 struct be_aic_obj *aic;
5373 struct be_eq_obj *pbe_eq;
5374 struct hwi_controller *phwi_ctrlr;
5375 struct hwi_context_memory *phwi_context;
5376 int eqd, i, num = 0;
5377 ulong now;
5378 u32 pps, delta;
5379 unsigned int tag;
5380
5381 phwi_ctrlr = phba->phwi_ctrlr;
5382 phwi_context = phwi_ctrlr->phwi_ctxt;
5383
5384 for (i = 0; i <= phba->num_cpus; i++) {
5385 aic = &phba->aic_obj[i];
5386 pbe_eq = &phwi_context->be_eq[i];
5387 now = jiffies;
5388 if (!aic->jiffs || time_before(now, aic->jiffs) ||
5389 pbe_eq->cq_count < aic->eq_prev) {
5390 aic->jiffs = now;
5391 aic->eq_prev = pbe_eq->cq_count;
5392 continue;
5393 }
5394 delta = jiffies_to_msecs(now - aic->jiffs);
5395 pps = (((u32)(pbe_eq->cq_count - aic->eq_prev) * 1000) / delta);
5396 eqd = (pps / 1500) << 2;
5397
5398 if (eqd < 8)
5399 eqd = 0;
5400 eqd = min_t(u32, eqd, phwi_context->max_eqd);
5401 eqd = max_t(u32, eqd, phwi_context->min_eqd);
5402
5403 aic->jiffs = now;
5404 aic->eq_prev = pbe_eq->cq_count;
5405
5406 if (eqd != aic->prev_eqd) {
5407 set_eqd[num].delay_multiplier = (eqd * 65)/100;
5408 set_eqd[num].eq_id = pbe_eq->q.id;
5409 aic->prev_eqd = eqd;
5410 num++;
5411 }
5412 }
5413 if (num) {
5414 tag = be_cmd_modify_eq_delay(phba, set_eqd, num);
5415 if (tag)
5416 beiscsi_mccq_compl(phba, tag, NULL, NULL);
5417 }
5418}
5419
Jayamohan Kallickala3d313e2014-08-08 01:00:00 -04005420static void be_check_boot_session(struct beiscsi_hba *phba)
5421{
5422 if (beiscsi_setup_boot_info(phba))
5423 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5424 "BM_%d : Could not set up "
5425 "iSCSI boot info on async event.\n");
5426}
5427
John Soni Jose7a158002012-10-20 04:45:51 +05305428/*
5429 * beiscsi_hw_health_check()- Check adapter health
5430 * @work: work item to check HW health
5431 *
5432 * Check if adapter in an unrecoverable state or not.
5433 **/
5434static void
5435beiscsi_hw_health_check(struct work_struct *work)
5436{
5437 struct beiscsi_hba *phba =
5438 container_of(work, struct beiscsi_hba,
5439 beiscsi_hw_check_task.work);
5440
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -04005441 be_eqd_update(phba);
5442
Jayamohan Kallickala3d313e2014-08-08 01:00:00 -04005443 if (phba->state & BE_ADAPTER_CHECK_BOOT) {
John Soni Jose3efde862015-04-25 08:16:57 +05305444 if ((phba->get_boot > 0) && (!phba->boot_kset)) {
5445 phba->get_boot--;
5446 if (!(phba->get_boot % BE_GET_BOOT_TO))
5447 be_check_boot_session(phba);
5448 } else {
5449 phba->state &= ~BE_ADAPTER_CHECK_BOOT;
5450 phba->get_boot = 0;
5451 }
Jayamohan Kallickala3d313e2014-08-08 01:00:00 -04005452 }
5453
John Soni Jose7a158002012-10-20 04:45:51 +05305454 beiscsi_ue_detect(phba);
5455
5456 schedule_delayed_work(&phba->beiscsi_hw_check_task,
5457 msecs_to_jiffies(1000));
5458}
5459
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005460
5461static pci_ers_result_t beiscsi_eeh_err_detected(struct pci_dev *pdev,
5462 pci_channel_state_t state)
5463{
5464 struct beiscsi_hba *phba = NULL;
5465
5466 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev);
5467 phba->state |= BE_ADAPTER_PCI_ERR;
5468
5469 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5470 "BM_%d : EEH error detected\n");
5471
5472 beiscsi_quiesce(phba, BEISCSI_EEH_UNLOAD);
5473
5474 if (state == pci_channel_io_perm_failure) {
5475 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5476 "BM_%d : EEH : State PERM Failure");
5477 return PCI_ERS_RESULT_DISCONNECT;
5478 }
5479
5480 pci_disable_device(pdev);
5481
5482 /* The error could cause the FW to trigger a flash debug dump.
5483 * Resetting the card while flash dump is in progress
5484 * can cause it not to recover; wait for it to finish.
5485 * Wait only for first function as it is needed only once per
5486 * adapter.
5487 **/
5488 if (pdev->devfn == 0)
5489 ssleep(30);
5490
5491 return PCI_ERS_RESULT_NEED_RESET;
5492}
5493
5494static pci_ers_result_t beiscsi_eeh_reset(struct pci_dev *pdev)
5495{
5496 struct beiscsi_hba *phba = NULL;
5497 int status = 0;
5498
5499 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev);
5500
5501 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5502 "BM_%d : EEH Reset\n");
5503
5504 status = pci_enable_device(pdev);
5505 if (status)
5506 return PCI_ERS_RESULT_DISCONNECT;
5507
5508 pci_set_master(pdev);
5509 pci_set_power_state(pdev, PCI_D0);
5510 pci_restore_state(pdev);
5511
5512 /* Wait for the CHIP Reset to complete */
5513 status = be_chk_reset_complete(phba);
5514 if (!status) {
5515 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
5516 "BM_%d : EEH Reset Completed\n");
5517 } else {
5518 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
5519 "BM_%d : EEH Reset Completion Failure\n");
5520 return PCI_ERS_RESULT_DISCONNECT;
5521 }
5522
5523 pci_cleanup_aer_uncorrect_error_status(pdev);
5524 return PCI_ERS_RESULT_RECOVERED;
5525}
5526
5527static void beiscsi_eeh_resume(struct pci_dev *pdev)
5528{
5529 int ret = 0, i;
5530 struct be_eq_obj *pbe_eq;
5531 struct beiscsi_hba *phba = NULL;
5532 struct hwi_controller *phwi_ctrlr;
5533 struct hwi_context_memory *phwi_context;
5534
5535 phba = (struct beiscsi_hba *)pci_get_drvdata(pdev);
5536 pci_save_state(pdev);
5537
5538 if (enable_msix)
5539 find_num_cpus(phba);
5540 else
5541 phba->num_cpus = 1;
5542
5543 if (enable_msix) {
5544 beiscsi_msix_enable(phba);
5545 if (!phba->msix_enabled)
5546 phba->num_cpus = 1;
5547 }
5548
5549 ret = beiscsi_cmd_reset_function(phba);
5550 if (ret) {
5551 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5552 "BM_%d : Reset Failed\n");
5553 goto ret_err;
5554 }
5555
5556 ret = be_chk_reset_complete(phba);
5557 if (ret) {
5558 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5559 "BM_%d : Failed to get out of reset.\n");
5560 goto ret_err;
5561 }
5562
5563 beiscsi_get_params(phba);
5564 phba->shost->max_id = phba->params.cxns_per_ctrl;
5565 phba->shost->can_queue = phba->params.ios_per_ctrl;
5566 ret = hwi_init_controller(phba);
5567
5568 for (i = 0; i < MAX_MCC_CMD; i++) {
5569 init_waitqueue_head(&phba->ctrl.mcc_wait[i + 1]);
5570 phba->ctrl.mcc_tag[i] = i + 1;
5571 phba->ctrl.mcc_numtag[i + 1] = 0;
5572 phba->ctrl.mcc_tag_available++;
5573 }
5574
5575 phwi_ctrlr = phba->phwi_ctrlr;
5576 phwi_context = phwi_ctrlr->phwi_ctxt;
5577
Jens Axboe89f8b332014-03-13 09:38:42 -06005578 for (i = 0; i < phba->num_cpus; i++) {
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005579 pbe_eq = &phwi_context->be_eq[i];
Christoph Hellwig511cbce2015-11-10 14:56:14 +01005580 irq_poll_init(&pbe_eq->iopoll, be_iopoll_budget,
Jens Axboe89f8b332014-03-13 09:38:42 -06005581 be_iopoll);
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005582 }
5583
Jens Axboe89f8b332014-03-13 09:38:42 -06005584 i = (phba->msix_enabled) ? i : 0;
5585 /* Work item for MCC handling */
5586 pbe_eq = &phwi_context->be_eq[i];
5587 INIT_WORK(&pbe_eq->work_cqs, beiscsi_process_all_cqs);
5588
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005589 ret = beiscsi_init_irqs(phba);
5590 if (ret < 0) {
5591 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5592 "BM_%d : beiscsi_eeh_resume - "
5593 "Failed to beiscsi_init_irqs\n");
5594 goto ret_err;
5595 }
5596
5597 hwi_enable_intr(phba);
5598 phba->state &= ~BE_ADAPTER_PCI_ERR;
5599
5600 return;
5601ret_err:
5602 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5603 "BM_%d : AER EEH Resume Failed\n");
5604}
5605
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08005606static int beiscsi_dev_probe(struct pci_dev *pcidev,
5607 const struct pci_device_id *id)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305608{
5609 struct beiscsi_hba *phba = NULL;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305610 struct hwi_controller *phwi_ctrlr;
5611 struct hwi_context_memory *phwi_context;
5612 struct be_eq_obj *pbe_eq;
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005613 int ret = 0, i;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305614
5615 ret = beiscsi_enable_pci(pcidev);
5616 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305617 dev_err(&pcidev->dev,
5618 "beiscsi_dev_probe - Failed to enable pci device\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305619 return ret;
5620 }
5621
5622 phba = beiscsi_hba_alloc(pcidev);
5623 if (!phba) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305624 dev_err(&pcidev->dev,
5625 "beiscsi_dev_probe - Failed in beiscsi_hba_alloc\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305626 goto disable_pci;
5627 }
5628
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005629 /* Enable EEH reporting */
5630 ret = pci_enable_pcie_error_reporting(pcidev);
5631 if (ret)
5632 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_INIT,
5633 "BM_%d : PCIe Error Reporting "
5634 "Enabling Failed\n");
5635
5636 pci_save_state(pcidev);
5637
John Soni Jose99bc5d52012-08-20 23:00:18 +05305638 /* Initialize Driver configuration Paramters */
5639 beiscsi_hba_attrs_init(phba);
5640
John Soni Josee175def2012-10-20 04:45:40 +05305641 phba->fw_timeout = false;
Jayamohan Kallickal6c831852013-09-28 15:35:40 -07005642 phba->mac_addr_set = false;
John Soni Josee175def2012-10-20 04:45:40 +05305643
5644
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +05305645 switch (pcidev->device) {
5646 case BE_DEVICE_ID1:
5647 case OC_DEVICE_ID1:
5648 case OC_DEVICE_ID2:
5649 phba->generation = BE_GEN2;
John Soni Jose09a10932012-10-20 04:44:23 +05305650 phba->iotask_fn = beiscsi_iotask;
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +05305651 break;
5652 case BE_DEVICE_ID2:
5653 case OC_DEVICE_ID3:
5654 phba->generation = BE_GEN3;
John Soni Jose09a10932012-10-20 04:44:23 +05305655 phba->iotask_fn = beiscsi_iotask;
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +05305656 break;
John Soni Jose139a1b12012-10-20 04:43:20 +05305657 case OC_SKH_ID1:
5658 phba->generation = BE_GEN4;
John Soni Jose09a10932012-10-20 04:44:23 +05305659 phba->iotask_fn = beiscsi_iotask_v2;
Jayamohan Kallickalbf9131c2013-04-05 20:38:24 -07005660 break;
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +05305661 default:
5662 phba->generation = 0;
5663 }
5664
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305665 ret = be_ctrl_init(phba, pcidev);
5666 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305667 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5668 "BM_%d : beiscsi_dev_probe-"
5669 "Failed in be_ctrl_init\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305670 goto hba_free;
5671 }
5672
John Soni Jose4d4d1ef2012-10-20 04:42:37 +05305673 ret = beiscsi_cmd_reset_function(phba);
5674 if (ret) {
5675 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jayamohan Kallickal92665a62013-09-28 15:35:43 -07005676 "BM_%d : Reset Failed\n");
John Soni Jose4d4d1ef2012-10-20 04:42:37 +05305677 goto hba_free;
5678 }
5679 ret = be_chk_reset_complete(phba);
5680 if (ret) {
5681 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
Jayamohan Kallickal92665a62013-09-28 15:35:43 -07005682 "BM_%d : Failed to get out of reset.\n");
John Soni Jose4d4d1ef2012-10-20 04:42:37 +05305683 goto hba_free;
Jayamohan Kallickale9b91192010-07-22 04:24:53 +05305684 }
5685
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305686 spin_lock_init(&phba->io_sgl_lock);
5687 spin_lock_init(&phba->mgmt_sgl_lock);
5688 spin_lock_init(&phba->isr_lock);
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -07005689 spin_lock_init(&phba->async_pdu_lock);
Jayamohan Kallickal7da50872010-01-05 05:04:12 +05305690 ret = mgmt_get_fw_config(&phba->ctrl, phba);
5691 if (ret != 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305692 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5693 "BM_%d : Error getting fw config\n");
Jayamohan Kallickal7da50872010-01-05 05:04:12 +05305694 goto free_port;
5695 }
Jayamohan Kallickal68c26a32013-09-28 15:35:54 -07005696
5697 if (enable_msix)
5698 find_num_cpus(phba);
5699 else
5700 phba->num_cpus = 1;
5701
5702 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
5703 "BM_%d : num_cpus = %d\n",
5704 phba->num_cpus);
5705
5706 if (enable_msix) {
5707 beiscsi_msix_enable(phba);
5708 if (!phba->msix_enabled)
5709 phba->num_cpus = 1;
5710 }
5711
Jayamohan Kallickal843ae752013-09-28 15:35:44 -07005712 phba->shost->max_id = phba->params.cxns_per_ctrl;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305713 beiscsi_get_params(phba);
Jayamohan Kallickalaa874f02010-01-05 05:12:03 +05305714 phba->shost->can_queue = phba->params.ios_per_ctrl;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305715 ret = beiscsi_init_port(phba);
5716 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305717 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5718 "BM_%d : beiscsi_dev_probe-"
5719 "Failed in beiscsi_init_port\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305720 goto free_port;
5721 }
5722
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005723 for (i = 0; i < MAX_MCC_CMD; i++) {
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05305724 init_waitqueue_head(&phba->ctrl.mcc_wait[i + 1]);
5725 phba->ctrl.mcc_tag[i] = i + 1;
5726 phba->ctrl.mcc_numtag[i + 1] = 0;
5727 phba->ctrl.mcc_tag_available++;
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -05005728 memset(&phba->ctrl.ptag_state[i].tag_mem_state, 0,
Jayamohan Kallickal8fc01ea2014-05-05 21:41:28 -04005729 sizeof(struct be_dma_mem));
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05305730 }
5731
5732 phba->ctrl.mcc_alloc_index = phba->ctrl.mcc_free_index = 0;
5733
John Soni Jose72fb46a2012-10-20 04:42:49 +05305734 snprintf(phba->wq_name, sizeof(phba->wq_name), "beiscsi_%02x_wq",
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305735 phba->shost->host_no);
Kees Cookd8537542013-07-03 15:04:57 -07005736 phba->wq = alloc_workqueue("%s", WQ_MEM_RECLAIM, 1, phba->wq_name);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305737 if (!phba->wq) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305738 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5739 "BM_%d : beiscsi_dev_probe-"
5740 "Failed to allocate work queue\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305741 goto free_twq;
5742 }
5743
John Soni Jose7a158002012-10-20 04:45:51 +05305744 INIT_DELAYED_WORK(&phba->beiscsi_hw_check_task,
5745 beiscsi_hw_health_check);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305746
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305747 phwi_ctrlr = phba->phwi_ctrlr;
5748 phwi_context = phwi_ctrlr->phwi_ctxt;
John Soni Jose72fb46a2012-10-20 04:42:49 +05305749
Jens Axboe89f8b332014-03-13 09:38:42 -06005750 for (i = 0; i < phba->num_cpus; i++) {
John Soni Jose72fb46a2012-10-20 04:42:49 +05305751 pbe_eq = &phwi_context->be_eq[i];
Christoph Hellwig511cbce2015-11-10 14:56:14 +01005752 irq_poll_init(&pbe_eq->iopoll, be_iopoll_budget,
Jens Axboe89f8b332014-03-13 09:38:42 -06005753 be_iopoll);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305754 }
John Soni Jose72fb46a2012-10-20 04:42:49 +05305755
Jens Axboe89f8b332014-03-13 09:38:42 -06005756 i = (phba->msix_enabled) ? i : 0;
5757 /* Work item for MCC handling */
5758 pbe_eq = &phwi_context->be_eq[i];
5759 INIT_WORK(&pbe_eq->work_cqs, beiscsi_process_all_cqs);
5760
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305761 ret = beiscsi_init_irqs(phba);
5762 if (ret < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305763 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5764 "BM_%d : beiscsi_dev_probe-"
5765 "Failed to beiscsi_init_irqs\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305766 goto free_blkenbld;
5767 }
Jayamohan Kallickal238f6b72010-07-22 04:23:22 +05305768 hwi_enable_intr(phba);
Mike Christief457a462011-06-24 15:11:53 -05005769
Jayamohan Kallickal0598b8a2014-05-05 21:41:25 -04005770 if (iscsi_host_add(phba->shost, &phba->pcidev->dev))
5771 goto free_blkenbld;
5772
Mike Christief457a462011-06-24 15:11:53 -05005773 if (beiscsi_setup_boot_info(phba))
5774 /*
5775 * log error but continue, because we may not be using
5776 * iscsi boot.
5777 */
John Soni Jose99bc5d52012-08-20 23:00:18 +05305778 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT,
5779 "BM_%d : Could not set up "
5780 "iSCSI boot info.\n");
Mike Christief457a462011-06-24 15:11:53 -05005781
Mike Christie0e438952012-04-03 23:41:51 -05005782 beiscsi_create_def_ifaces(phba);
John Soni Jose7a158002012-10-20 04:45:51 +05305783 schedule_delayed_work(&phba->beiscsi_hw_check_task,
5784 msecs_to_jiffies(1000));
5785
John Soni Jose99bc5d52012-08-20 23:00:18 +05305786 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT,
5787 "\n\n\n BM_%d : SUCCESS - DRIVER LOADED\n\n\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305788 return 0;
5789
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305790free_blkenbld:
5791 destroy_workqueue(phba->wq);
Jens Axboe89f8b332014-03-13 09:38:42 -06005792 for (i = 0; i < phba->num_cpus; i++) {
5793 pbe_eq = &phwi_context->be_eq[i];
Christoph Hellwig511cbce2015-11-10 14:56:14 +01005794 irq_poll_disable(&pbe_eq->iopoll);
Jens Axboe89f8b332014-03-13 09:38:42 -06005795 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305796free_twq:
5797 beiscsi_clean_port(phba);
5798 beiscsi_free_mem(phba);
5799free_port:
5800 pci_free_consistent(phba->pcidev,
5801 phba->ctrl.mbox_mem_alloced.size,
5802 phba->ctrl.mbox_mem_alloced.va,
5803 phba->ctrl.mbox_mem_alloced.dma);
5804 beiscsi_unmap_pci_function(phba);
5805hba_free:
Jayamohan Kallickal238f6b72010-07-22 04:23:22 +05305806 if (phba->msix_enabled)
5807 pci_disable_msix(phba->pcidev);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305808 pci_dev_put(phba->pcidev);
5809 iscsi_host_free(phba->shost);
John Soni Jose2e7cee02015-02-12 06:45:47 +05305810 pci_set_drvdata(pcidev, NULL);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305811disable_pci:
John Soni Josee307f3a2015-04-25 08:17:19 +05305812 pci_release_regions(pcidev);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305813 pci_disable_device(pcidev);
5814 return ret;
5815}
5816
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005817static struct pci_error_handlers beiscsi_eeh_handlers = {
5818 .error_detected = beiscsi_eeh_err_detected,
5819 .slot_reset = beiscsi_eeh_reset,
5820 .resume = beiscsi_eeh_resume,
5821};
5822
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305823struct iscsi_transport beiscsi_iscsi_transport = {
5824 .owner = THIS_MODULE,
5825 .name = DRV_NAME,
Jayamohan Kallickal9db0fb32010-01-05 05:12:43 +05305826 .caps = CAP_RECOVERY_L0 | CAP_HDRDGST | CAP_TEXT_NEGO |
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305827 CAP_MULTI_R2T | CAP_DATADGST | CAP_DATA_PATH_OFFLOAD,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305828 .create_session = beiscsi_session_create,
5829 .destroy_session = beiscsi_session_destroy,
5830 .create_conn = beiscsi_conn_create,
5831 .bind_conn = beiscsi_conn_bind,
5832 .destroy_conn = iscsi_conn_teardown,
Mike Christie3128c6c2011-07-25 13:48:42 -05005833 .attr_is_visible = be2iscsi_attr_is_visible,
Mike Christie0e438952012-04-03 23:41:51 -05005834 .set_iface_param = be2iscsi_iface_set_param,
5835 .get_iface_param = be2iscsi_iface_get_param,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305836 .set_param = beiscsi_set_param,
Mike Christiec7f7fd52011-02-16 15:04:41 -06005837 .get_conn_param = iscsi_conn_get_param,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305838 .get_session_param = iscsi_session_get_param,
5839 .get_host_param = beiscsi_get_host_param,
5840 .start_conn = beiscsi_conn_start,
Mike Christiefa95d202010-06-09 03:30:08 -05005841 .stop_conn = iscsi_conn_stop,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305842 .send_pdu = iscsi_conn_send_pdu,
5843 .xmit_task = beiscsi_task_xmit,
5844 .cleanup_task = beiscsi_cleanup_task,
5845 .alloc_pdu = beiscsi_alloc_pdu,
5846 .parse_pdu_itt = beiscsi_parse_pdu,
5847 .get_stats = beiscsi_conn_get_stats,
Mike Christiec7f7fd52011-02-16 15:04:41 -06005848 .get_ep_param = beiscsi_ep_get_param,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305849 .ep_connect = beiscsi_ep_connect,
5850 .ep_poll = beiscsi_ep_poll,
5851 .ep_disconnect = beiscsi_ep_disconnect,
5852 .session_recovery_timedout = iscsi_session_recovery_timedout,
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -05005853 .bsg_request = beiscsi_bsg_request,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305854};
5855
5856static struct pci_driver beiscsi_pci_driver = {
5857 .name = DRV_NAME,
5858 .probe = beiscsi_dev_probe,
5859 .remove = beiscsi_remove,
Jayamohan Kallickal25602c92011-08-22 10:08:28 -07005860 .shutdown = beiscsi_shutdown,
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07005861 .id_table = beiscsi_pci_id_table,
5862 .err_handler = &beiscsi_eeh_handlers
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305863};
5864
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05305865
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305866static int __init beiscsi_module_init(void)
5867{
5868 int ret;
5869
5870 beiscsi_scsi_transport =
5871 iscsi_register_transport(&beiscsi_iscsi_transport);
5872 if (!beiscsi_scsi_transport) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305873 printk(KERN_ERR
5874 "beiscsi_module_init - Unable to register beiscsi transport.\n");
Jayamohan Kallickalf55a24f2010-01-23 05:37:40 +05305875 return -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305876 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05305877 printk(KERN_INFO "In beiscsi_module_init, tt=%p\n",
5878 &beiscsi_iscsi_transport);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305879
5880 ret = pci_register_driver(&beiscsi_pci_driver);
5881 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05305882 printk(KERN_ERR
5883 "beiscsi_module_init - Unable to register beiscsi pci driver.\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305884 goto unregister_iscsi_transport;
5885 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305886 return 0;
5887
5888unregister_iscsi_transport:
5889 iscsi_unregister_transport(&beiscsi_iscsi_transport);
5890 return ret;
5891}
5892
5893static void __exit beiscsi_module_exit(void)
5894{
5895 pci_unregister_driver(&beiscsi_pci_driver);
5896 iscsi_unregister_transport(&beiscsi_iscsi_transport);
5897}
5898
5899module_init(beiscsi_module_init);
5900module_exit(beiscsi_module_exit);