be_iscsi.c 38.0 KB
Newer Older
1
/**
2
 * Copyright (C) 2005 - 2016 Broadcom
3 4 5 6 7 8 9
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation.  The full GNU General
 * Public License is included in this distribution in the file called COPYING.
 *
10
 * Written by: Jayamohan Kallickal (jayamohan.kallickal@broadcom.com)
11 12
 *
 * Contact Information:
13
 * linux-drivers@broadcom.com
14
 *
15
 * Emulex
16 17
 * 3333 Susan Street
 * Costa Mesa, CA 92626
18 19 20 21 22 23 24 25
 */

#include <scsi/libiscsi.h>
#include <scsi/scsi_transport_iscsi.h>
#include <scsi/scsi_transport.h>
#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_host.h>
26 27
#include <scsi/scsi_netlink.h>
#include <net/netlink.h>
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
#include <scsi/scsi.h>

#include "be_iscsi.h"

extern struct iscsi_transport beiscsi_iscsi_transport;

/**
 * beiscsi_session_create - creates a new iscsi session
 * @cmds_max: max commands supported
 * @qdepth: max queue depth supported
 * @initial_cmdsn: initial iscsi CMDSN
 */
struct iscsi_cls_session *beiscsi_session_create(struct iscsi_endpoint *ep,
						 u16 cmds_max,
						 u16 qdepth,
						 u32 initial_cmdsn)
{
	struct Scsi_Host *shost;
	struct beiscsi_endpoint *beiscsi_ep;
	struct iscsi_cls_session *cls_session;
	struct beiscsi_hba *phba;
49 50
	struct iscsi_session *sess;
	struct beiscsi_session *beiscsi_sess;
51 52 53 54
	struct beiscsi_io_task *io_task;


	if (!ep) {
55
		pr_err("beiscsi_session_create: invalid ep\n");
56 57 58 59
		return NULL;
	}
	beiscsi_ep = ep->dd_data;
	phba = beiscsi_ep->phba;
60

61
	if (!beiscsi_hba_is_online(phba)) {
62
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
63 64
			    "BS_%d : HBA in error 0x%lx\n", phba->state);
		return NULL;
65
	}
66

67 68
	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_session_create\n");
69
	if (cmds_max > beiscsi_ep->phba->params.wrbs_per_cxn) {
70 71 72 73 74 75 76
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : Cannot handle %d cmds."
			    "Max cmds per session supported is %d. Using %d."
			    "\n", cmds_max,
			    beiscsi_ep->phba->params.wrbs_per_cxn,
			    beiscsi_ep->phba->params.wrbs_per_cxn);

77 78 79
		cmds_max = beiscsi_ep->phba->params.wrbs_per_cxn;
	}

80
	shost = phba->shost;
81 82 83 84 85
	cls_session = iscsi_session_setup(&beiscsi_iscsi_transport,
					  shost, cmds_max,
					  sizeof(*beiscsi_sess),
					  sizeof(*io_task),
					  initial_cmdsn, ISCSI_MAX_TARGET);
86 87 88
	if (!cls_session)
		return NULL;
	sess = cls_session->dd_data;
89 90 91 92 93 94 95
	beiscsi_sess = sess->dd_data;
	beiscsi_sess->bhs_pool =  pci_pool_create("beiscsi_bhs_pool",
						   phba->pcidev,
						   sizeof(struct be_cmd_bhs),
						   64, 0);
	if (!beiscsi_sess->bhs_pool)
		goto destroy_sess;
96 97

	return cls_session;
98 99 100
destroy_sess:
	iscsi_session_teardown(cls_session);
	return NULL;
101 102 103 104 105 106 107 108 109 110 111 112
}

/**
 * beiscsi_session_destroy - destroys iscsi session
 * @cls_session:	pointer to iscsi cls session
 *
 * Destroys iSCSI session instance and releases
 * resources allocated for it.
 */
void beiscsi_session_destroy(struct iscsi_cls_session *cls_session)
{
	struct iscsi_session *sess = cls_session->dd_data;
113
	struct beiscsi_session *beiscsi_sess = sess->dd_data;
114

115
	printk(KERN_INFO "In beiscsi_session_destroy\n");
116
	pci_pool_destroy(beiscsi_sess->bhs_pool);
117 118 119
	iscsi_session_teardown(cls_session);
}

120 121 122 123 124 125 126 127 128 129
/**
 * beiscsi_session_fail(): Closing session with appropriate error
 * @cls_session: ptr to session
 **/
void beiscsi_session_fail(struct iscsi_cls_session *cls_session)
{
	iscsi_session_failure(cls_session->dd_data, ISCSI_ERR_CONN_FAILED);
}


130 131 132 133 134 135 136 137 138 139 140 141 142
/**
 * beiscsi_conn_create - create an instance of iscsi connection
 * @cls_session: ptr to iscsi_cls_session
 * @cid: iscsi cid
 */
struct iscsi_cls_conn *
beiscsi_conn_create(struct iscsi_cls_session *cls_session, u32 cid)
{
	struct beiscsi_hba *phba;
	struct Scsi_Host *shost;
	struct iscsi_cls_conn *cls_conn;
	struct beiscsi_conn *beiscsi_conn;
	struct iscsi_conn *conn;
143 144
	struct iscsi_session *sess;
	struct beiscsi_session *beiscsi_sess;
145 146 147 148

	shost = iscsi_session_to_shost(cls_session);
	phba = iscsi_host_priv(shost);

149 150 151 152
	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_conn_create ,cid"
		    "from iscsi layer=%d\n", cid);

153 154 155 156 157 158 159 160 161
	cls_conn = iscsi_conn_setup(cls_session, sizeof(*beiscsi_conn), cid);
	if (!cls_conn)
		return NULL;

	conn = cls_conn->dd_data;
	beiscsi_conn = conn->dd_data;
	beiscsi_conn->ep = NULL;
	beiscsi_conn->phba = phba;
	beiscsi_conn->conn = conn;
162 163 164
	sess = cls_session->dd_data;
	beiscsi_sess = sess->dd_data;
	beiscsi_conn->beiscsi_sess = beiscsi_sess;
165 166 167 168 169 170 171 172 173 174 175 176 177
	return cls_conn;
}

/**
 * beiscsi_bindconn_cid - Bind the beiscsi_conn with phba connection table
 * @beiscsi_conn: The pointer to  beiscsi_conn structure
 * @phba: The phba instance
 * @cid: The cid to free
 */
static int beiscsi_bindconn_cid(struct beiscsi_hba *phba,
				struct beiscsi_conn *beiscsi_conn,
				unsigned int cid)
{
178 179 180
	uint16_t cri_index = BE_GET_CRI_FROM_CID(cid);

	if (phba->conn_table[cri_index]) {
181 182 183
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : Connection table already occupied. Detected clash\n");

184 185
		return -EINVAL;
	} else {
186 187
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
			    "BS_%d : phba->conn_table[%d]=%p(beiscsi_conn)\n",
188
			    cri_index, beiscsi_conn);
189

190
		phba->conn_table[cri_index] = beiscsi_conn;
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
	}
	return 0;
}

/**
 * beiscsi_conn_bind - Binds iscsi session/connection with TCP connection
 * @cls_session: pointer to iscsi cls session
 * @cls_conn: pointer to iscsi cls conn
 * @transport_fd: EP handle(64 bit)
 *
 * This function binds the TCP Conn with iSCSI Connection and Session.
 */
int beiscsi_conn_bind(struct iscsi_cls_session *cls_session,
		      struct iscsi_cls_conn *cls_conn,
		      u64 transport_fd, int is_leading)
{
	struct iscsi_conn *conn = cls_conn->dd_data;
	struct beiscsi_conn *beiscsi_conn = conn->dd_data;
209 210
	struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
	struct beiscsi_hba *phba = iscsi_host_priv(shost);
211 212
	struct hwi_controller *phwi_ctrlr = phba->phwi_ctrlr;
	struct hwi_wrb_context *pwrb_context;
213 214 215 216 217 218 219 220 221 222 223 224 225
	struct beiscsi_endpoint *beiscsi_ep;
	struct iscsi_endpoint *ep;

	ep = iscsi_lookup_endpoint(transport_fd);
	if (!ep)
		return -EINVAL;

	beiscsi_ep = ep->dd_data;

	if (iscsi_conn_bind(cls_session, cls_conn, is_leading))
		return -EINVAL;

	if (beiscsi_ep->phba != phba) {
226 227 228 229
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : beiscsi_ep->hba=%p not equal to phba=%p\n",
			    beiscsi_ep->phba, phba);

230 231 232
		return -EEXIST;
	}

233 234 235
	pwrb_context = &phwi_ctrlr->wrb_context[BE_GET_CRI_FROM_CID(
						beiscsi_ep->ep_cid)];

236 237 238
	beiscsi_conn->beiscsi_conn_cid = beiscsi_ep->ep_cid;
	beiscsi_conn->ep = beiscsi_ep;
	beiscsi_ep->conn = beiscsi_conn;
239
	beiscsi_conn->doorbell_offset = pwrb_context->doorbell_offset;
240 241 242 243 244

	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : beiscsi_conn=%p conn=%p ep_cid=%d\n",
		    beiscsi_conn, conn, beiscsi_ep->ep_cid);

245 246 247
	return beiscsi_bindconn_cid(phba, beiscsi_conn, beiscsi_ep->ep_cid);
}

248
static int beiscsi_iface_create_ipv4(struct beiscsi_hba *phba)
249 250 251 252 253 254 255 256 257
{
	if (phba->ipv4_iface)
		return 0;

	phba->ipv4_iface = iscsi_create_iface(phba->shost,
					      &beiscsi_iscsi_transport,
					      ISCSI_IFACE_TYPE_IPV4,
					      0, 0);
	if (!phba->ipv4_iface) {
258 259 260
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : Could not "
			    "create default IPv4 address.\n");
261 262 263 264 265 266
		return -ENODEV;
	}

	return 0;
}

267
static int beiscsi_iface_create_ipv6(struct beiscsi_hba *phba)
268 269 270 271 272 273 274 275 276
{
	if (phba->ipv6_iface)
		return 0;

	phba->ipv6_iface = iscsi_create_iface(phba->shost,
					      &beiscsi_iscsi_transport,
					      ISCSI_IFACE_TYPE_IPV6,
					      0, 0);
	if (!phba->ipv6_iface) {
277 278 279
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : Could not "
			    "create default IPv6 address.\n");
280 281 282 283 284 285
		return -ENODEV;
	}

	return 0;
}

286
void beiscsi_iface_create_default(struct beiscsi_hba *phba)
287
{
288
	struct be_cmd_get_if_info_resp *if_info;
289

290
	if (!beiscsi_if_get_info(phba, BEISCSI_IP_TYPE_V4, &if_info)) {
291
		beiscsi_iface_create_ipv4(phba);
292 293
		kfree(if_info);
	}
294

295
	if (!beiscsi_if_get_info(phba, BEISCSI_IP_TYPE_V6, &if_info)) {
296
		beiscsi_iface_create_ipv6(phba);
297 298
		kfree(if_info);
	}
299 300
}

301
void beiscsi_iface_destroy_default(struct beiscsi_hba *phba)
302
{
303
	if (phba->ipv6_iface) {
304
		iscsi_destroy_iface(phba->ipv6_iface);
305 306 307
		phba->ipv6_iface = NULL;
	}
	if (phba->ipv4_iface) {
308
		iscsi_destroy_iface(phba->ipv4_iface);
309 310
		phba->ipv4_iface = NULL;
	}
311 312
}

313 314 315 316 317 318 319 320 321 322 323 324 325
/**
 * beiscsi_set_vlan_tag()- Set the VLAN TAG
 * @shost: Scsi Host for the driver instance
 * @iface_param: Interface paramters
 *
 * Set the VLAN TAG for the adapter or disable
 * the VLAN config
 *
 * returns
 *	Success: 0
 *	Failure: Non-Zero Value
 **/
static int
326 327
beiscsi_iface_config_vlan(struct Scsi_Host *shost,
			  struct iscsi_iface_param_info *iface_param)
328 329
{
	struct beiscsi_hba *phba = iscsi_host_priv(shost);
330
	int ret = -EPERM;
331 332 333

	switch (iface_param->param) {
	case ISCSI_NET_PARAM_VLAN_ENABLED:
334
		ret = 0;
335
		if (iface_param->value[0] != ISCSI_VLAN_ENABLE)
336
			ret = beiscsi_if_set_vlan(phba, BEISCSI_VLAN_DISABLE);
337 338
		break;
	case ISCSI_NET_PARAM_VLAN_TAG:
339 340
		ret = beiscsi_if_set_vlan(phba,
					  *((uint16_t *)iface_param->value));
341 342 343 344 345 346
		break;
	}
	return ret;
}


347
static int
348 349 350
beiscsi_iface_config_ipv4(struct Scsi_Host *shost,
			  struct iscsi_iface_param_info *info,
			  void *data, uint32_t dt_len)
351 352
{
	struct beiscsi_hba *phba = iscsi_host_priv(shost);
353 354
	u8 *ip = NULL, *subnet = NULL, *gw;
	struct nlattr *nla;
355
	int ret = -EPERM;
356 357

	/* Check the param */
358
	switch (info->param) {
359
	case ISCSI_NET_PARAM_IFACE_ENABLE:
360
		if (info->value[0] == ISCSI_IFACE_ENABLE)
361
			ret = beiscsi_iface_create_ipv4(phba);
362 363 364 365 366
		else {
			iscsi_destroy_iface(phba->ipv4_iface);
			phba->ipv4_iface = NULL;
		}
		break;
367
	case ISCSI_NET_PARAM_IPV4_GW:
368
		gw = info->value;
369
		ret = beiscsi_if_set_gw(phba, BEISCSI_IP_TYPE_V4, gw);
370 371
		break;
	case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
372
		if (info->value[0] == ISCSI_BOOTPROTO_DHCP)
373
			ret = beiscsi_if_en_dhcp(phba, BEISCSI_IP_TYPE_V4);
374 375
		else if (info->value[0] == ISCSI_BOOTPROTO_STATIC)
			/* release DHCP IP address */
376 377
			ret = beiscsi_if_en_static(phba, BEISCSI_IP_TYPE_V4,
						   NULL, NULL);
378
		else
379 380
			beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
				    "BS_%d : Invalid BOOTPROTO: %d\n",
381
				    info->value[0]);
382 383
		break;
	case ISCSI_NET_PARAM_IPV4_ADDR:
384 385 386 387 388 389
		ip = info->value;
		nla = nla_find(data, dt_len, ISCSI_NET_PARAM_IPV4_SUBNET);
		if (nla) {
			info = nla_data(nla);
			subnet = info->value;
		}
390 391
		ret = beiscsi_if_en_static(phba, BEISCSI_IP_TYPE_V4,
					   ip, subnet);
392 393 394 395 396 397 398 399 400 401 402 403
		break;
	case ISCSI_NET_PARAM_IPV4_SUBNET:
		/*
		 * OPCODE_COMMON_ISCSI_NTWK_MODIFY_IP_ADDR ioctl needs IP
		 * and subnet both. Find IP to be applied for this subnet.
		 */
		subnet = info->value;
		nla = nla_find(data, dt_len, ISCSI_NET_PARAM_IPV4_ADDR);
		if (nla) {
			info = nla_data(nla);
			ip = info->value;
		}
404 405
		ret = beiscsi_if_en_static(phba, BEISCSI_IP_TYPE_V4,
					   ip, subnet);
406 407 408 409 410 411 412
		break;
	}

	return ret;
}

static int
413 414 415
beiscsi_iface_config_ipv6(struct Scsi_Host *shost,
			  struct iscsi_iface_param_info *iface_param,
			  void *data, uint32_t dt_len)
416 417
{
	struct beiscsi_hba *phba = iscsi_host_priv(shost);
418
	int ret = -EPERM;
419 420 421 422

	switch (iface_param->param) {
	case ISCSI_NET_PARAM_IFACE_ENABLE:
		if (iface_param->value[0] == ISCSI_IFACE_ENABLE)
423
			ret = beiscsi_iface_create_ipv6(phba);
424 425
		else {
			iscsi_destroy_iface(phba->ipv6_iface);
426
			phba->ipv6_iface = NULL;
427 428 429
		}
		break;
	case ISCSI_NET_PARAM_IPV6_ADDR:
430
		ret = beiscsi_if_en_static(phba, BEISCSI_IP_TYPE_V6,
431
					   iface_param->value, NULL);
432 433 434 435 436 437
		break;
	}

	return ret;
}

438 439
int beiscsi_iface_set_param(struct Scsi_Host *shost,
			    void *data, uint32_t dt_len)
440 441
{
	struct iscsi_iface_param_info *iface_param = NULL;
442
	struct beiscsi_hba *phba = iscsi_host_priv(shost);
443 444
	struct nlattr *attrib;
	uint32_t rm_len = dt_len;
445
	int ret;
446

447
	if (!beiscsi_hba_is_online(phba)) {
448 449
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
			    "BS_%d : HBA in error 0x%lx\n", phba->state);
450 451 452
		return -EBUSY;
	}

453 454 455 456 457 458 459 460
	/* update interface_handle */
	ret = beiscsi_if_get_handle(phba);
	if (ret) {
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : Getting Interface Handle Failed\n");
		return ret;
	}

461 462 463 464 465 466 467 468 469 470
	nla_for_each_attr(attrib, data, dt_len, rm_len) {
		iface_param = nla_data(attrib);

		if (iface_param->param_type != ISCSI_NET_PARAM)
			continue;

		/*
		 * BE2ISCSI only supports 1 interface
		 */
		if (iface_param->iface_num) {
471 472 473 474 475
			beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
				    "BS_%d : Invalid iface_num %d."
				    "Only iface_num 0 is supported.\n",
				    iface_param->iface_num);

476 477 478
			return -EINVAL;
		}

479 480 481 482 483 484 485 486 487 488
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
			    "BS_%d : %s.0 set param %d",
			    (iface_param->iface_type == ISCSI_IFACE_TYPE_IPV4) ?
			    "ipv4" : "ipv6", iface_param->param);

		ret = -EPERM;
		switch (iface_param->param) {
		case ISCSI_NET_PARAM_VLAN_ENABLED:
		case ISCSI_NET_PARAM_VLAN_TAG:
			ret = beiscsi_iface_config_vlan(shost, iface_param);
489 490
			break;
		default:
491 492 493 494 495 496 497 498 499 500 501 502
			switch (iface_param->iface_type) {
			case ISCSI_IFACE_TYPE_IPV4:
				ret = beiscsi_iface_config_ipv4(shost,
								iface_param,
								data, dt_len);
				break;
			case ISCSI_IFACE_TYPE_IPV6:
				ret = beiscsi_iface_config_ipv6(shost,
								iface_param,
								data, dt_len);
				break;
			}
503 504
		}

505 506 507 508 509 510 511 512
		if (ret == -EPERM) {
			__beiscsi_log(phba, KERN_ERR,
				      "BS_%d : %s.0 set param %d not permitted",
				      (iface_param->iface_type ==
				       ISCSI_IFACE_TYPE_IPV4) ? "ipv4" : "ipv6",
				      iface_param->param);
			ret = 0;
		}
513
		if (ret)
514
			break;
515 516 517 518 519
	}

	return ret;
}

520 521 522
static int __beiscsi_iface_get_param(struct beiscsi_hba *phba,
				     struct iscsi_iface *iface,
				     int param, char *buf)
523
{
524
	struct be_cmd_get_if_info_resp *if_info;
525
	int len, ip_type = BEISCSI_IP_TYPE_V4;
526 527

	if (iface->iface_type == ISCSI_IFACE_TYPE_IPV6)
528
		ip_type = BEISCSI_IP_TYPE_V6;
529

530
	len = beiscsi_if_get_info(phba, ip_type, &if_info);
531
	if (len)
532 533 534 535
		return len;

	switch (param) {
	case ISCSI_NET_PARAM_IPV4_ADDR:
536
		len = sprintf(buf, "%pI4\n", if_info->ip_addr.addr);
537 538
		break;
	case ISCSI_NET_PARAM_IPV6_ADDR:
539
		len = sprintf(buf, "%pI6\n", if_info->ip_addr.addr);
540 541
		break;
	case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
542
		if (!if_info->dhcp_state)
543
			len = sprintf(buf, "static\n");
544
		else
545
			len = sprintf(buf, "dhcp\n");
546 547
		break;
	case ISCSI_NET_PARAM_IPV4_SUBNET:
548
		len = sprintf(buf, "%pI4\n", if_info->ip_addr.subnet_mask);
549
		break;
550 551
	case ISCSI_NET_PARAM_VLAN_ENABLED:
		len = sprintf(buf, "%s\n",
552 553
			      (if_info->vlan_priority == BEISCSI_VLAN_DISABLE) ?
			      "disable" : "enable");
554 555
		break;
	case ISCSI_NET_PARAM_VLAN_ID:
556
		if (if_info->vlan_priority == BEISCSI_VLAN_DISABLE)
557
			len = -EINVAL;
558 559
		else
			len = sprintf(buf, "%d\n",
560 561
				      (if_info->vlan_priority &
				       ISCSI_MAX_VLAN_ID));
562 563
		break;
	case ISCSI_NET_PARAM_VLAN_PRIORITY:
564
		if (if_info->vlan_priority == BEISCSI_VLAN_DISABLE)
565
			len = -EINVAL;
566 567
		else
			len = sprintf(buf, "%d\n",
568 569
				      ((if_info->vlan_priority >> 13) &
				       ISCSI_MAX_VLAN_PRIORITY));
570
		break;
571 572 573 574
	default:
		WARN_ON(1);
	}

575
	kfree(if_info);
576 577 578
	return len;
}

579 580 581
int beiscsi_iface_get_param(struct iscsi_iface *iface,
			    enum iscsi_param_type param_type,
			    int param, char *buf)
582 583 584 585
{
	struct Scsi_Host *shost = iscsi_iface_to_shost(iface);
	struct beiscsi_hba *phba = iscsi_host_priv(shost);
	struct be_cmd_get_def_gateway_resp gateway;
586
	int len = -EPERM;
587

588 589
	if (param_type != ISCSI_NET_PARAM)
		return 0;
590
	if (!beiscsi_hba_is_online(phba)) {
591 592
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
			    "BS_%d : HBA in error 0x%lx\n", phba->state);
593 594 595
		return -EBUSY;
	}

596 597 598 599 600
	switch (param) {
	case ISCSI_NET_PARAM_IPV4_ADDR:
	case ISCSI_NET_PARAM_IPV4_SUBNET:
	case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
	case ISCSI_NET_PARAM_IPV6_ADDR:
601 602 603
	case ISCSI_NET_PARAM_VLAN_ENABLED:
	case ISCSI_NET_PARAM_VLAN_ID:
	case ISCSI_NET_PARAM_VLAN_PRIORITY:
604
		len = __beiscsi_iface_get_param(phba, iface, param, buf);
605 606
		break;
	case ISCSI_NET_PARAM_IFACE_ENABLE:
607 608 609 610 611 612
		if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4)
			len = sprintf(buf, "%s\n",
				      phba->ipv4_iface ? "enable" : "disable");
		else if (iface->iface_type == ISCSI_IFACE_TYPE_IPV6)
			len = sprintf(buf, "%s\n",
				      phba->ipv6_iface ? "enable" : "disable");
613 614 615
		break;
	case ISCSI_NET_PARAM_IPV4_GW:
		memset(&gateway, 0, sizeof(gateway));
616
		len = beiscsi_if_get_gw(phba, BEISCSI_IP_TYPE_V4, &gateway);
617 618 619 620 621 622 623 624
		if (!len)
			len = sprintf(buf, "%pI4\n", &gateway.ip_addr.addr);
		break;
	}

	return len;
}

625
/**
626 627
 * beiscsi_ep_get_param - get the iscsi parameter
 * @ep: pointer to iscsi ep
628 629 630 631 632
 * @param: parameter type identifier
 * @buf: buffer pointer
 *
 * returns iscsi parameter
 */
633
int beiscsi_ep_get_param(struct iscsi_endpoint *ep,
634 635
			   enum iscsi_param param, char *buf)
{
636
	struct beiscsi_endpoint *beiscsi_ep = ep->dd_data;
637
	int len;
638

639 640 641 642
	beiscsi_log(beiscsi_ep->phba, KERN_INFO,
		    BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_ep_get_param,"
		    " param= %d\n", param);
643 644 645 646 647 648

	switch (param) {
	case ISCSI_PARAM_CONN_PORT:
		len = sprintf(buf, "%hu\n", beiscsi_ep->dst_tcpport);
		break;
	case ISCSI_PARAM_CONN_ADDRESS:
649
		if (beiscsi_ep->ip_type == BEISCSI_IP_TYPE_V4)
650 651 652 653 654
			len = sprintf(buf, "%pI4\n", &beiscsi_ep->dst_addr);
		else
			len = sprintf(buf, "%pI6\n", &beiscsi_ep->dst6_addr);
		break;
	default:
655
		len = -EPERM;
656 657 658 659 660 661 662 663 664
	}
	return len;
}

int beiscsi_set_param(struct iscsi_cls_conn *cls_conn,
		      enum iscsi_param param, char *buf, int buflen)
{
	struct iscsi_conn *conn = cls_conn->dd_data;
	struct iscsi_session *session = conn->session;
665
	struct beiscsi_hba *phba = NULL;
666 667
	int ret;

668 669 670 671 672
	phba = ((struct beiscsi_conn *)conn->dd_data)->phba;
	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_conn_set_param,"
		    " param= %d\n", param);

673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
	ret = iscsi_set_param(cls_conn, param, buf, buflen);
	if (ret)
		return ret;
	/*
	 * If userspace tried to set the value to higher than we can
	 * support override here.
	 */
	switch (param) {
	case ISCSI_PARAM_FIRST_BURST:
		if (session->first_burst > 8192)
			session->first_burst = 8192;
		break;
	case ISCSI_PARAM_MAX_RECV_DLENGTH:
		if (conn->max_recv_dlength > 65536)
			conn->max_recv_dlength = 65536;
		break;
	case ISCSI_PARAM_MAX_BURST:
690 691
		if (session->max_burst > 262144)
			session->max_burst = 262144;
692
		break;
693
	case ISCSI_PARAM_MAX_XMIT_DLENGTH:
694
		if (conn->max_xmit_dlength > 65536)
695
			conn->max_xmit_dlength = 65536;
696 697 698 699 700 701 702
	default:
		return 0;
	}

	return 0;
}

703 704 705 706 707 708 709 710 711 712
/**
 * beiscsi_get_initname - Read Initiator Name from flash
 * @buf: buffer bointer
 * @phba: The device priv structure instance
 *
 * returns number of bytes
 */
static int beiscsi_get_initname(char *buf, struct beiscsi_hba *phba)
{
	int rc;
713
	unsigned int tag;
714 715 716 717 718
	struct be_mcc_wrb *wrb;
	struct be_cmd_hba_name *resp;

	tag = be_cmd_get_initname(phba);
	if (!tag) {
719 720 721
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : Getting Initiator Name Failed\n");

722
		return -EBUSY;
723
	}
724

725
	rc = beiscsi_mccq_compl_wait(phba, tag, &wrb, NULL);
726
	if (rc) {
727 728
		beiscsi_log(phba, KERN_ERR,
			    BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX,
729 730
			    "BS_%d : Initiator Name MBX Failed\n");
		return rc;
731
	}
732

733 734 735 736 737
	resp = embedded_payload(wrb);
	rc = sprintf(buf, "%s\n", resp->initiator_name);
	return rc;
}

738 739 740 741 742 743 744 745 746 747
/**
 * beiscsi_get_port_state - Get the Port State
 * @shost : pointer to scsi_host structure
 *
 */
static void beiscsi_get_port_state(struct Scsi_Host *shost)
{
	struct beiscsi_hba *phba = iscsi_host_priv(shost);
	struct iscsi_cls_host *ihost = shost->shost_data;

748
	ihost->port_state = test_bit(BEISCSI_HBA_LINK_UP, &phba->state) ?
749 750 751 752 753 754 755 756
		ISCSI_PORT_STATE_UP : ISCSI_PORT_STATE_DOWN;
}

/**
 * beiscsi_get_port_speed  - Get the Port Speed from Adapter
 * @shost : pointer to scsi_host structure
 *
 */
757
static void beiscsi_get_port_speed(struct Scsi_Host *shost)
758 759 760 761
{
	struct beiscsi_hba *phba = iscsi_host_priv(shost);
	struct iscsi_cls_host *ihost = shost->shost_data;

762
	switch (phba->port_speed) {
763 764 765 766
	case BE2ISCSI_LINK_SPEED_10MBPS:
		ihost->port_speed = ISCSI_PORT_SPEED_10MBPS;
		break;
	case BE2ISCSI_LINK_SPEED_100MBPS:
767
		ihost->port_speed = ISCSI_PORT_SPEED_100MBPS;
768 769 770 771 772 773 774
		break;
	case BE2ISCSI_LINK_SPEED_1GBPS:
		ihost->port_speed = ISCSI_PORT_SPEED_1GBPS;
		break;
	case BE2ISCSI_LINK_SPEED_10GBPS:
		ihost->port_speed = ISCSI_PORT_SPEED_10GBPS;
		break;
775 776 777 778 779 780
	case BE2ISCSI_LINK_SPEED_25GBPS:
		ihost->port_speed = ISCSI_PORT_SPEED_25GBPS;
		break;
	case BE2ISCSI_LINK_SPEED_40GBPS:
		ihost->port_speed = ISCSI_PORT_SPEED_40GBPS;
		break;
781 782 783 784 785
	default:
		ihost->port_speed = ISCSI_PORT_SPEED_UNKNOWN;
	}
}

786 787 788 789 790 791 792 793 794 795 796
/**
 * beiscsi_get_host_param - get the iscsi parameter
 * @shost: pointer to scsi_host structure
 * @param: parameter type identifier
 * @buf: buffer pointer
 *
 * returns host parameter
 */
int beiscsi_get_host_param(struct Scsi_Host *shost,
			   enum iscsi_host_param param, char *buf)
{
797
	struct beiscsi_hba *phba = iscsi_host_priv(shost);
798
	int status = 0;
799

800
	if (!beiscsi_hba_is_online(phba)) {
801
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
802 803
			    "BS_%d : HBA in error 0x%lx\n", phba->state);
		return -EBUSY;
804
	}
805 806
	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_get_host_param, param = %d\n", param);
807

808 809
	switch (param) {
	case ISCSI_HOST_PARAM_HWADDRESS:
810 811
		status = beiscsi_get_macaddr(buf, phba);
		if (status < 0) {
812 813
			beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
				    "BS_%d : beiscsi_get_macaddr Failed\n");
814
			return status;
815
		}
816
		break;
817 818 819
	case ISCSI_HOST_PARAM_INITIATOR_NAME:
		status = beiscsi_get_initname(buf, phba);
		if (status < 0) {
820 821
			beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
				    "BS_%d : Retreiving Initiator Name Failed\n");
822 823 824
			return status;
		}
		break;
825 826 827 828 829
	case ISCSI_HOST_PARAM_PORT_STATE:
		beiscsi_get_port_state(shost);
		status = sprintf(buf, "%s\n", iscsi_get_port_state_name(shost));
		break;
	case ISCSI_HOST_PARAM_PORT_SPEED:
830
		beiscsi_get_port_speed(shost);
831 832
		status = sprintf(buf, "%s\n", iscsi_get_port_speed_name(shost));
		break;
833 834 835
	default:
		return iscsi_host_get_param(shost, param, buf);
	}
836
	return status;
837 838
}

839 840
int beiscsi_get_macaddr(char *buf, struct beiscsi_hba *phba)
{
841
	struct be_cmd_get_nic_conf_resp resp;
842 843
	int rc;

844
	if (phba->mac_addr_set)
845
		return sysfs_format_mac(buf, phba->mac_address, ETH_ALEN);
846

847 848 849 850
	memset(&resp, 0, sizeof(resp));
	rc = mgmt_get_nic_conf(phba, &resp);
	if (rc)
		return rc;
851

852
	phba->mac_addr_set = true;
853 854
	memcpy(phba->mac_address, resp.mac_address, ETH_ALEN);
	return sysfs_format_mac(buf, phba->mac_address, ETH_ALEN);
855 856
}

857 858 859 860 861 862 863 864 865 866 867
/**
 * beiscsi_conn_get_stats - get the iscsi stats
 * @cls_conn: pointer to iscsi cls conn
 * @stats: pointer to iscsi_stats structure
 *
 * returns iscsi stats
 */
void beiscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn,
			    struct iscsi_stats *stats)
{
	struct iscsi_conn *conn = cls_conn->dd_data;
868 869 870 871 872
	struct beiscsi_hba *phba = NULL;

	phba = ((struct beiscsi_conn *)conn->dd_data)->phba;
	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_conn_get_stats\n");
873 874 875 876 877 878 879 880 881 882 883 884

	stats->txdata_octets = conn->txdata_octets;
	stats->rxdata_octets = conn->rxdata_octets;
	stats->dataout_pdus = conn->dataout_pdus_cnt;
	stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
	stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
	stats->datain_pdus = conn->datain_pdus_cnt;
	stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
	stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
	stats->r2t_pdus = conn->r2t_pdus_cnt;
	stats->digest_err = 0;
	stats->timeout_err = 0;
885
	stats->custom_length = 1;
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
	strcpy(stats->custom[0].desc, "eh_abort_cnt");
	stats->custom[0].value = conn->eh_abort_cnt;
}

/**
 * beiscsi_set_params_for_offld - get the parameters for offload
 * @beiscsi_conn: pointer to beiscsi_conn
 * @params: pointer to offload_params structure
 */
static void  beiscsi_set_params_for_offld(struct beiscsi_conn *beiscsi_conn,
					  struct beiscsi_offload_params *params)
{
	struct iscsi_conn *conn = beiscsi_conn->conn;
	struct iscsi_session *session = conn->session;

	AMAP_SET_BITS(struct amap_beiscsi_offload_params, max_burst_length,
		      params, session->max_burst);
	AMAP_SET_BITS(struct amap_beiscsi_offload_params,
		      max_send_data_segment_length, params,
		      conn->max_xmit_dlength);
	AMAP_SET_BITS(struct amap_beiscsi_offload_params, first_burst_length,
		      params, session->first_burst);
	AMAP_SET_BITS(struct amap_beiscsi_offload_params, erl, params,
		      session->erl);
	AMAP_SET_BITS(struct amap_beiscsi_offload_params, dde, params,
		      conn->datadgst_en);
	AMAP_SET_BITS(struct amap_beiscsi_offload_params, hde, params,
		      conn->hdrdgst_en);
	AMAP_SET_BITS(struct amap_beiscsi_offload_params, ir2t, params,
		      session->initial_r2t_en);
	AMAP_SET_BITS(struct amap_beiscsi_offload_params, imd, params,
		      session->imm_data_en);
918 919 920 921 922 923 924 925
	AMAP_SET_BITS(struct amap_beiscsi_offload_params,
		      data_seq_inorder, params,
		      session->dataseq_inorder_en);
	AMAP_SET_BITS(struct amap_beiscsi_offload_params,
		      pdu_seq_inorder, params,
		      session->pdu_inorder_en);
	AMAP_SET_BITS(struct amap_beiscsi_offload_params, max_r2t, params,
		      session->max_r2t);
926 927
	AMAP_SET_BITS(struct amap_beiscsi_offload_params, exp_statsn, params,
		      (conn->exp_statsn - 1));
928 929 930 931
	AMAP_SET_BITS(struct amap_beiscsi_offload_params,
		      max_recv_data_segment_length, params,
		      conn->max_recv_dlength);

932 933 934 935 936 937 938 939 940 941 942 943
}

/**
 * beiscsi_conn_start - offload of session to chip
 * @cls_conn: pointer to beiscsi_conn
 */
int beiscsi_conn_start(struct iscsi_cls_conn *cls_conn)
{
	struct iscsi_conn *conn = cls_conn->dd_data;
	struct beiscsi_conn *beiscsi_conn = conn->dd_data;
	struct beiscsi_endpoint *beiscsi_ep;
	struct beiscsi_offload_params params;
944
	struct beiscsi_hba *phba;
945

946 947
	phba = ((struct beiscsi_conn *)conn->dd_data)->phba;

948
	if (!beiscsi_hba_is_online(phba)) {
949 950
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
			    "BS_%d : HBA in error 0x%lx\n", phba->state);
951 952
		return -EBUSY;
	}
953 954
	beiscsi_log(beiscsi_conn->phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_conn_start\n");
955

956 957 958
	memset(&params, 0, sizeof(struct beiscsi_offload_params));
	beiscsi_ep = beiscsi_conn->ep;
	if (!beiscsi_ep)
959 960 961
		beiscsi_log(beiscsi_conn->phba, KERN_ERR,
			    BEISCSI_LOG_CONFIG,
			    "BS_%d : In beiscsi_conn_start , no beiscsi_ep\n");
962 963 964 965 966 967 968 969 970 971 972 973 974 975

	beiscsi_conn->login_in_progress = 0;
	beiscsi_set_params_for_offld(beiscsi_conn, &params);
	beiscsi_offload_connection(beiscsi_conn, &params);
	iscsi_conn_start(cls_conn);
	return 0;
}

/**
 * beiscsi_get_cid - Allocate a cid
 * @phba: The phba instance
 */
static int beiscsi_get_cid(struct beiscsi_hba *phba)
{
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
	unsigned short cid = 0xFFFF, cid_from_ulp;
	struct ulp_cid_info *cid_info = NULL;
	uint16_t cid_avlbl_ulp0, cid_avlbl_ulp1;

	/* Find the ULP which has more CID available */
	cid_avlbl_ulp0 = (phba->cid_array_info[BEISCSI_ULP0]) ?
			  BEISCSI_ULP0_AVLBL_CID(phba) : 0;
	cid_avlbl_ulp1 = (phba->cid_array_info[BEISCSI_ULP1]) ?
			  BEISCSI_ULP1_AVLBL_CID(phba) : 0;
	cid_from_ulp = (cid_avlbl_ulp0 > cid_avlbl_ulp1) ?
			BEISCSI_ULP0 : BEISCSI_ULP1;

	if (test_bit(cid_from_ulp, (void *)&phba->fw_config.ulp_supported)) {
		cid_info = phba->cid_array_info[cid_from_ulp];
		if (!cid_info->avlbl_cids)
			return cid;

		cid = cid_info->cid_array[cid_info->cid_alloc++];

		if (cid_info->cid_alloc == BEISCSI_GET_CID_COUNT(
					   phba, cid_from_ulp))
			cid_info->cid_alloc = 0;

		cid_info->avlbl_cids--;
	}
1001 1002 1003
	return cid;
}

1004 1005 1006 1007 1008 1009 1010
/**
 * beiscsi_put_cid - Free the cid
 * @phba: The phba for which the cid is being freed
 * @cid: The cid to free
 */
static void beiscsi_put_cid(struct beiscsi_hba *phba, unsigned short cid)
{
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
	uint16_t cid_post_ulp;
	struct hwi_controller *phwi_ctrlr;
	struct hwi_wrb_context *pwrb_context;
	struct ulp_cid_info *cid_info = NULL;
	uint16_t cri_index = BE_GET_CRI_FROM_CID(cid);

	phwi_ctrlr = phba->phwi_ctrlr;
	pwrb_context = &phwi_ctrlr->wrb_context[cri_index];
	cid_post_ulp = pwrb_context->ulp_num;

	cid_info = phba->cid_array_info[cid_post_ulp];
	cid_info->avlbl_cids++;

	cid_info->cid_array[cid_info->cid_free++] = cid;
	if (cid_info->cid_free == BEISCSI_GET_CID_COUNT(phba, cid_post_ulp))
		cid_info->cid_free = 0;
1027 1028 1029 1030 1031 1032 1033 1034 1035
}

/**
 * beiscsi_free_ep - free endpoint
 * @ep:	pointer to iscsi endpoint structure
 */
static void beiscsi_free_ep(struct beiscsi_endpoint *beiscsi_ep)
{
	struct beiscsi_hba *phba = beiscsi_ep->phba;
1036
	struct beiscsi_conn *beiscsi_conn;
1037 1038 1039

	beiscsi_put_cid(phba, beiscsi_ep->ep_cid);
	beiscsi_ep->phba = NULL;
1040 1041
	phba->ep_array[BE_GET_CRI_FROM_CID
		       (beiscsi_ep->ep_cid)] = NULL;
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052

	/**
	 * Check if any connection resource allocated by driver
	 * is to be freed.This case occurs when target redirection
	 * or connection retry is done.
	 **/
	if (!beiscsi_ep->conn)
		return;

	beiscsi_conn = beiscsi_ep->conn;
	if (beiscsi_conn->login_in_progress) {
1053 1054
		beiscsi_free_mgmt_task_handles(beiscsi_conn,
					       beiscsi_conn->task);
1055 1056
		beiscsi_conn->login_in_progress = 0;
	}
1057 1058
}

1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
/**
 * beiscsi_open_conn - Ask FW to open a TCP connection
 * @ep:	endpoint to be used
 * @src_addr: The source IP address
 * @dst_addr: The Destination  IP address
 *
 * Asks the FW to open a TCP connection
 */
static int beiscsi_open_conn(struct iscsi_endpoint *ep,
			     struct sockaddr *src_addr,
			     struct sockaddr *dst_addr, int non_blocking)
{
	struct beiscsi_endpoint *beiscsi_ep = ep->dd_data;
	struct beiscsi_hba *phba = beiscsi_ep->phba;
1073
	struct tcp_connect_and_offload_out *ptcpcnct_out;
1074
	struct be_dma_mem nonemb_cmd;
1075
	unsigned int tag, req_memsize;
1076
	int ret = -ENOMEM;
1077

1078 1079 1080
	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_open_conn\n");

1081 1082
	beiscsi_ep->ep_cid = beiscsi_get_cid(phba);
	if (beiscsi_ep->ep_cid == 0xFFFF) {
1083 1084
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : No free cid available\n");
1085 1086
		return ret;
	}
1087 1088 1089 1090 1091

	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_open_conn, ep_cid=%d\n",
		    beiscsi_ep->ep_cid);

1092 1093
	phba->ep_array[BE_GET_CRI_FROM_CID
		       (beiscsi_ep->ep_cid)] = ep;
1094 1095

	beiscsi_ep->cid_vld = 0;
1096 1097 1098 1099 1100 1101

	if (is_chip_be2_be3r(phba))
		req_memsize = sizeof(struct tcp_connect_and_offload_in);
	else
		req_memsize = sizeof(struct tcp_connect_and_offload_in_v1);

1102
	nonemb_cmd.va = pci_alloc_consistent(phba->ctrl.pdev,
1103
				req_memsize,
1104 1105
				&nonemb_cmd.dma);
	if (nonemb_cmd.va == NULL) {
1106 1107 1108 1109 1110

		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : Failed to allocate memory for"
			    " mgmt_open_connection\n");

1111
		beiscsi_free_ep(beiscsi_ep);
1112 1113
		return -ENOMEM;
	}
1114
	nonemb_cmd.size = req_memsize;
1115 1116
	memset(nonemb_cmd.va, 0, nonemb_cmd.size);
	tag = mgmt_open_connection(phba, dst_addr, beiscsi_ep, &nonemb_cmd);
1117
	if (tag <= 0) {
1118 1119 1120 1121
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : mgmt_open_connection Failed for cid=%d\n",
			    beiscsi_ep->ep_cid);

1122 1123
		pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
				    nonemb_cmd.va, nonemb_cmd.dma);
1124
		beiscsi_free_ep(beiscsi_ep);
1125
		return -EAGAIN;
1126
	}
1127

1128
	ret = beiscsi_mccq_compl_wait(phba, tag, NULL, &nonemb_cmd);
1129
	if (ret) {
1130 1131
		beiscsi_log(phba, KERN_ERR,
			    BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX,
1132
			    "BS_%d : mgmt_open_connection Failed");
1133

1134 1135 1136 1137
		if (ret != -EBUSY)
			pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
					    nonemb_cmd.va, nonemb_cmd.dma);

1138
		beiscsi_free_ep(beiscsi_ep);
1139
		return ret;
1140
	}
1141

1142
	ptcpcnct_out = (struct tcp_connect_and_offload_out *)nonemb_cmd.va;
1143 1144 1145 1146 1147 1148
	beiscsi_ep = ep->dd_data;
	beiscsi_ep->fw_handle = ptcpcnct_out->connection_handle;
	beiscsi_ep->cid_vld = 1;
	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : mgmt_open_connection Success\n");

1149 1150
	pci_free_consistent(phba->ctrl.pdev, nonemb_cmd.size,
			    nonemb_cmd.va, nonemb_cmd.dma);
1151
	return 0;
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
}

/**
 * beiscsi_ep_connect - Ask chip to create TCP Conn
 * @scsi_host: Pointer to scsi_host structure
 * @dst_addr: The IP address of Target
 * @non_blocking: blocking or non-blocking call
 *
 * This routines first asks chip to create a connection and then allocates an EP
 */
struct iscsi_endpoint *
beiscsi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
		   int non_blocking)
{
	struct beiscsi_hba *phba;
	struct beiscsi_endpoint *beiscsi_ep;
	struct iscsi_endpoint *ep;
	int ret;

1171
	if (!shost) {
1172
		ret = -ENXIO;
1173
		pr_err("beiscsi_ep_connect shost is NULL\n");
1174 1175
		return ERR_PTR(ret);
	}
1176

1177
	phba = iscsi_host_priv(shost);
1178
	if (!beiscsi_hba_is_online(phba)) {
1179
		ret = -EIO;
1180 1181
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
			    "BS_%d : HBA in error 0x%lx\n", phba->state);
1182 1183
		return ERR_PTR(ret);
	}
1184
	if (!test_bit(BEISCSI_HBA_LINK_UP, &phba->state)) {
1185
		ret = -EBUSY;
1186 1187
		beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
			    "BS_%d : The Adapter Port state is Down!!!\n");
1188 1189 1190
		return ERR_PTR(ret);
	}

1191 1192 1193 1194 1195 1196 1197 1198
	ep = iscsi_create_endpoint(sizeof(struct beiscsi_endpoint));
	if (!ep) {
		ret = -ENOMEM;
		return ERR_PTR(ret);
	}

	beiscsi_ep = ep->dd_data;
	beiscsi_ep->phba = phba;
1199
	beiscsi_ep->openiscsi_ep = ep;
1200 1201
	ret = beiscsi_open_conn(ep, NULL, dst_addr, non_blocking);
	if (ret) {
1202 1203
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
			    "BS_%d : Failed in beiscsi_open_conn\n");
1204 1205 1206 1207 1208 1209
		goto free_ep;
	}

	return ep;

free_ep:
1210
	iscsi_destroy_endpoint(ep);
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
	return ERR_PTR(ret);
}

/**
 * beiscsi_ep_poll - Poll to see if connection is established
 * @ep:	endpoint to be used
 * @timeout_ms: timeout specified in millisecs
 *
 * Poll to see if TCP connection established
 */
int beiscsi_ep_poll(struct iscsi_endpoint *ep, int timeout_ms)
{
	struct beiscsi_endpoint *beiscsi_ep = ep->dd_data;

1225 1226 1227
	beiscsi_log(beiscsi_ep->phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In  beiscsi_ep_poll\n");

1228 1229 1230 1231 1232 1233
	if (beiscsi_ep->cid_vld == 1)
		return 1;
	else
		return 0;
}

1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
/**
 * beiscsi_flush_cq()- Flush the CQ created.
 * @phba: ptr device priv structure.
 *
 * Before the connection resource are freed flush
 * all the CQ enteries
 **/
static void beiscsi_flush_cq(struct beiscsi_hba *phba)
{
	uint16_t i;
	struct be_eq_obj *pbe_eq;
	struct hwi_controller *phwi_ctrlr;
	struct hwi_context_memory *phwi_context;

	phwi_ctrlr = phba->phwi_ctrlr;
	phwi_context = phwi_ctrlr->phwi_ctxt;

	for (i = 0; i < phba->num_cpus; i++) {
		pbe_eq = &phwi_context->be_eq[i];
1253
		irq_poll_disable(&pbe_eq->iopoll);
1254
		beiscsi_process_cq(pbe_eq, BE2_MAX_NUM_CQ_PROC);
1255
		irq_poll_enable(&pbe_eq->iopoll);
1256 1257 1258
	}
}

1259 1260 1261 1262 1263
/**
 * beiscsi_close_conn - Upload the  connection
 * @ep: The iscsi endpoint
 * @flag: The type of connection closure
 */
1264
static int beiscsi_close_conn(struct  beiscsi_endpoint *beiscsi_ep, int flag)
1265 1266
{
	int ret = 0;
1267
	unsigned int tag;
1268 1269
	struct beiscsi_hba *phba = beiscsi_ep->phba;

1270 1271
	tag = mgmt_upload_connection(phba, beiscsi_ep->ep_cid, flag);
	if (!tag) {
1272 1273 1274 1275
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
			    "BS_%d : upload failed for cid 0x%x\n",
			    beiscsi_ep->ep_cid);

1276
		ret = -EAGAIN;
1277
	}
1278

1279
	ret = beiscsi_mccq_compl_wait(phba, tag, NULL, NULL);
1280 1281 1282 1283

	/* Flush the CQ entries */
	beiscsi_flush_cq(phba);

1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
	return ret;
}

/**
 * beiscsi_unbind_conn_to_cid - Unbind the beiscsi_conn from phba conn table
 * @phba: The phba instance
 * @cid: The cid to free
 */
static int beiscsi_unbind_conn_to_cid(struct beiscsi_hba *phba,
				      unsigned int cid)
{
1295 1296 1297 1298
	uint16_t cri_index = BE_GET_CRI_FROM_CID(cid);

	if (phba->conn_table[cri_index])
		phba->conn_table[cri_index] = NULL;
1299
	else {
1300 1301
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
			    "BS_%d : Connection table Not occupied.\n");
1302 1303 1304 1305 1306 1307
		return -EINVAL;
	}
	return 0;
}

/**
1308 1309 1310 1311
 * beiscsi_ep_disconnect - Tears down the TCP connection
 * @ep:	endpoint to be used
 *
 * Tears down the TCP connection
1312
 */
1313
void beiscsi_ep_disconnect(struct iscsi_endpoint *ep)
1314
{
1315
	struct beiscsi_conn *beiscsi_conn;
1316
	struct beiscsi_endpoint *beiscsi_ep;
1317
	struct beiscsi_hba *phba;
1318
	unsigned int tag;
1319
	uint8_t mgmt_invalidate_flag, tcp_upload_flag;
1320 1321
	unsigned short savecfg_flag = CMD_ISCSI_SESSION_SAVE_CFG_ON_FLASH;

1322 1323
	beiscsi_ep = ep->dd_data;
	phba = beiscsi_ep->phba;
1324 1325 1326
	beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
		    "BS_%d : In beiscsi_ep_disconnect for ep_cid = %d\n",
		    beiscsi_ep->ep_cid);
1327

1328 1329 1330 1331 1332 1333 1334 1335
	if (beiscsi_ep->conn) {
		beiscsi_conn = beiscsi_ep->conn;
		iscsi_suspend_queue(beiscsi_conn->conn);
		mgmt_invalidate_flag = ~BEISCSI_NO_RST_ISSUE;
		tcp_upload_flag = CONNECTION_UPLOAD_GRACEFUL;
	} else {
		mgmt_invalidate_flag = BEISCSI_NO_RST_ISSUE;
		tcp_upload_flag = CONNECTION_UPLOAD_ABORT;
1336
	}
1337

1338
	if (!beiscsi_hba_is_online(phba)) {
1339 1340
		beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_CONFIG,
			    "BS_%d : HBA in error 0x%lx\n", phba->state);
1341 1342 1343
		goto free_ep;
	}

1344
	tag = mgmt_invalidate_connection(phba, beiscsi_ep,
1345 1346 1347
					  beiscsi_ep->ep_cid,
					  mgmt_invalidate_flag,
					  savecfg_flag);
1348
	if (!tag) {
1349
		beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_CONFIG,
1350
			    "BS_%d : mgmt_invalidate_connection Failed for cid=%d\n",
1351
			    beiscsi_ep->ep_cid);
1352
	}
1353

1354
	beiscsi_mccq_compl_wait(phba, tag, NULL, NULL);
1355
	beiscsi_close_conn(beiscsi_ep, tcp_upload_flag);
1356
free_ep:
1357
	msleep(BEISCSI_LOGOUT_SYNC_DELAY);
1358
	beiscsi_free_ep(beiscsi_ep);
1359
	beiscsi_unbind_conn_to_cid(phba, beiscsi_ep->ep_cid);
1360
	iscsi_destroy_endpoint(beiscsi_ep->openiscsi_ep);
1361
}
1362

1363
umode_t beiscsi_attr_is_visible(int param_type, int param)
1364 1365
{
	switch (param_type) {
1366 1367 1368 1369 1370 1371 1372 1373
	case ISCSI_NET_PARAM:
		switch (param) {
		case ISCSI_NET_PARAM_IFACE_ENABLE:
		case ISCSI_NET_PARAM_IPV4_ADDR:
		case ISCSI_NET_PARAM_IPV4_SUBNET:
		case ISCSI_NET_PARAM_IPV4_BOOTPROTO:
		case ISCSI_NET_PARAM_IPV4_GW:
		case ISCSI_NET_PARAM_IPV6_ADDR:
1374 1375 1376
		case ISCSI_NET_PARAM_VLAN_ID:
		case ISCSI_NET_PARAM_VLAN_PRIORITY:
		case ISCSI_NET_PARAM_VLAN_ENABLED:
1377 1378 1379 1380
			return S_IRUGO;
		default:
			return 0;
		}
1381 1382 1383
	case ISCSI_HOST_PARAM:
		switch (param) {
		case ISCSI_HOST_PARAM_HWADDRESS:
1384 1385 1386
		case ISCSI_HOST_PARAM_INITIATOR_NAME:
		case ISCSI_HOST_PARAM_PORT_STATE:
		case ISCSI_HOST_PARAM_PORT_SPEED:
1387 1388 1389 1390
			return S_IRUGO;
		default:
			return 0;
		}
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
	case ISCSI_PARAM:
		switch (param) {
		case ISCSI_PARAM_MAX_RECV_DLENGTH:
		case ISCSI_PARAM_MAX_XMIT_DLENGTH:
		case ISCSI_PARAM_HDRDGST_EN:
		case ISCSI_PARAM_DATADGST_EN:
		case ISCSI_PARAM_CONN_ADDRESS:
		case ISCSI_PARAM_CONN_PORT:
		case ISCSI_PARAM_EXP_STATSN:
		case ISCSI_PARAM_PERSISTENT_ADDRESS:
		case ISCSI_PARAM_PERSISTENT_PORT:
		case ISCSI_PARAM_PING_TMO:
		case ISCSI_PARAM_RECV_TMO:
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
		case ISCSI_PARAM_INITIAL_R2T_EN:
		case ISCSI_PARAM_MAX_R2T:
		case ISCSI_PARAM_IMM_DATA_EN:
		case ISCSI_PARAM_FIRST_BURST:
		case ISCSI_PARAM_MAX_BURST:
		case ISCSI_PARAM_PDU_INORDER_EN:
		case ISCSI_PARAM_DATASEQ_INORDER_EN:
		case ISCSI_PARAM_ERL:
		case ISCSI_PARAM_TARGET_NAME:
		case ISCSI_PARAM_TPGT:
		case ISCSI_PARAM_USERNAME:
		case ISCSI_PARAM_PASSWORD:
		case ISCSI_PARAM_USERNAME_IN:
		case ISCSI_PARAM_PASSWORD_IN:
		case ISCSI_PARAM_FAST_ABORT:
		case ISCSI_PARAM_ABORT_TMO:
		case ISCSI_PARAM_LU_RESET_TMO:
		case ISCSI_PARAM_IFACE_NAME:
		case ISCSI_PARAM_INITIATOR_NAME:
1423 1424 1425 1426 1427 1428 1429 1430
			return S_IRUGO;
		default:
			return 0;
		}
	}

	return 0;
}