be_cmds.c 126.3 KB
Newer Older
S
Sathya Perla 已提交
1
/*
2
 * Copyright (C) 2005 - 2016 Broadcom
S
Sathya Perla 已提交
3 4 5 6 7 8 9 10
 * 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.
 *
 * Contact Information:
11
 * linux-drivers@emulex.com
S
Sathya Perla 已提交
12
 *
13 14 15
 * Emulex
 * 3333 Susan Street
 * Costa Mesa, CA 92626
S
Sathya Perla 已提交
16 17
 */

18
#include <linux/module.h>
S
Sathya Perla 已提交
19
#include "be.h"
20
#include "be_cmds.h"
S
Sathya Perla 已提交
21

22 23 24 25 26 27 28
char *be_misconfig_evt_port_state[] = {
	"Physical Link is functional",
	"Optics faulted/incorrectly installed/not installed - Reseat optics. If issue not resolved, replace.",
	"Optics of two types installed – Remove one optic or install matching pair of optics.",
	"Incompatible optics – Replace with compatible optics for card to function.",
	"Unqualified optics – Replace with Avago optics for Warranty and Technical Support.",
	"Uncertified optics – Replace with Avago-certified optics to enable link operation."
29 30
};

31 32 33 34 35 36 37 38 39 40
static char *be_port_misconfig_evt_severity[] = {
	"KERN_WARN",
	"KERN_INFO",
	"KERN_ERR",
	"KERN_WARN"
};

static char *phy_state_oper_desc[] = {
	"Link is non-operational",
	"Link is operational",
41 42 43
	""
};

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
static struct be_cmd_priv_map cmd_priv_map[] = {
	{
		OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG,
		CMD_SUBSYSTEM_ETH,
		BE_PRIV_LNKMGMT | BE_PRIV_VHADM |
		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC
	},
	{
		OPCODE_COMMON_GET_FLOW_CONTROL,
		CMD_SUBSYSTEM_COMMON,
		BE_PRIV_LNKQUERY | BE_PRIV_VHADM |
		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC
	},
	{
		OPCODE_COMMON_SET_FLOW_CONTROL,
		CMD_SUBSYSTEM_COMMON,
		BE_PRIV_LNKMGMT | BE_PRIV_VHADM |
		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC
	},
	{
		OPCODE_ETH_GET_PPORT_STATS,
		CMD_SUBSYSTEM_ETH,
		BE_PRIV_LNKMGMT | BE_PRIV_VHADM |
		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC
	},
	{
		OPCODE_COMMON_GET_PHY_DETAILS,
		CMD_SUBSYSTEM_COMMON,
		BE_PRIV_LNKMGMT | BE_PRIV_VHADM |
		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	},
	{
		OPCODE_LOWLEVEL_HOST_DDR_DMA,
		CMD_SUBSYSTEM_LOWLEVEL,
		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC
	},
	{
		OPCODE_LOWLEVEL_LOOPBACK_TEST,
		CMD_SUBSYSTEM_LOWLEVEL,
		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC
	},
	{
		OPCODE_LOWLEVEL_SET_LOOPBACK_MODE,
		CMD_SUBSYSTEM_LOWLEVEL,
		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC
	},
90 91 92
	{
		OPCODE_COMMON_SET_HSW_CONFIG,
		CMD_SUBSYSTEM_COMMON,
93 94
		BE_PRIV_DEVCFG | BE_PRIV_VHADM |
		BE_PRIV_DEVSEC
95
	},
96 97 98 99 100
	{
		OPCODE_COMMON_GET_EXT_FAT_CAPABILITIES,
		CMD_SUBSYSTEM_COMMON,
		BE_PRIV_DEVCFG
	}
101 102
};

103
static bool be_cmd_allowed(struct be_adapter *adapter, u8 opcode, u8 subsystem)
104 105 106 107 108 109 110 111 112 113 114 115 116 117
{
	int i;
	int num_entries = sizeof(cmd_priv_map)/sizeof(struct be_cmd_priv_map);
	u32 cmd_privileges = adapter->cmd_privileges;

	for (i = 0; i < num_entries; i++)
		if (opcode == cmd_priv_map[i].opcode &&
		    subsystem == cmd_priv_map[i].subsystem)
			if (!(cmd_privileges & cmd_priv_map[i].priv_mask))
				return false;

	return true;
}

118 119 120 121
static inline void *embedded_payload(struct be_mcc_wrb *wrb)
{
	return wrb->payload.embedded_payload;
}
122

123
static int be_mcc_notify(struct be_adapter *adapter)
124
{
125
	struct be_queue_info *mccq = &adapter->mcc_obj.q;
126 127
	u32 val = 0;

128
	if (be_check_error(adapter, BE_ERROR_ANY))
129
		return -EIO;
130

131 132
	val |= mccq->id & DB_MCCQ_RING_ID_MASK;
	val |= 1 << DB_MCCQ_NUM_POSTED_SHIFT;
133 134

	wmb();
135
	iowrite32(val, adapter->db + DB_MCCQ_OFFSET);
136 137

	return 0;
138 139 140 141 142
}

/* To check if valid bit is set, check the entire word as we don't know
 * the endianness of the data (old entry is host endian while a new entry is
 * little endian) */
143
static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl)
144
{
145 146
	u32 flags;

147
	if (compl->flags != 0) {
148 149 150 151 152
		flags = le32_to_cpu(compl->flags);
		if (flags & CQE_FLAGS_VALID_MASK) {
			compl->flags = flags;
			return true;
		}
153
	}
154
	return false;
155 156 157
}

/* Need to reset the entire word that houses the valid bit */
158
static inline void be_mcc_compl_use(struct be_mcc_compl *compl)
159 160 161 162
{
	compl->flags = 0;
}

163 164 165 166 167 168 169 170 171
static struct be_cmd_resp_hdr *be_decode_resp_hdr(u32 tag0, u32 tag1)
{
	unsigned long addr;

	addr = tag1;
	addr = ((addr << 16) << 16) | tag0;
	return (void *)addr;
}

172 173 174 175 176
static bool be_skip_err_log(u8 opcode, u16 base_status, u16 addl_status)
{
	if (base_status == MCC_STATUS_NOT_SUPPORTED ||
	    base_status == MCC_STATUS_ILLEGAL_REQUEST ||
	    addl_status == MCC_ADDL_STATUS_TOO_MANY_INTERFACES ||
177
	    addl_status == MCC_ADDL_STATUS_INSUFFICIENT_VLANS ||
178 179 180 181 182 183 184 185
	    (opcode == OPCODE_COMMON_WRITE_FLASHROM &&
	    (base_status == MCC_STATUS_ILLEGAL_FIELD ||
	     addl_status == MCC_ADDL_STATUS_FLASH_IMAGE_CRC_MISMATCH)))
		return true;
	else
		return false;
}

186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
/* Place holder for all the async MCC cmds wherein the caller is not in a busy
 * loop (has not issued be_mcc_notify_wait())
 */
static void be_async_cmd_process(struct be_adapter *adapter,
				 struct be_mcc_compl *compl,
				 struct be_cmd_resp_hdr *resp_hdr)
{
	enum mcc_base_status base_status = base_status(compl->status);
	u8 opcode = 0, subsystem = 0;

	if (resp_hdr) {
		opcode = resp_hdr->opcode;
		subsystem = resp_hdr->subsystem;
	}

	if (opcode == OPCODE_LOWLEVEL_LOOPBACK_TEST &&
	    subsystem == CMD_SUBSYSTEM_LOWLEVEL) {
		complete(&adapter->et_cmd_compl);
		return;
	}

207 208 209 210 211 212
	if (opcode == OPCODE_LOWLEVEL_SET_LOOPBACK_MODE &&
	    subsystem == CMD_SUBSYSTEM_LOWLEVEL) {
		complete(&adapter->et_cmd_compl);
		return;
	}

213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
	if ((opcode == OPCODE_COMMON_WRITE_FLASHROM ||
	     opcode == OPCODE_COMMON_WRITE_OBJECT) &&
	    subsystem == CMD_SUBSYSTEM_COMMON) {
		adapter->flash_status = compl->status;
		complete(&adapter->et_cmd_compl);
		return;
	}

	if ((opcode == OPCODE_ETH_GET_STATISTICS ||
	     opcode == OPCODE_ETH_GET_PPORT_STATS) &&
	    subsystem == CMD_SUBSYSTEM_ETH &&
	    base_status == MCC_STATUS_SUCCESS) {
		be_parse_stats(adapter);
		adapter->stats_cmd_sent = false;
		return;
	}

	if (opcode == OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES &&
	    subsystem == CMD_SUBSYSTEM_COMMON) {
		if (base_status == MCC_STATUS_SUCCESS) {
			struct be_cmd_resp_get_cntl_addnl_attribs *resp =
							(void *)resp_hdr;
235
			adapter->hwmon_info.be_on_die_temp =
236 237 238
						resp->on_die_temperature;
		} else {
			adapter->be_get_temp_freq = 0;
239 240
			adapter->hwmon_info.be_on_die_temp =
						BE_INVALID_DIE_TEMP;
241 242 243 244 245
		}
		return;
	}
}

246
static int be_mcc_compl_process(struct be_adapter *adapter,
247
				struct be_mcc_compl *compl)
248
{
249 250
	enum mcc_base_status base_status;
	enum mcc_addl_status addl_status;
251 252
	struct be_cmd_resp_hdr *resp_hdr;
	u8 opcode = 0, subsystem = 0;
253 254 255 256 257

	/* Just swap the status to host endian; mcc tag is opaquely copied
	 * from mcc_wrb */
	be_dws_le_to_cpu(compl, 4);

258 259
	base_status = base_status(compl->status);
	addl_status = addl_status(compl->status);
260

261 262 263 264 265 266
	resp_hdr = be_decode_resp_hdr(compl->tag0, compl->tag1);
	if (resp_hdr) {
		opcode = resp_hdr->opcode;
		subsystem = resp_hdr->subsystem;
	}

267
	be_async_cmd_process(adapter, compl, resp_hdr);
268

269 270
	if (base_status != MCC_STATUS_SUCCESS &&
	    !be_skip_err_log(opcode, base_status, addl_status)) {
271 272
		if (base_status == MCC_STATUS_UNAUTHORIZED_REQUEST ||
		    addl_status == MCC_ADDL_STATUS_INSUFFICIENT_PRIVILEGES) {
273
			dev_warn(&adapter->pdev->dev,
274
				 "VF is not privileged to issue opcode %d-%d\n",
275
				 opcode, subsystem);
276
		} else {
277 278
			dev_err(&adapter->pdev->dev,
				"opcode %d-%d failed:status %d-%d\n",
279
				opcode, subsystem, base_status, addl_status);
280
		}
281
	}
282
	return compl->status;
283 284
}

285
/* Link state evt is a string of bytes; no need for endian swapping */
286
static void be_async_link_state_process(struct be_adapter *adapter,
287
					struct be_mcc_compl *compl)
288
{
289 290 291
	struct be_async_event_link_state *evt =
			(struct be_async_event_link_state *)compl;

292
	/* When link status changes, link speed must be re-queried from FW */
A
Ajit Khaparde 已提交
293
	adapter->phy.link_speed = -1;
294

295 296 297 298 299 300
	/* On BEx the FW does not send a separate link status
	 * notification for physical and logical link.
	 * On other chips just process the logical link
	 * status notification
	 */
	if (!BEx_chip(adapter) &&
301 302 303
	    !(evt->port_link_status & LOGICAL_LINK_STATUS_MASK))
		return;

304 305 306 307
	/* For the initial link status do not rely on the ASYNC event as
	 * it may not be received in some cases.
	 */
	if (adapter->flags & BE_FLAGS_LINK_STATUS_INIT)
308 309
		be_link_status_update(adapter,
				      evt->port_link_status & LINK_STATUS_MASK);
310 311
}

312 313 314 315 316
static void be_async_port_misconfig_event_process(struct be_adapter *adapter,
						  struct be_mcc_compl *compl)
{
	struct be_async_event_misconfig_port *evt =
			(struct be_async_event_misconfig_port *)compl;
317 318 319
	u32 sfp_misconfig_evt_word1 = le32_to_cpu(evt->event_data_word1);
	u32 sfp_misconfig_evt_word2 = le32_to_cpu(evt->event_data_word2);
	u8 phy_oper_state = PHY_STATE_OPER_MSG_NONE;
320
	struct device *dev = &adapter->pdev->dev;
321 322 323 324 325 326 327 328 329 330 331
	u8 msg_severity = DEFAULT_MSG_SEVERITY;
	u8 phy_state_info;
	u8 new_phy_state;

	new_phy_state =
		(sfp_misconfig_evt_word1 >> (adapter->hba_port_num * 8)) & 0xff;

	if (new_phy_state == adapter->phy_state)
		return;

	adapter->phy_state = new_phy_state;
332

333 334 335
	/* for older fw that doesn't populate link effect data */
	if (!sfp_misconfig_evt_word2)
		goto log_message;
336

337 338 339 340 341 342 343 344 345 346 347
	phy_state_info =
		(sfp_misconfig_evt_word2 >> (adapter->hba_port_num * 8)) & 0xff;

	if (phy_state_info & PHY_STATE_INFO_VALID) {
		msg_severity = (phy_state_info & PHY_STATE_MSG_SEVERITY) >> 1;

		if (be_phy_unqualified(new_phy_state))
			phy_oper_state = (phy_state_info & PHY_STATE_OPER);
	}

log_message:
348 349 350
	/* Log an error message that would allow a user to determine
	 * whether the SFPs have an issue
	 */
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
	if (be_phy_state_unknown(new_phy_state))
		dev_printk(be_port_misconfig_evt_severity[msg_severity], dev,
			   "Port %c: Unrecognized Optics state: 0x%x. %s",
			   adapter->port_name,
			   new_phy_state,
			   phy_state_oper_desc[phy_oper_state]);
	else
		dev_printk(be_port_misconfig_evt_severity[msg_severity], dev,
			   "Port %c: %s %s",
			   adapter->port_name,
			   be_misconfig_evt_port_state[new_phy_state],
			   phy_state_oper_desc[phy_oper_state]);

	/* Log Vendor name and part no. if a misconfigured SFP is detected */
	if (be_phy_misconfigured(new_phy_state))
		adapter->flags |= BE_FLAGS_PHY_MISCONFIGURED;
367 368
}

369 370
/* Grp5 CoS Priority evt */
static void be_async_grp5_cos_priority_process(struct be_adapter *adapter,
371
					       struct be_mcc_compl *compl)
372
{
373 374 375
	struct be_async_event_grp5_cos_priority *evt =
			(struct be_async_event_grp5_cos_priority *)compl;

376 377
	if (evt->valid) {
		adapter->vlan_prio_bmap = evt->available_priority_bmap;
378
		adapter->recommended_prio_bits =
379 380 381 382
			evt->reco_default_priority << VLAN_PRIO_SHIFT;
	}
}

383
/* Grp5 QOS Speed evt: qos_link_speed is in units of 10 Mbps */
384
static void be_async_grp5_qos_speed_process(struct be_adapter *adapter,
385
					    struct be_mcc_compl *compl)
386
{
387 388 389
	struct be_async_event_grp5_qos_link_speed *evt =
			(struct be_async_event_grp5_qos_link_speed *)compl;

390 391 392
	if (adapter->phy.link_speed >= 0 &&
	    evt->physical_port == adapter->port_num)
		adapter->phy.link_speed = le16_to_cpu(evt->qos_link_speed) * 10;
393 394
}

395 396
/*Grp5 PVID evt*/
static void be_async_grp5_pvid_state_process(struct be_adapter *adapter,
397
					     struct be_mcc_compl *compl)
398
{
399 400 401
	struct be_async_event_grp5_pvid_state *evt =
			(struct be_async_event_grp5_pvid_state *)compl;

402
	if (evt->enabled) {
403
		adapter->pvid = le16_to_cpu(evt->tag) & VLAN_VID_MASK;
404 405
		dev_info(&adapter->pdev->dev, "LPVID: %d\n", adapter->pvid);
	} else {
406
		adapter->pvid = 0;
407
	}
408 409
}

V
Venkata Duvvuru 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
#define MGMT_ENABLE_MASK	0x4
static void be_async_grp5_fw_control_process(struct be_adapter *adapter,
					     struct be_mcc_compl *compl)
{
	struct be_async_fw_control *evt = (struct be_async_fw_control *)compl;
	u32 evt_dw1 = le32_to_cpu(evt->event_data_word1);

	if (evt_dw1 & MGMT_ENABLE_MASK) {
		adapter->flags |= BE_FLAGS_OS2BMC;
		adapter->bmc_filt_mask = le32_to_cpu(evt->event_data_word2);
	} else {
		adapter->flags &= ~BE_FLAGS_OS2BMC;
	}
}

425
static void be_async_grp5_evt_process(struct be_adapter *adapter,
426
				      struct be_mcc_compl *compl)
427
{
428 429
	u8 event_type = (compl->flags >> ASYNC_EVENT_TYPE_SHIFT) &
				ASYNC_EVENT_TYPE_MASK;
430 431 432

	switch (event_type) {
	case ASYNC_EVENT_COS_PRIORITY:
433 434
		be_async_grp5_cos_priority_process(adapter, compl);
		break;
435
	case ASYNC_EVENT_QOS_SPEED:
436 437
		be_async_grp5_qos_speed_process(adapter, compl);
		break;
438
	case ASYNC_EVENT_PVID_STATE:
439 440
		be_async_grp5_pvid_state_process(adapter, compl);
		break;
V
Venkata Duvvuru 已提交
441 442 443 444
	/* Async event to disable/enable os2bmc and/or mac-learning */
	case ASYNC_EVENT_FW_CONTROL:
		be_async_grp5_fw_control_process(adapter, compl);
		break;
445 446 447 448 449
	default:
		break;
	}
}

450
static void be_async_dbg_evt_process(struct be_adapter *adapter,
451
				     struct be_mcc_compl *cmp)
452 453
{
	u8 event_type = 0;
K
Kalesh AP 已提交
454
	struct be_async_event_qnq *evt = (struct be_async_event_qnq *)cmp;
455

456 457
	event_type = (cmp->flags >> ASYNC_EVENT_TYPE_SHIFT) &
			ASYNC_EVENT_TYPE_MASK;
458 459 460 461 462 463 464 465

	switch (event_type) {
	case ASYNC_DEBUG_EVENT_TYPE_QNQ:
		if (evt->valid)
			adapter->qnq_vid = le16_to_cpu(evt->vlan_tag);
		adapter->flags |= BE_FLAGS_QNQ_ASYNC_EVT_RCVD;
	break;
	default:
466 467
		dev_warn(&adapter->pdev->dev, "Unknown debug event 0x%x!\n",
			 event_type);
468 469 470 471
	break;
	}
}

472 473 474 475 476 477 478 479 480 481
static void be_async_sliport_evt_process(struct be_adapter *adapter,
					 struct be_mcc_compl *cmp)
{
	u8 event_type = (cmp->flags >> ASYNC_EVENT_TYPE_SHIFT) &
			ASYNC_EVENT_TYPE_MASK;

	if (event_type == ASYNC_EVENT_PORT_MISCONFIG)
		be_async_port_misconfig_event_process(adapter, cmp);
}

482
static inline bool is_link_state_evt(u32 flags)
483
{
484 485
	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) ==
			ASYNC_EVENT_CODE_LINK_STATE;
486
}
487

488
static inline bool is_grp5_evt(u32 flags)
489
{
490 491
	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) ==
			ASYNC_EVENT_CODE_GRP_5;
492 493
}

494
static inline bool is_dbg_evt(u32 flags)
495
{
496 497 498 499
	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) ==
			ASYNC_EVENT_CODE_QNQ;
}

500 501 502 503 504 505
static inline bool is_sliport_evt(u32 flags)
{
	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) ==
		ASYNC_EVENT_CODE_SLIPORT;
}

506 507 508 509 510 511 512 513 514
static void be_mcc_event_process(struct be_adapter *adapter,
				 struct be_mcc_compl *compl)
{
	if (is_link_state_evt(compl->flags))
		be_async_link_state_process(adapter, compl);
	else if (is_grp5_evt(compl->flags))
		be_async_grp5_evt_process(adapter, compl);
	else if (is_dbg_evt(compl->flags))
		be_async_dbg_evt_process(adapter, compl);
515 516
	else if (is_sliport_evt(compl->flags))
		be_async_sliport_evt_process(adapter, compl);
517 518
}

519
static struct be_mcc_compl *be_mcc_compl_get(struct be_adapter *adapter)
520
{
521
	struct be_queue_info *mcc_cq = &adapter->mcc_obj.cq;
522
	struct be_mcc_compl *compl = queue_tail_node(mcc_cq);
523 524 525 526 527 528 529 530

	if (be_mcc_compl_is_new(compl)) {
		queue_tail_inc(mcc_cq);
		return compl;
	}
	return NULL;
}

531 532 533 534 535 536 537 538 539 540 541 542
void be_async_mcc_enable(struct be_adapter *adapter)
{
	spin_lock_bh(&adapter->mcc_cq_lock);

	be_cq_notify(adapter, adapter->mcc_obj.cq.id, true, 0);
	adapter->mcc_obj.rearm_cq = true;

	spin_unlock_bh(&adapter->mcc_cq_lock);
}

void be_async_mcc_disable(struct be_adapter *adapter)
{
543 544
	spin_lock_bh(&adapter->mcc_cq_lock);

545
	adapter->mcc_obj.rearm_cq = false;
546 547 548
	be_cq_notify(adapter, adapter->mcc_obj.cq.id, false, 0);

	spin_unlock_bh(&adapter->mcc_cq_lock);
549 550
}

S
Sathya Perla 已提交
551
int be_process_mcc(struct be_adapter *adapter)
552
{
553
	struct be_mcc_compl *compl;
S
Sathya Perla 已提交
554
	int num = 0, status = 0;
555
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
556

557
	spin_lock(&adapter->mcc_cq_lock);
558

559
	while ((compl = be_mcc_compl_get(adapter))) {
560
		if (compl->flags & CQE_FLAGS_ASYNC_MASK) {
561
			be_mcc_event_process(adapter, compl);
562
		} else if (compl->flags & CQE_FLAGS_COMPLETED_MASK) {
563 564
			status = be_mcc_compl_process(adapter, compl);
			atomic_dec(&mcc_obj->q.used);
565 566 567 568
		}
		be_mcc_compl_use(compl);
		num++;
	}
569

S
Sathya Perla 已提交
570 571 572
	if (num)
		be_cq_notify(adapter, mcc_obj->cq.id, mcc_obj->rearm_cq, num);

573
	spin_unlock(&adapter->mcc_cq_lock);
S
Sathya Perla 已提交
574
	return status;
575 576
}

577
/* Wait till no more pending mcc requests are present */
578
static int be_mcc_wait_compl(struct be_adapter *adapter)
579
{
580
#define mcc_timeout		12000 /* 12s timeout */
S
Sathya Perla 已提交
581
	int i, status = 0;
S
Sathya Perla 已提交
582 583
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;

584
	for (i = 0; i < mcc_timeout; i++) {
585
		if (be_check_error(adapter, BE_ERROR_ANY))
586 587
			return -EIO;

588
		local_bh_disable();
S
Sathya Perla 已提交
589
		status = be_process_mcc(adapter);
590
		local_bh_enable();
591

S
Sathya Perla 已提交
592
		if (atomic_read(&mcc_obj->q.used) == 0)
593
			break;
594
		usleep_range(500, 1000);
595
	}
596
	if (i == mcc_timeout) {
597
		dev_err(&adapter->pdev->dev, "FW not responding\n");
598
		be_set_error(adapter, BE_ERROR_FW);
599
		return -EIO;
600
	}
S
Sathya Perla 已提交
601
	return status;
602 603 604
}

/* Notify MCC requests and wait for completion */
605
static int be_mcc_notify_wait(struct be_adapter *adapter)
606
{
607 608 609
	int status;
	struct be_mcc_wrb *wrb;
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
610
	u32 index = mcc_obj->q.head;
611 612 613 614 615 616 617
	struct be_cmd_resp_hdr *resp;

	index_dec(&index, mcc_obj->q.len);
	wrb = queue_index_node(&mcc_obj->q, index);

	resp = be_decode_resp_hdr(wrb->tag0, wrb->tag1);

618 619 620
	status = be_mcc_notify(adapter);
	if (status)
		goto out;
621 622 623 624 625

	status = be_mcc_wait_compl(adapter);
	if (status == -EIO)
		goto out;

626 627 628
	status = (resp->base_status |
		  ((resp->addl_status & CQE_ADDL_STATUS_MASK) <<
		   CQE_ADDL_STATUS_SHIFT));
629 630
out:
	return status;
631 632
}

633
static int be_mbox_db_ready_wait(struct be_adapter *adapter, void __iomem *db)
S
Sathya Perla 已提交
634
{
635
	int msecs = 0;
S
Sathya Perla 已提交
636 637 638
	u32 ready;

	do {
639
		if (be_check_error(adapter, BE_ERROR_ANY))
640 641
			return -EIO;

642
		ready = ioread32(db);
643
		if (ready == 0xffffffff)
644 645 646
			return -1;

		ready &= MPU_MAILBOX_DB_RDY_MASK;
S
Sathya Perla 已提交
647 648 649
		if (ready)
			break;

650
		if (msecs > 4000) {
651
			dev_err(&adapter->pdev->dev, "FW not responding\n");
652
			be_set_error(adapter, BE_ERROR_FW);
653
			be_detect_error(adapter);
S
Sathya Perla 已提交
654 655 656
			return -1;
		}

657
		msleep(1);
658
		msecs++;
S
Sathya Perla 已提交
659 660 661 662 663 664 665
	} while (true);

	return 0;
}

/*
 * Insert the mailbox address into the doorbell in two steps
666
 * Polls on the mbox doorbell till a command completion (or a timeout) occurs
S
Sathya Perla 已提交
667
 */
668
static int be_mbox_notify_wait(struct be_adapter *adapter)
S
Sathya Perla 已提交
669 670 671
{
	int status;
	u32 val = 0;
672 673
	void __iomem *db = adapter->db + MPU_MAILBOX_DB_OFFSET;
	struct be_dma_mem *mbox_mem = &adapter->mbox_mem;
S
Sathya Perla 已提交
674
	struct be_mcc_mailbox *mbox = mbox_mem->va;
675
	struct be_mcc_compl *compl = &mbox->compl;
S
Sathya Perla 已提交
676

677 678 679 680 681
	/* wait for ready to be set */
	status = be_mbox_db_ready_wait(adapter, db);
	if (status != 0)
		return status;

S
Sathya Perla 已提交
682 683 684 685 686 687
	val |= MPU_MAILBOX_DB_HI_MASK;
	/* at bits 2 - 31 place mbox dma addr msb bits 34 - 63 */
	val |= (upper_32_bits(mbox_mem->dma) >> 2) << 2;
	iowrite32(val, db);

	/* wait for ready to be set */
688
	status = be_mbox_db_ready_wait(adapter, db);
S
Sathya Perla 已提交
689 690 691 692 693 694 695 696
	if (status != 0)
		return status;

	val = 0;
	/* at bits 2 - 31 place mbox dma addr lsb bits 4 - 33 */
	val |= (u32)(mbox_mem->dma >> 4) << 2;
	iowrite32(val, db);

697
	status = be_mbox_db_ready_wait(adapter, db);
S
Sathya Perla 已提交
698 699 700
	if (status != 0)
		return status;

701
	/* A cq entry has been made now */
702 703 704
	if (be_mcc_compl_is_new(compl)) {
		status = be_mcc_compl_process(adapter, &mbox->compl);
		be_mcc_compl_use(compl);
705 706 707
		if (status)
			return status;
	} else {
708
		dev_err(&adapter->pdev->dev, "invalid mailbox completion\n");
S
Sathya Perla 已提交
709 710
		return -1;
	}
711
	return 0;
S
Sathya Perla 已提交
712 713
}

714
u16 be_POST_stage_get(struct be_adapter *adapter)
S
Sathya Perla 已提交
715
{
716 717
	u32 sem;

718 719
	if (BEx_chip(adapter))
		sem  = ioread32(adapter->csr + SLIPORT_SEMAPHORE_OFFSET_BEx);
S
Sathya Perla 已提交
720
	else
721 722 723 724
		pci_read_config_dword(adapter->pdev,
				      SLIPORT_SEMAPHORE_OFFSET_SH, &sem);

	return sem & POST_STAGE_MASK;
S
Sathya Perla 已提交
725 726
}

727
static int lancer_wait_ready(struct be_adapter *adapter)
728 729 730
{
#define SLIPORT_READY_TIMEOUT 30
	u32 sliport_status;
731
	int i;
732 733 734 735

	for (i = 0; i < SLIPORT_READY_TIMEOUT; i++) {
		sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET);
		if (sliport_status & SLIPORT_STATUS_RDY_MASK)
736
			return 0;
737

738 739 740
		if (sliport_status & SLIPORT_STATUS_ERR_MASK &&
		    !(sliport_status & SLIPORT_STATUS_RN_MASK))
			return -EIO;
741

742
		msleep(1000);
743
	}
744

745
	return sliport_status ? : -1;
746 747 748
}

int be_fw_wait_ready(struct be_adapter *adapter)
S
Sathya Perla 已提交
749
{
750 751
	u16 stage;
	int status, timeout = 0;
752
	struct device *dev = &adapter->pdev->dev;
S
Sathya Perla 已提交
753

754 755
	if (lancer_chip(adapter)) {
		status = lancer_wait_ready(adapter);
756 757 758 759 760
		if (status) {
			stage = status;
			goto err;
		}
		return 0;
761 762
	}

763
	do {
764 765 766 767
		/* There's no means to poll POST state on BE2/3 VFs */
		if (BEx_chip(adapter) && be_virtfn(adapter))
			return 0;

768
		stage = be_POST_stage_get(adapter);
G
Gavin Shan 已提交
769
		if (stage == POST_STAGE_ARMFW_RDY)
770
			return 0;
G
Gavin Shan 已提交
771

772
		dev_info(dev, "Waiting for POST, %ds elapsed\n", timeout);
G
Gavin Shan 已提交
773 774 775
		if (msleep_interruptible(2000)) {
			dev_err(dev, "Waiting for POST aborted\n");
			return -EINTR;
776
		}
G
Gavin Shan 已提交
777
		timeout += 2;
778
	} while (timeout < 60);
S
Sathya Perla 已提交
779

780 781
err:
	dev_err(dev, "POST timeout; stage=%#x\n", stage);
782
	return -ETIMEDOUT;
S
Sathya Perla 已提交
783 784 785 786 787 788 789
}

static inline struct be_sge *nonembedded_sgl(struct be_mcc_wrb *wrb)
{
	return &wrb->payload.sgl[0];
}

790
static inline void fill_wrb_tags(struct be_mcc_wrb *wrb, unsigned long addr)
791 792 793 794
{
	wrb->tag0 = addr & 0xFFFFFFFF;
	wrb->tag1 = upper_32_bits(addr);
}
S
Sathya Perla 已提交
795 796

/* Don't touch the hdr after it's prepared */
S
Somnath Kotur 已提交
797 798
/* mem will be NULL for embedded commands */
static void be_wrb_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr,
799 800 801
				   u8 subsystem, u8 opcode, int cmd_len,
				   struct be_mcc_wrb *wrb,
				   struct be_dma_mem *mem)
S
Sathya Perla 已提交
802
{
S
Somnath Kotur 已提交
803 804
	struct be_sge *sge;

S
Sathya Perla 已提交
805 806 807
	req_hdr->opcode = opcode;
	req_hdr->subsystem = subsystem;
	req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr));
808
	req_hdr->version = 0;
809
	fill_wrb_tags(wrb, (ulong) req_hdr);
S
Somnath Kotur 已提交
810 811 812 813 814 815 816 817 818 819 820
	wrb->payload_length = cmd_len;
	if (mem) {
		wrb->embedded |= (1 & MCC_WRB_SGE_CNT_MASK) <<
			MCC_WRB_SGE_CNT_SHIFT;
		sge = nonembedded_sgl(wrb);
		sge->pa_hi = cpu_to_le32(upper_32_bits(mem->dma));
		sge->pa_lo = cpu_to_le32(mem->dma & 0xFFFFFFFF);
		sge->len = cpu_to_le32(mem->size);
	} else
		wrb->embedded |= MCC_WRB_EMBEDDED_MASK;
	be_dws_cpu_to_le(wrb, 8);
S
Sathya Perla 已提交
821 822 823
}

static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages,
824
				      struct be_dma_mem *mem)
S
Sathya Perla 已提交
825 826 827 828 829 830 831 832 833 834 835
{
	int i, buf_pages = min(PAGES_4K_SPANNED(mem->va, mem->size), max_pages);
	u64 dma = (u64)mem->dma;

	for (i = 0; i < buf_pages; i++) {
		pages[i].lo = cpu_to_le32(dma & 0xFFFFFFFF);
		pages[i].hi = cpu_to_le32(upper_32_bits(dma));
		dma += PAGE_SIZE_4K;
	}
}

836
static inline struct be_mcc_wrb *wrb_from_mbox(struct be_adapter *adapter)
S
Sathya Perla 已提交
837
{
838 839 840 841 842
	struct be_dma_mem *mbox_mem = &adapter->mbox_mem;
	struct be_mcc_wrb *wrb
		= &((struct be_mcc_mailbox *)(mbox_mem->va))->wrb;
	memset(wrb, 0, sizeof(*wrb));
	return wrb;
S
Sathya Perla 已提交
843 844
}

845
static struct be_mcc_wrb *wrb_from_mccq(struct be_adapter *adapter)
846
{
847 848 849
	struct be_queue_info *mccq = &adapter->mcc_obj.q;
	struct be_mcc_wrb *wrb;

850 851 852
	if (!mccq->created)
		return NULL;

853
	if (atomic_read(&mccq->used) >= mccq->len)
854 855
		return NULL;

856 857 858 859
	wrb = queue_head_node(mccq);
	queue_head_inc(mccq);
	atomic_inc(&mccq->used);
	memset(wrb, 0, sizeof(*wrb));
860 861 862
	return wrb;
}

863 864 865 866 867 868 869 870 871
static bool use_mcc(struct be_adapter *adapter)
{
	return adapter->mcc_obj.q.created;
}

/* Must be used only in process context */
static int be_cmd_lock(struct be_adapter *adapter)
{
	if (use_mcc(adapter)) {
872
		mutex_lock(&adapter->mcc_lock);
873 874 875 876 877 878 879 880 881 882
		return 0;
	} else {
		return mutex_lock_interruptible(&adapter->mbox_lock);
	}
}

/* Must be used only in process context */
static void be_cmd_unlock(struct be_adapter *adapter)
{
	if (use_mcc(adapter))
883
		return mutex_unlock(&adapter->mcc_lock);
884 885 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 918 919
	else
		return mutex_unlock(&adapter->mbox_lock);
}

static struct be_mcc_wrb *be_cmd_copy(struct be_adapter *adapter,
				      struct be_mcc_wrb *wrb)
{
	struct be_mcc_wrb *dest_wrb;

	if (use_mcc(adapter)) {
		dest_wrb = wrb_from_mccq(adapter);
		if (!dest_wrb)
			return NULL;
	} else {
		dest_wrb = wrb_from_mbox(adapter);
	}

	memcpy(dest_wrb, wrb, sizeof(*wrb));
	if (wrb->embedded & cpu_to_le32(MCC_WRB_EMBEDDED_MASK))
		fill_wrb_tags(dest_wrb, (ulong) embedded_payload(wrb));

	return dest_wrb;
}

/* Must be used only in process context */
static int be_cmd_notify_wait(struct be_adapter *adapter,
			      struct be_mcc_wrb *wrb)
{
	struct be_mcc_wrb *dest_wrb;
	int status;

	status = be_cmd_lock(adapter);
	if (status)
		return status;

	dest_wrb = be_cmd_copy(adapter, wrb);
920 921 922 923
	if (!dest_wrb) {
		status = -EBUSY;
		goto unlock;
	}
924 925 926 927 928 929 930 931 932

	if (use_mcc(adapter))
		status = be_mcc_notify_wait(adapter);
	else
		status = be_mbox_notify_wait(adapter);

	if (!status)
		memcpy(wrb, dest_wrb, sizeof(*wrb));

933
unlock:
934 935 936 937
	be_cmd_unlock(adapter);
	return status;
}

938 939 940 941 942 943 944 945
/* Tell fw we're about to start firing cmds by writing a
 * special pattern across the wrb hdr; uses mbox
 */
int be_cmd_fw_init(struct be_adapter *adapter)
{
	u8 *wrb;
	int status;

946 947 948
	if (lancer_chip(adapter))
		return 0;

949 950
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
951 952

	wrb = (u8 *)wrb_from_mbox(adapter);
S
Sathya Perla 已提交
953 954 955 956 957 958 959 960
	*wrb++ = 0xFF;
	*wrb++ = 0x12;
	*wrb++ = 0x34;
	*wrb++ = 0xFF;
	*wrb++ = 0xFF;
	*wrb++ = 0x56;
	*wrb++ = 0x78;
	*wrb = 0xFF;
961 962 963

	status = be_mbox_notify_wait(adapter);

964
	mutex_unlock(&adapter->mbox_lock);
965 966 967 968 969 970 971 972 973 974 975
	return status;
}

/* Tell fw we're done with firing cmds by writing a
 * special pattern across the wrb hdr; uses mbox
 */
int be_cmd_fw_clean(struct be_adapter *adapter)
{
	u8 *wrb;
	int status;

976 977 978
	if (lancer_chip(adapter))
		return 0;

979 980
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
981 982 983 984 985 986 987 988 989 990 991 992 993

	wrb = (u8 *)wrb_from_mbox(adapter);
	*wrb++ = 0xFF;
	*wrb++ = 0xAA;
	*wrb++ = 0xBB;
	*wrb++ = 0xFF;
	*wrb++ = 0xFF;
	*wrb++ = 0xCC;
	*wrb++ = 0xDD;
	*wrb = 0xFF;

	status = be_mbox_notify_wait(adapter);

994
	mutex_unlock(&adapter->mbox_lock);
995 996
	return status;
}
997

S
Sathya Perla 已提交
998
int be_cmd_eq_create(struct be_adapter *adapter, struct be_eq_obj *eqo)
S
Sathya Perla 已提交
999
{
1000 1001
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_eq_create *req;
S
Sathya Perla 已提交
1002 1003
	struct be_dma_mem *q_mem = &eqo->q.dma_mem;
	int status, ver = 0;
S
Sathya Perla 已提交
1004

1005 1006
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
1007 1008 1009

	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1010

S
Somnath Kotur 已提交
1011
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1012 1013
			       OPCODE_COMMON_EQ_CREATE, sizeof(*req), wrb,
			       NULL);
S
Sathya Perla 已提交
1014

S
Sathya Perla 已提交
1015 1016 1017 1018 1019
	/* Support for EQ_CREATEv2 available only SH-R onwards */
	if (!(BEx_chip(adapter) || lancer_chip(adapter)))
		ver = 2;

	req->hdr.version = ver;
S
Sathya Perla 已提交
1020 1021 1022 1023 1024 1025
	req->num_pages =  cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size));

	AMAP_SET_BITS(struct amap_eq_context, valid, req->context, 1);
	/* 4byte eqe*/
	AMAP_SET_BITS(struct amap_eq_context, size, req->context, 0);
	AMAP_SET_BITS(struct amap_eq_context, count, req->context,
S
Sathya Perla 已提交
1026
		      __ilog2_u32(eqo->q.len / 256));
S
Sathya Perla 已提交
1027 1028 1029 1030
	be_dws_cpu_to_le(req->context, sizeof(req->context));

	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem);

1031
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
1032
	if (!status) {
1033
		struct be_cmd_resp_eq_create *resp = embedded_payload(wrb);
1034

S
Sathya Perla 已提交
1035 1036 1037 1038
		eqo->q.id = le16_to_cpu(resp->eq_id);
		eqo->msix_idx =
			(ver == 2) ? le16_to_cpu(resp->msix_idx) : eqo->idx;
		eqo->q.created = true;
S
Sathya Perla 已提交
1039
	}
1040

1041
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
1042 1043 1044
	return status;
}

1045
/* Use MCC */
1046
int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
1047
			  bool permanent, u32 if_handle, u32 pmac_id)
S
Sathya Perla 已提交
1048
{
1049 1050
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_mac_query *req;
S
Sathya Perla 已提交
1051 1052
	int status;

1053
	mutex_lock(&adapter->mcc_lock);
1054

1055 1056 1057 1058 1059
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1060
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1061

S
Somnath Kotur 已提交
1062
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1063 1064
			       OPCODE_COMMON_NTWK_MAC_QUERY, sizeof(*req), wrb,
			       NULL);
1065
	req->type = MAC_ADDRESS_TYPE_NETWORK;
S
Sathya Perla 已提交
1066 1067 1068
	if (permanent) {
		req->permanent = 1;
	} else {
K
Kalesh AP 已提交
1069
		req->if_id = cpu_to_le16((u16)if_handle);
1070
		req->pmac_id = cpu_to_le32(pmac_id);
S
Sathya Perla 已提交
1071 1072 1073
		req->permanent = 0;
	}

1074
	status = be_mcc_notify_wait(adapter);
1075 1076
	if (!status) {
		struct be_cmd_resp_mac_query *resp = embedded_payload(wrb);
1077

S
Sathya Perla 已提交
1078
		memcpy(mac_addr, resp->mac.addr, ETH_ALEN);
1079
	}
S
Sathya Perla 已提交
1080

1081
err:
1082
	mutex_unlock(&adapter->mcc_lock);
S
Sathya Perla 已提交
1083 1084 1085
	return status;
}

1086
/* Uses synchronous MCCQ */
1087
int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
1088
		    u32 if_id, u32 *pmac_id, u32 domain)
S
Sathya Perla 已提交
1089
{
1090 1091
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_pmac_add *req;
S
Sathya Perla 已提交
1092 1093
	int status;

1094
	mutex_lock(&adapter->mcc_lock);
1095 1096

	wrb = wrb_from_mccq(adapter);
1097 1098 1099 1100
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1101
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1102

S
Somnath Kotur 已提交
1103
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1104 1105
			       OPCODE_COMMON_NTWK_PMAC_ADD, sizeof(*req), wrb,
			       NULL);
S
Sathya Perla 已提交
1106

1107
	req->hdr.domain = domain;
S
Sathya Perla 已提交
1108 1109 1110
	req->if_id = cpu_to_le32(if_id);
	memcpy(req->mac_address, mac_addr, ETH_ALEN);

1111
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1112 1113
	if (!status) {
		struct be_cmd_resp_pmac_add *resp = embedded_payload(wrb);
1114

S
Sathya Perla 已提交
1115 1116 1117
		*pmac_id = le32_to_cpu(resp->pmac_id);
	}

1118
err:
1119
	mutex_unlock(&adapter->mcc_lock);
1120

1121
	 if (base_status(status) == MCC_STATUS_UNAUTHORIZED_REQUEST)
1122 1123
		status = -EPERM;

S
Sathya Perla 已提交
1124 1125 1126
	return status;
}

1127
/* Uses synchronous MCCQ */
1128
int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, int pmac_id, u32 dom)
S
Sathya Perla 已提交
1129
{
1130 1131
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_pmac_del *req;
S
Sathya Perla 已提交
1132 1133
	int status;

1134 1135 1136
	if (pmac_id == -1)
		return 0;

1137
	mutex_lock(&adapter->mcc_lock);
1138 1139

	wrb = wrb_from_mccq(adapter);
1140 1141 1142 1143
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1144
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1145

S
Somnath Kotur 已提交
1146
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
K
Kalesh AP 已提交
1147 1148
			       OPCODE_COMMON_NTWK_PMAC_DEL, sizeof(*req),
			       wrb, NULL);
S
Sathya Perla 已提交
1149

1150
	req->hdr.domain = dom;
S
Sathya Perla 已提交
1151 1152 1153
	req->if_id = cpu_to_le32(if_id);
	req->pmac_id = cpu_to_le32(pmac_id);

1154 1155
	status = be_mcc_notify_wait(adapter);

1156
err:
1157
	mutex_unlock(&adapter->mcc_lock);
S
Sathya Perla 已提交
1158 1159 1160
	return status;
}

1161
/* Uses Mbox */
S
Sathya Perla 已提交
1162
int be_cmd_cq_create(struct be_adapter *adapter, struct be_queue_info *cq,
1163
		     struct be_queue_info *eq, bool no_delay, int coalesce_wm)
S
Sathya Perla 已提交
1164
{
1165 1166
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_cq_create *req;
S
Sathya Perla 已提交
1167
	struct be_dma_mem *q_mem = &cq->dma_mem;
1168
	void *ctxt;
S
Sathya Perla 已提交
1169 1170
	int status;

1171 1172
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
1173 1174 1175 1176

	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
	ctxt = &req->context;
S
Sathya Perla 已提交
1177

S
Somnath Kotur 已提交
1178
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1179 1180
			       OPCODE_COMMON_CQ_CREATE, sizeof(*req), wrb,
			       NULL);
S
Sathya Perla 已提交
1181 1182

	req->num_pages =  cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size));
1183 1184

	if (BEx_chip(adapter)) {
1185
		AMAP_SET_BITS(struct amap_cq_context_be, coalescwm, ctxt,
1186
			      coalesce_wm);
1187
		AMAP_SET_BITS(struct amap_cq_context_be, nodelay,
1188
			      ctxt, no_delay);
1189
		AMAP_SET_BITS(struct amap_cq_context_be, count, ctxt,
1190
			      __ilog2_u32(cq->len / 256));
1191 1192 1193
		AMAP_SET_BITS(struct amap_cq_context_be, valid, ctxt, 1);
		AMAP_SET_BITS(struct amap_cq_context_be, eventable, ctxt, 1);
		AMAP_SET_BITS(struct amap_cq_context_be, eqid, ctxt, eq->id);
1194 1195 1196
	} else {
		req->hdr.version = 2;
		req->page_size = 1; /* 1 for 4K */
1197 1198 1199 1200 1201 1202 1203

		/* coalesce-wm field in this cmd is not relevant to Lancer.
		 * Lancer uses COMMON_MODIFY_CQ to set this field
		 */
		if (!lancer_chip(adapter))
			AMAP_SET_BITS(struct amap_cq_context_v2, coalescwm,
				      ctxt, coalesce_wm);
1204
		AMAP_SET_BITS(struct amap_cq_context_v2, nodelay, ctxt,
1205
			      no_delay);
1206
		AMAP_SET_BITS(struct amap_cq_context_v2, count, ctxt,
1207
			      __ilog2_u32(cq->len / 256));
1208
		AMAP_SET_BITS(struct amap_cq_context_v2, valid, ctxt, 1);
1209 1210
		AMAP_SET_BITS(struct amap_cq_context_v2, eventable, ctxt, 1);
		AMAP_SET_BITS(struct amap_cq_context_v2, eqid, ctxt, eq->id);
1211
	}
S
Sathya Perla 已提交
1212 1213 1214 1215 1216

	be_dws_cpu_to_le(ctxt, sizeof(req->context));

	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem);

1217
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
1218
	if (!status) {
1219
		struct be_cmd_resp_cq_create *resp = embedded_payload(wrb);
1220

S
Sathya Perla 已提交
1221 1222 1223
		cq->id = le16_to_cpu(resp->cq_id);
		cq->created = true;
	}
1224

1225
	mutex_unlock(&adapter->mbox_lock);
1226 1227 1228 1229 1230 1231 1232

	return status;
}

static u32 be_encoded_q_len(int q_len)
{
	u32 len_encoded = fls(q_len); /* log2(len) + 1 */
1233

1234 1235 1236 1237 1238
	if (len_encoded == 16)
		len_encoded = 0;
	return len_encoded;
}

J
Jingoo Han 已提交
1239
static int be_cmd_mccq_ext_create(struct be_adapter *adapter,
1240 1241
				  struct be_queue_info *mccq,
				  struct be_queue_info *cq)
1242
{
1243
	struct be_mcc_wrb *wrb;
1244
	struct be_cmd_req_mcc_ext_create *req;
1245
	struct be_dma_mem *q_mem = &mccq->dma_mem;
1246
	void *ctxt;
1247 1248
	int status;

1249 1250
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
1251 1252 1253 1254

	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
	ctxt = &req->context;
1255

S
Somnath Kotur 已提交
1256
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1257 1258
			       OPCODE_COMMON_MCC_CREATE_EXT, sizeof(*req), wrb,
			       NULL);
1259

1260
	req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size));
1261
	if (BEx_chip(adapter)) {
1262 1263
		AMAP_SET_BITS(struct amap_mcc_context_be, valid, ctxt, 1);
		AMAP_SET_BITS(struct amap_mcc_context_be, ring_size, ctxt,
1264
			      be_encoded_q_len(mccq->len));
1265
		AMAP_SET_BITS(struct amap_mcc_context_be, cq_id, ctxt, cq->id);
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
	} else {
		req->hdr.version = 1;
		req->cq_id = cpu_to_le16(cq->id);

		AMAP_SET_BITS(struct amap_mcc_context_v1, ring_size, ctxt,
			      be_encoded_q_len(mccq->len));
		AMAP_SET_BITS(struct amap_mcc_context_v1, valid, ctxt, 1);
		AMAP_SET_BITS(struct amap_mcc_context_v1, async_cq_id,
			      ctxt, cq->id);
		AMAP_SET_BITS(struct amap_mcc_context_v1, async_cq_valid,
			      ctxt, 1);
1277
	}
1278

1279 1280 1281 1282 1283 1284 1285 1286 1287
	/* Subscribe to Link State, Sliport Event and Group 5 Events
	 * (bits 1, 5 and 17 set)
	 */
	req->async_event_bitmap[0] =
			cpu_to_le32(BIT(ASYNC_EVENT_CODE_LINK_STATE) |
				    BIT(ASYNC_EVENT_CODE_GRP_5) |
				    BIT(ASYNC_EVENT_CODE_QNQ) |
				    BIT(ASYNC_EVENT_CODE_SLIPORT));

1288 1289 1290 1291
	be_dws_cpu_to_le(ctxt, sizeof(req->context));

	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem);

1292
	status = be_mbox_notify_wait(adapter);
1293 1294
	if (!status) {
		struct be_cmd_resp_mcc_create *resp = embedded_payload(wrb);
1295

1296 1297 1298
		mccq->id = le16_to_cpu(resp->id);
		mccq->created = true;
	}
1299
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
1300 1301 1302 1303

	return status;
}

J
Jingoo Han 已提交
1304
static int be_cmd_mccq_org_create(struct be_adapter *adapter,
1305 1306
				  struct be_queue_info *mccq,
				  struct be_queue_info *cq)
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_mcc_create *req;
	struct be_dma_mem *q_mem = &mccq->dma_mem;
	void *ctxt;
	int status;

	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
	ctxt = &req->context;

S
Somnath Kotur 已提交
1321
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1322 1323
			       OPCODE_COMMON_MCC_CREATE, sizeof(*req), wrb,
			       NULL);
1324 1325 1326 1327 1328

	req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size));

	AMAP_SET_BITS(struct amap_mcc_context_be, valid, ctxt, 1);
	AMAP_SET_BITS(struct amap_mcc_context_be, ring_size, ctxt,
1329
		      be_encoded_q_len(mccq->len));
1330 1331 1332 1333 1334 1335 1336 1337 1338
	AMAP_SET_BITS(struct amap_mcc_context_be, cq_id, ctxt, cq->id);

	be_dws_cpu_to_le(ctxt, sizeof(req->context));

	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem);

	status = be_mbox_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_mcc_create *resp = embedded_payload(wrb);
1339

1340 1341 1342 1343 1344 1345 1346 1347 1348
		mccq->id = le16_to_cpu(resp->id);
		mccq->created = true;
	}

	mutex_unlock(&adapter->mbox_lock);
	return status;
}

int be_cmd_mccq_create(struct be_adapter *adapter,
1349
		       struct be_queue_info *mccq, struct be_queue_info *cq)
1350 1351 1352 1353
{
	int status;

	status = be_cmd_mccq_ext_create(adapter, mccq, cq);
1354
	if (status && BEx_chip(adapter)) {
1355 1356 1357 1358 1359 1360 1361 1362
		dev_warn(&adapter->pdev->dev, "Upgrade to F/W ver 2.102.235.0 "
			"or newer to avoid conflicting priorities between NIC "
			"and FCoE traffic");
		status = be_cmd_mccq_org_create(adapter, mccq, cq);
	}
	return status;
}

V
Vasundhara Volam 已提交
1363
int be_cmd_txq_create(struct be_adapter *adapter, struct be_tx_obj *txo)
S
Sathya Perla 已提交
1364
{
1365
	struct be_mcc_wrb wrb = {0};
1366
	struct be_cmd_req_eth_tx_create *req;
V
Vasundhara Volam 已提交
1367 1368
	struct be_queue_info *txq = &txo->q;
	struct be_queue_info *cq = &txo->cq;
S
Sathya Perla 已提交
1369
	struct be_dma_mem *q_mem = &txq->dma_mem;
V
Vasundhara Volam 已提交
1370
	int status, ver = 0;
S
Sathya Perla 已提交
1371

1372
	req = embedded_payload(&wrb);
S
Somnath Kotur 已提交
1373
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
1374
			       OPCODE_ETH_TX_CREATE, sizeof(*req), &wrb, NULL);
S
Sathya Perla 已提交
1375

1376 1377
	if (lancer_chip(adapter)) {
		req->hdr.version = 1;
V
Vasundhara Volam 已提交
1378 1379 1380 1381 1382
	} else if (BEx_chip(adapter)) {
		if (adapter->function_caps & BE_FUNCTION_CAPS_SUPER_NIC)
			req->hdr.version = 2;
	} else { /* For SH */
		req->hdr.version = 2;
1383 1384
	}

1385 1386
	if (req->hdr.version > 0)
		req->if_id = cpu_to_le16(adapter->if_handle);
S
Sathya Perla 已提交
1387 1388 1389
	req->num_pages = PAGES_4K_SPANNED(q_mem->va, q_mem->size);
	req->ulp_num = BE_ULP1_NUM;
	req->type = BE_ETH_TX_RING_TYPE_STANDARD;
V
Vasundhara Volam 已提交
1390 1391
	req->cq_id = cpu_to_le16(cq->id);
	req->queue_size = be_encoded_q_len(txq->len);
S
Sathya Perla 已提交
1392
	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem);
V
Vasundhara Volam 已提交
1393 1394
	ver = req->hdr.version;

1395
	status = be_cmd_notify_wait(adapter, &wrb);
S
Sathya Perla 已提交
1396
	if (!status) {
1397
		struct be_cmd_resp_eth_tx_create *resp = embedded_payload(&wrb);
1398

S
Sathya Perla 已提交
1399
		txq->id = le16_to_cpu(resp->cid);
V
Vasundhara Volam 已提交
1400 1401 1402 1403
		if (ver == 2)
			txo->db_offset = le32_to_cpu(resp->db_offset);
		else
			txo->db_offset = DB_TXULP1_OFFSET;
S
Sathya Perla 已提交
1404 1405
		txq->created = true;
	}
1406

S
Sathya Perla 已提交
1407 1408 1409
	return status;
}

1410
/* Uses MCC */
1411
int be_cmd_rxq_create(struct be_adapter *adapter,
1412 1413
		      struct be_queue_info *rxq, u16 cq_id, u16 frag_size,
		      u32 if_id, u32 rss, u8 *rss_id)
S
Sathya Perla 已提交
1414
{
1415 1416
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_eth_rx_create *req;
S
Sathya Perla 已提交
1417 1418 1419
	struct be_dma_mem *q_mem = &rxq->dma_mem;
	int status;

1420
	mutex_lock(&adapter->mcc_lock);
1421

1422 1423 1424 1425 1426
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1427
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1428

S
Somnath Kotur 已提交
1429
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
1430
			       OPCODE_ETH_RX_CREATE, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1431 1432 1433 1434 1435 1436

	req->cq_id = cpu_to_le16(cq_id);
	req->frag_size = fls(frag_size) - 1;
	req->num_pages = 2;
	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem);
	req->interface_id = cpu_to_le32(if_id);
S
Sathya Perla 已提交
1437
	req->max_frame_size = cpu_to_le16(BE_MAX_JUMBO_FRAME_SIZE);
S
Sathya Perla 已提交
1438 1439
	req->rss_queue = cpu_to_le32(rss);

1440
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1441 1442
	if (!status) {
		struct be_cmd_resp_eth_rx_create *resp = embedded_payload(wrb);
1443

S
Sathya Perla 已提交
1444 1445
		rxq->id = le16_to_cpu(resp->id);
		rxq->created = true;
1446
		*rss_id = resp->rss_id;
S
Sathya Perla 已提交
1447
	}
1448

1449
err:
1450
	mutex_unlock(&adapter->mcc_lock);
S
Sathya Perla 已提交
1451 1452 1453
	return status;
}

1454 1455 1456
/* Generic destroyer function for all types of queues
 * Uses Mbox
 */
1457
int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
1458
		     int queue_type)
S
Sathya Perla 已提交
1459
{
1460 1461
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_q_destroy *req;
S
Sathya Perla 已提交
1462 1463 1464
	u8 subsys = 0, opcode = 0;
	int status;

1465 1466
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
S
Sathya Perla 已提交
1467

1468 1469 1470
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);

S
Sathya Perla 已提交
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
	switch (queue_type) {
	case QTYPE_EQ:
		subsys = CMD_SUBSYSTEM_COMMON;
		opcode = OPCODE_COMMON_EQ_DESTROY;
		break;
	case QTYPE_CQ:
		subsys = CMD_SUBSYSTEM_COMMON;
		opcode = OPCODE_COMMON_CQ_DESTROY;
		break;
	case QTYPE_TXQ:
		subsys = CMD_SUBSYSTEM_ETH;
		opcode = OPCODE_ETH_TX_DESTROY;
		break;
	case QTYPE_RXQ:
		subsys = CMD_SUBSYSTEM_ETH;
		opcode = OPCODE_ETH_RX_DESTROY;
		break;
1488 1489 1490 1491
	case QTYPE_MCCQ:
		subsys = CMD_SUBSYSTEM_COMMON;
		opcode = OPCODE_COMMON_MCC_DESTROY;
		break;
S
Sathya Perla 已提交
1492
	default:
1493
		BUG();
S
Sathya Perla 已提交
1494
	}
1495

S
Somnath Kotur 已提交
1496
	be_wrb_cmd_hdr_prepare(&req->hdr, subsys, opcode, sizeof(*req), wrb,
1497
			       NULL);
S
Sathya Perla 已提交
1498 1499
	req->id = cpu_to_le16(q->id);

1500
	status = be_mbox_notify_wait(adapter);
1501
	q->created = false;
1502

1503
	mutex_unlock(&adapter->mbox_lock);
1504 1505
	return status;
}
S
Sathya Perla 已提交
1506

1507 1508 1509 1510 1511 1512 1513
/* Uses MCC */
int be_cmd_rxq_destroy(struct be_adapter *adapter, struct be_queue_info *q)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_q_destroy *req;
	int status;

1514
	mutex_lock(&adapter->mcc_lock);
1515 1516 1517 1518 1519 1520 1521 1522

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
1523
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
1524
			       OPCODE_ETH_RX_DESTROY, sizeof(*req), wrb, NULL);
1525 1526 1527
	req->id = cpu_to_le16(q->id);

	status = be_mcc_notify_wait(adapter);
1528
	q->created = false;
1529 1530

err:
1531
	mutex_unlock(&adapter->mcc_lock);
S
Sathya Perla 已提交
1532 1533 1534
	return status;
}

1535
/* Create an rx filtering policy configuration on an i/f
1536
 * Will use MBOX only if MCCQ has not been created.
1537
 */
1538
int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags, u32 en_flags,
1539
		     u32 *if_handle, u32 domain)
S
Sathya Perla 已提交
1540
{
1541
	struct be_mcc_wrb wrb = {0};
1542
	struct be_cmd_req_if_create *req;
S
Sathya Perla 已提交
1543 1544
	int status;

1545
	req = embedded_payload(&wrb);
S
Somnath Kotur 已提交
1546
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1547 1548
			       OPCODE_COMMON_NTWK_INTERFACE_CREATE,
			       sizeof(*req), &wrb, NULL);
1549
	req->hdr.domain = domain;
1550 1551
	req->capability_flags = cpu_to_le32(cap_flags);
	req->enable_flags = cpu_to_le32(en_flags);
1552
	req->pmac_invalid = true;
S
Sathya Perla 已提交
1553

1554
	status = be_cmd_notify_wait(adapter, &wrb);
S
Sathya Perla 已提交
1555
	if (!status) {
1556
		struct be_cmd_resp_if_create *resp = embedded_payload(&wrb);
1557

S
Sathya Perla 已提交
1558
		*if_handle = le32_to_cpu(resp->interface_id);
S
Sathya Perla 已提交
1559 1560

		/* Hack to retrieve VF's pmac-id on BE3 */
1561
		if (BE3_chip(adapter) && be_virtfn(adapter))
S
Sathya Perla 已提交
1562
			adapter->pmac_id[0] = le32_to_cpu(resp->pmac_id);
S
Sathya Perla 已提交
1563 1564 1565 1566
	}
	return status;
}

1567
/* Uses MCCQ if available else MBOX */
1568
int be_cmd_if_destroy(struct be_adapter *adapter, int interface_id, u32 domain)
S
Sathya Perla 已提交
1569
{
1570
	struct be_mcc_wrb wrb = {0};
1571
	struct be_cmd_req_if_destroy *req;
S
Sathya Perla 已提交
1572 1573
	int status;

1574
	if (interface_id == -1)
1575
		return 0;
1576

1577
	req = embedded_payload(&wrb);
S
Sathya Perla 已提交
1578

S
Somnath Kotur 已提交
1579
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1580
			       OPCODE_COMMON_NTWK_INTERFACE_DESTROY,
1581
			       sizeof(*req), &wrb, NULL);
1582
	req->hdr.domain = domain;
S
Sathya Perla 已提交
1583
	req->interface_id = cpu_to_le32(interface_id);
1584

1585
	status = be_cmd_notify_wait(adapter, &wrb);
S
Sathya Perla 已提交
1586 1587 1588 1589 1590
	return status;
}

/* Get stats is a non embedded command: the request is not embedded inside
 * WRB but is a separate dma memory block
1591
 * Uses asynchronous MCC
S
Sathya Perla 已提交
1592
 */
1593
int be_cmd_get_stats(struct be_adapter *adapter, struct be_dma_mem *nonemb_cmd)
S
Sathya Perla 已提交
1594
{
1595
	struct be_mcc_wrb *wrb;
1596
	struct be_cmd_req_hdr *hdr;
1597
	int status = 0;
S
Sathya Perla 已提交
1598

1599
	mutex_lock(&adapter->mcc_lock);
S
Sathya Perla 已提交
1600

1601
	wrb = wrb_from_mccq(adapter);
1602 1603 1604 1605
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1606
	hdr = nonemb_cmd->va;
S
Sathya Perla 已提交
1607

S
Somnath Kotur 已提交
1608
	be_wrb_cmd_hdr_prepare(hdr, CMD_SUBSYSTEM_ETH,
1609 1610
			       OPCODE_ETH_GET_STATISTICS, nonemb_cmd->size, wrb,
			       nonemb_cmd);
1611

1612
	/* version 1 of the cmd is not supported only by BE2 */
1613 1614 1615
	if (BE2_chip(adapter))
		hdr->version = 0;
	if (BE3_chip(adapter) || lancer_chip(adapter))
1616
		hdr->version = 1;
1617 1618
	else
		hdr->version = 2;
1619

1620 1621 1622 1623
	status = be_mcc_notify(adapter);
	if (status)
		goto err;

A
Ajit Khaparde 已提交
1624
	adapter->stats_cmd_sent = true;
S
Sathya Perla 已提交
1625

1626
err:
1627
	mutex_unlock(&adapter->mcc_lock);
1628
	return status;
S
Sathya Perla 已提交
1629 1630
}

S
Selvin Xavier 已提交
1631 1632
/* Lancer Stats */
int lancer_cmd_get_pport_stats(struct be_adapter *adapter,
1633
			       struct be_dma_mem *nonemb_cmd)
S
Selvin Xavier 已提交
1634 1635 1636 1637 1638
{
	struct be_mcc_wrb *wrb;
	struct lancer_cmd_req_pport_stats *req;
	int status = 0;

1639 1640 1641 1642
	if (!be_cmd_allowed(adapter, OPCODE_ETH_GET_PPORT_STATS,
			    CMD_SUBSYSTEM_ETH))
		return -EPERM;

1643
	mutex_lock(&adapter->mcc_lock);
S
Selvin Xavier 已提交
1644 1645 1646 1647 1648 1649 1650 1651

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = nonemb_cmd->va;

S
Somnath Kotur 已提交
1652
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
1653 1654
			       OPCODE_ETH_GET_PPORT_STATS, nonemb_cmd->size,
			       wrb, nonemb_cmd);
S
Selvin Xavier 已提交
1655

1656
	req->cmd_params.params.pport_num = cpu_to_le16(adapter->hba_port_num);
S
Selvin Xavier 已提交
1657 1658
	req->cmd_params.params.reset_stats = 0;

1659 1660 1661 1662
	status = be_mcc_notify(adapter);
	if (status)
		goto err;

S
Selvin Xavier 已提交
1663 1664 1665
	adapter->stats_cmd_sent = true;

err:
1666
	mutex_unlock(&adapter->mcc_lock);
S
Selvin Xavier 已提交
1667 1668 1669
	return status;
}

1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
static int be_mac_to_link_speed(int mac_speed)
{
	switch (mac_speed) {
	case PHY_LINK_SPEED_ZERO:
		return 0;
	case PHY_LINK_SPEED_10MBPS:
		return 10;
	case PHY_LINK_SPEED_100MBPS:
		return 100;
	case PHY_LINK_SPEED_1GBPS:
		return 1000;
	case PHY_LINK_SPEED_10GBPS:
		return 10000;
1683 1684 1685 1686 1687 1688
	case PHY_LINK_SPEED_20GBPS:
		return 20000;
	case PHY_LINK_SPEED_25GBPS:
		return 25000;
	case PHY_LINK_SPEED_40GBPS:
		return 40000;
1689 1690 1691 1692 1693 1694 1695 1696 1697
	}
	return 0;
}

/* Uses synchronous mcc
 * Returns link_speed in Mbps
 */
int be_cmd_link_status_query(struct be_adapter *adapter, u16 *link_speed,
			     u8 *link_status, u32 dom)
S
Sathya Perla 已提交
1698
{
1699 1700
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_link_status *req;
S
Sathya Perla 已提交
1701 1702
	int status;

1703
	mutex_lock(&adapter->mcc_lock);
1704

1705 1706 1707
	if (link_status)
		*link_status = LINK_DOWN;

1708
	wrb = wrb_from_mccq(adapter);
1709 1710 1711 1712
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1713
	req = embedded_payload(wrb);
1714

1715
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1716 1717
			       OPCODE_COMMON_NTWK_LINK_STATUS_QUERY,
			       sizeof(*req), wrb, NULL);
1718

1719 1720
	/* version 1 of the cmd is not supported only by BE2 */
	if (!BE2_chip(adapter))
1721 1722
		req->hdr.version = 1;

1723
	req->hdr.domain = dom;
S
Sathya Perla 已提交
1724

1725
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1726 1727
	if (!status) {
		struct be_cmd_resp_link_status *resp = embedded_payload(wrb);
1728

1729 1730 1731 1732 1733 1734 1735
		if (link_speed) {
			*link_speed = resp->link_speed ?
				      le16_to_cpu(resp->link_speed) * 10 :
				      be_mac_to_link_speed(resp->mac_speed);

			if (!resp->logical_link_status)
				*link_speed = 0;
1736
		}
1737 1738
		if (link_status)
			*link_status = resp->logical_link_status;
S
Sathya Perla 已提交
1739 1740
	}

1741
err:
1742
	mutex_unlock(&adapter->mcc_lock);
S
Sathya Perla 已提交
1743 1744 1745
	return status;
}

1746 1747 1748 1749 1750
/* Uses synchronous mcc */
int be_cmd_get_die_temperature(struct be_adapter *adapter)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_cntl_addnl_attribs *req;
1751
	int status = 0;
1752

1753
	mutex_lock(&adapter->mcc_lock);
1754 1755 1756 1757 1758 1759 1760 1761

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
1762
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1763 1764
			       OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES,
			       sizeof(*req), wrb, NULL);
1765

1766
	status = be_mcc_notify(adapter);
1767
err:
1768
	mutex_unlock(&adapter->mcc_lock);
1769 1770 1771
	return status;
}

1772
/* Uses synchronous mcc */
1773
int be_cmd_get_fat_dump_len(struct be_adapter *adapter, u32 *dump_size)
1774
{
1775
	struct be_mcc_wrb wrb = {0};
1776 1777 1778
	struct be_cmd_req_get_fat *req;
	int status;

1779
	req = embedded_payload(&wrb);
1780

S
Somnath Kotur 已提交
1781
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1782 1783
			       OPCODE_COMMON_MANAGE_FAT, sizeof(*req),
			       &wrb, NULL);
1784
	req->fat_operation = cpu_to_le32(QUERY_FAT);
1785
	status = be_cmd_notify_wait(adapter, &wrb);
1786
	if (!status) {
1787
		struct be_cmd_resp_get_fat *resp = embedded_payload(&wrb);
1788

1789 1790
		if (dump_size && resp->log_size)
			*dump_size = le32_to_cpu(resp->log_size) -
1791
					sizeof(u32);
1792 1793 1794 1795
	}
	return status;
}

1796
int be_cmd_get_fat_dump(struct be_adapter *adapter, u32 buf_len, void *buf)
1797 1798 1799 1800
{
	struct be_dma_mem get_fat_cmd;
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_fat *req;
1801 1802
	u32 offset = 0, total_size, buf_size,
				log_offset = sizeof(u32), payload_len;
1803
	int status;
1804 1805

	if (buf_len == 0)
1806
		return 0;
1807 1808 1809

	total_size = buf_len;

1810
	get_fat_cmd.size = sizeof(struct be_cmd_req_get_fat) + 60*1024;
1811 1812 1813
	get_fat_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
					     get_fat_cmd.size,
					     &get_fat_cmd.dma, GFP_ATOMIC);
1814
	if (!get_fat_cmd.va)
1815
		return -ENOMEM;
1816

1817
	mutex_lock(&adapter->mcc_lock);
1818 1819 1820 1821 1822

	while (total_size) {
		buf_size = min(total_size, (u32)60*1024);
		total_size -= buf_size;

1823 1824 1825
		wrb = wrb_from_mccq(adapter);
		if (!wrb) {
			status = -EBUSY;
1826 1827 1828 1829
			goto err;
		}
		req = get_fat_cmd.va;

1830
		payload_len = sizeof(struct be_cmd_req_get_fat) + buf_size;
S
Somnath Kotur 已提交
1831
		be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1832 1833
				       OPCODE_COMMON_MANAGE_FAT, payload_len,
				       wrb, &get_fat_cmd);
1834 1835 1836 1837 1838 1839 1840 1841 1842

		req->fat_operation = cpu_to_le32(RETRIEVE_FAT);
		req->read_log_offset = cpu_to_le32(log_offset);
		req->read_log_length = cpu_to_le32(buf_size);
		req->data_buffer_size = cpu_to_le32(buf_size);

		status = be_mcc_notify_wait(adapter);
		if (!status) {
			struct be_cmd_resp_get_fat *resp = get_fat_cmd.va;
1843

1844
			memcpy(buf + offset,
1845 1846
			       resp->data_buffer,
			       le32_to_cpu(resp->read_log_length));
1847
		} else {
1848
			dev_err(&adapter->pdev->dev, "FAT Table Retrieve error\n");
1849 1850
			goto err;
		}
1851 1852 1853 1854
		offset += buf_size;
		log_offset += buf_size;
	}
err:
1855 1856
	dma_free_coherent(&adapter->pdev->dev, get_fat_cmd.size,
			  get_fat_cmd.va, get_fat_cmd.dma);
1857
	mutex_unlock(&adapter->mcc_lock);
1858
	return status;
1859 1860
}

1861
/* Uses synchronous mcc */
1862
int be_cmd_get_fw_ver(struct be_adapter *adapter)
S
Sathya Perla 已提交
1863
{
1864 1865
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_fw_version *req;
S
Sathya Perla 已提交
1866 1867
	int status;

1868
	mutex_lock(&adapter->mcc_lock);
1869

1870 1871 1872 1873 1874
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
S
Sathya Perla 已提交
1875

1876
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1877

S
Somnath Kotur 已提交
1878
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1879 1880
			       OPCODE_COMMON_GET_FW_VERSION, sizeof(*req), wrb,
			       NULL);
1881
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1882 1883
	if (!status) {
		struct be_cmd_resp_get_fw_version *resp = embedded_payload(wrb);
S
Sathya Perla 已提交
1884

1885 1886 1887 1888
		strlcpy(adapter->fw_ver, resp->firmware_version_string,
			sizeof(adapter->fw_ver));
		strlcpy(adapter->fw_on_flash, resp->fw_on_flash_version_string,
			sizeof(adapter->fw_on_flash));
S
Sathya Perla 已提交
1889
	}
1890
err:
1891
	mutex_unlock(&adapter->mcc_lock);
S
Sathya Perla 已提交
1892 1893 1894
	return status;
}

1895 1896 1897
/* set the EQ delay interval of an EQ to specified value
 * Uses async mcc
 */
1898 1899
static int __be_cmd_modify_eqd(struct be_adapter *adapter,
			       struct be_set_eqd *set_eqd, int num)
S
Sathya Perla 已提交
1900
{
1901 1902
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_modify_eq_delay *req;
1903
	int status = 0, i;
S
Sathya Perla 已提交
1904

1905
	mutex_lock(&adapter->mcc_lock);
1906 1907

	wrb = wrb_from_mccq(adapter);
1908 1909 1910 1911
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1912
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1913

S
Somnath Kotur 已提交
1914
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1915 1916
			       OPCODE_COMMON_MODIFY_EQ_DELAY, sizeof(*req), wrb,
			       NULL);
S
Sathya Perla 已提交
1917

1918 1919 1920 1921 1922 1923 1924
	req->num_eq = cpu_to_le32(num);
	for (i = 0; i < num; i++) {
		req->set_eqd[i].eq_id = cpu_to_le32(set_eqd[i].eq_id);
		req->set_eqd[i].phase = 0;
		req->set_eqd[i].delay_multiplier =
				cpu_to_le32(set_eqd[i].delay_multiplier);
	}
S
Sathya Perla 已提交
1925

1926
	status = be_mcc_notify(adapter);
1927
err:
1928
	mutex_unlock(&adapter->mcc_lock);
1929
	return status;
S
Sathya Perla 已提交
1930 1931
}

1932 1933 1934 1935 1936
int be_cmd_modify_eqd(struct be_adapter *adapter, struct be_set_eqd *set_eqd,
		      int num)
{
	int num_eqs, i = 0;

1937 1938 1939 1940 1941
	while (num) {
		num_eqs = min(num, 8);
		__be_cmd_modify_eqd(adapter, &set_eqd[i], num_eqs);
		i += num_eqs;
		num -= num_eqs;
1942 1943 1944 1945 1946
	}

	return 0;
}

1947
/* Uses sycnhronous mcc */
1948
int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id, u16 *vtag_array,
1949
		       u32 num, u32 domain)
S
Sathya Perla 已提交
1950
{
1951 1952
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_vlan_config *req;
S
Sathya Perla 已提交
1953 1954
	int status;

1955
	mutex_lock(&adapter->mcc_lock);
1956 1957

	wrb = wrb_from_mccq(adapter);
1958 1959 1960 1961
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1962
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1963

S
Somnath Kotur 已提交
1964
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1965 1966
			       OPCODE_COMMON_NTWK_VLAN_CONFIG, sizeof(*req),
			       wrb, NULL);
1967
	req->hdr.domain = domain;
S
Sathya Perla 已提交
1968 1969

	req->interface_id = if_id;
1970
	req->untagged = BE_IF_FLAGS_UNTAGGED & be_if_cap_flags(adapter) ? 1 : 0;
S
Sathya Perla 已提交
1971
	req->num_vlan = num;
1972 1973
	memcpy(req->normal_vlan, vtag_array,
	       req->num_vlan * sizeof(vtag_array[0]));
S
Sathya Perla 已提交
1974

1975
	status = be_mcc_notify_wait(adapter);
1976
err:
1977
	mutex_unlock(&adapter->mcc_lock);
S
Sathya Perla 已提交
1978 1979 1980
	return status;
}

1981
static int __be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 value)
S
Sathya Perla 已提交
1982
{
1983
	struct be_mcc_wrb *wrb;
1984 1985
	struct be_dma_mem *mem = &adapter->rx_filter;
	struct be_cmd_req_rx_filter *req = mem->va;
1986
	int status;
S
Sathya Perla 已提交
1987

1988
	mutex_lock(&adapter->mcc_lock);
1989

1990
	wrb = wrb_from_mccq(adapter);
1991 1992 1993 1994
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1995
	memset(req, 0, sizeof(*req));
S
Somnath Kotur 已提交
1996
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1997 1998
			       OPCODE_COMMON_NTWK_RX_FILTER, sizeof(*req),
			       wrb, mem);
S
Sathya Perla 已提交
1999

2000
	req->if_id = cpu_to_le32(adapter->if_handle);
2001 2002 2003 2004
	req->if_flags_mask = cpu_to_le32(flags);
	req->if_flags = (value == ON) ? req->if_flags_mask : 0;

	if (flags & BE_IF_FLAGS_MULTICAST) {
2005
		int i;
2006

2007 2008 2009
		/* Reset mcast promisc mode if already set by setting mask
		 * and not setting flags field
		 */
2010 2011
		req->if_flags_mask |=
			cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS &
2012
				    be_if_cap_flags(adapter));
2013 2014 2015 2016
		req->mcast_num = cpu_to_le32(adapter->mc_count);
		for (i = 0; i < adapter->mc_count; i++)
			ether_addr_copy(req->mcast_mac[i].byte,
					adapter->mc_list[i].mac);
S
Sathya Perla 已提交
2017 2018
	}

2019
	status = be_mcc_notify_wait(adapter);
2020
err:
2021
	mutex_unlock(&adapter->mcc_lock);
2022
	return status;
S
Sathya Perla 已提交
2023 2024
}

2025 2026 2027 2028 2029 2030 2031 2032 2033 2034
int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 value)
{
	struct device *dev = &adapter->pdev->dev;

	if ((flags & be_if_cap_flags(adapter)) != flags) {
		dev_warn(dev, "Cannot set rx filter flags 0x%x\n", flags);
		dev_warn(dev, "Interface is capable of 0x%x flags only\n",
			 be_if_cap_flags(adapter));
	}
	flags &= be_if_cap_flags(adapter);
2035 2036
	if (!flags)
		return -ENOTSUPP;
2037 2038 2039 2040

	return __be_cmd_rx_filter(adapter, flags, value);
}

2041
/* Uses synchrounous mcc */
2042
int be_cmd_set_flow_control(struct be_adapter *adapter, u32 tx_fc, u32 rx_fc)
S
Sathya Perla 已提交
2043
{
2044 2045
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_flow_control *req;
S
Sathya Perla 已提交
2046 2047
	int status;

2048 2049 2050 2051
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_SET_FLOW_CONTROL,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

2052
	mutex_lock(&adapter->mcc_lock);
S
Sathya Perla 已提交
2053

2054
	wrb = wrb_from_mccq(adapter);
2055 2056 2057 2058
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2059
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
2060

S
Somnath Kotur 已提交
2061
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2062 2063
			       OPCODE_COMMON_SET_FLOW_CONTROL, sizeof(*req),
			       wrb, NULL);
S
Sathya Perla 已提交
2064

2065
	req->hdr.version = 1;
S
Sathya Perla 已提交
2066 2067 2068
	req->tx_flow_control = cpu_to_le16((u16)tx_fc);
	req->rx_flow_control = cpu_to_le16((u16)rx_fc);

2069
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
2070

2071
err:
2072
	mutex_unlock(&adapter->mcc_lock);
2073 2074 2075 2076

	if (base_status(status) == MCC_STATUS_FEATURE_NOT_SUPPORTED)
		return  -EOPNOTSUPP;

S
Sathya Perla 已提交
2077 2078 2079
	return status;
}

2080
/* Uses sycn mcc */
2081
int be_cmd_get_flow_control(struct be_adapter *adapter, u32 *tx_fc, u32 *rx_fc)
S
Sathya Perla 已提交
2082
{
2083 2084
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_flow_control *req;
S
Sathya Perla 已提交
2085 2086
	int status;

2087 2088 2089 2090
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_GET_FLOW_CONTROL,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

2091
	mutex_lock(&adapter->mcc_lock);
S
Sathya Perla 已提交
2092

2093
	wrb = wrb_from_mccq(adapter);
2094 2095 2096 2097
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2098
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
2099

S
Somnath Kotur 已提交
2100
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2101 2102
			       OPCODE_COMMON_GET_FLOW_CONTROL, sizeof(*req),
			       wrb, NULL);
S
Sathya Perla 已提交
2103

2104
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
2105 2106 2107
	if (!status) {
		struct be_cmd_resp_get_flow_control *resp =
						embedded_payload(wrb);
2108

S
Sathya Perla 已提交
2109 2110 2111 2112
		*tx_fc = le16_to_cpu(resp->tx_flow_control);
		*rx_fc = le16_to_cpu(resp->rx_flow_control);
	}

2113
err:
2114
	mutex_unlock(&adapter->mcc_lock);
S
Sathya Perla 已提交
2115 2116 2117
	return status;
}

2118
/* Uses mbox */
2119
int be_cmd_query_fw_cfg(struct be_adapter *adapter)
S
Sathya Perla 已提交
2120
{
2121 2122
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_query_fw_cfg *req;
S
Sathya Perla 已提交
2123 2124
	int status;

2125 2126
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
S
Sathya Perla 已提交
2127

2128 2129
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
2130

S
Somnath Kotur 已提交
2131
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2132 2133
			       OPCODE_COMMON_QUERY_FIRMWARE_CONFIG,
			       sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
2134

2135
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
2136 2137
	if (!status) {
		struct be_cmd_resp_query_fw_cfg *resp = embedded_payload(wrb);
2138

2139 2140 2141 2142
		adapter->port_num = le32_to_cpu(resp->phys_port);
		adapter->function_mode = le32_to_cpu(resp->function_mode);
		adapter->function_caps = le32_to_cpu(resp->function_caps);
		adapter->asic_rev = le32_to_cpu(resp->asic_revision) & 0xFF;
S
Sathya Perla 已提交
2143 2144 2145
		dev_info(&adapter->pdev->dev,
			 "FW config: function_mode=0x%x, function_caps=0x%x\n",
			 adapter->function_mode, adapter->function_caps);
S
Sathya Perla 已提交
2146 2147
	}

2148
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
2149 2150
	return status;
}
2151

2152
/* Uses mbox */
2153 2154
int be_cmd_reset_function(struct be_adapter *adapter)
{
2155 2156
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_hdr *req;
2157 2158
	int status;

2159
	if (lancer_chip(adapter)) {
2160 2161
		iowrite32(SLI_PORT_CONTROL_IP_MASK,
			  adapter->db + SLIPORT_CONTROL_OFFSET);
2162
		status = lancer_wait_ready(adapter);
2163
		if (status)
2164 2165 2166 2167 2168
			dev_err(&adapter->pdev->dev,
				"Adapter in non recoverable error\n");
		return status;
	}

2169 2170
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
2171

2172 2173
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
2174

S
Somnath Kotur 已提交
2175
	be_wrb_cmd_hdr_prepare(req, CMD_SUBSYSTEM_COMMON,
2176 2177
			       OPCODE_COMMON_FUNCTION_RESET, sizeof(*req), wrb,
			       NULL);
2178

2179
	status = be_mbox_notify_wait(adapter);
2180

2181
	mutex_unlock(&adapter->mbox_lock);
2182 2183
	return status;
}
2184

2185
int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
2186
		      u32 rss_hash_opts, u16 table_size, const u8 *rss_hkey)
2187 2188 2189 2190 2191
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_rss_config *req;
	int status;

2192 2193 2194
	if (!(be_if_cap_flags(adapter) & BE_IF_FLAGS_RSS))
		return 0;

2195
	mutex_lock(&adapter->mcc_lock);
2196

2197 2198 2199 2200 2201
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2202 2203
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2204
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
2205
			       OPCODE_ETH_RSS_CONFIG, sizeof(*req), wrb, NULL);
2206 2207

	req->if_id = cpu_to_le32(adapter->if_handle);
2208 2209
	req->enable_rss = cpu_to_le16(rss_hash_opts);
	req->cpu_table_size_log2 = cpu_to_le16(fls(table_size) - 1);
2210

2211
	if (!BEx_chip(adapter))
2212 2213
		req->hdr.version = 1;

2214
	memcpy(req->cpu_table, rsstable, table_size);
2215
	memcpy(req->hash, rss_hkey, RSS_HASH_KEY_LEN);
2216 2217
	be_dws_cpu_to_le(req->hash, sizeof(req->hash));

2218 2219
	status = be_mcc_notify_wait(adapter);
err:
2220
	mutex_unlock(&adapter->mcc_lock);
2221 2222 2223
	return status;
}

2224 2225
/* Uses sync mcc */
int be_cmd_set_beacon_state(struct be_adapter *adapter, u8 port_num,
2226
			    u8 bcn, u8 sts, u8 state)
2227 2228 2229 2230 2231
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_enable_disable_beacon *req;
	int status;

2232
	mutex_lock(&adapter->mcc_lock);
2233 2234

	wrb = wrb_from_mccq(adapter);
2235 2236 2237 2238
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2239 2240
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2241
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2242 2243
			       OPCODE_COMMON_ENABLE_DISABLE_BEACON,
			       sizeof(*req), wrb, NULL);
2244 2245 2246 2247 2248 2249 2250 2251

	req->port_num = port_num;
	req->beacon_state = state;
	req->beacon_duration = bcn;
	req->status_duration = sts;

	status = be_mcc_notify_wait(adapter);

2252
err:
2253
	mutex_unlock(&adapter->mcc_lock);
2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
	return status;
}

/* Uses sync mcc */
int be_cmd_get_beacon_state(struct be_adapter *adapter, u8 port_num, u32 *state)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_beacon_state *req;
	int status;

2264
	mutex_lock(&adapter->mcc_lock);
2265 2266

	wrb = wrb_from_mccq(adapter);
2267 2268 2269 2270
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2271 2272
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2273
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2274 2275
			       OPCODE_COMMON_GET_BEACON_STATE, sizeof(*req),
			       wrb, NULL);
2276 2277 2278 2279 2280 2281 2282

	req->port_num = port_num;

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_beacon_state *resp =
						embedded_payload(wrb);
2283

2284 2285 2286
		*state = resp->beacon_state;
	}

2287
err:
2288
	mutex_unlock(&adapter->mcc_lock);
2289 2290 2291
	return status;
}

2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304
/* Uses sync mcc */
int be_cmd_read_port_transceiver_data(struct be_adapter *adapter,
				      u8 page_num, u8 *data)
{
	struct be_dma_mem cmd;
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_port_type *req;
	int status;

	if (page_num > TR_PAGE_A2)
		return -EINVAL;

	cmd.size = sizeof(struct be_cmd_resp_port_type);
2305 2306
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
2307 2308 2309 2310 2311
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory allocation failed\n");
		return -ENOMEM;
	}

2312
	mutex_lock(&adapter->mcc_lock);
2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = cmd.va;

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_READ_TRANSRECV_DATA,
			       cmd.size, wrb, &cmd);

	req->port = cpu_to_le32(adapter->hba_port_num);
	req->page_num = cpu_to_le32(page_num);
	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_port_type *resp = cmd.va;

		memcpy(data, resp->page_data, PAGE_DATA_LEN);
	}
err:
2334
	mutex_unlock(&adapter->mcc_lock);
2335
	dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma);
2336 2337 2338
	return status;
}

2339 2340 2341 2342 2343
static int lancer_cmd_write_object(struct be_adapter *adapter,
				   struct be_dma_mem *cmd, u32 data_size,
				   u32 data_offset, const char *obj_name,
				   u32 *data_written, u8 *change_status,
				   u8 *addn_status)
2344 2345 2346 2347 2348 2349 2350
{
	struct be_mcc_wrb *wrb;
	struct lancer_cmd_req_write_object *req;
	struct lancer_cmd_resp_write_object *resp;
	void *ctxt = NULL;
	int status;

2351
	mutex_lock(&adapter->mcc_lock);
2352 2353 2354 2355 2356 2357 2358 2359 2360 2361
	adapter->flash_status = 0;

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err_unlock;
	}

	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2362
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2363 2364 2365
			       OPCODE_COMMON_WRITE_OBJECT,
			       sizeof(struct lancer_cmd_req_write_object), wrb,
			       NULL);
2366 2367 2368

	ctxt = &req->context;
	AMAP_SET_BITS(struct amap_lancer_write_obj_context,
2369
		      write_length, ctxt, data_size);
2370 2371 2372

	if (data_size == 0)
		AMAP_SET_BITS(struct amap_lancer_write_obj_context,
2373
			      eof, ctxt, 1);
2374 2375
	else
		AMAP_SET_BITS(struct amap_lancer_write_obj_context,
2376
			      eof, ctxt, 0);
2377 2378 2379

	be_dws_cpu_to_le(ctxt, sizeof(req->context));
	req->write_offset = cpu_to_le32(data_offset);
2380
	strlcpy(req->object_name, obj_name, sizeof(req->object_name));
2381 2382 2383
	req->descriptor_count = cpu_to_le32(1);
	req->buf_len = cpu_to_le32(data_size);
	req->addr_low = cpu_to_le32((cmd->dma +
2384 2385
				     sizeof(struct lancer_cmd_req_write_object))
				    & 0xFFFFFFFF);
2386 2387 2388
	req->addr_high = cpu_to_le32(upper_32_bits(cmd->dma +
				sizeof(struct lancer_cmd_req_write_object)));

2389 2390 2391 2392
	status = be_mcc_notify(adapter);
	if (status)
		goto err_unlock;

2393
	mutex_unlock(&adapter->mcc_lock);
2394

2395
	if (!wait_for_completion_timeout(&adapter->et_cmd_compl,
2396
					 msecs_to_jiffies(60000)))
2397
		status = -ETIMEDOUT;
2398 2399 2400 2401
	else
		status = adapter->flash_status;

	resp = embedded_payload(wrb);
2402
	if (!status) {
2403
		*data_written = le32_to_cpu(resp->actual_write_len);
2404 2405
		*change_status = resp->change_status;
	} else {
2406
		*addn_status = resp->additional_status;
2407
	}
2408 2409 2410 2411

	return status;

err_unlock:
2412
	mutex_unlock(&adapter->mcc_lock);
2413 2414 2415
	return status;
}

2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440
int be_cmd_query_cable_type(struct be_adapter *adapter)
{
	u8 page_data[PAGE_DATA_LEN];
	int status;

	status = be_cmd_read_port_transceiver_data(adapter, TR_PAGE_A0,
						   page_data);
	if (!status) {
		switch (adapter->phy.interface_type) {
		case PHY_TYPE_QSFP:
			adapter->phy.cable_type =
				page_data[QSFP_PLUS_CABLE_TYPE_OFFSET];
			break;
		case PHY_TYPE_SFP_PLUS_10GB:
			adapter->phy.cable_type =
				page_data[SFP_PLUS_CABLE_TYPE_OFFSET];
			break;
		default:
			adapter->phy.cable_type = 0;
			break;
		}
	}
	return status;
}

2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458
int be_cmd_query_sfp_info(struct be_adapter *adapter)
{
	u8 page_data[PAGE_DATA_LEN];
	int status;

	status = be_cmd_read_port_transceiver_data(adapter, TR_PAGE_A0,
						   page_data);
	if (!status) {
		strlcpy(adapter->phy.vendor_name, page_data +
			SFP_VENDOR_NAME_OFFSET, SFP_VENDOR_NAME_LEN - 1);
		strlcpy(adapter->phy.vendor_pn,
			page_data + SFP_VENDOR_PN_OFFSET,
			SFP_VENDOR_NAME_LEN - 1);
	}

	return status;
}

2459 2460
static int lancer_cmd_delete_object(struct be_adapter *adapter,
				    const char *obj_name)
2461 2462 2463 2464 2465
{
	struct lancer_cmd_req_delete_object *req;
	struct be_mcc_wrb *wrb;
	int status;

2466
	mutex_lock(&adapter->mcc_lock);
2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_DELETE_OBJECT,
			       sizeof(*req), wrb, NULL);

2480
	strlcpy(req->object_name, obj_name, sizeof(req->object_name));
2481 2482 2483

	status = be_mcc_notify_wait(adapter);
err:
2484
	mutex_unlock(&adapter->mcc_lock);
2485 2486 2487
	return status;
}

2488
int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
2489 2490
			   u32 data_size, u32 data_offset, const char *obj_name,
			   u32 *data_read, u32 *eof, u8 *addn_status)
2491 2492 2493 2494 2495 2496
{
	struct be_mcc_wrb *wrb;
	struct lancer_cmd_req_read_object *req;
	struct lancer_cmd_resp_read_object *resp;
	int status;

2497
	mutex_lock(&adapter->mcc_lock);
2498 2499 2500 2501 2502 2503 2504 2505 2506 2507

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err_unlock;
	}

	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2508 2509 2510
			       OPCODE_COMMON_READ_OBJECT,
			       sizeof(struct lancer_cmd_req_read_object), wrb,
			       NULL);
2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530

	req->desired_read_len = cpu_to_le32(data_size);
	req->read_offset = cpu_to_le32(data_offset);
	strcpy(req->object_name, obj_name);
	req->descriptor_count = cpu_to_le32(1);
	req->buf_len = cpu_to_le32(data_size);
	req->addr_low = cpu_to_le32((cmd->dma & 0xFFFFFFFF));
	req->addr_high = cpu_to_le32(upper_32_bits(cmd->dma));

	status = be_mcc_notify_wait(adapter);

	resp = embedded_payload(wrb);
	if (!status) {
		*data_read = le32_to_cpu(resp->actual_read_len);
		*eof = le32_to_cpu(resp->eof);
	} else {
		*addn_status = resp->additional_status;
	}

err_unlock:
2531
	mutex_unlock(&adapter->mcc_lock);
2532 2533 2534
	return status;
}

2535 2536 2537
static int be_cmd_write_flashrom(struct be_adapter *adapter,
				 struct be_dma_mem *cmd, u32 flash_type,
				 u32 flash_opcode, u32 img_offset, u32 buf_size)
2538
{
2539
	struct be_mcc_wrb *wrb;
2540
	struct be_cmd_write_flashrom *req;
2541 2542
	int status;

2543
	mutex_lock(&adapter->mcc_lock);
2544
	adapter->flash_status = 0;
2545 2546

	wrb = wrb_from_mccq(adapter);
2547 2548
	if (!wrb) {
		status = -EBUSY;
D
Dan Carpenter 已提交
2549
		goto err_unlock;
2550 2551
	}
	req = cmd->va;
2552

S
Somnath Kotur 已提交
2553
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2554 2555
			       OPCODE_COMMON_WRITE_FLASHROM, cmd->size, wrb,
			       cmd);
2556 2557

	req->params.op_type = cpu_to_le32(flash_type);
2558 2559 2560
	if (flash_type == OPTYPE_OFFSET_SPECIFIED)
		req->params.offset = cpu_to_le32(img_offset);

2561 2562 2563
	req->params.op_code = cpu_to_le32(flash_opcode);
	req->params.data_buf_size = cpu_to_le32(buf_size);

2564 2565 2566 2567
	status = be_mcc_notify(adapter);
	if (status)
		goto err_unlock;

2568
	mutex_unlock(&adapter->mcc_lock);
2569

2570 2571
	if (!wait_for_completion_timeout(&adapter->et_cmd_compl,
					 msecs_to_jiffies(40000)))
2572
		status = -ETIMEDOUT;
2573 2574
	else
		status = adapter->flash_status;
2575

D
Dan Carpenter 已提交
2576 2577 2578
	return status;

err_unlock:
2579
	mutex_unlock(&adapter->mcc_lock);
2580 2581
	return status;
}
2582

2583 2584
static int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
				u16 img_optype, u32 img_offset, u32 crc_offset)
2585
{
2586
	struct be_cmd_read_flash_crc *req;
2587
	struct be_mcc_wrb *wrb;
2588 2589
	int status;

2590
	mutex_lock(&adapter->mcc_lock);
2591 2592

	wrb = wrb_from_mccq(adapter);
2593 2594 2595 2596
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2597 2598
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2599
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2600 2601
			       OPCODE_COMMON_READ_FLASHROM, sizeof(*req),
			       wrb, NULL);
2602

2603 2604 2605 2606 2607 2608
	req->params.op_type = cpu_to_le32(img_optype);
	if (img_optype == OPTYPE_OFFSET_SPECIFIED)
		req->params.offset = cpu_to_le32(img_offset + crc_offset);
	else
		req->params.offset = cpu_to_le32(crc_offset);

2609
	req->params.op_code = cpu_to_le32(FLASHROM_OPER_REPORT);
2610
	req->params.data_buf_size = cpu_to_le32(0x4);
2611 2612 2613

	status = be_mcc_notify_wait(adapter);
	if (!status)
2614
		memcpy(flashed_crc, req->crc, 4);
2615

2616
err:
2617
	mutex_unlock(&adapter->mcc_lock);
2618 2619
	return status;
}
2620

2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731
static char flash_cookie[2][16] = {"*** SE FLAS", "H DIRECTORY *** "};

static bool phy_flashing_required(struct be_adapter *adapter)
{
	return (adapter->phy.phy_type == PHY_TYPE_TN_8022 &&
		adapter->phy.interface_type == PHY_TYPE_BASET_10GB);
}

static bool is_comp_in_ufi(struct be_adapter *adapter,
			   struct flash_section_info *fsec, int type)
{
	int i = 0, img_type = 0;
	struct flash_section_info_g2 *fsec_g2 = NULL;

	if (BE2_chip(adapter))
		fsec_g2 = (struct flash_section_info_g2 *)fsec;

	for (i = 0; i < MAX_FLASH_COMP; i++) {
		if (fsec_g2)
			img_type = le32_to_cpu(fsec_g2->fsec_entry[i].type);
		else
			img_type = le32_to_cpu(fsec->fsec_entry[i].type);

		if (img_type == type)
			return true;
	}
	return false;
}

static struct flash_section_info *get_fsec_info(struct be_adapter *adapter,
						int header_size,
						const struct firmware *fw)
{
	struct flash_section_info *fsec = NULL;
	const u8 *p = fw->data;

	p += header_size;
	while (p < (fw->data + fw->size)) {
		fsec = (struct flash_section_info *)p;
		if (!memcmp(flash_cookie, fsec->cookie, sizeof(flash_cookie)))
			return fsec;
		p += 32;
	}
	return NULL;
}

static int be_check_flash_crc(struct be_adapter *adapter, const u8 *p,
			      u32 img_offset, u32 img_size, int hdr_size,
			      u16 img_optype, bool *crc_match)
{
	u32 crc_offset;
	int status;
	u8 crc[4];

	status = be_cmd_get_flash_crc(adapter, crc, img_optype, img_offset,
				      img_size - 4);
	if (status)
		return status;

	crc_offset = hdr_size + img_offset + img_size - 4;

	/* Skip flashing, if crc of flashed region matches */
	if (!memcmp(crc, p + crc_offset, 4))
		*crc_match = true;
	else
		*crc_match = false;

	return status;
}

static int be_flash(struct be_adapter *adapter, const u8 *img,
		    struct be_dma_mem *flash_cmd, int optype, int img_size,
		    u32 img_offset)
{
	u32 flash_op, num_bytes, total_bytes = img_size, bytes_sent = 0;
	struct be_cmd_write_flashrom *req = flash_cmd->va;
	int status;

	while (total_bytes) {
		num_bytes = min_t(u32, 32 * 1024, total_bytes);

		total_bytes -= num_bytes;

		if (!total_bytes) {
			if (optype == OPTYPE_PHY_FW)
				flash_op = FLASHROM_OPER_PHY_FLASH;
			else
				flash_op = FLASHROM_OPER_FLASH;
		} else {
			if (optype == OPTYPE_PHY_FW)
				flash_op = FLASHROM_OPER_PHY_SAVE;
			else
				flash_op = FLASHROM_OPER_SAVE;
		}

		memcpy(req->data_buf, img, num_bytes);
		img += num_bytes;
		status = be_cmd_write_flashrom(adapter, flash_cmd, optype,
					       flash_op, img_offset +
					       bytes_sent, num_bytes);
		if (base_status(status) == MCC_STATUS_ILLEGAL_REQUEST &&
		    optype == OPTYPE_PHY_FW)
			break;
		else if (status)
			return status;

		bytes_sent += num_bytes;
	}
	return 0;
}

2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751
#define NCSI_UPDATE_LOG	"NCSI section update is not supported in FW ver %s\n"
static bool be_fw_ncsi_supported(char *ver)
{
	int v1[4] = {3, 102, 148, 0}; /* Min ver that supports NCSI FW */
	int v2[4];
	int i;

	if (sscanf(ver, "%d.%d.%d.%d", &v2[0], &v2[1], &v2[2], &v2[3]) != 4)
		return false;

	for (i = 0; i < 4; i++) {
		if (v1[i] < v2[i])
			return true;
		else if (v1[i] > v2[i])
			return false;
	}

	return true;
}

2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828
/* For BE2, BE3 and BE3-R */
static int be_flash_BEx(struct be_adapter *adapter,
			const struct firmware *fw,
			struct be_dma_mem *flash_cmd, int num_of_images)
{
	int img_hdrs_size = (num_of_images * sizeof(struct image_hdr));
	struct device *dev = &adapter->pdev->dev;
	struct flash_section_info *fsec = NULL;
	int status, i, filehdr_size, num_comp;
	const struct flash_comp *pflashcomp;
	bool crc_match;
	const u8 *p;

	struct flash_comp gen3_flash_types[] = {
		{ BE3_ISCSI_PRIMARY_IMAGE_START, OPTYPE_ISCSI_ACTIVE,
			BE3_COMP_MAX_SIZE, IMAGE_FIRMWARE_ISCSI},
		{ BE3_REDBOOT_START, OPTYPE_REDBOOT,
			BE3_REDBOOT_COMP_MAX_SIZE, IMAGE_BOOT_CODE},
		{ BE3_ISCSI_BIOS_START, OPTYPE_BIOS,
			BE3_BIOS_COMP_MAX_SIZE, IMAGE_OPTION_ROM_ISCSI},
		{ BE3_PXE_BIOS_START, OPTYPE_PXE_BIOS,
			BE3_BIOS_COMP_MAX_SIZE, IMAGE_OPTION_ROM_PXE},
		{ BE3_FCOE_BIOS_START, OPTYPE_FCOE_BIOS,
			BE3_BIOS_COMP_MAX_SIZE, IMAGE_OPTION_ROM_FCOE},
		{ BE3_ISCSI_BACKUP_IMAGE_START, OPTYPE_ISCSI_BACKUP,
			BE3_COMP_MAX_SIZE, IMAGE_FIRMWARE_BACKUP_ISCSI},
		{ BE3_FCOE_PRIMARY_IMAGE_START, OPTYPE_FCOE_FW_ACTIVE,
			BE3_COMP_MAX_SIZE, IMAGE_FIRMWARE_FCOE},
		{ BE3_FCOE_BACKUP_IMAGE_START, OPTYPE_FCOE_FW_BACKUP,
			BE3_COMP_MAX_SIZE, IMAGE_FIRMWARE_BACKUP_FCOE},
		{ BE3_NCSI_START, OPTYPE_NCSI_FW,
			BE3_NCSI_COMP_MAX_SIZE, IMAGE_NCSI},
		{ BE3_PHY_FW_START, OPTYPE_PHY_FW,
			BE3_PHY_FW_COMP_MAX_SIZE, IMAGE_FIRMWARE_PHY}
	};

	struct flash_comp gen2_flash_types[] = {
		{ BE2_ISCSI_PRIMARY_IMAGE_START, OPTYPE_ISCSI_ACTIVE,
			BE2_COMP_MAX_SIZE, IMAGE_FIRMWARE_ISCSI},
		{ BE2_REDBOOT_START, OPTYPE_REDBOOT,
			BE2_REDBOOT_COMP_MAX_SIZE, IMAGE_BOOT_CODE},
		{ BE2_ISCSI_BIOS_START, OPTYPE_BIOS,
			BE2_BIOS_COMP_MAX_SIZE, IMAGE_OPTION_ROM_ISCSI},
		{ BE2_PXE_BIOS_START, OPTYPE_PXE_BIOS,
			BE2_BIOS_COMP_MAX_SIZE, IMAGE_OPTION_ROM_PXE},
		{ BE2_FCOE_BIOS_START, OPTYPE_FCOE_BIOS,
			BE2_BIOS_COMP_MAX_SIZE, IMAGE_OPTION_ROM_FCOE},
		{ BE2_ISCSI_BACKUP_IMAGE_START, OPTYPE_ISCSI_BACKUP,
			BE2_COMP_MAX_SIZE, IMAGE_FIRMWARE_BACKUP_ISCSI},
		{ BE2_FCOE_PRIMARY_IMAGE_START, OPTYPE_FCOE_FW_ACTIVE,
			BE2_COMP_MAX_SIZE, IMAGE_FIRMWARE_FCOE},
		{ BE2_FCOE_BACKUP_IMAGE_START, OPTYPE_FCOE_FW_BACKUP,
			 BE2_COMP_MAX_SIZE, IMAGE_FIRMWARE_BACKUP_FCOE}
	};

	if (BE3_chip(adapter)) {
		pflashcomp = gen3_flash_types;
		filehdr_size = sizeof(struct flash_file_hdr_g3);
		num_comp = ARRAY_SIZE(gen3_flash_types);
	} else {
		pflashcomp = gen2_flash_types;
		filehdr_size = sizeof(struct flash_file_hdr_g2);
		num_comp = ARRAY_SIZE(gen2_flash_types);
		img_hdrs_size = 0;
	}

	/* Get flash section info*/
	fsec = get_fsec_info(adapter, filehdr_size + img_hdrs_size, fw);
	if (!fsec) {
		dev_err(dev, "Invalid Cookie. FW image may be corrupted\n");
		return -1;
	}
	for (i = 0; i < num_comp; i++) {
		if (!is_comp_in_ufi(adapter, fsec, pflashcomp[i].img_type))
			continue;

		if ((pflashcomp[i].optype == OPTYPE_NCSI_FW) &&
2829 2830
		    !be_fw_ncsi_supported(adapter->fw_ver)) {
			dev_info(dev, NCSI_UPDATE_LOG, adapter->fw_ver);
2831
			continue;
2832
		}
2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028

		if (pflashcomp[i].optype == OPTYPE_PHY_FW  &&
		    !phy_flashing_required(adapter))
			continue;

		if (pflashcomp[i].optype == OPTYPE_REDBOOT) {
			status = be_check_flash_crc(adapter, fw->data,
						    pflashcomp[i].offset,
						    pflashcomp[i].size,
						    filehdr_size +
						    img_hdrs_size,
						    OPTYPE_REDBOOT, &crc_match);
			if (status) {
				dev_err(dev,
					"Could not get CRC for 0x%x region\n",
					pflashcomp[i].optype);
				continue;
			}

			if (crc_match)
				continue;
		}

		p = fw->data + filehdr_size + pflashcomp[i].offset +
			img_hdrs_size;
		if (p + pflashcomp[i].size > fw->data + fw->size)
			return -1;

		status = be_flash(adapter, p, flash_cmd, pflashcomp[i].optype,
				  pflashcomp[i].size, 0);
		if (status) {
			dev_err(dev, "Flashing section type 0x%x failed\n",
				pflashcomp[i].img_type);
			return status;
		}
	}
	return 0;
}

static u16 be_get_img_optype(struct flash_section_entry fsec_entry)
{
	u32 img_type = le32_to_cpu(fsec_entry.type);
	u16 img_optype = le16_to_cpu(fsec_entry.optype);

	if (img_optype != 0xFFFF)
		return img_optype;

	switch (img_type) {
	case IMAGE_FIRMWARE_ISCSI:
		img_optype = OPTYPE_ISCSI_ACTIVE;
		break;
	case IMAGE_BOOT_CODE:
		img_optype = OPTYPE_REDBOOT;
		break;
	case IMAGE_OPTION_ROM_ISCSI:
		img_optype = OPTYPE_BIOS;
		break;
	case IMAGE_OPTION_ROM_PXE:
		img_optype = OPTYPE_PXE_BIOS;
		break;
	case IMAGE_OPTION_ROM_FCOE:
		img_optype = OPTYPE_FCOE_BIOS;
		break;
	case IMAGE_FIRMWARE_BACKUP_ISCSI:
		img_optype = OPTYPE_ISCSI_BACKUP;
		break;
	case IMAGE_NCSI:
		img_optype = OPTYPE_NCSI_FW;
		break;
	case IMAGE_FLASHISM_JUMPVECTOR:
		img_optype = OPTYPE_FLASHISM_JUMPVECTOR;
		break;
	case IMAGE_FIRMWARE_PHY:
		img_optype = OPTYPE_SH_PHY_FW;
		break;
	case IMAGE_REDBOOT_DIR:
		img_optype = OPTYPE_REDBOOT_DIR;
		break;
	case IMAGE_REDBOOT_CONFIG:
		img_optype = OPTYPE_REDBOOT_CONFIG;
		break;
	case IMAGE_UFI_DIR:
		img_optype = OPTYPE_UFI_DIR;
		break;
	default:
		break;
	}

	return img_optype;
}

static int be_flash_skyhawk(struct be_adapter *adapter,
			    const struct firmware *fw,
			    struct be_dma_mem *flash_cmd, int num_of_images)
{
	int img_hdrs_size = num_of_images * sizeof(struct image_hdr);
	bool crc_match, old_fw_img, flash_offset_support = true;
	struct device *dev = &adapter->pdev->dev;
	struct flash_section_info *fsec = NULL;
	u32 img_offset, img_size, img_type;
	u16 img_optype, flash_optype;
	int status, i, filehdr_size;
	const u8 *p;

	filehdr_size = sizeof(struct flash_file_hdr_g3);
	fsec = get_fsec_info(adapter, filehdr_size + img_hdrs_size, fw);
	if (!fsec) {
		dev_err(dev, "Invalid Cookie. FW image may be corrupted\n");
		return -EINVAL;
	}

retry_flash:
	for (i = 0; i < le32_to_cpu(fsec->fsec_hdr.num_images); i++) {
		img_offset = le32_to_cpu(fsec->fsec_entry[i].offset);
		img_size   = le32_to_cpu(fsec->fsec_entry[i].pad_size);
		img_type   = le32_to_cpu(fsec->fsec_entry[i].type);
		img_optype = be_get_img_optype(fsec->fsec_entry[i]);
		old_fw_img = fsec->fsec_entry[i].optype == 0xFFFF;

		if (img_optype == 0xFFFF)
			continue;

		if (flash_offset_support)
			flash_optype = OPTYPE_OFFSET_SPECIFIED;
		else
			flash_optype = img_optype;

		/* Don't bother verifying CRC if an old FW image is being
		 * flashed
		 */
		if (old_fw_img)
			goto flash;

		status = be_check_flash_crc(adapter, fw->data, img_offset,
					    img_size, filehdr_size +
					    img_hdrs_size, flash_optype,
					    &crc_match);
		if (base_status(status) == MCC_STATUS_ILLEGAL_REQUEST ||
		    base_status(status) == MCC_STATUS_ILLEGAL_FIELD) {
			/* The current FW image on the card does not support
			 * OFFSET based flashing. Retry using older mechanism
			 * of OPTYPE based flashing
			 */
			if (flash_optype == OPTYPE_OFFSET_SPECIFIED) {
				flash_offset_support = false;
				goto retry_flash;
			}

			/* The current FW image on the card does not recognize
			 * the new FLASH op_type. The FW download is partially
			 * complete. Reboot the server now to enable FW image
			 * to recognize the new FLASH op_type. To complete the
			 * remaining process, download the same FW again after
			 * the reboot.
			 */
			dev_err(dev, "Flash incomplete. Reset the server\n");
			dev_err(dev, "Download FW image again after reset\n");
			return -EAGAIN;
		} else if (status) {
			dev_err(dev, "Could not get CRC for 0x%x region\n",
				img_optype);
			return -EFAULT;
		}

		if (crc_match)
			continue;

flash:
		p = fw->data + filehdr_size + img_offset + img_hdrs_size;
		if (p + img_size > fw->data + fw->size)
			return -1;

		status = be_flash(adapter, p, flash_cmd, flash_optype, img_size,
				  img_offset);

		/* The current FW image on the card does not support OFFSET
		 * based flashing. Retry using older mechanism of OPTYPE based
		 * flashing
		 */
		if (base_status(status) == MCC_STATUS_ILLEGAL_FIELD &&
		    flash_optype == OPTYPE_OFFSET_SPECIFIED) {
			flash_offset_support = false;
			goto retry_flash;
		}

		/* For old FW images ignore ILLEGAL_FIELD error or errors on
		 * UFI_DIR region
		 */
		if (old_fw_img &&
		    (base_status(status) == MCC_STATUS_ILLEGAL_FIELD ||
		     (img_optype == OPTYPE_UFI_DIR &&
		      base_status(status) == MCC_STATUS_FAILED))) {
			continue;
		} else if (status) {
			dev_err(dev, "Flashing section type 0x%x failed\n",
				img_type);
3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041

			switch (addl_status(status)) {
			case MCC_ADDL_STATUS_MISSING_SIGNATURE:
				dev_err(dev,
					"Digital signature missing in FW\n");
				return -EINVAL;
			case MCC_ADDL_STATUS_INVALID_SIGNATURE:
				dev_err(dev,
					"Invalid digital signature in FW\n");
				return -EINVAL;
			default:
				return -EFAULT;
			}
3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215
		}
	}
	return 0;
}

int lancer_fw_download(struct be_adapter *adapter,
		       const struct firmware *fw)
{
	struct device *dev = &adapter->pdev->dev;
	struct be_dma_mem flash_cmd;
	const u8 *data_ptr = NULL;
	u8 *dest_image_ptr = NULL;
	size_t image_size = 0;
	u32 chunk_size = 0;
	u32 data_written = 0;
	u32 offset = 0;
	int status = 0;
	u8 add_status = 0;
	u8 change_status;

	if (!IS_ALIGNED(fw->size, sizeof(u32))) {
		dev_err(dev, "FW image size should be multiple of 4\n");
		return -EINVAL;
	}

	flash_cmd.size = sizeof(struct lancer_cmd_req_write_object)
				+ LANCER_FW_DOWNLOAD_CHUNK;
	flash_cmd.va = dma_zalloc_coherent(dev, flash_cmd.size,
					   &flash_cmd.dma, GFP_KERNEL);
	if (!flash_cmd.va)
		return -ENOMEM;

	dest_image_ptr = flash_cmd.va +
				sizeof(struct lancer_cmd_req_write_object);
	image_size = fw->size;
	data_ptr = fw->data;

	while (image_size) {
		chunk_size = min_t(u32, image_size, LANCER_FW_DOWNLOAD_CHUNK);

		/* Copy the image chunk content. */
		memcpy(dest_image_ptr, data_ptr, chunk_size);

		status = lancer_cmd_write_object(adapter, &flash_cmd,
						 chunk_size, offset,
						 LANCER_FW_DOWNLOAD_LOCATION,
						 &data_written, &change_status,
						 &add_status);
		if (status)
			break;

		offset += data_written;
		data_ptr += data_written;
		image_size -= data_written;
	}

	if (!status) {
		/* Commit the FW written */
		status = lancer_cmd_write_object(adapter, &flash_cmd,
						 0, offset,
						 LANCER_FW_DOWNLOAD_LOCATION,
						 &data_written, &change_status,
						 &add_status);
	}

	dma_free_coherent(dev, flash_cmd.size, flash_cmd.va, flash_cmd.dma);
	if (status) {
		dev_err(dev, "Firmware load error\n");
		return be_cmd_status(status);
	}

	dev_info(dev, "Firmware flashed successfully\n");

	if (change_status == LANCER_FW_RESET_NEEDED) {
		dev_info(dev, "Resetting adapter to activate new FW\n");
		status = lancer_physdev_ctrl(adapter,
					     PHYSDEV_CONTROL_FW_RESET_MASK);
		if (status) {
			dev_err(dev, "Adapter busy, could not reset FW\n");
			dev_err(dev, "Reboot server to activate new FW\n");
		}
	} else if (change_status != LANCER_NO_RESET_NEEDED) {
		dev_info(dev, "Reboot server to activate new FW\n");
	}

	return 0;
}

/* Check if the flash image file is compatible with the adapter that
 * is being flashed.
 */
static bool be_check_ufi_compatibility(struct be_adapter *adapter,
				       struct flash_file_hdr_g3 *fhdr)
{
	if (!fhdr) {
		dev_err(&adapter->pdev->dev, "Invalid FW UFI file");
		return false;
	}

	/* First letter of the build version is used to identify
	 * which chip this image file is meant for.
	 */
	switch (fhdr->build[0]) {
	case BLD_STR_UFI_TYPE_SH:
		if (!skyhawk_chip(adapter))
			return false;
		break;
	case BLD_STR_UFI_TYPE_BE3:
		if (!BE3_chip(adapter))
			return false;
		break;
	case BLD_STR_UFI_TYPE_BE2:
		if (!BE2_chip(adapter))
			return false;
		break;
	default:
		return false;
	}

	/* In BE3 FW images the "asic_type_rev" field doesn't track the
	 * asic_rev of the chips it is compatible with.
	 * When asic_type_rev is 0 the image is compatible only with
	 * pre-BE3-R chips (asic_rev < 0x10)
	 */
	if (BEx_chip(adapter) && fhdr->asic_type_rev == 0)
		return adapter->asic_rev < 0x10;
	else
		return (fhdr->asic_type_rev >= adapter->asic_rev);
}

int be_fw_download(struct be_adapter *adapter, const struct firmware *fw)
{
	struct device *dev = &adapter->pdev->dev;
	struct flash_file_hdr_g3 *fhdr3;
	struct image_hdr *img_hdr_ptr;
	int status = 0, i, num_imgs;
	struct be_dma_mem flash_cmd;

	fhdr3 = (struct flash_file_hdr_g3 *)fw->data;
	if (!be_check_ufi_compatibility(adapter, fhdr3)) {
		dev_err(dev, "Flash image is not compatible with adapter\n");
		return -EINVAL;
	}

	flash_cmd.size = sizeof(struct be_cmd_write_flashrom);
	flash_cmd.va = dma_zalloc_coherent(dev, flash_cmd.size, &flash_cmd.dma,
					   GFP_KERNEL);
	if (!flash_cmd.va)
		return -ENOMEM;

	num_imgs = le32_to_cpu(fhdr3->num_imgs);
	for (i = 0; i < num_imgs; i++) {
		img_hdr_ptr = (struct image_hdr *)(fw->data +
				(sizeof(struct flash_file_hdr_g3) +
				 i * sizeof(struct image_hdr)));
		if (!BE2_chip(adapter) &&
		    le32_to_cpu(img_hdr_ptr->imageid) != 1)
			continue;

		if (skyhawk_chip(adapter))
			status = be_flash_skyhawk(adapter, fw, &flash_cmd,
						  num_imgs);
		else
			status = be_flash_BEx(adapter, fw, &flash_cmd,
					      num_imgs);
	}

	dma_free_coherent(dev, flash_cmd.size, flash_cmd.va, flash_cmd.dma);
	if (!status)
		dev_info(dev, "Firmware flashed successfully\n");

	return status;
}

3216
int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
3217
			    struct be_dma_mem *nonemb_cmd)
3218 3219 3220 3221 3222
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_acpi_wol_magic_config *req;
	int status;

3223
	mutex_lock(&adapter->mcc_lock);
3224 3225 3226 3227 3228 3229 3230 3231

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = nonemb_cmd->va;

S
Somnath Kotur 已提交
3232
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
3233 3234
			       OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG, sizeof(*req),
			       wrb, nonemb_cmd);
3235 3236 3237 3238 3239
	memcpy(req->magic_mac, mac, ETH_ALEN);

	status = be_mcc_notify_wait(adapter);

err:
3240
	mutex_unlock(&adapter->mcc_lock);
3241 3242
	return status;
}
3243

3244 3245 3246 3247 3248 3249 3250
int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num,
			u8 loopback_type, u8 enable)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_lmode *req;
	int status;

3251 3252 3253 3254
	if (!be_cmd_allowed(adapter, OPCODE_LOWLEVEL_SET_LOOPBACK_MODE,
			    CMD_SUBSYSTEM_LOWLEVEL))
		return -EPERM;

3255
	mutex_lock(&adapter->mcc_lock);
3256 3257 3258 3259

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
3260
		goto err_unlock;
3261 3262 3263 3264
	}

	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
3265
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
3266 3267
			       OPCODE_LOWLEVEL_SET_LOOPBACK_MODE, sizeof(*req),
			       wrb, NULL);
3268 3269 3270 3271 3272 3273

	req->src_port = port_num;
	req->dest_port = port_num;
	req->loopback_type = loopback_type;
	req->loopback_state = enable;

3274 3275 3276 3277
	status = be_mcc_notify(adapter);
	if (status)
		goto err_unlock;

3278
	mutex_unlock(&adapter->mcc_lock);
3279 3280 3281 3282 3283 3284 3285 3286

	if (!wait_for_completion_timeout(&adapter->et_cmd_compl,
					 msecs_to_jiffies(SET_LB_MODE_TIMEOUT)))
		status = -ETIMEDOUT;

	return status;

err_unlock:
3287
	mutex_unlock(&adapter->mcc_lock);
3288 3289 3290
	return status;
}

3291
int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
3292 3293
			 u32 loopback_type, u32 pkt_size, u32 num_pkts,
			 u64 pattern)
3294 3295 3296
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_loopback_test *req;
3297
	struct be_cmd_resp_loopback_test *resp;
3298 3299
	int status;

3300 3301 3302 3303
	if (!be_cmd_allowed(adapter, OPCODE_LOWLEVEL_LOOPBACK_TEST,
			    CMD_SUBSYSTEM_LOWLEVEL))
		return -EPERM;

3304
	mutex_lock(&adapter->mcc_lock);
3305 3306 3307 3308 3309 3310 3311 3312 3313

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
3314
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
3315 3316
			       OPCODE_LOWLEVEL_LOOPBACK_TEST, sizeof(*req), wrb,
			       NULL);
3317

3318
	req->hdr.timeout = cpu_to_le32(15);
3319 3320 3321 3322 3323 3324 3325
	req->pattern = cpu_to_le64(pattern);
	req->src_port = cpu_to_le32(port_num);
	req->dest_port = cpu_to_le32(port_num);
	req->pkt_size = cpu_to_le32(pkt_size);
	req->num_pkts = cpu_to_le32(num_pkts);
	req->loopback_type = cpu_to_le32(loopback_type);

3326 3327 3328
	status = be_mcc_notify(adapter);
	if (status)
		goto err;
3329

3330
	mutex_unlock(&adapter->mcc_lock);
3331

3332 3333 3334 3335 3336
	wait_for_completion(&adapter->et_cmd_compl);
	resp = embedded_payload(wrb);
	status = le32_to_cpu(resp->status);

	return status;
3337
err:
3338
	mutex_unlock(&adapter->mcc_lock);
3339 3340 3341 3342
	return status;
}

int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern,
3343
			u32 byte_cnt, struct be_dma_mem *cmd)
3344 3345 3346 3347 3348 3349
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_ddrdma_test *req;
	int status;
	int i, j = 0;

3350 3351 3352 3353
	if (!be_cmd_allowed(adapter, OPCODE_LOWLEVEL_HOST_DDR_DMA,
			    CMD_SUBSYSTEM_LOWLEVEL))
		return -EPERM;

3354
	mutex_lock(&adapter->mcc_lock);
3355 3356 3357 3358 3359 3360 3361

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = cmd->va;
S
Somnath Kotur 已提交
3362
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
3363 3364
			       OPCODE_LOWLEVEL_HOST_DDR_DMA, cmd->size, wrb,
			       cmd);
3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378

	req->pattern = cpu_to_le64(pattern);
	req->byte_count = cpu_to_le32(byte_cnt);
	for (i = 0; i < byte_cnt; i++) {
		req->snd_buff[i] = (u8)(pattern >> (j*8));
		j++;
		if (j > 7)
			j = 0;
	}

	status = be_mcc_notify_wait(adapter);

	if (!status) {
		struct be_cmd_resp_ddrdma_test *resp;
3379

3380 3381
		resp = cmd->va;
		if ((memcmp(resp->rcv_buff, req->snd_buff, byte_cnt) != 0) ||
K
Kalesh AP 已提交
3382
		    resp->snd_err) {
3383 3384 3385 3386 3387
			status = -1;
		}
	}

err:
3388
	mutex_unlock(&adapter->mcc_lock);
3389 3390
	return status;
}
3391

3392
int be_cmd_get_seeprom_data(struct be_adapter *adapter,
3393
			    struct be_dma_mem *nonemb_cmd)
3394 3395 3396 3397 3398
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_seeprom_read *req;
	int status;

3399
	mutex_lock(&adapter->mcc_lock);
3400 3401

	wrb = wrb_from_mccq(adapter);
3402 3403 3404 3405
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
3406 3407
	req = nonemb_cmd->va;

S
Somnath Kotur 已提交
3408
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3409 3410
			       OPCODE_COMMON_SEEPROM_READ, sizeof(*req), wrb,
			       nonemb_cmd);
3411 3412 3413

	status = be_mcc_notify_wait(adapter);

3414
err:
3415
	mutex_unlock(&adapter->mcc_lock);
3416 3417
	return status;
}
3418

A
Ajit Khaparde 已提交
3419
int be_cmd_get_phy_info(struct be_adapter *adapter)
3420 3421 3422
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_phy_info *req;
3423
	struct be_dma_mem cmd;
3424 3425
	int status;

3426 3427 3428 3429
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_GET_PHY_DETAILS,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

3430
	mutex_lock(&adapter->mcc_lock);
3431 3432 3433 3434 3435 3436

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
3437
	cmd.size = sizeof(struct be_cmd_req_get_phy_info);
3438 3439
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
3440 3441 3442 3443 3444
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory alloc failure\n");
		status = -ENOMEM;
		goto err;
	}
3445

3446
	req = cmd.va;
3447

S
Somnath Kotur 已提交
3448
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3449 3450
			       OPCODE_COMMON_GET_PHY_DETAILS, sizeof(*req),
			       wrb, &cmd);
3451 3452

	status = be_mcc_notify_wait(adapter);
3453 3454 3455
	if (!status) {
		struct be_phy_info *resp_phy_info =
				cmd.va + sizeof(struct be_cmd_req_hdr);
3456

A
Ajit Khaparde 已提交
3457 3458
		adapter->phy.phy_type = le16_to_cpu(resp_phy_info->phy_type);
		adapter->phy.interface_type =
3459
			le16_to_cpu(resp_phy_info->interface_type);
A
Ajit Khaparde 已提交
3460 3461 3462 3463 3464 3465
		adapter->phy.auto_speeds_supported =
			le16_to_cpu(resp_phy_info->auto_speeds_supported);
		adapter->phy.fixed_speeds_supported =
			le16_to_cpu(resp_phy_info->fixed_speeds_supported);
		adapter->phy.misc_params =
			le32_to_cpu(resp_phy_info->misc_params);
3466 3467 3468 3469 3470 3471

		if (BE2_chip(adapter)) {
			adapter->phy.fixed_speeds_supported =
				BE_SUPPORTED_SPEED_10GBPS |
				BE_SUPPORTED_SPEED_1GBPS;
		}
3472
	}
3473
	dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma);
3474
err:
3475
	mutex_unlock(&adapter->mcc_lock);
3476 3477
	return status;
}
3478

L
Lad, Prabhakar 已提交
3479
static int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain)
3480 3481 3482 3483 3484
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_qos *req;
	int status;

3485
	mutex_lock(&adapter->mcc_lock);
3486 3487 3488 3489 3490 3491 3492 3493 3494

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
3495
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3496
			       OPCODE_COMMON_SET_QOS, sizeof(*req), wrb, NULL);
3497 3498

	req->hdr.domain = domain;
3499 3500
	req->valid_bits = cpu_to_le32(BE_QOS_BITS_NIC);
	req->max_bps_nic = cpu_to_le32(bps);
3501 3502 3503 3504

	status = be_mcc_notify_wait(adapter);

err:
3505
	mutex_unlock(&adapter->mcc_lock);
3506 3507
	return status;
}
3508 3509 3510 3511 3512 3513

int be_cmd_get_cntl_attributes(struct be_adapter *adapter)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_cntl_attribs *req;
	struct be_cmd_resp_cntl_attribs *resp;
3514
	int status, i;
3515 3516 3517
	int payload_len = max(sizeof(*req), sizeof(*resp));
	struct mgmt_controller_attrib *attribs;
	struct be_dma_mem attribs_cmd;
3518
	u32 *serial_num;
3519

S
Suresh Reddy 已提交
3520 3521 3522
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

3523 3524
	memset(&attribs_cmd, 0, sizeof(struct be_dma_mem));
	attribs_cmd.size = sizeof(struct be_cmd_resp_cntl_attribs);
3525 3526 3527
	attribs_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
					     attribs_cmd.size,
					     &attribs_cmd.dma, GFP_ATOMIC);
3528
	if (!attribs_cmd.va) {
3529
		dev_err(&adapter->pdev->dev, "Memory allocation failure\n");
S
Suresh Reddy 已提交
3530 3531
		status = -ENOMEM;
		goto err;
3532 3533 3534 3535 3536 3537 3538 3539 3540
	}

	wrb = wrb_from_mbox(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = attribs_cmd.va;

S
Somnath Kotur 已提交
3541
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3542 3543
			       OPCODE_COMMON_GET_CNTL_ATTRIBUTES, payload_len,
			       wrb, &attribs_cmd);
3544 3545 3546

	status = be_mbox_notify_wait(adapter);
	if (!status) {
3547
		attribs = attribs_cmd.va + sizeof(struct be_cmd_resp_hdr);
3548
		adapter->hba_port_num = attribs->hba_attribs.phy_port;
3549 3550 3551 3552
		serial_num = attribs->hba_attribs.controller_serial_number;
		for (i = 0; i < CNTL_SERIAL_NUM_WORDS; i++)
			adapter->serial_num[i] = le32_to_cpu(serial_num[i]) &
				(BIT_MASK(16) - 1);
3553 3554 3555 3556 3557
		/* For BEx, since GET_FUNC_CONFIG command is not
		 * supported, we read funcnum here as a workaround.
		 */
		if (BEx_chip(adapter))
			adapter->pf_num = attribs->hba_attribs.pci_funcnum;
3558 3559 3560 3561
	}

err:
	mutex_unlock(&adapter->mbox_lock);
S
Suresh Reddy 已提交
3562
	if (attribs_cmd.va)
3563 3564
		dma_free_coherent(&adapter->pdev->dev, attribs_cmd.size,
				  attribs_cmd.va, attribs_cmd.dma);
3565 3566
	return status;
}
3567 3568

/* Uses mbox */
3569
int be_cmd_req_native_mode(struct be_adapter *adapter)
3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_func_cap *req;
	int status;

	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

	wrb = wrb_from_mbox(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
3586
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3587 3588
			       OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP,
			       sizeof(*req), wrb, NULL);
3589 3590 3591 3592 3593 3594 3595 3596

	req->valid_cap_flags = cpu_to_le32(CAPABILITY_SW_TIMESTAMPS |
				CAPABILITY_BE3_NATIVE_ERX_API);
	req->cap_flags = cpu_to_le32(CAPABILITY_BE3_NATIVE_ERX_API);

	status = be_mbox_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_set_func_cap *resp = embedded_payload(wrb);
3597

3598 3599
		adapter->be3_native = le32_to_cpu(resp->cap_flags) &
					CAPABILITY_BE3_NATIVE_ERX_API;
S
Sathya Perla 已提交
3600 3601 3602
		if (!adapter->be3_native)
			dev_warn(&adapter->pdev->dev,
				 "adapter not in advanced mode\n");
3603 3604 3605 3606 3607
	}
err:
	mutex_unlock(&adapter->mbox_lock);
	return status;
}
3608

3609 3610 3611 3612 3613 3614 3615 3616
/* Get privilege(s) for a function */
int be_cmd_get_fn_privileges(struct be_adapter *adapter, u32 *privilege,
			     u32 domain)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_fn_privileges *req;
	int status;

3617
	mutex_lock(&adapter->mcc_lock);
3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_GET_FN_PRIVILEGES, sizeof(*req),
			       wrb, NULL);

	req->hdr.domain = domain;

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_fn_privileges *resp =
						embedded_payload(wrb);
3637

3638
		*privilege = le32_to_cpu(resp->privilege_mask);
3639 3640 3641 3642 3643 3644 3645

		/* In UMC mode FW does not return right privileges.
		 * Override with correct privilege equivalent to PF.
		 */
		if (BEx_chip(adapter) && be_is_mc(adapter) &&
		    be_physfn(adapter))
			*privilege = MAX_PRIVILEGES;
3646 3647 3648
	}

err:
3649
	mutex_unlock(&adapter->mcc_lock);
3650 3651 3652
	return status;
}

3653 3654 3655 3656 3657 3658 3659 3660
/* Set privilege(s) for a function */
int be_cmd_set_fn_privileges(struct be_adapter *adapter, u32 privileges,
			     u32 domain)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_fn_privileges *req;
	int status;

3661
	mutex_lock(&adapter->mcc_lock);
3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_SET_FN_PRIVILEGES, sizeof(*req),
			       wrb, NULL);
	req->hdr.domain = domain;
	if (lancer_chip(adapter))
		req->privileges_lancer = cpu_to_le32(privileges);
	else
		req->privileges = cpu_to_le32(privileges);

	status = be_mcc_notify_wait(adapter);
err:
3681
	mutex_unlock(&adapter->mcc_lock);
3682 3683 3684
	return status;
}

3685 3686 3687 3688
/* pmac_id_valid: true => pmac_id is supplied and MAC address is requested.
 * pmac_id_valid: false => pmac_id or MAC address is requested.
 *		  If pmac_id is returned, pmac_id_valid is returned as true
 */
3689
int be_cmd_get_mac_from_list(struct be_adapter *adapter, u8 *mac,
3690 3691
			     bool *pmac_id_valid, u32 *pmac_id, u32 if_handle,
			     u8 domain)
3692 3693 3694 3695 3696
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_mac_list *req;
	int status;
	int mac_count;
3697 3698 3699 3700 3701
	struct be_dma_mem get_mac_list_cmd;
	int i;

	memset(&get_mac_list_cmd, 0, sizeof(struct be_dma_mem));
	get_mac_list_cmd.size = sizeof(struct be_cmd_resp_get_mac_list);
3702 3703 3704 3705
	get_mac_list_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
						  get_mac_list_cmd.size,
						  &get_mac_list_cmd.dma,
						  GFP_ATOMIC);
3706 3707 3708

	if (!get_mac_list_cmd.va) {
		dev_err(&adapter->pdev->dev,
3709
			"Memory allocation failure during GET_MAC_LIST\n");
3710 3711
		return -ENOMEM;
	}
3712

3713
	mutex_lock(&adapter->mcc_lock);
3714 3715 3716 3717

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
3718
		goto out;
3719
	}
3720 3721

	req = get_mac_list_cmd.va;
3722 3723

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3724 3725
			       OPCODE_COMMON_GET_MAC_LIST,
			       get_mac_list_cmd.size, wrb, &get_mac_list_cmd);
3726
	req->hdr.domain = domain;
3727
	req->mac_type = MAC_ADDRESS_TYPE_NETWORK;
3728 3729
	if (*pmac_id_valid) {
		req->mac_id = cpu_to_le32(*pmac_id);
3730
		req->iface_id = cpu_to_le16(if_handle);
3731 3732 3733 3734
		req->perm_override = 0;
	} else {
		req->perm_override = 1;
	}
3735 3736 3737 3738

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_mac_list *resp =
3739
						get_mac_list_cmd.va;
3740 3741 3742 3743 3744 3745 3746

		if (*pmac_id_valid) {
			memcpy(mac, resp->macid_macaddr.mac_addr_id.macaddr,
			       ETH_ALEN);
			goto out;
		}

3747 3748
		mac_count = resp->true_mac_count + resp->pseudo_mac_count;
		/* Mac list returned could contain one or more active mac_ids
3749
		 * or one or more true or pseudo permanent mac addresses.
3750 3751
		 * If an active mac_id is present, return first active mac_id
		 * found.
3752
		 */
3753
		for (i = 0; i < mac_count; i++) {
3754 3755 3756 3757 3758 3759 3760 3761 3762 3763
			struct get_list_macaddr *mac_entry;
			u16 mac_addr_size;
			u32 mac_id;

			mac_entry = &resp->macaddr_list[i];
			mac_addr_size = le16_to_cpu(mac_entry->mac_addr_size);
			/* mac_id is a 32 bit value and mac_addr size
			 * is 6 bytes
			 */
			if (mac_addr_size == sizeof(u32)) {
3764
				*pmac_id_valid = true;
3765 3766 3767
				mac_id = mac_entry->mac_addr_id.s_mac_id.mac_id;
				*pmac_id = le32_to_cpu(mac_id);
				goto out;
3768 3769
			}
		}
3770
		/* If no active mac_id found, return first mac addr */
3771
		*pmac_id_valid = false;
3772
		memcpy(mac, resp->macaddr_list[0].mac_addr_id.macaddr,
3773
		       ETH_ALEN);
3774 3775
	}

3776
out:
3777
	mutex_unlock(&adapter->mcc_lock);
3778 3779
	dma_free_coherent(&adapter->pdev->dev, get_mac_list_cmd.size,
			  get_mac_list_cmd.va, get_mac_list_cmd.dma);
3780 3781 3782
	return status;
}

3783 3784
int be_cmd_get_active_mac(struct be_adapter *adapter, u32 curr_pmac_id,
			  u8 *mac, u32 if_handle, bool active, u32 domain)
3785
{
3786 3787 3788
	if (!active)
		be_cmd_get_mac_from_list(adapter, mac, &active, &curr_pmac_id,
					 if_handle, domain);
3789
	if (BEx_chip(adapter))
3790
		return be_cmd_mac_addr_query(adapter, mac, false,
3791
					     if_handle, curr_pmac_id);
3792 3793 3794
	else
		/* Fetch the MAC address using pmac_id */
		return be_cmd_get_mac_from_list(adapter, mac, &active,
3795 3796
						&curr_pmac_id,
						if_handle, domain);
3797 3798
}

3799 3800 3801 3802 3803
int be_cmd_get_perm_mac(struct be_adapter *adapter, u8 *mac)
{
	int status;
	bool pmac_valid = false;

3804
	eth_zero_addr(mac);
3805

3806 3807 3808 3809 3810 3811 3812 3813
	if (BEx_chip(adapter)) {
		if (be_physfn(adapter))
			status = be_cmd_mac_addr_query(adapter, mac, true, 0,
						       0);
		else
			status = be_cmd_mac_addr_query(adapter, mac, false,
						       adapter->if_handle, 0);
	} else {
3814
		status = be_cmd_get_mac_from_list(adapter, mac, &pmac_valid,
3815
						  NULL, adapter->if_handle, 0);
3816 3817
	}

3818 3819 3820
	return status;
}

3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831
/* Uses synchronous MCCQ */
int be_cmd_set_mac_list(struct be_adapter *adapter, u8 *mac_array,
			u8 mac_count, u32 domain)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_mac_list *req;
	int status;
	struct be_dma_mem cmd;

	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_req_set_mac_list);
3832 3833
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_KERNEL);
3834
	if (!cmd.va)
3835 3836
		return -ENOMEM;

3837
	mutex_lock(&adapter->mcc_lock);
3838 3839 3840 3841 3842 3843 3844 3845 3846

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = cmd.va;
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3847 3848
			       OPCODE_COMMON_SET_MAC_LIST, sizeof(*req),
			       wrb, &cmd);
3849 3850 3851 3852 3853 3854 3855 3856 3857

	req->hdr.domain = domain;
	req->mac_count = mac_count;
	if (mac_count)
		memcpy(req->mac, mac_array, ETH_ALEN*mac_count);

	status = be_mcc_notify_wait(adapter);

err:
3858
	dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma);
3859
	mutex_unlock(&adapter->mcc_lock);
3860 3861
	return status;
}
3862

3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874
/* Wrapper to delete any active MACs and provision the new mac.
 * Changes to MAC_LIST are allowed iff none of the MAC addresses in the
 * current list are active.
 */
int be_cmd_set_mac(struct be_adapter *adapter, u8 *mac, int if_id, u32 dom)
{
	bool active_mac = false;
	u8 old_mac[ETH_ALEN];
	u32 pmac_id;
	int status;

	status = be_cmd_get_mac_from_list(adapter, old_mac, &active_mac,
3875 3876
					  &pmac_id, if_id, dom);

3877 3878 3879 3880 3881 3882
	if (!status && active_mac)
		be_cmd_pmac_del(adapter, if_id, pmac_id, dom);

	return be_cmd_set_mac_list(adapter, mac, mac ? 1 : 0, dom);
}

3883
int be_cmd_set_hsw_config(struct be_adapter *adapter, u16 pvid,
3884
			  u32 domain, u16 intf_id, u16 hsw_mode, u8 spoofchk)
3885 3886 3887 3888 3889 3890
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_hsw_config *req;
	void *ctxt;
	int status;

3891 3892 3893 3894
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_SET_HSW_CONFIG,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

3895
	mutex_lock(&adapter->mcc_lock);
3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);
	ctxt = &req->context;

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3907 3908
			       OPCODE_COMMON_SET_HSW_CONFIG, sizeof(*req), wrb,
			       NULL);
3909 3910 3911 3912 3913 3914 3915

	req->hdr.domain = domain;
	AMAP_SET_BITS(struct amap_set_hsw_context, interface_id, ctxt, intf_id);
	if (pvid) {
		AMAP_SET_BITS(struct amap_set_hsw_context, pvid_valid, ctxt, 1);
		AMAP_SET_BITS(struct amap_set_hsw_context, pvid, ctxt, pvid);
	}
3916
	if (hsw_mode) {
3917 3918 3919 3920 3921 3922
		AMAP_SET_BITS(struct amap_set_hsw_context, interface_id,
			      ctxt, adapter->hba_port_num);
		AMAP_SET_BITS(struct amap_set_hsw_context, pport, ctxt, 1);
		AMAP_SET_BITS(struct amap_set_hsw_context, port_fwd_type,
			      ctxt, hsw_mode);
	}
3923

3924 3925 3926 3927 3928 3929 3930 3931
	/* Enable/disable both mac and vlan spoof checking */
	if (!BEx_chip(adapter) && spoofchk) {
		AMAP_SET_BITS(struct amap_set_hsw_context, mac_spoofchk,
			      ctxt, spoofchk);
		AMAP_SET_BITS(struct amap_set_hsw_context, vlan_spoofchk,
			      ctxt, spoofchk);
	}

3932 3933 3934 3935
	be_dws_cpu_to_le(req->context, sizeof(req->context));
	status = be_mcc_notify_wait(adapter);

err:
3936
	mutex_unlock(&adapter->mcc_lock);
3937 3938 3939 3940 3941
	return status;
}

/* Get Hyper switch config */
int be_cmd_get_hsw_config(struct be_adapter *adapter, u16 *pvid,
3942
			  u32 domain, u16 intf_id, u8 *mode, bool *spoofchk)
3943 3944 3945 3946 3947 3948 3949
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_hsw_config *req;
	void *ctxt;
	int status;
	u16 vid;

3950
	mutex_lock(&adapter->mcc_lock);
3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);
	ctxt = &req->context;

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3962 3963
			       OPCODE_COMMON_GET_HSW_CONFIG, sizeof(*req), wrb,
			       NULL);
3964 3965

	req->hdr.domain = domain;
3966 3967
	AMAP_SET_BITS(struct amap_get_hsw_req_context, interface_id,
		      ctxt, intf_id);
3968
	AMAP_SET_BITS(struct amap_get_hsw_req_context, pvid_valid, ctxt, 1);
3969

3970
	if (!BEx_chip(adapter) && mode) {
3971 3972 3973 3974
		AMAP_SET_BITS(struct amap_get_hsw_req_context, interface_id,
			      ctxt, adapter->hba_port_num);
		AMAP_SET_BITS(struct amap_get_hsw_req_context, pport, ctxt, 1);
	}
3975 3976 3977 3978 3979 3980
	be_dws_cpu_to_le(req->context, sizeof(req->context));

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_hsw_config *resp =
						embedded_payload(wrb);
3981

3982
		be_dws_le_to_cpu(&resp->context, sizeof(resp->context));
3983
		vid = AMAP_GET_BITS(struct amap_get_hsw_resp_context,
3984
				    pvid, &resp->context);
3985 3986 3987 3988 3989
		if (pvid)
			*pvid = le16_to_cpu(vid);
		if (mode)
			*mode = AMAP_GET_BITS(struct amap_get_hsw_resp_context,
					      port_fwd_type, &resp->context);
3990 3991 3992 3993
		if (spoofchk)
			*spoofchk =
				AMAP_GET_BITS(struct amap_get_hsw_resp_context,
					      spoofchk, &resp->context);
3994 3995 3996
	}

err:
3997
	mutex_unlock(&adapter->mcc_lock);
3998 3999 4000
	return status;
}

4001 4002 4003 4004
static bool be_is_wol_excluded(struct be_adapter *adapter)
{
	struct pci_dev *pdev = adapter->pdev;

4005
	if (be_virtfn(adapter))
4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018
		return true;

	switch (pdev->subsystem_device) {
	case OC_SUBSYS_DEVICE_ID1:
	case OC_SUBSYS_DEVICE_ID2:
	case OC_SUBSYS_DEVICE_ID3:
	case OC_SUBSYS_DEVICE_ID4:
		return true;
	default:
		return false;
	}
}

4019 4020 4021 4022
int be_cmd_get_acpi_wol_cap(struct be_adapter *adapter)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_acpi_wol_magic_config_v1 *req;
S
Suresh Reddy 已提交
4023
	int status = 0;
4024 4025
	struct be_dma_mem cmd;

4026 4027 4028 4029
	if (!be_cmd_allowed(adapter, OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG,
			    CMD_SUBSYSTEM_ETH))
		return -EPERM;

S
Suresh Reddy 已提交
4030 4031 4032
	if (be_is_wol_excluded(adapter))
		return status;

S
Suresh Reddy 已提交
4033 4034 4035
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

4036 4037
	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_resp_acpi_wol_magic_config_v1);
4038 4039
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
4040
	if (!cmd.va) {
4041
		dev_err(&adapter->pdev->dev, "Memory allocation failure\n");
S
Suresh Reddy 已提交
4042 4043
		status = -ENOMEM;
		goto err;
4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055
	}

	wrb = wrb_from_mbox(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = cmd.va;

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
			       OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG,
S
Suresh Reddy 已提交
4056
			       sizeof(*req), wrb, &cmd);
4057 4058 4059 4060 4061 4062 4063

	req->hdr.version = 1;
	req->query_options = BE_GET_WOL_CAP;

	status = be_mbox_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_acpi_wol_magic_config_v1 *resp;
4064

K
Kalesh AP 已提交
4065
		resp = (struct be_cmd_resp_acpi_wol_magic_config_v1 *)cmd.va;
4066 4067

		adapter->wol_cap = resp->wol_settings;
4068 4069 4070 4071

		/* Non-zero macaddr indicates WOL is enabled */
		if (adapter->wol_cap & BE_WOL_CAP &&
		    !is_zero_ether_addr(resp->magic_mac))
S
Suresh Reddy 已提交
4072
			adapter->wol_en = true;
4073 4074 4075
	}
err:
	mutex_unlock(&adapter->mbox_lock);
S
Suresh Reddy 已提交
4076
	if (cmd.va)
4077 4078
		dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
				  cmd.dma);
4079
	return status;
4080 4081

}
4082 4083 4084 4085 4086 4087 4088 4089 4090 4091

int be_cmd_set_fw_log_level(struct be_adapter *adapter, u32 level)
{
	struct be_dma_mem extfat_cmd;
	struct be_fat_conf_params *cfgs;
	int status;
	int i, j;

	memset(&extfat_cmd, 0, sizeof(struct be_dma_mem));
	extfat_cmd.size = sizeof(struct be_cmd_resp_get_ext_fat_caps);
4092 4093 4094
	extfat_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
					    extfat_cmd.size, &extfat_cmd.dma,
					    GFP_ATOMIC);
4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105
	if (!extfat_cmd.va)
		return -ENOMEM;

	status = be_cmd_get_ext_fat_capabilites(adapter, &extfat_cmd);
	if (status)
		goto err;

	cfgs = (struct be_fat_conf_params *)
			(extfat_cmd.va + sizeof(struct be_cmd_resp_hdr));
	for (i = 0; i < le32_to_cpu(cfgs->num_modules); i++) {
		u32 num_modes = le32_to_cpu(cfgs->module[i].num_modes);
4106

4107 4108 4109 4110 4111 4112 4113 4114 4115
		for (j = 0; j < num_modes; j++) {
			if (cfgs->module[i].trace_lvl[j].mode == MODE_UART)
				cfgs->module[i].trace_lvl[j].dbg_lvl =
							cpu_to_le32(level);
		}
	}

	status = be_cmd_set_ext_fat_capabilites(adapter, &extfat_cmd, cfgs);
err:
4116 4117
	dma_free_coherent(&adapter->pdev->dev, extfat_cmd.size, extfat_cmd.va,
			  extfat_cmd.dma);
4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129
	return status;
}

int be_cmd_get_fw_log_level(struct be_adapter *adapter)
{
	struct be_dma_mem extfat_cmd;
	struct be_fat_conf_params *cfgs;
	int status, j;
	int level = 0;

	memset(&extfat_cmd, 0, sizeof(struct be_dma_mem));
	extfat_cmd.size = sizeof(struct be_cmd_resp_get_ext_fat_caps);
4130 4131 4132
	extfat_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
					    extfat_cmd.size, &extfat_cmd.dma,
					    GFP_ATOMIC);
4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143

	if (!extfat_cmd.va) {
		dev_err(&adapter->pdev->dev, "%s: Memory allocation failure\n",
			__func__);
		goto err;
	}

	status = be_cmd_get_ext_fat_capabilites(adapter, &extfat_cmd);
	if (!status) {
		cfgs = (struct be_fat_conf_params *)(extfat_cmd.va +
						sizeof(struct be_cmd_resp_hdr));
4144

4145 4146 4147 4148 4149
		for (j = 0; j < le32_to_cpu(cfgs->module[0].num_modes); j++) {
			if (cfgs->module[0].trace_lvl[j].mode == MODE_UART)
				level = cfgs->module[0].trace_lvl[j].dbg_lvl;
		}
	}
4150 4151
	dma_free_coherent(&adapter->pdev->dev, extfat_cmd.size, extfat_cmd.va,
			  extfat_cmd.dma);
4152 4153 4154 4155
err:
	return level;
}

4156 4157 4158 4159 4160 4161 4162
int be_cmd_get_ext_fat_capabilites(struct be_adapter *adapter,
				   struct be_dma_mem *cmd)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_ext_fat_caps *req;
	int status;

4163 4164 4165 4166
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_GET_EXT_FAT_CAPABILITIES,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

	wrb = wrb_from_mbox(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = cmd->va;
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
4178
			       OPCODE_COMMON_GET_EXT_FAT_CAPABILITIES,
4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195
			       cmd->size, wrb, cmd);
	req->parameter_type = cpu_to_le32(1);

	status = be_mbox_notify_wait(adapter);
err:
	mutex_unlock(&adapter->mbox_lock);
	return status;
}

int be_cmd_set_ext_fat_capabilites(struct be_adapter *adapter,
				   struct be_dma_mem *cmd,
				   struct be_fat_conf_params *configs)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_ext_fat_caps *req;
	int status;

4196
	mutex_lock(&adapter->mcc_lock);
4197 4198 4199 4200 4201 4202 4203 4204 4205 4206

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = cmd->va;
	memcpy(&req->set_params, configs, sizeof(struct be_fat_conf_params));
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
4207
			       OPCODE_COMMON_SET_EXT_FAT_CAPABILITIES,
4208 4209 4210 4211
			       cmd->size, wrb, cmd);

	status = be_mcc_notify_wait(adapter);
err:
4212
	mutex_unlock(&adapter->mcc_lock);
4213
	return status;
4214
}
4215

4216
int be_cmd_query_port_name(struct be_adapter *adapter)
4217 4218
{
	struct be_cmd_req_get_port_name *req;
4219
	struct be_mcc_wrb *wrb;
4220 4221
	int status;

4222 4223
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
4224

4225
	wrb = wrb_from_mbox(adapter);
4226 4227 4228 4229 4230
	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_GET_PORT_NAME, sizeof(*req), wrb,
			       NULL);
4231 4232
	if (!BEx_chip(adapter))
		req->hdr.version = 1;
4233

4234
	status = be_mbox_notify_wait(adapter);
4235 4236
	if (!status) {
		struct be_cmd_resp_get_port_name *resp = embedded_payload(wrb);
4237

4238
		adapter->port_name = resp->port_name[adapter->hba_port_num];
4239
	} else {
4240
		adapter->port_name = adapter->hba_port_num + '0';
4241
	}
4242 4243

	mutex_unlock(&adapter->mbox_lock);
4244 4245 4246
	return status;
}

4247 4248 4249 4250 4251 4252 4253 4254
/* When more than 1 NIC descriptor is present in the descriptor list,
 * the caller must specify the pf_num to obtain the NIC descriptor
 * corresponding to its pci function.
 * get_vft must be true when the caller wants the VF-template desc of the
 * PF-pool.
 * The pf_num should be set to PF_NUM_IGNORE when the caller knows
 * that only it's NIC descriptor is present in the descriptor list.
 */
4255
static struct be_nic_res_desc *be_get_nic_desc(u8 *buf, u32 desc_count,
4256
					       bool get_vft, u8 pf_num)
4257
{
4258
	struct be_res_desc_hdr *hdr = (struct be_res_desc_hdr *)buf;
4259
	struct be_nic_res_desc *nic;
4260 4261 4262
	int i;

	for (i = 0; i < desc_count; i++) {
4263
		if (hdr->desc_type == NIC_RESOURCE_DESC_TYPE_V0 ||
4264 4265
		    hdr->desc_type == NIC_RESOURCE_DESC_TYPE_V1) {
			nic = (struct be_nic_res_desc *)hdr;
4266 4267 4268 4269

			if ((pf_num == PF_NUM_IGNORE ||
			     nic->pf_num == pf_num) &&
			    (!get_vft || nic->flags & BIT(VFT_SHIFT)))
4270 4271
				return nic;
		}
4272 4273
		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0;
		hdr = (void *)hdr + hdr->desc_len;
4274
	}
4275 4276 4277
	return NULL;
}

4278 4279
static struct be_nic_res_desc *be_get_vft_desc(u8 *buf, u32 desc_count,
					       u8 pf_num)
4280
{
4281
	return be_get_nic_desc(buf, desc_count, true, pf_num);
4282 4283
}

4284 4285
static struct be_nic_res_desc *be_get_func_nic_desc(u8 *buf, u32 desc_count,
						    u8 pf_num)
4286
{
4287
	return be_get_nic_desc(buf, desc_count, false, pf_num);
4288 4289
}

4290 4291
static struct be_pcie_res_desc *be_get_pcie_desc(u8 *buf, u32 desc_count,
						 u8 pf_num)
4292 4293 4294 4295 4296 4297
{
	struct be_res_desc_hdr *hdr = (struct be_res_desc_hdr *)buf;
	struct be_pcie_res_desc *pcie;
	int i;

	for (i = 0; i < desc_count; i++) {
4298 4299 4300 4301
		if (hdr->desc_type == PCIE_RESOURCE_DESC_TYPE_V0 ||
		    hdr->desc_type == PCIE_RESOURCE_DESC_TYPE_V1) {
			pcie = (struct be_pcie_res_desc *)hdr;
			if (pcie->pf_num == pf_num)
4302 4303
				return pcie;
		}
4304

4305 4306 4307
		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0;
		hdr = (void *)hdr + hdr->desc_len;
	}
4308
	return NULL;
4309 4310
}

4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325
static struct be_port_res_desc *be_get_port_desc(u8 *buf, u32 desc_count)
{
	struct be_res_desc_hdr *hdr = (struct be_res_desc_hdr *)buf;
	int i;

	for (i = 0; i < desc_count; i++) {
		if (hdr->desc_type == PORT_RESOURCE_DESC_TYPE_V1)
			return (struct be_port_res_desc *)hdr;

		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0;
		hdr = (void *)hdr + hdr->desc_len;
	}
	return NULL;
}

4326 4327 4328 4329 4330 4331 4332 4333 4334 4335
static void be_copy_nic_desc(struct be_resources *res,
			     struct be_nic_res_desc *desc)
{
	res->max_uc_mac = le16_to_cpu(desc->unicast_mac_count);
	res->max_vlans = le16_to_cpu(desc->vlan_count);
	res->max_mcast_mac = le16_to_cpu(desc->mcast_mac_count);
	res->max_tx_qs = le16_to_cpu(desc->txq_count);
	res->max_rss_qs = le16_to_cpu(desc->rssq_count);
	res->max_rx_qs = le16_to_cpu(desc->rq_count);
	res->max_evt_qs = le16_to_cpu(desc->eq_count);
4336 4337 4338
	res->max_cq_count = le16_to_cpu(desc->cq_count);
	res->max_iface_count = le16_to_cpu(desc->iface_count);
	res->max_mcc_count = le16_to_cpu(desc->mcc_count);
4339 4340 4341 4342 4343
	/* Clear flags that driver is not interested in */
	res->if_cap_flags = le32_to_cpu(desc->cap_flags) &
				BE_IF_CAP_FLAGS_WANT;
}

4344
/* Uses Mbox */
4345
int be_cmd_get_func_config(struct be_adapter *adapter, struct be_resources *res)
4346 4347 4348 4349 4350 4351
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_func_config *req;
	int status;
	struct be_dma_mem cmd;

S
Suresh Reddy 已提交
4352 4353 4354
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

4355 4356
	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_resp_get_func_config);
4357 4358
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
4359 4360
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory alloc failure\n");
S
Suresh Reddy 已提交
4361 4362
		status = -ENOMEM;
		goto err;
4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376
	}

	wrb = wrb_from_mbox(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = cmd.va;

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_GET_FUNC_CONFIG,
			       cmd.size, wrb, &cmd);

4377 4378 4379
	if (skyhawk_chip(adapter))
		req->hdr.version = 1;

4380 4381 4382 4383
	status = be_mbox_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_func_config *resp = cmd.va;
		u32 desc_count = le32_to_cpu(resp->desc_count);
4384
		struct be_nic_res_desc *desc;
4385

4386 4387 4388 4389 4390 4391
		/* GET_FUNC_CONFIG returns resource descriptors of the
		 * current function only. So, pf_num should be set to
		 * PF_NUM_IGNORE.
		 */
		desc = be_get_func_nic_desc(resp->func_param, desc_count,
					    PF_NUM_IGNORE);
4392 4393 4394 4395
		if (!desc) {
			status = -EINVAL;
			goto err;
		}
4396 4397 4398 4399 4400 4401 4402

		/* Store pf_num & vf_num for later use in GET_PROFILE_CONFIG */
		adapter->pf_num = desc->pf_num;
		adapter->vf_num = desc->vf_num;

		if (res)
			be_copy_nic_desc(res, desc);
4403 4404 4405
	}
err:
	mutex_unlock(&adapter->mbox_lock);
S
Suresh Reddy 已提交
4406
	if (cmd.va)
4407 4408
		dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
				  cmd.dma);
4409 4410 4411
	return status;
}

4412
/* This routine returns a list of all the NIC PF_nums in the adapter */
4413
static u16 be_get_nic_pf_num_list(u8 *buf, u32 desc_count, u16 *nic_pf_nums)
4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435
{
	struct be_res_desc_hdr *hdr = (struct be_res_desc_hdr *)buf;
	struct be_pcie_res_desc *pcie = NULL;
	int i;
	u16 nic_pf_count = 0;

	for (i = 0; i < desc_count; i++) {
		if (hdr->desc_type == PCIE_RESOURCE_DESC_TYPE_V0 ||
		    hdr->desc_type == PCIE_RESOURCE_DESC_TYPE_V1) {
			pcie = (struct be_pcie_res_desc *)hdr;
			if (pcie->pf_state && (pcie->pf_type == MISSION_NIC ||
					       pcie->pf_type == MISSION_RDMA)) {
				nic_pf_nums[nic_pf_count++] = pcie->pf_num;
			}
		}

		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0;
		hdr = (void *)hdr + hdr->desc_len;
	}
	return nic_pf_count;
}

4436
/* Will use MBOX only if MCCQ has not been created */
4437
int be_cmd_get_profile_config(struct be_adapter *adapter,
4438 4439 4440
			      struct be_resources *res,
			      struct be_port_resources *port_res,
			      u8 profile_type, u8 query, u8 domain)
4441
{
4442
	struct be_cmd_resp_get_profile_config *resp;
4443
	struct be_cmd_req_get_profile_config *req;
4444
	struct be_nic_res_desc *vf_res;
4445
	struct be_pcie_res_desc *pcie;
4446
	struct be_port_res_desc *port;
4447
	struct be_nic_res_desc *nic;
4448
	struct be_mcc_wrb wrb = {0};
4449
	struct be_dma_mem cmd;
4450
	u16 desc_count;
4451 4452 4453
	int status;

	memset(&cmd, 0, sizeof(struct be_dma_mem));
4454
	cmd.size = sizeof(struct be_cmd_resp_get_profile_config);
4455 4456
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
4457
	if (!cmd.va)
4458 4459
		return -ENOMEM;

4460 4461 4462 4463 4464 4465 4466
	req = cmd.va;
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_GET_PROFILE_CONFIG,
			       cmd.size, &wrb, &cmd);

	if (!lancer_chip(adapter))
		req->hdr.version = 1;
4467
	req->type = profile_type;
4468
	req->hdr.domain = domain;
4469

4470 4471 4472 4473 4474 4475 4476
	/* When QUERY_MODIFIABLE_FIELDS_TYPE bit is set, cmd returns the
	 * descriptors with all bits set to "1" for the fields which can be
	 * modified using SET_PROFILE_CONFIG cmd.
	 */
	if (query == RESOURCE_MODIFIABLE)
		req->type |= QUERY_MODIFIABLE_FIELDS_TYPE;

4477
	status = be_cmd_notify_wait(adapter, &wrb);
4478 4479
	if (status)
		goto err;
4480

4481
	resp = cmd.va;
4482
	desc_count = le16_to_cpu(resp->desc_count);
4483

4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505
	if (port_res) {
		u16 nic_pf_cnt = 0, i;
		u16 nic_pf_num_list[MAX_NIC_FUNCS];

		nic_pf_cnt = be_get_nic_pf_num_list(resp->func_param,
						    desc_count,
						    nic_pf_num_list);

		for (i = 0; i < nic_pf_cnt; i++) {
			nic = be_get_func_nic_desc(resp->func_param, desc_count,
						   nic_pf_num_list[i]);
			if (nic->link_param == adapter->port_num) {
				port_res->nic_pfs++;
				pcie = be_get_pcie_desc(resp->func_param,
							desc_count,
							nic_pf_num_list[i]);
				port_res->max_vfs += le16_to_cpu(pcie->num_vfs);
			}
		}
		return status;
	}

4506 4507
	pcie = be_get_pcie_desc(resp->func_param, desc_count,
				adapter->pf_num);
4508
	if (pcie)
4509
		res->max_vfs = le16_to_cpu(pcie->num_vfs);
4510

4511 4512 4513 4514
	port = be_get_port_desc(resp->func_param, desc_count);
	if (port)
		adapter->mc_type = port->mc_type;

4515 4516
	nic = be_get_func_nic_desc(resp->func_param, desc_count,
				   adapter->pf_num);
4517 4518 4519
	if (nic)
		be_copy_nic_desc(res, nic);

4520 4521
	vf_res = be_get_vft_desc(resp->func_param, desc_count,
				 adapter->pf_num);
4522 4523
	if (vf_res)
		res->vf_if_cap_flags = vf_res->cap_flags;
4524
err:
4525
	if (cmd.va)
4526 4527
		dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
				  cmd.dma);
4528 4529 4530
	return status;
}

4531 4532 4533
/* Will use MBOX only if MCCQ has not been created */
static int be_cmd_set_profile_config(struct be_adapter *adapter, void *desc,
				     int size, int count, u8 version, u8 domain)
4534 4535
{
	struct be_cmd_req_set_profile_config *req;
4536 4537
	struct be_mcc_wrb wrb = {0};
	struct be_dma_mem cmd;
4538 4539
	int status;

4540 4541
	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_req_set_profile_config);
4542 4543
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
4544 4545
	if (!cmd.va)
		return -ENOMEM;
4546

4547
	req = cmd.va;
4548
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
4549 4550
			       OPCODE_COMMON_SET_PROFILE_CONFIG, cmd.size,
			       &wrb, &cmd);
4551
	req->hdr.version = version;
4552
	req->hdr.domain = domain;
4553
	req->desc_count = cpu_to_le32(count);
4554 4555
	memcpy(req->desc, desc, size);

4556 4557 4558
	status = be_cmd_notify_wait(adapter, &wrb);

	if (cmd.va)
4559 4560
		dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
				  cmd.dma);
4561 4562 4563
	return status;
}

4564
/* Mark all fields invalid */
4565
static void be_reset_nic_desc(struct be_nic_res_desc *nic)
4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578
{
	memset(nic, 0, sizeof(*nic));
	nic->unicast_mac_count = 0xFFFF;
	nic->mcc_count = 0xFFFF;
	nic->vlan_count = 0xFFFF;
	nic->mcast_mac_count = 0xFFFF;
	nic->txq_count = 0xFFFF;
	nic->rq_count = 0xFFFF;
	nic->rssq_count = 0xFFFF;
	nic->lro_count = 0xFFFF;
	nic->cq_count = 0xFFFF;
	nic->toe_conn_count = 0xFFFF;
	nic->eq_count = 0xFFFF;
4579
	nic->iface_count = 0xFFFF;
4580
	nic->link_param = 0xFF;
4581
	nic->channel_id_param = cpu_to_le16(0xF000);
4582 4583
	nic->acpi_params = 0xFF;
	nic->wol_param = 0x0F;
4584 4585
	nic->tunnel_iface_count = 0xFFFF;
	nic->direct_tenant_iface_count = 0xFFFF;
4586
	nic->bw_min = 0xFFFFFFFF;
4587 4588 4589
	nic->bw_max = 0xFFFFFFFF;
}

4590 4591 4592 4593 4594 4595 4596 4597 4598 4599
/* Mark all fields invalid */
static void be_reset_pcie_desc(struct be_pcie_res_desc *pcie)
{
	memset(pcie, 0, sizeof(*pcie));
	pcie->sriov_state = 0xFF;
	pcie->pf_state = 0xFF;
	pcie->pf_type = 0xFF;
	pcie->num_vfs = 0xFFFF;
}

4600 4601
int be_cmd_config_qos(struct be_adapter *adapter, u32 max_rate, u16 link_speed,
		      u8 domain)
4602
{
4603 4604 4605 4606 4607 4608
	struct be_nic_res_desc nic_desc;
	u32 bw_percent;
	u16 version = 0;

	if (BE3_chip(adapter))
		return be_cmd_set_qos(adapter, max_rate / 10, domain);
4609

4610
	be_reset_nic_desc(&nic_desc);
4611
	nic_desc.pf_num = adapter->pf_num;
4612
	nic_desc.vf_num = domain;
4613
	nic_desc.bw_min = 0;
4614
	if (lancer_chip(adapter)) {
4615 4616 4617 4618
		nic_desc.hdr.desc_type = NIC_RESOURCE_DESC_TYPE_V0;
		nic_desc.hdr.desc_len = RESOURCE_DESC_SIZE_V0;
		nic_desc.flags = (1 << QUN_SHIFT) | (1 << IMM_SHIFT) |
					(1 << NOSV_SHIFT);
4619
		nic_desc.bw_max = cpu_to_le32(max_rate / 10);
4620
	} else {
4621 4622 4623 4624 4625 4626
		version = 1;
		nic_desc.hdr.desc_type = NIC_RESOURCE_DESC_TYPE_V1;
		nic_desc.hdr.desc_len = RESOURCE_DESC_SIZE_V1;
		nic_desc.flags = (1 << IMM_SHIFT) | (1 << NOSV_SHIFT);
		bw_percent = max_rate ? (max_rate * 100) / link_speed : 100;
		nic_desc.bw_max = cpu_to_le32(bw_percent);
4627
	}
4628 4629 4630

	return be_cmd_set_profile_config(adapter, &nic_desc,
					 nic_desc.hdr.desc_len,
4631 4632 4633 4634
					 1, version, domain);
}

int be_cmd_set_sriov_config(struct be_adapter *adapter,
4635
			    struct be_resources pool_res, u16 num_vfs,
4636
			    struct be_resources *vft_res)
4637 4638 4639 4640 4641 4642 4643 4644 4645 4646
{
	struct {
		struct be_pcie_res_desc pcie;
		struct be_nic_res_desc nic_vft;
	} __packed desc;

	/* PF PCIE descriptor */
	be_reset_pcie_desc(&desc.pcie);
	desc.pcie.hdr.desc_type = PCIE_RESOURCE_DESC_TYPE_V1;
	desc.pcie.hdr.desc_len = RESOURCE_DESC_SIZE_V1;
4647
	desc.pcie.flags = BIT(IMM_SHIFT) | BIT(NOSV_SHIFT);
4648 4649 4650 4651 4652 4653 4654 4655
	desc.pcie.pf_num = adapter->pdev->devfn;
	desc.pcie.sriov_state = num_vfs ? 1 : 0;
	desc.pcie.num_vfs = cpu_to_le16(num_vfs);

	/* VF NIC Template descriptor */
	be_reset_nic_desc(&desc.nic_vft);
	desc.nic_vft.hdr.desc_type = NIC_RESOURCE_DESC_TYPE_V1;
	desc.nic_vft.hdr.desc_len = RESOURCE_DESC_SIZE_V1;
4656 4657
	desc.nic_vft.flags = vft_res->flags | BIT(VFT_SHIFT) |
			     BIT(IMM_SHIFT) | BIT(NOSV_SHIFT);
4658 4659
	desc.nic_vft.pf_num = adapter->pdev->devfn;
	desc.nic_vft.vf_num = 0;
4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675
	desc.nic_vft.cap_flags = cpu_to_le32(vft_res->vf_if_cap_flags);
	desc.nic_vft.rq_count = cpu_to_le16(vft_res->max_rx_qs);
	desc.nic_vft.txq_count = cpu_to_le16(vft_res->max_tx_qs);
	desc.nic_vft.rssq_count = cpu_to_le16(vft_res->max_rss_qs);
	desc.nic_vft.cq_count = cpu_to_le16(vft_res->max_cq_count);

	if (vft_res->max_uc_mac)
		desc.nic_vft.unicast_mac_count =
					cpu_to_le16(vft_res->max_uc_mac);
	if (vft_res->max_vlans)
		desc.nic_vft.vlan_count = cpu_to_le16(vft_res->max_vlans);
	if (vft_res->max_iface_count)
		desc.nic_vft.iface_count =
				cpu_to_le16(vft_res->max_iface_count);
	if (vft_res->max_mcc_count)
		desc.nic_vft.mcc_count = cpu_to_le16(vft_res->max_mcc_count);
4676 4677 4678

	return be_cmd_set_profile_config(adapter, &desc,
					 2 * RESOURCE_DESC_SIZE_V1, 2, 1, 0);
4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689
}

int be_cmd_manage_iface(struct be_adapter *adapter, u32 iface, u8 op)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_manage_iface_filters *req;
	int status;

	if (iface == 0xFFFFFFFF)
		return -1;

4690
	mutex_lock(&adapter->mcc_lock);
4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_MANAGE_IFACE_FILTERS, sizeof(*req),
			       wrb, NULL);
	req->op = op;
	req->target_iface_id = cpu_to_le32(iface);

	status = be_mcc_notify_wait(adapter);
err:
4707
	mutex_unlock(&adapter->mcc_lock);
4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729
	return status;
}

int be_cmd_set_vxlan_port(struct be_adapter *adapter, __be16 port)
{
	struct be_port_res_desc port_desc;

	memset(&port_desc, 0, sizeof(port_desc));
	port_desc.hdr.desc_type = PORT_RESOURCE_DESC_TYPE_V1;
	port_desc.hdr.desc_len = RESOURCE_DESC_SIZE_V1;
	port_desc.flags = (1 << IMM_SHIFT) | (1 << NOSV_SHIFT);
	port_desc.link_num = adapter->hba_port_num;
	if (port) {
		port_desc.nv_flags = NV_TYPE_VXLAN | (1 << SOCVID_SHIFT) |
					(1 << RCVID_SHIFT);
		port_desc.nv_port = swab16(port);
	} else {
		port_desc.nv_flags = NV_TYPE_DISABLED;
		port_desc.nv_port = 0;
	}

	return be_cmd_set_profile_config(adapter, &port_desc,
4730
					 RESOURCE_DESC_SIZE_V1, 1, 1, 0);
4731 4732
}

4733 4734 4735 4736 4737 4738 4739 4740
int be_cmd_get_if_id(struct be_adapter *adapter, struct be_vf_cfg *vf_cfg,
		     int vf_num)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_iface_list *req;
	struct be_cmd_resp_get_iface_list *resp;
	int status;

4741
	mutex_lock(&adapter->mcc_lock);
4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_GET_IFACE_LIST, sizeof(*resp),
			       wrb, NULL);
	req->hdr.domain = vf_num + 1;

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		resp = (struct be_cmd_resp_get_iface_list *)req;
		vf_cfg->if_handle = le32_to_cpu(resp->if_desc.if_id);
	}

err:
4762
	mutex_unlock(&adapter->mcc_lock);
4763 4764 4765
	return status;
}

4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809
static int lancer_wait_idle(struct be_adapter *adapter)
{
#define SLIPORT_IDLE_TIMEOUT 30
	u32 reg_val;
	int status = 0, i;

	for (i = 0; i < SLIPORT_IDLE_TIMEOUT; i++) {
		reg_val = ioread32(adapter->db + PHYSDEV_CONTROL_OFFSET);
		if ((reg_val & PHYSDEV_CONTROL_INP_MASK) == 0)
			break;

		ssleep(1);
	}

	if (i == SLIPORT_IDLE_TIMEOUT)
		status = -1;

	return status;
}

int lancer_physdev_ctrl(struct be_adapter *adapter, u32 mask)
{
	int status = 0;

	status = lancer_wait_idle(adapter);
	if (status)
		return status;

	iowrite32(mask, adapter->db + PHYSDEV_CONTROL_OFFSET);

	return status;
}

/* Routine to check whether dump image is present or not */
bool dump_present(struct be_adapter *adapter)
{
	u32 sliport_status = 0;

	sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET);
	return !!(sliport_status & SLIPORT_STATUS_DIP_MASK);
}

int lancer_initiate_dump(struct be_adapter *adapter)
{
4810
	struct device *dev = &adapter->pdev->dev;
4811 4812
	int status;

4813 4814 4815 4816 4817
	if (dump_present(adapter)) {
		dev_info(dev, "Previous dump not cleared, not forcing dump\n");
		return -EEXIST;
	}

4818 4819 4820 4821
	/* give firmware reset and diagnostic dump */
	status = lancer_physdev_ctrl(adapter, PHYSDEV_CONTROL_FW_RESET_MASK |
				     PHYSDEV_CONTROL_DD_MASK);
	if (status < 0) {
4822
		dev_err(dev, "FW reset failed\n");
4823 4824 4825 4826 4827 4828 4829 4830
		return status;
	}

	status = lancer_wait_idle(adapter);
	if (status)
		return status;

	if (!dump_present(adapter)) {
4831 4832
		dev_err(dev, "FW dump not generated\n");
		return -EIO;
4833 4834 4835 4836 4837
	}

	return 0;
}

4838 4839 4840 4841 4842 4843 4844 4845
int lancer_delete_dump(struct be_adapter *adapter)
{
	int status;

	status = lancer_cmd_delete_object(adapter, LANCER_FW_DUMP_FILE);
	return be_cmd_status(status);
}

4846 4847 4848 4849 4850 4851 4852
/* Uses sync mcc */
int be_cmd_enable_vf(struct be_adapter *adapter, u8 domain)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_enable_disable_vf *req;
	int status;

4853
	if (BEx_chip(adapter))
4854 4855
		return 0;

4856
	mutex_lock(&adapter->mcc_lock);
4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_ENABLE_DISABLE_VF, sizeof(*req),
			       wrb, NULL);

	req->hdr.domain = domain;
	req->enable = 1;
	status = be_mcc_notify_wait(adapter);
err:
4874
	mutex_unlock(&adapter->mcc_lock);
4875 4876 4877
	return status;
}

4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902
int be_cmd_intr_set(struct be_adapter *adapter, bool intr_enable)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_intr_set *req;
	int status;

	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

	wrb = wrb_from_mbox(adapter);

	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_SET_INTERRUPT_ENABLE, sizeof(*req),
			       wrb, NULL);

	req->intr_enabled = intr_enable;

	status = be_mbox_notify_wait(adapter);

	mutex_unlock(&adapter->mbox_lock);
	return status;
}

4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928
/* Uses MBOX */
int be_cmd_get_active_profile(struct be_adapter *adapter, u16 *profile_id)
{
	struct be_cmd_req_get_active_profile *req;
	struct be_mcc_wrb *wrb;
	int status;

	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

	wrb = wrb_from_mbox(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_GET_ACTIVE_PROFILE, sizeof(*req),
			       wrb, NULL);

	status = be_mbox_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_active_profile *resp =
							embedded_payload(wrb);
4929

4930 4931 4932 4933 4934 4935 4936 4937
		*profile_id = le16_to_cpu(resp->active_profile_id);
	}

err:
	mutex_unlock(&adapter->mbox_lock);
	return status;
}

4938 4939 4940
static int
__be_cmd_set_logical_link_config(struct be_adapter *adapter,
				 int link_state, int version, u8 domain)
4941 4942 4943 4944 4945
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_ll_link *req;
	int status;

4946
	mutex_lock(&adapter->mcc_lock);
4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_SET_LOGICAL_LINK_CONFIG,
			       sizeof(*req), wrb, NULL);

4960
	req->hdr.version = version;
4961 4962
	req->hdr.domain = domain;

4963 4964 4965
	if (link_state == IFLA_VF_LINK_STATE_ENABLE ||
	    link_state == IFLA_VF_LINK_STATE_AUTO)
		req->link_config |= PLINK_ENABLE;
4966 4967

	if (link_state == IFLA_VF_LINK_STATE_AUTO)
4968
		req->link_config |= PLINK_TRACK;
4969 4970 4971

	status = be_mcc_notify_wait(adapter);
err:
4972
	mutex_unlock(&adapter->mcc_lock);
4973 4974 4975
	return status;
}

4976 4977 4978 4979 4980
int be_cmd_set_logical_link_config(struct be_adapter *adapter,
				   int link_state, u8 domain)
{
	int status;

4981
	if (BE2_chip(adapter))
4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994
		return -EOPNOTSUPP;

	status = __be_cmd_set_logical_link_config(adapter, link_state,
						  2, domain);

	/* Version 2 of the command will not be recognized by older FW.
	 * On such a failure issue version 1 of the command.
	 */
	if (base_status(status) == MCC_STATUS_ILLEGAL_REQUEST)
		status = __be_cmd_set_logical_link_config(adapter, link_state,
							  1, domain);
	return status;
}
4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045

int be_cmd_set_features(struct be_adapter *adapter)
{
	struct be_cmd_resp_set_features *resp;
	struct be_cmd_req_set_features *req;
	struct be_mcc_wrb *wrb;
	int status;

	if (mutex_lock_interruptible(&adapter->mcc_lock))
		return -1;

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}

	req = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_SET_FEATURES,
			       sizeof(*req), wrb, NULL);

	req->features = cpu_to_le32(BE_FEATURE_UE_RECOVERY);
	req->parameter_len = cpu_to_le32(sizeof(struct be_req_ue_recovery));
	req->parameter.req.uer = cpu_to_le32(BE_UE_RECOVERY_UER_MASK);

	status = be_mcc_notify_wait(adapter);
	if (status)
		goto err;

	resp = embedded_payload(wrb);

	adapter->error_recovery.ue_to_poll_time =
		le16_to_cpu(resp->parameter.resp.ue2rp);
	adapter->error_recovery.ue_to_reset_time =
		le16_to_cpu(resp->parameter.resp.ue2sr);
	adapter->error_recovery.recovery_supported = true;
err:
	/* Checking "MCC_STATUS_INVALID_LENGTH" for SKH as FW
	 * returns this error in older firmware versions
	 */
	if (base_status(status) == MCC_STATUS_ILLEGAL_REQUEST ||
	    base_status(status) == MCC_STATUS_INVALID_LENGTH)
		dev_info(&adapter->pdev->dev,
			 "Adapter does not support HW error recovery\n");

	mutex_unlock(&adapter->mcc_lock);
	return status;
}

5046
int be_roce_mcc_cmd(void *netdev_handle, void *wrb_payload,
5047
		    int wrb_payload_size, u16 *cmd_status, u16 *ext_status)
5048 5049 5050
{
	struct be_adapter *adapter = netdev_priv(netdev_handle);
	struct be_mcc_wrb *wrb;
K
Kalesh AP 已提交
5051
	struct be_cmd_req_hdr *hdr = (struct be_cmd_req_hdr *)wrb_payload;
5052 5053 5054 5055
	struct be_cmd_req_hdr *req;
	struct be_cmd_resp_hdr *resp;
	int status;

5056
	mutex_lock(&adapter->mcc_lock);
5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = embedded_payload(wrb);
	resp = embedded_payload(wrb);

	be_wrb_cmd_hdr_prepare(req, hdr->subsystem,
			       hdr->opcode, wrb_payload_size, wrb, NULL);
	memcpy(req, wrb_payload, wrb_payload_size);
	be_dws_cpu_to_le(req, wrb_payload_size);

	status = be_mcc_notify_wait(adapter);
	if (cmd_status)
		*cmd_status = (status & 0xffff);
	if (ext_status)
		*ext_status = 0;
	memcpy(wrb_payload, resp, sizeof(*resp) + resp->response_length);
	be_dws_le_to_cpu(wrb_payload, sizeof(*resp) + resp->response_length);
err:
5079
	mutex_unlock(&adapter->mcc_lock);
5080 5081 5082
	return status;
}
EXPORT_SYMBOL(be_roce_mcc_cmd);