be_cmds.c 73.8 KB
Newer Older
S
Sathya Perla 已提交
1
/*
2
 * Copyright (C) 2005 - 2011 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
static inline void *embedded_payload(struct be_mcc_wrb *wrb)
{
	return wrb->payload.embedded_payload;
}
26

27
static void be_mcc_notify(struct be_adapter *adapter)
28
{
29
	struct be_queue_info *mccq = &adapter->mcc_obj.q;
30 31
	u32 val = 0;

32
	if (be_error(adapter))
33 34
		return;

35 36
	val |= mccq->id & DB_MCCQ_RING_ID_MASK;
	val |= 1 << DB_MCCQ_NUM_POSTED_SHIFT;
37 38

	wmb();
39
	iowrite32(val, adapter->db + DB_MCCQ_OFFSET);
40 41 42 43 44
}

/* 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) */
45
static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl)
46 47 48 49 50 51 52 53 54 55 56
{
	if (compl->flags != 0) {
		compl->flags = le32_to_cpu(compl->flags);
		BUG_ON((compl->flags & CQE_FLAGS_VALID_MASK) == 0);
		return true;
	} else {
		return false;
	}
}

/* Need to reset the entire word that houses the valid bit */
57
static inline void be_mcc_compl_use(struct be_mcc_compl *compl)
58 59 60 61
{
	compl->flags = 0;
}

62 63 64 65 66 67 68 69 70
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;
}

71
static int be_mcc_compl_process(struct be_adapter *adapter,
72
				struct be_mcc_compl *compl)
73 74
{
	u16 compl_status, extd_status;
75 76
	struct be_cmd_resp_hdr *resp_hdr;
	u8 opcode = 0, subsystem = 0;
77 78 79 80 81 82 83

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

85 86 87 88 89 90 91 92 93 94
	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)) {
95 96 97 98
		adapter->flash_status = compl_status;
		complete(&adapter->flash_compl);
	}

99
	if (compl_status == MCC_STATUS_SUCCESS) {
100 101 102
		if (((opcode == OPCODE_ETH_GET_STATISTICS) ||
		     (opcode == OPCODE_ETH_GET_PPORT_STATS)) &&
		    (subsystem == CMD_SUBSYSTEM_ETH)) {
103
			be_parse_stats(adapter);
A
Ajit Khaparde 已提交
104
			adapter->stats_cmd_sent = false;
105
		}
106 107
		if (opcode == OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES &&
		    subsystem == CMD_SUBSYSTEM_COMMON) {
108
			struct be_cmd_resp_get_cntl_addnl_attribs *resp =
109
				(void *)resp_hdr;
110 111 112
			adapter->drv_stats.be_on_die_temperature =
				resp->on_die_temperature;
		}
113
	} else {
114
		if (opcode == OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES)
115
			adapter->be_get_temp_freq = 0;
116

117 118 119 120 121
		if (compl_status == MCC_STATUS_NOT_SUPPORTED ||
			compl_status == MCC_STATUS_ILLEGAL_REQUEST)
			goto done;

		if (compl_status == MCC_STATUS_UNAUTHORIZED_REQUEST) {
122
			dev_warn(&adapter->pdev->dev,
123
				 "VF is not privileged to issue opcode %d-%d\n",
124
				 opcode, subsystem);
125 126 127
		} else {
			extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) &
					CQE_STATUS_EXTD_MASK;
128 129 130
			dev_err(&adapter->pdev->dev,
				"opcode %d-%d failed:status %d-%d\n",
				opcode, subsystem, compl_status, extd_status);
131
		}
132
	}
133
done:
134
	return compl_status;
135 136
}

137
/* Link state evt is a string of bytes; no need for endian swapping */
138
static void be_async_link_state_process(struct be_adapter *adapter,
139 140
		struct be_async_event_link_state *evt)
{
141
	/* When link status changes, link speed must be re-queried from FW */
A
Ajit Khaparde 已提交
142
	adapter->phy.link_speed = -1;
143

144 145 146 147 148
	/* Ignore physical link event */
	if (lancer_chip(adapter) &&
	    !(evt->port_link_status & LOGICAL_LINK_STATUS_MASK))
		return;

149 150 151 152 153
	/* 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);
154 155
}

156 157 158 159 160 161
/* 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;
162
		adapter->recommended_prio &= ~VLAN_PRIO_MASK;
163 164 165 166 167
		adapter->recommended_prio =
			evt->reco_default_priority << VLAN_PRIO_SHIFT;
	}
}

168
/* Grp5 QOS Speed evt: qos_link_speed is in units of 10 Mbps */
169 170 171
static void be_async_grp5_qos_speed_process(struct be_adapter *adapter,
		struct be_async_event_grp5_qos_link_speed *evt)
{
172 173 174
	if (adapter->phy.link_speed >= 0 &&
	    evt->physical_port == adapter->port_num)
		adapter->phy.link_speed = le16_to_cpu(evt->qos_link_speed) * 10;
175 176
}

177 178 179 180 181
/*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)
182
		adapter->pvid = le16_to_cpu(evt->tag) & VLAN_VID_MASK;
183 184 185 186
	else
		adapter->pvid = 0;
}

187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
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;
204 205 206 207
	case ASYNC_EVENT_PVID_STATE:
		be_async_grp5_pvid_state_process(adapter,
		(struct be_async_event_grp5_pvid_state *)evt);
	break;
208 209 210 211 212 213
	default:
		dev_warn(&adapter->pdev->dev, "Unknown grp5 event!\n");
		break;
	}
}

214 215
static inline bool is_link_state_evt(u32 trailer)
{
216
	return ((trailer >> ASYNC_TRAILER_EVENT_CODE_SHIFT) &
217
		ASYNC_TRAILER_EVENT_CODE_MASK) ==
218
				ASYNC_EVENT_CODE_LINK_STATE;
219
}
220

221 222 223 224 225 226 227
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);
}

228
static struct be_mcc_compl *be_mcc_compl_get(struct be_adapter *adapter)
229
{
230
	struct be_queue_info *mcc_cq = &adapter->mcc_obj.cq;
231
	struct be_mcc_compl *compl = queue_tail_node(mcc_cq);
232 233 234 235 236 237 238 239

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

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
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)
{
	adapter->mcc_obj.rearm_cq = false;
}

S
Sathya Perla 已提交
255
int be_process_mcc(struct be_adapter *adapter)
256
{
257
	struct be_mcc_compl *compl;
S
Sathya Perla 已提交
258
	int num = 0, status = 0;
259
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
260

261
	spin_lock(&adapter->mcc_cq_lock);
262
	while ((compl = be_mcc_compl_get(adapter))) {
263 264
		if (compl->flags & CQE_FLAGS_ASYNC_MASK) {
			/* Interpret flags as an async trailer */
265 266
			if (is_link_state_evt(compl->flags))
				be_async_link_state_process(adapter,
267
				(struct be_async_event_link_state *) compl);
268 269 270
			else if (is_grp5_evt(compl->flags))
				be_async_grp5_evt_process(adapter,
				compl->flags, compl);
271
		} else if (compl->flags & CQE_FLAGS_COMPLETED_MASK) {
S
Sathya Perla 已提交
272
				status = be_mcc_compl_process(adapter, compl);
273
				atomic_dec(&mcc_obj->q.used);
274 275 276 277
		}
		be_mcc_compl_use(compl);
		num++;
	}
278

S
Sathya Perla 已提交
279 280 281
	if (num)
		be_cq_notify(adapter, mcc_obj->cq.id, mcc_obj->rearm_cq, num);

282
	spin_unlock(&adapter->mcc_cq_lock);
S
Sathya Perla 已提交
283
	return status;
284 285
}

286
/* Wait till no more pending mcc requests are present */
287
static int be_mcc_wait_compl(struct be_adapter *adapter)
288
{
289
#define mcc_timeout		120000 /* 12s timeout */
S
Sathya Perla 已提交
290
	int i, status = 0;
S
Sathya Perla 已提交
291 292
	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;

293
	for (i = 0; i < mcc_timeout; i++) {
294 295 296
		if (be_error(adapter))
			return -EIO;

297
		local_bh_disable();
S
Sathya Perla 已提交
298
		status = be_process_mcc(adapter);
299
		local_bh_enable();
300

S
Sathya Perla 已提交
301
		if (atomic_read(&mcc_obj->q.used) == 0)
302 303 304
			break;
		udelay(100);
	}
305
	if (i == mcc_timeout) {
306 307
		dev_err(&adapter->pdev->dev, "FW not responding\n");
		adapter->fw_timeout = true;
308
		return -EIO;
309
	}
S
Sathya Perla 已提交
310
	return status;
311 312 313
}

/* Notify MCC requests and wait for completion */
314
static int be_mcc_notify_wait(struct be_adapter *adapter)
315
{
316 317 318 319 320 321 322 323 324 325 326
	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);

327
	be_mcc_notify(adapter);
328 329 330 331 332 333 334 335

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

	status = resp->status;
out:
	return status;
336 337
}

338
static int be_mbox_db_ready_wait(struct be_adapter *adapter, void __iomem *db)
S
Sathya Perla 已提交
339
{
340
	int msecs = 0;
S
Sathya Perla 已提交
341 342 343
	u32 ready;

	do {
344 345 346
		if (be_error(adapter))
			return -EIO;

347
		ready = ioread32(db);
348
		if (ready == 0xffffffff)
349 350 351
			return -1;

		ready &= MPU_MAILBOX_DB_RDY_MASK;
S
Sathya Perla 已提交
352 353 354
		if (ready)
			break;

355
		if (msecs > 4000) {
356 357
			dev_err(&adapter->pdev->dev, "FW not responding\n");
			adapter->fw_timeout = true;
358
			be_detect_error(adapter);
S
Sathya Perla 已提交
359 360 361
			return -1;
		}

362
		msleep(1);
363
		msecs++;
S
Sathya Perla 已提交
364 365 366 367 368 369 370
	} while (true);

	return 0;
}

/*
 * Insert the mailbox address into the doorbell in two steps
371
 * Polls on the mbox doorbell till a command completion (or a timeout) occurs
S
Sathya Perla 已提交
372
 */
373
static int be_mbox_notify_wait(struct be_adapter *adapter)
S
Sathya Perla 已提交
374 375 376
{
	int status;
	u32 val = 0;
377 378
	void __iomem *db = adapter->db + MPU_MAILBOX_DB_OFFSET;
	struct be_dma_mem *mbox_mem = &adapter->mbox_mem;
S
Sathya Perla 已提交
379
	struct be_mcc_mailbox *mbox = mbox_mem->va;
380
	struct be_mcc_compl *compl = &mbox->compl;
S
Sathya Perla 已提交
381

382 383 384 385 386
	/* wait for ready to be set */
	status = be_mbox_db_ready_wait(adapter, db);
	if (status != 0)
		return status;

S
Sathya Perla 已提交
387 388 389 390 391 392
	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 */
393
	status = be_mbox_db_ready_wait(adapter, db);
S
Sathya Perla 已提交
394 395 396 397 398 399 400 401
	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);

402
	status = be_mbox_db_ready_wait(adapter, db);
S
Sathya Perla 已提交
403 404 405
	if (status != 0)
		return status;

406
	/* A cq entry has been made now */
407 408 409
	if (be_mcc_compl_is_new(compl)) {
		status = be_mcc_compl_process(adapter, &mbox->compl);
		be_mcc_compl_use(compl);
410 411 412
		if (status)
			return status;
	} else {
413
		dev_err(&adapter->pdev->dev, "invalid mailbox completion\n");
S
Sathya Perla 已提交
414 415
		return -1;
	}
416
	return 0;
S
Sathya Perla 已提交
417 418
}

419
static int be_POST_stage_get(struct be_adapter *adapter, u16 *stage)
S
Sathya Perla 已提交
420
{
421 422 423 424 425 426
	u32 sem;

	if (lancer_chip(adapter))
		sem  = ioread32(adapter->db + MPU_EP_SEMAPHORE_IF_TYPE2_OFFSET);
	else
		sem  = ioread32(adapter->csr + MPU_EP_SEMAPHORE_OFFSET);
S
Sathya Perla 已提交
427 428 429 430 431 432 433 434

	*stage = sem & EP_SEMAPHORE_POST_STAGE_MASK;
	if ((sem >> EP_SEMAPHORE_POST_ERR_SHIFT) & EP_SEMAPHORE_POST_ERR_MASK)
		return -1;
	else
		return 0;
}

435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
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;
}

455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
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;
}

472 473 474 475
int lancer_test_and_set_rdy_state(struct be_adapter *adapter)
{
	int status;
	u32 sliport_status, err, reset_needed;
476 477 478 479 480 481
	bool resource_error;

	resource_error = lancer_provisioning_error(adapter);
	if (resource_error)
		return -1;

482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
	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;
		}
	}
503 504 505 506 507 508 509 510
	/* 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);
	if (status == -1 && !resource_error)
		adapter->eeh_error = true;

511 512 513 514
	return status;
}

int be_fw_wait_ready(struct be_adapter *adapter)
S
Sathya Perla 已提交
515
{
516 517
	u16 stage;
	int status, timeout = 0;
518
	struct device *dev = &adapter->pdev->dev;
S
Sathya Perla 已提交
519

520 521 522 523 524
	if (lancer_chip(adapter)) {
		status = lancer_wait_ready(adapter);
		return status;
	}

525 526 527
	do {
		status = be_POST_stage_get(adapter, &stage);
		if (status) {
528
			dev_err(dev, "POST error; stage=0x%x\n", stage);
529 530
			return -1;
		} else if (stage != POST_STAGE_ARMFW_RDY) {
531 532 533 534
			if (msleep_interruptible(2000)) {
				dev_err(dev, "Waiting for POST aborted\n");
				return -EINTR;
			}
535 536 537 538
			timeout += 2;
		} else {
			return 0;
		}
539
	} while (timeout < 60);
S
Sathya Perla 已提交
540

541
	dev_err(dev, "POST timeout; stage=0x%x\n", stage);
542
	return -1;
S
Sathya Perla 已提交
543 544 545 546 547 548 549 550 551 552
}


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


/* Don't touch the hdr after it's prepared */
S
Somnath Kotur 已提交
553 554 555 556
/* 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 已提交
557
{
S
Somnath Kotur 已提交
558
	struct be_sge *sge;
559 560
	unsigned long addr = (unsigned long)req_hdr;
	u64 req_addr = addr;
S
Somnath Kotur 已提交
561

S
Sathya Perla 已提交
562 563 564
	req_hdr->opcode = opcode;
	req_hdr->subsystem = subsystem;
	req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr));
565
	req_hdr->version = 0;
S
Somnath Kotur 已提交
566

567 568 569
	wrb->tag0 = req_addr & 0xFFFFFFFF;
	wrb->tag1 = upper_32_bits(req_addr);

S
Somnath Kotur 已提交
570 571 572 573 574 575 576 577 578 579 580
	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 已提交
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
}

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

/* Converts interrupt delay in microseconds to multiplier value */
static u32 eq_delay_to_mult(u32 usec_delay)
{
#define MAX_INTR_RATE			651042
	const u32 round = 10;
	u32 multiplier;

	if (usec_delay == 0)
		multiplier = 0;
	else {
		u32 interrupt_rate = 1000000 / usec_delay;
		/* Max delay, corresponding to the lowest interrupt rate */
		if (interrupt_rate == 0)
			multiplier = 1023;
		else {
			multiplier = (MAX_INTR_RATE - interrupt_rate) * round;
			multiplier /= interrupt_rate;
			/* Round the multiplier to the closest value.*/
			multiplier = (multiplier + round/2) / round;
			multiplier = min(multiplier, (u32)1023);
		}
	}
	return multiplier;
}

621
static inline struct be_mcc_wrb *wrb_from_mbox(struct be_adapter *adapter)
S
Sathya Perla 已提交
622
{
623 624 625 626 627
	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 已提交
628 629
}

630
static struct be_mcc_wrb *wrb_from_mccq(struct be_adapter *adapter)
631
{
632 633 634
	struct be_queue_info *mccq = &adapter->mcc_obj.q;
	struct be_mcc_wrb *wrb;

635 636 637 638 639
	if (atomic_read(&mccq->used) >= mccq->len) {
		dev_err(&adapter->pdev->dev, "Out of MCCQ wrbs\n");
		return NULL;
	}

640 641 642 643
	wrb = queue_head_node(mccq);
	queue_head_inc(mccq);
	atomic_inc(&mccq->used);
	memset(wrb, 0, sizeof(*wrb));
644 645 646
	return wrb;
}

647 648 649 650 651 652 653 654
/* 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;

655 656 657
	if (lancer_chip(adapter))
		return 0;

658 659
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
660 661

	wrb = (u8 *)wrb_from_mbox(adapter);
S
Sathya Perla 已提交
662 663 664 665 666 667 668 669
	*wrb++ = 0xFF;
	*wrb++ = 0x12;
	*wrb++ = 0x34;
	*wrb++ = 0xFF;
	*wrb++ = 0xFF;
	*wrb++ = 0x56;
	*wrb++ = 0x78;
	*wrb = 0xFF;
670 671 672

	status = be_mbox_notify_wait(adapter);

673
	mutex_unlock(&adapter->mbox_lock);
674 675 676 677 678 679 680 681 682 683 684
	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;

685 686 687
	if (lancer_chip(adapter))
		return 0;

688 689
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
690 691 692 693 694 695 696 697 698 699 700 701 702

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

703
	mutex_unlock(&adapter->mbox_lock);
704 705
	return status;
}
706

707
int be_cmd_eq_create(struct be_adapter *adapter,
S
Sathya Perla 已提交
708 709
		struct be_queue_info *eq, int eq_delay)
{
710 711
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_eq_create *req;
S
Sathya Perla 已提交
712 713 714
	struct be_dma_mem *q_mem = &eq->dma_mem;
	int status;

715 716
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
717 718 719

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

S
Somnath Kotur 已提交
721 722
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_EQ_CREATE, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
723 724 725 726 727 728 729 730 731 732 733 734 735 736

	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,
			__ilog2_u32(eq->len/256));
	AMAP_SET_BITS(struct amap_eq_context, delaymult, req->context,
			eq_delay_to_mult(eq_delay));
	be_dws_cpu_to_le(req->context, sizeof(req->context));

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

737
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
738
	if (!status) {
739
		struct be_cmd_resp_eq_create *resp = embedded_payload(wrb);
S
Sathya Perla 已提交
740 741 742
		eq->id = le16_to_cpu(resp->eq_id);
		eq->created = true;
	}
743

744
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
745 746 747
	return status;
}

748
/* Use MCC */
749
int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr,
750
			  bool permanent, u32 if_handle, u32 pmac_id)
S
Sathya Perla 已提交
751
{
752 753
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_mac_query *req;
S
Sathya Perla 已提交
754 755
	int status;

756
	spin_lock_bh(&adapter->mcc_lock);
757

758 759 760 761 762
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
763
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
764

S
Somnath Kotur 已提交
765 766
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_MAC_QUERY, sizeof(*req), wrb, NULL);
767
	req->type = MAC_ADDRESS_TYPE_NETWORK;
S
Sathya Perla 已提交
768 769 770
	if (permanent) {
		req->permanent = 1;
	} else {
771
		req->if_id = cpu_to_le16((u16) if_handle);
772
		req->pmac_id = cpu_to_le32(pmac_id);
S
Sathya Perla 已提交
773 774 775
		req->permanent = 0;
	}

776
	status = be_mcc_notify_wait(adapter);
777 778
	if (!status) {
		struct be_cmd_resp_mac_query *resp = embedded_payload(wrb);
S
Sathya Perla 已提交
779
		memcpy(mac_addr, resp->mac.addr, ETH_ALEN);
780
	}
S
Sathya Perla 已提交
781

782 783
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
784 785 786
	return status;
}

787
/* Uses synchronous MCCQ */
788
int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr,
789
		u32 if_id, u32 *pmac_id, u32 domain)
S
Sathya Perla 已提交
790
{
791 792
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_pmac_add *req;
S
Sathya Perla 已提交
793 794
	int status;

795 796 797
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
798 799 800 801
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
802
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
803

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

807
	req->hdr.domain = domain;
S
Sathya Perla 已提交
808 809 810
	req->if_id = cpu_to_le32(if_id);
	memcpy(req->mac_address, mac_addr, ETH_ALEN);

811
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
812 813 814 815 816
	if (!status) {
		struct be_cmd_resp_pmac_add *resp = embedded_payload(wrb);
		*pmac_id = le32_to_cpu(resp->pmac_id);
	}

817
err:
818
	spin_unlock_bh(&adapter->mcc_lock);
819 820 821 822

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

S
Sathya Perla 已提交
823 824 825
	return status;
}

826
/* Uses synchronous MCCQ */
827
int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, int pmac_id, u32 dom)
S
Sathya Perla 已提交
828
{
829 830
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_pmac_del *req;
S
Sathya Perla 已提交
831 832
	int status;

833 834 835
	if (pmac_id == -1)
		return 0;

836 837 838
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
839 840 841 842
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
843
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
844

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

848
	req->hdr.domain = dom;
S
Sathya Perla 已提交
849 850 851
	req->if_id = cpu_to_le32(if_id);
	req->pmac_id = cpu_to_le32(pmac_id);

852 853
	status = be_mcc_notify_wait(adapter);

854
err:
855
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
856 857 858
	return status;
}

859
/* Uses Mbox */
S
Sathya Perla 已提交
860 861
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 已提交
862
{
863 864
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_cq_create *req;
S
Sathya Perla 已提交
865
	struct be_dma_mem *q_mem = &cq->dma_mem;
866
	void *ctxt;
S
Sathya Perla 已提交
867 868
	int status;

869 870
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
871 872 873 874

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

S
Somnath Kotur 已提交
876 877
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_CQ_CREATE, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
878 879

	req->num_pages =  cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size));
880
	if (lancer_chip(adapter)) {
881
		req->hdr.version = 2;
882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902
		req->page_size = 1; /* 1 for 4K */
		AMAP_SET_BITS(struct amap_cq_context_lancer, nodelay, ctxt,
								no_delay);
		AMAP_SET_BITS(struct amap_cq_context_lancer, count, ctxt,
						__ilog2_u32(cq->len/256));
		AMAP_SET_BITS(struct amap_cq_context_lancer, valid, ctxt, 1);
		AMAP_SET_BITS(struct amap_cq_context_lancer, eventable,
								ctxt, 1);
		AMAP_SET_BITS(struct amap_cq_context_lancer, eqid,
								ctxt, eq->id);
	} else {
		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);
	}
S
Sathya Perla 已提交
903 904 905 906 907

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

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

908
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
909
	if (!status) {
910
		struct be_cmd_resp_cq_create *resp = embedded_payload(wrb);
S
Sathya Perla 已提交
911 912 913
		cq->id = le16_to_cpu(resp->cq_id);
		cq->created = true;
	}
914

915
	mutex_unlock(&adapter->mbox_lock);
916 917 918 919 920 921 922 923 924 925 926 927

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

928
int be_cmd_mccq_ext_create(struct be_adapter *adapter,
929 930 931
			struct be_queue_info *mccq,
			struct be_queue_info *cq)
{
932
	struct be_mcc_wrb *wrb;
933
	struct be_cmd_req_mcc_ext_create *req;
934
	struct be_dma_mem *q_mem = &mccq->dma_mem;
935
	void *ctxt;
936 937
	int status;

938 939
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
940 941 942 943

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

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

948
	req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size));
949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
	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);
	}
967

968
	/* Subscribe to Link State and Group 5 Events(bits 1 and 5 set) */
969
	req->async_event_bitmap[0] = cpu_to_le32(0x00000022);
970 971 972 973
	be_dws_cpu_to_le(ctxt, sizeof(req->context));

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

974
	status = be_mbox_notify_wait(adapter);
975 976 977 978 979
	if (!status) {
		struct be_cmd_resp_mcc_create *resp = embedded_payload(wrb);
		mccq->id = le16_to_cpu(resp->id);
		mccq->created = true;
	}
980
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
981 982 983 984

	return status;
}

985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
int be_cmd_mccq_org_create(struct be_adapter *adapter,
			struct be_queue_info *mccq,
			struct be_queue_info *cq)
{
	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 已提交
1002 1003
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			OPCODE_COMMON_MCC_CREATE, sizeof(*req), wrb, NULL);
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042

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

1043
int be_cmd_txq_create(struct be_adapter *adapter,
S
Sathya Perla 已提交
1044 1045 1046
			struct be_queue_info *txq,
			struct be_queue_info *cq)
{
1047 1048
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_eth_tx_create *req;
S
Sathya Perla 已提交
1049
	struct be_dma_mem *q_mem = &txq->dma_mem;
1050
	void *ctxt;
S
Sathya Perla 已提交
1051 1052
	int status;

1053 1054 1055 1056 1057 1058 1059
	spin_lock_bh(&adapter->mcc_lock);

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

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

S
Somnath Kotur 已提交
1064 1065
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
		OPCODE_ETH_TX_CREATE, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1066

1067 1068 1069 1070 1071 1072
	if (lancer_chip(adapter)) {
		req->hdr.version = 1;
		AMAP_SET_BITS(struct amap_tx_context, if_id, ctxt,
					adapter->if_handle);
	}

S
Sathya Perla 已提交
1073 1074 1075 1076
	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;

1077 1078
	AMAP_SET_BITS(struct amap_tx_context, tx_ring_size, ctxt,
		be_encoded_q_len(txq->len));
S
Sathya Perla 已提交
1079 1080 1081 1082 1083 1084 1085
	AMAP_SET_BITS(struct amap_tx_context, ctx_valid, ctxt, 1);
	AMAP_SET_BITS(struct amap_tx_context, cq_id_send, 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);

1086
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1087 1088 1089 1090 1091
	if (!status) {
		struct be_cmd_resp_eth_tx_create *resp = embedded_payload(wrb);
		txq->id = le16_to_cpu(resp->cid);
		txq->created = true;
	}
1092

1093 1094
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1095 1096 1097 1098

	return status;
}

1099
/* Uses MCC */
1100
int be_cmd_rxq_create(struct be_adapter *adapter,
S
Sathya Perla 已提交
1101
		struct be_queue_info *rxq, u16 cq_id, u16 frag_size,
S
Sathya Perla 已提交
1102
		u32 if_id, u32 rss, u8 *rss_id)
S
Sathya Perla 已提交
1103
{
1104 1105
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_eth_rx_create *req;
S
Sathya Perla 已提交
1106 1107 1108
	struct be_dma_mem *q_mem = &rxq->dma_mem;
	int status;

1109
	spin_lock_bh(&adapter->mcc_lock);
1110

1111 1112 1113 1114 1115
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1116
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1117

S
Somnath Kotur 已提交
1118 1119
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
				OPCODE_ETH_RX_CREATE, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1120 1121 1122 1123 1124 1125

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

1129
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1130 1131 1132 1133
	if (!status) {
		struct be_cmd_resp_eth_rx_create *resp = embedded_payload(wrb);
		rxq->id = le16_to_cpu(resp->id);
		rxq->created = true;
1134
		*rss_id = resp->rss_id;
S
Sathya Perla 已提交
1135
	}
1136

1137 1138
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1139 1140 1141
	return status;
}

1142 1143 1144
/* Generic destroyer function for all types of queues
 * Uses Mbox
 */
1145
int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q,
S
Sathya Perla 已提交
1146 1147
		int queue_type)
{
1148 1149
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_q_destroy *req;
S
Sathya Perla 已提交
1150 1151 1152
	u8 subsys = 0, opcode = 0;
	int status;

1153 1154
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
S
Sathya Perla 已提交
1155

1156 1157 1158
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);

S
Sathya Perla 已提交
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
	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;
1176 1177 1178 1179
	case QTYPE_MCCQ:
		subsys = CMD_SUBSYSTEM_COMMON;
		opcode = OPCODE_COMMON_MCC_DESTROY;
		break;
S
Sathya Perla 已提交
1180
	default:
1181
		BUG();
S
Sathya Perla 已提交
1182
	}
1183

S
Somnath Kotur 已提交
1184 1185
	be_wrb_cmd_hdr_prepare(&req->hdr, subsys, opcode, sizeof(*req), wrb,
				NULL);
S
Sathya Perla 已提交
1186 1187
	req->id = cpu_to_le16(q->id);

1188
	status = be_mbox_notify_wait(adapter);
1189 1190
	if (!status)
		q->created = false;
1191

1192
	mutex_unlock(&adapter->mbox_lock);
1193 1194
	return status;
}
S
Sathya Perla 已提交
1195

1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
/* 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 已提交
1212 1213
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
			OPCODE_ETH_RX_DESTROY, sizeof(*req), wrb, NULL);
1214 1215 1216 1217 1218 1219 1220 1221
	req->id = cpu_to_le16(q->id);

	status = be_mcc_notify_wait(adapter);
	if (!status)
		q->created = false;

err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1222 1223 1224
	return status;
}

1225
/* Create an rx filtering policy configuration on an i/f
1226
 * Uses MCCQ
1227
 */
1228
int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags, u32 en_flags,
1229
		     u32 *if_handle, u32 domain)
S
Sathya Perla 已提交
1230
{
1231 1232
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_if_create *req;
S
Sathya Perla 已提交
1233 1234
	int status;

1235
	spin_lock_bh(&adapter->mcc_lock);
1236

1237 1238 1239 1240 1241
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1242
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1243

S
Somnath Kotur 已提交
1244 1245
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_INTERFACE_CREATE, sizeof(*req), wrb, NULL);
1246
	req->hdr.domain = domain;
1247 1248
	req->capability_flags = cpu_to_le32(cap_flags);
	req->enable_flags = cpu_to_le32(en_flags);
1249 1250

	req->pmac_invalid = true;
S
Sathya Perla 已提交
1251

1252
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1253 1254 1255 1256 1257
	if (!status) {
		struct be_cmd_resp_if_create *resp = embedded_payload(wrb);
		*if_handle = le32_to_cpu(resp->interface_id);
	}

1258 1259
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1260 1261 1262
	return status;
}

1263
/* Uses MCCQ */
1264
int be_cmd_if_destroy(struct be_adapter *adapter, int interface_id, u32 domain)
S
Sathya Perla 已提交
1265
{
1266 1267
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_if_destroy *req;
S
Sathya Perla 已提交
1268 1269
	int status;

1270
	if (interface_id == -1)
1271
		return 0;
1272

1273 1274 1275 1276 1277 1278 1279
	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
1282 1283
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_INTERFACE_DESTROY, sizeof(*req), wrb, NULL);
1284
	req->hdr.domain = domain;
S
Sathya Perla 已提交
1285
	req->interface_id = cpu_to_le32(interface_id);
1286

1287 1288 1289
	status = be_mcc_notify_wait(adapter);
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1290 1291 1292 1293 1294
	return status;
}

/* Get stats is a non embedded command: the request is not embedded inside
 * WRB but is a separate dma memory block
1295
 * Uses asynchronous MCC
S
Sathya Perla 已提交
1296
 */
1297
int be_cmd_get_stats(struct be_adapter *adapter, struct be_dma_mem *nonemb_cmd)
S
Sathya Perla 已提交
1298
{
1299
	struct be_mcc_wrb *wrb;
1300
	struct be_cmd_req_hdr *hdr;
1301
	int status = 0;
S
Sathya Perla 已提交
1302

1303
	spin_lock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1304

1305
	wrb = wrb_from_mccq(adapter);
1306 1307 1308 1309
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1310
	hdr = nonemb_cmd->va;
S
Sathya Perla 已提交
1311

S
Somnath Kotur 已提交
1312 1313
	be_wrb_cmd_hdr_prepare(hdr, CMD_SUBSYSTEM_ETH,
		OPCODE_ETH_GET_STATISTICS, nonemb_cmd->size, wrb, nonemb_cmd);
1314 1315 1316 1317

	if (adapter->generation == BE_GEN3)
		hdr->version = 1;

1318
	be_mcc_notify(adapter);
A
Ajit Khaparde 已提交
1319
	adapter->stats_cmd_sent = true;
S
Sathya Perla 已提交
1320

1321
err:
1322
	spin_unlock_bh(&adapter->mcc_lock);
1323
	return status;
S
Sathya Perla 已提交
1324 1325
}

S
Selvin Xavier 已提交
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
/* 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;

	spin_lock_bh(&adapter->mcc_lock);

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

S
Somnath Kotur 已提交
1344 1345 1346
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
			OPCODE_ETH_GET_PPORT_STATS, nonemb_cmd->size, wrb,
			nonemb_cmd);
S
Selvin Xavier 已提交
1347

1348
	req->cmd_params.params.pport_num = cpu_to_le16(adapter->hba_port_num);
S
Selvin Xavier 已提交
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
	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;
}

1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
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;
	}
	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 已提交
1381
{
1382 1383
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_link_status *req;
S
Sathya Perla 已提交
1384 1385
	int status;

1386 1387
	spin_lock_bh(&adapter->mcc_lock);

1388 1389 1390
	if (link_status)
		*link_status = LINK_DOWN;

1391
	wrb = wrb_from_mccq(adapter);
1392 1393 1394 1395
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1396
	req = embedded_payload(wrb);
1397

1398 1399 1400
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_LINK_STATUS_QUERY, sizeof(*req), wrb, NULL);

1401
	if (adapter->generation == BE_GEN3 || lancer_chip(adapter))
1402 1403
		req->hdr.version = 1;

1404
	req->hdr.domain = dom;
S
Sathya Perla 已提交
1405

1406
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1407 1408
	if (!status) {
		struct be_cmd_resp_link_status *resp = embedded_payload(wrb);
1409 1410 1411 1412 1413 1414 1415
		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;
1416
		}
1417 1418
		if (link_status)
			*link_status = resp->logical_link_status;
S
Sathya Perla 已提交
1419 1420
	}

1421
err:
1422
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1423 1424 1425
	return status;
}

1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441
/* 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;
	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 已提交
1442 1443 1444
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES, sizeof(*req),
		wrb, NULL);
1445

1446
	be_mcc_notify(adapter);
1447 1448 1449 1450 1451 1452

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

1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468
/* 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 已提交
1469 1470
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_MANAGE_FAT, sizeof(*req), wrb, NULL);
1471 1472 1473 1474 1475
	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)
1476 1477
			*log_size = le32_to_cpu(resp->log_size) -
					sizeof(u32);
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
	}
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;
1489 1490
	u32 offset = 0, total_size, buf_size,
				log_offset = sizeof(u32), payload_len;
1491 1492 1493 1494 1495 1496 1497
	int status;

	if (buf_len == 0)
		return;

	total_size = buf_len;

1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
	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;
	}

1509 1510 1511 1512 1513 1514
	spin_lock_bh(&adapter->mcc_lock);

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

1515 1516 1517
		wrb = wrb_from_mccq(adapter);
		if (!wrb) {
			status = -EBUSY;
1518 1519 1520 1521
			goto err;
		}
		req = get_fat_cmd.va;

1522
		payload_len = sizeof(struct be_cmd_req_get_fat) + buf_size;
S
Somnath Kotur 已提交
1523 1524 1525
		be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
				OPCODE_COMMON_MANAGE_FAT, payload_len, wrb,
				&get_fat_cmd);
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536

		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,
1537
				le32_to_cpu(resp->read_log_length));
1538
		} else {
1539
			dev_err(&adapter->pdev->dev, "FAT Table Retrieve error\n");
1540 1541
			goto err;
		}
1542 1543 1544 1545
		offset += buf_size;
		log_offset += buf_size;
	}
err:
1546 1547 1548
	pci_free_consistent(adapter->pdev, get_fat_cmd.size,
			get_fat_cmd.va,
			get_fat_cmd.dma);
1549 1550 1551
	spin_unlock_bh(&adapter->mcc_lock);
}

1552 1553 1554
/* Uses synchronous mcc */
int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver,
			char *fw_on_flash)
S
Sathya Perla 已提交
1555
{
1556 1557
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_fw_version *req;
S
Sathya Perla 已提交
1558 1559
	int status;

1560
	spin_lock_bh(&adapter->mcc_lock);
1561

1562 1563 1564 1565 1566
	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
S
Sathya Perla 已提交
1567

1568
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1569

S
Somnath Kotur 已提交
1570 1571
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_GET_FW_VERSION, sizeof(*req), wrb, NULL);
1572
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1573 1574
	if (!status) {
		struct be_cmd_resp_get_fw_version *resp = embedded_payload(wrb);
1575 1576 1577
		strcpy(fw_ver, resp->firmware_version_string);
		if (fw_on_flash)
			strcpy(fw_on_flash, resp->fw_on_flash_version_string);
S
Sathya Perla 已提交
1578
	}
1579 1580
err:
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1581 1582 1583
	return status;
}

1584 1585 1586
/* set the EQ delay interval of an EQ to specified value
 * Uses async mcc
 */
1587
int be_cmd_modify_eqd(struct be_adapter *adapter, u32 eq_id, u32 eqd)
S
Sathya Perla 已提交
1588
{
1589 1590
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_modify_eq_delay *req;
1591
	int status = 0;
S
Sathya Perla 已提交
1592

1593 1594 1595
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
1596 1597 1598 1599
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1600
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1601

S
Somnath Kotur 已提交
1602 1603
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_MODIFY_EQ_DELAY, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1604 1605 1606 1607 1608 1609

	req->num_eq = cpu_to_le32(1);
	req->delay[0].eq_id = cpu_to_le32(eq_id);
	req->delay[0].phase = 0;
	req->delay[0].delay_multiplier = cpu_to_le32(eqd);

1610
	be_mcc_notify(adapter);
S
Sathya Perla 已提交
1611

1612
err:
1613
	spin_unlock_bh(&adapter->mcc_lock);
1614
	return status;
S
Sathya Perla 已提交
1615 1616
}

1617
/* Uses sycnhronous mcc */
1618
int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id, u16 *vtag_array,
S
Sathya Perla 已提交
1619 1620
			u32 num, bool untagged, bool promiscuous)
{
1621 1622
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_vlan_config *req;
S
Sathya Perla 已提交
1623 1624
	int status;

1625 1626 1627
	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
1628 1629 1630 1631
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1632
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1633

S
Somnath Kotur 已提交
1634 1635
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_NTWK_VLAN_CONFIG, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1636 1637 1638 1639 1640 1641 1642 1643 1644 1645

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

1646
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1647

1648
err:
1649
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1650 1651 1652
	return status;
}

1653
int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 value)
S
Sathya Perla 已提交
1654
{
1655
	struct be_mcc_wrb *wrb;
1656 1657
	struct be_dma_mem *mem = &adapter->rx_filter;
	struct be_cmd_req_rx_filter *req = mem->va;
1658
	int status;
S
Sathya Perla 已提交
1659

1660
	spin_lock_bh(&adapter->mcc_lock);
1661

1662
	wrb = wrb_from_mccq(adapter);
1663 1664 1665 1666
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1667
	memset(req, 0, sizeof(*req));
S
Somnath Kotur 已提交
1668 1669 1670
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
				OPCODE_COMMON_NTWK_RX_FILTER, sizeof(*req),
				wrb, mem);
S
Sathya Perla 已提交
1671

1672 1673 1674 1675 1676 1677
	req->if_id = cpu_to_le32(adapter->if_handle);
	if (flags & IFF_PROMISC) {
		req->if_flags_mask = cpu_to_le32(BE_IF_FLAGS_PROMISCUOUS |
					BE_IF_FLAGS_VLAN_PROMISCUOUS);
		if (value == ON)
			req->if_flags = cpu_to_le32(BE_IF_FLAGS_PROMISCUOUS |
1678
						BE_IF_FLAGS_VLAN_PROMISCUOUS);
1679 1680
	} else if (flags & IFF_ALLMULTI) {
		req->if_flags_mask = req->if_flags =
1681
				cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS);
1682
	} else {
1683
		struct netdev_hw_addr *ha;
1684
		int i = 0;
1685

1686 1687
		req->if_flags_mask = req->if_flags =
				cpu_to_le32(BE_IF_FLAGS_MULTICAST);
1688 1689 1690 1691

		/* Reset mcast promisc mode if already set by setting mask
		 * and not setting flags field
		 */
1692 1693 1694
		req->if_flags_mask |=
			cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS &
				    adapter->if_cap_flags);
1695

1696
		req->mcast_num = cpu_to_le32(netdev_mc_count(adapter->netdev));
1697 1698
		netdev_for_each_mc_addr(ha, adapter->netdev)
			memcpy(req->mcast_mac[i++].byte, ha->addr, ETH_ALEN);
S
Sathya Perla 已提交
1699 1700
	}

1701
	status = be_mcc_notify_wait(adapter);
1702
err:
1703
	spin_unlock_bh(&adapter->mcc_lock);
1704
	return status;
S
Sathya Perla 已提交
1705 1706
}

1707
/* Uses synchrounous mcc */
1708
int be_cmd_set_flow_control(struct be_adapter *adapter, u32 tx_fc, u32 rx_fc)
S
Sathya Perla 已提交
1709
{
1710 1711
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_set_flow_control *req;
S
Sathya Perla 已提交
1712 1713
	int status;

1714
	spin_lock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1715

1716
	wrb = wrb_from_mccq(adapter);
1717 1718 1719 1720
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1721
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1722

S
Somnath Kotur 已提交
1723 1724
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_SET_FLOW_CONTROL, sizeof(*req), wrb, NULL);
S
Sathya Perla 已提交
1725 1726 1727 1728

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

1729
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1730

1731
err:
1732
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1733 1734 1735
	return status;
}

1736
/* Uses sycn mcc */
1737
int be_cmd_get_flow_control(struct be_adapter *adapter, u32 *tx_fc, u32 *rx_fc)
S
Sathya Perla 已提交
1738
{
1739 1740
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_flow_control *req;
S
Sathya Perla 已提交
1741 1742
	int status;

1743
	spin_lock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1744

1745
	wrb = wrb_from_mccq(adapter);
1746 1747 1748 1749
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1750
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1751

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

1755
	status = be_mcc_notify_wait(adapter);
S
Sathya Perla 已提交
1756 1757 1758 1759 1760 1761 1762
	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);
	}

1763
err:
1764
	spin_unlock_bh(&adapter->mcc_lock);
S
Sathya Perla 已提交
1765 1766 1767
	return status;
}

1768
/* Uses mbox */
1769 1770
int be_cmd_query_fw_cfg(struct be_adapter *adapter, u32 *port_num,
		u32 *mode, u32 *caps)
S
Sathya Perla 已提交
1771
{
1772 1773
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_query_fw_cfg *req;
S
Sathya Perla 已提交
1774 1775
	int status;

1776 1777
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
S
Sathya Perla 已提交
1778

1779 1780
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
S
Sathya Perla 已提交
1781

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

1785
	status = be_mbox_notify_wait(adapter);
S
Sathya Perla 已提交
1786 1787 1788
	if (!status) {
		struct be_cmd_resp_query_fw_cfg *resp = embedded_payload(wrb);
		*port_num = le32_to_cpu(resp->phys_port);
A
Ajit Khaparde 已提交
1789
		*mode = le32_to_cpu(resp->function_mode);
1790
		*caps = le32_to_cpu(resp->function_caps);
S
Sathya Perla 已提交
1791 1792
	}

1793
	mutex_unlock(&adapter->mbox_lock);
S
Sathya Perla 已提交
1794 1795
	return status;
}
1796

1797
/* Uses mbox */
1798 1799
int be_cmd_reset_function(struct be_adapter *adapter)
{
1800 1801
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_hdr *req;
1802 1803
	int status;

1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
	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;
	}

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

1821 1822
	wrb = wrb_from_mbox(adapter);
	req = embedded_payload(wrb);
1823

S
Somnath Kotur 已提交
1824 1825
	be_wrb_cmd_hdr_prepare(req, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_FUNCTION_RESET, sizeof(*req), wrb, NULL);
1826

1827
	status = be_mbox_notify_wait(adapter);
1828

1829
	mutex_unlock(&adapter->mbox_lock);
1830 1831
	return status;
}
1832

1833 1834 1835 1836
int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable, u16 table_size)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_rss_config *req;
P
Padmanabh Ratnakar 已提交
1837 1838 1839
	u32 myhash[10] = {0x15d43fa5, 0x2534685a, 0x5f87693a, 0x5668494e,
			0x33cf6a53, 0x383334c6, 0x76ac4257, 0x59b242b2,
			0x3ea83c02, 0x4a110304};
1840 1841
	int status;

1842 1843
	if (mutex_lock_interruptible(&adapter->mbox_lock))
		return -1;
1844 1845 1846 1847

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

S
Somnath Kotur 已提交
1848 1849
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
		OPCODE_ETH_RSS_CONFIG, sizeof(*req), wrb, NULL);
1850 1851

	req->if_id = cpu_to_le32(adapter->if_handle);
S
Sathya Perla 已提交
1852 1853
	req->enable_rss = cpu_to_le16(RSS_ENABLE_TCP_IPV4 | RSS_ENABLE_IPV4 |
				      RSS_ENABLE_TCP_IPV6 | RSS_ENABLE_IPV6);
1854 1855 1856 1857 1858 1859 1860

	if (lancer_chip(adapter) || skyhawk_chip(adapter)) {
		req->hdr.version = 1;
		req->enable_rss |= cpu_to_le16(RSS_ENABLE_UDP_IPV4 |
					       RSS_ENABLE_UDP_IPV6);
	}

1861 1862 1863 1864 1865 1866 1867
	req->cpu_table_size_log2 = cpu_to_le16(fls(table_size) - 1);
	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);

1868
	mutex_unlock(&adapter->mbox_lock);
1869 1870 1871
	return status;
}

1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882
/* 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);
1883 1884 1885 1886
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1887 1888
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
1889 1890
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_ENABLE_DISABLE_BEACON, sizeof(*req), wrb, NULL);
1891 1892 1893 1894 1895 1896 1897 1898

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

	status = be_mcc_notify_wait(adapter);

1899
err:
1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
	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);
1914 1915 1916 1917
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
1918 1919
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
1920 1921
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_GET_BEACON_STATE, sizeof(*req), wrb, NULL);
1922 1923 1924 1925 1926 1927 1928 1929 1930 1931

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

1932
err:
1933 1934 1935 1936
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}

1937
int lancer_cmd_write_object(struct be_adapter *adapter, struct be_dma_mem *cmd,
1938 1939 1940
			    u32 data_size, u32 data_offset,
			    const char *obj_name, u32 *data_written,
			    u8 *change_status, u8 *addn_status)
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958
{
	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 已提交
1959
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
1960
				OPCODE_COMMON_WRITE_OBJECT,
S
Somnath Kotur 已提交
1961 1962
				sizeof(struct lancer_cmd_req_write_object), wrb,
				NULL);
1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989

	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,
1990
					 msecs_to_jiffies(30000)))
1991 1992 1993 1994 1995
		status = -1;
	else
		status = adapter->flash_status;

	resp = embedded_payload(wrb);
1996
	if (!status) {
1997
		*data_written = le32_to_cpu(resp->actual_write_len);
1998 1999
		*change_status = resp->change_status;
	} else {
2000
		*addn_status = resp->additional_status;
2001
	}
2002 2003 2004 2005 2006 2007 2008 2009

	return status;

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

2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056
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;
}

2057 2058 2059
int be_cmd_write_flashrom(struct be_adapter *adapter, struct be_dma_mem *cmd,
			u32 flash_type, u32 flash_opcode, u32 buf_size)
{
2060
	struct be_mcc_wrb *wrb;
2061
	struct be_cmd_write_flashrom *req;
2062 2063
	int status;

2064
	spin_lock_bh(&adapter->mcc_lock);
2065
	adapter->flash_status = 0;
2066 2067

	wrb = wrb_from_mccq(adapter);
2068 2069
	if (!wrb) {
		status = -EBUSY;
D
Dan Carpenter 已提交
2070
		goto err_unlock;
2071 2072
	}
	req = cmd->va;
2073

S
Somnath Kotur 已提交
2074 2075
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_WRITE_FLASHROM, cmd->size, wrb, cmd);
2076 2077 2078 2079 2080

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

2081 2082 2083 2084
	be_mcc_notify(adapter);
	spin_unlock_bh(&adapter->mcc_lock);

	if (!wait_for_completion_timeout(&adapter->flash_compl,
2085
			msecs_to_jiffies(40000)))
2086 2087 2088
		status = -1;
	else
		status = adapter->flash_status;
2089

D
Dan Carpenter 已提交
2090 2091 2092 2093
	return status;

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

2097 2098
int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc,
			 int offset)
2099 2100 2101 2102 2103 2104 2105 2106
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_write_flashrom *req;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
2107 2108 2109 2110
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2111 2112
	req = embedded_payload(wrb);

S
Somnath Kotur 已提交
2113 2114
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_READ_FLASHROM, sizeof(*req)+4, wrb, NULL);
2115

2116
	req->params.op_type = cpu_to_le32(OPTYPE_REDBOOT);
2117
	req->params.op_code = cpu_to_le32(FLASHROM_OPER_REPORT);
2118 2119
	req->params.offset = cpu_to_le32(offset);
	req->params.data_buf_size = cpu_to_le32(0x4);
2120 2121 2122 2123 2124

	status = be_mcc_notify_wait(adapter);
	if (!status)
		memcpy(flashed_crc, req->params.data_buf, 4);

2125
err:
2126 2127 2128
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2129

2130
int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac,
2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145
				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 已提交
2146 2147 2148
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH,
		OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG, sizeof(*req), wrb,
		nonemb_cmd);
2149 2150 2151 2152 2153 2154 2155 2156
	memcpy(req->magic_mac, mac, ETH_ALEN);

	status = be_mcc_notify_wait(adapter);

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

2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174
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 已提交
2175 2176 2177
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
			OPCODE_LOWLEVEL_SET_LOOPBACK_MODE, sizeof(*req), wrb,
			NULL);
2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189

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

2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206
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 已提交
2207 2208
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
			OPCODE_LOWLEVEL_LOOPBACK_TEST, sizeof(*req), wrb, NULL);
2209
	req->hdr.timeout = cpu_to_le32(4);
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244

	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 已提交
2245 2246
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL,
			OPCODE_LOWLEVEL_HOST_DDR_DMA, cmd->size, wrb, cmd);
2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271

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

2273
int be_cmd_get_seeprom_data(struct be_adapter *adapter,
2274 2275 2276 2277 2278 2279 2280 2281 2282 2283
				struct be_dma_mem *nonemb_cmd)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_seeprom_read *req;
	struct be_sge *sge;
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
2284 2285 2286 2287
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2288 2289 2290
	req = nonemb_cmd->va;
	sge = nonembedded_sgl(wrb);

S
Somnath Kotur 已提交
2291 2292 2293
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			OPCODE_COMMON_SEEPROM_READ, sizeof(*req), wrb,
			nonemb_cmd);
2294 2295 2296

	status = be_mcc_notify_wait(adapter);

2297
err:
2298 2299 2300
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2301

A
Ajit Khaparde 已提交
2302
int be_cmd_get_phy_info(struct be_adapter *adapter)
2303 2304 2305
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_phy_info *req;
2306
	struct be_dma_mem cmd;
2307 2308 2309 2310 2311 2312 2313 2314 2315
	int status;

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
		goto err;
	}
2316 2317 2318 2319 2320 2321 2322 2323
	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;
	}
2324

2325
	req = cmd.va;
2326

S
Somnath Kotur 已提交
2327 2328 2329
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			OPCODE_COMMON_GET_PHY_DETAILS, sizeof(*req),
			wrb, &cmd);
2330 2331

	status = be_mcc_notify_wait(adapter);
2332 2333 2334
	if (!status) {
		struct be_phy_info *resp_phy_info =
				cmd.va + sizeof(struct be_cmd_req_hdr);
A
Ajit Khaparde 已提交
2335 2336
		adapter->phy.phy_type = le16_to_cpu(resp_phy_info->phy_type);
		adapter->phy.interface_type =
2337
			le16_to_cpu(resp_phy_info->interface_type);
A
Ajit Khaparde 已提交
2338 2339 2340 2341 2342 2343
		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);
2344 2345 2346
	}
	pci_free_consistent(adapter->pdev, cmd.size,
				cmd.va, cmd.dma);
2347 2348 2349 2350
err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367

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 已提交
2368 2369
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			OPCODE_COMMON_SET_QOS, sizeof(*req), wrb, NULL);
2370 2371

	req->hdr.domain = domain;
2372 2373
	req->valid_bits = cpu_to_le32(BE_QOS_BITS_NIC);
	req->max_bps_nic = cpu_to_le32(bps);
2374 2375 2376 2377 2378 2379 2380

	status = be_mcc_notify_wait(adapter);

err:
	spin_unlock_bh(&adapter->mcc_lock);
	return status;
}
2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411

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;

	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");
		return -ENOMEM;
	}

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

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

S
Somnath Kotur 已提交
2412 2413 2414
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
			 OPCODE_COMMON_GET_CNTL_ATTRIBUTES, payload_len, wrb,
			&attribs_cmd);
2415 2416 2417

	status = be_mbox_notify_wait(adapter);
	if (!status) {
2418
		attribs = attribs_cmd.va + sizeof(struct be_cmd_resp_hdr);
2419 2420 2421 2422 2423 2424 2425 2426 2427
		adapter->hba_port_num = attribs->hba_attribs.phy_port;
	}

err:
	mutex_unlock(&adapter->mbox_lock);
	pci_free_consistent(adapter->pdev, attribs_cmd.size, attribs_cmd.va,
					attribs_cmd.dma);
	return status;
}
2428 2429

/* Uses mbox */
2430
int be_cmd_req_native_mode(struct be_adapter *adapter)
2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446
{
	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 已提交
2447 2448
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
		OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP, sizeof(*req), wrb, NULL);
2449 2450 2451 2452 2453 2454 2455 2456 2457 2458

	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 已提交
2459 2460 2461
		if (!adapter->be3_native)
			dev_warn(&adapter->pdev->dev,
				 "adapter not in advanced mode\n");
2462 2463 2464 2465 2466
	}
err:
	mutex_unlock(&adapter->mbox_lock);
	return status;
}
2467 2468

/* Uses synchronous MCCQ */
2469 2470
int be_cmd_get_mac_from_list(struct be_adapter *adapter, u8 *mac,
			     bool *pmac_id_active, u32 *pmac_id, u8 domain)
2471 2472 2473 2474 2475
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_mac_list *req;
	int status;
	int mac_count;
2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489
	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;
	}
2490 2491 2492 2493 2494 2495

	spin_lock_bh(&adapter->mcc_lock);

	wrb = wrb_from_mccq(adapter);
	if (!wrb) {
		status = -EBUSY;
2496
		goto out;
2497
	}
2498 2499

	req = get_mac_list_cmd.va;
2500 2501 2502

	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
				OPCODE_COMMON_GET_MAC_LIST, sizeof(*req),
2503
				wrb, &get_mac_list_cmd);
2504 2505

	req->hdr.domain = domain;
2506 2507
	req->mac_type = MAC_ADDRESS_TYPE_NETWORK;
	req->perm_override = 1;
2508 2509 2510 2511

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_mac_list *resp =
2512 2513 2514
						get_mac_list_cmd.va;
		mac_count = resp->true_mac_count + resp->pseudo_mac_count;
		/* Mac list returned could contain one or more active mac_ids
2515 2516 2517
		 * or one or more true or pseudo permanant mac addresses.
		 * If an active mac_id is present, return first active mac_id
		 * found.
2518
		 */
2519
		for (i = 0; i < mac_count; i++) {
2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533
			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)) {
				*pmac_id_active = true;
				mac_id = mac_entry->mac_addr_id.s_mac_id.mac_id;
				*pmac_id = le32_to_cpu(mac_id);
				goto out;
2534 2535
			}
		}
2536
		/* If no active mac_id found, return first mac addr */
2537 2538 2539
		*pmac_id_active = false;
		memcpy(mac, resp->macaddr_list[0].mac_addr_id.macaddr,
								ETH_ALEN);
2540 2541
	}

2542
out:
2543
	spin_unlock_bh(&adapter->mcc_lock);
2544 2545
	pci_free_consistent(adapter->pdev, get_mac_list_cmd.size,
			get_mac_list_cmd.va, get_mac_list_cmd.dma);
2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592
	return status;
}

/* 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);
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory alloc failure\n");
		return -ENOMEM;
	}

	spin_lock_bh(&adapter->mcc_lock);

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

	req = cmd.va;
	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
				OPCODE_COMMON_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;
}
2593

2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676
int be_cmd_set_hsw_config(struct be_adapter *adapter, u16 pvid,
			u32 domain, u16 intf_id)
{
	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);
	}

	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,
			u32 domain, u16 intf_id)
{
	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;
	AMAP_SET_BITS(struct amap_get_hsw_req_context, interface_id, ctxt,
								intf_id);
	AMAP_SET_BITS(struct amap_get_hsw_req_context, pvid_valid, ctxt, 1);
	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);
		*pvid = le16_to_cpu(vid);
	}

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

2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729
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;

	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");
		return -ENOMEM;
	}

	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_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);
	pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma);
	return status;
2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785

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

2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825
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;
}

2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895
static struct be_nic_resource_desc *be_get_nic_desc(u8 *buf, u32 desc_count,
						    u32 max_buf_size)
{
	struct be_nic_resource_desc *desc = (struct be_nic_resource_desc *)buf;
	int i;

	for (i = 0; i < desc_count; i++) {
		desc->desc_len = RESOURCE_DESC_SIZE;
		if (((void *)desc + desc->desc_len) >
		    (void *)(buf + max_buf_size)) {
			desc = NULL;
			break;
		}

		if (desc->desc_type == NIC_RESOURCE_DESC_TYPE_ID)
			break;

		desc = (void *)desc + desc->desc_len;
	}

	if (!desc || i == MAX_RESOURCE_DESC)
		return NULL;

	return desc;
}

/* Uses Mbox */
int be_cmd_get_func_config(struct be_adapter *adapter)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_func_config *req;
	int status;
	struct be_dma_mem cmd;

	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");
		return -ENOMEM;
	}
	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_FUNC_CONFIG,
			       cmd.size, wrb, &cmd);

	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);
		struct be_nic_resource_desc *desc;

		desc = be_get_nic_desc(resp->func_param, desc_count,
				       sizeof(resp->func_param));
		if (!desc) {
			status = -EINVAL;
			goto err;
		}

2896
		adapter->pf_number = desc->pf_num;
2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970
		adapter->max_pmac_cnt = le16_to_cpu(desc->unicast_mac_count);
		adapter->max_vlans = le16_to_cpu(desc->vlan_count);
		adapter->max_mcast_mac = le16_to_cpu(desc->mcast_mac_count);
		adapter->max_tx_queues = le16_to_cpu(desc->txq_count);
		adapter->max_rss_queues = le16_to_cpu(desc->rssq_count);
		adapter->max_rx_queues = le16_to_cpu(desc->rq_count);

		adapter->max_event_queues = le16_to_cpu(desc->eq_count);
		adapter->if_cap_flags = le32_to_cpu(desc->cap_flags);
	}
err:
	mutex_unlock(&adapter->mbox_lock);
	pci_free_consistent(adapter->pdev, cmd.size,
			    cmd.va, cmd.dma);
	return status;
}

 /* Uses sync mcc */
int be_cmd_get_profile_config(struct be_adapter *adapter, u32 *cap_flags,
			      u8 domain)
{
	struct be_mcc_wrb *wrb;
	struct be_cmd_req_get_profile_config *req;
	int status;
	struct be_dma_mem cmd;

	memset(&cmd, 0, sizeof(struct be_dma_mem));
	cmd.size = sizeof(struct be_cmd_resp_get_profile_config);
	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size,
				      &cmd.dma);
	if (!cmd.va) {
		dev_err(&adapter->pdev->dev, "Memory alloc failure\n");
		return -ENOMEM;
	}

	spin_lock_bh(&adapter->mcc_lock);

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

	req = cmd.va;

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

	req->type = ACTIVE_PROFILE_TYPE;
	req->hdr.domain = domain;

	status = be_mcc_notify_wait(adapter);
	if (!status) {
		struct be_cmd_resp_get_profile_config *resp = cmd.va;
		u32 desc_count = le32_to_cpu(resp->desc_count);
		struct be_nic_resource_desc *desc;

		desc = be_get_nic_desc(resp->func_param, desc_count,
				       sizeof(resp->func_param));

		if (!desc) {
			status = -EINVAL;
			goto err;
		}
		*cap_flags = le32_to_cpu(desc->cap_flags);
	}
err:
	spin_unlock_bh(&adapter->mcc_lock);
	pci_free_consistent(adapter->pdev, cmd.size,
			    cmd.va, cmd.dma);
	return status;
}

2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027
/* Uses sync mcc */
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);

	req->nic_desc.desc_type = NIC_RESOURCE_DESC_TYPE_ID;
	req->nic_desc.desc_len = RESOURCE_DESC_SIZE;
	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;
}

3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064
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);