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
{
61 #define MAX_PBL_LVL_0_PGS 1
62 #define MAX_PBL_LVL_1_PGS 512
63 #define MAX_PBL_LVL_1_PGS_SHIFT 9
64 #define MAX_PBL_LVL_1_PGS_FOR_LVL_2 256
65 #define MAX_PBL_LVL_2_PGS (256 * 512)
67 enum bnxt_qplib_pbl_lvl
{
74 #define ROCE_PG_SIZE_4K (4 * 1024)
75 #define ROCE_PG_SIZE_8K (8 * 1024)
76 #define ROCE_PG_SIZE_64K (64 * 1024)
77 #define ROCE_PG_SIZE_2M (2 * 1024 * 1024)
78 #define ROCE_PG_SIZE_8M (8 * 1024 * 1024)
79 #define ROCE_PG_SIZE_1G (1024 * 1024 * 1024)
81 struct bnxt_qplib_pbl
{
85 dma_addr_t
*pg_map_arr
;
88 struct bnxt_qplib_hwq
{
90 /* lock to protect qplib_hwq */
92 struct bnxt_qplib_pbl pbl
[PBL_LVL_MAX
];
93 enum bnxt_qplib_pbl_lvl level
; /* 0, 1, or 2 */
94 /* ptr for easy access to the PBL entries */
96 /* ptr for easy access to the dma_addr */
97 dma_addr_t
*pbl_dma_ptr
;
99 u16 element_size
; /* Size of each entry */
108 struct bnxt_qplib_pd_tbl
{
113 struct bnxt_qplib_sgid_tbl
{
114 struct bnxt_qplib_gid
*tbl
;
122 struct bnxt_qplib_pkey_tbl
{
128 struct bnxt_qplib_dpi
{
134 struct bnxt_qplib_dpi_tbl
{
138 void __iomem
*dbr_bar_reg_iomem
;
142 struct bnxt_qplib_stats
{
149 struct bnxt_qplib_vf_res
{
157 #define BNXT_QPLIB_MAX_QP_CTX_ENTRY_SIZE 448
158 #define BNXT_QPLIB_MAX_SRQ_CTX_ENTRY_SIZE 64
159 #define BNXT_QPLIB_MAX_CQ_CTX_ENTRY_SIZE 64
160 #define BNXT_QPLIB_MAX_MRW_CTX_ENTRY_SIZE 128
162 struct bnxt_qplib_ctx
{
164 struct bnxt_qplib_hwq qpc_tbl
;
166 struct bnxt_qplib_hwq mrw_tbl
;
168 struct bnxt_qplib_hwq srqc_tbl
;
170 struct bnxt_qplib_hwq cq_tbl
;
171 struct bnxt_qplib_hwq tim_tbl
;
172 #define MAX_TQM_ALLOC_REQ 48
173 #define MAX_TQM_ALLOC_BLK_SIZE 8
174 u8 tqm_count
[MAX_TQM_ALLOC_REQ
];
175 struct bnxt_qplib_hwq tqm_pde
;
177 struct bnxt_qplib_hwq tqm_tbl
[MAX_TQM_ALLOC_REQ
];
178 struct bnxt_qplib_stats stats
;
179 struct bnxt_qplib_vf_res vf_res
;
182 struct bnxt_qplib_res
{
183 struct pci_dev
*pdev
;
184 struct net_device
*netdev
;
186 struct bnxt_qplib_rcfw
*rcfw
;
188 struct bnxt_qplib_pd_tbl pd_tbl
;
189 struct bnxt_qplib_sgid_tbl sgid_tbl
;
190 struct bnxt_qplib_pkey_tbl pkey_tbl
;
191 struct bnxt_qplib_dpi_tbl dpi_tbl
;
195 #define to_bnxt_qplib(ptr, type, member) \
196 container_of(ptr, type, member)
198 struct bnxt_qplib_pd
;
199 struct bnxt_qplib_dev_attr
;
201 void bnxt_qplib_free_hwq(struct pci_dev
*pdev
, struct bnxt_qplib_hwq
*hwq
);
202 int bnxt_qplib_alloc_init_hwq(struct pci_dev
*pdev
, struct bnxt_qplib_hwq
*hwq
,
203 struct scatterlist
*sl
, int nmap
, u32
*elements
,
204 u32 elements_per_page
, u32 aux
, u32 pg_size
,
205 enum bnxt_qplib_hwq_type hwq_type
);
206 void bnxt_qplib_get_guid(u8
*dev_addr
, u8
*guid
);
207 int bnxt_qplib_alloc_pd(struct bnxt_qplib_pd_tbl
*pd_tbl
,
208 struct bnxt_qplib_pd
*pd
);
209 int bnxt_qplib_dealloc_pd(struct bnxt_qplib_res
*res
,
210 struct bnxt_qplib_pd_tbl
*pd_tbl
,
211 struct bnxt_qplib_pd
*pd
);
212 int bnxt_qplib_alloc_dpi(struct bnxt_qplib_dpi_tbl
*dpit
,
213 struct bnxt_qplib_dpi
*dpi
,
215 int bnxt_qplib_dealloc_dpi(struct bnxt_qplib_res
*res
,
216 struct bnxt_qplib_dpi_tbl
*dpi_tbl
,
217 struct bnxt_qplib_dpi
*dpi
);
218 void bnxt_qplib_cleanup_res(struct bnxt_qplib_res
*res
);
219 int bnxt_qplib_init_res(struct bnxt_qplib_res
*res
);
220 void bnxt_qplib_free_res(struct bnxt_qplib_res
*res
);
221 int bnxt_qplib_alloc_res(struct bnxt_qplib_res
*res
, struct pci_dev
*pdev
,
222 struct net_device
*netdev
,
223 struct bnxt_qplib_dev_attr
*dev_attr
);
224 void bnxt_qplib_free_ctx(struct pci_dev
*pdev
,
225 struct bnxt_qplib_ctx
*ctx
);
226 int bnxt_qplib_alloc_ctx(struct pci_dev
*pdev
,
227 struct bnxt_qplib_ctx
*ctx
,
229 #endif /* __BNXT_QPLIB_RES_H__ */