blob: 022e87b62e401a37e1d6578e065f389ce560a8b4 [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 */
19
20#include <scsi/libiscsi.h>
21#include <scsi/scsi_transport_iscsi.h>
22#include <scsi/scsi_transport.h>
23#include <scsi/scsi_cmnd.h>
24#include <scsi/scsi_device.h>
25#include <scsi/scsi_host.h>
Mike Christie0e438952012-04-03 23:41:51 -050026#include <scsi/scsi_netlink.h>
27#include <net/netlink.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053028#include <scsi/scsi.h>
29
30#include "be_iscsi.h"
31
32extern struct iscsi_transport beiscsi_iscsi_transport;
33
34/**
35 * beiscsi_session_create - creates a new iscsi session
36 * @cmds_max: max commands supported
37 * @qdepth: max queue depth supported
38 * @initial_cmdsn: initial iscsi CMDSN
39 */
40struct iscsi_cls_session *beiscsi_session_create(struct iscsi_endpoint *ep,
41 u16 cmds_max,
42 u16 qdepth,
43 u32 initial_cmdsn)
44{
45 struct Scsi_Host *shost;
46 struct beiscsi_endpoint *beiscsi_ep;
47 struct iscsi_cls_session *cls_session;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053048 struct beiscsi_hba *phba;
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +053049 struct iscsi_session *sess;
50 struct beiscsi_session *beiscsi_sess;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053051 struct beiscsi_io_task *io_task;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053052
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053053
54 if (!ep) {
John Soni Jose99bc5d52012-08-20 23:00:18 +053055 printk(KERN_ERR
56 "beiscsi_session_create: invalid ep\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053057 return NULL;
58 }
59 beiscsi_ep = ep->dd_data;
60 phba = beiscsi_ep->phba;
John Soni Jose99bc5d52012-08-20 23:00:18 +053061
Jayamohan Kallickal3567f362013-09-28 15:35:58 -070062 if (phba->state & BE_ADAPTER_PCI_ERR) {
63 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
64 "BS_%d : PCI_ERROR Recovery\n");
65 return NULL;
66 } else {
67 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
68 "BS_%d : In beiscsi_session_create\n");
69 }
John Soni Jose99bc5d52012-08-20 23:00:18 +053070
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053071 if (cmds_max > beiscsi_ep->phba->params.wrbs_per_cxn) {
John Soni Jose99bc5d52012-08-20 23:00:18 +053072 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
73 "BS_%d : Cannot handle %d cmds."
74 "Max cmds per session supported is %d. Using %d."
75 "\n", cmds_max,
76 beiscsi_ep->phba->params.wrbs_per_cxn,
77 beiscsi_ep->phba->params.wrbs_per_cxn);
78
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053079 cmds_max = beiscsi_ep->phba->params.wrbs_per_cxn;
80 }
81
Jayamohan Kallickal3567f362013-09-28 15:35:58 -070082 shost = phba->shost;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +053083 cls_session = iscsi_session_setup(&beiscsi_iscsi_transport,
84 shost, cmds_max,
85 sizeof(*beiscsi_sess),
86 sizeof(*io_task),
87 initial_cmdsn, ISCSI_MAX_TARGET);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053088 if (!cls_session)
89 return NULL;
90 sess = cls_session->dd_data;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +053091 beiscsi_sess = sess->dd_data;
92 beiscsi_sess->bhs_pool = pci_pool_create("beiscsi_bhs_pool",
93 phba->pcidev,
94 sizeof(struct be_cmd_bhs),
95 64, 0);
96 if (!beiscsi_sess->bhs_pool)
97 goto destroy_sess;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053098
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053099 return cls_session;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +0530100destroy_sess:
101 iscsi_session_teardown(cls_session);
102 return NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530103}
104
105/**
106 * beiscsi_session_destroy - destroys iscsi session
107 * @cls_session: pointer to iscsi cls session
108 *
109 * Destroys iSCSI session instance and releases
110 * resources allocated for it.
111 */
112void beiscsi_session_destroy(struct iscsi_cls_session *cls_session)
113{
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530114 struct iscsi_session *sess = cls_session->dd_data;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +0530115 struct beiscsi_session *beiscsi_sess = sess->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530116
John Soni Jose99bc5d52012-08-20 23:00:18 +0530117 printk(KERN_INFO "In beiscsi_session_destroy\n");
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +0530118 pci_pool_destroy(beiscsi_sess->bhs_pool);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530119 iscsi_session_teardown(cls_session);
120}
121
122/**
123 * beiscsi_conn_create - create an instance of iscsi connection
124 * @cls_session: ptr to iscsi_cls_session
125 * @cid: iscsi cid
126 */
127struct iscsi_cls_conn *
128beiscsi_conn_create(struct iscsi_cls_session *cls_session, u32 cid)
129{
130 struct beiscsi_hba *phba;
131 struct Scsi_Host *shost;
132 struct iscsi_cls_conn *cls_conn;
133 struct beiscsi_conn *beiscsi_conn;
134 struct iscsi_conn *conn;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +0530135 struct iscsi_session *sess;
136 struct beiscsi_session *beiscsi_sess;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530137
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530138 shost = iscsi_session_to_shost(cls_session);
139 phba = iscsi_host_priv(shost);
140
John Soni Jose99bc5d52012-08-20 23:00:18 +0530141 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
142 "BS_%d : In beiscsi_conn_create ,cid"
143 "from iscsi layer=%d\n", cid);
144
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530145 cls_conn = iscsi_conn_setup(cls_session, sizeof(*beiscsi_conn), cid);
146 if (!cls_conn)
147 return NULL;
148
149 conn = cls_conn->dd_data;
150 beiscsi_conn = conn->dd_data;
151 beiscsi_conn->ep = NULL;
152 beiscsi_conn->phba = phba;
153 beiscsi_conn->conn = conn;
Jayamohan Kallickal2afc95b2009-09-22 08:22:26 +0530154 sess = cls_session->dd_data;
155 beiscsi_sess = sess->dd_data;
156 beiscsi_conn->beiscsi_sess = beiscsi_sess;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530157 return cls_conn;
158}
159
160/**
161 * beiscsi_bindconn_cid - Bind the beiscsi_conn with phba connection table
162 * @beiscsi_conn: The pointer to beiscsi_conn structure
163 * @phba: The phba instance
164 * @cid: The cid to free
165 */
166static int beiscsi_bindconn_cid(struct beiscsi_hba *phba,
167 struct beiscsi_conn *beiscsi_conn,
168 unsigned int cid)
169{
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700170 uint16_t cri_index = BE_GET_CRI_FROM_CID(cid);
171
172 if (phba->conn_table[cri_index]) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530173 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
174 "BS_%d : Connection table already occupied. Detected clash\n");
175
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530176 return -EINVAL;
177 } else {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530178 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
179 "BS_%d : phba->conn_table[%d]=%p(beiscsi_conn)\n",
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700180 cri_index, beiscsi_conn);
John Soni Jose99bc5d52012-08-20 23:00:18 +0530181
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700182 phba->conn_table[cri_index] = beiscsi_conn;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530183 }
184 return 0;
185}
186
187/**
188 * beiscsi_conn_bind - Binds iscsi session/connection with TCP connection
189 * @cls_session: pointer to iscsi cls session
190 * @cls_conn: pointer to iscsi cls conn
191 * @transport_fd: EP handle(64 bit)
192 *
193 * This function binds the TCP Conn with iSCSI Connection and Session.
194 */
195int beiscsi_conn_bind(struct iscsi_cls_session *cls_session,
196 struct iscsi_cls_conn *cls_conn,
197 u64 transport_fd, int is_leading)
198{
199 struct iscsi_conn *conn = cls_conn->dd_data;
200 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
Mike Christie3093b042011-07-25 13:48:46 -0500201 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
202 struct beiscsi_hba *phba = iscsi_host_priv(shost);
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -0700203 struct hwi_controller *phwi_ctrlr = phba->phwi_ctrlr;
204 struct hwi_wrb_context *pwrb_context;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530205 struct beiscsi_endpoint *beiscsi_ep;
206 struct iscsi_endpoint *ep;
207
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530208 ep = iscsi_lookup_endpoint(transport_fd);
209 if (!ep)
210 return -EINVAL;
211
212 beiscsi_ep = ep->dd_data;
213
214 if (iscsi_conn_bind(cls_session, cls_conn, is_leading))
215 return -EINVAL;
216
217 if (beiscsi_ep->phba != phba) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530218 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
219 "BS_%d : beiscsi_ep->hba=%p not equal to phba=%p\n",
220 beiscsi_ep->phba, phba);
221
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530222 return -EEXIST;
223 }
224
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -0700225 pwrb_context = &phwi_ctrlr->wrb_context[BE_GET_CRI_FROM_CID(
226 beiscsi_ep->ep_cid)];
227
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530228 beiscsi_conn->beiscsi_conn_cid = beiscsi_ep->ep_cid;
229 beiscsi_conn->ep = beiscsi_ep;
230 beiscsi_ep->conn = beiscsi_conn;
Jayamohan Kallickal1e4be6f2013-09-28 15:35:50 -0700231 beiscsi_conn->doorbell_offset = pwrb_context->doorbell_offset;
John Soni Jose99bc5d52012-08-20 23:00:18 +0530232
233 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
234 "BS_%d : beiscsi_conn=%p conn=%p ep_cid=%d\n",
235 beiscsi_conn, conn, beiscsi_ep->ep_cid);
236
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530237 return beiscsi_bindconn_cid(phba, beiscsi_conn, beiscsi_ep->ep_cid);
238}
239
Mike Christie0e438952012-04-03 23:41:51 -0500240static int beiscsi_create_ipv4_iface(struct beiscsi_hba *phba)
241{
242 if (phba->ipv4_iface)
243 return 0;
244
245 phba->ipv4_iface = iscsi_create_iface(phba->shost,
246 &beiscsi_iscsi_transport,
247 ISCSI_IFACE_TYPE_IPV4,
248 0, 0);
249 if (!phba->ipv4_iface) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530250 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
251 "BS_%d : Could not "
252 "create default IPv4 address.\n");
Mike Christie0e438952012-04-03 23:41:51 -0500253 return -ENODEV;
254 }
255
256 return 0;
257}
258
259static int beiscsi_create_ipv6_iface(struct beiscsi_hba *phba)
260{
261 if (phba->ipv6_iface)
262 return 0;
263
264 phba->ipv6_iface = iscsi_create_iface(phba->shost,
265 &beiscsi_iscsi_transport,
266 ISCSI_IFACE_TYPE_IPV6,
267 0, 0);
268 if (!phba->ipv6_iface) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530269 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
270 "BS_%d : Could not "
271 "create default IPv6 address.\n");
Mike Christie0e438952012-04-03 23:41:51 -0500272 return -ENODEV;
273 }
274
275 return 0;
276}
277
278void beiscsi_create_def_ifaces(struct beiscsi_hba *phba)
279{
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700280 struct be_cmd_get_if_info_resp *if_info;
Mike Christie0e438952012-04-03 23:41:51 -0500281
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700282 if (!mgmt_get_if_info(phba, BE2_IPV4, &if_info)) {
Mike Christie0e438952012-04-03 23:41:51 -0500283 beiscsi_create_ipv4_iface(phba);
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700284 kfree(if_info);
285 }
Mike Christie0e438952012-04-03 23:41:51 -0500286
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700287 if (!mgmt_get_if_info(phba, BE2_IPV6, &if_info)) {
Mike Christie0e438952012-04-03 23:41:51 -0500288 beiscsi_create_ipv6_iface(phba);
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700289 kfree(if_info);
290 }
Mike Christie0e438952012-04-03 23:41:51 -0500291}
292
293void beiscsi_destroy_def_ifaces(struct beiscsi_hba *phba)
294{
295 if (phba->ipv6_iface)
296 iscsi_destroy_iface(phba->ipv6_iface);
297 if (phba->ipv4_iface)
298 iscsi_destroy_iface(phba->ipv4_iface);
299}
300
301static int
302beiscsi_set_static_ip(struct Scsi_Host *shost,
303 struct iscsi_iface_param_info *iface_param,
304 void *data, uint32_t dt_len)
305{
306 struct beiscsi_hba *phba = iscsi_host_priv(shost);
307 struct iscsi_iface_param_info *iface_ip = NULL;
308 struct iscsi_iface_param_info *iface_subnet = NULL;
309 struct nlattr *nla;
310 int ret;
311
312
313 switch (iface_param->param) {
314 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
315 nla = nla_find(data, dt_len, ISCSI_NET_PARAM_IPV4_ADDR);
316 if (nla)
317 iface_ip = nla_data(nla);
318
319 nla = nla_find(data, dt_len, ISCSI_NET_PARAM_IPV4_SUBNET);
320 if (nla)
321 iface_subnet = nla_data(nla);
322 break;
323 case ISCSI_NET_PARAM_IPV4_ADDR:
324 iface_ip = iface_param;
325 nla = nla_find(data, dt_len, ISCSI_NET_PARAM_IPV4_SUBNET);
326 if (nla)
327 iface_subnet = nla_data(nla);
328 break;
329 case ISCSI_NET_PARAM_IPV4_SUBNET:
330 iface_subnet = iface_param;
331 nla = nla_find(data, dt_len, ISCSI_NET_PARAM_IPV4_ADDR);
332 if (nla)
333 iface_ip = nla_data(nla);
334 break;
335 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +0530336 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
337 "BS_%d : Unsupported param %d\n",
338 iface_param->param);
Mike Christie0e438952012-04-03 23:41:51 -0500339 }
340
341 if (!iface_ip || !iface_subnet) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530342 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
343 "BS_%d : IP and Subnet Mask required\n");
Mike Christie0e438952012-04-03 23:41:51 -0500344 return -EINVAL;
345 }
346
347 ret = mgmt_set_ip(phba, iface_ip, iface_subnet,
348 ISCSI_BOOTPROTO_STATIC);
349
350 return ret;
351}
352
John Soni Jose6f722382012-08-20 23:00:43 +0530353/**
354 * beiscsi_set_vlan_tag()- Set the VLAN TAG
355 * @shost: Scsi Host for the driver instance
356 * @iface_param: Interface paramters
357 *
358 * Set the VLAN TAG for the adapter or disable
359 * the VLAN config
360 *
361 * returns
362 * Success: 0
363 * Failure: Non-Zero Value
364 **/
365static int
366beiscsi_set_vlan_tag(struct Scsi_Host *shost,
367 struct iscsi_iface_param_info *iface_param)
368{
369 struct beiscsi_hba *phba = iscsi_host_priv(shost);
370 int ret = 0;
371
372 /* Get the Interface Handle */
373 if (mgmt_get_all_if_id(phba)) {
374 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
375 "BS_%d : Getting Interface Handle Failed\n");
376 return -EIO;
377 }
378
379 switch (iface_param->param) {
380 case ISCSI_NET_PARAM_VLAN_ENABLED:
381 if (iface_param->value[0] != ISCSI_VLAN_ENABLE)
382 ret = mgmt_set_vlan(phba, BEISCSI_VLAN_DISABLE);
383 break;
384 case ISCSI_NET_PARAM_VLAN_TAG:
385 ret = mgmt_set_vlan(phba,
386 *((uint16_t *)iface_param->value));
387 break;
388 default:
389 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
Masanari Iidab23f7a02013-04-18 00:12:55 +0900390 "BS_%d : Unknown Param Type : %d\n",
John Soni Jose6f722382012-08-20 23:00:43 +0530391 iface_param->param);
392 return -ENOSYS;
393 }
394 return ret;
395}
396
397
Mike Christie0e438952012-04-03 23:41:51 -0500398static int
399beiscsi_set_ipv4(struct Scsi_Host *shost,
400 struct iscsi_iface_param_info *iface_param,
401 void *data, uint32_t dt_len)
402{
403 struct beiscsi_hba *phba = iscsi_host_priv(shost);
404 int ret = 0;
405
406 /* Check the param */
407 switch (iface_param->param) {
408 case ISCSI_NET_PARAM_IPV4_GW:
409 ret = mgmt_set_gateway(phba, iface_param);
410 break;
411 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
412 if (iface_param->value[0] == ISCSI_BOOTPROTO_DHCP)
413 ret = mgmt_set_ip(phba, iface_param,
414 NULL, ISCSI_BOOTPROTO_DHCP);
415 else if (iface_param->value[0] == ISCSI_BOOTPROTO_STATIC)
416 ret = beiscsi_set_static_ip(shost, iface_param,
417 data, dt_len);
418 else
John Soni Jose99bc5d52012-08-20 23:00:18 +0530419 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
420 "BS_%d : Invalid BOOTPROTO: %d\n",
421 iface_param->value[0]);
Mike Christie0e438952012-04-03 23:41:51 -0500422 break;
423 case ISCSI_NET_PARAM_IFACE_ENABLE:
424 if (iface_param->value[0] == ISCSI_IFACE_ENABLE)
425 ret = beiscsi_create_ipv4_iface(phba);
426 else
427 iscsi_destroy_iface(phba->ipv4_iface);
428 break;
429 case ISCSI_NET_PARAM_IPV4_SUBNET:
430 case ISCSI_NET_PARAM_IPV4_ADDR:
431 ret = beiscsi_set_static_ip(shost, iface_param,
432 data, dt_len);
433 break;
John Soni Jose6f722382012-08-20 23:00:43 +0530434 case ISCSI_NET_PARAM_VLAN_ENABLED:
435 case ISCSI_NET_PARAM_VLAN_TAG:
436 ret = beiscsi_set_vlan_tag(shost, iface_param);
437 break;
Mike Christie0e438952012-04-03 23:41:51 -0500438 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +0530439 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
440 "BS_%d : Param %d not supported\n",
441 iface_param->param);
Mike Christie0e438952012-04-03 23:41:51 -0500442 }
443
444 return ret;
445}
446
447static int
448beiscsi_set_ipv6(struct Scsi_Host *shost,
449 struct iscsi_iface_param_info *iface_param,
450 void *data, uint32_t dt_len)
451{
452 struct beiscsi_hba *phba = iscsi_host_priv(shost);
453 int ret = 0;
454
455 switch (iface_param->param) {
456 case ISCSI_NET_PARAM_IFACE_ENABLE:
457 if (iface_param->value[0] == ISCSI_IFACE_ENABLE)
458 ret = beiscsi_create_ipv6_iface(phba);
459 else {
460 iscsi_destroy_iface(phba->ipv6_iface);
461 ret = 0;
462 }
463 break;
464 case ISCSI_NET_PARAM_IPV6_ADDR:
465 ret = mgmt_set_ip(phba, iface_param, NULL,
466 ISCSI_BOOTPROTO_STATIC);
467 break;
468 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +0530469 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
470 "BS_%d : Param %d not supported\n",
471 iface_param->param);
Mike Christie0e438952012-04-03 23:41:51 -0500472 }
473
474 return ret;
475}
476
477int be2iscsi_iface_set_param(struct Scsi_Host *shost,
478 void *data, uint32_t dt_len)
479{
480 struct iscsi_iface_param_info *iface_param = NULL;
John Soni Jose99bc5d52012-08-20 23:00:18 +0530481 struct beiscsi_hba *phba = iscsi_host_priv(shost);
Mike Christie0e438952012-04-03 23:41:51 -0500482 struct nlattr *attrib;
483 uint32_t rm_len = dt_len;
484 int ret = 0 ;
485
Jayamohan Kallickal3567f362013-09-28 15:35:58 -0700486 if (phba->state & BE_ADAPTER_PCI_ERR) {
487 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
488 "BS_%d : In PCI_ERROR Recovery\n");
489 return -EBUSY;
490 }
491
Mike Christie0e438952012-04-03 23:41:51 -0500492 nla_for_each_attr(attrib, data, dt_len, rm_len) {
493 iface_param = nla_data(attrib);
494
495 if (iface_param->param_type != ISCSI_NET_PARAM)
496 continue;
497
498 /*
499 * BE2ISCSI only supports 1 interface
500 */
501 if (iface_param->iface_num) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530502 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
503 "BS_%d : Invalid iface_num %d."
504 "Only iface_num 0 is supported.\n",
505 iface_param->iface_num);
506
Mike Christie0e438952012-04-03 23:41:51 -0500507 return -EINVAL;
508 }
509
510 switch (iface_param->iface_type) {
511 case ISCSI_IFACE_TYPE_IPV4:
512 ret = beiscsi_set_ipv4(shost, iface_param,
513 data, dt_len);
514 break;
515 case ISCSI_IFACE_TYPE_IPV6:
516 ret = beiscsi_set_ipv6(shost, iface_param,
517 data, dt_len);
518 break;
519 default:
John Soni Jose99bc5d52012-08-20 23:00:18 +0530520 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
521 "BS_%d : Invalid iface type :%d passed\n",
522 iface_param->iface_type);
Mike Christie0e438952012-04-03 23:41:51 -0500523 break;
524 }
525
526 if (ret)
527 return ret;
528 }
529
530 return ret;
531}
532
533static int be2iscsi_get_if_param(struct beiscsi_hba *phba,
534 struct iscsi_iface *iface, int param,
535 char *buf)
536{
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700537 struct be_cmd_get_if_info_resp *if_info;
Mike Christie0e438952012-04-03 23:41:51 -0500538 int len, ip_type = BE2_IPV4;
539
Mike Christie0e438952012-04-03 23:41:51 -0500540 if (iface->iface_type == ISCSI_IFACE_TYPE_IPV6)
541 ip_type = BE2_IPV6;
542
543 len = mgmt_get_if_info(phba, ip_type, &if_info);
Geyslan G. Bem0e7c60c2013-11-18 16:42:57 -0300544 if (len)
Mike Christie0e438952012-04-03 23:41:51 -0500545 return len;
546
547 switch (param) {
548 case ISCSI_NET_PARAM_IPV4_ADDR:
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700549 len = sprintf(buf, "%pI4\n", if_info->ip_addr.addr);
Mike Christie0e438952012-04-03 23:41:51 -0500550 break;
551 case ISCSI_NET_PARAM_IPV6_ADDR:
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700552 len = sprintf(buf, "%pI6\n", if_info->ip_addr.addr);
Mike Christie0e438952012-04-03 23:41:51 -0500553 break;
554 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700555 if (!if_info->dhcp_state)
John Soni Jose8359c792012-10-20 04:43:03 +0530556 len = sprintf(buf, "static\n");
Mike Christie0e438952012-04-03 23:41:51 -0500557 else
John Soni Jose8359c792012-10-20 04:43:03 +0530558 len = sprintf(buf, "dhcp\n");
Mike Christie0e438952012-04-03 23:41:51 -0500559 break;
560 case ISCSI_NET_PARAM_IPV4_SUBNET:
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700561 len = sprintf(buf, "%pI4\n", if_info->ip_addr.subnet_mask);
Mike Christie0e438952012-04-03 23:41:51 -0500562 break;
John Soni Jose6f722382012-08-20 23:00:43 +0530563 case ISCSI_NET_PARAM_VLAN_ENABLED:
564 len = sprintf(buf, "%s\n",
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700565 (if_info->vlan_priority == BEISCSI_VLAN_DISABLE)
John Soni Jose8359c792012-10-20 04:43:03 +0530566 ? "Disabled\n" : "Enabled\n");
John Soni Jose6f722382012-08-20 23:00:43 +0530567 break;
568 case ISCSI_NET_PARAM_VLAN_ID:
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700569 if (if_info->vlan_priority == BEISCSI_VLAN_DISABLE)
Geyslan G. Bem0e7c60c2013-11-18 16:42:57 -0300570 len = -EINVAL;
John Soni Jose6f722382012-08-20 23:00:43 +0530571 else
572 len = sprintf(buf, "%d\n",
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700573 (if_info->vlan_priority &
John Soni Jose6f722382012-08-20 23:00:43 +0530574 ISCSI_MAX_VLAN_ID));
575 break;
576 case ISCSI_NET_PARAM_VLAN_PRIORITY:
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700577 if (if_info->vlan_priority == BEISCSI_VLAN_DISABLE)
Geyslan G. Bem0e7c60c2013-11-18 16:42:57 -0300578 len = -EINVAL;
John Soni Jose6f722382012-08-20 23:00:43 +0530579 else
580 len = sprintf(buf, "%d\n",
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700581 ((if_info->vlan_priority >> 13) &
John Soni Jose6f722382012-08-20 23:00:43 +0530582 ISCSI_MAX_VLAN_PRIORITY));
583 break;
Mike Christie0e438952012-04-03 23:41:51 -0500584 default:
585 WARN_ON(1);
586 }
587
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700588 kfree(if_info);
Mike Christie0e438952012-04-03 23:41:51 -0500589 return len;
590}
591
592int be2iscsi_iface_get_param(struct iscsi_iface *iface,
593 enum iscsi_param_type param_type,
594 int param, char *buf)
595{
596 struct Scsi_Host *shost = iscsi_iface_to_shost(iface);
597 struct beiscsi_hba *phba = iscsi_host_priv(shost);
598 struct be_cmd_get_def_gateway_resp gateway;
599 int len = -ENOSYS;
600
Jayamohan Kallickal3567f362013-09-28 15:35:58 -0700601 if (phba->state & BE_ADAPTER_PCI_ERR) {
602 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
603 "BS_%d : In PCI_ERROR Recovery\n");
604 return -EBUSY;
605 }
606
Mike Christie0e438952012-04-03 23:41:51 -0500607 switch (param) {
608 case ISCSI_NET_PARAM_IPV4_ADDR:
609 case ISCSI_NET_PARAM_IPV4_SUBNET:
610 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
611 case ISCSI_NET_PARAM_IPV6_ADDR:
John Soni Jose6f722382012-08-20 23:00:43 +0530612 case ISCSI_NET_PARAM_VLAN_ENABLED:
613 case ISCSI_NET_PARAM_VLAN_ID:
614 case ISCSI_NET_PARAM_VLAN_PRIORITY:
Mike Christie0e438952012-04-03 23:41:51 -0500615 len = be2iscsi_get_if_param(phba, iface, param, buf);
616 break;
617 case ISCSI_NET_PARAM_IFACE_ENABLE:
John Soni Jose8359c792012-10-20 04:43:03 +0530618 len = sprintf(buf, "enabled\n");
Mike Christie0e438952012-04-03 23:41:51 -0500619 break;
620 case ISCSI_NET_PARAM_IPV4_GW:
621 memset(&gateway, 0, sizeof(gateway));
622 len = mgmt_get_gateway(phba, BE2_IPV4, &gateway);
623 if (!len)
624 len = sprintf(buf, "%pI4\n", &gateway.ip_addr.addr);
625 break;
626 default:
627 len = -ENOSYS;
628 }
629
630 return len;
631}
632
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530633/**
Mike Christiec7f7fd52011-02-16 15:04:41 -0600634 * beiscsi_ep_get_param - get the iscsi parameter
635 * @ep: pointer to iscsi ep
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530636 * @param: parameter type identifier
637 * @buf: buffer pointer
638 *
639 * returns iscsi parameter
640 */
Mike Christiec7f7fd52011-02-16 15:04:41 -0600641int beiscsi_ep_get_param(struct iscsi_endpoint *ep,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530642 enum iscsi_param param, char *buf)
643{
Mike Christiec7f7fd52011-02-16 15:04:41 -0600644 struct beiscsi_endpoint *beiscsi_ep = ep->dd_data;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530645 int len = 0;
646
John Soni Jose99bc5d52012-08-20 23:00:18 +0530647 beiscsi_log(beiscsi_ep->phba, KERN_INFO,
648 BEISCSI_LOG_CONFIG,
649 "BS_%d : In beiscsi_ep_get_param,"
650 " param= %d\n", param);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530651
652 switch (param) {
653 case ISCSI_PARAM_CONN_PORT:
654 len = sprintf(buf, "%hu\n", beiscsi_ep->dst_tcpport);
655 break;
656 case ISCSI_PARAM_CONN_ADDRESS:
657 if (beiscsi_ep->ip_type == BE2_IPV4)
658 len = sprintf(buf, "%pI4\n", &beiscsi_ep->dst_addr);
659 else
660 len = sprintf(buf, "%pI6\n", &beiscsi_ep->dst6_addr);
661 break;
662 default:
Mike Christiec7f7fd52011-02-16 15:04:41 -0600663 return -ENOSYS;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530664 }
665 return len;
666}
667
668int beiscsi_set_param(struct iscsi_cls_conn *cls_conn,
669 enum iscsi_param param, char *buf, int buflen)
670{
671 struct iscsi_conn *conn = cls_conn->dd_data;
672 struct iscsi_session *session = conn->session;
John Soni Jose99bc5d52012-08-20 23:00:18 +0530673 struct beiscsi_hba *phba = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530674 int ret;
675
John Soni Jose99bc5d52012-08-20 23:00:18 +0530676 phba = ((struct beiscsi_conn *)conn->dd_data)->phba;
677 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
678 "BS_%d : In beiscsi_conn_set_param,"
679 " param= %d\n", param);
680
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530681 ret = iscsi_set_param(cls_conn, param, buf, buflen);
682 if (ret)
683 return ret;
684 /*
685 * If userspace tried to set the value to higher than we can
686 * support override here.
687 */
688 switch (param) {
689 case ISCSI_PARAM_FIRST_BURST:
690 if (session->first_burst > 8192)
691 session->first_burst = 8192;
692 break;
693 case ISCSI_PARAM_MAX_RECV_DLENGTH:
694 if (conn->max_recv_dlength > 65536)
695 conn->max_recv_dlength = 65536;
696 break;
697 case ISCSI_PARAM_MAX_BURST:
Jayamohan Kallickal230dceb2010-01-23 05:36:10 +0530698 if (session->max_burst > 262144)
699 session->max_burst = 262144;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530700 break;
Jayamohan Kallickal42f43c42010-07-22 04:26:45 +0530701 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700702 if (conn->max_xmit_dlength > 65536)
Jayamohan Kallickal42f43c42010-07-22 04:26:45 +0530703 conn->max_xmit_dlength = 65536;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530704 default:
705 return 0;
706 }
707
708 return 0;
709}
710
711/**
John Soni Jose21771992012-04-03 23:41:49 -0500712 * beiscsi_get_initname - Read Initiator Name from flash
713 * @buf: buffer bointer
714 * @phba: The device priv structure instance
715 *
716 * returns number of bytes
717 */
718static int beiscsi_get_initname(char *buf, struct beiscsi_hba *phba)
719{
720 int rc;
John Soni Josee175def2012-10-20 04:45:40 +0530721 unsigned int tag;
John Soni Jose21771992012-04-03 23:41:49 -0500722 struct be_mcc_wrb *wrb;
723 struct be_cmd_hba_name *resp;
John Soni Jose21771992012-04-03 23:41:49 -0500724
725 tag = be_cmd_get_initname(phba);
726 if (!tag) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530727 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
728 "BS_%d : Getting Initiator Name Failed\n");
729
John Soni Jose21771992012-04-03 23:41:49 -0500730 return -EBUSY;
John Soni Josee175def2012-10-20 04:45:40 +0530731 }
John Soni Jose21771992012-04-03 23:41:49 -0500732
John Soni Josee175def2012-10-20 04:45:40 +0530733 rc = beiscsi_mccq_compl(phba, tag, &wrb, NULL);
734 if (rc) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530735 beiscsi_log(phba, KERN_ERR,
736 BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX,
John Soni Josee175def2012-10-20 04:45:40 +0530737 "BS_%d : Initiator Name MBX Failed\n");
738 return rc;
John Soni Jose21771992012-04-03 23:41:49 -0500739 }
John Soni Josee175def2012-10-20 04:45:40 +0530740
John Soni Jose21771992012-04-03 23:41:49 -0500741 resp = embedded_payload(wrb);
742 rc = sprintf(buf, "%s\n", resp->initiator_name);
743 return rc;
744}
745
746/**
John Soni Josec62eef02012-04-03 23:41:52 -0500747 * beiscsi_get_port_state - Get the Port State
748 * @shost : pointer to scsi_host structure
749 *
John Soni Josec62eef02012-04-03 23:41:52 -0500750 */
751static void beiscsi_get_port_state(struct Scsi_Host *shost)
752{
753 struct beiscsi_hba *phba = iscsi_host_priv(shost);
754 struct iscsi_cls_host *ihost = shost->shost_data;
755
Jayamohan Kallickal3567f362013-09-28 15:35:58 -0700756 ihost->port_state = (phba->state == BE_ADAPTER_LINK_UP) ?
John Soni Josec62eef02012-04-03 23:41:52 -0500757 ISCSI_PORT_STATE_UP : ISCSI_PORT_STATE_DOWN;
758}
759
760/**
761 * beiscsi_get_port_speed - Get the Port Speed from Adapter
762 * @shost : pointer to scsi_host structure
763 *
764 * returns Success/Failure
765 */
766static int beiscsi_get_port_speed(struct Scsi_Host *shost)
767{
John Soni Josee175def2012-10-20 04:45:40 +0530768 int rc;
769 unsigned int tag;
John Soni Josec62eef02012-04-03 23:41:52 -0500770 struct be_mcc_wrb *wrb;
771 struct be_cmd_ntwk_link_status_resp *resp;
772 struct beiscsi_hba *phba = iscsi_host_priv(shost);
773 struct iscsi_cls_host *ihost = shost->shost_data;
John Soni Josec62eef02012-04-03 23:41:52 -0500774
775 tag = be_cmd_get_port_speed(phba);
776 if (!tag) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530777 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
778 "BS_%d : Getting Port Speed Failed\n");
779
John Soni Josec62eef02012-04-03 23:41:52 -0500780 return -EBUSY;
John Soni Josee175def2012-10-20 04:45:40 +0530781 }
782 rc = beiscsi_mccq_compl(phba, tag, &wrb, NULL);
783 if (rc) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530784 beiscsi_log(phba, KERN_ERR,
785 BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX,
John Soni Josee175def2012-10-20 04:45:40 +0530786 "BS_%d : Port Speed MBX Failed\n");
787 return rc;
John Soni Josec62eef02012-04-03 23:41:52 -0500788 }
John Soni Josec62eef02012-04-03 23:41:52 -0500789 resp = embedded_payload(wrb);
790
791 switch (resp->mac_speed) {
792 case BE2ISCSI_LINK_SPEED_10MBPS:
793 ihost->port_speed = ISCSI_PORT_SPEED_10MBPS;
794 break;
795 case BE2ISCSI_LINK_SPEED_100MBPS:
Jayamohan Kallickal3e393172014-01-29 02:16:40 -0500796 ihost->port_speed = ISCSI_PORT_SPEED_100MBPS;
John Soni Josec62eef02012-04-03 23:41:52 -0500797 break;
798 case BE2ISCSI_LINK_SPEED_1GBPS:
799 ihost->port_speed = ISCSI_PORT_SPEED_1GBPS;
800 break;
801 case BE2ISCSI_LINK_SPEED_10GBPS:
802 ihost->port_speed = ISCSI_PORT_SPEED_10GBPS;
803 break;
804 default:
805 ihost->port_speed = ISCSI_PORT_SPEED_UNKNOWN;
806 }
807 return 0;
808}
809
810/**
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530811 * beiscsi_get_host_param - get the iscsi parameter
812 * @shost: pointer to scsi_host structure
813 * @param: parameter type identifier
814 * @buf: buffer pointer
815 *
816 * returns host parameter
817 */
818int beiscsi_get_host_param(struct Scsi_Host *shost,
819 enum iscsi_host_param param, char *buf)
820{
Mike Christie3093b042011-07-25 13:48:46 -0500821 struct beiscsi_hba *phba = iscsi_host_priv(shost);
Jayamohan Kallickalb15d05b2010-08-12 23:36:06 +0530822 int status = 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530823
Jayamohan Kallickal3567f362013-09-28 15:35:58 -0700824
825 if (phba->state & BE_ADAPTER_PCI_ERR) {
826 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
827 "BS_%d : In PCI_ERROR Recovery\n");
828 return -EBUSY;
829 } else {
830 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
831 "BS_%d : In beiscsi_get_host_param,"
832 " param = %d\n", param);
833 }
John Soni Jose99bc5d52012-08-20 23:00:18 +0530834
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530835 switch (param) {
836 case ISCSI_HOST_PARAM_HWADDRESS:
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530837 status = beiscsi_get_macaddr(buf, phba);
838 if (status < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530839 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
840 "BS_%d : beiscsi_get_macaddr Failed\n");
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530841 return status;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +0530842 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530843 break;
John Soni Jose21771992012-04-03 23:41:49 -0500844 case ISCSI_HOST_PARAM_INITIATOR_NAME:
845 status = beiscsi_get_initname(buf, phba);
846 if (status < 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530847 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
848 "BS_%d : Retreiving Initiator Name Failed\n");
John Soni Jose21771992012-04-03 23:41:49 -0500849 return status;
850 }
851 break;
John Soni Josec62eef02012-04-03 23:41:52 -0500852 case ISCSI_HOST_PARAM_PORT_STATE:
853 beiscsi_get_port_state(shost);
854 status = sprintf(buf, "%s\n", iscsi_get_port_state_name(shost));
855 break;
856 case ISCSI_HOST_PARAM_PORT_SPEED:
857 status = beiscsi_get_port_speed(shost);
858 if (status) {
John Soni Jose99bc5d52012-08-20 23:00:18 +0530859 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
860 "BS_%d : Retreiving Port Speed Failed\n");
John Soni Josec62eef02012-04-03 23:41:52 -0500861 return status;
862 }
863 status = sprintf(buf, "%s\n", iscsi_get_port_speed_name(shost));
864 break;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530865 default:
866 return iscsi_host_get_param(shost, param, buf);
867 }
Jayamohan Kallickalb15d05b2010-08-12 23:36:06 +0530868 return status;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530869}
870
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530871int beiscsi_get_macaddr(char *buf, struct beiscsi_hba *phba)
872{
Mike Christie0e438952012-04-03 23:41:51 -0500873 struct be_cmd_get_nic_conf_resp resp;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530874 int rc;
875
Jayamohan Kallickal6c831852013-09-28 15:35:40 -0700876 if (phba->mac_addr_set)
John Soni Josedf5d0e62012-08-20 23:00:31 +0530877 return sysfs_format_mac(buf, phba->mac_address, ETH_ALEN);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530878
Mike Christie0e438952012-04-03 23:41:51 -0500879 memset(&resp, 0, sizeof(resp));
880 rc = mgmt_get_nic_conf(phba, &resp);
881 if (rc)
882 return rc;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530883
Jayamohan Kallickal6c831852013-09-28 15:35:40 -0700884 phba->mac_addr_set = true;
Mike Christie0e438952012-04-03 23:41:51 -0500885 memcpy(phba->mac_address, resp.mac_address, ETH_ALEN);
886 return sysfs_format_mac(buf, phba->mac_address, ETH_ALEN);
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530887}
888
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530889/**
890 * beiscsi_conn_get_stats - get the iscsi stats
891 * @cls_conn: pointer to iscsi cls conn
892 * @stats: pointer to iscsi_stats structure
893 *
894 * returns iscsi stats
895 */
896void beiscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn,
897 struct iscsi_stats *stats)
898{
899 struct iscsi_conn *conn = cls_conn->dd_data;
John Soni Jose99bc5d52012-08-20 23:00:18 +0530900 struct beiscsi_hba *phba = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530901
John Soni Jose99bc5d52012-08-20 23:00:18 +0530902 phba = ((struct beiscsi_conn *)conn->dd_data)->phba;
903 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
904 "BS_%d : In beiscsi_conn_get_stats\n");
905
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530906 stats->txdata_octets = conn->txdata_octets;
907 stats->rxdata_octets = conn->rxdata_octets;
908 stats->dataout_pdus = conn->dataout_pdus_cnt;
909 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
910 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
911 stats->datain_pdus = conn->datain_pdus_cnt;
912 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
913 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
914 stats->r2t_pdus = conn->r2t_pdus_cnt;
915 stats->digest_err = 0;
916 stats->timeout_err = 0;
Mike Christie915aafd2014-07-01 11:24:38 -0500917 stats->custom_length = 1;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530918 strcpy(stats->custom[0].desc, "eh_abort_cnt");
919 stats->custom[0].value = conn->eh_abort_cnt;
920}
921
922/**
923 * beiscsi_set_params_for_offld - get the parameters for offload
924 * @beiscsi_conn: pointer to beiscsi_conn
925 * @params: pointer to offload_params structure
926 */
927static void beiscsi_set_params_for_offld(struct beiscsi_conn *beiscsi_conn,
928 struct beiscsi_offload_params *params)
929{
930 struct iscsi_conn *conn = beiscsi_conn->conn;
931 struct iscsi_session *session = conn->session;
932
933 AMAP_SET_BITS(struct amap_beiscsi_offload_params, max_burst_length,
934 params, session->max_burst);
935 AMAP_SET_BITS(struct amap_beiscsi_offload_params,
936 max_send_data_segment_length, params,
937 conn->max_xmit_dlength);
938 AMAP_SET_BITS(struct amap_beiscsi_offload_params, first_burst_length,
939 params, session->first_burst);
940 AMAP_SET_BITS(struct amap_beiscsi_offload_params, erl, params,
941 session->erl);
942 AMAP_SET_BITS(struct amap_beiscsi_offload_params, dde, params,
943 conn->datadgst_en);
944 AMAP_SET_BITS(struct amap_beiscsi_offload_params, hde, params,
945 conn->hdrdgst_en);
946 AMAP_SET_BITS(struct amap_beiscsi_offload_params, ir2t, params,
947 session->initial_r2t_en);
948 AMAP_SET_BITS(struct amap_beiscsi_offload_params, imd, params,
949 session->imm_data_en);
John Soni Joseacb96932012-10-20 04:44:35 +0530950 AMAP_SET_BITS(struct amap_beiscsi_offload_params,
951 data_seq_inorder, params,
952 session->dataseq_inorder_en);
953 AMAP_SET_BITS(struct amap_beiscsi_offload_params,
954 pdu_seq_inorder, params,
955 session->pdu_inorder_en);
956 AMAP_SET_BITS(struct amap_beiscsi_offload_params, max_r2t, params,
957 session->max_r2t);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530958 AMAP_SET_BITS(struct amap_beiscsi_offload_params, exp_statsn, params,
959 (conn->exp_statsn - 1));
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700960 AMAP_SET_BITS(struct amap_beiscsi_offload_params,
961 max_recv_data_segment_length, params,
962 conn->max_recv_dlength);
963
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530964}
965
966/**
967 * beiscsi_conn_start - offload of session to chip
968 * @cls_conn: pointer to beiscsi_conn
969 */
970int beiscsi_conn_start(struct iscsi_cls_conn *cls_conn)
971{
972 struct iscsi_conn *conn = cls_conn->dd_data;
973 struct beiscsi_conn *beiscsi_conn = conn->dd_data;
974 struct beiscsi_endpoint *beiscsi_ep;
975 struct beiscsi_offload_params params;
Jayamohan Kallickal3567f362013-09-28 15:35:58 -0700976 struct beiscsi_hba *phba;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530977
Jayamohan Kallickal3567f362013-09-28 15:35:58 -0700978 phba = ((struct beiscsi_conn *)conn->dd_data)->phba;
979
980 if (phba->state & BE_ADAPTER_PCI_ERR) {
981 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
982 "BS_%d : In PCI_ERROR Recovery\n");
983 return -EBUSY;
984 } else {
985 beiscsi_log(beiscsi_conn->phba, KERN_INFO,
986 BEISCSI_LOG_CONFIG,
987 "BS_%d : In beiscsi_conn_start\n");
988 }
John Soni Jose99bc5d52012-08-20 23:00:18 +0530989
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530990 memset(&params, 0, sizeof(struct beiscsi_offload_params));
991 beiscsi_ep = beiscsi_conn->ep;
992 if (!beiscsi_ep)
John Soni Jose99bc5d52012-08-20 23:00:18 +0530993 beiscsi_log(beiscsi_conn->phba, KERN_ERR,
994 BEISCSI_LOG_CONFIG,
995 "BS_%d : In beiscsi_conn_start , no beiscsi_ep\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530996
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530997 beiscsi_conn->login_in_progress = 0;
998 beiscsi_set_params_for_offld(beiscsi_conn, &params);
999 beiscsi_offload_connection(beiscsi_conn, &params);
1000 iscsi_conn_start(cls_conn);
1001 return 0;
1002}
1003
1004/**
1005 * beiscsi_get_cid - Allocate a cid
1006 * @phba: The phba instance
1007 */
1008static int beiscsi_get_cid(struct beiscsi_hba *phba)
1009{
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07001010 unsigned short cid = 0xFFFF, cid_from_ulp;
1011 struct ulp_cid_info *cid_info = NULL;
1012 uint16_t cid_avlbl_ulp0, cid_avlbl_ulp1;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301013
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07001014 /* Find the ULP which has more CID available */
1015 cid_avlbl_ulp0 = (phba->cid_array_info[BEISCSI_ULP0]) ?
1016 BEISCSI_ULP0_AVLBL_CID(phba) : 0;
1017 cid_avlbl_ulp1 = (phba->cid_array_info[BEISCSI_ULP1]) ?
1018 BEISCSI_ULP1_AVLBL_CID(phba) : 0;
1019 cid_from_ulp = (cid_avlbl_ulp0 > cid_avlbl_ulp1) ?
1020 BEISCSI_ULP0 : BEISCSI_ULP1;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301021
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07001022 if (test_bit(cid_from_ulp, (void *)&phba->fw_config.ulp_supported)) {
1023 cid_info = phba->cid_array_info[cid_from_ulp];
1024 if (!cid_info->avlbl_cids)
1025 return cid;
1026
1027 cid = cid_info->cid_array[cid_info->cid_alloc++];
1028
1029 if (cid_info->cid_alloc == BEISCSI_GET_CID_COUNT(
1030 phba, cid_from_ulp))
1031 cid_info->cid_alloc = 0;
1032
1033 cid_info->avlbl_cids--;
1034 }
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301035 return cid;
1036}
1037
1038/**
Mike Christiefa95d202010-06-09 03:30:08 -05001039 * beiscsi_put_cid - Free the cid
1040 * @phba: The phba for which the cid is being freed
1041 * @cid: The cid to free
1042 */
1043static void beiscsi_put_cid(struct beiscsi_hba *phba, unsigned short cid)
1044{
Jayamohan Kallickal0a3db7c2013-09-28 15:35:49 -07001045 uint16_t cid_post_ulp;
1046 struct hwi_controller *phwi_ctrlr;
1047 struct hwi_wrb_context *pwrb_context;
1048 struct ulp_cid_info *cid_info = NULL;
1049 uint16_t cri_index = BE_GET_CRI_FROM_CID(cid);
1050
1051 phwi_ctrlr = phba->phwi_ctrlr;
1052 pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
1053 cid_post_ulp = pwrb_context->ulp_num;
1054
1055 cid_info = phba->cid_array_info[cid_post_ulp];
1056 cid_info->avlbl_cids++;
1057
1058 cid_info->cid_array[cid_info->cid_free++] = cid;
1059 if (cid_info->cid_free == BEISCSI_GET_CID_COUNT(phba, cid_post_ulp))
1060 cid_info->cid_free = 0;
Mike Christiefa95d202010-06-09 03:30:08 -05001061}
1062
1063/**
1064 * beiscsi_free_ep - free endpoint
1065 * @ep: pointer to iscsi endpoint structure
1066 */
1067static void beiscsi_free_ep(struct beiscsi_endpoint *beiscsi_ep)
1068{
1069 struct beiscsi_hba *phba = beiscsi_ep->phba;
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07001070 struct beiscsi_conn *beiscsi_conn;
Mike Christiefa95d202010-06-09 03:30:08 -05001071
1072 beiscsi_put_cid(phba, beiscsi_ep->ep_cid);
1073 beiscsi_ep->phba = NULL;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001074 phba->ep_array[BE_GET_CRI_FROM_CID
1075 (beiscsi_ep->ep_cid)] = NULL;
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07001076
1077 /**
1078 * Check if any connection resource allocated by driver
1079 * is to be freed.This case occurs when target redirection
1080 * or connection retry is done.
1081 **/
1082 if (!beiscsi_ep->conn)
1083 return;
1084
1085 beiscsi_conn = beiscsi_ep->conn;
1086 if (beiscsi_conn->login_in_progress) {
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -07001087 beiscsi_free_mgmt_task_handles(beiscsi_conn,
1088 beiscsi_conn->task);
Jayamohan Kallickal43f388b2013-04-05 20:38:25 -07001089 beiscsi_conn->login_in_progress = 0;
1090 }
Mike Christiefa95d202010-06-09 03:30:08 -05001091}
1092
1093/**
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301094 * beiscsi_open_conn - Ask FW to open a TCP connection
1095 * @ep: endpoint to be used
1096 * @src_addr: The source IP address
1097 * @dst_addr: The Destination IP address
1098 *
1099 * Asks the FW to open a TCP connection
1100 */
1101static int beiscsi_open_conn(struct iscsi_endpoint *ep,
1102 struct sockaddr *src_addr,
1103 struct sockaddr *dst_addr, int non_blocking)
1104{
1105 struct beiscsi_endpoint *beiscsi_ep = ep->dd_data;
1106 struct beiscsi_hba *phba = beiscsi_ep->phba;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301107 struct tcp_connect_and_offload_out *ptcpcnct_out;
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +05301108 struct be_dma_mem nonemb_cmd;
Jayamohan Kallickalb3c202d2014-05-05 21:41:27 -04001109 unsigned int tag, req_memsize;
Jayamohan Kallickald3ad2bb2010-07-22 04:16:38 +05301110 int ret = -ENOMEM;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301111
John Soni Jose99bc5d52012-08-20 23:00:18 +05301112 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1113 "BS_%d : In beiscsi_open_conn\n");
1114
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301115 beiscsi_ep->ep_cid = beiscsi_get_cid(phba);
1116 if (beiscsi_ep->ep_cid == 0xFFFF) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301117 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
1118 "BS_%d : No free cid available\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301119 return ret;
1120 }
John Soni Jose99bc5d52012-08-20 23:00:18 +05301121
1122 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1123 "BS_%d : In beiscsi_open_conn, ep_cid=%d\n",
1124 beiscsi_ep->ep_cid);
1125
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001126 phba->ep_array[BE_GET_CRI_FROM_CID
1127 (beiscsi_ep->ep_cid)] = ep;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301128
1129 beiscsi_ep->cid_vld = 0;
Jayamohan Kallickalb3c202d2014-05-05 21:41:27 -04001130
1131 if (is_chip_be2_be3r(phba))
1132 req_memsize = sizeof(struct tcp_connect_and_offload_in);
1133 else
1134 req_memsize = sizeof(struct tcp_connect_and_offload_in_v1);
1135
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +05301136 nonemb_cmd.va = pci_alloc_consistent(phba->ctrl.pdev,
Jayamohan Kallickalb3c202d2014-05-05 21:41:27 -04001137 req_memsize,
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +05301138 &nonemb_cmd.dma);
1139 if (nonemb_cmd.va == NULL) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301140
1141 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
1142 "BS_%d : Failed to allocate memory for"
1143 " mgmt_open_connection\n");
1144
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001145 beiscsi_free_ep(beiscsi_ep);
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +05301146 return -ENOMEM;
1147 }
Jayamohan Kallickalb3c202d2014-05-05 21:41:27 -04001148 nonemb_cmd.size = req_memsize;
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +05301149 memset(nonemb_cmd.va, 0, nonemb_cmd.size);
1150 tag = mgmt_open_connection(phba, dst_addr, beiscsi_ep, &nonemb_cmd);
Jayamohan Kallickal1e234bb2013-04-05 20:38:23 -07001151 if (tag <= 0) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301152 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
1153 "BS_%d : mgmt_open_connection Failed for cid=%d\n",
1154 beiscsi_ep->ep_cid);
1155
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +05301156 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
1157 nonemb_cmd.va, nonemb_cmd.dma);
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001158 beiscsi_free_ep(beiscsi_ep);
Jayamohan Kallickal1f926382010-07-22 04:22:27 +05301159 return -EAGAIN;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301160 }
John Soni Josee175def2012-10-20 04:45:40 +05301161
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -05001162 ret = beiscsi_mccq_compl(phba, tag, NULL, &nonemb_cmd);
John Soni Josee175def2012-10-20 04:45:40 +05301163 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301164 beiscsi_log(phba, KERN_ERR,
1165 BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX,
John Soni Josee175def2012-10-20 04:45:40 +05301166 "BS_%d : mgmt_open_connection Failed");
John Soni Jose99bc5d52012-08-20 23:00:18 +05301167
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -05001168 if (ret != -EBUSY)
1169 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
1170 nonemb_cmd.va, nonemb_cmd.dma);
1171
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001172 beiscsi_free_ep(beiscsi_ep);
Jayamohan Kallickal1957aa72014-01-29 02:16:39 -05001173 return ret;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301174 }
John Soni Josee175def2012-10-20 04:45:40 +05301175
Jayamohan Kallickal1e234bb2013-04-05 20:38:23 -07001176 ptcpcnct_out = (struct tcp_connect_and_offload_out *)nonemb_cmd.va;
John Soni Josee175def2012-10-20 04:45:40 +05301177 beiscsi_ep = ep->dd_data;
1178 beiscsi_ep->fw_handle = ptcpcnct_out->connection_handle;
1179 beiscsi_ep->cid_vld = 1;
1180 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1181 "BS_%d : mgmt_open_connection Success\n");
1182
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +05301183 pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
1184 nonemb_cmd.va, nonemb_cmd.dma);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301185 return 0;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301186}
1187
1188/**
1189 * beiscsi_ep_connect - Ask chip to create TCP Conn
1190 * @scsi_host: Pointer to scsi_host structure
1191 * @dst_addr: The IP address of Target
1192 * @non_blocking: blocking or non-blocking call
1193 *
1194 * This routines first asks chip to create a connection and then allocates an EP
1195 */
1196struct iscsi_endpoint *
1197beiscsi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
1198 int non_blocking)
1199{
1200 struct beiscsi_hba *phba;
1201 struct beiscsi_endpoint *beiscsi_ep;
1202 struct iscsi_endpoint *ep;
1203 int ret;
1204
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301205 if (shost)
1206 phba = iscsi_host_priv(shost);
1207 else {
1208 ret = -ENXIO;
John Soni Jose99bc5d52012-08-20 23:00:18 +05301209 printk(KERN_ERR
1210 "beiscsi_ep_connect shost is NULL\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301211 return ERR_PTR(ret);
1212 }
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301213
Jayamohan Kallickalcf6e3c62013-04-05 20:38:33 -07001214 if (beiscsi_error(phba)) {
1215 ret = -EIO;
1216 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
1217 "BS_%d : The FW state Not Stable!!!\n");
1218 return ERR_PTR(ret);
1219 }
1220
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07001221 if (phba->state & BE_ADAPTER_PCI_ERR) {
1222 ret = -EBUSY;
1223 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
1224 "BS_%d : In PCI_ERROR Recovery\n");
1225 return ERR_PTR(ret);
1226 } else if (phba->state & BE_ADAPTER_LINK_DOWN) {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301227 ret = -EBUSY;
John Soni Jose8359c792012-10-20 04:43:03 +05301228 beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
1229 "BS_%d : The Adapter Port state is Down!!!\n");
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +05301230 return ERR_PTR(ret);
1231 }
1232
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301233 ep = iscsi_create_endpoint(sizeof(struct beiscsi_endpoint));
1234 if (!ep) {
1235 ret = -ENOMEM;
1236 return ERR_PTR(ret);
1237 }
1238
1239 beiscsi_ep = ep->dd_data;
1240 beiscsi_ep->phba = phba;
Jayamohan Kallickalc2462282010-01-05 05:05:34 +05301241 beiscsi_ep->openiscsi_ep = ep;
Jayamohan Kallickalf5ed7bd2010-07-22 04:18:01 +05301242 ret = beiscsi_open_conn(ep, NULL, dst_addr, non_blocking);
1243 if (ret) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301244 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
1245 "BS_%d : Failed in beiscsi_open_conn\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301246 goto free_ep;
1247 }
1248
1249 return ep;
1250
1251free_ep:
Mike Christiefa95d202010-06-09 03:30:08 -05001252 iscsi_destroy_endpoint(ep);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301253 return ERR_PTR(ret);
1254}
1255
1256/**
1257 * beiscsi_ep_poll - Poll to see if connection is established
1258 * @ep: endpoint to be used
1259 * @timeout_ms: timeout specified in millisecs
1260 *
1261 * Poll to see if TCP connection established
1262 */
1263int beiscsi_ep_poll(struct iscsi_endpoint *ep, int timeout_ms)
1264{
1265 struct beiscsi_endpoint *beiscsi_ep = ep->dd_data;
1266
John Soni Jose99bc5d52012-08-20 23:00:18 +05301267 beiscsi_log(beiscsi_ep->phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1268 "BS_%d : In beiscsi_ep_poll\n");
1269
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301270 if (beiscsi_ep->cid_vld == 1)
1271 return 1;
1272 else
1273 return 0;
1274}
1275
1276/**
Jayamohan Kallickalb7ab35b2014-08-08 01:00:01 -04001277 * beiscsi_flush_cq()- Flush the CQ created.
1278 * @phba: ptr device priv structure.
1279 *
1280 * Before the connection resource are freed flush
1281 * all the CQ enteries
1282 **/
1283static void beiscsi_flush_cq(struct beiscsi_hba *phba)
1284{
1285 uint16_t i;
1286 struct be_eq_obj *pbe_eq;
1287 struct hwi_controller *phwi_ctrlr;
1288 struct hwi_context_memory *phwi_context;
1289
1290 phwi_ctrlr = phba->phwi_ctrlr;
1291 phwi_context = phwi_ctrlr->phwi_ctxt;
1292
1293 for (i = 0; i < phba->num_cpus; i++) {
1294 pbe_eq = &phwi_context->be_eq[i];
Christoph Hellwig511cbce2015-11-10 14:56:14 +01001295 irq_poll_disable(&pbe_eq->iopoll);
Jayamohan Kallickalb7ab35b2014-08-08 01:00:01 -04001296 beiscsi_process_cq(pbe_eq);
Christoph Hellwig511cbce2015-11-10 14:56:14 +01001297 irq_poll_enable(&pbe_eq->iopoll);
Jayamohan Kallickalb7ab35b2014-08-08 01:00:01 -04001298 }
1299}
1300
1301/**
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301302 * beiscsi_close_conn - Upload the connection
1303 * @ep: The iscsi endpoint
1304 * @flag: The type of connection closure
1305 */
Jayamohan Kallickalc2462282010-01-05 05:05:34 +05301306static int beiscsi_close_conn(struct beiscsi_endpoint *beiscsi_ep, int flag)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301307{
1308 int ret = 0;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301309 unsigned int tag;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301310 struct beiscsi_hba *phba = beiscsi_ep->phba;
1311
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301312 tag = mgmt_upload_connection(phba, beiscsi_ep->ep_cid, flag);
1313 if (!tag) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301314 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1315 "BS_%d : upload failed for cid 0x%x\n",
1316 beiscsi_ep->ep_cid);
1317
Jayamohan Kallickald3ad2bb2010-07-22 04:16:38 +05301318 ret = -EAGAIN;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301319 }
John Soni Josee175def2012-10-20 04:45:40 +05301320
1321 ret = beiscsi_mccq_compl(phba, tag, NULL, NULL);
Jayamohan Kallickalb7ab35b2014-08-08 01:00:01 -04001322
1323 /* Flush the CQ entries */
1324 beiscsi_flush_cq(phba);
1325
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301326 return ret;
1327}
1328
1329/**
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301330 * beiscsi_unbind_conn_to_cid - Unbind the beiscsi_conn from phba conn table
1331 * @phba: The phba instance
1332 * @cid: The cid to free
1333 */
1334static int beiscsi_unbind_conn_to_cid(struct beiscsi_hba *phba,
1335 unsigned int cid)
1336{
Jayamohan Kallickala7909b32013-04-05 20:38:32 -07001337 uint16_t cri_index = BE_GET_CRI_FROM_CID(cid);
1338
1339 if (phba->conn_table[cri_index])
1340 phba->conn_table[cri_index] = NULL;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301341 else {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301342 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1343 "BS_%d : Connection table Not occupied.\n");
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301344 return -EINVAL;
1345 }
1346 return 0;
1347}
1348
1349/**
Mike Christiefa95d202010-06-09 03:30:08 -05001350 * beiscsi_ep_disconnect - Tears down the TCP connection
1351 * @ep: endpoint to be used
1352 *
1353 * Tears down the TCP connection
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301354 */
Mike Christiefa95d202010-06-09 03:30:08 -05001355void beiscsi_ep_disconnect(struct iscsi_endpoint *ep)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301356{
Mike Christiefa95d202010-06-09 03:30:08 -05001357 struct beiscsi_conn *beiscsi_conn;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301358 struct beiscsi_endpoint *beiscsi_ep;
Mike Christiefa95d202010-06-09 03:30:08 -05001359 struct beiscsi_hba *phba;
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301360 unsigned int tag;
John Soni Jose0a513dd2012-08-20 23:00:55 +05301361 uint8_t mgmt_invalidate_flag, tcp_upload_flag;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301362 unsigned short savecfg_flag = CMD_ISCSI_SESSION_SAVE_CFG_ON_FLASH;
1363
Mike Christiefa95d202010-06-09 03:30:08 -05001364 beiscsi_ep = ep->dd_data;
1365 phba = beiscsi_ep->phba;
John Soni Jose99bc5d52012-08-20 23:00:18 +05301366 beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
1367 "BS_%d : In beiscsi_ep_disconnect for ep_cid = %d\n",
1368 beiscsi_ep->ep_cid);
Mike Christiefa95d202010-06-09 03:30:08 -05001369
John Soni Jose0a513dd2012-08-20 23:00:55 +05301370 if (beiscsi_ep->conn) {
1371 beiscsi_conn = beiscsi_ep->conn;
1372 iscsi_suspend_queue(beiscsi_conn->conn);
1373 mgmt_invalidate_flag = ~BEISCSI_NO_RST_ISSUE;
1374 tcp_upload_flag = CONNECTION_UPLOAD_GRACEFUL;
1375 } else {
1376 mgmt_invalidate_flag = BEISCSI_NO_RST_ISSUE;
1377 tcp_upload_flag = CONNECTION_UPLOAD_ABORT;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301378 }
Mike Christiefa95d202010-06-09 03:30:08 -05001379
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07001380 if (phba->state & BE_ADAPTER_PCI_ERR) {
1381 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
1382 "BS_%d : PCI_ERROR Recovery\n");
1383 goto free_ep;
1384 }
1385
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301386 tag = mgmt_invalidate_connection(phba, beiscsi_ep,
John Soni Jose0a513dd2012-08-20 23:00:55 +05301387 beiscsi_ep->ep_cid,
1388 mgmt_invalidate_flag,
1389 savecfg_flag);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +05301390 if (!tag) {
John Soni Jose99bc5d52012-08-20 23:00:18 +05301391 beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
John Soni Jose0a513dd2012-08-20 23:00:55 +05301392 "BS_%d : mgmt_invalidate_connection Failed for cid=%d\n",
John Soni Jose99bc5d52012-08-20 23:00:18 +05301393 beiscsi_ep->ep_cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301394 }
Mike Christiefa95d202010-06-09 03:30:08 -05001395
John Soni Josee175def2012-10-20 04:45:40 +05301396 beiscsi_mccq_compl(phba, tag, NULL, NULL);
John Soni Jose0a513dd2012-08-20 23:00:55 +05301397 beiscsi_close_conn(beiscsi_ep, tcp_upload_flag);
Jayamohan Kallickal3567f362013-09-28 15:35:58 -07001398free_ep:
Jayamohan Kallickal9343be72014-01-29 02:16:43 -05001399 msleep(BEISCSI_LOGOUT_SYNC_DELAY);
Jayamohan Kallickalc2462282010-01-05 05:05:34 +05301400 beiscsi_free_ep(beiscsi_ep);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301401 beiscsi_unbind_conn_to_cid(phba, beiscsi_ep->ep_cid);
Mike Christiefa95d202010-06-09 03:30:08 -05001402 iscsi_destroy_endpoint(beiscsi_ep->openiscsi_ep);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301403}
Mike Christie3128c6c2011-07-25 13:48:42 -05001404
Al Viro587a1f12011-07-23 23:11:19 -04001405umode_t be2iscsi_attr_is_visible(int param_type, int param)
Mike Christie3128c6c2011-07-25 13:48:42 -05001406{
1407 switch (param_type) {
Mike Christie0e438952012-04-03 23:41:51 -05001408 case ISCSI_NET_PARAM:
1409 switch (param) {
1410 case ISCSI_NET_PARAM_IFACE_ENABLE:
1411 case ISCSI_NET_PARAM_IPV4_ADDR:
1412 case ISCSI_NET_PARAM_IPV4_SUBNET:
1413 case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
1414 case ISCSI_NET_PARAM_IPV4_GW:
1415 case ISCSI_NET_PARAM_IPV6_ADDR:
John Soni Jose6f722382012-08-20 23:00:43 +05301416 case ISCSI_NET_PARAM_VLAN_ID:
1417 case ISCSI_NET_PARAM_VLAN_PRIORITY:
1418 case ISCSI_NET_PARAM_VLAN_ENABLED:
Mike Christie0e438952012-04-03 23:41:51 -05001419 return S_IRUGO;
1420 default:
1421 return 0;
1422 }
Mike Christief27fb2e2011-07-25 13:48:45 -05001423 case ISCSI_HOST_PARAM:
1424 switch (param) {
1425 case ISCSI_HOST_PARAM_HWADDRESS:
John Soni Josec62eef02012-04-03 23:41:52 -05001426 case ISCSI_HOST_PARAM_INITIATOR_NAME:
1427 case ISCSI_HOST_PARAM_PORT_STATE:
1428 case ISCSI_HOST_PARAM_PORT_SPEED:
Mike Christief27fb2e2011-07-25 13:48:45 -05001429 return S_IRUGO;
1430 default:
1431 return 0;
1432 }
Mike Christie3128c6c2011-07-25 13:48:42 -05001433 case ISCSI_PARAM:
1434 switch (param) {
1435 case ISCSI_PARAM_MAX_RECV_DLENGTH:
1436 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
1437 case ISCSI_PARAM_HDRDGST_EN:
1438 case ISCSI_PARAM_DATADGST_EN:
1439 case ISCSI_PARAM_CONN_ADDRESS:
1440 case ISCSI_PARAM_CONN_PORT:
1441 case ISCSI_PARAM_EXP_STATSN:
1442 case ISCSI_PARAM_PERSISTENT_ADDRESS:
1443 case ISCSI_PARAM_PERSISTENT_PORT:
1444 case ISCSI_PARAM_PING_TMO:
1445 case ISCSI_PARAM_RECV_TMO:
Mike Christie1d063c12011-07-25 13:48:43 -05001446 case ISCSI_PARAM_INITIAL_R2T_EN:
1447 case ISCSI_PARAM_MAX_R2T:
1448 case ISCSI_PARAM_IMM_DATA_EN:
1449 case ISCSI_PARAM_FIRST_BURST:
1450 case ISCSI_PARAM_MAX_BURST:
1451 case ISCSI_PARAM_PDU_INORDER_EN:
1452 case ISCSI_PARAM_DATASEQ_INORDER_EN:
1453 case ISCSI_PARAM_ERL:
1454 case ISCSI_PARAM_TARGET_NAME:
1455 case ISCSI_PARAM_TPGT:
1456 case ISCSI_PARAM_USERNAME:
1457 case ISCSI_PARAM_PASSWORD:
1458 case ISCSI_PARAM_USERNAME_IN:
1459 case ISCSI_PARAM_PASSWORD_IN:
1460 case ISCSI_PARAM_FAST_ABORT:
1461 case ISCSI_PARAM_ABORT_TMO:
1462 case ISCSI_PARAM_LU_RESET_TMO:
1463 case ISCSI_PARAM_IFACE_NAME:
1464 case ISCSI_PARAM_INITIATOR_NAME:
Mike Christie3128c6c2011-07-25 13:48:42 -05001465 return S_IRUGO;
1466 default:
1467 return 0;
1468 }
1469 }
1470
1471 return 0;
1472}