2 * Broadcom NetXtreme-E RoCE driver.
4 * Copyright (c) 2016 - 2017, Broadcom. All rights reserved. The term
5 * Broadcom refers to Broadcom Limited and/or its subsidiaries.
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in
21 * the documentation and/or other materials provided with the
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
26 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
28 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
31 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
33 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
34 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 * Description: QPLib resource manager (header)
39 #ifndef __BNXT_QPLIB_RES_H__
40 #define __BNXT_QPLIB_RES_H__
42 extern const struct bnxt_qplib_gid bnxt_qplib_gid_zero;
44 #define CHIP_NUM_57508 0x1750
45 #define CHIP_NUM_57504 0x1751
46 #define CHIP_NUM_57502 0x1752
47 #define CHIP_NUM_58818 0xd818
48 #define CHIP_NUM_57608 0x1760
50 #define BNXT_QPLIB_DBR_VALID (0x1UL << 26)
51 #define BNXT_QPLIB_DBR_EPOCH_SHIFT 24
52 #define BNXT_QPLIB_DBR_TOGGLE_SHIFT 25
54 struct bnxt_qplib_drv_modes {
61 enum bnxt_re_toggle_modes {
62 BNXT_QPLIB_CQ_TOGGLE_BIT = 0x1,
63 BNXT_QPLIB_SRQ_TOGGLE_BIT = 0x2,
66 struct bnxt_qplib_chip_ctx {
71 u16 hwrm_cmd_max_timeout;
72 struct bnxt_qplib_drv_modes modes;
77 struct bnxt_qplib_db_pacing_data {
87 #define BNXT_QPLIB_DBR_PF_DB_OFFSET 0x10000
88 #define BNXT_QPLIB_DBR_VF_DB_OFFSET 0x4000
90 #define PTR_CNT_PER_PG (PAGE_SIZE / sizeof(void *))
91 #define PTR_MAX_IDX_PER_PG (PTR_CNT_PER_PG - 1)
92 #define PTR_PG(x) (((x) & ~PTR_MAX_IDX_PER_PG) / PTR_CNT_PER_PG)
93 #define PTR_IDX(x) ((x) & PTR_MAX_IDX_PER_PG)
95 #define HWQ_CMP(idx, hwq) ((idx) & ((hwq)->max_elements - 1))
97 #define HWQ_FREE_SLOTS(hwq) (hwq->max_elements - \
98 ((HWQ_CMP(hwq->prod, hwq)\
99 - HWQ_CMP(hwq->cons, hwq))\
100 & (hwq->max_elements - 1)))
101 enum bnxt_qplib_hwq_type {
108 #define MAX_PBL_LVL_0_PGS 1
109 #define MAX_PBL_LVL_1_PGS 512
110 #define MAX_PBL_LVL_1_PGS_SHIFT 9
111 #define MAX_PBL_LVL_1_PGS_FOR_LVL_2 256
112 #define MAX_PBL_LVL_2_PGS (256 * 512)
113 #define MAX_PDL_LVL_SHIFT 9
115 enum bnxt_qplib_pbl_lvl {
122 #define ROCE_PG_SIZE_4K (4 * 1024)
123 #define ROCE_PG_SIZE_8K (8 * 1024)
124 #define ROCE_PG_SIZE_64K (64 * 1024)
125 #define ROCE_PG_SIZE_2M (2 * 1024 * 1024)
126 #define ROCE_PG_SIZE_8M (8 * 1024 * 1024)
127 #define ROCE_PG_SIZE_1G (1024 * 1024 * 1024)
129 enum bnxt_qplib_hwrm_pg_size {
130 BNXT_QPLIB_HWRM_PG_SIZE_4K = 0,
131 BNXT_QPLIB_HWRM_PG_SIZE_8K = 1,
132 BNXT_QPLIB_HWRM_PG_SIZE_64K = 2,
133 BNXT_QPLIB_HWRM_PG_SIZE_2M = 3,
134 BNXT_QPLIB_HWRM_PG_SIZE_8M = 4,
135 BNXT_QPLIB_HWRM_PG_SIZE_1G = 5,
138 struct bnxt_qplib_reg_desc {
140 resource_size_t bar_base;
141 unsigned long offset;
142 void __iomem *bar_reg;
146 struct bnxt_qplib_pbl {
150 dma_addr_t *pg_map_arr;
153 struct bnxt_qplib_sg_info {
154 struct ib_umem *umem;
161 struct bnxt_qplib_hwq_attr {
162 struct bnxt_qplib_res *res;
163 struct bnxt_qplib_sg_info *sginfo;
164 enum bnxt_qplib_hwq_type type;
171 struct bnxt_qplib_hwq {
172 struct pci_dev *pdev;
173 /* lock to protect qplib_hwq */
175 struct bnxt_qplib_pbl pbl[PBL_LVL_MAX + 1];
176 enum bnxt_qplib_pbl_lvl level; /* 0, 1, or 2 */
177 /* ptr for easy access to the PBL entries */
179 /* ptr for easy access to the dma_addr */
180 dma_addr_t *pbl_dma_ptr;
183 u16 element_size; /* Size of each entry */
184 u16 qe_ppg; /* queue entry per page */
195 struct bnxt_qplib_db_info {
197 void __iomem *priv_db;
198 struct bnxt_qplib_hwq *hwq;
205 enum bnxt_qplib_db_info_flags_mask {
206 BNXT_QPLIB_FLAG_EPOCH_CONS_SHIFT = 0x0UL,
207 BNXT_QPLIB_FLAG_EPOCH_PROD_SHIFT = 0x1UL,
208 BNXT_QPLIB_FLAG_EPOCH_CONS_MASK = 0x1UL,
209 BNXT_QPLIB_FLAG_EPOCH_PROD_MASK = 0x2UL,
212 enum bnxt_qplib_db_epoch_flag_shift {
213 BNXT_QPLIB_DB_EPOCH_CONS_SHIFT = BNXT_QPLIB_DBR_EPOCH_SHIFT,
214 BNXT_QPLIB_DB_EPOCH_PROD_SHIFT = (BNXT_QPLIB_DBR_EPOCH_SHIFT - 1),
218 struct bnxt_qplib_pd_tbl {
223 struct bnxt_qplib_sgid_tbl {
224 struct bnxt_qplib_gid_info *tbl;
233 BNXT_QPLIB_DPI_TYPE_KERNEL = 0,
234 BNXT_QPLIB_DPI_TYPE_UC = 1,
235 BNXT_QPLIB_DPI_TYPE_WC = 2
238 struct bnxt_qplib_dpi {
246 struct bnxt_qplib_dpi_tbl {
250 struct bnxt_qplib_reg_desc ucreg; /* Hold entire DB bar. */
251 struct bnxt_qplib_reg_desc wcreg;
252 void __iomem *priv_db;
255 struct bnxt_qplib_stats {
262 struct bnxt_qplib_vf_res {
270 #define BNXT_QPLIB_MAX_QP_CTX_ENTRY_SIZE 448
271 #define BNXT_QPLIB_MAX_SRQ_CTX_ENTRY_SIZE 64
272 #define BNXT_QPLIB_MAX_CQ_CTX_ENTRY_SIZE 64
273 #define BNXT_QPLIB_MAX_MRW_CTX_ENTRY_SIZE 128
275 #define MAX_TQM_ALLOC_REQ 48
276 #define MAX_TQM_ALLOC_BLK_SIZE 8
277 struct bnxt_qplib_tqm_ctx {
278 struct bnxt_qplib_hwq pde;
279 u8 pde_level; /* Original level */
280 struct bnxt_qplib_hwq qtbl[MAX_TQM_ALLOC_REQ];
281 u8 qcount[MAX_TQM_ALLOC_REQ];
284 struct bnxt_qplib_ctx {
286 struct bnxt_qplib_hwq qpc_tbl;
288 struct bnxt_qplib_hwq mrw_tbl;
290 struct bnxt_qplib_hwq srqc_tbl;
292 struct bnxt_qplib_hwq cq_tbl;
293 struct bnxt_qplib_hwq tim_tbl;
294 struct bnxt_qplib_tqm_ctx tqm_ctx;
295 struct bnxt_qplib_stats stats;
296 struct bnxt_qplib_vf_res vf_res;
299 struct bnxt_qplib_res {
300 struct pci_dev *pdev;
301 struct bnxt_qplib_chip_ctx *cctx;
302 struct bnxt_qplib_dev_attr *dattr;
303 struct net_device *netdev;
304 struct bnxt_qplib_rcfw *rcfw;
305 struct bnxt_qplib_pd_tbl pd_tbl;
306 /* To protect the pd table bit map */
307 struct mutex pd_tbl_lock;
308 struct bnxt_qplib_sgid_tbl sgid_tbl;
309 struct bnxt_qplib_dpi_tbl dpi_tbl;
310 /* To protect the dpi table bit map */
311 struct mutex dpi_tbl_lock;
314 struct bnxt_qplib_db_pacing_data *pacing_data;
317 static inline bool bnxt_qplib_is_chip_gen_p7(struct bnxt_qplib_chip_ctx *cctx)
319 return (cctx->chip_num == CHIP_NUM_58818 ||
320 cctx->chip_num == CHIP_NUM_57608);
323 static inline bool bnxt_qplib_is_chip_gen_p5(struct bnxt_qplib_chip_ctx *cctx)
325 return (cctx->chip_num == CHIP_NUM_57508 ||
326 cctx->chip_num == CHIP_NUM_57504 ||
327 cctx->chip_num == CHIP_NUM_57502);
330 static inline bool bnxt_qplib_is_chip_gen_p5_p7(struct bnxt_qplib_chip_ctx *cctx)
332 return bnxt_qplib_is_chip_gen_p5(cctx) || bnxt_qplib_is_chip_gen_p7(cctx);
335 static inline u8 bnxt_qplib_get_hwq_type(struct bnxt_qplib_res *res)
337 return bnxt_qplib_is_chip_gen_p5_p7(res->cctx) ?
338 HWQ_TYPE_QUEUE : HWQ_TYPE_L2_CMPL;
341 static inline u8 bnxt_qplib_get_ring_type(struct bnxt_qplib_chip_ctx *cctx)
343 return bnxt_qplib_is_chip_gen_p5_p7(cctx) ?
344 RING_ALLOC_REQ_RING_TYPE_NQ :
345 RING_ALLOC_REQ_RING_TYPE_ROCE_CMPL;
348 static inline u8 bnxt_qplib_base_pg_size(struct bnxt_qplib_hwq *hwq)
350 u8 pg_size = BNXT_QPLIB_HWRM_PG_SIZE_4K;
351 struct bnxt_qplib_pbl *pbl;
353 pbl = &hwq->pbl[PBL_LVL_0];
354 switch (pbl->pg_size) {
355 case ROCE_PG_SIZE_4K:
356 pg_size = BNXT_QPLIB_HWRM_PG_SIZE_4K;
358 case ROCE_PG_SIZE_8K:
359 pg_size = BNXT_QPLIB_HWRM_PG_SIZE_8K;
361 case ROCE_PG_SIZE_64K:
362 pg_size = BNXT_QPLIB_HWRM_PG_SIZE_64K;
364 case ROCE_PG_SIZE_2M:
365 pg_size = BNXT_QPLIB_HWRM_PG_SIZE_2M;
367 case ROCE_PG_SIZE_8M:
368 pg_size = BNXT_QPLIB_HWRM_PG_SIZE_8M;
370 case ROCE_PG_SIZE_1G:
371 pg_size = BNXT_QPLIB_HWRM_PG_SIZE_1G;
380 static inline void *bnxt_qplib_get_qe(struct bnxt_qplib_hwq *hwq,
385 pg_num = (indx / hwq->qe_ppg);
386 pg_idx = (indx % hwq->qe_ppg);
388 *pg = (u64)&hwq->pbl_ptr[pg_num];
389 return (void *)(hwq->pbl_ptr[pg_num] + hwq->element_size * pg_idx);
392 static inline void *bnxt_qplib_get_prod_qe(struct bnxt_qplib_hwq *hwq, u32 idx)
395 if (idx >= hwq->depth)
397 return bnxt_qplib_get_qe(hwq, idx, NULL);
400 #define to_bnxt_qplib(ptr, type, member) \
401 container_of(ptr, type, member)
403 struct bnxt_qplib_pd;
404 struct bnxt_qplib_dev_attr;
406 void bnxt_qplib_free_hwq(struct bnxt_qplib_res *res,
407 struct bnxt_qplib_hwq *hwq);
408 int bnxt_qplib_alloc_init_hwq(struct bnxt_qplib_hwq *hwq,
409 struct bnxt_qplib_hwq_attr *hwq_attr);
410 int bnxt_qplib_alloc_pd(struct bnxt_qplib_res *res,
411 struct bnxt_qplib_pd *pd);
412 int bnxt_qplib_dealloc_pd(struct bnxt_qplib_res *res,
413 struct bnxt_qplib_pd_tbl *pd_tbl,
414 struct bnxt_qplib_pd *pd);
415 int bnxt_qplib_alloc_dpi(struct bnxt_qplib_res *res,
416 struct bnxt_qplib_dpi *dpi,
418 int bnxt_qplib_dealloc_dpi(struct bnxt_qplib_res *res,
419 struct bnxt_qplib_dpi *dpi);
420 void bnxt_qplib_cleanup_res(struct bnxt_qplib_res *res);
421 int bnxt_qplib_init_res(struct bnxt_qplib_res *res);
422 void bnxt_qplib_free_res(struct bnxt_qplib_res *res);
423 int bnxt_qplib_alloc_res(struct bnxt_qplib_res *res, struct pci_dev *pdev,
424 struct net_device *netdev,
425 struct bnxt_qplib_dev_attr *dev_attr);
426 void bnxt_qplib_free_ctx(struct bnxt_qplib_res *res,
427 struct bnxt_qplib_ctx *ctx);
428 int bnxt_qplib_alloc_ctx(struct bnxt_qplib_res *res,
429 struct bnxt_qplib_ctx *ctx,
430 bool virt_fn, bool is_p5);
431 int bnxt_qplib_map_db_bar(struct bnxt_qplib_res *res);
432 void bnxt_qplib_unmap_db_bar(struct bnxt_qplib_res *res);
434 int bnxt_qplib_determine_atomics(struct pci_dev *dev);
436 static inline void bnxt_qplib_hwq_incr_prod(struct bnxt_qplib_db_info *dbinfo,
437 struct bnxt_qplib_hwq *hwq, u32 cnt)
439 /* move prod and update toggle/epoch if wrap around */
441 if (hwq->prod >= hwq->depth) {
442 hwq->prod %= hwq->depth;
443 dbinfo->flags ^= 1UL << BNXT_QPLIB_FLAG_EPOCH_PROD_SHIFT;
447 static inline void bnxt_qplib_hwq_incr_cons(u32 max_elements, u32 *cons, u32 cnt,
450 /* move cons and update toggle/epoch if wrap around */
452 if (*cons >= max_elements) {
453 *cons %= max_elements;
454 *dbinfo_flags ^= 1UL << BNXT_QPLIB_FLAG_EPOCH_CONS_SHIFT;
458 static inline void bnxt_qplib_ring_db32(struct bnxt_qplib_db_info *info,
463 key |= info->hwq->cons | (CMPL_DOORBELL_IDX_VALID |
464 (CMPL_DOORBELL_KEY_CMPL & CMPL_DOORBELL_KEY_MASK));
466 key |= CMPL_DOORBELL_MASK;
467 writel(key, info->db);
470 #define BNXT_QPLIB_INIT_DBHDR(xid, type, indx, toggle) \
471 (((u64)(((xid) & DBC_DBC_XID_MASK) | DBC_DBC_PATH_ROCE | \
472 (type) | BNXT_QPLIB_DBR_VALID) << 32) | (indx) | \
473 (((u32)(toggle)) << (BNXT_QPLIB_DBR_TOGGLE_SHIFT)))
475 static inline void bnxt_qplib_ring_db(struct bnxt_qplib_db_info *info,
482 if (type == DBC_DBC_TYPE_CQ_ARMALL ||
483 type == DBC_DBC_TYPE_CQ_ARMSE)
484 toggle = info->toggle;
486 indx = (info->hwq->cons & DBC_DBC_INDEX_MASK) |
487 ((info->flags & BNXT_QPLIB_FLAG_EPOCH_CONS_MASK) <<
488 BNXT_QPLIB_DB_EPOCH_CONS_SHIFT);
490 key = BNXT_QPLIB_INIT_DBHDR(info->xid, type, indx, toggle);
491 writeq(key, info->db);
494 static inline void bnxt_qplib_ring_prod_db(struct bnxt_qplib_db_info *info,
500 indx = (((info->hwq->prod / info->max_slot) & DBC_DBC_INDEX_MASK) |
501 ((info->flags & BNXT_QPLIB_FLAG_EPOCH_PROD_MASK) <<
502 BNXT_QPLIB_DB_EPOCH_PROD_SHIFT));
503 key = BNXT_QPLIB_INIT_DBHDR(info->xid, type, indx, 0);
504 writeq(key, info->db);
507 static inline void bnxt_qplib_armen_db(struct bnxt_qplib_db_info *info,
513 if (type == DBC_DBC_TYPE_CQ_ARMENA || type == DBC_DBC_TYPE_SRQ_ARMENA)
514 toggle = info->toggle;
515 /* Index always at 0 */
516 key = BNXT_QPLIB_INIT_DBHDR(info->xid, type, 0, toggle);
517 writeq(key, info->priv_db);
520 static inline void bnxt_qplib_srq_arm_db(struct bnxt_qplib_db_info *info,
525 key = BNXT_QPLIB_INIT_DBHDR(info->xid, DBC_DBC_TYPE_SRQ_ARM, th, info->toggle);
526 writeq(key, info->priv_db);
529 static inline void bnxt_qplib_ring_nq_db(struct bnxt_qplib_db_info *info,
530 struct bnxt_qplib_chip_ctx *cctx,
535 type = arm ? DBC_DBC_TYPE_NQ_ARM : DBC_DBC_TYPE_NQ;
536 if (bnxt_qplib_is_chip_gen_p5_p7(cctx))
537 bnxt_qplib_ring_db(info, type);
539 bnxt_qplib_ring_db32(info, arm);
542 static inline bool _is_ext_stats_supported(u16 dev_cap_flags)
544 return dev_cap_flags &
545 CREQ_QUERY_FUNC_RESP_SB_EXT_STATS;
548 static inline bool _is_hw_retx_supported(u16 dev_cap_flags)
550 return dev_cap_flags &
551 (CREQ_QUERY_FUNC_RESP_SB_HW_REQUESTER_RETX_ENABLED |
552 CREQ_QUERY_FUNC_RESP_SB_HW_RESPONDER_RETX_ENABLED);
555 #define BNXT_RE_HW_RETX(a) _is_hw_retx_supported((a))
557 static inline u8 bnxt_qplib_dbr_pacing_en(struct bnxt_qplib_chip_ctx *cctx)
559 return cctx->modes.dbr_pacing;
562 #endif /* __BNXT_QPLIB_RES_H__ */