be_cmds.c 87.1 KB
Newer Older
S
Sathya Perla 已提交
1
/*
V
Vasundhara Volam 已提交
2
 * Copyright (C) 2005 - 2013 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 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
	}
};

static bool be_cmd_allowed(struct be_adapter *adapter, u8 opcode,
			   u8 subsystem)
{
	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;
}

71 72 73 74
static inline void *embedded_payload(struct be_mcc_wrb *wrb)
{
	return wrb->payload.embedded_payload;
}
75

76
static void be_mcc_notify(struct be_adapter *adapter)
77
{
78
	struct be_queue_info *mccq = &adapter->mcc_obj.q;
79 80
	u32 val = 0;

81
	if (be_error(adapter))
82 83
		return;

84 85
	val |= mccq->id & DB_MCCQ_RING_ID_MASK;
	val |= 1 << DB_MCCQ_NUM_POSTED_SHIFT;
86 87

	wmb();
88
	iowrite32(val, adapter->db + DB_MCCQ_OFFSET);
89 90 91 92 93
}

/* 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) */
94
static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl)
95
{
96 97
	u32 flags;

98
	if (compl->flags != 0) {
99 100 101 102 103
		flags = le32_to_cpu(compl->flags);
		if (flags & CQE_FLAGS_VALID_MASK) {
			compl->flags = flags;
			return true;
		}
104
	}
105
	return false;
106 107 108
}

/* Need to reset the entire word that houses the valid bit */
109
static inline void be_mcc_compl_use(struct be_mcc_compl *compl)
110 111 112 113
{
	compl->flags = 0;
}

114 115 116 117 118 119 120 121 122
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;
}

123
static int be_mcc_compl_process(struct be_adapter *adapter,
124
				struct be_mcc_compl *compl)
125 126
{
	u16 compl_status, extd_status;
127 128
	struct be_cmd_resp_hdr *resp_hdr;
	u8 opcode = 0, subsystem = 0;
129 130 131 132 133 134 135

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

	compl_status = (compl->status >> CQE_STATUS_COMPL_SHIFT) &
				CQE_STATUS_COMPL_MASK;
136

137 138 139 140 141 142 143 144 145 146
	resp_hdr = be_decode_resp_hdr(compl->tag0, compl->tag1);

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

	if (((opcode == OPCODE_COMMON_WRITE_FLASHROM) ||
	     (opcode == OPCODE_COMMON_WRITE_OBJECT)) &&
	    (subsystem == CMD_SUBSYSTEM_COMMON)) {
147 148 149 150
		adapter->flash_status = compl_status;
		complete(&adapter->flash_compl);
	}

151
	if (compl_status == MCC_STATUS_SUCCESS) {
152 153 154
		if (((opcode == OPCODE_ETH_GET_STATISTICS) ||
		     (opcode == OPCODE_ETH_GET_PPORT_STATS)) &&
		    (subsystem == CMD_SUBSYSTEM_ETH)) {
155
			be_parse_stats(adapter);
A
Ajit Khaparde 已提交
156
			adapter->stats_cmd_sent = false;
157
		}
158 159
		if (opcode == OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES &&
		    subsystem == CMD_SUBSYSTEM_COMMON) {
160
			struct be_cmd_resp_get_cntl_addnl_attribs *resp =
161
				(void *)resp_hdr;
162 163 164
			adapter->drv_stats.be_on_die_temperature =
				resp->on_die_temperature;
		}
165
	} else {
166
		if (opcode == OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES)
167
			adapter->be_get_temp_freq = 0;
168

169 170 171 172 173
		if (compl_status == MCC_STATUS_NOT_SUPPORTED ||
			compl_status == MCC_STATUS_ILLEGAL_REQUEST)
			goto done;

		if (compl_status == MCC_STATUS_UNAUTHORIZED_REQUEST) {
174
			dev_warn(&adapter->pdev->dev,
175
				 "VF is not privileged to issue opcode %d-%d\n",
176
				 opcode, subsystem);
177 178 179
		} else {
			extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) &
					CQE_STATUS_EXTD_MASK;
180 181 182
			dev_err(&adapter->pdev->dev,
				"opcode %d-%d failed:status %d-%d\n",
				opcode, subsystem, compl_status, extd_status);
183 184 185

			if (extd_status == MCC_ADDL_STS_INSUFFICIENT_RESOURCES)
				return extd_status;
186
		}
187
	}
188
done:
189
	return compl_status;
190 191
}

192
/* Link state evt is a string of bytes; no need for endian swapping */
193
static void be_async_link_state_process(struct be_adapter *adapter,
194 195
		struct be_async_event_link_state *evt)
{
196
	/* When link status changes, link speed must be re-queried from FW */
A
Ajit Khaparde 已提交
197
	adapter->phy.link_speed = -1;
198

199 200 201 202 203
	/* Ignore physical link event */
	if (lancer_chip(adapter) &&
	    !(evt->port_link_status & LOGICAL_LINK_STATUS_MASK))
		return;

204 205 206 207 208
	/* 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)
		be_link_status_update(adapter, evt->port_link_status);
209 210
}

211 212 213 214 215 216
/* Grp5 CoS Priority evt */
static void be_async_grp5_cos_priority_process(struct be_adapter *adapter,
		struct be_async_event_grp5_cos_priority *evt)
{
	if (evt->valid) {
		adapter->vlan_prio_bmap = evt->available_priority_bmap;
217
		adapter->recommended_prio &= ~VLAN_PRIO_MASK;
218 219 220 221 222
		adapter->recommended_prio =
			evt->reco_default_priority << VLAN_PRIO_SHIFT;
	}
}

223
/* Grp5 QOS Speed evt: qos_link_speed is in units of 10 Mbps */
224 225 226
static void be_async_grp5_qos_speed_process(struct be_adapter *adapter,
		struct be_async_event_grp5_qos_link_speed *evt)
{
227 228 229
	if (adapter->phy.link_speed >= 0 &&
	    evt->physical_port == adapter->port_num)
		adapter->phy.link_speed = le16_to_cpu(evt->qos_link_speed) * 10;
230 231
}

232 233 234 235 236
/*Grp5 PVID evt*/
static void be_async_grp5_pvid_state_process(struct be_adapter *adapter,
		struct be_async_event_grp5_pvid_state *evt)
{
	if (evt->enabled)
237
		adapter->pvid = le16_to_cpu(evt->tag) & VLAN_VID_MASK;
238 239 240 241
	else
		adapter->pvid = 0;
}

242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
static void be_async_grp5_evt_process(struct be_adapter *adapter,
		u32 trailer, struct be_mcc_compl *evt)
{
	u8 event_type = 0;

	event_type = (trailer >> ASYNC_TRAILER_EVENT_TYPE_SHIFT) &
		ASYNC_TRAILER_EVENT_TYPE_MASK;

	switch (event_type) {
	case ASYNC_EVENT_COS_PRIORITY:
		be_async_grp5_cos_priority_process(adapter,
		(struct be_async_event_grp5_cos_priority *)evt);
	break;
	case ASYNC_EVENT_QOS_SPEED:
		be_async_grp5_qos_speed_process(adapter,
		(struct be_async_event_grp5_qos_link_speed *)evt);
	break;
259 260 261 262
	case ASYNC_EVENT_PVID_STATE:
		be_async_grp5_pvid_state_process(adapter,
		(struct be_async_event_grp5_pvid_state *)evt);
	break;
263
	default:
264 265
		dev_warn(&adapter->pdev->dev, "Unknown grp5 event 0x%x!\n",
			 event_type);
266 267 268 269
		break;
	}
}

270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
static void be_async_dbg_evt_process(struct be_adapter *adapter,
		u32 trailer, struct be_mcc_compl *cmp)
{
	u8 event_type = 0;
	struct be_async_event_qnq *evt = (struct be_async_event_qnq *) cmp;

	event_type = (trailer >> ASYNC_TRAILER_EVENT_TYPE_SHIFT) &
		ASYNC_TRAILER_EVENT_TYPE_MASK;

	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:
286 287
		dev_warn(&adapter->pdev->dev, "Unknown debug event 0x%x!\n",
			 event_type);
288 289 290 291
	break;
	}
}

292 293
static inline bool is_link_state_evt(u32 trailer)
{
294
	return ((trailer >> ASYNC_TRAILER_EVENT_CODE_SHIFT) &
295
		ASYNC_TRAILER_EVENT_CODE_MASK) ==
296
				ASYNC_EVENT_CODE_LINK_STATE;
297
}
298

299 300 301 302 303 304 305
static inline bool is_grp5_evt(u32 trailer)
{
	return (((trailer >> ASYNC_TRAILER_EVENT_CODE_SHIFT) &
		ASYNC_TRAILER_EVENT_CODE_MASK) ==
				ASYNC_EVENT_CODE_GRP_5);
}

306 307 308 309 310 311 312
static inline bool is_dbg_evt(u32 trailer)
{
	return (((trailer >> ASYNC_TRAILER_EVENT_CODE_SHIFT) &
		ASYNC_TRAILER_EVENT_CODE_MASK) ==
				ASYNC_EVENT_CODE_QNQ);
}

313
static struct be_mcc_compl *be_mcc_compl_get(struct be_adapter *adapter)
314
{
315
	struct be_queue_info *mcc_cq = &adapter->mcc_obj.cq;
316
	struct be_mcc_compl *compl = queue_tail_node(mcc_cq);
317 318 319 320 321 322 323 324

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

325 326 327 328 329 330 331 332 333 334 335 336
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)
{
337 338
	spin_lock_bh(&adapter->mcc_cq_lock);

339
	adapter->mcc_obj.rearm_cq = false;
340 341 342
	be_cq_notify(adapter, adapter->mcc_obj.cq.id, false, 0);

	spin_unlock_bh(&adapter->mcc_cq_lock);
343 344
}

S
Sathya Perla 已提交
345
int be_process_mcc(struct be_adapter *adapter)
346
{
347
	struct be_mcc_compl *compl;
S
Sathya Perla 已提交
348
	int num = 0, status = 0;
349
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
350

351
	spin_lock(&adapter->mcc_cq_lock);
352
	while ((compl = be_mcc_compl_get(adapter))) {
353 354
		if (compl->flags & CQE_FLAGS_ASYNC_MASK) {
			/* Interpret flags as an async trailer */
355 356
			if (is_link_state_evt(compl->flags))
				be_async_link_state_process(adapter,
357
				(struct be_async_event_link_state *) compl);
358 359 360
			else if (is_grp5_evt(compl->flags))
				be_async_grp5_evt_process(adapter,
				compl->flags, compl);
361 362 363
			else if (is_dbg_evt(compl->flags))
				be_async_dbg_evt_process(adapter,
				compl->flags, compl);
364
		} else if (compl->flags & CQE_FLAGS_COMPLETED_MASK) {
S
Sathya Perla 已提交
365
				status = be_mcc_compl_process(adapter, compl);
366
				atomic_dec(&mcc_obj->q.used);
367 368 369 370
		}
		be_mcc_compl_use(compl);
		num++;
	}
371

S
Sathya Perla 已提交
372 373 374
	if (num)
		be_cq_notify(adapter, mcc_obj->cq.id, mcc_obj->rearm_cq, num);

375
	spin_unlock(&adapter->mcc_cq_lock);
S
Sathya Perla 已提交
376
	return status;
377 378
}

379
/* Wait till no more pending mcc requests are present */
380
static int be_mcc_wait_compl(struct be_adapter *adapter)
381
{
382
#define mcc_timeout		120000 /* 12s timeout */
S
Sathya Perla 已提交
383
	int i, status = 0;
S
Sathya Perla 已提交
384 385
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;

386
	for (i = 0; i < mcc_timeout; i++) {
387 388 389
		if (be_error(adapter))
			return -EIO;

390
		local_bh_disable();
S
Sathya Perla 已提交
391
		status = be_process_mcc(adapter);
392
		local_bh_enable();
393

S
Sathya Perla 已提交
394
		if (atomic_read(&mcc_obj->q.used) == 0)
395 396 397
			break;
		udelay(100);
	}
398
	if (i == mcc_timeout) {
399 400
		dev_err(&adapter->pdev->dev, "FW not responding\n");
		adapter->fw_timeout = true;
401
		return -EIO;
402
	}
S
Sathya Perla 已提交
403
	return status;
404 405 406
}

/* Notify MCC requests and wait for completion */
407
static int be_mcc_notify_wait(struct be_adapter *adapter)
408
{
409 410 411 412 413 414 415 416 417 418 419
	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);

420
	be_mcc_notify(adapter);
421 422 423 424 425 426 427 428

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

	status = resp->status;
out:
	return status;
429 430
}

431
static int be_mbox_db_ready_wait(struct be_adapter *adapter, void __iomem *db)
S
Sathya Perla 已提交
432
{
433
	int msecs = 0;
S
Sathya Perla 已提交
434 435 436
	u32 ready;

	do {
437 438 439
		if (be_error(adapter))
			return -EIO;

440
		ready = ioread32(db);
441
		if (ready == 0xffffffff)
442 443 444
			return -1;

		ready &= MPU_MAILBOX_DB_RDY_MASK;
S
Sathya Perla 已提交
445 446 447
		if (ready)
			break;

448
		if (msecs > 4000) {
449 450
			dev_err(&adapter->pdev->dev, "FW not responding\n");
			adapter->fw_timeout = true;
451
			be_detect_error(adapter);
S
Sathya Perla 已提交
452 453 454
			return -1;
		}

455
		msleep(1);
456
		msecs++;
S
Sathya Perla 已提交
457 458 459 460 461 462 463
	} while (true);

	return 0;
}

/*
 * Insert the mailbox address into the doorbell in two steps
464
 * Polls on the mbox doorbell till a command completion (or a timeout) occurs
S
Sathya Perla 已提交
465
 */
466
static int be_mbox_notify_wait(struct be_adapter *adapter)
S
Sathya Perla 已提交
467 468 469
{
	int status;
	u32 val = 0;
470 471
	void __iomem *db = adapter->db + MPU_MAILBOX_DB_OFFSET;
	struct be_dma_mem *mbox_mem = &adapter->mbox_mem;
S
Sathya Perla 已提交
472
	struct be_mcc_mailbox *mbox = mbox_mem->va;
473
	struct be_mcc_compl *compl = &mbox->compl;
S
Sathya Perla 已提交
474

475 476 477 478 479
	/* wait for ready to be set */
	status = be_mbox_db_ready_wait(adapter, db);
	if (status != 0)
		return status;

S
Sathya Perla 已提交
480 481 482 483 484 485
	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 */
486
	status = be_mbox_db_ready_wait(adapter, db);
S
Sathya Perla 已提交
487 488 489 490 491 492 493 494
	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);

495
	status = be_mbox_db_ready_wait(adapter, db);
S
Sathya Perla 已提交
496 497 498
	if (status != 0)
		return status;

499
	/* A cq entry has been made now */
500 501 502
	if (be_mcc_compl_is_new(compl)) {
		status = be_mcc_compl_process(adapter, &mbox->compl);
		be_mcc_compl_use(compl);
503 504 505
		if (status)
			return status;
	} else {
506
		dev_err(&adapter->pdev->dev, "invalid mailbox completion\n");
S
Sathya Perla 已提交
507 508
		return -1;
	}
509
	return 0;
S
Sathya Perla 已提交
510 511
}

512
static u16 be_POST_stage_get(struct be_adapter *adapter)
S
Sathya Perla 已提交
513
{
514 515
	u32 sem;

516 517
	if (BEx_chip(adapter))
		sem  = ioread32(adapter->csr + SLIPORT_SEMAPHORE_OFFSET_BEx);
S
Sathya Perla 已提交
518
	else
519 520 521 522
		pci_read_config_dword(adapter->pdev,
				      SLIPORT_SEMAPHORE_OFFSET_SH, &sem);

	return sem & POST_STAGE_MASK;
S
Sathya Perla 已提交
523 524
}

525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
int lancer_wait_ready(struct be_adapter *adapter)
{
#define SLIPORT_READY_TIMEOUT 30
	u32 sliport_status;
	int status = 0, i;

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

		msleep(1000);
	}

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

	return status;
}

545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
static bool lancer_provisioning_error(struct be_adapter *adapter)
{
	u32 sliport_status = 0, sliport_err1 = 0, sliport_err2 = 0;
	sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET);
	if (sliport_status & SLIPORT_STATUS_ERR_MASK) {
		sliport_err1 = ioread32(adapter->db +
					SLIPORT_ERROR1_OFFSET);
		sliport_err2 = ioread32(adapter->db +
					SLIPORT_ERROR2_OFFSET);

		if (sliport_err1 == SLIPORT_ERROR_NO_RESOURCE1 &&
		    sliport_err2 == SLIPORT_ERROR_NO_RESOURCE2)
			return true;
	}
	return false;
}

562 563 564 565
int lancer_test_and_set_rdy_state(struct be_adapter *adapter)
{
	int status;
	u32 sliport_status, err, reset_needed;
566 567 568 569
	bool resource_error;

	resource_error = lancer_provisioning_error(adapter);
	if (resource_error)
570
		return -EAGAIN;
571

572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
	status = lancer_wait_ready(adapter);
	if (!status) {
		sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET);
		err = sliport_status & SLIPORT_STATUS_ERR_MASK;
		reset_needed = sliport_status & SLIPORT_STATUS_RN_MASK;
		if (err && reset_needed) {
			iowrite32(SLI_PORT_CONTROL_IP_MASK,
				  adapter->db + SLIPORT_CONTROL_OFFSET);

			/* check adapter has corrected the error */
			status = lancer_wait_ready(adapter);
			sliport_status = ioread32(adapter->db +
						  SLIPORT_STATUS_OFFSET);
			sliport_status &= (SLIPORT_STATUS_ERR_MASK |
						SLIPORT_STATUS_RN_MASK);
			if (status || sliport_status)
				status = -1;
		} else if (err || reset_needed) {
			status = -1;
		}
	}
593 594 595 596 597
	/* Stop error recovery if error is not recoverable.
	 * No resource error is temporary errors and will go away
	 * when PF provisions resources.
	 */
	resource_error = lancer_provisioning_error(adapter);
598 599
	if (resource_error)
		status = -EAGAIN;
600

601 602 603 604
	return status;
}

int be_fw_wait_ready(struct be_adapter *adapter)
S
Sathya Perla 已提交
605
{
606 607
	u16 stage;
	int status, timeout = 0;
608
	struct device *dev = &adapter->pdev->dev;
S
Sathya Perla 已提交
609

610 611 612 613 614
	if (lancer_chip(adapter)) {
		status = lancer_wait_ready(adapter);
		return status;
	}

615
	do {
616
		stage = be_POST_stage_get(adapter);
G
Gavin Shan 已提交
617
		if (stage == POST_STAGE_ARMFW_RDY)
618
			return 0;
G
Gavin Shan 已提交
619 620 621 622 623 624

		dev_info(dev, "Waiting for POST, %ds elapsed\n",
			 timeout);
		if (msleep_interruptible(2000)) {
			dev_err(dev, "Waiting for POST aborted\n");
			return -EINTR;
625
		}
G
Gavin Shan 已提交
626
		timeout += 2;
627
	} while (timeout < 60);
S
Sathya Perla 已提交
628

629
	dev_err(dev, "POST timeout; stage=0x%x\n", stage);
630
	return -1;
S
Sathya Perla 已提交
631 632 633 634 635 636 637 638
}


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

639 640 641 642 643 644
static inline void fill_wrb_tags(struct be_mcc_wrb *wrb,
				 unsigned long addr)
{
	wrb->tag0 = addr & 0xFFFFFFFF;
	wrb->tag1 = upper_32_bits(addr);
}
S
Sathya Perla 已提交
645 646

/* Don't touch the hdr after it's prepared */
S
Somnath Kotur 已提交
647 648 649 650
/* mem will be NULL for embedded commands */
static void be_wrb_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr,
				u8 subsystem, u8 opcode, int cmd_len,
				struct be_mcc_wrb *wrb, struct be_dma_mem *mem)
S
Sathya Perla 已提交
651
{
S
Somnath Kotur 已提交
652 653
	struct be_sge *sge;

S
Sathya Perla 已提交
654 655 656
	req_hdr->opcode = opcode;
	req_hdr->subsystem = subsystem;
	req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr));
657
	req_hdr->version = 0;
658
	fill_wrb_tags(wrb, (ulong) req_hdr);
S
Somnath Kotur 已提交
659 660 661 662 663 664 665 666 667 668 669
	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 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
}

static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages,
			struct be_dma_mem *mem)
{
	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;
	}
}

685
static inline struct be_mcc_wrb *wrb_from_mbox(struct be_adapter *adapter)
S
Sathya Perla 已提交
686
{
687 688 689 690 691
	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 已提交
692 693
}

694
static struct be_mcc_wrb *wrb_from_mccq(struct be_adapter *adapter)
695
{
696 697 698
	struct be_queue_info *mccq = &adapter->mcc_obj.q;
	struct be_mcc_wrb *wrb;

699 700 701
	if (!mccq->created)
		return NULL;

702
	if (atomic_read(&mccq->used) >= mccq->len)
703 704
		return NULL;

705 706 707 708
	wrb = queue_head_node(mccq);
	queue_head_inc(mccq);
	atomic_inc(&mccq->used);
	memset(wrb, 0, sizeof(*wrb));
709 710 711
	return wrb;
}

712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
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;
}

784 785 786 787 788 789 790 791
/* 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;

792 793 794
	if (lancer_chip(adapter))
		return 0;

795 796
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
797 798

	wrb = (u8 *)wrb_from_mbox(adapter);
S
Sathya Perla 已提交
799 800 801 802 803 804 805 806
	*wrb++ = 0xFF;
	*wrb++ = 0x12;
	*wrb++ = 0x34;
	*wrb++ = 0xFF;
	*wrb++ = 0xFF;
	*wrb++ = 0x56;
	*wrb++ = 0x78;
	*wrb = 0xFF;
807 808 809

	status = be_mbox_notify_wait(adapter);

810
	mutex_unlock(&adapter->mbox_lock);
811 812 813 814 815 816 817 818 819 820 821
	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;

822 823 824
	if (lancer_chip(adapter))
		return 0;

825 826
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
827 828 829 830 831 832 833 834 835 836 837 838 839

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

840
	mutex_unlock(&adapter->mbox_lock);
841 842
	return status;
}
843

S
Sathya Perla 已提交
844
int be_cmd_eq_create(struct be_adapter *adapter, struct be_eq_obj *eqo)
S
Sathya Perla 已提交
845
{
846 847
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_eq_create *req;
S
Sathya Perla 已提交
848 849
	struct be_dma_mem *q_mem = &eqo->q.dma_mem;
	int status, ver = 0;
S
Sathya Perla 已提交
850

851 852
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
853 854 855

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

S
Somnath Kotur 已提交
857 858
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_EQ_CREATE, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
859

S
Sathya Perla 已提交
860 861 862 863 864
	/* 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 已提交
865 866 867 868 869 870
	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 已提交
871
		      __ilog2_u32(eqo->q.len / 256));
S
Sathya Perla 已提交
872 873 874 875
	be_dws_cpu_to_le(req->context, sizeof(req->context));

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

876
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
877
	if (!status) {
878
		struct be_cmd_resp_eq_create *resp = embedded_payload(wrb);
S
Sathya Perla 已提交
879 880 881 882
		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 已提交
883
	}
884

885
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
886 887 888
	return status;
}

889
/* Use MCC */
890
int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
891
			  bool permanent, u32 if_handle, u32 pmac_id)
S
Sathya Perla 已提交
892
{
893 894
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_mac_query *req;
S
Sathya Perla 已提交
895 896
	int status;

897
	spin_lock_bh(&adapter->mcc_lock);
898

899 900 901 902 903
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
904
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
905

S
Somnath Kotur 已提交
906 907
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_MAC_QUERY, sizeof(*req), wrb, NULL);
908
	req->type = MAC_ADDRESS_TYPE_NETWORK;
S
Sathya Perla 已提交
909 910 911
	if (permanent) {
		req->permanent = 1;
	} else {
912
		req->if_id = cpu_to_le16((u16) if_handle);
913
		req->pmac_id = cpu_to_le32(pmac_id);
S
Sathya Perla 已提交
914 915 916
		req->permanent = 0;
	}

917
	status = be_mcc_notify_wait(adapter);
918 919
	if (!status) {
		struct be_cmd_resp_mac_query *resp = embedded_payload(wrb);
S
Sathya Perla 已提交
920
		memcpy(mac_addr, resp->mac.addr, ETH_ALEN);
921
	}
S
Sathya Perla 已提交
922

923 924
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
925 926 927
	return status;
}

928
/* Uses synchronous MCCQ */
929
int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
930
		u32 if_id, u32 *pmac_id, u32 domain)
S
Sathya Perla 已提交
931
{
932 933
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_pmac_add *req;
S
Sathya Perla 已提交
934 935
	int status;

936 937 938
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
939 940 941 942
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
943
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
944

S
Somnath Kotur 已提交
945 946
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_PMAC_ADD, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
947

948
	req->hdr.domain = domain;
S
Sathya Perla 已提交
949 950 951
	req->if_id = cpu_to_le32(if_id);
	memcpy(req->mac_address, mac_addr, ETH_ALEN);

952
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
953 954 955 956 957
	if (!status) {
		struct be_cmd_resp_pmac_add *resp = embedded_payload(wrb);
		*pmac_id = le32_to_cpu(resp->pmac_id);
	}

958
err:
959
	spin_unlock_bh(&adapter->mcc_lock);
960 961 962 963

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

S
Sathya Perla 已提交
964 965 966
	return status;
}

967
/* Uses synchronous MCCQ */
968
int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, int pmac_id, u32 dom)
S
Sathya Perla 已提交
969
{
970 971
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_pmac_del *req;
S
Sathya Perla 已提交
972 973
	int status;

974 975 976
	if (pmac_id == -1)
		return 0;

977 978 979
	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
986 987
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_PMAC_DEL, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
988

989
	req->hdr.domain = dom;
S
Sathya Perla 已提交
990 991 992
	req->if_id = cpu_to_le32(if_id);
	req->pmac_id = cpu_to_le32(pmac_id);

993 994
	status = be_mcc_notify_wait(adapter);

995
err:
996
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
997 998 999
	return status;
}

1000
/* Uses Mbox */
S
Sathya Perla 已提交
1001 1002
int be_cmd_cq_create(struct be_adapter *adapter, struct be_queue_info *cq,
		struct be_queue_info *eq, bool no_delay, int coalesce_wm)
S
Sathya Perla 已提交
1003
{
1004 1005
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_cq_create *req;
S
Sathya Perla 已提交
1006
	struct be_dma_mem *q_mem = &cq->dma_mem;
1007
	void *ctxt;
S
Sathya Perla 已提交
1008 1009
	int status;

1010 1011
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
1012 1013 1014 1015

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

S
Somnath Kotur 已提交
1017 1018
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_CQ_CREATE, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1019 1020

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

	if (BEx_chip(adapter)) {
1023 1024 1025 1026 1027 1028 1029 1030 1031
		AMAP_SET_BITS(struct amap_cq_context_be, coalescwm, ctxt,
								coalesce_wm);
		AMAP_SET_BITS(struct amap_cq_context_be, nodelay,
								ctxt, no_delay);
		AMAP_SET_BITS(struct amap_cq_context_be, count, ctxt,
						__ilog2_u32(cq->len/256));
		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);
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
	} else {
		req->hdr.version = 2;
		req->page_size = 1; /* 1 for 4K */
		AMAP_SET_BITS(struct amap_cq_context_v2, nodelay, ctxt,
								no_delay);
		AMAP_SET_BITS(struct amap_cq_context_v2, count, ctxt,
						__ilog2_u32(cq->len/256));
		AMAP_SET_BITS(struct amap_cq_context_v2, valid, ctxt, 1);
		AMAP_SET_BITS(struct amap_cq_context_v2, eventable,
								ctxt, 1);
		AMAP_SET_BITS(struct amap_cq_context_v2, eqid,
								ctxt, eq->id);
1044
	}
S
Sathya Perla 已提交
1045 1046 1047 1048 1049

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

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

1050
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
1051
	if (!status) {
1052
		struct be_cmd_resp_cq_create *resp = embedded_payload(wrb);
S
Sathya Perla 已提交
1053 1054 1055
		cq->id = le16_to_cpu(resp->cq_id);
		cq->created = true;
	}
1056

1057
	mutex_unlock(&adapter->mbox_lock);
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069

	return status;
}

static u32 be_encoded_q_len(int q_len)
{
	u32 len_encoded = fls(q_len); /* log2(len) + 1 */
	if (len_encoded == 16)
		len_encoded = 0;
	return len_encoded;
}

J
Jingoo Han 已提交
1070 1071 1072
static int be_cmd_mccq_ext_create(struct be_adapter *adapter,
				struct be_queue_info *mccq,
				struct be_queue_info *cq)
1073
{
1074
	struct be_mcc_wrb *wrb;
1075
	struct be_cmd_req_mcc_ext_create *req;
1076
	struct be_dma_mem *q_mem = &mccq->dma_mem;
1077
	void *ctxt;
1078 1079
	int status;

1080 1081
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
1082 1083 1084 1085

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

S
Somnath Kotur 已提交
1087 1088
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			OPCODE_COMMON_MCC_CREATE_EXT, sizeof(*req), wrb, NULL);
1089

1090
	req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size));
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
	if (lancer_chip(adapter)) {
		req->hdr.version = 1;
		req->cq_id = cpu_to_le16(cq->id);

		AMAP_SET_BITS(struct amap_mcc_context_lancer, ring_size, ctxt,
						be_encoded_q_len(mccq->len));
		AMAP_SET_BITS(struct amap_mcc_context_lancer, valid, ctxt, 1);
		AMAP_SET_BITS(struct amap_mcc_context_lancer, async_cq_id,
								ctxt, cq->id);
		AMAP_SET_BITS(struct amap_mcc_context_lancer, async_cq_valid,
								 ctxt, 1);

	} else {
		AMAP_SET_BITS(struct amap_mcc_context_be, valid, ctxt, 1);
		AMAP_SET_BITS(struct amap_mcc_context_be, ring_size, ctxt,
						be_encoded_q_len(mccq->len));
		AMAP_SET_BITS(struct amap_mcc_context_be, cq_id, ctxt, cq->id);
	}
1109

1110
	/* Subscribe to Link State and Group 5 Events(bits 1 and 5 set) */
1111
	req->async_event_bitmap[0] = cpu_to_le32(0x00000022);
1112
	req->async_event_bitmap[0] |= cpu_to_le32(1 << ASYNC_EVENT_CODE_QNQ);
1113 1114 1115 1116
	be_dws_cpu_to_le(ctxt, sizeof(req->context));

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

1117
	status = be_mbox_notify_wait(adapter);
1118 1119 1120 1121 1122
	if (!status) {
		struct be_cmd_resp_mcc_create *resp = embedded_payload(wrb);
		mccq->id = le16_to_cpu(resp->id);
		mccq->created = true;
	}
1123
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
1124 1125 1126 1127

	return status;
}

J
Jingoo Han 已提交
1128 1129 1130
static int be_cmd_mccq_org_create(struct be_adapter *adapter,
				struct be_queue_info *mccq,
				struct be_queue_info *cq)
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
{
	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 已提交
1145 1146
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			OPCODE_COMMON_MCC_CREATE, sizeof(*req), wrb, NULL);
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185

	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,
			be_encoded_q_len(mccq->len));
	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);
		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,
			struct be_queue_info *mccq,
			struct be_queue_info *cq)
{
	int status;

	status = be_cmd_mccq_ext_create(adapter, mccq, cq);
	if (status && !lancer_chip(adapter)) {
		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 已提交
1186
int be_cmd_txq_create(struct be_adapter *adapter, struct be_tx_obj *txo)
S
Sathya Perla 已提交
1187
{
1188
	struct be_mcc_wrb wrb = {0};
1189
	struct be_cmd_req_eth_tx_create *req;
V
Vasundhara Volam 已提交
1190 1191
	struct be_queue_info *txq = &txo->q;
	struct be_queue_info *cq = &txo->cq;
S
Sathya Perla 已提交
1192
	struct be_dma_mem *q_mem = &txq->dma_mem;
V
Vasundhara Volam 已提交
1193
	int status, ver = 0;
S
Sathya Perla 已提交
1194

1195
	req = embedded_payload(&wrb);
S
Somnath Kotur 已提交
1196
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
1197
				OPCODE_ETH_TX_CREATE, sizeof(*req), &wrb, NULL);
S
Sathya Perla 已提交
1198

1199 1200
	if (lancer_chip(adapter)) {
		req->hdr.version = 1;
V
Vasundhara Volam 已提交
1201 1202 1203 1204 1205
	} 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;
1206 1207
	}

1208 1209
	if (req->hdr.version > 0)
		req->if_id = cpu_to_le16(adapter->if_handle);
S
Sathya Perla 已提交
1210 1211 1212
	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 已提交
1213 1214
	req->cq_id = cpu_to_le16(cq->id);
	req->queue_size = be_encoded_q_len(txq->len);
S
Sathya Perla 已提交
1215
	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem);
V
Vasundhara Volam 已提交
1216 1217
	ver = req->hdr.version;

1218
	status = be_cmd_notify_wait(adapter, &wrb);
S
Sathya Perla 已提交
1219
	if (!status) {
1220
		struct be_cmd_resp_eth_tx_create *resp = embedded_payload(&wrb);
S
Sathya Perla 已提交
1221
		txq->id = le16_to_cpu(resp->cid);
V
Vasundhara Volam 已提交
1222 1223 1224 1225
		if (ver == 2)
			txo->db_offset = le32_to_cpu(resp->db_offset);
		else
			txo->db_offset = DB_TXULP1_OFFSET;
S
Sathya Perla 已提交
1226 1227
		txq->created = true;
	}
1228

S
Sathya Perla 已提交
1229 1230 1231
	return status;
}

1232
/* Uses MCC */
1233
int be_cmd_rxq_create(struct be_adapter *adapter,
S
Sathya Perla 已提交
1234
		struct be_queue_info *rxq, u16 cq_id, u16 frag_size,
S
Sathya Perla 已提交
1235
		u32 if_id, u32 rss, u8 *rss_id)
S
Sathya Perla 已提交
1236
{
1237 1238
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_eth_rx_create *req;
S
Sathya Perla 已提交
1239 1240 1241
	struct be_dma_mem *q_mem = &rxq->dma_mem;
	int status;

1242
	spin_lock_bh(&adapter->mcc_lock);
1243

1244 1245 1246 1247 1248
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1249
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1250

S
Somnath Kotur 已提交
1251 1252
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
				OPCODE_ETH_RX_CREATE, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1253 1254 1255 1256 1257 1258

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

1262
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1263 1264 1265 1266
	if (!status) {
		struct be_cmd_resp_eth_rx_create *resp = embedded_payload(wrb);
		rxq->id = le16_to_cpu(resp->id);
		rxq->created = true;
1267
		*rss_id = resp->rss_id;
S
Sathya Perla 已提交
1268
	}
1269

1270 1271
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1272 1273 1274
	return status;
}

1275 1276 1277
/* Generic destroyer function for all types of queues
 * Uses Mbox
 */
1278
int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
S
Sathya Perla 已提交
1279 1280
		int queue_type)
{
1281 1282
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_q_destroy *req;
S
Sathya Perla 已提交
1283 1284 1285
	u8 subsys = 0, opcode = 0;
	int status;

1286 1287
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
S
Sathya Perla 已提交
1288

1289 1290 1291
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);

S
Sathya Perla 已提交
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
	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;
1309 1310 1311 1312
	case QTYPE_MCCQ:
		subsys = CMD_SUBSYSTEM_COMMON;
		opcode = OPCODE_COMMON_MCC_DESTROY;
		break;
S
Sathya Perla 已提交
1313
	default:
1314
		BUG();
S
Sathya Perla 已提交
1315
	}
1316

S
Somnath Kotur 已提交
1317 1318
	be_wrb_cmd_hdr_prepare(&req->hdr, subsys, opcode, sizeof(*req), wrb,
				NULL);
S
Sathya Perla 已提交
1319 1320
	req->id = cpu_to_le16(q->id);

1321
	status = be_mbox_notify_wait(adapter);
1322
	q->created = false;
1323

1324
	mutex_unlock(&adapter->mbox_lock);
1325 1326
	return status;
}
S
Sathya Perla 已提交
1327

1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
/* 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 已提交
1344 1345
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
			OPCODE_ETH_RX_DESTROY, sizeof(*req), wrb, NULL);
1346 1347 1348
	req->id = cpu_to_le16(q->id);

	status = be_mcc_notify_wait(adapter);
1349
	q->created = false;
1350 1351 1352

err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1353 1354 1355
	return status;
}

1356
/* Create an rx filtering policy configuration on an i/f
1357
 * Will use MBOX only if MCCQ has not been created.
1358
 */
1359
int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags, u32 en_flags,
1360
		     u32 *if_handle, u32 domain)
S
Sathya Perla 已提交
1361
{
1362
	struct be_mcc_wrb wrb = {0};
1363
	struct be_cmd_req_if_create *req;
S
Sathya Perla 已提交
1364 1365
	int status;

1366
	req = embedded_payload(&wrb);
S
Somnath Kotur 已提交
1367
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1368
		OPCODE_COMMON_NTWK_INTERFACE_CREATE, sizeof(*req), &wrb, NULL);
1369
	req->hdr.domain = domain;
1370 1371
	req->capability_flags = cpu_to_le32(cap_flags);
	req->enable_flags = cpu_to_le32(en_flags);
1372
	req->pmac_invalid = true;
S
Sathya Perla 已提交
1373

1374
	status = be_cmd_notify_wait(adapter, &wrb);
S
Sathya Perla 已提交
1375
	if (!status) {
1376
		struct be_cmd_resp_if_create *resp = embedded_payload(&wrb);
S
Sathya Perla 已提交
1377
		*if_handle = le32_to_cpu(resp->interface_id);
S
Sathya Perla 已提交
1378 1379 1380 1381

		/* Hack to retrieve VF's pmac-id on BE3 */
		if (BE3_chip(adapter) && !be_physfn(adapter))
			adapter->pmac_id[0] = le32_to_cpu(resp->pmac_id);
S
Sathya Perla 已提交
1382 1383 1384 1385
	}
	return status;
}

1386
/* Uses MCCQ */
1387
int be_cmd_if_destroy(struct be_adapter *adapter, int interface_id, u32 domain)
S
Sathya Perla 已提交
1388
{
1389 1390
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_if_destroy *req;
S
Sathya Perla 已提交
1391 1392
	int status;

1393
	if (interface_id == -1)
1394
		return 0;
1395

1396 1397 1398 1399 1400 1401 1402
	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
1405 1406
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_INTERFACE_DESTROY, sizeof(*req), wrb, NULL);
1407
	req->hdr.domain = domain;
S
Sathya Perla 已提交
1408
	req->interface_id = cpu_to_le32(interface_id);
1409

1410 1411 1412
	status = be_mcc_notify_wait(adapter);
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1413 1414 1415 1416 1417
	return status;
}

/* Get stats is a non embedded command: the request is not embedded inside
 * WRB but is a separate dma memory block
1418
 * Uses asynchronous MCC
S
Sathya Perla 已提交
1419
 */
1420
int be_cmd_get_stats(struct be_adapter *adapter, struct be_dma_mem *nonemb_cmd)
S
Sathya Perla 已提交
1421
{
1422
	struct be_mcc_wrb *wrb;
1423
	struct be_cmd_req_hdr *hdr;
1424
	int status = 0;
S
Sathya Perla 已提交
1425

1426
	spin_lock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1427

1428
	wrb = wrb_from_mccq(adapter);
1429 1430 1431 1432
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1433
	hdr = nonemb_cmd->va;
S
Sathya Perla 已提交
1434

S
Somnath Kotur 已提交
1435 1436
	be_wrb_cmd_hdr_prepare(hdr, CMD_SUBSYSTEM_ETH,
		OPCODE_ETH_GET_STATISTICS, nonemb_cmd->size, wrb, nonemb_cmd);
1437

1438 1439
	/* version 1 of the cmd is not supported only by BE2 */
	if (!BE2_chip(adapter))
1440 1441
		hdr->version = 1;

1442
	be_mcc_notify(adapter);
A
Ajit Khaparde 已提交
1443
	adapter->stats_cmd_sent = true;
S
Sathya Perla 已提交
1444

1445
err:
1446
	spin_unlock_bh(&adapter->mcc_lock);
1447
	return status;
S
Sathya Perla 已提交
1448 1449
}

S
Selvin Xavier 已提交
1450 1451 1452 1453 1454 1455 1456 1457 1458
/* Lancer Stats */
int lancer_cmd_get_pport_stats(struct be_adapter *adapter,
				struct be_dma_mem *nonemb_cmd)
{

	struct be_mcc_wrb *wrb;
	struct lancer_cmd_req_pport_stats *req;
	int status = 0;

1459 1460 1461 1462
	if (!be_cmd_allowed(adapter, OPCODE_ETH_GET_PPORT_STATS,
			    CMD_SUBSYSTEM_ETH))
		return -EPERM;

S
Selvin Xavier 已提交
1463 1464 1465 1466 1467 1468 1469 1470 1471
	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
1472 1473 1474
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
			OPCODE_ETH_GET_PPORT_STATS, nonemb_cmd->size, wrb,
			nonemb_cmd);
S
Selvin Xavier 已提交
1475

1476
	req->cmd_params.params.pport_num = cpu_to_le16(adapter->hba_port_num);
S
Selvin Xavier 已提交
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
	req->cmd_params.params.reset_stats = 0;

	be_mcc_notify(adapter);
	adapter->stats_cmd_sent = true;

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

1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
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;
1500 1501 1502 1503 1504 1505
	case PHY_LINK_SPEED_20GBPS:
		return 20000;
	case PHY_LINK_SPEED_25GBPS:
		return 25000;
	case PHY_LINK_SPEED_40GBPS:
		return 40000;
1506 1507 1508 1509 1510 1511 1512 1513 1514
	}
	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 已提交
1515
{
1516 1517
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_link_status *req;
S
Sathya Perla 已提交
1518 1519
	int status;

1520 1521
	spin_lock_bh(&adapter->mcc_lock);

1522 1523 1524
	if (link_status)
		*link_status = LINK_DOWN;

1525
	wrb = wrb_from_mccq(adapter);
1526 1527 1528 1529
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1530
	req = embedded_payload(wrb);
1531

1532 1533 1534
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_LINK_STATUS_QUERY, sizeof(*req), wrb, NULL);

1535 1536
	/* version 1 of the cmd is not supported only by BE2 */
	if (!BE2_chip(adapter))
1537 1538
		req->hdr.version = 1;

1539
	req->hdr.domain = dom;
S
Sathya Perla 已提交
1540

1541
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1542 1543
	if (!status) {
		struct be_cmd_resp_link_status *resp = embedded_payload(wrb);
1544 1545 1546 1547 1548 1549 1550
		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;
1551
		}
1552 1553
		if (link_status)
			*link_status = resp->logical_link_status;
S
Sathya Perla 已提交
1554 1555
	}

1556
err:
1557
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1558 1559 1560
	return status;
}

1561 1562 1563 1564 1565
/* 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;
1566
	int status = 0;
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576

	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
1577 1578 1579
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES, sizeof(*req),
		wrb, NULL);
1580

1581
	be_mcc_notify(adapter);
1582 1583 1584 1585 1586 1587

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

1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603
/* 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 已提交
1604 1605
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_MANAGE_FAT, sizeof(*req), wrb, NULL);
1606 1607 1608 1609 1610
	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);
		if (log_size && resp->log_size)
1611 1612
			*log_size = le32_to_cpu(resp->log_size) -
					sizeof(u32);
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
	}
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

void be_cmd_get_regs(struct be_adapter *adapter, u32 buf_len, void *buf)
{
	struct be_dma_mem get_fat_cmd;
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_fat *req;
1624 1625
	u32 offset = 0, total_size, buf_size,
				log_offset = sizeof(u32), payload_len;
1626 1627 1628 1629 1630 1631 1632
	int status;

	if (buf_len == 0)
		return;

	total_size = buf_len;

1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
	get_fat_cmd.size = sizeof(struct be_cmd_req_get_fat) + 60*1024;
	get_fat_cmd.va = pci_alloc_consistent(adapter->pdev,
			get_fat_cmd.size,
			&get_fat_cmd.dma);
	if (!get_fat_cmd.va) {
		status = -ENOMEM;
		dev_err(&adapter->pdev->dev,
		"Memory allocation failure while retrieving FAT data\n");
		return;
	}

1644 1645 1646 1647 1648 1649
	spin_lock_bh(&adapter->mcc_lock);

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

1650 1651 1652
		wrb = wrb_from_mccq(adapter);
		if (!wrb) {
			status = -EBUSY;
1653 1654 1655 1656
			goto err;
		}
		req = get_fat_cmd.va;

1657
		payload_len = sizeof(struct be_cmd_req_get_fat) + buf_size;
S
Somnath Kotur 已提交
1658 1659 1660
		be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
				OPCODE_COMMON_MANAGE_FAT, payload_len, wrb,
				&get_fat_cmd);
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671

		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;
			memcpy(buf + offset,
				resp->data_buffer,
1672
				le32_to_cpu(resp->read_log_length));
1673
		} else {
1674
			dev_err(&adapter->pdev->dev, "FAT Table Retrieve error\n");
1675 1676
			goto err;
		}
1677 1678 1679 1680
		offset += buf_size;
		log_offset += buf_size;
	}
err:
1681 1682 1683
	pci_free_consistent(adapter->pdev, get_fat_cmd.size,
			get_fat_cmd.va,
			get_fat_cmd.dma);
1684 1685 1686
	spin_unlock_bh(&adapter->mcc_lock);
}

1687 1688 1689
/* Uses synchronous mcc */
int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver,
			char *fw_on_flash)
S
Sathya Perla 已提交
1690
{
1691 1692
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_fw_version *req;
S
Sathya Perla 已提交
1693 1694
	int status;

1695
	spin_lock_bh(&adapter->mcc_lock);
1696

1697 1698 1699 1700 1701
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
S
Sathya Perla 已提交
1702

1703
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1704

S
Somnath Kotur 已提交
1705 1706
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_GET_FW_VERSION, sizeof(*req), wrb, NULL);
1707
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1708 1709
	if (!status) {
		struct be_cmd_resp_get_fw_version *resp = embedded_payload(wrb);
1710 1711 1712
		strcpy(fw_ver, resp->firmware_version_string);
		if (fw_on_flash)
			strcpy(fw_on_flash, resp->fw_on_flash_version_string);
S
Sathya Perla 已提交
1713
	}
1714 1715
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1716 1717 1718
	return status;
}

1719 1720 1721
/* set the EQ delay interval of an EQ to specified value
 * Uses async mcc
 */
1722 1723
int be_cmd_modify_eqd(struct be_adapter *adapter, struct be_set_eqd *set_eqd,
		      int num)
S
Sathya Perla 已提交
1724
{
1725 1726
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_modify_eq_delay *req;
1727
	int status = 0, i;
S
Sathya Perla 已提交
1728

1729 1730 1731
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
1732 1733 1734 1735
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1736
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1737

S
Somnath Kotur 已提交
1738 1739
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_MODIFY_EQ_DELAY, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1740

1741 1742 1743 1744 1745 1746 1747
	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 已提交
1748

1749
	be_mcc_notify(adapter);
1750
err:
1751
	spin_unlock_bh(&adapter->mcc_lock);
1752
	return status;
S
Sathya Perla 已提交
1753 1754
}

1755
/* Uses sycnhronous mcc */
1756
int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id, u16 *vtag_array,
S
Sathya Perla 已提交
1757 1758
			u32 num, bool untagged, bool promiscuous)
{
1759 1760
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_vlan_config *req;
S
Sathya Perla 已提交
1761 1762
	int status;

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

	wrb = wrb_from_mccq(adapter);
1766 1767 1768 1769
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1770
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1771

S
Somnath Kotur 已提交
1772 1773
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_VLAN_CONFIG, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1774 1775 1776 1777 1778 1779 1780 1781 1782 1783

	req->interface_id = if_id;
	req->promiscuous = promiscuous;
	req->untagged = untagged;
	req->num_vlan = num;
	if (!promiscuous) {
		memcpy(req->normal_vlan, vtag_array,
			req->num_vlan * sizeof(vtag_array[0]));
	}

1784
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1785

1786
err:
1787
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1788 1789 1790
	return status;
}

1791
int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 value)
S
Sathya Perla 已提交
1792
{
1793
	struct be_mcc_wrb *wrb;
1794 1795
	struct be_dma_mem *mem = &adapter->rx_filter;
	struct be_cmd_req_rx_filter *req = mem->va;
1796
	int status;
S
Sathya Perla 已提交
1797

1798
	spin_lock_bh(&adapter->mcc_lock);
1799

1800
	wrb = wrb_from_mccq(adapter);
1801 1802 1803 1804
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1805
	memset(req, 0, sizeof(*req));
S
Somnath Kotur 已提交
1806 1807 1808
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
				OPCODE_COMMON_NTWK_RX_FILTER, sizeof(*req),
				wrb, mem);
S
Sathya Perla 已提交
1809

1810 1811 1812
	req->if_id = cpu_to_le32(adapter->if_handle);
	if (flags & IFF_PROMISC) {
		req->if_flags_mask = cpu_to_le32(BE_IF_FLAGS_PROMISCUOUS |
1813 1814
					BE_IF_FLAGS_VLAN_PROMISCUOUS |
					BE_IF_FLAGS_MCAST_PROMISCUOUS);
1815 1816
		if (value == ON)
			req->if_flags = cpu_to_le32(BE_IF_FLAGS_PROMISCUOUS |
1817 1818
						BE_IF_FLAGS_VLAN_PROMISCUOUS |
						BE_IF_FLAGS_MCAST_PROMISCUOUS);
1819 1820
	} else if (flags & IFF_ALLMULTI) {
		req->if_flags_mask = req->if_flags =
1821
				cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS);
1822 1823 1824 1825 1826 1827
	} else if (flags & BE_FLAGS_VLAN_PROMISC) {
		req->if_flags_mask = cpu_to_le32(BE_IF_FLAGS_VLAN_PROMISCUOUS);

		if (value == ON)
			req->if_flags =
				cpu_to_le32(BE_IF_FLAGS_VLAN_PROMISCUOUS);
1828
	} else {
1829
		struct netdev_hw_addr *ha;
1830
		int i = 0;
1831

1832 1833
		req->if_flags_mask = req->if_flags =
				cpu_to_le32(BE_IF_FLAGS_MULTICAST);
1834 1835 1836 1837

		/* Reset mcast promisc mode if already set by setting mask
		 * and not setting flags field
		 */
1838 1839
		req->if_flags_mask |=
			cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS &
1840
				    be_if_cap_flags(adapter));
1841
		req->mcast_num = cpu_to_le32(netdev_mc_count(adapter->netdev));
1842 1843
		netdev_for_each_mc_addr(ha, adapter->netdev)
			memcpy(req->mcast_mac[i++].byte, ha->addr, ETH_ALEN);
S
Sathya Perla 已提交
1844 1845
	}

1846
	status = be_mcc_notify_wait(adapter);
1847
err:
1848
	spin_unlock_bh(&adapter->mcc_lock);
1849
	return status;
S
Sathya Perla 已提交
1850 1851
}

1852
/* Uses synchrounous mcc */
1853
int be_cmd_set_flow_control(struct be_adapter *adapter, u32 tx_fc, u32 rx_fc)
S
Sathya Perla 已提交
1854
{
1855 1856
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_flow_control *req;
S
Sathya Perla 已提交
1857 1858
	int status;

1859 1860 1861 1862
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_SET_FLOW_CONTROL,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

1863
	spin_lock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1864

1865
	wrb = wrb_from_mccq(adapter);
1866 1867 1868 1869
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1870
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1871

S
Somnath Kotur 已提交
1872 1873
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_SET_FLOW_CONTROL, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1874 1875 1876 1877

	req->tx_flow_control = cpu_to_le16((u16)tx_fc);
	req->rx_flow_control = cpu_to_le16((u16)rx_fc);

1878
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1879

1880
err:
1881
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1882 1883 1884
	return status;
}

1885
/* Uses sycn mcc */
1886
int be_cmd_get_flow_control(struct be_adapter *adapter, u32 *tx_fc, u32 *rx_fc)
S
Sathya Perla 已提交
1887
{
1888 1889
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_flow_control *req;
S
Sathya Perla 已提交
1890 1891
	int status;

1892 1893 1894 1895
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_GET_FLOW_CONTROL,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

1896
	spin_lock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1897

1898
	wrb = wrb_from_mccq(adapter);
1899 1900 1901 1902
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1903
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1904

S
Somnath Kotur 已提交
1905 1906
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_GET_FLOW_CONTROL, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1907

1908
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1909 1910 1911 1912 1913 1914 1915
	if (!status) {
		struct be_cmd_resp_get_flow_control *resp =
						embedded_payload(wrb);
		*tx_fc = le16_to_cpu(resp->tx_flow_control);
		*rx_fc = le16_to_cpu(resp->rx_flow_control);
	}

1916
err:
1917
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1918 1919 1920
	return status;
}

1921
/* Uses mbox */
1922
int be_cmd_query_fw_cfg(struct be_adapter *adapter, u32 *port_num,
1923
			u32 *mode, u32 *caps, u16 *asic_rev)
S
Sathya Perla 已提交
1924
{
1925 1926
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_query_fw_cfg *req;
S
Sathya Perla 已提交
1927 1928
	int status;

1929 1930
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
S
Sathya Perla 已提交
1931

1932 1933
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1934

S
Somnath Kotur 已提交
1935 1936
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_QUERY_FIRMWARE_CONFIG, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1937

1938
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
1939 1940 1941
	if (!status) {
		struct be_cmd_resp_query_fw_cfg *resp = embedded_payload(wrb);
		*port_num = le32_to_cpu(resp->phys_port);
A
Ajit Khaparde 已提交
1942
		*mode = le32_to_cpu(resp->function_mode);
1943
		*caps = le32_to_cpu(resp->function_caps);
1944
		*asic_rev = le32_to_cpu(resp->asic_revision) & 0xFF;
S
Sathya Perla 已提交
1945 1946
	}

1947
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
1948 1949
	return status;
}
1950

1951
/* Uses mbox */
1952 1953
int be_cmd_reset_function(struct be_adapter *adapter)
{
1954 1955
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_hdr *req;
1956 1957
	int status;

1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971
	if (lancer_chip(adapter)) {
		status = lancer_wait_ready(adapter);
		if (!status) {
			iowrite32(SLI_PORT_CONTROL_IP_MASK,
				  adapter->db + SLIPORT_CONTROL_OFFSET);
			status = lancer_test_and_set_rdy_state(adapter);
		}
		if (status) {
			dev_err(&adapter->pdev->dev,
				"Adapter in non recoverable error\n");
		}
		return status;
	}

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

1975 1976
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
1977

S
Somnath Kotur 已提交
1978 1979
	be_wrb_cmd_hdr_prepare(req, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_FUNCTION_RESET, sizeof(*req), wrb, NULL);
1980

1981
	status = be_mbox_notify_wait(adapter);
1982

1983
	mutex_unlock(&adapter->mbox_lock);
1984 1985
	return status;
}
1986

1987 1988
int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
			u32 rss_hash_opts, u16 table_size)
1989 1990 1991
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_rss_config *req;
P
Padmanabh Ratnakar 已提交
1992 1993 1994
	u32 myhash[10] = {0x15d43fa5, 0x2534685a, 0x5f87693a, 0x5668494e,
			0x33cf6a53, 0x383334c6, 0x76ac4257, 0x59b242b2,
			0x3ea83c02, 0x4a110304};
1995 1996
	int status;

1997 1998
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
1999 2000 2001 2002

	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2003 2004
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
		OPCODE_ETH_RSS_CONFIG, sizeof(*req), wrb, NULL);
2005 2006

	req->if_id = cpu_to_le32(adapter->if_handle);
2007 2008
	req->enable_rss = cpu_to_le16(rss_hash_opts);
	req->cpu_table_size_log2 = cpu_to_le16(fls(table_size) - 1);
2009

2010
	if (lancer_chip(adapter) || skyhawk_chip(adapter))
2011 2012
		req->hdr.version = 1;

2013 2014 2015 2016 2017 2018
	memcpy(req->cpu_table, rsstable, table_size);
	memcpy(req->hash, myhash, sizeof(myhash));
	be_dws_cpu_to_le(req->hash, sizeof(req->hash));

	status = be_mbox_notify_wait(adapter);

2019
	mutex_unlock(&adapter->mbox_lock);
2020 2021 2022
	return status;
}

2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033
/* Uses sync mcc */
int be_cmd_set_beacon_state(struct be_adapter *adapter, u8 port_num,
			u8 bcn, u8 sts, u8 state)
{
	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);
2034 2035 2036 2037
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2038 2039
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2040 2041
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_ENABLE_DISABLE_BEACON, sizeof(*req), wrb, NULL);
2042 2043 2044 2045 2046 2047 2048 2049

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

	status = be_mcc_notify_wait(adapter);

2050
err:
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064
	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);
2065 2066 2067 2068
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2069 2070
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2071 2072
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_GET_BEACON_STATE, sizeof(*req), wrb, NULL);
2073 2074 2075 2076 2077 2078 2079 2080 2081 2082

	req->port_num = port_num;

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_beacon_state *resp =
						embedded_payload(wrb);
		*state = resp->beacon_state;
	}

2083
err:
2084 2085 2086 2087
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

2088
int lancer_cmd_write_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
2089 2090 2091
			    u32 data_size, u32 data_offset,
			    const char *obj_name, u32 *data_written,
			    u8 *change_status, u8 *addn_status)
2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
{
	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 已提交
2110
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2111
				OPCODE_COMMON_WRITE_OBJECT,
S
Somnath Kotur 已提交
2112 2113
				sizeof(struct lancer_cmd_req_write_object), wrb,
				NULL);
2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140

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

	if (data_size == 0)
		AMAP_SET_BITS(struct amap_lancer_write_obj_context,
				eof, ctxt, 1);
	else
		AMAP_SET_BITS(struct amap_lancer_write_obj_context,
				eof, ctxt, 0);

	be_dws_cpu_to_le(ctxt, sizeof(req->context));
	req->write_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 +
				sizeof(struct lancer_cmd_req_write_object))
				& 0xFFFFFFFF);
	req->addr_high = cpu_to_le32(upper_32_bits(cmd->dma +
				sizeof(struct lancer_cmd_req_write_object)));

	be_mcc_notify(adapter);
	spin_unlock_bh(&adapter->mcc_lock);

	if (!wait_for_completion_timeout(&adapter->flash_compl,
2141
					 msecs_to_jiffies(60000)))
2142 2143 2144 2145 2146
		status = -1;
	else
		status = adapter->flash_status;

	resp = embedded_payload(wrb);
2147
	if (!status) {
2148
		*data_written = le32_to_cpu(resp->actual_write_len);
2149 2150
		*change_status = resp->change_status;
	} else {
2151
		*addn_status = resp->additional_status;
2152
	}
2153 2154 2155 2156 2157 2158 2159 2160

	return status;

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

2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207
int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
		u32 data_size, u32 data_offset, const char *obj_name,
		u32 *data_read, u32 *eof, u8 *addn_status)
{
	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,
			OPCODE_COMMON_READ_OBJECT,
			sizeof(struct lancer_cmd_req_read_object), wrb,
			NULL);

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

2208 2209 2210
int be_cmd_write_flashrom(struct be_adapter *adapter, struct be_dma_mem *cmd,
			u32 flash_type, u32 flash_opcode, u32 buf_size)
{
2211
	struct be_mcc_wrb *wrb;
2212
	struct be_cmd_write_flashrom *req;
2213 2214
	int status;

2215
	spin_lock_bh(&adapter->mcc_lock);
2216
	adapter->flash_status = 0;
2217 2218

	wrb = wrb_from_mccq(adapter);
2219 2220
	if (!wrb) {
		status = -EBUSY;
D
Dan Carpenter 已提交
2221
		goto err_unlock;
2222 2223
	}
	req = cmd->va;
2224

S
Somnath Kotur 已提交
2225 2226
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_WRITE_FLASHROM, cmd->size, wrb, cmd);
2227 2228 2229 2230 2231

	req->params.op_type = cpu_to_le32(flash_type);
	req->params.op_code = cpu_to_le32(flash_opcode);
	req->params.data_buf_size = cpu_to_le32(buf_size);

2232 2233 2234 2235
	be_mcc_notify(adapter);
	spin_unlock_bh(&adapter->mcc_lock);

	if (!wait_for_completion_timeout(&adapter->flash_compl,
2236
			msecs_to_jiffies(40000)))
2237 2238 2239
		status = -1;
	else
		status = adapter->flash_status;
2240

D
Dan Carpenter 已提交
2241 2242 2243 2244
	return status;

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

2248 2249
int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
			 int offset)
2250 2251
{
	struct be_mcc_wrb *wrb;
2252
	struct be_cmd_read_flash_crc *req;
2253 2254 2255 2256 2257
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
2258 2259 2260 2261
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2262 2263
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2264
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2265 2266
			       OPCODE_COMMON_READ_FLASHROM, sizeof(*req),
			       wrb, NULL);
2267

2268
	req->params.op_type = cpu_to_le32(OPTYPE_REDBOOT);
2269
	req->params.op_code = cpu_to_le32(FLASHROM_OPER_REPORT);
2270 2271
	req->params.offset = cpu_to_le32(offset);
	req->params.data_buf_size = cpu_to_le32(0x4);
2272 2273 2274

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

2277
err:
2278 2279 2280
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2281

2282
int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297
				struct be_dma_mem *nonemb_cmd)
{
	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 已提交
2298 2299 2300
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
		OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG, sizeof(*req), wrb,
		nonemb_cmd);
2301 2302 2303 2304 2305 2306 2307 2308
	memcpy(req->magic_mac, mac, ETH_ALEN);

	status = be_mcc_notify_wait(adapter);

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

2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326
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 已提交
2327 2328 2329
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
			OPCODE_LOWLEVEL_SET_LOOPBACK_MODE, sizeof(*req), wrb,
			NULL);
2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341

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

2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358
int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num,
		u32 loopback_type, u32 pkt_size, u32 num_pkts, u64 pattern)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_loopback_test *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 已提交
2359 2360
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
			OPCODE_LOWLEVEL_LOOPBACK_TEST, sizeof(*req), wrb, NULL);
2361
	req->hdr.timeout = cpu_to_le32(4);
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396

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

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_loopback_test *resp = embedded_payload(wrb);
		status = le32_to_cpu(resp->status);
	}

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

int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern,
				u32 byte_cnt, struct be_dma_mem *cmd)
{
	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 已提交
2397 2398
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
			OPCODE_LOWLEVEL_HOST_DDR_DMA, cmd->size, wrb, cmd);
2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423

	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;
		resp = cmd->va;
		if ((memcmp(resp->rcv_buff, req->snd_buff, byte_cnt) != 0) ||
				resp->snd_err) {
			status = -1;
		}
	}

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

2425
int be_cmd_get_seeprom_data(struct be_adapter *adapter,
2426 2427 2428 2429 2430 2431 2432 2433 2434
				struct be_dma_mem *nonemb_cmd)
{
	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);
2435 2436 2437 2438
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2439 2440
	req = nonemb_cmd->va;

S
Somnath Kotur 已提交
2441 2442 2443
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			OPCODE_COMMON_SEEPROM_READ, sizeof(*req), wrb,
			nonemb_cmd);
2444 2445 2446

	status = be_mcc_notify_wait(adapter);

2447
err:
2448 2449 2450
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2451

A
Ajit Khaparde 已提交
2452
int be_cmd_get_phy_info(struct be_adapter *adapter)
2453 2454 2455
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_phy_info *req;
2456
	struct be_dma_mem cmd;
2457 2458
	int status;

2459 2460 2461 2462
	if (!be_cmd_allowed(adapter, OPCODE_COMMON_GET_PHY_DETAILS,
			    CMD_SUBSYSTEM_COMMON))
		return -EPERM;

2463 2464 2465 2466 2467 2468 2469
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2470 2471 2472 2473 2474 2475 2476 2477
	cmd.size = sizeof(struct be_cmd_req_get_phy_info);
	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size,
					&cmd.dma);
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory alloc failure\n");
		status = -ENOMEM;
		goto err;
	}
2478

2479
	req = cmd.va;
2480

S
Somnath Kotur 已提交
2481 2482 2483
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			OPCODE_COMMON_GET_PHY_DETAILS, sizeof(*req),
			wrb, &cmd);
2484 2485

	status = be_mcc_notify_wait(adapter);
2486 2487 2488
	if (!status) {
		struct be_phy_info *resp_phy_info =
				cmd.va + sizeof(struct be_cmd_req_hdr);
A
Ajit Khaparde 已提交
2489 2490
		adapter->phy.phy_type = le16_to_cpu(resp_phy_info->phy_type);
		adapter->phy.interface_type =
2491
			le16_to_cpu(resp_phy_info->interface_type);
A
Ajit Khaparde 已提交
2492 2493 2494 2495 2496 2497
		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);
2498 2499 2500 2501 2502 2503

		if (BE2_chip(adapter)) {
			adapter->phy.fixed_speeds_supported =
				BE_SUPPORTED_SPEED_10GBPS |
				BE_SUPPORTED_SPEED_1GBPS;
		}
2504 2505 2506
	}
	pci_free_consistent(adapter->pdev, cmd.size,
				cmd.va, cmd.dma);
2507 2508 2509 2510
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527

int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain)
{
	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 已提交
2528 2529
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			OPCODE_COMMON_SET_QOS, sizeof(*req), wrb, NULL);
2530 2531

	req->hdr.domain = domain;
2532 2533
	req->valid_bits = cpu_to_le32(BE_QOS_BITS_NIC);
	req->max_bps_nic = cpu_to_le32(bps);
2534 2535 2536 2537 2538 2539 2540

	status = be_mcc_notify_wait(adapter);

err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551

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 已提交
2552 2553 2554
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

2555 2556 2557 2558 2559 2560 2561
	memset(&attribs_cmd, 0, sizeof(struct be_dma_mem));
	attribs_cmd.size = sizeof(struct be_cmd_resp_cntl_attribs);
	attribs_cmd.va = pci_alloc_consistent(adapter->pdev, attribs_cmd.size,
						&attribs_cmd.dma);
	if (!attribs_cmd.va) {
		dev_err(&adapter->pdev->dev,
				"Memory allocation failure\n");
S
Suresh Reddy 已提交
2562 2563
		status = -ENOMEM;
		goto err;
2564 2565 2566 2567 2568 2569 2570 2571 2572
	}

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

S
Somnath Kotur 已提交
2573 2574 2575
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			 OPCODE_COMMON_GET_CNTL_ATTRIBUTES, payload_len, wrb,
			&attribs_cmd);
2576 2577 2578

	status = be_mbox_notify_wait(adapter);
	if (!status) {
2579
		attribs = attribs_cmd.va + sizeof(struct be_cmd_resp_hdr);
2580 2581 2582 2583 2584
		adapter->hba_port_num = attribs->hba_attribs.phy_port;
	}

err:
	mutex_unlock(&adapter->mbox_lock);
S
Suresh Reddy 已提交
2585 2586 2587
	if (attribs_cmd.va)
		pci_free_consistent(adapter->pdev, attribs_cmd.size,
				    attribs_cmd.va, attribs_cmd.dma);
2588 2589
	return status;
}
2590 2591

/* Uses mbox */
2592
int be_cmd_req_native_mode(struct be_adapter *adapter)
2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608
{
	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 已提交
2609 2610
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP, sizeof(*req), wrb, NULL);
2611 2612 2613 2614 2615 2616 2617 2618 2619 2620

	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);
		adapter->be3_native = le32_to_cpu(resp->cap_flags) &
					CAPABILITY_BE3_NATIVE_ERX_API;
S
Sathya Perla 已提交
2621 2622 2623
		if (!adapter->be3_native)
			dev_warn(&adapter->pdev->dev,
				 "adapter not in advanced mode\n");
2624 2625 2626 2627 2628
	}
err:
	mutex_unlock(&adapter->mbox_lock);
	return status;
}
2629

2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665
/* 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);
		*privilege = le32_to_cpu(resp->privilege_mask);
	}

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

2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697
/* 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;
}

2698 2699 2700 2701
/* 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
 */
2702
int be_cmd_get_mac_from_list(struct be_adapter *adapter, u8 *mac,
2703
			     bool *pmac_id_valid, u32 *pmac_id, u8 domain)
2704 2705 2706 2707 2708
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_mac_list *req;
	int status;
	int mac_count;
2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722
	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);
	get_mac_list_cmd.va = pci_alloc_consistent(adapter->pdev,
			get_mac_list_cmd.size,
			&get_mac_list_cmd.dma);

	if (!get_mac_list_cmd.va) {
		dev_err(&adapter->pdev->dev,
				"Memory allocation failure during GET_MAC_LIST\n");
		return -ENOMEM;
	}
2723 2724 2725 2726 2727 2728

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
2729
		goto out;
2730
	}
2731 2732

	req = get_mac_list_cmd.va;
2733 2734

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
2735 2736
			       OPCODE_COMMON_GET_MAC_LIST,
			       get_mac_list_cmd.size, wrb, &get_mac_list_cmd);
2737
	req->hdr.domain = domain;
2738
	req->mac_type = MAC_ADDRESS_TYPE_NETWORK;
2739 2740 2741 2742 2743 2744 2745
	if (*pmac_id_valid) {
		req->mac_id = cpu_to_le32(*pmac_id);
		req->iface_id = cpu_to_le16(adapter->if_handle);
		req->perm_override = 0;
	} else {
		req->perm_override = 1;
	}
2746 2747 2748 2749

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_mac_list *resp =
2750
						get_mac_list_cmd.va;
2751 2752 2753 2754 2755 2756 2757

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

2758 2759
		mac_count = resp->true_mac_count + resp->pseudo_mac_count;
		/* Mac list returned could contain one or more active mac_ids
2760 2761 2762
		 * or one or more true or pseudo permanant mac addresses.
		 * If an active mac_id is present, return first active mac_id
		 * found.
2763
		 */
2764
		for (i = 0; i < mac_count; i++) {
2765 2766 2767 2768 2769 2770 2771 2772 2773 2774
			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)) {
2775
				*pmac_id_valid = true;
2776 2777 2778
				mac_id = mac_entry->mac_addr_id.s_mac_id.mac_id;
				*pmac_id = le32_to_cpu(mac_id);
				goto out;
2779 2780
			}
		}
2781
		/* If no active mac_id found, return first mac addr */
2782
		*pmac_id_valid = false;
2783 2784
		memcpy(mac, resp->macaddr_list[0].mac_addr_id.macaddr,
								ETH_ALEN);
2785 2786
	}

2787
out:
2788
	spin_unlock_bh(&adapter->mcc_lock);
2789 2790
	pci_free_consistent(adapter->pdev, get_mac_list_cmd.size,
			get_mac_list_cmd.va, get_mac_list_cmd.dma);
2791 2792 2793
	return status;
}

2794 2795 2796 2797
int be_cmd_get_active_mac(struct be_adapter *adapter, u32 curr_pmac_id, u8 *mac)
{
	bool active = true;

2798
	if (BEx_chip(adapter))
2799 2800
		return be_cmd_mac_addr_query(adapter, mac, false,
					     adapter->if_handle, curr_pmac_id);
2801 2802 2803 2804
	else
		/* Fetch the MAC address using pmac_id */
		return be_cmd_get_mac_from_list(adapter, mac, &active,
						&curr_pmac_id, 0);
2805 2806
}

2807 2808 2809 2810 2811 2812 2813
int be_cmd_get_perm_mac(struct be_adapter *adapter, u8 *mac)
{
	int status;
	bool pmac_valid = false;

	memset(mac, 0, ETH_ALEN);

2814 2815 2816 2817 2818 2819 2820 2821
	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 {
2822 2823
		status = be_cmd_get_mac_from_list(adapter, mac, &pmac_valid,
						  NULL, 0);
2824 2825
	}

2826 2827 2828
	return status;
}

2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841
/* 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);
	cmd.va = dma_alloc_coherent(&adapter->pdev->dev, cmd.size,
			&cmd.dma, GFP_KERNEL);
2842
	if (!cmd.va)
2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870
		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_SET_MAC_LIST, sizeof(*req),
				wrb, &cmd);

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

2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890
/* 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,
					  &pmac_id, dom);
	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);
}

2891
int be_cmd_set_hsw_config(struct be_adapter *adapter, u16 pvid,
2892
			  u32 domain, u16 intf_id, u16 hsw_mode)
2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918
{
	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,
			OPCODE_COMMON_SET_HSW_CONFIG, sizeof(*req), wrb, NULL);

	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);
	}
2919 2920 2921 2922 2923 2924 2925
	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);
	}
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936

	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,
2937
			  u32 domain, u16 intf_id, u8 *mode)
2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959
{
	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,
			OPCODE_COMMON_GET_HSW_CONFIG, sizeof(*req), wrb, NULL);

	req->hdr.domain = domain;
2960 2961
	AMAP_SET_BITS(struct amap_get_hsw_req_context, interface_id,
		      ctxt, intf_id);
2962
	AMAP_SET_BITS(struct amap_get_hsw_req_context, pvid_valid, ctxt, 1);
2963 2964 2965 2966 2967 2968

	if (!BEx_chip(adapter)) {
		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);
	}
2969 2970 2971 2972 2973 2974 2975 2976 2977 2978
	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);
		be_dws_le_to_cpu(&resp->context,
						sizeof(resp->context));
		vid = AMAP_GET_BITS(struct amap_get_hsw_resp_context,
							pvid, &resp->context);
2979 2980 2981 2982 2983
		if (pvid)
			*pvid = le16_to_cpu(vid);
		if (mode)
			*mode = AMAP_GET_BITS(struct amap_get_hsw_resp_context,
					      port_fwd_type, &resp->context);
2984 2985 2986 2987 2988 2989 2990
	}

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

2991 2992 2993 2994 2995 2996 2997 2998
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;
	int status;
	int payload_len = sizeof(*req);
	struct be_dma_mem cmd;

2999 3000 3001 3002
	if (!be_cmd_allowed(adapter, OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG,
			    CMD_SUBSYSTEM_ETH))
		return -EPERM;

S
Suresh Reddy 已提交
3003 3004 3005
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

3006 3007 3008 3009 3010 3011 3012
	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_resp_acpi_wol_magic_config_v1);
	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size,
					       &cmd.dma);
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev,
				"Memory allocation failure\n");
S
Suresh Reddy 已提交
3013 3014
		status = -ENOMEM;
		goto err;
3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046
	}

	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,
			       payload_len, wrb, &cmd);

	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;
		resp = (struct be_cmd_resp_acpi_wol_magic_config_v1 *) cmd.va;

		/* the command could succeed misleadingly on old f/w
		 * which is not aware of the V1 version. fake an error. */
		if (resp->hdr.response_length < payload_len) {
			status = -1;
			goto err;
		}
		adapter->wol_cap = resp->wol_settings;
	}
err:
	mutex_unlock(&adapter->mbox_lock);
S
Suresh Reddy 已提交
3047 3048
	if (cmd.va)
		pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma);
3049
	return status;
3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105

}
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;
3106
}
3107

3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145
int be_cmd_query_port_name(struct be_adapter *adapter, u8 *port_name)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_port_name *req;
	int status;

	if (!lancer_chip(adapter)) {
		*port_name = adapter->hba_port_num + '0';
		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_GET_PORT_NAME, sizeof(*req), wrb,
			       NULL);
	req->hdr.version = 1;

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_port_name *resp = embedded_payload(wrb);
		*port_name = resp->port_name[adapter->hba_port_num];
	} else {
		*port_name = adapter->hba_port_num + '0';
	}
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

3146
static struct be_nic_res_desc *be_get_nic_desc(u8 *buf, u32 desc_count)
3147
{
3148
	struct be_res_desc_hdr *hdr = (struct be_res_desc_hdr *)buf;
3149 3150 3151
	int i;

	for (i = 0; i < desc_count; i++) {
3152 3153 3154
		if (hdr->desc_type == NIC_RESOURCE_DESC_TYPE_V0 ||
		    hdr->desc_type == NIC_RESOURCE_DESC_TYPE_V1)
			return (struct be_nic_res_desc *)hdr;
3155

3156 3157
		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0;
		hdr = (void *)hdr + hdr->desc_len;
3158
	}
3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175
	return NULL;
}

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;
		}
3176

3177 3178 3179
		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0;
		hdr = (void *)hdr + hdr->desc_len;
	}
3180
	return NULL;
3181 3182
}

3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200
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);
	/* Clear flags that driver is not interested in */
	res->if_cap_flags = le32_to_cpu(desc->cap_flags) &
				BE_IF_CAP_FLAGS_WANT;
	/* Need 1 RXQ as the default RXQ */
	if (res->max_rss_qs && res->max_rss_qs == res->max_rx_qs)
		res->max_rss_qs -= 1;
}

3201
/* Uses Mbox */
3202
int be_cmd_get_func_config(struct be_adapter *adapter, struct be_resources *res)
3203 3204 3205 3206 3207 3208
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_func_config *req;
	int status;
	struct be_dma_mem cmd;

S
Suresh Reddy 已提交
3209 3210 3211
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;

3212 3213 3214 3215 3216 3217
	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_resp_get_func_config);
	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size,
				      &cmd.dma);
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory alloc failure\n");
S
Suresh Reddy 已提交
3218 3219
		status = -ENOMEM;
		goto err;
3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233
	}

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

3234 3235 3236
	if (skyhawk_chip(adapter))
		req->hdr.version = 1;

3237 3238 3239 3240
	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);
3241
		struct be_nic_res_desc *desc;
3242

3243
		desc = be_get_nic_desc(resp->func_param, desc_count);
3244 3245 3246 3247 3248
		if (!desc) {
			status = -EINVAL;
			goto err;
		}

3249
		adapter->pf_number = desc->pf_num;
3250
		be_copy_nic_desc(res, desc);
3251 3252 3253
	}
err:
	mutex_unlock(&adapter->mbox_lock);
S
Suresh Reddy 已提交
3254 3255
	if (cmd.va)
		pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma);
3256 3257 3258
	return status;
}

3259
/* Uses mbox */
J
Jingoo Han 已提交
3260 3261
static int be_cmd_get_profile_config_mbox(struct be_adapter *adapter,
					u8 domain, struct be_dma_mem *cmd)
3262 3263 3264 3265 3266
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_profile_config *req;
	int status;

3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
	wrb = wrb_from_mbox(adapter);

	req = cmd->va;
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_GET_PROFILE_CONFIG,
			       cmd->size, wrb, cmd);

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

	status = be_mbox_notify_wait(adapter);

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

/* Uses sync mcc */
J
Jingoo Han 已提交
3288 3289
static int be_cmd_get_profile_config_mccq(struct be_adapter *adapter,
					u8 domain, struct be_dma_mem *cmd)
3290 3291 3292 3293
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_profile_config *req;
	int status;
3294 3295 3296 3297 3298 3299 3300 3301 3302

	spin_lock_bh(&adapter->mcc_lock);

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

3303
	req = cmd->va;
3304 3305
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			       OPCODE_COMMON_GET_PROFILE_CONFIG,
3306
			       cmd->size, wrb, cmd);
3307 3308 3309

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

	status = be_mcc_notify_wait(adapter);
3314 3315 3316 3317 3318 3319 3320

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

/* Uses sync mcc, if MCCQ is already created otherwise mbox */
3321 3322
int be_cmd_get_profile_config(struct be_adapter *adapter,
			      struct be_resources *res, u8 domain)
3323
{
3324 3325 3326
	struct be_cmd_resp_get_profile_config *resp;
	struct be_pcie_res_desc *pcie;
	struct be_nic_res_desc *nic;
3327 3328
	struct be_queue_info *mccq = &adapter->mcc_obj.q;
	struct be_dma_mem cmd;
3329
	u32 desc_count;
3330 3331 3332
	int status;

	memset(&cmd, 0, sizeof(struct be_dma_mem));
3333 3334 3335
	cmd.size = sizeof(struct be_cmd_resp_get_profile_config);
	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size, &cmd.dma);
	if (!cmd.va)
3336 3337 3338 3339 3340 3341
		return -ENOMEM;

	if (!mccq->created)
		status = be_cmd_get_profile_config_mbox(adapter, domain, &cmd);
	else
		status = be_cmd_get_profile_config_mccq(adapter, domain, &cmd);
3342 3343
	if (status)
		goto err;
3344

3345 3346
	resp = cmd.va;
	desc_count = le32_to_cpu(resp->desc_count);
3347

3348 3349 3350
	pcie =  be_get_pcie_desc(adapter->pdev->devfn, resp->func_param,
				 desc_count);
	if (pcie)
3351
		res->max_vfs = le16_to_cpu(pcie->num_vfs);
3352 3353

	nic = be_get_nic_desc(resp->func_param, desc_count);
3354 3355 3356
	if (nic)
		be_copy_nic_desc(res, nic);

3357
err:
3358
	if (cmd.va)
3359
		pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma);
3360 3361 3362
	return status;
}

3363 3364 3365
/* Currently only Lancer uses this command and it supports version 0 only
 * Uses sync mcc
 */
3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387
int be_cmd_set_profile_config(struct be_adapter *adapter, u32 bps,
			      u8 domain)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_profile_config *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_PROFILE_CONFIG, sizeof(*req),
			       wrb, NULL);
	req->hdr.domain = domain;
	req->desc_count = cpu_to_le32(1);
3388 3389
	req->nic_desc.hdr.desc_type = NIC_RESOURCE_DESC_TYPE_V0;
	req->nic_desc.hdr.desc_len = RESOURCE_DESC_SIZE_V0;
3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419
	req->nic_desc.flags = (1 << QUN) | (1 << IMM) | (1 << NOSV);
	req->nic_desc.pf_num = adapter->pf_number;
	req->nic_desc.vf_num = domain;

	/* Mark fields invalid */
	req->nic_desc.unicast_mac_count = 0xFFFF;
	req->nic_desc.mcc_count = 0xFFFF;
	req->nic_desc.vlan_count = 0xFFFF;
	req->nic_desc.mcast_mac_count = 0xFFFF;
	req->nic_desc.txq_count = 0xFFFF;
	req->nic_desc.rq_count = 0xFFFF;
	req->nic_desc.rssq_count = 0xFFFF;
	req->nic_desc.lro_count = 0xFFFF;
	req->nic_desc.cq_count = 0xFFFF;
	req->nic_desc.toe_conn_count = 0xFFFF;
	req->nic_desc.eq_count = 0xFFFF;
	req->nic_desc.link_param = 0xFF;
	req->nic_desc.bw_min = 0xFFFFFFFF;
	req->nic_desc.acpi_params = 0xFF;
	req->nic_desc.wol_param = 0x0F;

	/* Change BW */
	req->nic_desc.bw_min = cpu_to_le32(bps);
	req->nic_desc.bw_max = cpu_to_le32(bps);
	status = be_mcc_notify_wait(adapter);
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452
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;
}

3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 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 3517 3518
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)
{
	int status;

	/* give firmware reset and diagnostic dump */
	status = lancer_physdev_ctrl(adapter, PHYSDEV_CONTROL_FW_RESET_MASK |
				     PHYSDEV_CONTROL_DD_MASK);
	if (status < 0) {
		dev_err(&adapter->pdev->dev, "Firmware reset failed\n");
		return status;
	}

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

	if (!dump_present(adapter)) {
		dev_err(&adapter->pdev->dev, "Dump image not present\n");
		return -1;
	}

	return 0;
}

3519 3520 3521 3522 3523 3524 3525
/* 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;

3526
	if (BEx_chip(adapter))
3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550
		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;
}

3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575
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;
}

3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612
int be_roce_mcc_cmd(void *netdev_handle, void *wrb_payload,
			int wrb_payload_size, u16 *cmd_status, u16 *ext_status)
{
	struct be_adapter *adapter = netdev_priv(netdev_handle);
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_hdr *hdr = (struct be_cmd_req_hdr *) wrb_payload;
	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);