Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 1 | /* QLogic qed NIC Driver |
| 2 | * Copyright (c) 2015 QLogic Corporation |
| 3 | * |
| 4 | * This software is available under the terms of the GNU General Public License |
| 5 | * (GPL) Version 2, available from the file COPYING in the main directory of |
| 6 | * this source tree. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/types.h> |
| 10 | #include <asm/byteorder.h> |
| 11 | #include <linux/io.h> |
| 12 | #include <linux/delay.h> |
| 13 | #include <linux/dma-mapping.h> |
| 14 | #include <linux/errno.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/list.h> |
| 17 | #include <linux/pci.h> |
| 18 | #include <linux/slab.h> |
| 19 | #include <linux/spinlock.h> |
| 20 | #include <linux/string.h> |
| 21 | #include "qed.h" |
| 22 | #include "qed_cxt.h" |
| 23 | #include "qed_dev_api.h" |
| 24 | #include "qed_hsi.h" |
| 25 | #include "qed_hw.h" |
| 26 | #include "qed_int.h" |
| 27 | #include "qed_mcp.h" |
| 28 | #include "qed_reg_addr.h" |
| 29 | #include "qed_sp.h" |
Yuval Mintz | 37bff2b | 2016-05-11 16:36:13 +0300 | [diff] [blame^] | 30 | #include "qed_sriov.h" |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 31 | |
| 32 | /*************************************************************************** |
| 33 | * Structures & Definitions |
| 34 | ***************************************************************************/ |
| 35 | |
| 36 | #define SPQ_HIGH_PRI_RESERVE_DEFAULT (1) |
| 37 | #define SPQ_BLOCK_SLEEP_LENGTH (1000) |
| 38 | |
| 39 | /*************************************************************************** |
| 40 | * Blocking Imp. (BLOCK/EBLOCK mode) |
| 41 | ***************************************************************************/ |
| 42 | static void qed_spq_blocking_cb(struct qed_hwfn *p_hwfn, |
| 43 | void *cookie, |
| 44 | union event_ring_data *data, |
| 45 | u8 fw_return_code) |
| 46 | { |
| 47 | struct qed_spq_comp_done *comp_done; |
| 48 | |
| 49 | comp_done = (struct qed_spq_comp_done *)cookie; |
| 50 | |
| 51 | comp_done->done = 0x1; |
| 52 | comp_done->fw_return_code = fw_return_code; |
| 53 | |
| 54 | /* make update visible to waiting thread */ |
| 55 | smp_wmb(); |
| 56 | } |
| 57 | |
| 58 | static int qed_spq_block(struct qed_hwfn *p_hwfn, |
| 59 | struct qed_spq_entry *p_ent, |
| 60 | u8 *p_fw_ret) |
| 61 | { |
| 62 | int sleep_count = SPQ_BLOCK_SLEEP_LENGTH; |
| 63 | struct qed_spq_comp_done *comp_done; |
| 64 | int rc; |
| 65 | |
| 66 | comp_done = (struct qed_spq_comp_done *)p_ent->comp_cb.cookie; |
| 67 | while (sleep_count) { |
| 68 | /* validate we receive completion update */ |
| 69 | smp_rmb(); |
| 70 | if (comp_done->done == 1) { |
| 71 | if (p_fw_ret) |
| 72 | *p_fw_ret = comp_done->fw_return_code; |
| 73 | return 0; |
| 74 | } |
| 75 | usleep_range(5000, 10000); |
| 76 | sleep_count--; |
| 77 | } |
| 78 | |
| 79 | DP_INFO(p_hwfn, "Ramrod is stuck, requesting MCP drain\n"); |
| 80 | rc = qed_mcp_drain(p_hwfn, p_hwfn->p_main_ptt); |
| 81 | if (rc != 0) |
| 82 | DP_NOTICE(p_hwfn, "MCP drain failed\n"); |
| 83 | |
| 84 | /* Retry after drain */ |
| 85 | sleep_count = SPQ_BLOCK_SLEEP_LENGTH; |
| 86 | while (sleep_count) { |
| 87 | /* validate we receive completion update */ |
| 88 | smp_rmb(); |
| 89 | if (comp_done->done == 1) { |
| 90 | if (p_fw_ret) |
| 91 | *p_fw_ret = comp_done->fw_return_code; |
| 92 | return 0; |
| 93 | } |
| 94 | usleep_range(5000, 10000); |
| 95 | sleep_count--; |
| 96 | } |
| 97 | |
| 98 | if (comp_done->done == 1) { |
| 99 | if (p_fw_ret) |
| 100 | *p_fw_ret = comp_done->fw_return_code; |
| 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | DP_NOTICE(p_hwfn, "Ramrod is stuck, MCP drain failed\n"); |
| 105 | |
| 106 | return -EBUSY; |
| 107 | } |
| 108 | |
| 109 | /*************************************************************************** |
| 110 | * SPQ entries inner API |
| 111 | ***************************************************************************/ |
| 112 | static int |
| 113 | qed_spq_fill_entry(struct qed_hwfn *p_hwfn, |
| 114 | struct qed_spq_entry *p_ent) |
| 115 | { |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 116 | p_ent->flags = 0; |
| 117 | |
| 118 | switch (p_ent->comp_mode) { |
| 119 | case QED_SPQ_MODE_EBLOCK: |
| 120 | case QED_SPQ_MODE_BLOCK: |
| 121 | p_ent->comp_cb.function = qed_spq_blocking_cb; |
| 122 | break; |
| 123 | case QED_SPQ_MODE_CB: |
| 124 | break; |
| 125 | default: |
| 126 | DP_NOTICE(p_hwfn, "Unknown SPQE completion mode %d\n", |
| 127 | p_ent->comp_mode); |
| 128 | return -EINVAL; |
| 129 | } |
| 130 | |
| 131 | DP_VERBOSE(p_hwfn, QED_MSG_SPQ, |
| 132 | "Ramrod header: [CID 0x%08x CMD 0x%02x protocol 0x%02x] Data pointer: [%08x:%08x] Completion Mode: %s\n", |
| 133 | p_ent->elem.hdr.cid, |
| 134 | p_ent->elem.hdr.cmd_id, |
| 135 | p_ent->elem.hdr.protocol_id, |
| 136 | p_ent->elem.data_ptr.hi, |
| 137 | p_ent->elem.data_ptr.lo, |
| 138 | D_TRINE(p_ent->comp_mode, QED_SPQ_MODE_EBLOCK, |
| 139 | QED_SPQ_MODE_BLOCK, "MODE_EBLOCK", "MODE_BLOCK", |
| 140 | "MODE_CB")); |
| 141 | |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | /*************************************************************************** |
| 146 | * HSI access |
| 147 | ***************************************************************************/ |
| 148 | static void qed_spq_hw_initialize(struct qed_hwfn *p_hwfn, |
| 149 | struct qed_spq *p_spq) |
| 150 | { |
| 151 | u16 pq; |
| 152 | struct qed_cxt_info cxt_info; |
| 153 | struct core_conn_context *p_cxt; |
| 154 | union qed_qm_pq_params pq_params; |
| 155 | int rc; |
| 156 | |
| 157 | cxt_info.iid = p_spq->cid; |
| 158 | |
| 159 | rc = qed_cxt_get_cid_info(p_hwfn, &cxt_info); |
| 160 | |
| 161 | if (rc < 0) { |
| 162 | DP_NOTICE(p_hwfn, "Cannot find context info for cid=%d\n", |
| 163 | p_spq->cid); |
| 164 | return; |
| 165 | } |
| 166 | |
| 167 | p_cxt = cxt_info.p_cxt; |
| 168 | |
| 169 | SET_FIELD(p_cxt->xstorm_ag_context.flags10, |
| 170 | XSTORM_CORE_CONN_AG_CTX_DQ_CF_EN, 1); |
| 171 | SET_FIELD(p_cxt->xstorm_ag_context.flags1, |
| 172 | XSTORM_CORE_CONN_AG_CTX_DQ_CF_ACTIVE, 1); |
| 173 | SET_FIELD(p_cxt->xstorm_ag_context.flags9, |
| 174 | XSTORM_CORE_CONN_AG_CTX_CONSOLID_PROD_CF_EN, 1); |
| 175 | |
| 176 | /* QM physical queue */ |
| 177 | memset(&pq_params, 0, sizeof(pq_params)); |
| 178 | pq_params.core.tc = LB_TC; |
| 179 | pq = qed_get_qm_pq(p_hwfn, PROTOCOLID_CORE, &pq_params); |
| 180 | p_cxt->xstorm_ag_context.physical_q0 = cpu_to_le16(pq); |
| 181 | |
| 182 | p_cxt->xstorm_st_context.spq_base_lo = |
| 183 | DMA_LO_LE(p_spq->chain.p_phys_addr); |
| 184 | p_cxt->xstorm_st_context.spq_base_hi = |
| 185 | DMA_HI_LE(p_spq->chain.p_phys_addr); |
| 186 | |
Yuval Mintz | 9449459 | 2016-02-21 11:40:10 +0200 | [diff] [blame] | 187 | DMA_REGPAIR_LE(p_cxt->xstorm_st_context.consolid_base_addr, |
| 188 | p_hwfn->p_consq->chain.p_phys_addr); |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | static int qed_spq_hw_post(struct qed_hwfn *p_hwfn, |
| 192 | struct qed_spq *p_spq, |
| 193 | struct qed_spq_entry *p_ent) |
| 194 | { |
Tomer Tayar | 76a9a36 | 2015-12-07 06:25:57 -0500 | [diff] [blame] | 195 | struct qed_chain *p_chain = &p_hwfn->p_spq->chain; |
| 196 | u16 echo = qed_chain_get_prod_idx(p_chain); |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 197 | struct slow_path_element *elem; |
| 198 | struct core_db_data db; |
| 199 | |
Tomer Tayar | 76a9a36 | 2015-12-07 06:25:57 -0500 | [diff] [blame] | 200 | p_ent->elem.hdr.echo = cpu_to_le16(echo); |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 201 | elem = qed_chain_produce(p_chain); |
| 202 | if (!elem) { |
| 203 | DP_NOTICE(p_hwfn, "Failed to produce from SPQ chain\n"); |
| 204 | return -EINVAL; |
| 205 | } |
| 206 | |
| 207 | *elem = p_ent->elem; /* struct assignment */ |
| 208 | |
| 209 | /* send a doorbell on the slow hwfn session */ |
| 210 | memset(&db, 0, sizeof(db)); |
| 211 | SET_FIELD(db.params, CORE_DB_DATA_DEST, DB_DEST_XCM); |
| 212 | SET_FIELD(db.params, CORE_DB_DATA_AGG_CMD, DB_AGG_CMD_SET); |
| 213 | SET_FIELD(db.params, CORE_DB_DATA_AGG_VAL_SEL, |
| 214 | DQ_XCM_CORE_SPQ_PROD_CMD); |
| 215 | db.agg_flags = DQ_XCM_CORE_DQ_CF_CMD; |
| 216 | |
| 217 | /* validate producer is up to-date */ |
| 218 | rmb(); |
| 219 | |
| 220 | db.spq_prod = cpu_to_le16(qed_chain_get_prod_idx(p_chain)); |
| 221 | |
| 222 | /* do not reorder */ |
| 223 | barrier(); |
| 224 | |
| 225 | DOORBELL(p_hwfn, qed_db_addr(p_spq->cid, DQ_DEMS_LEGACY), *(u32 *)&db); |
| 226 | |
| 227 | /* make sure doorbell is rang */ |
| 228 | mmiowb(); |
| 229 | |
| 230 | DP_VERBOSE(p_hwfn, QED_MSG_SPQ, |
| 231 | "Doorbelled [0x%08x, CID 0x%08x] with Flags: %02x agg_params: %02x, prod: %04x\n", |
| 232 | qed_db_addr(p_spq->cid, DQ_DEMS_LEGACY), |
| 233 | p_spq->cid, db.params, db.agg_flags, |
| 234 | qed_chain_get_prod_idx(p_chain)); |
| 235 | |
| 236 | return 0; |
| 237 | } |
| 238 | |
| 239 | /*************************************************************************** |
| 240 | * Asynchronous events |
| 241 | ***************************************************************************/ |
| 242 | static int |
| 243 | qed_async_event_completion(struct qed_hwfn *p_hwfn, |
| 244 | struct event_ring_entry *p_eqe) |
| 245 | { |
Yuval Mintz | 37bff2b | 2016-05-11 16:36:13 +0300 | [diff] [blame^] | 246 | switch (p_eqe->protocol_id) { |
| 247 | case PROTOCOLID_COMMON: |
| 248 | return qed_sriov_eqe_event(p_hwfn, |
| 249 | p_eqe->opcode, |
| 250 | p_eqe->echo, &p_eqe->data); |
| 251 | default: |
| 252 | DP_NOTICE(p_hwfn, |
| 253 | "Unknown Async completion for protocol: %d\n", |
| 254 | p_eqe->protocol_id); |
| 255 | return -EINVAL; |
| 256 | } |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | /*************************************************************************** |
| 260 | * EQ API |
| 261 | ***************************************************************************/ |
| 262 | void qed_eq_prod_update(struct qed_hwfn *p_hwfn, |
| 263 | u16 prod) |
| 264 | { |
| 265 | u32 addr = GTT_BAR0_MAP_REG_USDM_RAM + |
| 266 | USTORM_EQE_CONS_OFFSET(p_hwfn->rel_pf_id); |
| 267 | |
| 268 | REG_WR16(p_hwfn, addr, prod); |
| 269 | |
| 270 | /* keep prod updates ordered */ |
| 271 | mmiowb(); |
| 272 | } |
| 273 | |
| 274 | int qed_eq_completion(struct qed_hwfn *p_hwfn, |
| 275 | void *cookie) |
| 276 | |
| 277 | { |
| 278 | struct qed_eq *p_eq = cookie; |
| 279 | struct qed_chain *p_chain = &p_eq->chain; |
| 280 | int rc = 0; |
| 281 | |
| 282 | /* take a snapshot of the FW consumer */ |
| 283 | u16 fw_cons_idx = le16_to_cpu(*p_eq->p_fw_cons); |
| 284 | |
| 285 | DP_VERBOSE(p_hwfn, QED_MSG_SPQ, "fw_cons_idx %x\n", fw_cons_idx); |
| 286 | |
| 287 | /* Need to guarantee the fw_cons index we use points to a usuable |
| 288 | * element (to comply with our chain), so our macros would comply |
| 289 | */ |
| 290 | if ((fw_cons_idx & qed_chain_get_usable_per_page(p_chain)) == |
| 291 | qed_chain_get_usable_per_page(p_chain)) |
| 292 | fw_cons_idx += qed_chain_get_unusable_per_page(p_chain); |
| 293 | |
| 294 | /* Complete current segment of eq entries */ |
| 295 | while (fw_cons_idx != qed_chain_get_cons_idx(p_chain)) { |
| 296 | struct event_ring_entry *p_eqe = qed_chain_consume(p_chain); |
| 297 | |
| 298 | if (!p_eqe) { |
| 299 | rc = -EINVAL; |
| 300 | break; |
| 301 | } |
| 302 | |
| 303 | DP_VERBOSE(p_hwfn, QED_MSG_SPQ, |
| 304 | "op %x prot %x res0 %x echo %x fwret %x flags %x\n", |
| 305 | p_eqe->opcode, |
| 306 | p_eqe->protocol_id, |
| 307 | p_eqe->reserved0, |
| 308 | le16_to_cpu(p_eqe->echo), |
| 309 | p_eqe->fw_return_code, |
| 310 | p_eqe->flags); |
| 311 | |
| 312 | if (GET_FIELD(p_eqe->flags, EVENT_RING_ENTRY_ASYNC)) { |
| 313 | if (qed_async_event_completion(p_hwfn, p_eqe)) |
| 314 | rc = -EINVAL; |
| 315 | } else if (qed_spq_completion(p_hwfn, |
| 316 | p_eqe->echo, |
| 317 | p_eqe->fw_return_code, |
| 318 | &p_eqe->data)) { |
| 319 | rc = -EINVAL; |
| 320 | } |
| 321 | |
| 322 | qed_chain_recycle_consumed(p_chain); |
| 323 | } |
| 324 | |
| 325 | qed_eq_prod_update(p_hwfn, qed_chain_get_prod_idx(p_chain)); |
| 326 | |
| 327 | return rc; |
| 328 | } |
| 329 | |
| 330 | struct qed_eq *qed_eq_alloc(struct qed_hwfn *p_hwfn, |
| 331 | u16 num_elem) |
| 332 | { |
| 333 | struct qed_eq *p_eq; |
| 334 | |
| 335 | /* Allocate EQ struct */ |
Yuval Mintz | 60fffb3 | 2016-02-21 11:40:07 +0200 | [diff] [blame] | 336 | p_eq = kzalloc(sizeof(*p_eq), GFP_KERNEL); |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 337 | if (!p_eq) { |
| 338 | DP_NOTICE(p_hwfn, "Failed to allocate `struct qed_eq'\n"); |
| 339 | return NULL; |
| 340 | } |
| 341 | |
| 342 | /* Allocate and initialize EQ chain*/ |
| 343 | if (qed_chain_alloc(p_hwfn->cdev, |
| 344 | QED_CHAIN_USE_TO_PRODUCE, |
| 345 | QED_CHAIN_MODE_PBL, |
| 346 | num_elem, |
| 347 | sizeof(union event_ring_element), |
| 348 | &p_eq->chain)) { |
| 349 | DP_NOTICE(p_hwfn, "Failed to allocate eq chain\n"); |
| 350 | goto eq_allocate_fail; |
| 351 | } |
| 352 | |
| 353 | /* register EQ completion on the SP SB */ |
| 354 | qed_int_register_cb(p_hwfn, |
| 355 | qed_eq_completion, |
| 356 | p_eq, |
| 357 | &p_eq->eq_sb_index, |
| 358 | &p_eq->p_fw_cons); |
| 359 | |
| 360 | return p_eq; |
| 361 | |
| 362 | eq_allocate_fail: |
| 363 | qed_eq_free(p_hwfn, p_eq); |
| 364 | return NULL; |
| 365 | } |
| 366 | |
| 367 | void qed_eq_setup(struct qed_hwfn *p_hwfn, |
| 368 | struct qed_eq *p_eq) |
| 369 | { |
| 370 | qed_chain_reset(&p_eq->chain); |
| 371 | } |
| 372 | |
| 373 | void qed_eq_free(struct qed_hwfn *p_hwfn, |
| 374 | struct qed_eq *p_eq) |
| 375 | { |
| 376 | if (!p_eq) |
| 377 | return; |
| 378 | qed_chain_free(p_hwfn->cdev, &p_eq->chain); |
| 379 | kfree(p_eq); |
| 380 | } |
| 381 | |
| 382 | /*************************************************************************** |
Manish Chopra | cee4d26 | 2015-10-26 11:02:28 +0200 | [diff] [blame] | 383 | * CQE API - manipulate EQ functionality |
| 384 | ***************************************************************************/ |
| 385 | static int qed_cqe_completion( |
| 386 | struct qed_hwfn *p_hwfn, |
| 387 | struct eth_slow_path_rx_cqe *cqe, |
| 388 | enum protocol_type protocol) |
| 389 | { |
| 390 | /* @@@tmp - it's possible we'll eventually want to handle some |
| 391 | * actual commands that can arrive here, but for now this is only |
| 392 | * used to complete the ramrod using the echo value on the cqe |
| 393 | */ |
| 394 | return qed_spq_completion(p_hwfn, cqe->echo, 0, NULL); |
| 395 | } |
| 396 | |
| 397 | int qed_eth_cqe_completion(struct qed_hwfn *p_hwfn, |
| 398 | struct eth_slow_path_rx_cqe *cqe) |
| 399 | { |
| 400 | int rc; |
| 401 | |
| 402 | rc = qed_cqe_completion(p_hwfn, cqe, PROTOCOLID_ETH); |
| 403 | if (rc) |
| 404 | DP_NOTICE(p_hwfn, |
| 405 | "Failed to handle RXQ CQE [cmd 0x%02x]\n", |
| 406 | cqe->ramrod_cmd_id); |
| 407 | |
| 408 | return rc; |
| 409 | } |
| 410 | |
| 411 | /*************************************************************************** |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 412 | * Slow hwfn Queue (spq) |
| 413 | ***************************************************************************/ |
| 414 | void qed_spq_setup(struct qed_hwfn *p_hwfn) |
| 415 | { |
| 416 | struct qed_spq *p_spq = p_hwfn->p_spq; |
| 417 | struct qed_spq_entry *p_virt = NULL; |
| 418 | dma_addr_t p_phys = 0; |
| 419 | unsigned int i = 0; |
| 420 | |
| 421 | INIT_LIST_HEAD(&p_spq->pending); |
| 422 | INIT_LIST_HEAD(&p_spq->completion_pending); |
| 423 | INIT_LIST_HEAD(&p_spq->free_pool); |
| 424 | INIT_LIST_HEAD(&p_spq->unlimited_pending); |
| 425 | spin_lock_init(&p_spq->lock); |
| 426 | |
| 427 | /* SPQ empty pool */ |
| 428 | p_phys = p_spq->p_phys + offsetof(struct qed_spq_entry, ramrod); |
| 429 | p_virt = p_spq->p_virt; |
| 430 | |
| 431 | for (i = 0; i < p_spq->chain.capacity; i++) { |
Yuval Mintz | 9449459 | 2016-02-21 11:40:10 +0200 | [diff] [blame] | 432 | DMA_REGPAIR_LE(p_virt->elem.data_ptr, p_phys); |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 433 | |
| 434 | list_add_tail(&p_virt->list, &p_spq->free_pool); |
| 435 | |
| 436 | p_virt++; |
| 437 | p_phys += sizeof(struct qed_spq_entry); |
| 438 | } |
| 439 | |
| 440 | /* Statistics */ |
| 441 | p_spq->normal_count = 0; |
| 442 | p_spq->comp_count = 0; |
| 443 | p_spq->comp_sent_count = 0; |
| 444 | p_spq->unlimited_pending_count = 0; |
Tomer Tayar | 76a9a36 | 2015-12-07 06:25:57 -0500 | [diff] [blame] | 445 | |
| 446 | bitmap_zero(p_spq->p_comp_bitmap, SPQ_RING_SIZE); |
| 447 | p_spq->comp_bitmap_idx = 0; |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 448 | |
| 449 | /* SPQ cid, cannot fail */ |
| 450 | qed_cxt_acquire_cid(p_hwfn, PROTOCOLID_CORE, &p_spq->cid); |
| 451 | qed_spq_hw_initialize(p_hwfn, p_spq); |
| 452 | |
| 453 | /* reset the chain itself */ |
| 454 | qed_chain_reset(&p_spq->chain); |
| 455 | } |
| 456 | |
| 457 | int qed_spq_alloc(struct qed_hwfn *p_hwfn) |
| 458 | { |
| 459 | struct qed_spq *p_spq = NULL; |
| 460 | dma_addr_t p_phys = 0; |
| 461 | struct qed_spq_entry *p_virt = NULL; |
| 462 | |
| 463 | /* SPQ struct */ |
| 464 | p_spq = |
Yuval Mintz | 60fffb3 | 2016-02-21 11:40:07 +0200 | [diff] [blame] | 465 | kzalloc(sizeof(struct qed_spq), GFP_KERNEL); |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 466 | if (!p_spq) { |
| 467 | DP_NOTICE(p_hwfn, "Failed to allocate `struct qed_spq'\n"); |
| 468 | return -ENOMEM; |
| 469 | } |
| 470 | |
| 471 | /* SPQ ring */ |
| 472 | if (qed_chain_alloc(p_hwfn->cdev, |
| 473 | QED_CHAIN_USE_TO_PRODUCE, |
| 474 | QED_CHAIN_MODE_SINGLE, |
| 475 | 0, /* N/A when the mode is SINGLE */ |
| 476 | sizeof(struct slow_path_element), |
| 477 | &p_spq->chain)) { |
| 478 | DP_NOTICE(p_hwfn, "Failed to allocate spq chain\n"); |
| 479 | goto spq_allocate_fail; |
| 480 | } |
| 481 | |
| 482 | /* allocate and fill the SPQ elements (incl. ramrod data list) */ |
| 483 | p_virt = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev, |
| 484 | p_spq->chain.capacity * |
| 485 | sizeof(struct qed_spq_entry), |
| 486 | &p_phys, |
| 487 | GFP_KERNEL); |
| 488 | |
| 489 | if (!p_virt) |
| 490 | goto spq_allocate_fail; |
| 491 | |
| 492 | p_spq->p_virt = p_virt; |
| 493 | p_spq->p_phys = p_phys; |
| 494 | p_hwfn->p_spq = p_spq; |
| 495 | |
| 496 | return 0; |
| 497 | |
| 498 | spq_allocate_fail: |
| 499 | qed_chain_free(p_hwfn->cdev, &p_spq->chain); |
| 500 | kfree(p_spq); |
| 501 | return -ENOMEM; |
| 502 | } |
| 503 | |
| 504 | void qed_spq_free(struct qed_hwfn *p_hwfn) |
| 505 | { |
| 506 | struct qed_spq *p_spq = p_hwfn->p_spq; |
| 507 | |
| 508 | if (!p_spq) |
| 509 | return; |
| 510 | |
| 511 | if (p_spq->p_virt) |
| 512 | dma_free_coherent(&p_hwfn->cdev->pdev->dev, |
| 513 | p_spq->chain.capacity * |
| 514 | sizeof(struct qed_spq_entry), |
| 515 | p_spq->p_virt, |
| 516 | p_spq->p_phys); |
| 517 | |
| 518 | qed_chain_free(p_hwfn->cdev, &p_spq->chain); |
| 519 | ; |
| 520 | kfree(p_spq); |
| 521 | } |
| 522 | |
| 523 | int |
| 524 | qed_spq_get_entry(struct qed_hwfn *p_hwfn, |
| 525 | struct qed_spq_entry **pp_ent) |
| 526 | { |
| 527 | struct qed_spq *p_spq = p_hwfn->p_spq; |
| 528 | struct qed_spq_entry *p_ent = NULL; |
| 529 | int rc = 0; |
| 530 | |
| 531 | spin_lock_bh(&p_spq->lock); |
| 532 | |
| 533 | if (list_empty(&p_spq->free_pool)) { |
| 534 | p_ent = kzalloc(sizeof(*p_ent), GFP_ATOMIC); |
| 535 | if (!p_ent) { |
| 536 | rc = -ENOMEM; |
| 537 | goto out_unlock; |
| 538 | } |
| 539 | p_ent->queue = &p_spq->unlimited_pending; |
| 540 | } else { |
| 541 | p_ent = list_first_entry(&p_spq->free_pool, |
| 542 | struct qed_spq_entry, |
| 543 | list); |
| 544 | list_del(&p_ent->list); |
| 545 | p_ent->queue = &p_spq->pending; |
| 546 | } |
| 547 | |
| 548 | *pp_ent = p_ent; |
| 549 | |
| 550 | out_unlock: |
| 551 | spin_unlock_bh(&p_spq->lock); |
| 552 | return rc; |
| 553 | } |
| 554 | |
| 555 | /* Locked variant; Should be called while the SPQ lock is taken */ |
| 556 | static void __qed_spq_return_entry(struct qed_hwfn *p_hwfn, |
| 557 | struct qed_spq_entry *p_ent) |
| 558 | { |
| 559 | list_add_tail(&p_ent->list, &p_hwfn->p_spq->free_pool); |
| 560 | } |
| 561 | |
| 562 | void qed_spq_return_entry(struct qed_hwfn *p_hwfn, |
| 563 | struct qed_spq_entry *p_ent) |
| 564 | { |
| 565 | spin_lock_bh(&p_hwfn->p_spq->lock); |
| 566 | __qed_spq_return_entry(p_hwfn, p_ent); |
| 567 | spin_unlock_bh(&p_hwfn->p_spq->lock); |
| 568 | } |
| 569 | |
| 570 | /** |
| 571 | * @brief qed_spq_add_entry - adds a new entry to the pending |
| 572 | * list. Should be used while lock is being held. |
| 573 | * |
| 574 | * Addes an entry to the pending list is there is room (en empty |
| 575 | * element is available in the free_pool), or else places the |
| 576 | * entry in the unlimited_pending pool. |
| 577 | * |
| 578 | * @param p_hwfn |
| 579 | * @param p_ent |
| 580 | * @param priority |
| 581 | * |
| 582 | * @return int |
| 583 | */ |
| 584 | static int |
| 585 | qed_spq_add_entry(struct qed_hwfn *p_hwfn, |
| 586 | struct qed_spq_entry *p_ent, |
| 587 | enum spq_priority priority) |
| 588 | { |
| 589 | struct qed_spq *p_spq = p_hwfn->p_spq; |
| 590 | |
| 591 | if (p_ent->queue == &p_spq->unlimited_pending) { |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 592 | |
| 593 | if (list_empty(&p_spq->free_pool)) { |
| 594 | list_add_tail(&p_ent->list, &p_spq->unlimited_pending); |
| 595 | p_spq->unlimited_pending_count++; |
| 596 | |
| 597 | return 0; |
Tomer Tayar | 76a9a36 | 2015-12-07 06:25:57 -0500 | [diff] [blame] | 598 | } else { |
| 599 | struct qed_spq_entry *p_en2; |
| 600 | |
| 601 | p_en2 = list_first_entry(&p_spq->free_pool, |
| 602 | struct qed_spq_entry, |
| 603 | list); |
| 604 | list_del(&p_en2->list); |
| 605 | |
| 606 | /* Copy the ring element physical pointer to the new |
| 607 | * entry, since we are about to override the entire ring |
| 608 | * entry and don't want to lose the pointer. |
| 609 | */ |
| 610 | p_ent->elem.data_ptr = p_en2->elem.data_ptr; |
| 611 | |
| 612 | *p_en2 = *p_ent; |
| 613 | |
| 614 | kfree(p_ent); |
| 615 | |
| 616 | p_ent = p_en2; |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 617 | } |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | /* entry is to be placed in 'pending' queue */ |
| 621 | switch (priority) { |
| 622 | case QED_SPQ_PRIORITY_NORMAL: |
| 623 | list_add_tail(&p_ent->list, &p_spq->pending); |
| 624 | p_spq->normal_count++; |
| 625 | break; |
| 626 | case QED_SPQ_PRIORITY_HIGH: |
| 627 | list_add(&p_ent->list, &p_spq->pending); |
| 628 | p_spq->high_count++; |
| 629 | break; |
| 630 | default: |
| 631 | return -EINVAL; |
| 632 | } |
| 633 | |
| 634 | return 0; |
| 635 | } |
| 636 | |
| 637 | /*************************************************************************** |
| 638 | * Accessor |
| 639 | ***************************************************************************/ |
| 640 | u32 qed_spq_get_cid(struct qed_hwfn *p_hwfn) |
| 641 | { |
| 642 | if (!p_hwfn->p_spq) |
| 643 | return 0xffffffff; /* illegal */ |
| 644 | return p_hwfn->p_spq->cid; |
| 645 | } |
| 646 | |
| 647 | /*************************************************************************** |
| 648 | * Posting new Ramrods |
| 649 | ***************************************************************************/ |
| 650 | static int qed_spq_post_list(struct qed_hwfn *p_hwfn, |
| 651 | struct list_head *head, |
| 652 | u32 keep_reserve) |
| 653 | { |
| 654 | struct qed_spq *p_spq = p_hwfn->p_spq; |
| 655 | int rc; |
| 656 | |
| 657 | while (qed_chain_get_elem_left(&p_spq->chain) > keep_reserve && |
| 658 | !list_empty(head)) { |
| 659 | struct qed_spq_entry *p_ent = |
| 660 | list_first_entry(head, struct qed_spq_entry, list); |
| 661 | list_del(&p_ent->list); |
| 662 | list_add_tail(&p_ent->list, &p_spq->completion_pending); |
| 663 | p_spq->comp_sent_count++; |
| 664 | |
| 665 | rc = qed_spq_hw_post(p_hwfn, p_spq, p_ent); |
| 666 | if (rc) { |
| 667 | list_del(&p_ent->list); |
| 668 | __qed_spq_return_entry(p_hwfn, p_ent); |
| 669 | return rc; |
| 670 | } |
| 671 | } |
| 672 | |
| 673 | return 0; |
| 674 | } |
| 675 | |
| 676 | static int qed_spq_pend_post(struct qed_hwfn *p_hwfn) |
| 677 | { |
| 678 | struct qed_spq *p_spq = p_hwfn->p_spq; |
| 679 | struct qed_spq_entry *p_ent = NULL; |
| 680 | |
| 681 | while (!list_empty(&p_spq->free_pool)) { |
| 682 | if (list_empty(&p_spq->unlimited_pending)) |
| 683 | break; |
| 684 | |
| 685 | p_ent = list_first_entry(&p_spq->unlimited_pending, |
| 686 | struct qed_spq_entry, |
| 687 | list); |
| 688 | if (!p_ent) |
| 689 | return -EINVAL; |
| 690 | |
| 691 | list_del(&p_ent->list); |
| 692 | |
| 693 | qed_spq_add_entry(p_hwfn, p_ent, p_ent->priority); |
| 694 | } |
| 695 | |
| 696 | return qed_spq_post_list(p_hwfn, &p_spq->pending, |
| 697 | SPQ_HIGH_PRI_RESERVE_DEFAULT); |
| 698 | } |
| 699 | |
| 700 | int qed_spq_post(struct qed_hwfn *p_hwfn, |
| 701 | struct qed_spq_entry *p_ent, |
| 702 | u8 *fw_return_code) |
| 703 | { |
| 704 | int rc = 0; |
| 705 | struct qed_spq *p_spq = p_hwfn ? p_hwfn->p_spq : NULL; |
| 706 | bool b_ret_ent = true; |
| 707 | |
| 708 | if (!p_hwfn) |
| 709 | return -EINVAL; |
| 710 | |
| 711 | if (!p_ent) { |
| 712 | DP_NOTICE(p_hwfn, "Got a NULL pointer\n"); |
| 713 | return -EINVAL; |
| 714 | } |
| 715 | |
| 716 | /* Complete the entry */ |
| 717 | rc = qed_spq_fill_entry(p_hwfn, p_ent); |
| 718 | |
| 719 | spin_lock_bh(&p_spq->lock); |
| 720 | |
| 721 | /* Check return value after LOCK is taken for cleaner error flow */ |
| 722 | if (rc) |
| 723 | goto spq_post_fail; |
| 724 | |
| 725 | /* Add the request to the pending queue */ |
| 726 | rc = qed_spq_add_entry(p_hwfn, p_ent, p_ent->priority); |
| 727 | if (rc) |
| 728 | goto spq_post_fail; |
| 729 | |
| 730 | rc = qed_spq_pend_post(p_hwfn); |
| 731 | if (rc) { |
| 732 | /* Since it's possible that pending failed for a different |
| 733 | * entry [although unlikely], the failed entry was already |
| 734 | * dealt with; No need to return it here. |
| 735 | */ |
| 736 | b_ret_ent = false; |
| 737 | goto spq_post_fail; |
| 738 | } |
| 739 | |
| 740 | spin_unlock_bh(&p_spq->lock); |
| 741 | |
| 742 | if (p_ent->comp_mode == QED_SPQ_MODE_EBLOCK) { |
| 743 | /* For entries in QED BLOCK mode, the completion code cannot |
| 744 | * perform the necessary cleanup - if it did, we couldn't |
| 745 | * access p_ent here to see whether it's successful or not. |
| 746 | * Thus, after gaining the answer perform the cleanup here. |
| 747 | */ |
| 748 | rc = qed_spq_block(p_hwfn, p_ent, fw_return_code); |
| 749 | if (rc) |
| 750 | goto spq_post_fail2; |
| 751 | |
| 752 | /* return to pool */ |
| 753 | qed_spq_return_entry(p_hwfn, p_ent); |
| 754 | } |
| 755 | return rc; |
| 756 | |
| 757 | spq_post_fail2: |
| 758 | spin_lock_bh(&p_spq->lock); |
| 759 | list_del(&p_ent->list); |
| 760 | qed_chain_return_produced(&p_spq->chain); |
| 761 | |
| 762 | spq_post_fail: |
| 763 | /* return to the free pool */ |
| 764 | if (b_ret_ent) |
| 765 | __qed_spq_return_entry(p_hwfn, p_ent); |
| 766 | spin_unlock_bh(&p_spq->lock); |
| 767 | |
| 768 | return rc; |
| 769 | } |
| 770 | |
| 771 | int qed_spq_completion(struct qed_hwfn *p_hwfn, |
| 772 | __le16 echo, |
| 773 | u8 fw_return_code, |
| 774 | union event_ring_data *p_data) |
| 775 | { |
| 776 | struct qed_spq *p_spq; |
| 777 | struct qed_spq_entry *p_ent = NULL; |
| 778 | struct qed_spq_entry *tmp; |
| 779 | struct qed_spq_entry *found = NULL; |
| 780 | int rc; |
| 781 | |
| 782 | if (!p_hwfn) |
| 783 | return -EINVAL; |
| 784 | |
| 785 | p_spq = p_hwfn->p_spq; |
| 786 | if (!p_spq) |
| 787 | return -EINVAL; |
| 788 | |
| 789 | spin_lock_bh(&p_spq->lock); |
| 790 | list_for_each_entry_safe(p_ent, tmp, &p_spq->completion_pending, |
| 791 | list) { |
| 792 | if (p_ent->elem.hdr.echo == echo) { |
Tomer Tayar | 76a9a36 | 2015-12-07 06:25:57 -0500 | [diff] [blame] | 793 | u16 pos = le16_to_cpu(echo) % SPQ_RING_SIZE; |
| 794 | |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 795 | list_del(&p_ent->list); |
| 796 | |
Tomer Tayar | 76a9a36 | 2015-12-07 06:25:57 -0500 | [diff] [blame] | 797 | /* Avoid overriding of SPQ entries when getting |
| 798 | * out-of-order completions, by marking the completions |
| 799 | * in a bitmap and increasing the chain consumer only |
| 800 | * for the first successive completed entries. |
| 801 | */ |
| 802 | bitmap_set(p_spq->p_comp_bitmap, pos, SPQ_RING_SIZE); |
| 803 | |
| 804 | while (test_bit(p_spq->comp_bitmap_idx, |
| 805 | p_spq->p_comp_bitmap)) { |
| 806 | bitmap_clear(p_spq->p_comp_bitmap, |
| 807 | p_spq->comp_bitmap_idx, |
| 808 | SPQ_RING_SIZE); |
| 809 | p_spq->comp_bitmap_idx++; |
| 810 | qed_chain_return_produced(&p_spq->chain); |
| 811 | } |
| 812 | |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 813 | p_spq->comp_count++; |
| 814 | found = p_ent; |
| 815 | break; |
| 816 | } |
Tomer Tayar | 76a9a36 | 2015-12-07 06:25:57 -0500 | [diff] [blame] | 817 | |
| 818 | /* This is relatively uncommon - depends on scenarios |
| 819 | * which have mutliple per-PF sent ramrods. |
| 820 | */ |
| 821 | DP_VERBOSE(p_hwfn, QED_MSG_SPQ, |
| 822 | "Got completion for echo %04x - doesn't match echo %04x in completion pending list\n", |
| 823 | le16_to_cpu(echo), |
| 824 | le16_to_cpu(p_ent->elem.hdr.echo)); |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 825 | } |
| 826 | |
| 827 | /* Release lock before callback, as callback may post |
| 828 | * an additional ramrod. |
| 829 | */ |
| 830 | spin_unlock_bh(&p_spq->lock); |
| 831 | |
| 832 | if (!found) { |
| 833 | DP_NOTICE(p_hwfn, |
| 834 | "Failed to find an entry this EQE completes\n"); |
| 835 | return -EEXIST; |
| 836 | } |
| 837 | |
| 838 | DP_VERBOSE(p_hwfn, QED_MSG_SPQ, "Complete: func %p cookie %p)\n", |
| 839 | p_ent->comp_cb.function, p_ent->comp_cb.cookie); |
| 840 | if (found->comp_cb.function) |
| 841 | found->comp_cb.function(p_hwfn, found->comp_cb.cookie, p_data, |
| 842 | fw_return_code); |
| 843 | |
| 844 | if (found->comp_mode != QED_SPQ_MODE_EBLOCK) |
| 845 | /* EBLOCK is responsible for freeing its own entry */ |
| 846 | qed_spq_return_entry(p_hwfn, found); |
| 847 | |
| 848 | /* Attempt to post pending requests */ |
| 849 | spin_lock_bh(&p_spq->lock); |
| 850 | rc = qed_spq_pend_post(p_hwfn); |
| 851 | spin_unlock_bh(&p_spq->lock); |
| 852 | |
| 853 | return rc; |
| 854 | } |
| 855 | |
| 856 | struct qed_consq *qed_consq_alloc(struct qed_hwfn *p_hwfn) |
| 857 | { |
| 858 | struct qed_consq *p_consq; |
| 859 | |
| 860 | /* Allocate ConsQ struct */ |
Yuval Mintz | 60fffb3 | 2016-02-21 11:40:07 +0200 | [diff] [blame] | 861 | p_consq = kzalloc(sizeof(*p_consq), GFP_KERNEL); |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 862 | if (!p_consq) { |
| 863 | DP_NOTICE(p_hwfn, "Failed to allocate `struct qed_consq'\n"); |
| 864 | return NULL; |
| 865 | } |
| 866 | |
| 867 | /* Allocate and initialize EQ chain*/ |
| 868 | if (qed_chain_alloc(p_hwfn->cdev, |
| 869 | QED_CHAIN_USE_TO_PRODUCE, |
| 870 | QED_CHAIN_MODE_PBL, |
| 871 | QED_CHAIN_PAGE_SIZE / 0x80, |
| 872 | 0x80, |
| 873 | &p_consq->chain)) { |
| 874 | DP_NOTICE(p_hwfn, "Failed to allocate consq chain"); |
| 875 | goto consq_allocate_fail; |
| 876 | } |
| 877 | |
| 878 | return p_consq; |
| 879 | |
| 880 | consq_allocate_fail: |
| 881 | qed_consq_free(p_hwfn, p_consq); |
| 882 | return NULL; |
| 883 | } |
| 884 | |
| 885 | void qed_consq_setup(struct qed_hwfn *p_hwfn, |
| 886 | struct qed_consq *p_consq) |
| 887 | { |
| 888 | qed_chain_reset(&p_consq->chain); |
| 889 | } |
| 890 | |
| 891 | void qed_consq_free(struct qed_hwfn *p_hwfn, |
| 892 | struct qed_consq *p_consq) |
| 893 | { |
| 894 | if (!p_consq) |
| 895 | return; |
| 896 | qed_chain_free(p_hwfn->cdev, &p_consq->chain); |
| 897 | kfree(p_consq); |
| 898 | } |