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 PTR_CNT_PER_PG (PAGE_SIZE / sizeof(void *))
45 #define PTR_MAX_IDX_PER_PG (PTR_CNT_PER_PG - 1)
46 #define PTR_PG(x) (((x) & ~PTR_MAX_IDX_PER_PG) / PTR_CNT_PER_PG)
47 #define PTR_IDX(x) ((x) & PTR_MAX_IDX_PER_PG)
49 #define HWQ_CMP(idx, hwq) ((idx) & ((hwq)->max_elements - 1))
51 #define HWQ_FREE_SLOTS(hwq) (hwq->max_elements - \
52 ((HWQ_CMP(hwq->prod, hwq)\
53 - HWQ_CMP(hwq->cons, hwq))\
54 & (hwq->max_elements - 1)))
55 enum bnxt_qplib_hwq_type
{
62 #define MAX_PBL_LVL_0_PGS 1
63 #define MAX_PBL_LVL_1_PGS 512
64 #define MAX_PBL_LVL_1_PGS_SHIFT 9
65 #define MAX_PBL_LVL_1_PGS_FOR_LVL_2 256
66 #define MAX_PBL_LVL_2_PGS (256 * 512)
67 #define MAX_PDL_LVL_SHIFT 9
69 enum bnxt_qplib_pbl_lvl
{
76 #define ROCE_PG_SIZE_4K (4 * 1024)
77 #define ROCE_PG_SIZE_8K (8 * 1024)
78 #define ROCE_PG_SIZE_64K (64 * 1024)
79 #define ROCE_PG_SIZE_2M (2 * 1024 * 1024)
80 #define ROCE_PG_SIZE_8M (8 * 1024 * 1024)
81 #define ROCE_PG_SIZE_1G (1024 * 1024 * 1024)
83 struct bnxt_qplib_reg_desc
{
85 resource_size_t bar_base
;
86 void __iomem
*bar_reg
;
90 struct bnxt_qplib_pbl
{
94 dma_addr_t
*pg_map_arr
;
97 struct bnxt_qplib_sg_info
{
98 struct scatterlist
*sghead
;
106 struct bnxt_qplib_hwq_attr
{
107 struct bnxt_qplib_res
*res
;
108 struct bnxt_qplib_sg_info
*sginfo
;
109 enum bnxt_qplib_hwq_type type
;
116 struct bnxt_qplib_hwq
{
117 struct pci_dev
*pdev
;
118 /* lock to protect qplib_hwq */
120 struct bnxt_qplib_pbl pbl
[PBL_LVL_MAX
+ 1];
121 enum bnxt_qplib_pbl_lvl level
; /* 0, 1, or 2 */
122 /* ptr for easy access to the PBL entries */
124 /* ptr for easy access to the dma_addr */
125 dma_addr_t
*pbl_dma_ptr
;
128 u16 element_size
; /* Size of each entry */
136 struct bnxt_qplib_db_info
{
138 void __iomem
*priv_db
;
139 struct bnxt_qplib_hwq
*hwq
;
144 struct bnxt_qplib_pd_tbl
{
149 struct bnxt_qplib_sgid_tbl
{
150 struct bnxt_qplib_gid_info
*tbl
;
158 struct bnxt_qplib_pkey_tbl
{
164 struct bnxt_qplib_dpi
{
170 struct bnxt_qplib_dpi_tbl
{
174 void __iomem
*dbr_bar_reg_iomem
;
178 struct bnxt_qplib_stats
{
185 struct bnxt_qplib_vf_res
{
193 #define BNXT_QPLIB_MAX_QP_CTX_ENTRY_SIZE 448
194 #define BNXT_QPLIB_MAX_SRQ_CTX_ENTRY_SIZE 64
195 #define BNXT_QPLIB_MAX_CQ_CTX_ENTRY_SIZE 64
196 #define BNXT_QPLIB_MAX_MRW_CTX_ENTRY_SIZE 128
198 #define MAX_TQM_ALLOC_REQ 48
199 #define MAX_TQM_ALLOC_BLK_SIZE 8
200 struct bnxt_qplib_tqm_ctx
{
201 struct bnxt_qplib_hwq pde
;
202 u8 pde_level
; /* Original level */
203 struct bnxt_qplib_hwq qtbl
[MAX_TQM_ALLOC_REQ
];
204 u8 qcount
[MAX_TQM_ALLOC_REQ
];
207 struct bnxt_qplib_ctx
{
209 struct bnxt_qplib_hwq qpc_tbl
;
211 struct bnxt_qplib_hwq mrw_tbl
;
213 struct bnxt_qplib_hwq srqc_tbl
;
215 struct bnxt_qplib_hwq cq_tbl
;
216 struct bnxt_qplib_hwq tim_tbl
;
217 struct bnxt_qplib_tqm_ctx tqm_ctx
;
218 struct bnxt_qplib_stats stats
;
219 struct bnxt_qplib_vf_res vf_res
;
223 struct bnxt_qplib_chip_ctx
{
229 #define CHIP_NUM_57508 0x1750
230 #define CHIP_NUM_57504 0x1751
231 #define CHIP_NUM_57502 0x1752
233 struct bnxt_qplib_res
{
234 struct pci_dev
*pdev
;
235 struct bnxt_qplib_chip_ctx
*cctx
;
236 struct net_device
*netdev
;
238 struct bnxt_qplib_rcfw
*rcfw
;
239 struct bnxt_qplib_pd_tbl pd_tbl
;
240 struct bnxt_qplib_sgid_tbl sgid_tbl
;
241 struct bnxt_qplib_pkey_tbl pkey_tbl
;
242 struct bnxt_qplib_dpi_tbl dpi_tbl
;
246 static inline bool bnxt_qplib_is_chip_gen_p5(struct bnxt_qplib_chip_ctx
*cctx
)
248 return (cctx
->chip_num
== CHIP_NUM_57508
||
249 cctx
->chip_num
== CHIP_NUM_57504
||
250 cctx
->chip_num
== CHIP_NUM_57502
);
253 static inline u8
bnxt_qplib_get_hwq_type(struct bnxt_qplib_res
*res
)
255 return bnxt_qplib_is_chip_gen_p5(res
->cctx
) ?
256 HWQ_TYPE_QUEUE
: HWQ_TYPE_L2_CMPL
;
259 static inline u8
bnxt_qplib_get_ring_type(struct bnxt_qplib_chip_ctx
*cctx
)
261 return bnxt_qplib_is_chip_gen_p5(cctx
) ?
262 RING_ALLOC_REQ_RING_TYPE_NQ
:
263 RING_ALLOC_REQ_RING_TYPE_ROCE_CMPL
;
267 #define to_bnxt_qplib(ptr, type, member) \
268 container_of(ptr, type, member)
270 struct bnxt_qplib_pd
;
271 struct bnxt_qplib_dev_attr
;
273 void bnxt_qplib_free_hwq(struct bnxt_qplib_res
*res
,
274 struct bnxt_qplib_hwq
*hwq
);
275 int bnxt_qplib_alloc_init_hwq(struct bnxt_qplib_hwq
*hwq
,
276 struct bnxt_qplib_hwq_attr
*hwq_attr
);
277 void bnxt_qplib_get_guid(u8
*dev_addr
, u8
*guid
);
278 int bnxt_qplib_alloc_pd(struct bnxt_qplib_pd_tbl
*pd_tbl
,
279 struct bnxt_qplib_pd
*pd
);
280 int bnxt_qplib_dealloc_pd(struct bnxt_qplib_res
*res
,
281 struct bnxt_qplib_pd_tbl
*pd_tbl
,
282 struct bnxt_qplib_pd
*pd
);
283 int bnxt_qplib_alloc_dpi(struct bnxt_qplib_dpi_tbl
*dpit
,
284 struct bnxt_qplib_dpi
*dpi
,
286 int bnxt_qplib_dealloc_dpi(struct bnxt_qplib_res
*res
,
287 struct bnxt_qplib_dpi_tbl
*dpi_tbl
,
288 struct bnxt_qplib_dpi
*dpi
);
289 void bnxt_qplib_cleanup_res(struct bnxt_qplib_res
*res
);
290 int bnxt_qplib_init_res(struct bnxt_qplib_res
*res
);
291 void bnxt_qplib_free_res(struct bnxt_qplib_res
*res
);
292 int bnxt_qplib_alloc_res(struct bnxt_qplib_res
*res
, struct pci_dev
*pdev
,
293 struct net_device
*netdev
,
294 struct bnxt_qplib_dev_attr
*dev_attr
);
295 void bnxt_qplib_free_ctx(struct bnxt_qplib_res
*res
,
296 struct bnxt_qplib_ctx
*ctx
);
297 int bnxt_qplib_alloc_ctx(struct bnxt_qplib_res
*res
,
298 struct bnxt_qplib_ctx
*ctx
,
299 bool virt_fn
, bool is_p5
);
301 static inline void bnxt_qplib_ring_db32(struct bnxt_qplib_db_info
*info
,
306 key
= info
->hwq
->cons
& (info
->hwq
->max_elements
- 1);
307 key
|= (CMPL_DOORBELL_IDX_VALID
|
308 (CMPL_DOORBELL_KEY_CMPL
& CMPL_DOORBELL_KEY_MASK
));
310 key
|= CMPL_DOORBELL_MASK
;
311 writel(key
, info
->db
);
314 static inline void bnxt_qplib_ring_db(struct bnxt_qplib_db_info
*info
,
319 key
= (info
->xid
& DBC_DBC_XID_MASK
) | DBC_DBC_PATH_ROCE
| type
;
321 key
|= (info
->hwq
->cons
& (info
->hwq
->max_elements
- 1)) &
323 writeq(key
, info
->db
);
326 static inline void bnxt_qplib_ring_prod_db(struct bnxt_qplib_db_info
*info
,
331 key
= (info
->xid
& DBC_DBC_XID_MASK
) | DBC_DBC_PATH_ROCE
| type
;
333 key
|= (info
->hwq
->prod
& (info
->hwq
->max_elements
- 1)) &
335 writeq(key
, info
->db
);
338 static inline void bnxt_qplib_armen_db(struct bnxt_qplib_db_info
*info
,
343 key
= (info
->xid
& DBC_DBC_XID_MASK
) | DBC_DBC_PATH_ROCE
| type
;
345 writeq(key
, info
->priv_db
);
348 static inline void bnxt_qplib_srq_arm_db(struct bnxt_qplib_db_info
*info
,
353 key
= (info
->xid
& DBC_DBC_XID_MASK
) | DBC_DBC_PATH_ROCE
| th
;
355 key
|= th
& DBC_DBC_INDEX_MASK
;
356 writeq(key
, info
->priv_db
);
359 static inline void bnxt_qplib_ring_nq_db(struct bnxt_qplib_db_info
*info
,
360 struct bnxt_qplib_chip_ctx
*cctx
,
365 type
= arm
? DBC_DBC_TYPE_NQ_ARM
: DBC_DBC_TYPE_NQ
;
366 if (bnxt_qplib_is_chip_gen_p5(cctx
))
367 bnxt_qplib_ring_db(info
, type
);
369 bnxt_qplib_ring_db32(info
, arm
);
371 #endif /* __BNXT_QPLIB_RES_H__ */