be_cmds.c 105.1 KB
Newer Older
S
Sathya Perla 已提交
1
/*
2
 * Copyright (C) 2005 - 2015 Emulex
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 29 30 31 32 33 34 35 36 37
static char *be_port_misconfig_evt_desc[] = {
	"A valid SFP module detected",
	"Optics faulted/ incorrectly installed/ not installed.",
	"Optics of two types installed.",
	"Incompatible optics.",
	"Unknown port SFP status"
};

static char *be_port_misconfig_remedy_desc[] = {
	"",
	"Reseat optics. If issue not resolved, replace",
	"Remove one optic or install matching pair of optics",
	"Replace with compatible optics for card to function",
	""
};

38 39 40 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
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
	}
};

71
static bool be_cmd_allowed(struct be_adapter *adapter, u8 opcode, u8 subsystem)
72 73 74 75 76 77 78 79 80 81 82 83 84 85
{
	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;
}

86 87 88 89
static inline void *embedded_payload(struct be_mcc_wrb *wrb)
{
	return wrb->payload.embedded_payload;
}
90

91
static int be_mcc_notify(struct be_adapter *adapter)
92
{
93
	struct be_queue_info *mccq = &adapter->mcc_obj.q;
94 95
	u32 val = 0;

96
	if (be_check_error(adapter, BE_ERROR_ANY))
97
		return -EIO;
98

99 100
	val |= mccq->id & DB_MCCQ_RING_ID_MASK;
	val |= 1 << DB_MCCQ_NUM_POSTED_SHIFT;
101 102

	wmb();
103
	iowrite32(val, adapter->db + DB_MCCQ_OFFSET);
104 105

	return 0;
106 107 108 109 110
}

/* 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) */
111
static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl)
112
{
113 114
	u32 flags;

115
	if (compl->flags != 0) {
116 117 118 119 120
		flags = le32_to_cpu(compl->flags);
		if (flags & CQE_FLAGS_VALID_MASK) {
			compl->flags = flags;
			return true;
		}
121
	}
122
	return false;
123 124 125
}

/* Need to reset the entire word that houses the valid bit */
126
static inline void be_mcc_compl_use(struct be_mcc_compl *compl)
127 128 129 130
{
	compl->flags = 0;
}

131 132 133 134 135 136 137 138 139
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;
}

140 141 142 143 144
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 ||
145
	    addl_status == MCC_ADDL_STATUS_INSUFFICIENT_VLANS ||
146 147 148 149 150 151 152 153
	    (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;
}

154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
/* 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;
	}

	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;
197
			adapter->hwmon_info.be_on_die_temp =
198 199 200
						resp->on_die_temperature;
		} else {
			adapter->be_get_temp_freq = 0;
201 202
			adapter->hwmon_info.be_on_die_temp =
						BE_INVALID_DIE_TEMP;
203 204 205 206 207
		}
		return;
	}
}

208
static int be_mcc_compl_process(struct be_adapter *adapter,
209
				struct be_mcc_compl *compl)
210
{
211 212
	enum mcc_base_status base_status;
	enum mcc_addl_status addl_status;
213 214
	struct be_cmd_resp_hdr *resp_hdr;
	u8 opcode = 0, subsystem = 0;
215 216 217 218 219

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

220 221
	base_status = base_status(compl->status);
	addl_status = addl_status(compl->status);
222

223 224 225 226 227 228
	resp_hdr = be_decode_resp_hdr(compl->tag0, compl->tag1);
	if (resp_hdr) {
		opcode = resp_hdr->opcode;
		subsystem = resp_hdr->subsystem;
	}

229
	be_async_cmd_process(adapter, compl, resp_hdr);
230

231 232
	if (base_status != MCC_STATUS_SUCCESS &&
	    !be_skip_err_log(opcode, base_status, addl_status)) {
233
		if (base_status == MCC_STATUS_UNAUTHORIZED_REQUEST) {
234
			dev_warn(&adapter->pdev->dev,
235
				 "VF is not privileged to issue opcode %d-%d\n",
236
				 opcode, subsystem);
237
		} else {
238 239
			dev_err(&adapter->pdev->dev,
				"opcode %d-%d failed:status %d-%d\n",
240
				opcode, subsystem, base_status, addl_status);
241
		}
242
	}
243
	return compl->status;
244 245
}

246
/* Link state evt is a string of bytes; no need for endian swapping */
247
static void be_async_link_state_process(struct be_adapter *adapter,
248
					struct be_mcc_compl *compl)
249
{
250 251 252
	struct be_async_event_link_state *evt =
			(struct be_async_event_link_state *)compl;

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

256 257 258 259 260 261
	/* 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) &&
262 263 264
	    !(evt->port_link_status & LOGICAL_LINK_STATUS_MASK))
		return;

265 266 267 268
	/* 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)
269 270
		be_link_status_update(adapter,
				      evt->port_link_status & LINK_STATUS_MASK);
271 272
}

273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
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;
	u32 sfp_mismatch_evt = le32_to_cpu(evt->event_data_word1);
	struct device *dev = &adapter->pdev->dev;
	u8 port_misconfig_evt;

	port_misconfig_evt =
		((sfp_mismatch_evt >> (adapter->hba_port_num * 8)) & 0xff);

	/* Log an error message that would allow a user to determine
	 * whether the SFPs have an issue
	 */
	dev_info(dev, "Port %c: %s %s", adapter->port_name,
		 be_port_misconfig_evt_desc[port_misconfig_evt],
		 be_port_misconfig_remedy_desc[port_misconfig_evt]);

	if (port_misconfig_evt == INCOMPATIBLE_SFP)
		adapter->flags |= BE_FLAGS_EVT_INCOMPATIBLE_SFP;
}

296 297
/* Grp5 CoS Priority evt */
static void be_async_grp5_cos_priority_process(struct be_adapter *adapter,
298
					       struct be_mcc_compl *compl)
299
{
300 301 302
	struct be_async_event_grp5_cos_priority *evt =
			(struct be_async_event_grp5_cos_priority *)compl;

303 304
	if (evt->valid) {
		adapter->vlan_prio_bmap = evt->available_priority_bmap;
305
		adapter->recommended_prio &= ~VLAN_PRIO_MASK;
306 307 308 309 310
		adapter->recommended_prio =
			evt->reco_default_priority << VLAN_PRIO_SHIFT;
	}
}

311
/* Grp5 QOS Speed evt: qos_link_speed is in units of 10 Mbps */
312
static void be_async_grp5_qos_speed_process(struct be_adapter *adapter,
313
					    struct be_mcc_compl *compl)
314
{
315 316 317
	struct be_async_event_grp5_qos_link_speed *evt =
			(struct be_async_event_grp5_qos_link_speed *)compl;

318 319 320
	if (adapter->phy.link_speed >= 0 &&
	    evt->physical_port == adapter->port_num)
		adapter->phy.link_speed = le16_to_cpu(evt->qos_link_speed) * 10;
321 322
}

323 324
/*Grp5 PVID evt*/
static void be_async_grp5_pvid_state_process(struct be_adapter *adapter,
325
					     struct be_mcc_compl *compl)
326
{
327 328 329
	struct be_async_event_grp5_pvid_state *evt =
			(struct be_async_event_grp5_pvid_state *)compl;

330
	if (evt->enabled) {
331
		adapter->pvid = le16_to_cpu(evt->tag) & VLAN_VID_MASK;
332 333
		dev_info(&adapter->pdev->dev, "LPVID: %d\n", adapter->pvid);
	} else {
334
		adapter->pvid = 0;
335
	}
336 337
}

V
Venkata Duvvuru 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
#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;
	}
}

353
static void be_async_grp5_evt_process(struct be_adapter *adapter,
354
				      struct be_mcc_compl *compl)
355
{
356 357
	u8 event_type = (compl->flags >> ASYNC_EVENT_TYPE_SHIFT) &
				ASYNC_EVENT_TYPE_MASK;
358 359 360

	switch (event_type) {
	case ASYNC_EVENT_COS_PRIORITY:
361 362
		be_async_grp5_cos_priority_process(adapter, compl);
		break;
363
	case ASYNC_EVENT_QOS_SPEED:
364 365
		be_async_grp5_qos_speed_process(adapter, compl);
		break;
366
	case ASYNC_EVENT_PVID_STATE:
367 368
		be_async_grp5_pvid_state_process(adapter, compl);
		break;
V
Venkata Duvvuru 已提交
369 370 371 372
	/* Async event to disable/enable os2bmc and/or mac-learning */
	case ASYNC_EVENT_FW_CONTROL:
		be_async_grp5_fw_control_process(adapter, compl);
		break;
373 374 375 376 377
	default:
		break;
	}
}

378
static void be_async_dbg_evt_process(struct be_adapter *adapter,
379
				     struct be_mcc_compl *cmp)
380 381
{
	u8 event_type = 0;
K
Kalesh AP 已提交
382
	struct be_async_event_qnq *evt = (struct be_async_event_qnq *)cmp;
383

384 385
	event_type = (cmp->flags >> ASYNC_EVENT_TYPE_SHIFT) &
			ASYNC_EVENT_TYPE_MASK;
386 387 388 389 390 391 392 393

	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:
394 395
		dev_warn(&adapter->pdev->dev, "Unknown debug event 0x%x!\n",
			 event_type);
396 397 398 399
	break;
	}
}

400 401 402 403 404 405 406 407 408 409
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);
}

410
static inline bool is_link_state_evt(u32 flags)
411
{
412 413
	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) ==
			ASYNC_EVENT_CODE_LINK_STATE;
414
}
415

416
static inline bool is_grp5_evt(u32 flags)
417
{
418 419
	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) ==
			ASYNC_EVENT_CODE_GRP_5;
420 421
}

422
static inline bool is_dbg_evt(u32 flags)
423
{
424 425 426 427
	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) ==
			ASYNC_EVENT_CODE_QNQ;
}

428 429 430 431 432 433
static inline bool is_sliport_evt(u32 flags)
{
	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) ==
		ASYNC_EVENT_CODE_SLIPORT;
}

434 435 436 437 438 439 440 441 442
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);
443 444
	else if (is_sliport_evt(compl->flags))
		be_async_sliport_evt_process(adapter, compl);
445 446
}

447
static struct be_mcc_compl *be_mcc_compl_get(struct be_adapter *adapter)
448
{
449
	struct be_queue_info *mcc_cq = &adapter->mcc_obj.cq;
450
	struct be_mcc_compl *compl = queue_tail_node(mcc_cq);
451 452 453 454 455 456 457 458

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

459 460 461 462 463 464 465 466 467 468 469 470
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)
{
471 472
	spin_lock_bh(&adapter->mcc_cq_lock);

473
	adapter->mcc_obj.rearm_cq = false;
474 475 476
	be_cq_notify(adapter, adapter->mcc_obj.cq.id, false, 0);

	spin_unlock_bh(&adapter->mcc_cq_lock);
477 478
}

S
Sathya Perla 已提交
479
int be_process_mcc(struct be_adapter *adapter)
480
{
481
	struct be_mcc_compl *compl;
S
Sathya Perla 已提交
482
	int num = 0, status = 0;
483
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
484

485
	spin_lock(&adapter->mcc_cq_lock);
486

487
	while ((compl = be_mcc_compl_get(adapter))) {
488
		if (compl->flags & CQE_FLAGS_ASYNC_MASK) {
489
			be_mcc_event_process(adapter, compl);
490
		} else if (compl->flags & CQE_FLAGS_COMPLETED_MASK) {
491 492
			status = be_mcc_compl_process(adapter, compl);
			atomic_dec(&mcc_obj->q.used);
493 494 495 496
		}
		be_mcc_compl_use(compl);
		num++;
	}
497

S
Sathya Perla 已提交
498 499 500
	if (num)
		be_cq_notify(adapter, mcc_obj->cq.id, mcc_obj->rearm_cq, num);

501
	spin_unlock(&adapter->mcc_cq_lock);
S
Sathya Perla 已提交
502
	return status;
503 504
}

505
/* Wait till no more pending mcc requests are present */
506
static int be_mcc_wait_compl(struct be_adapter *adapter)
507
{
508
#define mcc_timeout		120000 /* 12s timeout */
S
Sathya Perla 已提交
509
	int i, status = 0;
S
Sathya Perla 已提交
510 511
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;

512
	for (i = 0; i < mcc_timeout; i++) {
513
		if (be_check_error(adapter, BE_ERROR_ANY))
514 515
			return -EIO;

516
		local_bh_disable();
S
Sathya Perla 已提交
517
		status = be_process_mcc(adapter);
518
		local_bh_enable();
519

S
Sathya Perla 已提交
520
		if (atomic_read(&mcc_obj->q.used) == 0)
521 522 523
			break;
		udelay(100);
	}
524
	if (i == mcc_timeout) {
525
		dev_err(&adapter->pdev->dev, "FW not responding\n");
526
		be_set_error(adapter, BE_ERROR_FW);
527
		return -EIO;
528
	}
S
Sathya Perla 已提交
529
	return status;
530 531 532
}

/* Notify MCC requests and wait for completion */
533
static int be_mcc_notify_wait(struct be_adapter *adapter)
534
{
535 536 537 538 539 540 541 542 543 544 545
	int status;
	struct be_mcc_wrb *wrb;
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
	u16 index = mcc_obj->q.head;
	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);

546 547 548
	status = be_mcc_notify(adapter);
	if (status)
		goto out;
549 550 551 552 553

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

554 555 556
	status = (resp->base_status |
		  ((resp->addl_status & CQE_ADDL_STATUS_MASK) <<
		   CQE_ADDL_STATUS_SHIFT));
557 558
out:
	return status;
559 560
}

561
static int be_mbox_db_ready_wait(struct be_adapter *adapter, void __iomem *db)
S
Sathya Perla 已提交
562
{
563
	int msecs = 0;
S
Sathya Perla 已提交
564 565 566
	u32 ready;

	do {
567
		if (be_check_error(adapter, BE_ERROR_ANY))
568 569
			return -EIO;

570
		ready = ioread32(db);
571
		if (ready == 0xffffffff)
572 573 574
			return -1;

		ready &= MPU_MAILBOX_DB_RDY_MASK;
S
Sathya Perla 已提交
575 576 577
		if (ready)
			break;

578
		if (msecs > 4000) {
579
			dev_err(&adapter->pdev->dev, "FW not responding\n");
580
			be_set_error(adapter, BE_ERROR_FW);
581
			be_detect_error(adapter);
S
Sathya Perla 已提交
582 583 584
			return -1;
		}

585
		msleep(1);
586
		msecs++;
S
Sathya Perla 已提交
587 588 589 590 591 592 593
	} while (true);

	return 0;
}

/*
 * Insert the mailbox address into the doorbell in two steps
594
 * Polls on the mbox doorbell till a command completion (or a timeout) occurs
S
Sathya Perla 已提交
595
 */
596
static int be_mbox_notify_wait(struct be_adapter *adapter)
S
Sathya Perla 已提交
597 598 599
{
	int status;
	u32 val = 0;
600 601
	void __iomem *db = adapter->db + MPU_MAILBOX_DB_OFFSET;
	struct be_dma_mem *mbox_mem = &adapter->mbox_mem;
S
Sathya Perla 已提交
602
	struct be_mcc_mailbox *mbox = mbox_mem->va;
603
	struct be_mcc_compl *compl = &mbox->compl;
S
Sathya Perla 已提交
604

605 606 607 608 609
	/* wait for ready to be set */
	status = be_mbox_db_ready_wait(adapter, db);
	if (status != 0)
		return status;

S
Sathya Perla 已提交
610 611 612 613 614 615
	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 */
616
	status = be_mbox_db_ready_wait(adapter, db);
S
Sathya Perla 已提交
617 618 619 620 621 622 623 624
	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);

625
	status = be_mbox_db_ready_wait(adapter, db);
S
Sathya Perla 已提交
626 627 628
	if (status != 0)
		return status;

629
	/* A cq entry has been made now */
630 631 632
	if (be_mcc_compl_is_new(compl)) {
		status = be_mcc_compl_process(adapter, &mbox->compl);
		be_mcc_compl_use(compl);
633 634 635
		if (status)
			return status;
	} else {
636
		dev_err(&adapter->pdev->dev, "invalid mailbox completion\n");
S
Sathya Perla 已提交
637 638
		return -1;
	}
639
	return 0;
S
Sathya Perla 已提交
640 641
}

642
static u16 be_POST_stage_get(struct be_adapter *adapter)
S
Sathya Perla 已提交
643
{
644 645
	u32 sem;

646 647
	if (BEx_chip(adapter))
		sem  = ioread32(adapter->csr + SLIPORT_SEMAPHORE_OFFSET_BEx);
S
Sathya Perla 已提交
648
	else
649 650 651 652
		pci_read_config_dword(adapter->pdev,
				      SLIPORT_SEMAPHORE_OFFSET_SH, &sem);

	return sem & POST_STAGE_MASK;
S
Sathya Perla 已提交
653 654
}

655
static int lancer_wait_ready(struct be_adapter *adapter)
656 657 658
{
#define SLIPORT_READY_TIMEOUT 30
	u32 sliport_status;
659
	int i;
660 661 662 663

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

666 667 668
		if (sliport_status & SLIPORT_STATUS_ERR_MASK &&
		    !(sliport_status & SLIPORT_STATUS_RN_MASK))
			return -EIO;
669

670
		msleep(1000);
671
	}
672

673
	return sliport_status ? : -1;
674 675 676
}

int be_fw_wait_ready(struct be_adapter *adapter)
S
Sathya Perla 已提交
677
{
678 679
	u16 stage;
	int status, timeout = 0;
680
	struct device *dev = &adapter->pdev->dev;
S
Sathya Perla 已提交
681

682 683
	if (lancer_chip(adapter)) {
		status = lancer_wait_ready(adapter);
684 685 686 687 688
		if (status) {
			stage = status;
			goto err;
		}
		return 0;
689 690
	}

691
	do {
692 693 694 695
		/* There's no means to poll POST state on BE2/3 VFs */
		if (BEx_chip(adapter) && be_virtfn(adapter))
			return 0;

696
		stage = be_POST_stage_get(adapter);
G
Gavin Shan 已提交
697
		if (stage == POST_STAGE_ARMFW_RDY)
698
			return 0;
G
Gavin Shan 已提交
699

700
		dev_info(dev, "Waiting for POST, %ds elapsed\n", timeout);
G
Gavin Shan 已提交
701 702 703
		if (msleep_interruptible(2000)) {
			dev_err(dev, "Waiting for POST aborted\n");
			return -EINTR;
704
		}
G
Gavin Shan 已提交
705
		timeout += 2;
706
	} while (timeout < 60);
S
Sathya Perla 已提交
707

708 709
err:
	dev_err(dev, "POST timeout; stage=%#x\n", stage);
710
	return -ETIMEDOUT;
S
Sathya Perla 已提交
711 712 713 714 715 716 717
}

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

718
static inline void fill_wrb_tags(struct be_mcc_wrb *wrb, unsigned long addr)
719 720 721 722
{
	wrb->tag0 = addr & 0xFFFFFFFF;
	wrb->tag1 = upper_32_bits(addr);
}
S
Sathya Perla 已提交
723 724

/* Don't touch the hdr after it's prepared */
S
Somnath Kotur 已提交
725 726
/* mem will be NULL for embedded commands */
static void be_wrb_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr,
727 728 729
				   u8 subsystem, u8 opcode, int cmd_len,
				   struct be_mcc_wrb *wrb,
				   struct be_dma_mem *mem)
S
Sathya Perla 已提交
730
{
S
Somnath Kotur 已提交
731 732
	struct be_sge *sge;

S
Sathya Perla 已提交
733 734 735
	req_hdr->opcode = opcode;
	req_hdr->subsystem = subsystem;
	req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr));
736
	req_hdr->version = 0;
737
	fill_wrb_tags(wrb, (ulong) req_hdr);
S
Somnath Kotur 已提交
738 739 740 741 742 743 744 745 746 747 748
	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 已提交
749 750 751
}

static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages,
752
				      struct be_dma_mem *mem)
S
Sathya Perla 已提交
753 754 755 756 757 758 759 760 761 762 763
{
	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;
	}
}

764
static inline struct be_mcc_wrb *wrb_from_mbox(struct be_adapter *adapter)
S
Sathya Perla 已提交
765
{
766 767 768 769 770
	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 已提交
771 772
}

773
static struct be_mcc_wrb *wrb_from_mccq(struct be_adapter *adapter)
774
{
775 776 777
	struct be_queue_info *mccq = &adapter->mcc_obj.q;
	struct be_mcc_wrb *wrb;

778 779 780
	if (!mccq->created)
		return NULL;

781
	if (atomic_read(&mccq->used) >= mccq->len)
782 783
		return NULL;

784 785 786 787
	wrb = queue_head_node(mccq);
	queue_head_inc(mccq);
	atomic_inc(&mccq->used);
	memset(wrb, 0, sizeof(*wrb));
788 789 790
	return wrb;
}

791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862
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)) {
		spin_lock_bh(&adapter->mcc_lock);
		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))
		spin_unlock_bh(&adapter->mcc_lock);
	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);
	if (!dest_wrb)
		return -EBUSY;

	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));

	be_cmd_unlock(adapter);
	return status;
}

863 864 865 866 867 868 869 870
/* 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;

871 872 873
	if (lancer_chip(adapter))
		return 0;

874 875
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
876 877

	wrb = (u8 *)wrb_from_mbox(adapter);
S
Sathya Perla 已提交
878 879 880 881 882 883 884 885
	*wrb++ = 0xFF;
	*wrb++ = 0x12;
	*wrb++ = 0x34;
	*wrb++ = 0xFF;
	*wrb++ = 0xFF;
	*wrb++ = 0x56;
	*wrb++ = 0x78;
	*wrb = 0xFF;
886 887 888

	status = be_mbox_notify_wait(adapter);

889
	mutex_unlock(&adapter->mbox_lock);
890 891 892 893 894 895 896 897 898 899 900
	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;

901 902 903
	if (lancer_chip(adapter))
		return 0;

904 905
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
906 907 908 909 910 911 912 913 914 915 916 917 918

	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);

919
	mutex_unlock(&adapter->mbox_lock);
920 921
	return status;
}
922

S
Sathya Perla 已提交
923
int be_cmd_eq_create(struct be_adapter *adapter, struct be_eq_obj *eqo)
S
Sathya Perla 已提交
924
{
925 926
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_eq_create *req;
S
Sathya Perla 已提交
927 928
	struct be_dma_mem *q_mem = &eqo->q.dma_mem;
	int status, ver = 0;
S
Sathya Perla 已提交
929

930 931
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
932 933 934

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

S
Somnath Kotur 已提交
936
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
937 938
			       OPCODE_COMMON_EQ_CREATE, sizeof(*req), wrb,
			       NULL);
S
Sathya Perla 已提交
939

S
Sathya Perla 已提交
940 941 942 943 944
	/* 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 已提交
945 946 947 948 949 950
	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 已提交
951
		      __ilog2_u32(eqo->q.len / 256));
S
Sathya Perla 已提交
952 953 954 955
	be_dws_cpu_to_le(req->context, sizeof(req->context));

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

956
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
957
	if (!status) {
958
		struct be_cmd_resp_eq_create *resp = embedded_payload(wrb);
959

S
Sathya Perla 已提交
960 961 962 963
		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 已提交
964
	}
965

966
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
967 968 969
	return status;
}

970
/* Use MCC */
971
int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
972
			  bool permanent, u32 if_handle, u32 pmac_id)
S
Sathya Perla 已提交
973
{
974 975
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_mac_query *req;
S
Sathya Perla 已提交
976 977
	int status;

978
	spin_lock_bh(&adapter->mcc_lock);
979

980 981 982 983 984
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
985
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
986

S
Somnath Kotur 已提交
987
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
988 989
			       OPCODE_COMMON_NTWK_MAC_QUERY, sizeof(*req), wrb,
			       NULL);
990
	req->type = MAC_ADDRESS_TYPE_NETWORK;
S
Sathya Perla 已提交
991 992 993
	if (permanent) {
		req->permanent = 1;
	} else {
K
Kalesh AP 已提交
994
		req->if_id = cpu_to_le16((u16)if_handle);
995
		req->pmac_id = cpu_to_le32(pmac_id);
S
Sathya Perla 已提交
996 997 998
		req->permanent = 0;
	}

999
	status = be_mcc_notify_wait(adapter);
1000 1001
	if (!status) {
		struct be_cmd_resp_mac_query *resp = embedded_payload(wrb);
1002

S
Sathya Perla 已提交
1003
		memcpy(mac_addr, resp->mac.addr, ETH_ALEN);
1004
	}
S
Sathya Perla 已提交
1005

1006 1007
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1008 1009 1010
	return status;
}

1011
/* Uses synchronous MCCQ */
1012
int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
1013
		    u32 if_id, u32 *pmac_id, u32 domain)
S
Sathya Perla 已提交
1014
{
1015 1016
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_pmac_add *req;
S
Sathya Perla 已提交
1017 1018
	int status;

1019 1020 1021
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
1022 1023 1024 1025
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1026
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1027

S
Somnath Kotur 已提交
1028
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1029 1030
			       OPCODE_COMMON_NTWK_PMAC_ADD, sizeof(*req), wrb,
			       NULL);
S
Sathya Perla 已提交
1031

1032
	req->hdr.domain = domain;
S
Sathya Perla 已提交
1033 1034 1035
	req->if_id = cpu_to_le32(if_id);
	memcpy(req->mac_address, mac_addr, ETH_ALEN);

1036
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1037 1038
	if (!status) {
		struct be_cmd_resp_pmac_add *resp = embedded_payload(wrb);
1039

S
Sathya Perla 已提交
1040 1041 1042
		*pmac_id = le32_to_cpu(resp->pmac_id);
	}

1043
err:
1044
	spin_unlock_bh(&adapter->mcc_lock);
1045 1046 1047 1048

	 if (status == MCC_STATUS_UNAUTHORIZED_REQUEST)
		status = -EPERM;

S
Sathya Perla 已提交
1049 1050 1051
	return status;
}

1052
/* Uses synchronous MCCQ */
1053
int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, int pmac_id, u32 dom)
S
Sathya Perla 已提交
1054
{
1055 1056
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_pmac_del *req;
S
Sathya Perla 已提交
1057 1058
	int status;

1059 1060 1061
	if (pmac_id == -1)
		return 0;

1062 1063 1064
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
1065 1066 1067 1068
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1069
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1070

S
Somnath Kotur 已提交
1071
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
K
Kalesh AP 已提交
1072 1073
			       OPCODE_COMMON_NTWK_PMAC_DEL, sizeof(*req),
			       wrb, NULL);
S
Sathya Perla 已提交
1074

1075
	req->hdr.domain = dom;
S
Sathya Perla 已提交
1076 1077 1078
	req->if_id = cpu_to_le32(if_id);
	req->pmac_id = cpu_to_le32(pmac_id);

1079 1080
	status = be_mcc_notify_wait(adapter);

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

1086
/* Uses Mbox */
S
Sathya Perla 已提交
1087
int be_cmd_cq_create(struct be_adapter *adapter, struct be_queue_info *cq,
1088
		     struct be_queue_info *eq, bool no_delay, int coalesce_wm)
S
Sathya Perla 已提交
1089
{
1090 1091
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_cq_create *req;
S
Sathya Perla 已提交
1092
	struct be_dma_mem *q_mem = &cq->dma_mem;
1093
	void *ctxt;
S
Sathya Perla 已提交
1094 1095
	int status;

1096 1097
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
1098 1099 1100 1101

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

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

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

	if (BEx_chip(adapter)) {
1110
		AMAP_SET_BITS(struct amap_cq_context_be, coalescwm, ctxt,
1111
			      coalesce_wm);
1112
		AMAP_SET_BITS(struct amap_cq_context_be, nodelay,
1113
			      ctxt, no_delay);
1114
		AMAP_SET_BITS(struct amap_cq_context_be, count, ctxt,
1115
			      __ilog2_u32(cq->len / 256));
1116 1117 1118
		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);
1119 1120 1121
	} else {
		req->hdr.version = 2;
		req->page_size = 1; /* 1 for 4K */
1122 1123 1124 1125 1126 1127 1128

		/* 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);
1129
		AMAP_SET_BITS(struct amap_cq_context_v2, nodelay, ctxt,
1130
			      no_delay);
1131
		AMAP_SET_BITS(struct amap_cq_context_v2, count, ctxt,
1132
			      __ilog2_u32(cq->len / 256));
1133
		AMAP_SET_BITS(struct amap_cq_context_v2, valid, ctxt, 1);
1134 1135
		AMAP_SET_BITS(struct amap_cq_context_v2, eventable, ctxt, 1);
		AMAP_SET_BITS(struct amap_cq_context_v2, eqid, ctxt, eq->id);
1136
	}
S
Sathya Perla 已提交
1137 1138 1139 1140 1141

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

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

1142
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
1143
	if (!status) {
1144
		struct be_cmd_resp_cq_create *resp = embedded_payload(wrb);
1145

S
Sathya Perla 已提交
1146 1147 1148
		cq->id = le16_to_cpu(resp->cq_id);
		cq->created = true;
	}
1149

1150
	mutex_unlock(&adapter->mbox_lock);
1151 1152 1153 1154 1155 1156 1157

	return status;
}

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

1159 1160 1161 1162 1163
	if (len_encoded == 16)
		len_encoded = 0;
	return len_encoded;
}

J
Jingoo Han 已提交
1164
static int be_cmd_mccq_ext_create(struct be_adapter *adapter,
1165 1166
				  struct be_queue_info *mccq,
				  struct be_queue_info *cq)
1167
{
1168
	struct be_mcc_wrb *wrb;
1169
	struct be_cmd_req_mcc_ext_create *req;
1170
	struct be_dma_mem *q_mem = &mccq->dma_mem;
1171
	void *ctxt;
1172 1173
	int status;

1174 1175
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
1176 1177 1178 1179

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

S
Somnath Kotur 已提交
1181
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1182 1183
			       OPCODE_COMMON_MCC_CREATE_EXT, sizeof(*req), wrb,
			       NULL);
1184

1185
	req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size));
1186
	if (BEx_chip(adapter)) {
1187 1188
		AMAP_SET_BITS(struct amap_mcc_context_be, valid, ctxt, 1);
		AMAP_SET_BITS(struct amap_mcc_context_be, ring_size, ctxt,
1189
			      be_encoded_q_len(mccq->len));
1190
		AMAP_SET_BITS(struct amap_mcc_context_be, cq_id, ctxt, cq->id);
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
	} 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);
1202
	}
1203

1204 1205 1206 1207 1208 1209 1210 1211 1212
	/* 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));

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);
1218 1219
	if (!status) {
		struct be_cmd_resp_mcc_create *resp = embedded_payload(wrb);
1220

1221 1222 1223
		mccq->id = le16_to_cpu(resp->id);
		mccq->created = true;
	}
1224
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
1225 1226 1227 1228

	return status;
}

J
Jingoo Han 已提交
1229
static int be_cmd_mccq_org_create(struct be_adapter *adapter,
1230 1231
				  struct be_queue_info *mccq,
				  struct be_queue_info *cq)
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
{
	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 已提交
1246
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1247 1248
			       OPCODE_COMMON_MCC_CREATE, sizeof(*req), wrb,
			       NULL);
1249 1250 1251 1252 1253

	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,
1254
		      be_encoded_q_len(mccq->len));
1255 1256 1257 1258 1259 1260 1261 1262 1263
	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);
1264

1265 1266 1267 1268 1269 1270 1271 1272 1273
		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,
1274
		       struct be_queue_info *mccq, struct be_queue_info *cq)
1275 1276 1277 1278
{
	int status;

	status = be_cmd_mccq_ext_create(adapter, mccq, cq);
1279
	if (status && BEx_chip(adapter)) {
1280 1281 1282 1283 1284 1285 1286 1287
		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 已提交
1288
int be_cmd_txq_create(struct be_adapter *adapter, struct be_tx_obj *txo)
S
Sathya Perla 已提交
1289
{
1290
	struct be_mcc_wrb wrb = {0};
1291
	struct be_cmd_req_eth_tx_create *req;
V
Vasundhara Volam 已提交
1292 1293
	struct be_queue_info *txq = &txo->q;
	struct be_queue_info *cq = &txo->cq;
S
Sathya Perla 已提交
1294
	struct be_dma_mem *q_mem = &txq->dma_mem;
V
Vasundhara Volam 已提交
1295
	int status, ver = 0;
S
Sathya Perla 已提交
1296

1297
	req = embedded_payload(&wrb);
S
Somnath Kotur 已提交
1298
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
1299
			       OPCODE_ETH_TX_CREATE, sizeof(*req), &wrb, NULL);
S
Sathya Perla 已提交
1300

1301 1302
	if (lancer_chip(adapter)) {
		req->hdr.version = 1;
V
Vasundhara Volam 已提交
1303 1304 1305 1306 1307
	} 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;
1308 1309
	}

1310 1311
	if (req->hdr.version > 0)
		req->if_id = cpu_to_le16(adapter->if_handle);
S
Sathya Perla 已提交
1312 1313 1314
	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 已提交
1315 1316
	req->cq_id = cpu_to_le16(cq->id);
	req->queue_size = be_encoded_q_len(txq->len);
S
Sathya Perla 已提交
1317
	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem);
V
Vasundhara Volam 已提交
1318 1319
	ver = req->hdr.version;

1320
	status = be_cmd_notify_wait(adapter, &wrb);
S
Sathya Perla 已提交
1321
	if (!status) {
1322
		struct be_cmd_resp_eth_tx_create *resp = embedded_payload(&wrb);
1323

S
Sathya Perla 已提交
1324
		txq->id = le16_to_cpu(resp->cid);
V
Vasundhara Volam 已提交
1325 1326 1327 1328
		if (ver == 2)
			txo->db_offset = le32_to_cpu(resp->db_offset);
		else
			txo->db_offset = DB_TXULP1_OFFSET;
S
Sathya Perla 已提交
1329 1330
		txq->created = true;
	}
1331

S
Sathya Perla 已提交
1332 1333 1334
	return status;
}

1335
/* Uses MCC */
1336
int be_cmd_rxq_create(struct be_adapter *adapter,
1337 1338
		      struct be_queue_info *rxq, u16 cq_id, u16 frag_size,
		      u32 if_id, u32 rss, u8 *rss_id)
S
Sathya Perla 已提交
1339
{
1340 1341
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_eth_rx_create *req;
S
Sathya Perla 已提交
1342 1343 1344
	struct be_dma_mem *q_mem = &rxq->dma_mem;
	int status;

1345
	spin_lock_bh(&adapter->mcc_lock);
1346

1347 1348 1349 1350 1351
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1352
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1353

S
Somnath Kotur 已提交
1354
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
1355
			       OPCODE_ETH_RX_CREATE, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1356 1357 1358 1359 1360 1361

	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 已提交
1362
	req->max_frame_size = cpu_to_le16(BE_MAX_JUMBO_FRAME_SIZE);
S
Sathya Perla 已提交
1363 1364
	req->rss_queue = cpu_to_le32(rss);

1365
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1366 1367
	if (!status) {
		struct be_cmd_resp_eth_rx_create *resp = embedded_payload(wrb);
1368

S
Sathya Perla 已提交
1369 1370
		rxq->id = le16_to_cpu(resp->id);
		rxq->created = true;
1371
		*rss_id = resp->rss_id;
S
Sathya Perla 已提交
1372
	}
1373

1374 1375
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1376 1377 1378
	return status;
}

1379 1380 1381
/* Generic destroyer function for all types of queues
 * Uses Mbox
 */
1382
int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
1383
		     int queue_type)
S
Sathya Perla 已提交
1384
{
1385 1386
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_q_destroy *req;
S
Sathya Perla 已提交
1387 1388 1389
	u8 subsys = 0, opcode = 0;
	int status;

1390 1391
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
S
Sathya Perla 已提交
1392

1393 1394 1395
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);

S
Sathya Perla 已提交
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
	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;
1413 1414 1415 1416
	case QTYPE_MCCQ:
		subsys = CMD_SUBSYSTEM_COMMON;
		opcode = OPCODE_COMMON_MCC_DESTROY;
		break;
S
Sathya Perla 已提交
1417
	default:
1418
		BUG();
S
Sathya Perla 已提交
1419
	}
1420

S
Somnath Kotur 已提交
1421
	be_wrb_cmd_hdr_prepare(&req->hdr, subsys, opcode, sizeof(*req), wrb,
1422
			       NULL);
S
Sathya Perla 已提交
1423 1424
	req->id = cpu_to_le16(q->id);

1425
	status = be_mbox_notify_wait(adapter);
1426
	q->created = false;
1427

1428
	mutex_unlock(&adapter->mbox_lock);
1429 1430
	return status;
}
S
Sathya Perla 已提交
1431

1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
/* 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;

	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
1448
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
1449
			       OPCODE_ETH_RX_DESTROY, sizeof(*req), wrb, NULL);
1450 1451 1452
	req->id = cpu_to_le16(q->id);

	status = be_mcc_notify_wait(adapter);
1453
	q->created = false;
1454 1455 1456

err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1457 1458 1459
	return status;
}

1460
/* Create an rx filtering policy configuration on an i/f
1461
 * Will use MBOX only if MCCQ has not been created.
1462
 */
1463
int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags, u32 en_flags,
1464
		     u32 *if_handle, u32 domain)
S
Sathya Perla 已提交
1465
{
1466
	struct be_mcc_wrb wrb = {0};
1467
	struct be_cmd_req_if_create *req;
S
Sathya Perla 已提交
1468 1469
	int status;

1470
	req = embedded_payload(&wrb);
S
Somnath Kotur 已提交
1471
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1472 1473
			       OPCODE_COMMON_NTWK_INTERFACE_CREATE,
			       sizeof(*req), &wrb, NULL);
1474
	req->hdr.domain = domain;
1475 1476
	req->capability_flags = cpu_to_le32(cap_flags);
	req->enable_flags = cpu_to_le32(en_flags);
1477
	req->pmac_invalid = true;
S
Sathya Perla 已提交
1478

1479
	status = be_cmd_notify_wait(adapter, &wrb);
S
Sathya Perla 已提交
1480
	if (!status) {
1481
		struct be_cmd_resp_if_create *resp = embedded_payload(&wrb);
1482

S
Sathya Perla 已提交
1483
		*if_handle = le32_to_cpu(resp->interface_id);
S
Sathya Perla 已提交
1484 1485

		/* Hack to retrieve VF's pmac-id on BE3 */
1486
		if (BE3_chip(adapter) && be_virtfn(adapter))
S
Sathya Perla 已提交
1487
			adapter->pmac_id[0] = le32_to_cpu(resp->pmac_id);
S
Sathya Perla 已提交
1488 1489 1490 1491
	}
	return status;
}

1492
/* Uses MCCQ */
1493
int be_cmd_if_destroy(struct be_adapter *adapter, int interface_id, u32 domain)
S
Sathya Perla 已提交
1494
{
1495 1496
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_if_destroy *req;
S
Sathya Perla 已提交
1497 1498
	int status;

1499
	if (interface_id == -1)
1500
		return 0;
1501

1502 1503 1504 1505 1506 1507 1508
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1509
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1510

S
Somnath Kotur 已提交
1511
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1512 1513
			       OPCODE_COMMON_NTWK_INTERFACE_DESTROY,
			       sizeof(*req), wrb, NULL);
1514
	req->hdr.domain = domain;
S
Sathya Perla 已提交
1515
	req->interface_id = cpu_to_le32(interface_id);
1516

1517 1518 1519
	status = be_mcc_notify_wait(adapter);
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1520 1521 1522 1523 1524
	return status;
}

/* Get stats is a non embedded command: the request is not embedded inside
 * WRB but is a separate dma memory block
1525
 * Uses asynchronous MCC
S
Sathya Perla 已提交
1526
 */
1527
int be_cmd_get_stats(struct be_adapter *adapter, struct be_dma_mem *nonemb_cmd)
S
Sathya Perla 已提交
1528
{
1529
	struct be_mcc_wrb *wrb;
1530
	struct be_cmd_req_hdr *hdr;
1531
	int status = 0;
S
Sathya Perla 已提交
1532

1533
	spin_lock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1534

1535
	wrb = wrb_from_mccq(adapter);
1536 1537 1538 1539
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1540
	hdr = nonemb_cmd->va;
S
Sathya Perla 已提交
1541

S
Somnath Kotur 已提交
1542
	be_wrb_cmd_hdr_prepare(hdr, CMD_SUBSYSTEM_ETH,
1543 1544
			       OPCODE_ETH_GET_STATISTICS, nonemb_cmd->size, wrb,
			       nonemb_cmd);
1545

1546
	/* version 1 of the cmd is not supported only by BE2 */
1547 1548 1549
	if (BE2_chip(adapter))
		hdr->version = 0;
	if (BE3_chip(adapter) || lancer_chip(adapter))
1550
		hdr->version = 1;
1551 1552
	else
		hdr->version = 2;
1553

1554 1555 1556 1557
	status = be_mcc_notify(adapter);
	if (status)
		goto err;

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

1560
err:
1561
	spin_unlock_bh(&adapter->mcc_lock);
1562
	return status;
S
Sathya Perla 已提交
1563 1564
}

S
Selvin Xavier 已提交
1565 1566
/* Lancer Stats */
int lancer_cmd_get_pport_stats(struct be_adapter *adapter,
1567
			       struct be_dma_mem *nonemb_cmd)
S
Selvin Xavier 已提交
1568 1569 1570 1571 1572
{
	struct be_mcc_wrb *wrb;
	struct lancer_cmd_req_pport_stats *req;
	int status = 0;

1573 1574 1575 1576
	if (!be_cmd_allowed(adapter, OPCODE_ETH_GET_PPORT_STATS,
			    CMD_SUBSYSTEM_ETH))
		return -EPERM;

S
Selvin Xavier 已提交
1577 1578 1579 1580 1581 1582 1583 1584 1585
	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
1586
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
1587 1588
			       OPCODE_ETH_GET_PPORT_STATS, nonemb_cmd->size,
			       wrb, nonemb_cmd);
S
Selvin Xavier 已提交
1589

1590
	req->cmd_params.params.pport_num = cpu_to_le16(adapter->hba_port_num);
S
Selvin Xavier 已提交
1591 1592
	req->cmd_params.params.reset_stats = 0;

1593 1594 1595 1596
	status = be_mcc_notify(adapter);
	if (status)
		goto err;

S
Selvin Xavier 已提交
1597 1598 1599 1600 1601 1602 1603
	adapter->stats_cmd_sent = true;

err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
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;
1617 1618 1619 1620 1621 1622
	case PHY_LINK_SPEED_20GBPS:
		return 20000;
	case PHY_LINK_SPEED_25GBPS:
		return 25000;
	case PHY_LINK_SPEED_40GBPS:
		return 40000;
1623 1624 1625 1626 1627 1628 1629 1630 1631
	}
	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 已提交
1632
{
1633 1634
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_link_status *req;
S
Sathya Perla 已提交
1635 1636
	int status;

1637 1638
	spin_lock_bh(&adapter->mcc_lock);

1639 1640 1641
	if (link_status)
		*link_status = LINK_DOWN;

1642
	wrb = wrb_from_mccq(adapter);
1643 1644 1645 1646
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1647
	req = embedded_payload(wrb);
1648

1649
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1650 1651
			       OPCODE_COMMON_NTWK_LINK_STATUS_QUERY,
			       sizeof(*req), wrb, NULL);
1652

1653 1654
	/* version 1 of the cmd is not supported only by BE2 */
	if (!BE2_chip(adapter))
1655 1656
		req->hdr.version = 1;

1657
	req->hdr.domain = dom;
S
Sathya Perla 已提交
1658

1659
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1660 1661
	if (!status) {
		struct be_cmd_resp_link_status *resp = embedded_payload(wrb);
1662

1663 1664 1665 1666 1667 1668 1669
		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;
1670
		}
1671 1672
		if (link_status)
			*link_status = resp->logical_link_status;
S
Sathya Perla 已提交
1673 1674
	}

1675
err:
1676
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1677 1678 1679
	return status;
}

1680 1681 1682 1683 1684
/* 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;
1685
	int status = 0;
1686 1687 1688 1689 1690 1691 1692 1693 1694 1695

	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
1696
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1697 1698
			       OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES,
			       sizeof(*req), wrb, NULL);
1699

1700
	status = be_mcc_notify(adapter);
1701 1702 1703 1704 1705
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
/* Uses synchronous mcc */
int be_cmd_get_reg_len(struct be_adapter *adapter, u32 *log_size)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_fat *req;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
1722
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1723 1724
			       OPCODE_COMMON_MANAGE_FAT, sizeof(*req), wrb,
			       NULL);
1725 1726 1727 1728
	req->fat_operation = cpu_to_le32(QUERY_FAT);
	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_fat *resp = embedded_payload(wrb);
1729

1730
		if (log_size && resp->log_size)
1731 1732
			*log_size = le32_to_cpu(resp->log_size) -
					sizeof(u32);
1733 1734 1735 1736 1737 1738
	}
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

1739
int be_cmd_get_regs(struct be_adapter *adapter, u32 buf_len, void *buf)
1740 1741 1742 1743
{
	struct be_dma_mem get_fat_cmd;
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_fat *req;
1744 1745
	u32 offset = 0, total_size, buf_size,
				log_offset = sizeof(u32), payload_len;
1746
	int status = 0;
1747 1748

	if (buf_len == 0)
1749
		return -EIO;
1750 1751 1752

	total_size = buf_len;

1753
	get_fat_cmd.size = sizeof(struct be_cmd_req_get_fat) + 60*1024;
1754 1755 1756
	get_fat_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
					     get_fat_cmd.size,
					     &get_fat_cmd.dma, GFP_ATOMIC);
1757 1758
	if (!get_fat_cmd.va) {
		dev_err(&adapter->pdev->dev,
K
Kalesh AP 已提交
1759
			"Memory allocation failure while reading FAT data\n");
1760
		return -ENOMEM;
1761 1762
	}

1763 1764 1765 1766 1767 1768
	spin_lock_bh(&adapter->mcc_lock);

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

1769 1770 1771
		wrb = wrb_from_mccq(adapter);
		if (!wrb) {
			status = -EBUSY;
1772 1773 1774 1775
			goto err;
		}
		req = get_fat_cmd.va;

1776
		payload_len = sizeof(struct be_cmd_req_get_fat) + buf_size;
S
Somnath Kotur 已提交
1777
		be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1778 1779
				       OPCODE_COMMON_MANAGE_FAT, payload_len,
				       wrb, &get_fat_cmd);
1780 1781 1782 1783 1784 1785 1786 1787 1788

		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;
1789

1790
			memcpy(buf + offset,
1791 1792
			       resp->data_buffer,
			       le32_to_cpu(resp->read_log_length));
1793
		} else {
1794
			dev_err(&adapter->pdev->dev, "FAT Table Retrieve error\n");
1795 1796
			goto err;
		}
1797 1798 1799 1800
		offset += buf_size;
		log_offset += buf_size;
	}
err:
1801 1802
	dma_free_coherent(&adapter->pdev->dev, get_fat_cmd.size,
			  get_fat_cmd.va, get_fat_cmd.dma);
1803
	spin_unlock_bh(&adapter->mcc_lock);
1804
	return status;
1805 1806
}

1807
/* Uses synchronous mcc */
1808
int be_cmd_get_fw_ver(struct be_adapter *adapter)
S
Sathya Perla 已提交
1809
{
1810 1811
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_fw_version *req;
S
Sathya Perla 已提交
1812 1813
	int status;

1814
	spin_lock_bh(&adapter->mcc_lock);
1815

1816 1817 1818 1819 1820
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
S
Sathya Perla 已提交
1821

1822
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1823

S
Somnath Kotur 已提交
1824
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1825 1826
			       OPCODE_COMMON_GET_FW_VERSION, sizeof(*req), wrb,
			       NULL);
1827
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1828 1829
	if (!status) {
		struct be_cmd_resp_get_fw_version *resp = embedded_payload(wrb);
S
Sathya Perla 已提交
1830

1831 1832 1833 1834
		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 已提交
1835
	}
1836 1837
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1838 1839 1840
	return status;
}

1841 1842 1843
/* set the EQ delay interval of an EQ to specified value
 * Uses async mcc
 */
1844 1845
static int __be_cmd_modify_eqd(struct be_adapter *adapter,
			       struct be_set_eqd *set_eqd, int num)
S
Sathya Perla 已提交
1846
{
1847 1848
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_modify_eq_delay *req;
1849
	int status = 0, i;
S
Sathya Perla 已提交
1850

1851 1852 1853
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
1854 1855 1856 1857
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1858
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1859

S
Somnath Kotur 已提交
1860
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1861 1862
			       OPCODE_COMMON_MODIFY_EQ_DELAY, sizeof(*req), wrb,
			       NULL);
S
Sathya Perla 已提交
1863

1864 1865 1866 1867 1868 1869 1870
	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 已提交
1871

1872
	status = be_mcc_notify(adapter);
1873
err:
1874
	spin_unlock_bh(&adapter->mcc_lock);
1875
	return status;
S
Sathya Perla 已提交
1876 1877
}

1878 1879 1880 1881 1882
int be_cmd_modify_eqd(struct be_adapter *adapter, struct be_set_eqd *set_eqd,
		      int num)
{
	int num_eqs, i = 0;

1883 1884 1885 1886 1887
	while (num) {
		num_eqs = min(num, 8);
		__be_cmd_modify_eqd(adapter, &set_eqd[i], num_eqs);
		i += num_eqs;
		num -= num_eqs;
1888 1889 1890 1891 1892
	}

	return 0;
}

1893
/* Uses sycnhronous mcc */
1894
int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id, u16 *vtag_array,
1895
		       u32 num, u32 domain)
S
Sathya Perla 已提交
1896
{
1897 1898
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_vlan_config *req;
S
Sathya Perla 已提交
1899 1900
	int status;

1901 1902 1903
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
1904 1905 1906 1907
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1908
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1909

S
Somnath Kotur 已提交
1910
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1911 1912
			       OPCODE_COMMON_NTWK_VLAN_CONFIG, sizeof(*req),
			       wrb, NULL);
1913
	req->hdr.domain = domain;
S
Sathya Perla 已提交
1914 1915

	req->interface_id = if_id;
1916
	req->untagged = BE_IF_FLAGS_UNTAGGED & be_if_cap_flags(adapter) ? 1 : 0;
S
Sathya Perla 已提交
1917
	req->num_vlan = num;
1918 1919
	memcpy(req->normal_vlan, vtag_array,
	       req->num_vlan * sizeof(vtag_array[0]));
S
Sathya Perla 已提交
1920

1921
	status = be_mcc_notify_wait(adapter);
1922
err:
1923
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1924 1925 1926
	return status;
}

1927
static int __be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 value)
S
Sathya Perla 已提交
1928
{
1929
	struct be_mcc_wrb *wrb;
1930 1931
	struct be_dma_mem *mem = &adapter->rx_filter;
	struct be_cmd_req_rx_filter *req = mem->va;
1932
	int status;
S
Sathya Perla 已提交
1933

1934
	spin_lock_bh(&adapter->mcc_lock);
1935

1936
	wrb = wrb_from_mccq(adapter);
1937 1938 1939 1940
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1941
	memset(req, 0, sizeof(*req));
S
Somnath Kotur 已提交
1942
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1943 1944
			       OPCODE_COMMON_NTWK_RX_FILTER, sizeof(*req),
			       wrb, mem);
S
Sathya Perla 已提交
1945

1946
	req->if_id = cpu_to_le32(adapter->if_handle);
1947 1948 1949 1950
	req->if_flags_mask = cpu_to_le32(flags);
	req->if_flags = (value == ON) ? req->if_flags_mask : 0;

	if (flags & BE_IF_FLAGS_MULTICAST) {
1951
		struct netdev_hw_addr *ha;
1952
		int i = 0;
1953

1954 1955 1956
		/* Reset mcast promisc mode if already set by setting mask
		 * and not setting flags field
		 */
1957 1958
		req->if_flags_mask |=
			cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS &
1959
				    be_if_cap_flags(adapter));
1960
		req->mcast_num = cpu_to_le32(netdev_mc_count(adapter->netdev));
1961 1962
		netdev_for_each_mc_addr(ha, adapter->netdev)
			memcpy(req->mcast_mac[i++].byte, ha->addr, ETH_ALEN);
S
Sathya Perla 已提交
1963 1964
	}

1965
	status = be_mcc_notify(adapter);
1966
err:
1967
	spin_unlock_bh(&adapter->mcc_lock);
1968
	return status;
S
Sathya Perla 已提交
1969 1970
}

1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984
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);

	return __be_cmd_rx_filter(adapter, flags, value);
}

1985
/* Uses synchrounous mcc */
1986
int be_cmd_set_flow_control(struct be_adapter *adapter, u32 tx_fc, u32 rx_fc)
S
Sathya Perla 已提交
1987
{
1988 1989
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_flow_control *req;
S
Sathya Perla 已提交
1990 1991
	int status;

1992 1993 1994 1995
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_SET_FLOW_CONTROL,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

1996
	spin_lock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1997

1998
	wrb = wrb_from_mccq(adapter);
1999 2000 2001 2002
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2003
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
2004

S
Somnath Kotur 已提交
2005
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2006 2007
			       OPCODE_COMMON_SET_FLOW_CONTROL, sizeof(*req),
			       wrb, NULL);
S
Sathya Perla 已提交
2008

2009
	req->hdr.version = 1;
S
Sathya Perla 已提交
2010 2011 2012
	req->tx_flow_control = cpu_to_le16((u16)tx_fc);
	req->rx_flow_control = cpu_to_le16((u16)rx_fc);

2013
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
2014

2015
err:
2016
	spin_unlock_bh(&adapter->mcc_lock);
2017 2018 2019 2020

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

S
Sathya Perla 已提交
2021 2022 2023
	return status;
}

2024
/* Uses sycn mcc */
2025
int be_cmd_get_flow_control(struct be_adapter *adapter, u32 *tx_fc, u32 *rx_fc)
S
Sathya Perla 已提交
2026
{
2027 2028
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_flow_control *req;
S
Sathya Perla 已提交
2029 2030
	int status;

2031 2032 2033 2034
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_GET_FLOW_CONTROL,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

2035
	spin_lock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
2036

2037
	wrb = wrb_from_mccq(adapter);
2038 2039 2040 2041
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2042
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
2043

S
Somnath Kotur 已提交
2044
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2045 2046
			       OPCODE_COMMON_GET_FLOW_CONTROL, sizeof(*req),
			       wrb, NULL);
S
Sathya Perla 已提交
2047

2048
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
2049 2050 2051
	if (!status) {
		struct be_cmd_resp_get_flow_control *resp =
						embedded_payload(wrb);
2052

S
Sathya Perla 已提交
2053 2054 2055 2056
		*tx_fc = le16_to_cpu(resp->tx_flow_control);
		*rx_fc = le16_to_cpu(resp->rx_flow_control);
	}

2057
err:
2058
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
2059 2060 2061
	return status;
}

2062
/* Uses mbox */
2063
int be_cmd_query_fw_cfg(struct be_adapter *adapter)
S
Sathya Perla 已提交
2064
{
2065 2066
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_query_fw_cfg *req;
S
Sathya Perla 已提交
2067 2068
	int status;

2069 2070
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
S
Sathya Perla 已提交
2071

2072 2073
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
2074

S
Somnath Kotur 已提交
2075
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2076 2077
			       OPCODE_COMMON_QUERY_FIRMWARE_CONFIG,
			       sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
2078

2079
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
2080 2081
	if (!status) {
		struct be_cmd_resp_query_fw_cfg *resp = embedded_payload(wrb);
2082

2083 2084 2085 2086
		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 已提交
2087 2088 2089
		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 已提交
2090 2091
	}

2092
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
2093 2094
	return status;
}
2095

2096
/* Uses mbox */
2097 2098
int be_cmd_reset_function(struct be_adapter *adapter)
{
2099 2100
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_hdr *req;
2101 2102
	int status;

2103
	if (lancer_chip(adapter)) {
2104 2105
		iowrite32(SLI_PORT_CONTROL_IP_MASK,
			  adapter->db + SLIPORT_CONTROL_OFFSET);
2106
		status = lancer_wait_ready(adapter);
2107
		if (status)
2108 2109 2110 2111 2112
			dev_err(&adapter->pdev->dev,
				"Adapter in non recoverable error\n");
		return status;
	}

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

2116 2117
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
2118

S
Somnath Kotur 已提交
2119
	be_wrb_cmd_hdr_prepare(req, CMD_SUBSYSTEM_COMMON,
2120 2121
			       OPCODE_COMMON_FUNCTION_RESET, sizeof(*req), wrb,
			       NULL);
2122

2123
	status = be_mbox_notify_wait(adapter);
2124

2125
	mutex_unlock(&adapter->mbox_lock);
2126 2127
	return status;
}
2128

2129
int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
2130
		      u32 rss_hash_opts, u16 table_size, const u8 *rss_hkey)
2131 2132 2133 2134 2135
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_rss_config *req;
	int status;

2136 2137 2138
	if (!(be_if_cap_flags(adapter) & BE_IF_FLAGS_RSS))
		return 0;

2139
	spin_lock_bh(&adapter->mcc_lock);
2140

2141 2142 2143 2144 2145
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2146 2147
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2148
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
2149
			       OPCODE_ETH_RSS_CONFIG, sizeof(*req), wrb, NULL);
2150 2151

	req->if_id = cpu_to_le32(adapter->if_handle);
2152 2153
	req->enable_rss = cpu_to_le16(rss_hash_opts);
	req->cpu_table_size_log2 = cpu_to_le16(fls(table_size) - 1);
2154

2155
	if (!BEx_chip(adapter))
2156 2157
		req->hdr.version = 1;

2158
	memcpy(req->cpu_table, rsstable, table_size);
2159
	memcpy(req->hash, rss_hkey, RSS_HASH_KEY_LEN);
2160 2161
	be_dws_cpu_to_le(req->hash, sizeof(req->hash));

2162 2163 2164
	status = be_mcc_notify_wait(adapter);
err:
	spin_unlock_bh(&adapter->mcc_lock);
2165 2166 2167
	return status;
}

2168 2169
/* Uses sync mcc */
int be_cmd_set_beacon_state(struct be_adapter *adapter, u8 port_num,
2170
			    u8 bcn, u8 sts, u8 state)
2171 2172 2173 2174 2175 2176 2177 2178
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_enable_disable_beacon *req;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
2179 2180 2181 2182
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2183 2184
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2185
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2186 2187
			       OPCODE_COMMON_ENABLE_DISABLE_BEACON,
			       sizeof(*req), wrb, NULL);
2188 2189 2190 2191 2192 2193 2194 2195

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

	status = be_mcc_notify_wait(adapter);

2196
err:
2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210
	spin_unlock_bh(&adapter->mcc_lock);
	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;

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
2211 2212 2213 2214
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2215 2216
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2217
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2218 2219
			       OPCODE_COMMON_GET_BEACON_STATE, sizeof(*req),
			       wrb, NULL);
2220 2221 2222 2223 2224 2225 2226

	req->port_num = port_num;

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

2228 2229 2230
		*state = resp->beacon_state;
	}

2231
err:
2232 2233 2234 2235
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248
/* 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);
2249 2250
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory allocation failed\n");
		return -ENOMEM;
	}

	spin_lock_bh(&adapter->mcc_lock);

	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:
	spin_unlock_bh(&adapter->mcc_lock);
2279
	dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma);
2280 2281 2282
	return status;
}

2283
int lancer_cmd_write_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
2284 2285 2286
			    u32 data_size, u32 data_offset,
			    const char *obj_name, u32 *data_written,
			    u8 *change_status, u8 *addn_status)
2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304
{
	struct be_mcc_wrb *wrb;
	struct lancer_cmd_req_write_object *req;
	struct lancer_cmd_resp_write_object *resp;
	void *ctxt = NULL;
	int status;

	spin_lock_bh(&adapter->mcc_lock);
	adapter->flash_status = 0;

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

	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2305
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2306 2307 2308
			       OPCODE_COMMON_WRITE_OBJECT,
			       sizeof(struct lancer_cmd_req_write_object), wrb,
			       NULL);
2309 2310 2311

	ctxt = &req->context;
	AMAP_SET_BITS(struct amap_lancer_write_obj_context,
2312
		      write_length, ctxt, data_size);
2313 2314 2315

	if (data_size == 0)
		AMAP_SET_BITS(struct amap_lancer_write_obj_context,
2316
			      eof, ctxt, 1);
2317 2318
	else
		AMAP_SET_BITS(struct amap_lancer_write_obj_context,
2319
			      eof, ctxt, 0);
2320 2321 2322

	be_dws_cpu_to_le(ctxt, sizeof(req->context));
	req->write_offset = cpu_to_le32(data_offset);
2323
	strlcpy(req->object_name, obj_name, sizeof(req->object_name));
2324 2325 2326
	req->descriptor_count = cpu_to_le32(1);
	req->buf_len = cpu_to_le32(data_size);
	req->addr_low = cpu_to_le32((cmd->dma +
2327 2328
				     sizeof(struct lancer_cmd_req_write_object))
				    & 0xFFFFFFFF);
2329 2330 2331
	req->addr_high = cpu_to_le32(upper_32_bits(cmd->dma +
				sizeof(struct lancer_cmd_req_write_object)));

2332 2333 2334 2335
	status = be_mcc_notify(adapter);
	if (status)
		goto err_unlock;

2336 2337
	spin_unlock_bh(&adapter->mcc_lock);

2338
	if (!wait_for_completion_timeout(&adapter->et_cmd_compl,
2339
					 msecs_to_jiffies(60000)))
2340
		status = -ETIMEDOUT;
2341 2342 2343 2344
	else
		status = adapter->flash_status;

	resp = embedded_payload(wrb);
2345
	if (!status) {
2346
		*data_written = le32_to_cpu(resp->actual_write_len);
2347 2348
		*change_status = resp->change_status;
	} else {
2349
		*addn_status = resp->additional_status;
2350
	}
2351 2352 2353 2354 2355 2356 2357 2358

	return status;

err_unlock:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383
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;
}

2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401
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;
}

2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421
int lancer_cmd_delete_object(struct be_adapter *adapter, const char *obj_name)
{
	struct lancer_cmd_req_delete_object *req;
	struct be_mcc_wrb *wrb;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	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);

2422
	strlcpy(req->object_name, obj_name, sizeof(req->object_name));
2423 2424 2425 2426 2427 2428 2429

	status = be_mcc_notify_wait(adapter);
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

2430
int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
2431 2432
			   u32 data_size, u32 data_offset, const char *obj_name,
			   u32 *data_read, u32 *eof, u8 *addn_status)
2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449
{
	struct be_mcc_wrb *wrb;
	struct lancer_cmd_req_read_object *req;
	struct lancer_cmd_resp_read_object *resp;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	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,
2450 2451 2452
			       OPCODE_COMMON_READ_OBJECT,
			       sizeof(struct lancer_cmd_req_read_object), wrb,
			       NULL);
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476

	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:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

2477
int be_cmd_write_flashrom(struct be_adapter *adapter, struct be_dma_mem *cmd,
2478 2479
			  u32 flash_type, u32 flash_opcode, u32 img_offset,
			  u32 buf_size)
2480
{
2481
	struct be_mcc_wrb *wrb;
2482
	struct be_cmd_write_flashrom *req;
2483 2484
	int status;

2485
	spin_lock_bh(&adapter->mcc_lock);
2486
	adapter->flash_status = 0;
2487 2488

	wrb = wrb_from_mccq(adapter);
2489 2490
	if (!wrb) {
		status = -EBUSY;
D
Dan Carpenter 已提交
2491
		goto err_unlock;
2492 2493
	}
	req = cmd->va;
2494

S
Somnath Kotur 已提交
2495
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2496 2497
			       OPCODE_COMMON_WRITE_FLASHROM, cmd->size, wrb,
			       cmd);
2498 2499

	req->params.op_type = cpu_to_le32(flash_type);
2500 2501 2502
	if (flash_type == OPTYPE_OFFSET_SPECIFIED)
		req->params.offset = cpu_to_le32(img_offset);

2503 2504 2505
	req->params.op_code = cpu_to_le32(flash_opcode);
	req->params.data_buf_size = cpu_to_le32(buf_size);

2506 2507 2508 2509
	status = be_mcc_notify(adapter);
	if (status)
		goto err_unlock;

2510 2511
	spin_unlock_bh(&adapter->mcc_lock);

2512 2513
	if (!wait_for_completion_timeout(&adapter->et_cmd_compl,
					 msecs_to_jiffies(40000)))
2514
		status = -ETIMEDOUT;
2515 2516
	else
		status = adapter->flash_status;
2517

D
Dan Carpenter 已提交
2518 2519 2520 2521
	return status;

err_unlock:
	spin_unlock_bh(&adapter->mcc_lock);
2522 2523
	return status;
}
2524

2525
int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
2526
			 u16 img_optype, u32 img_offset, u32 crc_offset)
2527
{
2528
	struct be_cmd_read_flash_crc *req;
2529
	struct be_mcc_wrb *wrb;
2530 2531 2532 2533 2534
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
2535 2536 2537 2538
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2539 2540
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2541
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2542 2543
			       OPCODE_COMMON_READ_FLASHROM, sizeof(*req),
			       wrb, NULL);
2544

2545 2546 2547 2548 2549 2550
	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);

2551
	req->params.op_code = cpu_to_le32(FLASHROM_OPER_REPORT);
2552
	req->params.data_buf_size = cpu_to_le32(0x4);
2553 2554 2555

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

2558
err:
2559 2560 2561
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2562

2563
int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
2564
			    struct be_dma_mem *nonemb_cmd)
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_acpi_wol_magic_config *req;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
2579
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
2580 2581
			       OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG, sizeof(*req),
			       wrb, nonemb_cmd);
2582 2583 2584 2585 2586 2587 2588 2589
	memcpy(req->magic_mac, mac, ETH_ALEN);

	status = be_mcc_notify_wait(adapter);

err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2590

2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607
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;

	spin_lock_bh(&adapter->mcc_lock);

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

	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2608
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
2609 2610
			       OPCODE_LOWLEVEL_SET_LOOPBACK_MODE, sizeof(*req),
			       wrb, NULL);
2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622

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

	status = be_mcc_notify_wait(adapter);
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

2623
int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
2624 2625
			 u32 loopback_type, u32 pkt_size, u32 num_pkts,
			 u64 pattern)
2626 2627 2628
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_loopback_test *req;
2629
	struct be_cmd_resp_loopback_test *resp;
2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641
	int status;

	spin_lock_bh(&adapter->mcc_lock);

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

	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2642
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
2643 2644
			       OPCODE_LOWLEVEL_LOOPBACK_TEST, sizeof(*req), wrb,
			       NULL);
2645

2646
	req->hdr.timeout = cpu_to_le32(15);
2647 2648 2649 2650 2651 2652 2653
	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);

2654 2655 2656
	status = be_mcc_notify(adapter);
	if (status)
		goto err;
2657 2658

	spin_unlock_bh(&adapter->mcc_lock);
2659

2660 2661 2662 2663 2664
	wait_for_completion(&adapter->et_cmd_compl);
	resp = embedded_payload(wrb);
	status = le32_to_cpu(resp->status);

	return status;
2665 2666 2667 2668 2669 2670
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern,
2671
			u32 byte_cnt, struct be_dma_mem *cmd)
2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_ddrdma_test *req;
	int status;
	int i, j = 0;

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
	req = cmd->va;
S
Somnath Kotur 已提交
2686
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
2687 2688
			       OPCODE_LOWLEVEL_HOST_DDR_DMA, cmd->size, wrb,
			       cmd);
2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702

	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;
2703

2704 2705
		resp = cmd->va;
		if ((memcmp(resp->rcv_buff, req->snd_buff, byte_cnt) != 0) ||
K
Kalesh AP 已提交
2706
		    resp->snd_err) {
2707 2708 2709 2710 2711 2712 2713 2714
			status = -1;
		}
	}

err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2715

2716
int be_cmd_get_seeprom_data(struct be_adapter *adapter,
2717
			    struct be_dma_mem *nonemb_cmd)
2718 2719 2720 2721 2722 2723 2724 2725
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_seeprom_read *req;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
2726 2727 2728 2729
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2730 2731
	req = nonemb_cmd->va;

S
Somnath Kotur 已提交
2732
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2733 2734
			       OPCODE_COMMON_SEEPROM_READ, sizeof(*req), wrb,
			       nonemb_cmd);
2735 2736 2737

	status = be_mcc_notify_wait(adapter);

2738
err:
2739 2740 2741
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2742

A
Ajit Khaparde 已提交
2743
int be_cmd_get_phy_info(struct be_adapter *adapter)
2744 2745 2746
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_phy_info *req;
2747
	struct be_dma_mem cmd;
2748 2749
	int status;

2750 2751 2752 2753
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_GET_PHY_DETAILS,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

2754 2755 2756 2757 2758 2759 2760
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2761
	cmd.size = sizeof(struct be_cmd_req_get_phy_info);
2762 2763
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
2764 2765 2766 2767 2768
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory alloc failure\n");
		status = -ENOMEM;
		goto err;
	}
2769

2770
	req = cmd.va;
2771

S
Somnath Kotur 已提交
2772
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2773 2774
			       OPCODE_COMMON_GET_PHY_DETAILS, sizeof(*req),
			       wrb, &cmd);
2775 2776

	status = be_mcc_notify_wait(adapter);
2777 2778 2779
	if (!status) {
		struct be_phy_info *resp_phy_info =
				cmd.va + sizeof(struct be_cmd_req_hdr);
2780

A
Ajit Khaparde 已提交
2781 2782
		adapter->phy.phy_type = le16_to_cpu(resp_phy_info->phy_type);
		adapter->phy.interface_type =
2783
			le16_to_cpu(resp_phy_info->interface_type);
A
Ajit Khaparde 已提交
2784 2785 2786 2787 2788 2789
		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);
2790 2791 2792 2793 2794 2795

		if (BE2_chip(adapter)) {
			adapter->phy.fixed_speeds_supported =
				BE_SUPPORTED_SPEED_10GBPS |
				BE_SUPPORTED_SPEED_1GBPS;
		}
2796
	}
2797
	dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma);
2798 2799 2800 2801
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2802

L
Lad, Prabhakar 已提交
2803
static int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain)
2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_qos *req;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

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

	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2819
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2820
			       OPCODE_COMMON_SET_QOS, sizeof(*req), wrb, NULL);
2821 2822

	req->hdr.domain = domain;
2823 2824
	req->valid_bits = cpu_to_le32(BE_QOS_BITS_NIC);
	req->max_bps_nic = cpu_to_le32(bps);
2825 2826 2827 2828 2829 2830 2831

	status = be_mcc_notify_wait(adapter);

err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842

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;
	int status;
	int payload_len = max(sizeof(*req), sizeof(*resp));
	struct mgmt_controller_attrib *attribs;
	struct be_dma_mem attribs_cmd;

S
Suresh Reddy 已提交
2843 2844 2845
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

2846 2847
	memset(&attribs_cmd, 0, sizeof(struct be_dma_mem));
	attribs_cmd.size = sizeof(struct be_cmd_resp_cntl_attribs);
2848 2849 2850
	attribs_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
					     attribs_cmd.size,
					     &attribs_cmd.dma, GFP_ATOMIC);
2851
	if (!attribs_cmd.va) {
2852
		dev_err(&adapter->pdev->dev, "Memory allocation failure\n");
S
Suresh Reddy 已提交
2853 2854
		status = -ENOMEM;
		goto err;
2855 2856 2857 2858 2859 2860 2861 2862 2863
	}

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

S
Somnath Kotur 已提交
2864
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2865 2866
			       OPCODE_COMMON_GET_CNTL_ATTRIBUTES, payload_len,
			       wrb, &attribs_cmd);
2867 2868 2869

	status = be_mbox_notify_wait(adapter);
	if (!status) {
2870
		attribs = attribs_cmd.va + sizeof(struct be_cmd_resp_hdr);
2871 2872 2873 2874 2875
		adapter->hba_port_num = attribs->hba_attribs.phy_port;
	}

err:
	mutex_unlock(&adapter->mbox_lock);
S
Suresh Reddy 已提交
2876
	if (attribs_cmd.va)
2877 2878
		dma_free_coherent(&adapter->pdev->dev, attribs_cmd.size,
				  attribs_cmd.va, attribs_cmd.dma);
2879 2880
	return status;
}
2881 2882

/* Uses mbox */
2883
int be_cmd_req_native_mode(struct be_adapter *adapter)
2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899
{
	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 已提交
2900
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2901 2902
			       OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP,
			       sizeof(*req), wrb, NULL);
2903 2904 2905 2906 2907 2908 2909 2910

	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);
2911

2912 2913
		adapter->be3_native = le32_to_cpu(resp->cap_flags) &
					CAPABILITY_BE3_NATIVE_ERX_API;
S
Sathya Perla 已提交
2914 2915 2916
		if (!adapter->be3_native)
			dev_warn(&adapter->pdev->dev,
				 "adapter not in advanced mode\n");
2917 2918 2919 2920 2921
	}
err:
	mutex_unlock(&adapter->mbox_lock);
	return status;
}
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
/* 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;

	spin_lock_bh(&adapter->mcc_lock);

	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);
2951

2952
		*privilege = le32_to_cpu(resp->privilege_mask);
2953 2954 2955 2956 2957 2958 2959

		/* 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;
2960 2961 2962 2963 2964 2965 2966
	}

err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

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
/* 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;

	spin_lock_bh(&adapter->mcc_lock);

	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:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

2999 3000 3001 3002
/* 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
 */
3003
int be_cmd_get_mac_from_list(struct be_adapter *adapter, u8 *mac,
3004 3005
			     bool *pmac_id_valid, u32 *pmac_id, u32 if_handle,
			     u8 domain)
3006 3007 3008 3009 3010
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_mac_list *req;
	int status;
	int mac_count;
3011 3012 3013 3014 3015
	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);
3016 3017 3018 3019
	get_mac_list_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
						  get_mac_list_cmd.size,
						  &get_mac_list_cmd.dma,
						  GFP_ATOMIC);
3020 3021 3022

	if (!get_mac_list_cmd.va) {
		dev_err(&adapter->pdev->dev,
3023
			"Memory allocation failure during GET_MAC_LIST\n");
3024 3025
		return -ENOMEM;
	}
3026 3027 3028 3029 3030 3031

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
3032
		goto out;
3033
	}
3034 3035

	req = get_mac_list_cmd.va;
3036 3037

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3038 3039
			       OPCODE_COMMON_GET_MAC_LIST,
			       get_mac_list_cmd.size, wrb, &get_mac_list_cmd);
3040
	req->hdr.domain = domain;
3041
	req->mac_type = MAC_ADDRESS_TYPE_NETWORK;
3042 3043
	if (*pmac_id_valid) {
		req->mac_id = cpu_to_le32(*pmac_id);
3044
		req->iface_id = cpu_to_le16(if_handle);
3045 3046 3047 3048
		req->perm_override = 0;
	} else {
		req->perm_override = 1;
	}
3049 3050 3051 3052

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_mac_list *resp =
3053
						get_mac_list_cmd.va;
3054 3055 3056 3057 3058 3059 3060

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

3061 3062
		mac_count = resp->true_mac_count + resp->pseudo_mac_count;
		/* Mac list returned could contain one or more active mac_ids
3063
		 * or one or more true or pseudo permanent mac addresses.
3064 3065
		 * If an active mac_id is present, return first active mac_id
		 * found.
3066
		 */
3067
		for (i = 0; i < mac_count; i++) {
3068 3069 3070 3071 3072 3073 3074 3075 3076 3077
			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)) {
3078
				*pmac_id_valid = true;
3079 3080 3081
				mac_id = mac_entry->mac_addr_id.s_mac_id.mac_id;
				*pmac_id = le32_to_cpu(mac_id);
				goto out;
3082 3083
			}
		}
3084
		/* If no active mac_id found, return first mac addr */
3085
		*pmac_id_valid = false;
3086
		memcpy(mac, resp->macaddr_list[0].mac_addr_id.macaddr,
3087
		       ETH_ALEN);
3088 3089
	}

3090
out:
3091
	spin_unlock_bh(&adapter->mcc_lock);
3092 3093
	dma_free_coherent(&adapter->pdev->dev, get_mac_list_cmd.size,
			  get_mac_list_cmd.va, get_mac_list_cmd.dma);
3094 3095 3096
	return status;
}

3097 3098
int be_cmd_get_active_mac(struct be_adapter *adapter, u32 curr_pmac_id,
			  u8 *mac, u32 if_handle, bool active, u32 domain)
3099
{
3100 3101 3102
	if (!active)
		be_cmd_get_mac_from_list(adapter, mac, &active, &curr_pmac_id,
					 if_handle, domain);
3103
	if (BEx_chip(adapter))
3104
		return be_cmd_mac_addr_query(adapter, mac, false,
3105
					     if_handle, curr_pmac_id);
3106 3107 3108
	else
		/* Fetch the MAC address using pmac_id */
		return be_cmd_get_mac_from_list(adapter, mac, &active,
3109 3110
						&curr_pmac_id,
						if_handle, domain);
3111 3112
}

3113 3114 3115 3116 3117
int be_cmd_get_perm_mac(struct be_adapter *adapter, u8 *mac)
{
	int status;
	bool pmac_valid = false;

3118
	eth_zero_addr(mac);
3119

3120 3121 3122 3123 3124 3125 3126 3127
	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 {
3128
		status = be_cmd_get_mac_from_list(adapter, mac, &pmac_valid,
3129
						  NULL, adapter->if_handle, 0);
3130 3131
	}

3132 3133 3134
	return status;
}

3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145
/* 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);
3146 3147
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_KERNEL);
3148
	if (!cmd.va)
3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160
		return -ENOMEM;

	spin_lock_bh(&adapter->mcc_lock);

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

	req = cmd.va;
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3161 3162
			       OPCODE_COMMON_SET_MAC_LIST, sizeof(*req),
			       wrb, &cmd);
3163 3164 3165 3166 3167 3168 3169 3170 3171

	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:
3172
	dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma);
3173 3174 3175
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
3176

3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188
/* 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,
3189 3190
					  &pmac_id, if_id, dom);

3191 3192 3193 3194 3195 3196
	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);
}

3197
int be_cmd_set_hsw_config(struct be_adapter *adapter, u16 pvid,
3198
			  u32 domain, u16 intf_id, u16 hsw_mode, u8 spoofchk)
3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_hsw_config *req;
	void *ctxt;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	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,
3217 3218
			       OPCODE_COMMON_SET_HSW_CONFIG, sizeof(*req), wrb,
			       NULL);
3219 3220 3221 3222 3223 3224 3225

	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);
	}
3226 3227 3228 3229 3230 3231 3232
	if (!BEx_chip(adapter) && hsw_mode) {
		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);
	}
3233

3234 3235 3236 3237 3238 3239 3240 3241
	/* 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);
	}

3242 3243 3244 3245 3246 3247 3248 3249 3250 3251
	be_dws_cpu_to_le(req->context, sizeof(req->context));
	status = be_mcc_notify_wait(adapter);

err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

/* Get Hyper switch config */
int be_cmd_get_hsw_config(struct be_adapter *adapter, u16 *pvid,
3252
			  u32 domain, u16 intf_id, u8 *mode, bool *spoofchk)
3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_hsw_config *req;
	void *ctxt;
	int status;
	u16 vid;

	spin_lock_bh(&adapter->mcc_lock);

	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,
3272 3273
			       OPCODE_COMMON_GET_HSW_CONFIG, sizeof(*req), wrb,
			       NULL);
3274 3275

	req->hdr.domain = domain;
3276 3277
	AMAP_SET_BITS(struct amap_get_hsw_req_context, interface_id,
		      ctxt, intf_id);
3278
	AMAP_SET_BITS(struct amap_get_hsw_req_context, pvid_valid, ctxt, 1);
3279

3280
	if (!BEx_chip(adapter) && mode) {
3281 3282 3283 3284
		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);
	}
3285 3286 3287 3288 3289 3290
	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);
3291

3292
		be_dws_le_to_cpu(&resp->context, sizeof(resp->context));
3293
		vid = AMAP_GET_BITS(struct amap_get_hsw_resp_context,
3294
				    pvid, &resp->context);
3295 3296 3297 3298 3299
		if (pvid)
			*pvid = le16_to_cpu(vid);
		if (mode)
			*mode = AMAP_GET_BITS(struct amap_get_hsw_resp_context,
					      port_fwd_type, &resp->context);
3300 3301 3302 3303
		if (spoofchk)
			*spoofchk =
				AMAP_GET_BITS(struct amap_get_hsw_resp_context,
					      spoofchk, &resp->context);
3304 3305 3306 3307 3308 3309 3310
	}

err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

3311 3312 3313 3314
static bool be_is_wol_excluded(struct be_adapter *adapter)
{
	struct pci_dev *pdev = adapter->pdev;

3315
	if (be_virtfn(adapter))
3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328
		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;
	}
}

3329 3330 3331 3332
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 已提交
3333
	int status = 0;
3334 3335
	struct be_dma_mem cmd;

3336 3337 3338 3339
	if (!be_cmd_allowed(adapter, OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG,
			    CMD_SUBSYSTEM_ETH))
		return -EPERM;

S
Suresh Reddy 已提交
3340 3341 3342
	if (be_is_wol_excluded(adapter))
		return status;

S
Suresh Reddy 已提交
3343 3344 3345
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

3346 3347
	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_resp_acpi_wol_magic_config_v1);
3348 3349
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
3350
	if (!cmd.va) {
3351
		dev_err(&adapter->pdev->dev, "Memory allocation failure\n");
S
Suresh Reddy 已提交
3352 3353
		status = -ENOMEM;
		goto err;
3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365
	}

	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 已提交
3366
			       sizeof(*req), wrb, &cmd);
3367 3368 3369 3370 3371 3372 3373

	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;
3374

K
Kalesh AP 已提交
3375
		resp = (struct be_cmd_resp_acpi_wol_magic_config_v1 *)cmd.va;
3376 3377

		adapter->wol_cap = resp->wol_settings;
S
Suresh Reddy 已提交
3378 3379
		if (adapter->wol_cap & BE_WOL_CAP)
			adapter->wol_en = true;
3380 3381 3382
	}
err:
	mutex_unlock(&adapter->mbox_lock);
S
Suresh Reddy 已提交
3383
	if (cmd.va)
3384 3385
		dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
				  cmd.dma);
3386
	return status;
3387 3388

}
3389 3390 3391 3392 3393 3394 3395 3396 3397 3398

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);
3399 3400 3401
	extfat_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
					    extfat_cmd.size, &extfat_cmd.dma,
					    GFP_ATOMIC);
3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412
	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);
3413

3414 3415 3416 3417 3418 3419 3420 3421 3422
		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:
3423 3424
	dma_free_coherent(&adapter->pdev->dev, extfat_cmd.size, extfat_cmd.va,
			  extfat_cmd.dma);
3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436
	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);
3437 3438 3439
	extfat_cmd.va = dma_zalloc_coherent(&adapter->pdev->dev,
					    extfat_cmd.size, &extfat_cmd.dma,
					    GFP_ATOMIC);
3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450

	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));
3451

3452 3453 3454 3455 3456
		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;
		}
	}
3457 3458
	dma_free_coherent(&adapter->pdev->dev, extfat_cmd.size, extfat_cmd.va,
			  extfat_cmd.dma);
3459 3460 3461 3462
err:
	return level;
}

3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516
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;

	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,
			       OPCODE_COMMON_GET_EXT_FAT_CAPABILITES,
			       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;

	spin_lock_bh(&adapter->mcc_lock);

	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,
			       OPCODE_COMMON_SET_EXT_FAT_CAPABILITES,
			       cmd->size, wrb, cmd);

	status = be_mcc_notify_wait(adapter);
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
3517
}
3518

3519
int be_cmd_query_port_name(struct be_adapter *adapter)
3520 3521
{
	struct be_cmd_req_get_port_name *req;
3522
	struct be_mcc_wrb *wrb;
3523 3524
	int status;

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

3528
	wrb = wrb_from_mbox(adapter);
3529 3530 3531 3532 3533
	req = embedded_payload(wrb);

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

3537
	status = be_mbox_notify_wait(adapter);
3538 3539
	if (!status) {
		struct be_cmd_resp_get_port_name *resp = embedded_payload(wrb);
3540

3541
		adapter->port_name = resp->port_name[adapter->hba_port_num];
3542
	} else {
3543
		adapter->port_name = adapter->hba_port_num + '0';
3544
	}
3545 3546

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

3550 3551 3552 3553 3554 3555 3556 3557
/* Descriptor type */
enum {
	FUNC_DESC = 1,
	VFT_DESC = 2
};

static struct be_nic_res_desc *be_get_nic_desc(u8 *buf, u32 desc_count,
					       int desc_type)
3558
{
3559
	struct be_res_desc_hdr *hdr = (struct be_res_desc_hdr *)buf;
3560
	struct be_nic_res_desc *nic;
3561 3562 3563
	int i;

	for (i = 0; i < desc_count; i++) {
3564
		if (hdr->desc_type == NIC_RESOURCE_DESC_TYPE_V0 ||
3565 3566 3567 3568 3569 3570 3571
		    hdr->desc_type == NIC_RESOURCE_DESC_TYPE_V1) {
			nic = (struct be_nic_res_desc *)hdr;
			if (desc_type == FUNC_DESC ||
			    (desc_type == VFT_DESC &&
			     nic->flags & (1 << VFT_SHIFT)))
				return nic;
		}
3572

3573 3574
		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0;
		hdr = (void *)hdr + hdr->desc_len;
3575
	}
3576 3577 3578
	return NULL;
}

3579 3580 3581 3582 3583 3584 3585 3586 3587 3588
static struct be_nic_res_desc *be_get_vft_desc(u8 *buf, u32 desc_count)
{
	return be_get_nic_desc(buf, desc_count, VFT_DESC);
}

static struct be_nic_res_desc *be_get_func_nic_desc(u8 *buf, u32 desc_count)
{
	return be_get_nic_desc(buf, desc_count, FUNC_DESC);
}

3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602
static struct be_pcie_res_desc *be_get_pcie_desc(u8 devfn, u8 *buf,
						 u32 desc_count)
{
	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++) {
		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 == devfn)
				return pcie;
		}
3603

3604 3605 3606
		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0;
		hdr = (void *)hdr + hdr->desc_len;
	}
3607
	return NULL;
3608 3609
}

3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624
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;
}

3625 3626 3627 3628 3629 3630 3631 3632 3633 3634
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);
3635 3636 3637
	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);
3638 3639 3640 3641 3642
	/* Clear flags that driver is not interested in */
	res->if_cap_flags = le32_to_cpu(desc->cap_flags) &
				BE_IF_CAP_FLAGS_WANT;
}

3643
/* Uses Mbox */
3644
int be_cmd_get_func_config(struct be_adapter *adapter, struct be_resources *res)
3645 3646 3647 3648 3649 3650
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_func_config *req;
	int status;
	struct be_dma_mem cmd;

S
Suresh Reddy 已提交
3651 3652 3653
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

3654 3655
	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_resp_get_func_config);
3656 3657
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
3658 3659
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory alloc failure\n");
S
Suresh Reddy 已提交
3660 3661
		status = -ENOMEM;
		goto err;
3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675
	}

	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);

3676 3677 3678
	if (skyhawk_chip(adapter))
		req->hdr.version = 1;

3679 3680 3681 3682
	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);
3683
		struct be_nic_res_desc *desc;
3684

3685
		desc = be_get_func_nic_desc(resp->func_param, desc_count);
3686 3687 3688 3689 3690
		if (!desc) {
			status = -EINVAL;
			goto err;
		}

3691
		adapter->pf_number = desc->pf_num;
3692
		be_copy_nic_desc(res, desc);
3693 3694 3695
	}
err:
	mutex_unlock(&adapter->mbox_lock);
S
Suresh Reddy 已提交
3696
	if (cmd.va)
3697 3698
		dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
				  cmd.dma);
3699 3700 3701
	return status;
}

3702
/* Will use MBOX only if MCCQ has not been created */
3703
int be_cmd_get_profile_config(struct be_adapter *adapter,
3704
			      struct be_resources *res, u8 query, u8 domain)
3705
{
3706
	struct be_cmd_resp_get_profile_config *resp;
3707
	struct be_cmd_req_get_profile_config *req;
3708
	struct be_nic_res_desc *vf_res;
3709
	struct be_pcie_res_desc *pcie;
3710
	struct be_port_res_desc *port;
3711
	struct be_nic_res_desc *nic;
3712
	struct be_mcc_wrb wrb = {0};
3713
	struct be_dma_mem cmd;
3714
	u16 desc_count;
3715 3716 3717
	int status;

	memset(&cmd, 0, sizeof(struct be_dma_mem));
3718
	cmd.size = sizeof(struct be_cmd_resp_get_profile_config);
3719 3720
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
3721
	if (!cmd.va)
3722 3723
		return -ENOMEM;

3724 3725 3726 3727 3728 3729 3730 3731 3732 3733
	req = cmd.va;
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_GET_PROFILE_CONFIG,
			       cmd.size, &wrb, &cmd);

	req->hdr.domain = domain;
	if (!lancer_chip(adapter))
		req->hdr.version = 1;
	req->type = ACTIVE_PROFILE_TYPE;

3734 3735 3736 3737 3738 3739 3740
	/* 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;

3741
	status = be_cmd_notify_wait(adapter, &wrb);
3742 3743
	if (status)
		goto err;
3744

3745
	resp = cmd.va;
3746
	desc_count = le16_to_cpu(resp->desc_count);
3747

3748 3749
	pcie = be_get_pcie_desc(adapter->pdev->devfn, resp->func_param,
				desc_count);
3750
	if (pcie)
3751
		res->max_vfs = le16_to_cpu(pcie->num_vfs);
3752

3753 3754 3755 3756
	port = be_get_port_desc(resp->func_param, desc_count);
	if (port)
		adapter->mc_type = port->mc_type;

3757
	nic = be_get_func_nic_desc(resp->func_param, desc_count);
3758 3759 3760
	if (nic)
		be_copy_nic_desc(res, nic);

3761 3762 3763
	vf_res = be_get_vft_desc(resp->func_param, desc_count);
	if (vf_res)
		res->vf_if_cap_flags = vf_res->cap_flags;
3764
err:
3765
	if (cmd.va)
3766 3767
		dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
				  cmd.dma);
3768 3769 3770
	return status;
}

3771 3772 3773
/* 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)
3774 3775
{
	struct be_cmd_req_set_profile_config *req;
3776 3777
	struct be_mcc_wrb wrb = {0};
	struct be_dma_mem cmd;
3778 3779
	int status;

3780 3781
	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_req_set_profile_config);
3782 3783
	cmd.va = dma_zalloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
				     GFP_ATOMIC);
3784 3785
	if (!cmd.va)
		return -ENOMEM;
3786

3787
	req = cmd.va;
3788
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
3789 3790
			       OPCODE_COMMON_SET_PROFILE_CONFIG, cmd.size,
			       &wrb, &cmd);
3791
	req->hdr.version = version;
3792
	req->hdr.domain = domain;
3793
	req->desc_count = cpu_to_le32(count);
3794 3795
	memcpy(req->desc, desc, size);

3796 3797 3798
	status = be_cmd_notify_wait(adapter, &wrb);

	if (cmd.va)
3799 3800
		dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
				  cmd.dma);
3801 3802 3803
	return status;
}

3804
/* Mark all fields invalid */
3805
static void be_reset_nic_desc(struct be_nic_res_desc *nic)
3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818
{
	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;
3819
	nic->iface_count = 0xFFFF;
3820
	nic->link_param = 0xFF;
3821
	nic->channel_id_param = cpu_to_le16(0xF000);
3822 3823
	nic->acpi_params = 0xFF;
	nic->wol_param = 0x0F;
3824 3825
	nic->tunnel_iface_count = 0xFFFF;
	nic->direct_tenant_iface_count = 0xFFFF;
3826
	nic->bw_min = 0xFFFFFFFF;
3827 3828 3829
	nic->bw_max = 0xFFFFFFFF;
}

3830 3831 3832 3833 3834 3835 3836 3837 3838 3839
/* 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;
}

3840 3841
int be_cmd_config_qos(struct be_adapter *adapter, u32 max_rate, u16 link_speed,
		      u8 domain)
3842
{
3843 3844 3845 3846 3847 3848
	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);
3849

3850 3851 3852
	be_reset_nic_desc(&nic_desc);
	nic_desc.pf_num = adapter->pf_number;
	nic_desc.vf_num = domain;
3853
	nic_desc.bw_min = 0;
3854
	if (lancer_chip(adapter)) {
3855 3856 3857 3858
		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);
3859
		nic_desc.bw_max = cpu_to_le32(max_rate / 10);
3860
	} else {
3861 3862 3863 3864 3865 3866
		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);
3867
	}
3868 3869 3870

	return be_cmd_set_profile_config(adapter, &nic_desc,
					 nic_desc.hdr.desc_len,
3871 3872 3873
					 1, version, domain);
}

3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933
static void be_fill_vf_res_template(struct be_adapter *adapter,
				    struct be_resources pool_res,
				    u16 num_vfs, u16 num_vf_qs,
				    struct be_nic_res_desc *nic_vft)
{
	u32 vf_if_cap_flags = pool_res.vf_if_cap_flags;
	struct be_resources res_mod = {0};

	/* Resource with fields set to all '1's by GET_PROFILE_CONFIG cmd,
	 * which are modifiable using SET_PROFILE_CONFIG cmd.
	 */
	be_cmd_get_profile_config(adapter, &res_mod, RESOURCE_MODIFIABLE, 0);

	/* If RSS IFACE capability flags are modifiable for a VF, set the
	 * capability flag as valid and set RSS and DEFQ_RSS IFACE flags if
	 * more than 1 RSSQ is available for a VF.
	 * Otherwise, provision only 1 queue pair for VF.
	 */
	if (res_mod.vf_if_cap_flags & BE_IF_FLAGS_RSS) {
		nic_vft->flags |= BIT(IF_CAPS_FLAGS_VALID_SHIFT);
		if (num_vf_qs > 1) {
			vf_if_cap_flags |= BE_IF_FLAGS_RSS;
			if (pool_res.if_cap_flags & BE_IF_FLAGS_DEFQ_RSS)
				vf_if_cap_flags |= BE_IF_FLAGS_DEFQ_RSS;
		} else {
			vf_if_cap_flags &= ~(BE_IF_FLAGS_RSS |
					     BE_IF_FLAGS_DEFQ_RSS);
		}

		nic_vft->cap_flags = cpu_to_le32(vf_if_cap_flags);
	} else {
		num_vf_qs = 1;
	}

	nic_vft->rq_count = cpu_to_le16(num_vf_qs);
	nic_vft->txq_count = cpu_to_le16(num_vf_qs);
	nic_vft->rssq_count = cpu_to_le16(num_vf_qs);
	nic_vft->cq_count = cpu_to_le16(pool_res.max_cq_count /
					(num_vfs + 1));

	/* Distribute unicast MACs, VLANs, IFACE count and MCCQ count equally
	 * among the PF and it's VFs, if the fields are changeable
	 */
	if (res_mod.max_uc_mac == FIELD_MODIFIABLE)
		nic_vft->unicast_mac_count = cpu_to_le16(pool_res.max_uc_mac /
							 (num_vfs + 1));

	if (res_mod.max_vlans == FIELD_MODIFIABLE)
		nic_vft->vlan_count = cpu_to_le16(pool_res.max_vlans /
						  (num_vfs + 1));

	if (res_mod.max_iface_count == FIELD_MODIFIABLE)
		nic_vft->iface_count = cpu_to_le16(pool_res.max_iface_count /
						   (num_vfs + 1));

	if (res_mod.max_mcc_count == FIELD_MODIFIABLE)
		nic_vft->mcc_count = cpu_to_le16(pool_res.max_mcc_count /
						 (num_vfs + 1));
}

3934
int be_cmd_set_sriov_config(struct be_adapter *adapter,
3935 3936
			    struct be_resources pool_res, u16 num_vfs,
			    u16 num_vf_qs)
3937 3938 3939 3940 3941 3942 3943 3944 3945 3946
{
	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;
3947
	desc.pcie.flags = BIT(IMM_SHIFT) | BIT(NOSV_SHIFT);
3948 3949 3950 3951 3952 3953 3954 3955
	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;
3956
	desc.nic_vft.flags = BIT(VFT_SHIFT) | BIT(IMM_SHIFT) | BIT(NOSV_SHIFT);
3957 3958 3959
	desc.nic_vft.pf_num = adapter->pdev->devfn;
	desc.nic_vft.vf_num = 0;

3960 3961
	be_fill_vf_res_template(adapter, pool_res, num_vfs, num_vf_qs,
				&desc.nic_vft);
3962 3963 3964

	return be_cmd_set_profile_config(adapter, &desc,
					 2 * RESOURCE_DESC_SIZE_V1, 2, 1, 0);
3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015
}

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;

	spin_lock_bh(&adapter->mcc_lock);

	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:
	spin_unlock_bh(&adapter->mcc_lock);
	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,
4016
					 RESOURCE_DESC_SIZE_V1, 1, 1, 0);
4017 4018
}

4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051
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;

	spin_lock_bh(&adapter->mcc_lock);

	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:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095
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)
{
4096
	struct device *dev = &adapter->pdev->dev;
4097 4098
	int status;

4099 4100 4101 4102 4103
	if (dump_present(adapter)) {
		dev_info(dev, "Previous dump not cleared, not forcing dump\n");
		return -EEXIST;
	}

4104 4105 4106 4107
	/* give firmware reset and diagnostic dump */
	status = lancer_physdev_ctrl(adapter, PHYSDEV_CONTROL_FW_RESET_MASK |
				     PHYSDEV_CONTROL_DD_MASK);
	if (status < 0) {
4108
		dev_err(dev, "FW reset failed\n");
4109 4110 4111 4112 4113 4114 4115 4116
		return status;
	}

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

	if (!dump_present(adapter)) {
4117 4118
		dev_err(dev, "FW dump not generated\n");
		return -EIO;
4119 4120 4121 4122 4123
	}

	return 0;
}

4124 4125 4126 4127 4128 4129 4130 4131
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);
}

4132 4133 4134 4135 4136 4137 4138
/* 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;

4139
	if (BEx_chip(adapter))
4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163
		return 0;

	spin_lock_bh(&adapter->mcc_lock);

	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:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188
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;
}

4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214
/* 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);
4215

4216 4217 4218 4219 4220 4221 4222 4223
		*profile_id = le16_to_cpu(resp->active_profile_id);
	}

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

4224 4225 4226 4227 4228 4229 4230 4231
int be_cmd_set_logical_link_config(struct be_adapter *adapter,
				   int link_state, u8 domain)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_ll_link *req;
	int status;

	if (BEx_chip(adapter) || lancer_chip(adapter))
4232
		return -EOPNOTSUPP;
4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262

	spin_lock_bh(&adapter->mcc_lock);

	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);

	req->hdr.version = 1;
	req->hdr.domain = domain;

	if (link_state == IFLA_VF_LINK_STATE_ENABLE)
		req->link_config |= 1;

	if (link_state == IFLA_VF_LINK_STATE_AUTO)
		req->link_config |= 1 << PLINK_TRACK_SHIFT;

	status = be_mcc_notify_wait(adapter);
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

4263
int be_roce_mcc_cmd(void *netdev_handle, void *wrb_payload,
4264
		    int wrb_payload_size, u16 *cmd_status, u16 *ext_status)
4265 4266 4267
{
	struct be_adapter *adapter = netdev_priv(netdev_handle);
	struct be_mcc_wrb *wrb;
K
Kalesh AP 已提交
4268
	struct be_cmd_req_hdr *hdr = (struct be_cmd_req_hdr *)wrb_payload;
4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299
	struct be_cmd_req_hdr *req;
	struct be_cmd_resp_hdr *resp;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	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:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
EXPORT_SYMBOL(be_roce_mcc_cmd);