qed_spq.c 25.6 KB
Newer Older
1
/* QLogic qed NIC Driver
M
Mintz, Yuval 已提交
2
 * Copyright (c) 2015-2017  QLogic Corporation
3
 *
M
Mintz, Yuval 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and /or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
 */

#include <linux/types.h>
#include <asm/byteorder.h>
#include <linux/io.h>
#include <linux/delay.h>
#include <linux/dma-mapping.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/string.h>
#include "qed.h"
#include "qed_cxt.h"
#include "qed_dev_api.h"
#include "qed_hsi.h"
#include "qed_hw.h"
#include "qed_int.h"
51
#include "qed_iscsi.h"
52
#include "qed_mcp.h"
53
#include "qed_ooo.h"
54 55
#include "qed_reg_addr.h"
#include "qed_sp.h"
56
#include "qed_sriov.h"
57
#include "qed_rdma.h"
58 59 60 61 62 63

/***************************************************************************
* Structures & Definitions
***************************************************************************/

#define SPQ_HIGH_PRI_RESERVE_DEFAULT    (1)
64 65 66 67 68

#define SPQ_BLOCK_DELAY_MAX_ITER        (10)
#define SPQ_BLOCK_DELAY_US              (10)
#define SPQ_BLOCK_SLEEP_MAX_ITER        (1000)
#define SPQ_BLOCK_SLEEP_MS              (5)
69 70 71 72 73 74

/***************************************************************************
* Blocking Imp. (BLOCK/EBLOCK mode)
***************************************************************************/
static void qed_spq_blocking_cb(struct qed_hwfn *p_hwfn,
				void *cookie,
Y
Yuval Mintz 已提交
75
				union event_ring_data *data, u8 fw_return_code)
76 77 78 79 80
{
	struct qed_spq_comp_done *comp_done;

	comp_done = (struct qed_spq_comp_done *)cookie;

81
	comp_done->fw_return_code = fw_return_code;
82

83 84
	/* Make sure completion done is visible on waiting thread */
	smp_store_release(&comp_done->done, 0x1);
85 86
}

87 88 89
static int __qed_spq_block(struct qed_hwfn *p_hwfn,
			   struct qed_spq_entry *p_ent,
			   u8 *p_fw_ret, bool sleep_between_iter)
90 91
{
	struct qed_spq_comp_done *comp_done;
92
	u32 iter_cnt;
93 94

	comp_done = (struct qed_spq_comp_done *)p_ent->comp_cb.cookie;
95 96 97 98 99
	iter_cnt = sleep_between_iter ? SPQ_BLOCK_SLEEP_MAX_ITER
				      : SPQ_BLOCK_DELAY_MAX_ITER;

	while (iter_cnt--) {
		/* Validate we receive completion update */
100
		if (smp_load_acquire(&comp_done->done) == 1) { /* ^^^ */
101 102 103 104
			if (p_fw_ret)
				*p_fw_ret = comp_done->fw_return_code;
			return 0;
		}
105 106 107 108 109

		if (sleep_between_iter)
			msleep(SPQ_BLOCK_SLEEP_MS);
		else
			udelay(SPQ_BLOCK_DELAY_US);
110 111
	}

112 113 114 115 116 117 118 119
	return -EBUSY;
}

static int qed_spq_block(struct qed_hwfn *p_hwfn,
			 struct qed_spq_entry *p_ent,
			 u8 *p_fw_ret, bool skip_quick_poll)
{
	struct qed_spq_comp_done *comp_done;
120
	struct qed_ptt *p_ptt;
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
	int rc;

	/* A relatively short polling period w/o sleeping, to allow the FW to
	 * complete the ramrod and thus possibly to avoid the following sleeps.
	 */
	if (!skip_quick_poll) {
		rc = __qed_spq_block(p_hwfn, p_ent, p_fw_ret, false);
		if (!rc)
			return 0;
	}

	/* Move to polling with a sleeping period between iterations */
	rc = __qed_spq_block(p_hwfn, p_ent, p_fw_ret, true);
	if (!rc)
		return 0;

137 138 139 140 141 142
	p_ptt = qed_ptt_acquire(p_hwfn);
	if (!p_ptt) {
		DP_NOTICE(p_hwfn, "ptt, failed to acquire\n");
		return -EAGAIN;
	}

143
	DP_INFO(p_hwfn, "Ramrod is stuck, requesting MCP drain\n");
144
	rc = qed_mcp_drain(p_hwfn, p_ptt);
S
Sagiv Ozeri 已提交
145
	qed_ptt_release(p_hwfn, p_ptt);
146
	if (rc) {
147
		DP_NOTICE(p_hwfn, "MCP drain failed\n");
148 149
		goto err;
	}
150 151

	/* Retry after drain */
152 153
	rc = __qed_spq_block(p_hwfn, p_ent, p_fw_ret, true);
	if (!rc)
S
Sagiv Ozeri 已提交
154
		return 0;
155

156
	comp_done = (struct qed_spq_comp_done *)p_ent->comp_cb.cookie;
S
Sagiv Ozeri 已提交
157
	if (comp_done->done == 1) {
158 159
		if (p_fw_ret)
			*p_fw_ret = comp_done->fw_return_code;
S
Sagiv Ozeri 已提交
160 161
		return 0;
	}
162 163 164 165 166 167 168
err:
	DP_NOTICE(p_hwfn,
		  "Ramrod is stuck [CID %08x cmd %02x protocol %02x echo %04x]\n",
		  le32_to_cpu(p_ent->elem.hdr.cid),
		  p_ent->elem.hdr.cmd_id,
		  p_ent->elem.hdr.protocol_id,
		  le16_to_cpu(p_ent->elem.hdr.echo));
169 170 171 172 173 174 175

	return -EBUSY;
}

/***************************************************************************
* SPQ entries inner API
***************************************************************************/
Y
Yuval Mintz 已提交
176 177
static int qed_spq_fill_entry(struct qed_hwfn *p_hwfn,
			      struct qed_spq_entry *p_ent)
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
{
	p_ent->flags = 0;

	switch (p_ent->comp_mode) {
	case QED_SPQ_MODE_EBLOCK:
	case QED_SPQ_MODE_BLOCK:
		p_ent->comp_cb.function = qed_spq_blocking_cb;
		break;
	case QED_SPQ_MODE_CB:
		break;
	default:
		DP_NOTICE(p_hwfn, "Unknown SPQE completion mode %d\n",
			  p_ent->comp_mode);
		return -EINVAL;
	}

	DP_VERBOSE(p_hwfn, QED_MSG_SPQ,
		   "Ramrod header: [CID 0x%08x CMD 0x%02x protocol 0x%02x] Data pointer: [%08x:%08x] Completion Mode: %s\n",
		   p_ent->elem.hdr.cid,
		   p_ent->elem.hdr.cmd_id,
		   p_ent->elem.hdr.protocol_id,
		   p_ent->elem.data_ptr.hi,
		   p_ent->elem.data_ptr.lo,
		   D_TRINE(p_ent->comp_mode, QED_SPQ_MODE_EBLOCK,
			   QED_SPQ_MODE_BLOCK, "MODE_EBLOCK", "MODE_BLOCK",
			   "MODE_CB"));

	return 0;
}

/***************************************************************************
* HSI access
***************************************************************************/
static void qed_spq_hw_initialize(struct qed_hwfn *p_hwfn,
				  struct qed_spq *p_spq)
{
214
	struct e4_core_conn_context *p_cxt;
A
Ariel Elior 已提交
215 216 217
	struct qed_cxt_info cxt_info;
	u16 physical_q;
	int rc;
218 219 220 221 222 223 224 225 226 227 228 229 230 231

	cxt_info.iid = p_spq->cid;

	rc = qed_cxt_get_cid_info(p_hwfn, &cxt_info);

	if (rc < 0) {
		DP_NOTICE(p_hwfn, "Cannot find context info for cid=%d\n",
			  p_spq->cid);
		return;
	}

	p_cxt = cxt_info.p_cxt;

	SET_FIELD(p_cxt->xstorm_ag_context.flags10,
232
		  E4_XSTORM_CORE_CONN_AG_CTX_DQ_CF_EN, 1);
233
	SET_FIELD(p_cxt->xstorm_ag_context.flags1,
234
		  E4_XSTORM_CORE_CONN_AG_CTX_DQ_CF_ACTIVE, 1);
235
	SET_FIELD(p_cxt->xstorm_ag_context.flags9,
236
		  E4_XSTORM_CORE_CONN_AG_CTX_CONSOLID_PROD_CF_EN, 1);
237 238

	/* QM physical queue */
A
Ariel Elior 已提交
239 240
	physical_q = qed_get_cm_pq_idx(p_hwfn, PQ_FLAGS_LB);
	p_cxt->xstorm_ag_context.physical_q0 = cpu_to_le16(physical_q);
241 242 243 244 245 246

	p_cxt->xstorm_st_context.spq_base_lo =
		DMA_LO_LE(p_spq->chain.p_phys_addr);
	p_cxt->xstorm_st_context.spq_base_hi =
		DMA_HI_LE(p_spq->chain.p_phys_addr);

Y
Yuval Mintz 已提交
247 248
	DMA_REGPAIR_LE(p_cxt->xstorm_st_context.consolid_base_addr,
		       p_hwfn->p_consq->chain.p_phys_addr);
249 250 251
}

static int qed_spq_hw_post(struct qed_hwfn *p_hwfn,
Y
Yuval Mintz 已提交
252
			   struct qed_spq *p_spq, struct qed_spq_entry *p_ent)
253
{
254 255
	struct qed_chain *p_chain = &p_hwfn->p_spq->chain;
	u16 echo = qed_chain_get_prod_idx(p_chain);
256 257 258
	struct slow_path_element	*elem;
	struct core_db_data		db;

259
	p_ent->elem.hdr.echo	= cpu_to_le16(echo);
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
	elem = qed_chain_produce(p_chain);
	if (!elem) {
		DP_NOTICE(p_hwfn, "Failed to produce from SPQ chain\n");
		return -EINVAL;
	}

	*elem = p_ent->elem; /* struct assignment */

	/* send a doorbell on the slow hwfn session */
	memset(&db, 0, sizeof(db));
	SET_FIELD(db.params, CORE_DB_DATA_DEST, DB_DEST_XCM);
	SET_FIELD(db.params, CORE_DB_DATA_AGG_CMD, DB_AGG_CMD_SET);
	SET_FIELD(db.params, CORE_DB_DATA_AGG_VAL_SEL,
		  DQ_XCM_CORE_SPQ_PROD_CMD);
	db.agg_flags = DQ_XCM_CORE_DQ_CF_CMD;
	db.spq_prod = cpu_to_le16(qed_chain_get_prod_idx(p_chain));

277 278
	/* make sure the SPQE is updated before the doorbell */
	wmb();
279 280 281 282

	DOORBELL(p_hwfn, qed_db_addr(p_spq->cid, DQ_DEMS_LEGACY), *(u32 *)&db);

	/* make sure doorbell is rang */
283
	wmb();
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300

	DP_VERBOSE(p_hwfn, QED_MSG_SPQ,
		   "Doorbelled [0x%08x, CID 0x%08x] with Flags: %02x agg_params: %02x, prod: %04x\n",
		   qed_db_addr(p_spq->cid, DQ_DEMS_LEGACY),
		   p_spq->cid, db.params, db.agg_flags,
		   qed_chain_get_prod_idx(p_chain));

	return 0;
}

/***************************************************************************
* Asynchronous events
***************************************************************************/
static int
qed_async_event_completion(struct qed_hwfn *p_hwfn,
			   struct event_ring_entry *p_eqe)
{
301 302 303 304 305 306 307 308 309 310
	qed_spq_async_comp_cb cb;

	if (!p_hwfn->p_spq || (p_eqe->protocol_id >= MAX_PROTOCOL_TYPE))
		return -EINVAL;

	cb = p_hwfn->p_spq->async_comp_cb[p_eqe->protocol_id];
	if (cb) {
		return cb(p_hwfn, p_eqe->opcode, p_eqe->echo,
			  &p_eqe->data, p_eqe->fw_return_code);
	} else {
311 312 313 314 315
		DP_NOTICE(p_hwfn,
			  "Unknown Async completion for protocol: %d\n",
			  p_eqe->protocol_id);
		return -EINVAL;
	}
316 317
}

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
int
qed_spq_register_async_cb(struct qed_hwfn *p_hwfn,
			  enum protocol_type protocol_id,
			  qed_spq_async_comp_cb cb)
{
	if (!p_hwfn->p_spq || (protocol_id >= MAX_PROTOCOL_TYPE))
		return -EINVAL;

	p_hwfn->p_spq->async_comp_cb[protocol_id] = cb;
	return 0;
}

void
qed_spq_unregister_async_cb(struct qed_hwfn *p_hwfn,
			    enum protocol_type protocol_id)
{
	if (!p_hwfn->p_spq || (protocol_id >= MAX_PROTOCOL_TYPE))
		return;

	p_hwfn->p_spq->async_comp_cb[protocol_id] = NULL;
}

340 341 342
/***************************************************************************
* EQ API
***************************************************************************/
Y
Yuval Mintz 已提交
343
void qed_eq_prod_update(struct qed_hwfn *p_hwfn, u16 prod)
344 345 346 347 348 349 350 351 352 353
{
	u32 addr = GTT_BAR0_MAP_REG_USDM_RAM +
		   USTORM_EQE_CONS_OFFSET(p_hwfn->rel_pf_id);

	REG_WR16(p_hwfn, addr, prod);

	/* keep prod updates ordered */
	mmiowb();
}

Y
Yuval Mintz 已提交
354
int qed_eq_completion(struct qed_hwfn *p_hwfn, void *cookie)
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
{
	struct qed_eq *p_eq = cookie;
	struct qed_chain *p_chain = &p_eq->chain;
	int rc = 0;

	/* take a snapshot of the FW consumer */
	u16 fw_cons_idx = le16_to_cpu(*p_eq->p_fw_cons);

	DP_VERBOSE(p_hwfn, QED_MSG_SPQ, "fw_cons_idx %x\n", fw_cons_idx);

	/* Need to guarantee the fw_cons index we use points to a usuable
	 * element (to comply with our chain), so our macros would comply
	 */
	if ((fw_cons_idx & qed_chain_get_usable_per_page(p_chain)) ==
	    qed_chain_get_usable_per_page(p_chain))
		fw_cons_idx += qed_chain_get_unusable_per_page(p_chain);

	/* Complete current segment of eq entries */
	while (fw_cons_idx != qed_chain_get_cons_idx(p_chain)) {
		struct event_ring_entry *p_eqe = qed_chain_consume(p_chain);

		if (!p_eqe) {
			rc = -EINVAL;
			break;
		}

		DP_VERBOSE(p_hwfn, QED_MSG_SPQ,
			   "op %x prot %x res0 %x echo %x fwret %x flags %x\n",
			   p_eqe->opcode,
			   p_eqe->protocol_id,
			   p_eqe->reserved0,
			   le16_to_cpu(p_eqe->echo),
			   p_eqe->fw_return_code,
			   p_eqe->flags);

		if (GET_FIELD(p_eqe->flags, EVENT_RING_ENTRY_ASYNC)) {
			if (qed_async_event_completion(p_hwfn, p_eqe))
				rc = -EINVAL;
		} else if (qed_spq_completion(p_hwfn,
					      p_eqe->echo,
					      p_eqe->fw_return_code,
					      &p_eqe->data)) {
			rc = -EINVAL;
		}

		qed_chain_recycle_consumed(p_chain);
	}

	qed_eq_prod_update(p_hwfn, qed_chain_get_prod_idx(p_chain));

	return rc;
}

T
Tomer Tayar 已提交
408
int qed_eq_alloc(struct qed_hwfn *p_hwfn, u16 num_elem)
409 410 411 412
{
	struct qed_eq *p_eq;

	/* Allocate EQ struct */
413
	p_eq = kzalloc(sizeof(*p_eq), GFP_KERNEL);
J
Joe Perches 已提交
414
	if (!p_eq)
T
Tomer Tayar 已提交
415
		return -ENOMEM;
416 417 418 419 420

	/* Allocate and initialize EQ chain*/
	if (qed_chain_alloc(p_hwfn->cdev,
			    QED_CHAIN_USE_TO_PRODUCE,
			    QED_CHAIN_MODE_PBL,
Y
Yuval Mintz 已提交
421
			    QED_CHAIN_CNT_TYPE_U16,
422 423
			    num_elem,
			    sizeof(union event_ring_element),
424
			    &p_eq->chain, NULL))
425 426 427
		goto eq_allocate_fail;

	/* register EQ completion on the SP SB */
Y
Yuval Mintz 已提交
428 429
	qed_int_register_cb(p_hwfn, qed_eq_completion,
			    p_eq, &p_eq->eq_sb_index, &p_eq->p_fw_cons);
430

T
Tomer Tayar 已提交
431 432
	p_hwfn->p_eq = p_eq;
	return 0;
433 434

eq_allocate_fail:
T
Tomer Tayar 已提交
435 436
	kfree(p_eq);
	return -ENOMEM;
437 438
}

T
Tomer Tayar 已提交
439
void qed_eq_setup(struct qed_hwfn *p_hwfn)
440
{
T
Tomer Tayar 已提交
441
	qed_chain_reset(&p_hwfn->p_eq->chain);
442 443
}

T
Tomer Tayar 已提交
444
void qed_eq_free(struct qed_hwfn *p_hwfn)
445
{
T
Tomer Tayar 已提交
446
	if (!p_hwfn->p_eq)
447
		return;
T
Tomer Tayar 已提交
448 449 450 451 452

	qed_chain_free(p_hwfn->cdev, &p_hwfn->p_eq->chain);

	kfree(p_hwfn->p_eq);
	p_hwfn->p_eq = NULL;
453 454
}

M
Manish Chopra 已提交
455 456 457
/***************************************************************************
* CQE API - manipulate EQ functionality
***************************************************************************/
Y
Yuval Mintz 已提交
458 459 460
static int qed_cqe_completion(struct qed_hwfn *p_hwfn,
			      struct eth_slow_path_rx_cqe *cqe,
			      enum protocol_type protocol)
M
Manish Chopra 已提交
461
{
Y
Yuval Mintz 已提交
462 463 464
	if (IS_VF(p_hwfn->cdev))
		return 0;

M
Manish Chopra 已提交
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
	/* @@@tmp - it's possible we'll eventually want to handle some
	 * actual commands that can arrive here, but for now this is only
	 * used to complete the ramrod using the echo value on the cqe
	 */
	return qed_spq_completion(p_hwfn, cqe->echo, 0, NULL);
}

int qed_eth_cqe_completion(struct qed_hwfn *p_hwfn,
			   struct eth_slow_path_rx_cqe *cqe)
{
	int rc;

	rc = qed_cqe_completion(p_hwfn, cqe, PROTOCOLID_ETH);
	if (rc)
		DP_NOTICE(p_hwfn,
			  "Failed to handle RXQ CQE [cmd 0x%02x]\n",
			  cqe->ramrod_cmd_id);

	return rc;
}

486 487 488 489 490
/***************************************************************************
* Slow hwfn Queue (spq)
***************************************************************************/
void qed_spq_setup(struct qed_hwfn *p_hwfn)
{
Y
Yuval Mintz 已提交
491 492 493 494
	struct qed_spq *p_spq = p_hwfn->p_spq;
	struct qed_spq_entry *p_virt = NULL;
	dma_addr_t p_phys = 0;
	u32 i, capacity;
495 496 497 498 499 500 501 502 503 504 505

	INIT_LIST_HEAD(&p_spq->pending);
	INIT_LIST_HEAD(&p_spq->completion_pending);
	INIT_LIST_HEAD(&p_spq->free_pool);
	INIT_LIST_HEAD(&p_spq->unlimited_pending);
	spin_lock_init(&p_spq->lock);

	/* SPQ empty pool */
	p_phys	= p_spq->p_phys + offsetof(struct qed_spq_entry, ramrod);
	p_virt	= p_spq->p_virt;

Y
Yuval Mintz 已提交
506 507
	capacity = qed_chain_get_capacity(&p_spq->chain);
	for (i = 0; i < capacity; i++) {
Y
Yuval Mintz 已提交
508
		DMA_REGPAIR_LE(p_virt->elem.data_ptr, p_phys);
509 510 511 512 513 514 515 516 517 518 519 520

		list_add_tail(&p_virt->list, &p_spq->free_pool);

		p_virt++;
		p_phys += sizeof(struct qed_spq_entry);
	}

	/* Statistics */
	p_spq->normal_count		= 0;
	p_spq->comp_count		= 0;
	p_spq->comp_sent_count		= 0;
	p_spq->unlimited_pending_count	= 0;
521 522 523

	bitmap_zero(p_spq->p_comp_bitmap, SPQ_RING_SIZE);
	p_spq->comp_bitmap_idx = 0;
524 525 526 527 528 529 530 531 532 533 534

	/* SPQ cid, cannot fail */
	qed_cxt_acquire_cid(p_hwfn, PROTOCOLID_CORE, &p_spq->cid);
	qed_spq_hw_initialize(p_hwfn, p_spq);

	/* reset the chain itself */
	qed_chain_reset(&p_spq->chain);
}

int qed_spq_alloc(struct qed_hwfn *p_hwfn)
{
Y
Yuval Mintz 已提交
535 536 537 538
	struct qed_spq_entry *p_virt = NULL;
	struct qed_spq *p_spq = NULL;
	dma_addr_t p_phys = 0;
	u32 capacity;
539 540

	/* SPQ struct */
Y
Yuval Mintz 已提交
541
	p_spq = kzalloc(sizeof(struct qed_spq), GFP_KERNEL);
J
Joe Perches 已提交
542
	if (!p_spq)
543 544 545 546 547 548
		return -ENOMEM;

	/* SPQ ring  */
	if (qed_chain_alloc(p_hwfn->cdev,
			    QED_CHAIN_USE_TO_PRODUCE,
			    QED_CHAIN_MODE_SINGLE,
Y
Yuval Mintz 已提交
549
			    QED_CHAIN_CNT_TYPE_U16,
550 551
			    0,   /* N/A when the mode is SINGLE */
			    sizeof(struct slow_path_element),
552
			    &p_spq->chain, NULL))
553 554 555
		goto spq_allocate_fail;

	/* allocate and fill the SPQ elements (incl. ramrod data list) */
Y
Yuval Mintz 已提交
556
	capacity = qed_chain_get_capacity(&p_spq->chain);
557
	p_virt = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
J
Joe Perches 已提交
558
				    capacity * sizeof(struct qed_spq_entry),
Y
Yuval Mintz 已提交
559
				    &p_phys, GFP_KERNEL);
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
	if (!p_virt)
		goto spq_allocate_fail;

	p_spq->p_virt = p_virt;
	p_spq->p_phys = p_phys;
	p_hwfn->p_spq = p_spq;

	return 0;

spq_allocate_fail:
	qed_chain_free(p_hwfn->cdev, &p_spq->chain);
	kfree(p_spq);
	return -ENOMEM;
}

void qed_spq_free(struct qed_hwfn *p_hwfn)
{
	struct qed_spq *p_spq = p_hwfn->p_spq;
Y
Yuval Mintz 已提交
578
	u32 capacity;
579 580 581 582

	if (!p_spq)
		return;

Y
Yuval Mintz 已提交
583 584
	if (p_spq->p_virt) {
		capacity = qed_chain_get_capacity(&p_spq->chain);
585
		dma_free_coherent(&p_hwfn->cdev->pdev->dev,
Y
Yuval Mintz 已提交
586
				  capacity *
587
				  sizeof(struct qed_spq_entry),
Y
Yuval Mintz 已提交
588 589
				  p_spq->p_virt, p_spq->p_phys);
	}
590 591 592

	qed_chain_free(p_hwfn->cdev, &p_spq->chain);
	kfree(p_spq);
T
Tomer Tayar 已提交
593
	p_hwfn->p_spq = NULL;
594 595
}

Y
Yuval Mintz 已提交
596
int qed_spq_get_entry(struct qed_hwfn *p_hwfn, struct qed_spq_entry **pp_ent)
597 598 599 600 601 602 603 604 605 606
{
	struct qed_spq *p_spq = p_hwfn->p_spq;
	struct qed_spq_entry *p_ent = NULL;
	int rc = 0;

	spin_lock_bh(&p_spq->lock);

	if (list_empty(&p_spq->free_pool)) {
		p_ent = kzalloc(sizeof(*p_ent), GFP_ATOMIC);
		if (!p_ent) {
Y
Yuval Mintz 已提交
607 608
			DP_NOTICE(p_hwfn,
				  "Failed to allocate an SPQ entry for a pending ramrod\n");
609 610 611 612 613 614
			rc = -ENOMEM;
			goto out_unlock;
		}
		p_ent->queue = &p_spq->unlimited_pending;
	} else {
		p_ent = list_first_entry(&p_spq->free_pool,
Y
Yuval Mintz 已提交
615
					 struct qed_spq_entry, list);
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
		list_del(&p_ent->list);
		p_ent->queue = &p_spq->pending;
	}

	*pp_ent = p_ent;

out_unlock:
	spin_unlock_bh(&p_spq->lock);
	return rc;
}

/* Locked variant; Should be called while the SPQ lock is taken */
static void __qed_spq_return_entry(struct qed_hwfn *p_hwfn,
				   struct qed_spq_entry *p_ent)
{
	list_add_tail(&p_ent->list, &p_hwfn->p_spq->free_pool);
}

Y
Yuval Mintz 已提交
634
void qed_spq_return_entry(struct qed_hwfn *p_hwfn, struct qed_spq_entry *p_ent)
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
{
	spin_lock_bh(&p_hwfn->p_spq->lock);
	__qed_spq_return_entry(p_hwfn, p_ent);
	spin_unlock_bh(&p_hwfn->p_spq->lock);
}

/**
 * @brief qed_spq_add_entry - adds a new entry to the pending
 *        list. Should be used while lock is being held.
 *
 * Addes an entry to the pending list is there is room (en empty
 * element is available in the free_pool), or else places the
 * entry in the unlimited_pending pool.
 *
 * @param p_hwfn
 * @param p_ent
 * @param priority
 *
 * @return int
 */
Y
Yuval Mintz 已提交
655 656 657
static int qed_spq_add_entry(struct qed_hwfn *p_hwfn,
			     struct qed_spq_entry *p_ent,
			     enum spq_priority priority)
658 659 660 661 662 663 664 665 666 667
{
	struct qed_spq *p_spq = p_hwfn->p_spq;

	if (p_ent->queue == &p_spq->unlimited_pending) {

		if (list_empty(&p_spq->free_pool)) {
			list_add_tail(&p_ent->list, &p_spq->unlimited_pending);
			p_spq->unlimited_pending_count++;

			return 0;
668 669
		} else {
			struct qed_spq_entry *p_en2;
670

671
			p_en2 = list_first_entry(&p_spq->free_pool,
Y
Yuval Mintz 已提交
672
						 struct qed_spq_entry, list);
673 674 675 676 677 678 679
			list_del(&p_en2->list);

			/* Copy the ring element physical pointer to the new
			 * entry, since we are about to override the entire ring
			 * entry and don't want to lose the pointer.
			 */
			p_ent->elem.data_ptr = p_en2->elem.data_ptr;
680

681
			*p_en2 = *p_ent;
682

683 684 685
			/* EBLOCK responsible to free the allocated p_ent */
			if (p_ent->comp_mode != QED_SPQ_MODE_EBLOCK)
				kfree(p_ent);
686 687
			else
				p_ent->post_ent = p_en2;
688

689 690
			p_ent = p_en2;
		}
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
	}

	/* entry is to be placed in 'pending' queue */
	switch (priority) {
	case QED_SPQ_PRIORITY_NORMAL:
		list_add_tail(&p_ent->list, &p_spq->pending);
		p_spq->normal_count++;
		break;
	case QED_SPQ_PRIORITY_HIGH:
		list_add(&p_ent->list, &p_spq->pending);
		p_spq->high_count++;
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

/***************************************************************************
* Accessor
***************************************************************************/
u32 qed_spq_get_cid(struct qed_hwfn *p_hwfn)
{
	if (!p_hwfn->p_spq)
		return 0xffffffff;      /* illegal */
	return p_hwfn->p_spq->cid;
}

/***************************************************************************
* Posting new Ramrods
***************************************************************************/
static int qed_spq_post_list(struct qed_hwfn *p_hwfn,
Y
Yuval Mintz 已提交
724
			     struct list_head *head, u32 keep_reserve)
725 726 727 728 729 730 731 732
{
	struct qed_spq *p_spq = p_hwfn->p_spq;
	int rc;

	while (qed_chain_get_elem_left(&p_spq->chain) > keep_reserve &&
	       !list_empty(head)) {
		struct qed_spq_entry *p_ent =
			list_first_entry(head, struct qed_spq_entry, list);
Z
zhong jiang 已提交
733
		list_move_tail(&p_ent->list, &p_spq->completion_pending);
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
		p_spq->comp_sent_count++;

		rc = qed_spq_hw_post(p_hwfn, p_spq, p_ent);
		if (rc) {
			list_del(&p_ent->list);
			__qed_spq_return_entry(p_hwfn, p_ent);
			return rc;
		}
	}

	return 0;
}

static int qed_spq_pend_post(struct qed_hwfn *p_hwfn)
{
	struct qed_spq *p_spq = p_hwfn->p_spq;
	struct qed_spq_entry *p_ent = NULL;

	while (!list_empty(&p_spq->free_pool)) {
		if (list_empty(&p_spq->unlimited_pending))
			break;

		p_ent = list_first_entry(&p_spq->unlimited_pending,
Y
Yuval Mintz 已提交
757
					 struct qed_spq_entry, list);
758 759 760 761 762 763 764 765 766 767 768 769
		if (!p_ent)
			return -EINVAL;

		list_del(&p_ent->list);

		qed_spq_add_entry(p_hwfn, p_ent, p_ent->priority);
	}

	return qed_spq_post_list(p_hwfn, &p_spq->pending,
				 SPQ_HIGH_PRI_RESERVE_DEFAULT);
}

770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
/* Avoid overriding of SPQ entries when getting out-of-order completions, by
 * marking the completions in a bitmap and increasing the chain consumer only
 * for the first successive completed entries.
 */
static void qed_spq_comp_bmap_update(struct qed_hwfn *p_hwfn, __le16 echo)
{
	u16 pos = le16_to_cpu(echo) % SPQ_RING_SIZE;
	struct qed_spq *p_spq = p_hwfn->p_spq;

	__set_bit(pos, p_spq->p_comp_bitmap);
	while (test_bit(p_spq->comp_bitmap_idx,
			p_spq->p_comp_bitmap)) {
		__clear_bit(p_spq->comp_bitmap_idx,
			    p_spq->p_comp_bitmap);
		p_spq->comp_bitmap_idx++;
		qed_chain_return_produced(&p_spq->chain);
	}
}

789
int qed_spq_post(struct qed_hwfn *p_hwfn,
Y
Yuval Mintz 已提交
790
		 struct qed_spq_entry *p_ent, u8 *fw_return_code)
791 792 793 794
{
	int rc = 0;
	struct qed_spq *p_spq = p_hwfn ? p_hwfn->p_spq : NULL;
	bool b_ret_ent = true;
795
	bool eblock;
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813

	if (!p_hwfn)
		return -EINVAL;

	if (!p_ent) {
		DP_NOTICE(p_hwfn, "Got a NULL pointer\n");
		return -EINVAL;
	}

	/* Complete the entry */
	rc = qed_spq_fill_entry(p_hwfn, p_ent);

	spin_lock_bh(&p_spq->lock);

	/* Check return value after LOCK is taken for cleaner error flow */
	if (rc)
		goto spq_post_fail;

814 815 816 817 818
	/* Check if entry is in block mode before qed_spq_add_entry,
	 * which might kfree p_ent.
	 */
	eblock = (p_ent->comp_mode == QED_SPQ_MODE_EBLOCK);

819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
	/* Add the request to the pending queue */
	rc = qed_spq_add_entry(p_hwfn, p_ent, p_ent->priority);
	if (rc)
		goto spq_post_fail;

	rc = qed_spq_pend_post(p_hwfn);
	if (rc) {
		/* Since it's possible that pending failed for a different
		 * entry [although unlikely], the failed entry was already
		 * dealt with; No need to return it here.
		 */
		b_ret_ent = false;
		goto spq_post_fail;
	}

	spin_unlock_bh(&p_spq->lock);

836
	if (eblock) {
837 838 839 840 841
		/* For entries in QED BLOCK mode, the completion code cannot
		 * perform the necessary cleanup - if it did, we couldn't
		 * access p_ent here to see whether it's successful or not.
		 * Thus, after gaining the answer perform the cleanup here.
		 */
842 843
		rc = qed_spq_block(p_hwfn, p_ent, fw_return_code,
				   p_ent->queue == &p_spq->unlimited_pending);
844 845

		if (p_ent->queue == &p_spq->unlimited_pending) {
846 847
			struct qed_spq_entry *p_post_ent = p_ent->post_ent;

848
			kfree(p_ent);
849 850 851

			/* Return the entry which was actually posted */
			p_ent = p_post_ent;
852 853
		}

854 855 856 857 858 859 860 861 862 863 864
		if (rc)
			goto spq_post_fail2;

		/* return to pool */
		qed_spq_return_entry(p_hwfn, p_ent);
	}
	return rc;

spq_post_fail2:
	spin_lock_bh(&p_spq->lock);
	list_del(&p_ent->list);
865
	qed_spq_comp_bmap_update(p_hwfn, p_ent->elem.hdr.echo);
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894

spq_post_fail:
	/* return to the free pool */
	if (b_ret_ent)
		__qed_spq_return_entry(p_hwfn, p_ent);
	spin_unlock_bh(&p_spq->lock);

	return rc;
}

int qed_spq_completion(struct qed_hwfn *p_hwfn,
		       __le16 echo,
		       u8 fw_return_code,
		       union event_ring_data *p_data)
{
	struct qed_spq		*p_spq;
	struct qed_spq_entry	*p_ent = NULL;
	struct qed_spq_entry	*tmp;
	struct qed_spq_entry	*found = NULL;
	int			rc;

	if (!p_hwfn)
		return -EINVAL;

	p_spq = p_hwfn->p_spq;
	if (!p_spq)
		return -EINVAL;

	spin_lock_bh(&p_spq->lock);
Y
Yuval Mintz 已提交
895
	list_for_each_entry_safe(p_ent, tmp, &p_spq->completion_pending, list) {
896 897
		if (p_ent->elem.hdr.echo == echo) {
			list_del(&p_ent->list);
898
			qed_spq_comp_bmap_update(p_hwfn, echo);
899 900 901 902
			p_spq->comp_count++;
			found = p_ent;
			break;
		}
903 904 905 906 907 908 909 910

		/* This is relatively uncommon - depends on scenarios
		 * which have mutliple per-PF sent ramrods.
		 */
		DP_VERBOSE(p_hwfn, QED_MSG_SPQ,
			   "Got completion for echo %04x - doesn't match echo %04x in completion pending list\n",
			   le16_to_cpu(echo),
			   le16_to_cpu(p_ent->elem.hdr.echo));
911 912 913 914 915 916 917 918 919
	}

	/* Release lock before callback, as callback may post
	 * an additional ramrod.
	 */
	spin_unlock_bh(&p_spq->lock);

	if (!found) {
		DP_NOTICE(p_hwfn,
Y
Yuval Mintz 已提交
920 921
			  "Failed to find an entry this EQE [echo %04x] completes\n",
			  le16_to_cpu(echo));
922 923 924
		return -EEXIST;
	}

Y
Yuval Mintz 已提交
925 926 927
	DP_VERBOSE(p_hwfn, QED_MSG_SPQ,
		   "Complete EQE [echo %04x]: func %p cookie %p)\n",
		   le16_to_cpu(echo),
928 929 930 931
		   p_ent->comp_cb.function, p_ent->comp_cb.cookie);
	if (found->comp_cb.function)
		found->comp_cb.function(p_hwfn, found->comp_cb.cookie, p_data,
					fw_return_code);
Y
Yuval Mintz 已提交
932 933 934 935
	else
		DP_VERBOSE(p_hwfn,
			   QED_MSG_SPQ,
			   "Got a completion without a callback function\n");
936

937
	if (found->comp_mode != QED_SPQ_MODE_EBLOCK)
938
		/* EBLOCK  is responsible for returning its own entry into the
939
		 * free list.
940
		 */
941 942 943 944 945 946 947 948 949 950
		qed_spq_return_entry(p_hwfn, found);

	/* Attempt to post pending requests */
	spin_lock_bh(&p_spq->lock);
	rc = qed_spq_pend_post(p_hwfn);
	spin_unlock_bh(&p_spq->lock);

	return rc;
}

T
Tomer Tayar 已提交
951
int qed_consq_alloc(struct qed_hwfn *p_hwfn)
952 953 954 955
{
	struct qed_consq *p_consq;

	/* Allocate ConsQ struct */
956
	p_consq = kzalloc(sizeof(*p_consq), GFP_KERNEL);
J
Joe Perches 已提交
957
	if (!p_consq)
T
Tomer Tayar 已提交
958
		return -ENOMEM;
959 960 961 962 963

	/* Allocate and initialize EQ chain*/
	if (qed_chain_alloc(p_hwfn->cdev,
			    QED_CHAIN_USE_TO_PRODUCE,
			    QED_CHAIN_MODE_PBL,
Y
Yuval Mintz 已提交
964
			    QED_CHAIN_CNT_TYPE_U16,
965
			    QED_CHAIN_PAGE_SIZE / 0x80,
966
			    0x80, &p_consq->chain, NULL))
967 968
		goto consq_allocate_fail;

T
Tomer Tayar 已提交
969 970
	p_hwfn->p_consq = p_consq;
	return 0;
971 972

consq_allocate_fail:
T
Tomer Tayar 已提交
973 974
	kfree(p_consq);
	return -ENOMEM;
975 976
}

T
Tomer Tayar 已提交
977
void qed_consq_setup(struct qed_hwfn *p_hwfn)
978
{
T
Tomer Tayar 已提交
979
	qed_chain_reset(&p_hwfn->p_consq->chain);
980 981
}

T
Tomer Tayar 已提交
982
void qed_consq_free(struct qed_hwfn *p_hwfn)
983
{
T
Tomer Tayar 已提交
984
	if (!p_hwfn->p_consq)
985
		return;
T
Tomer Tayar 已提交
986 987 988 989 990

	qed_chain_free(p_hwfn->cdev, &p_hwfn->p_consq->chain);

	kfree(p_hwfn->p_consq);
	p_hwfn->p_consq = NULL;
991
}