1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2 /* QLogic qed NIC Driver
3 * Copyright (c) 2015-2017 QLogic Corporation
4 * Copyright (c) 2019-2020 Marvell International Ltd.
7 #include <linux/types.h>
8 #include <linux/bitops.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/errno.h>
11 #include <linux/kernel.h>
12 #include <linux/list.h>
13 #include <linux/log2.h>
14 #include <linux/pci.h>
15 #include <linux/slab.h>
16 #include <linux/string.h>
19 #include "qed_dev_api.h"
22 #include "qed_init_ops.h"
24 #include "qed_reg_addr.h"
25 #include "qed_sriov.h"
28 #define QM_PQ_ELEMENT_SIZE 4 /* in bytes */
30 /* Doorbell-Queue constants */
31 #define DQ_RANGE_SHIFT 4
32 #define DQ_RANGE_ALIGN BIT(DQ_RANGE_SHIFT)
34 /* Searcher constants */
35 #define SRC_MIN_NUM_ELEMS 256
37 /* Timers constants */
39 #define TM_ALIGN BIT(TM_SHIFT)
40 #define TM_ELEM_SIZE 4
42 #define ILT_DEFAULT_HW_P_SIZE 4
44 #define ILT_PAGE_IN_BYTES(hw_p_size) (1U << ((hw_p_size) + 12))
45 #define ILT_CFG_REG(cli, reg) PSWRQ2_REG_ ## cli ## _ ## reg ## _RT_OFFSET
47 /* ILT entry structure */
48 #define ILT_ENTRY_PHY_ADDR_MASK (~0ULL >> 12)
49 #define ILT_ENTRY_PHY_ADDR_SHIFT 0
50 #define ILT_ENTRY_VALID_MASK 0x1ULL
51 #define ILT_ENTRY_VALID_SHIFT 52
52 #define ILT_ENTRY_IN_REGS 2
53 #define ILT_REG_SIZE_IN_BYTES 4
55 /* connection context union */
57 struct e4_core_conn_context core_ctx
;
58 struct e4_eth_conn_context eth_ctx
;
59 struct e4_iscsi_conn_context iscsi_ctx
;
60 struct e4_fcoe_conn_context fcoe_ctx
;
61 struct e4_roce_conn_context roce_ctx
;
64 /* TYPE-0 task context - iSCSI, FCOE */
65 union type0_task_context
{
66 struct e4_iscsi_task_context iscsi_ctx
;
67 struct e4_fcoe_task_context fcoe_ctx
;
70 /* TYPE-1 task context - ROCE */
71 union type1_task_context
{
72 struct e4_rdma_task_context roce_ctx
;
80 #define CDUT_SEG_ALIGNMET 3 /* in 4k chunks */
81 #define CDUT_SEG_ALIGNMET_IN_BYTES BIT(CDUT_SEG_ALIGNMET + 12)
83 #define CONN_CXT_SIZE(p_hwfn) \
84 ALIGNED_TYPE_SIZE(union conn_context, p_hwfn)
86 #define SRQ_CXT_SIZE (sizeof(struct rdma_srq_context))
87 #define XRC_SRQ_CXT_SIZE (sizeof(struct rdma_xrc_srq_context))
89 #define TYPE0_TASK_CXT_SIZE(p_hwfn) \
90 ALIGNED_TYPE_SIZE(union type0_task_context, p_hwfn)
92 /* Alignment is inherent to the type1_task_context structure */
93 #define TYPE1_TASK_CXT_SIZE(p_hwfn) sizeof(union type1_task_context)
95 static bool src_proto(enum protocol_type type
)
97 return type
== PROTOCOLID_ISCSI
||
98 type
== PROTOCOLID_FCOE
||
99 type
== PROTOCOLID_IWARP
;
102 static bool tm_cid_proto(enum protocol_type type
)
104 return type
== PROTOCOLID_ISCSI
||
105 type
== PROTOCOLID_FCOE
||
106 type
== PROTOCOLID_ROCE
||
107 type
== PROTOCOLID_IWARP
;
110 static bool tm_tid_proto(enum protocol_type type
)
112 return type
== PROTOCOLID_FCOE
;
115 /* counts the iids for the CDU/CDUC ILT client configuration */
116 struct qed_cdu_iids
{
121 static void qed_cxt_cdu_iids(struct qed_cxt_mngr
*p_mngr
,
122 struct qed_cdu_iids
*iids
)
126 for (type
= 0; type
< MAX_CONN_TYPES
; type
++) {
127 iids
->pf_cids
+= p_mngr
->conn_cfg
[type
].cid_count
;
128 iids
->per_vf_cids
+= p_mngr
->conn_cfg
[type
].cids_per_vf
;
132 /* counts the iids for the Searcher block configuration */
133 struct qed_src_iids
{
138 static void qed_cxt_src_iids(struct qed_cxt_mngr
*p_mngr
,
139 struct qed_src_iids
*iids
)
143 for (i
= 0; i
< MAX_CONN_TYPES
; i
++) {
147 iids
->pf_cids
+= p_mngr
->conn_cfg
[i
].cid_count
;
148 iids
->per_vf_cids
+= p_mngr
->conn_cfg
[i
].cids_per_vf
;
151 /* Add L2 filtering filters in addition */
152 iids
->pf_cids
+= p_mngr
->arfs_count
;
155 /* counts the iids for the Timers block configuration */
158 u32 pf_tids
[NUM_TASK_PF_SEGMENTS
]; /* per segment */
164 static void qed_cxt_tm_iids(struct qed_hwfn
*p_hwfn
,
165 struct qed_cxt_mngr
*p_mngr
,
166 struct qed_tm_iids
*iids
)
168 bool tm_vf_required
= false;
169 bool tm_required
= false;
172 /* Timers is a special case -> we don't count how many cids require
173 * timers but what's the max cid that will be used by the timer block.
174 * therefore we traverse in reverse order, and once we hit a protocol
175 * that requires the timers memory, we'll sum all the protocols up
178 for (i
= MAX_CONN_TYPES
- 1; i
>= 0; i
--) {
179 struct qed_conn_type_cfg
*p_cfg
= &p_mngr
->conn_cfg
[i
];
181 if (tm_cid_proto(i
) || tm_required
) {
182 if (p_cfg
->cid_count
)
185 iids
->pf_cids
+= p_cfg
->cid_count
;
188 if (tm_cid_proto(i
) || tm_vf_required
) {
189 if (p_cfg
->cids_per_vf
)
190 tm_vf_required
= true;
192 iids
->per_vf_cids
+= p_cfg
->cids_per_vf
;
195 if (tm_tid_proto(i
)) {
196 struct qed_tid_seg
*segs
= p_cfg
->tid_seg
;
198 /* for each segment there is at most one
199 * protocol for which count is not 0.
201 for (j
= 0; j
< NUM_TASK_PF_SEGMENTS
; j
++)
202 iids
->pf_tids
[j
] += segs
[j
].count
;
204 /* The last array elelment is for the VFs. As for PF
205 * segments there can be only one protocol for
206 * which this value is not 0.
208 iids
->per_vf_tids
+= segs
[NUM_TASK_PF_SEGMENTS
].count
;
212 iids
->pf_cids
= roundup(iids
->pf_cids
, TM_ALIGN
);
213 iids
->per_vf_cids
= roundup(iids
->per_vf_cids
, TM_ALIGN
);
214 iids
->per_vf_tids
= roundup(iids
->per_vf_tids
, TM_ALIGN
);
216 for (iids
->pf_tids_total
= 0, j
= 0; j
< NUM_TASK_PF_SEGMENTS
; j
++) {
217 iids
->pf_tids
[j
] = roundup(iids
->pf_tids
[j
], TM_ALIGN
);
218 iids
->pf_tids_total
+= iids
->pf_tids
[j
];
222 static void qed_cxt_qm_iids(struct qed_hwfn
*p_hwfn
,
223 struct qed_qm_iids
*iids
)
225 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
226 struct qed_tid_seg
*segs
;
227 u32 vf_cids
= 0, type
, j
;
230 for (type
= 0; type
< MAX_CONN_TYPES
; type
++) {
231 iids
->cids
+= p_mngr
->conn_cfg
[type
].cid_count
;
232 vf_cids
+= p_mngr
->conn_cfg
[type
].cids_per_vf
;
234 segs
= p_mngr
->conn_cfg
[type
].tid_seg
;
235 /* for each segment there is at most one
236 * protocol for which count is not 0.
238 for (j
= 0; j
< NUM_TASK_PF_SEGMENTS
; j
++)
239 iids
->tids
+= segs
[j
].count
;
241 /* The last array elelment is for the VFs. As for PF
242 * segments there can be only one protocol for
243 * which this value is not 0.
245 vf_tids
+= segs
[NUM_TASK_PF_SEGMENTS
].count
;
248 iids
->vf_cids
= vf_cids
;
249 iids
->tids
+= vf_tids
* p_mngr
->vf_count
;
251 DP_VERBOSE(p_hwfn
, QED_MSG_ILT
,
252 "iids: CIDS %08x vf_cids %08x tids %08x vf_tids %08x\n",
253 iids
->cids
, iids
->vf_cids
, iids
->tids
, vf_tids
);
256 static struct qed_tid_seg
*qed_cxt_tid_seg_info(struct qed_hwfn
*p_hwfn
,
259 struct qed_cxt_mngr
*p_cfg
= p_hwfn
->p_cxt_mngr
;
262 /* Find the protocol with tid count > 0 for this segment.
263 * Note: there can only be one and this is already validated.
265 for (i
= 0; i
< MAX_CONN_TYPES
; i
++)
266 if (p_cfg
->conn_cfg
[i
].tid_seg
[seg
].count
)
267 return &p_cfg
->conn_cfg
[i
].tid_seg
[seg
];
271 static void qed_cxt_set_srq_count(struct qed_hwfn
*p_hwfn
,
272 u32 num_srqs
, u32 num_xrc_srqs
)
274 struct qed_cxt_mngr
*p_mgr
= p_hwfn
->p_cxt_mngr
;
276 p_mgr
->srq_count
= num_srqs
;
277 p_mgr
->xrc_srq_count
= num_xrc_srqs
;
280 u32
qed_cxt_get_ilt_page_size(struct qed_hwfn
*p_hwfn
,
281 enum ilt_clients ilt_client
)
283 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
284 struct qed_ilt_client_cfg
*p_cli
= &p_mngr
->clients
[ilt_client
];
286 return ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
);
289 static u32
qed_cxt_xrc_srqs_per_page(struct qed_hwfn
*p_hwfn
)
293 page_size
= qed_cxt_get_ilt_page_size(p_hwfn
, ILT_CLI_TSDM
);
294 return page_size
/ XRC_SRQ_CXT_SIZE
;
297 u32
qed_cxt_get_total_srq_count(struct qed_hwfn
*p_hwfn
)
299 struct qed_cxt_mngr
*p_mgr
= p_hwfn
->p_cxt_mngr
;
302 total_srqs
= p_mgr
->srq_count
+ p_mgr
->xrc_srq_count
;
307 /* set the iids count per protocol */
308 static void qed_cxt_set_proto_cid_count(struct qed_hwfn
*p_hwfn
,
309 enum protocol_type type
,
310 u32 cid_count
, u32 vf_cid_cnt
)
312 struct qed_cxt_mngr
*p_mgr
= p_hwfn
->p_cxt_mngr
;
313 struct qed_conn_type_cfg
*p_conn
= &p_mgr
->conn_cfg
[type
];
315 p_conn
->cid_count
= roundup(cid_count
, DQ_RANGE_ALIGN
);
316 p_conn
->cids_per_vf
= roundup(vf_cid_cnt
, DQ_RANGE_ALIGN
);
318 if (type
== PROTOCOLID_ROCE
) {
319 u32 page_sz
= p_mgr
->clients
[ILT_CLI_CDUC
].p_size
.val
;
320 u32 cxt_size
= CONN_CXT_SIZE(p_hwfn
);
321 u32 elems_per_page
= ILT_PAGE_IN_BYTES(page_sz
) / cxt_size
;
322 u32 align
= elems_per_page
* DQ_RANGE_ALIGN
;
324 p_conn
->cid_count
= roundup(p_conn
->cid_count
, align
);
328 u32
qed_cxt_get_proto_cid_count(struct qed_hwfn
*p_hwfn
,
329 enum protocol_type type
, u32
*vf_cid
)
332 *vf_cid
= p_hwfn
->p_cxt_mngr
->conn_cfg
[type
].cids_per_vf
;
334 return p_hwfn
->p_cxt_mngr
->conn_cfg
[type
].cid_count
;
337 u32
qed_cxt_get_proto_cid_start(struct qed_hwfn
*p_hwfn
,
338 enum protocol_type type
)
340 return p_hwfn
->p_cxt_mngr
->acquired
[type
].start_cid
;
343 u32
qed_cxt_get_proto_tid_count(struct qed_hwfn
*p_hwfn
,
344 enum protocol_type type
)
349 for (i
= 0; i
< TASK_SEGMENTS
; i
++)
350 cnt
+= p_hwfn
->p_cxt_mngr
->conn_cfg
[type
].tid_seg
[i
].count
;
355 static void qed_cxt_set_proto_tid_count(struct qed_hwfn
*p_hwfn
,
356 enum protocol_type proto
,
358 u8 seg_type
, u32 count
, bool has_fl
)
360 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
361 struct qed_tid_seg
*p_seg
= &p_mngr
->conn_cfg
[proto
].tid_seg
[seg
];
363 p_seg
->count
= count
;
364 p_seg
->has_fl_mem
= has_fl
;
365 p_seg
->type
= seg_type
;
368 static void qed_ilt_cli_blk_fill(struct qed_ilt_client_cfg
*p_cli
,
369 struct qed_ilt_cli_blk
*p_blk
,
370 u32 start_line
, u32 total_size
, u32 elem_size
)
372 u32 ilt_size
= ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
);
374 /* verify thatits called only once for each block */
375 if (p_blk
->total_size
)
378 p_blk
->total_size
= total_size
;
379 p_blk
->real_size_in_page
= 0;
381 p_blk
->real_size_in_page
= (ilt_size
/ elem_size
) * elem_size
;
382 p_blk
->start_line
= start_line
;
385 static void qed_ilt_cli_adv_line(struct qed_hwfn
*p_hwfn
,
386 struct qed_ilt_client_cfg
*p_cli
,
387 struct qed_ilt_cli_blk
*p_blk
,
388 u32
*p_line
, enum ilt_clients client_id
)
390 if (!p_blk
->total_size
)
394 p_cli
->first
.val
= *p_line
;
396 p_cli
->active
= true;
397 *p_line
+= DIV_ROUND_UP(p_blk
->total_size
, p_blk
->real_size_in_page
);
398 p_cli
->last
.val
= *p_line
- 1;
400 DP_VERBOSE(p_hwfn
, QED_MSG_ILT
,
401 "ILT[Client %d] - Lines: [%08x - %08x]. Block - Size %08x [Real %08x] Start line %d\n",
402 client_id
, p_cli
->first
.val
,
403 p_cli
->last
.val
, p_blk
->total_size
,
404 p_blk
->real_size_in_page
, p_blk
->start_line
);
407 static u32
qed_ilt_get_dynamic_line_cnt(struct qed_hwfn
*p_hwfn
,
408 enum ilt_clients ilt_client
)
410 u32 cid_count
= p_hwfn
->p_cxt_mngr
->conn_cfg
[PROTOCOLID_ROCE
].cid_count
;
411 struct qed_ilt_client_cfg
*p_cli
;
412 u32 lines_to_skip
= 0;
415 if (ilt_client
== ILT_CLI_CDUC
) {
416 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUC
];
418 cxts_per_p
= ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
) /
419 (u32
) CONN_CXT_SIZE(p_hwfn
);
421 lines_to_skip
= cid_count
/ cxts_per_p
;
424 return lines_to_skip
;
427 static struct qed_ilt_client_cfg
*qed_cxt_set_cli(struct qed_ilt_client_cfg
430 p_cli
->active
= false;
431 p_cli
->first
.val
= 0;
436 static struct qed_ilt_cli_blk
*qed_cxt_set_blk(struct qed_ilt_cli_blk
*p_blk
)
438 p_blk
->total_size
= 0;
442 static void qed_cxt_ilt_blk_reset(struct qed_hwfn
*p_hwfn
)
444 struct qed_ilt_client_cfg
*clients
= p_hwfn
->p_cxt_mngr
->clients
;
445 u32 cli_idx
, blk_idx
;
447 for (cli_idx
= 0; cli_idx
< MAX_ILT_CLIENTS
; cli_idx
++) {
448 for (blk_idx
= 0; blk_idx
< ILT_CLI_PF_BLOCKS
; blk_idx
++)
449 clients
[cli_idx
].pf_blks
[blk_idx
].total_size
= 0;
451 for (blk_idx
= 0; blk_idx
< ILT_CLI_VF_BLOCKS
; blk_idx
++)
452 clients
[cli_idx
].vf_blks
[blk_idx
].total_size
= 0;
456 int qed_cxt_cfg_ilt_compute(struct qed_hwfn
*p_hwfn
, u32
*line_count
)
458 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
459 u32 curr_line
, total
, i
, task_size
, line
;
460 struct qed_ilt_client_cfg
*p_cli
;
461 struct qed_ilt_cli_blk
*p_blk
;
462 struct qed_cdu_iids cdu_iids
;
463 struct qed_src_iids src_iids
;
464 struct qed_qm_iids qm_iids
;
465 struct qed_tm_iids tm_iids
;
466 struct qed_tid_seg
*p_seg
;
468 memset(&qm_iids
, 0, sizeof(qm_iids
));
469 memset(&cdu_iids
, 0, sizeof(cdu_iids
));
470 memset(&src_iids
, 0, sizeof(src_iids
));
471 memset(&tm_iids
, 0, sizeof(tm_iids
));
473 p_mngr
->pf_start_line
= RESC_START(p_hwfn
, QED_ILT
);
475 /* Reset all ILT blocks at the beginning of ILT computing in order
476 * to prevent memory allocation for irrelevant blocks afterwards.
478 qed_cxt_ilt_blk_reset(p_hwfn
);
480 DP_VERBOSE(p_hwfn
, QED_MSG_ILT
,
481 "hwfn [%d] - Set context manager starting line to be 0x%08x\n",
482 p_hwfn
->my_id
, p_hwfn
->p_cxt_mngr
->pf_start_line
);
485 p_cli
= qed_cxt_set_cli(&p_mngr
->clients
[ILT_CLI_CDUC
]);
487 curr_line
= p_mngr
->pf_start_line
;
490 p_cli
->pf_total_lines
= 0;
492 /* get the counters for the CDUC and QM clients */
493 qed_cxt_cdu_iids(p_mngr
, &cdu_iids
);
495 p_blk
= qed_cxt_set_blk(&p_cli
->pf_blks
[CDUC_BLK
]);
497 total
= cdu_iids
.pf_cids
* CONN_CXT_SIZE(p_hwfn
);
499 qed_ilt_cli_blk_fill(p_cli
, p_blk
, curr_line
,
500 total
, CONN_CXT_SIZE(p_hwfn
));
502 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
, ILT_CLI_CDUC
);
503 p_cli
->pf_total_lines
= curr_line
- p_blk
->start_line
;
505 p_blk
->dynamic_line_cnt
= qed_ilt_get_dynamic_line_cnt(p_hwfn
,
509 p_blk
= qed_cxt_set_blk(&p_cli
->vf_blks
[CDUC_BLK
]);
510 total
= cdu_iids
.per_vf_cids
* CONN_CXT_SIZE(p_hwfn
);
512 qed_ilt_cli_blk_fill(p_cli
, p_blk
, curr_line
,
513 total
, CONN_CXT_SIZE(p_hwfn
));
515 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
, ILT_CLI_CDUC
);
516 p_cli
->vf_total_lines
= curr_line
- p_blk
->start_line
;
518 for (i
= 1; i
< p_mngr
->vf_count
; i
++)
519 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
523 p_cli
= qed_cxt_set_cli(&p_mngr
->clients
[ILT_CLI_CDUT
]);
524 p_cli
->first
.val
= curr_line
;
526 /* first the 'working' task memory */
527 for (i
= 0; i
< NUM_TASK_PF_SEGMENTS
; i
++) {
528 p_seg
= qed_cxt_tid_seg_info(p_hwfn
, i
);
529 if (!p_seg
|| p_seg
->count
== 0)
532 p_blk
= qed_cxt_set_blk(&p_cli
->pf_blks
[CDUT_SEG_BLK(i
)]);
533 total
= p_seg
->count
* p_mngr
->task_type_size
[p_seg
->type
];
534 qed_ilt_cli_blk_fill(p_cli
, p_blk
, curr_line
, total
,
535 p_mngr
->task_type_size
[p_seg
->type
]);
537 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
541 /* next the 'init' task memory (forced load memory) */
542 for (i
= 0; i
< NUM_TASK_PF_SEGMENTS
; i
++) {
543 p_seg
= qed_cxt_tid_seg_info(p_hwfn
, i
);
544 if (!p_seg
|| p_seg
->count
== 0)
548 qed_cxt_set_blk(&p_cli
->pf_blks
[CDUT_FL_SEG_BLK(i
, PF
)]);
550 if (!p_seg
->has_fl_mem
) {
551 /* The segment is active (total size pf 'working'
552 * memory is > 0) but has no FL (forced-load, Init)
555 * 1. The total-size in the corrsponding FL block of
556 * the ILT client is set to 0 - No ILT line are
557 * provisioned and no ILT memory allocated.
559 * 2. The start-line of said block is set to the
560 * start line of the matching working memory
561 * block in the ILT client. This is later used to
562 * configure the CDU segment offset registers and
563 * results in an FL command for TIDs of this
564 * segement behaves as regular load commands
565 * (loading TIDs from the working memory).
567 line
= p_cli
->pf_blks
[CDUT_SEG_BLK(i
)].start_line
;
569 qed_ilt_cli_blk_fill(p_cli
, p_blk
, line
, 0, 0);
572 total
= p_seg
->count
* p_mngr
->task_type_size
[p_seg
->type
];
574 qed_ilt_cli_blk_fill(p_cli
, p_blk
,
576 p_mngr
->task_type_size
[p_seg
->type
]);
578 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
581 p_cli
->pf_total_lines
= curr_line
- p_cli
->pf_blks
[0].start_line
;
584 p_seg
= qed_cxt_tid_seg_info(p_hwfn
, TASK_SEGMENT_VF
);
585 if (p_seg
&& p_seg
->count
) {
586 /* Stricly speaking we need to iterate over all VF
587 * task segment types, but a VF has only 1 segment
590 /* 'working' memory */
591 total
= p_seg
->count
* p_mngr
->task_type_size
[p_seg
->type
];
593 p_blk
= qed_cxt_set_blk(&p_cli
->vf_blks
[CDUT_SEG_BLK(0)]);
594 qed_ilt_cli_blk_fill(p_cli
, p_blk
,
596 p_mngr
->task_type_size
[p_seg
->type
]);
598 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
603 qed_cxt_set_blk(&p_cli
->vf_blks
[CDUT_FL_SEG_BLK(0, VF
)]);
604 if (!p_seg
->has_fl_mem
) {
605 /* see comment above */
606 line
= p_cli
->vf_blks
[CDUT_SEG_BLK(0)].start_line
;
607 qed_ilt_cli_blk_fill(p_cli
, p_blk
, line
, 0, 0);
609 task_size
= p_mngr
->task_type_size
[p_seg
->type
];
610 qed_ilt_cli_blk_fill(p_cli
, p_blk
,
611 curr_line
, total
, task_size
);
612 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
615 p_cli
->vf_total_lines
= curr_line
-
616 p_cli
->vf_blks
[0].start_line
;
618 /* Now for the rest of the VFs */
619 for (i
= 1; i
< p_mngr
->vf_count
; i
++) {
620 p_blk
= &p_cli
->vf_blks
[CDUT_SEG_BLK(0)];
621 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
624 p_blk
= &p_cli
->vf_blks
[CDUT_FL_SEG_BLK(0, VF
)];
625 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
631 p_cli
= qed_cxt_set_cli(&p_mngr
->clients
[ILT_CLI_QM
]);
632 p_blk
= qed_cxt_set_blk(&p_cli
->pf_blks
[0]);
634 qed_cxt_qm_iids(p_hwfn
, &qm_iids
);
635 total
= qed_qm_pf_mem_size(qm_iids
.cids
,
636 qm_iids
.vf_cids
, qm_iids
.tids
,
637 p_hwfn
->qm_info
.num_pqs
,
638 p_hwfn
->qm_info
.num_vf_pqs
);
642 "QM ILT Info, (cids=%d, vf_cids=%d, tids=%d, num_pqs=%d, num_vf_pqs=%d, memory_size=%d)\n",
646 p_hwfn
->qm_info
.num_pqs
, p_hwfn
->qm_info
.num_vf_pqs
, total
);
648 qed_ilt_cli_blk_fill(p_cli
, p_blk
,
649 curr_line
, total
* 0x1000,
652 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
, ILT_CLI_QM
);
653 p_cli
->pf_total_lines
= curr_line
- p_blk
->start_line
;
656 p_cli
= qed_cxt_set_cli(&p_mngr
->clients
[ILT_CLI_SRC
]);
657 qed_cxt_src_iids(p_mngr
, &src_iids
);
659 /* Both the PF and VFs searcher connections are stored in the per PF
660 * database. Thus sum the PF searcher cids and all the VFs searcher
663 total
= src_iids
.pf_cids
+ src_iids
.per_vf_cids
* p_mngr
->vf_count
;
665 u32 local_max
= max_t(u32
, total
,
668 total
= roundup_pow_of_two(local_max
);
670 p_blk
= qed_cxt_set_blk(&p_cli
->pf_blks
[0]);
671 qed_ilt_cli_blk_fill(p_cli
, p_blk
, curr_line
,
672 total
* sizeof(struct src_ent
),
673 sizeof(struct src_ent
));
675 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
677 p_cli
->pf_total_lines
= curr_line
- p_blk
->start_line
;
681 p_cli
= qed_cxt_set_cli(&p_mngr
->clients
[ILT_CLI_TM
]);
682 qed_cxt_tm_iids(p_hwfn
, p_mngr
, &tm_iids
);
683 total
= tm_iids
.pf_cids
+ tm_iids
.pf_tids_total
;
685 p_blk
= qed_cxt_set_blk(&p_cli
->pf_blks
[0]);
686 qed_ilt_cli_blk_fill(p_cli
, p_blk
, curr_line
,
687 total
* TM_ELEM_SIZE
, TM_ELEM_SIZE
);
689 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
691 p_cli
->pf_total_lines
= curr_line
- p_blk
->start_line
;
695 total
= tm_iids
.per_vf_cids
+ tm_iids
.per_vf_tids
;
697 p_blk
= qed_cxt_set_blk(&p_cli
->vf_blks
[0]);
698 qed_ilt_cli_blk_fill(p_cli
, p_blk
, curr_line
,
699 total
* TM_ELEM_SIZE
, TM_ELEM_SIZE
);
701 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
704 p_cli
->vf_total_lines
= curr_line
- p_blk
->start_line
;
705 for (i
= 1; i
< p_mngr
->vf_count
; i
++)
706 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
710 /* TSDM (SRQ CONTEXT) */
711 total
= qed_cxt_get_total_srq_count(p_hwfn
);
714 p_cli
= qed_cxt_set_cli(&p_mngr
->clients
[ILT_CLI_TSDM
]);
715 p_blk
= qed_cxt_set_blk(&p_cli
->pf_blks
[SRQ_BLK
]);
716 qed_ilt_cli_blk_fill(p_cli
, p_blk
, curr_line
,
717 total
* SRQ_CXT_SIZE
, SRQ_CXT_SIZE
);
719 qed_ilt_cli_adv_line(p_hwfn
, p_cli
, p_blk
, &curr_line
,
721 p_cli
->pf_total_lines
= curr_line
- p_blk
->start_line
;
724 *line_count
= curr_line
- p_hwfn
->p_cxt_mngr
->pf_start_line
;
726 if (curr_line
- p_hwfn
->p_cxt_mngr
->pf_start_line
>
727 RESC_NUM(p_hwfn
, QED_ILT
))
733 u32
qed_cxt_cfg_ilt_compute_excess(struct qed_hwfn
*p_hwfn
, u32 used_lines
)
735 struct qed_ilt_client_cfg
*p_cli
;
736 u32 excess_lines
, available_lines
;
737 struct qed_cxt_mngr
*p_mngr
;
738 u32 ilt_page_size
, elem_size
;
739 struct qed_tid_seg
*p_seg
;
742 available_lines
= RESC_NUM(p_hwfn
, QED_ILT
);
743 excess_lines
= used_lines
- available_lines
;
748 if (!QED_IS_RDMA_PERSONALITY(p_hwfn
))
751 p_mngr
= p_hwfn
->p_cxt_mngr
;
752 p_cli
= &p_mngr
->clients
[ILT_CLI_CDUT
];
753 ilt_page_size
= ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
);
755 for (i
= 0; i
< NUM_TASK_PF_SEGMENTS
; i
++) {
756 p_seg
= qed_cxt_tid_seg_info(p_hwfn
, i
);
757 if (!p_seg
|| p_seg
->count
== 0)
760 elem_size
= p_mngr
->task_type_size
[p_seg
->type
];
764 return (ilt_page_size
/ elem_size
) * excess_lines
;
767 DP_NOTICE(p_hwfn
, "failed computing excess ILT lines\n");
771 static void qed_cxt_src_t2_free(struct qed_hwfn
*p_hwfn
)
773 struct qed_src_t2
*p_t2
= &p_hwfn
->p_cxt_mngr
->src_t2
;
776 if (!p_t2
|| !p_t2
->dma_mem
)
779 for (i
= 0; i
< p_t2
->num_pages
; i
++)
780 if (p_t2
->dma_mem
[i
].virt_addr
)
781 dma_free_coherent(&p_hwfn
->cdev
->pdev
->dev
,
782 p_t2
->dma_mem
[i
].size
,
783 p_t2
->dma_mem
[i
].virt_addr
,
784 p_t2
->dma_mem
[i
].phys_addr
);
786 kfree(p_t2
->dma_mem
);
787 p_t2
->dma_mem
= NULL
;
791 qed_cxt_t2_alloc_pages(struct qed_hwfn
*p_hwfn
,
792 struct qed_src_t2
*p_t2
, u32 total_size
, u32 page_size
)
797 if (!p_t2
|| !p_t2
->dma_mem
)
800 for (i
= 0; i
< p_t2
->num_pages
; i
++) {
801 size
= min_t(u32
, total_size
, page_size
);
802 p_virt
= &p_t2
->dma_mem
[i
].virt_addr
;
804 *p_virt
= dma_alloc_coherent(&p_hwfn
->cdev
->pdev
->dev
,
806 &p_t2
->dma_mem
[i
].phys_addr
,
808 if (!p_t2
->dma_mem
[i
].virt_addr
)
811 memset(*p_virt
, 0, size
);
812 p_t2
->dma_mem
[i
].size
= size
;
819 static int qed_cxt_src_t2_alloc(struct qed_hwfn
*p_hwfn
)
821 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
822 u32 conn_num
, total_size
, ent_per_page
, psz
, i
;
823 struct phys_mem_desc
*p_t2_last_page
;
824 struct qed_ilt_client_cfg
*p_src
;
825 struct qed_src_iids src_iids
;
826 struct qed_src_t2
*p_t2
;
829 memset(&src_iids
, 0, sizeof(src_iids
));
831 /* if the SRC ILT client is inactive - there are no connection
832 * requiring the searcer, leave.
834 p_src
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_SRC
];
838 qed_cxt_src_iids(p_mngr
, &src_iids
);
839 conn_num
= src_iids
.pf_cids
+ src_iids
.per_vf_cids
* p_mngr
->vf_count
;
840 total_size
= conn_num
* sizeof(struct src_ent
);
842 /* use the same page size as the SRC ILT client */
843 psz
= ILT_PAGE_IN_BYTES(p_src
->p_size
.val
);
844 p_t2
= &p_mngr
->src_t2
;
845 p_t2
->num_pages
= DIV_ROUND_UP(total_size
, psz
);
848 p_t2
->dma_mem
= kcalloc(p_t2
->num_pages
, sizeof(struct phys_mem_desc
),
850 if (!p_t2
->dma_mem
) {
851 DP_NOTICE(p_hwfn
, "Failed to allocate t2 table\n");
856 rc
= qed_cxt_t2_alloc_pages(p_hwfn
, p_t2
, total_size
, psz
);
860 /* Set the t2 pointers */
862 /* entries per page - must be a power of two */
863 ent_per_page
= psz
/ sizeof(struct src_ent
);
865 p_t2
->first_free
= (u64
)p_t2
->dma_mem
[0].phys_addr
;
867 p_t2_last_page
= &p_t2
->dma_mem
[(conn_num
- 1) / ent_per_page
];
868 p_t2
->last_free
= (u64
)p_t2_last_page
->phys_addr
+
869 ((conn_num
- 1) & (ent_per_page
- 1)) * sizeof(struct src_ent
);
871 for (i
= 0; i
< p_t2
->num_pages
; i
++) {
872 u32 ent_num
= min_t(u32
,
875 struct src_ent
*entries
= p_t2
->dma_mem
[i
].virt_addr
;
876 u64 p_ent_phys
= (u64
)p_t2
->dma_mem
[i
].phys_addr
, val
;
879 for (j
= 0; j
< ent_num
- 1; j
++) {
880 val
= p_ent_phys
+ (j
+ 1) * sizeof(struct src_ent
);
881 entries
[j
].next
= cpu_to_be64(val
);
884 if (i
< p_t2
->num_pages
- 1)
885 val
= (u64
)p_t2
->dma_mem
[i
+ 1].phys_addr
;
888 entries
[j
].next
= cpu_to_be64(val
);
896 qed_cxt_src_t2_free(p_hwfn
);
900 #define for_each_ilt_valid_client(pos, clients) \
901 for (pos = 0; pos < MAX_ILT_CLIENTS; pos++) \
902 if (!clients[pos].active) { \
906 /* Total number of ILT lines used by this PF */
907 static u32
qed_cxt_ilt_shadow_size(struct qed_ilt_client_cfg
*ilt_clients
)
912 for_each_ilt_valid_client(i
, ilt_clients
)
913 size
+= (ilt_clients
[i
].last
.val
- ilt_clients
[i
].first
.val
+ 1);
918 static void qed_ilt_shadow_free(struct qed_hwfn
*p_hwfn
)
920 struct qed_ilt_client_cfg
*p_cli
= p_hwfn
->p_cxt_mngr
->clients
;
921 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
924 ilt_size
= qed_cxt_ilt_shadow_size(p_cli
);
926 for (i
= 0; p_mngr
->ilt_shadow
&& i
< ilt_size
; i
++) {
927 struct phys_mem_desc
*p_dma
= &p_mngr
->ilt_shadow
[i
];
929 if (p_dma
->virt_addr
)
930 dma_free_coherent(&p_hwfn
->cdev
->pdev
->dev
,
931 p_dma
->size
, p_dma
->virt_addr
,
933 p_dma
->virt_addr
= NULL
;
935 kfree(p_mngr
->ilt_shadow
);
938 static int qed_ilt_blk_alloc(struct qed_hwfn
*p_hwfn
,
939 struct qed_ilt_cli_blk
*p_blk
,
940 enum ilt_clients ilt_client
,
941 u32 start_line_offset
)
943 struct phys_mem_desc
*ilt_shadow
= p_hwfn
->p_cxt_mngr
->ilt_shadow
;
944 u32 lines
, line
, sz_left
, lines_to_skip
= 0;
946 /* Special handling for RoCE that supports dynamic allocation */
947 if (QED_IS_RDMA_PERSONALITY(p_hwfn
) &&
948 ((ilt_client
== ILT_CLI_CDUT
) || ilt_client
== ILT_CLI_TSDM
))
951 lines_to_skip
= p_blk
->dynamic_line_cnt
;
953 if (!p_blk
->total_size
)
956 sz_left
= p_blk
->total_size
;
957 lines
= DIV_ROUND_UP(sz_left
, p_blk
->real_size_in_page
) - lines_to_skip
;
958 line
= p_blk
->start_line
+ start_line_offset
-
959 p_hwfn
->p_cxt_mngr
->pf_start_line
+ lines_to_skip
;
961 for (; lines
; lines
--) {
966 size
= min_t(u32
, sz_left
, p_blk
->real_size_in_page
);
967 p_virt
= dma_alloc_coherent(&p_hwfn
->cdev
->pdev
->dev
, size
,
968 &p_phys
, GFP_KERNEL
);
972 ilt_shadow
[line
].phys_addr
= p_phys
;
973 ilt_shadow
[line
].virt_addr
= p_virt
;
974 ilt_shadow
[line
].size
= size
;
976 DP_VERBOSE(p_hwfn
, QED_MSG_ILT
,
977 "ILT shadow: Line [%d] Physical 0x%llx Virtual %p Size %d\n",
978 line
, (u64
)p_phys
, p_virt
, size
);
987 static int qed_ilt_shadow_alloc(struct qed_hwfn
*p_hwfn
)
989 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
990 struct qed_ilt_client_cfg
*clients
= p_mngr
->clients
;
991 struct qed_ilt_cli_blk
*p_blk
;
995 size
= qed_cxt_ilt_shadow_size(clients
);
996 p_mngr
->ilt_shadow
= kcalloc(size
, sizeof(struct phys_mem_desc
),
998 if (!p_mngr
->ilt_shadow
) {
1000 goto ilt_shadow_fail
;
1003 DP_VERBOSE(p_hwfn
, QED_MSG_ILT
,
1004 "Allocated 0x%x bytes for ilt shadow\n",
1005 (u32
)(size
* sizeof(struct phys_mem_desc
)));
1007 for_each_ilt_valid_client(i
, clients
) {
1008 for (j
= 0; j
< ILT_CLI_PF_BLOCKS
; j
++) {
1009 p_blk
= &clients
[i
].pf_blks
[j
];
1010 rc
= qed_ilt_blk_alloc(p_hwfn
, p_blk
, i
, 0);
1012 goto ilt_shadow_fail
;
1014 for (k
= 0; k
< p_mngr
->vf_count
; k
++) {
1015 for (j
= 0; j
< ILT_CLI_VF_BLOCKS
; j
++) {
1016 u32 lines
= clients
[i
].vf_total_lines
* k
;
1018 p_blk
= &clients
[i
].vf_blks
[j
];
1019 rc
= qed_ilt_blk_alloc(p_hwfn
, p_blk
, i
, lines
);
1021 goto ilt_shadow_fail
;
1029 qed_ilt_shadow_free(p_hwfn
);
1033 static void qed_cid_map_free(struct qed_hwfn
*p_hwfn
)
1035 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1038 for (type
= 0; type
< MAX_CONN_TYPES
; type
++) {
1039 kfree(p_mngr
->acquired
[type
].cid_map
);
1040 p_mngr
->acquired
[type
].max_count
= 0;
1041 p_mngr
->acquired
[type
].start_cid
= 0;
1043 for (vf
= 0; vf
< MAX_NUM_VFS
; vf
++) {
1044 kfree(p_mngr
->acquired_vf
[type
][vf
].cid_map
);
1045 p_mngr
->acquired_vf
[type
][vf
].max_count
= 0;
1046 p_mngr
->acquired_vf
[type
][vf
].start_cid
= 0;
1052 qed_cid_map_alloc_single(struct qed_hwfn
*p_hwfn
,
1055 u32 cid_count
, struct qed_cid_acquired_map
*p_map
)
1062 size
= DIV_ROUND_UP(cid_count
,
1063 sizeof(unsigned long) * BITS_PER_BYTE
) *
1064 sizeof(unsigned long);
1065 p_map
->cid_map
= kzalloc(size
, GFP_KERNEL
);
1066 if (!p_map
->cid_map
)
1069 p_map
->max_count
= cid_count
;
1070 p_map
->start_cid
= cid_start
;
1072 DP_VERBOSE(p_hwfn
, QED_MSG_CXT
,
1073 "Type %08x start: %08x count %08x\n",
1074 type
, p_map
->start_cid
, p_map
->max_count
);
1079 static int qed_cid_map_alloc(struct qed_hwfn
*p_hwfn
)
1081 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1082 u32 start_cid
= 0, vf_start_cid
= 0;
1085 for (type
= 0; type
< MAX_CONN_TYPES
; type
++) {
1086 struct qed_conn_type_cfg
*p_cfg
= &p_mngr
->conn_cfg
[type
];
1087 struct qed_cid_acquired_map
*p_map
;
1089 /* Handle PF maps */
1090 p_map
= &p_mngr
->acquired
[type
];
1091 if (qed_cid_map_alloc_single(p_hwfn
, type
, start_cid
,
1092 p_cfg
->cid_count
, p_map
))
1095 /* Handle VF maps */
1096 for (vf
= 0; vf
< MAX_NUM_VFS
; vf
++) {
1097 p_map
= &p_mngr
->acquired_vf
[type
][vf
];
1098 if (qed_cid_map_alloc_single(p_hwfn
, type
,
1100 p_cfg
->cids_per_vf
, p_map
))
1104 start_cid
+= p_cfg
->cid_count
;
1105 vf_start_cid
+= p_cfg
->cids_per_vf
;
1111 qed_cid_map_free(p_hwfn
);
1115 int qed_cxt_mngr_alloc(struct qed_hwfn
*p_hwfn
)
1117 struct qed_ilt_client_cfg
*clients
;
1118 struct qed_cxt_mngr
*p_mngr
;
1121 p_mngr
= kzalloc(sizeof(*p_mngr
), GFP_KERNEL
);
1125 /* Initialize ILT client registers */
1126 clients
= p_mngr
->clients
;
1127 clients
[ILT_CLI_CDUC
].first
.reg
= ILT_CFG_REG(CDUC
, FIRST_ILT
);
1128 clients
[ILT_CLI_CDUC
].last
.reg
= ILT_CFG_REG(CDUC
, LAST_ILT
);
1129 clients
[ILT_CLI_CDUC
].p_size
.reg
= ILT_CFG_REG(CDUC
, P_SIZE
);
1131 clients
[ILT_CLI_QM
].first
.reg
= ILT_CFG_REG(QM
, FIRST_ILT
);
1132 clients
[ILT_CLI_QM
].last
.reg
= ILT_CFG_REG(QM
, LAST_ILT
);
1133 clients
[ILT_CLI_QM
].p_size
.reg
= ILT_CFG_REG(QM
, P_SIZE
);
1135 clients
[ILT_CLI_TM
].first
.reg
= ILT_CFG_REG(TM
, FIRST_ILT
);
1136 clients
[ILT_CLI_TM
].last
.reg
= ILT_CFG_REG(TM
, LAST_ILT
);
1137 clients
[ILT_CLI_TM
].p_size
.reg
= ILT_CFG_REG(TM
, P_SIZE
);
1139 clients
[ILT_CLI_SRC
].first
.reg
= ILT_CFG_REG(SRC
, FIRST_ILT
);
1140 clients
[ILT_CLI_SRC
].last
.reg
= ILT_CFG_REG(SRC
, LAST_ILT
);
1141 clients
[ILT_CLI_SRC
].p_size
.reg
= ILT_CFG_REG(SRC
, P_SIZE
);
1143 clients
[ILT_CLI_CDUT
].first
.reg
= ILT_CFG_REG(CDUT
, FIRST_ILT
);
1144 clients
[ILT_CLI_CDUT
].last
.reg
= ILT_CFG_REG(CDUT
, LAST_ILT
);
1145 clients
[ILT_CLI_CDUT
].p_size
.reg
= ILT_CFG_REG(CDUT
, P_SIZE
);
1147 clients
[ILT_CLI_TSDM
].first
.reg
= ILT_CFG_REG(TSDM
, FIRST_ILT
);
1148 clients
[ILT_CLI_TSDM
].last
.reg
= ILT_CFG_REG(TSDM
, LAST_ILT
);
1149 clients
[ILT_CLI_TSDM
].p_size
.reg
= ILT_CFG_REG(TSDM
, P_SIZE
);
1150 /* default ILT page size for all clients is 64K */
1151 for (i
= 0; i
< MAX_ILT_CLIENTS
; i
++)
1152 p_mngr
->clients
[i
].p_size
.val
= ILT_DEFAULT_HW_P_SIZE
;
1154 p_mngr
->conn_ctx_size
= CONN_CXT_SIZE(p_hwfn
);
1156 /* Initialize task sizes */
1157 p_mngr
->task_type_size
[0] = TYPE0_TASK_CXT_SIZE(p_hwfn
);
1158 p_mngr
->task_type_size
[1] = TYPE1_TASK_CXT_SIZE(p_hwfn
);
1160 if (p_hwfn
->cdev
->p_iov_info
) {
1161 p_mngr
->vf_count
= p_hwfn
->cdev
->p_iov_info
->total_vfs
;
1162 p_mngr
->first_vf_in_pf
=
1163 p_hwfn
->cdev
->p_iov_info
->first_vf_in_pf
;
1165 /* Initialize the dynamic ILT allocation mutex */
1166 mutex_init(&p_mngr
->mutex
);
1168 /* Set the cxt mangr pointer priori to further allocations */
1169 p_hwfn
->p_cxt_mngr
= p_mngr
;
1174 int qed_cxt_tables_alloc(struct qed_hwfn
*p_hwfn
)
1178 /* Allocate the ILT shadow table */
1179 rc
= qed_ilt_shadow_alloc(p_hwfn
);
1181 goto tables_alloc_fail
;
1183 /* Allocate the T2 table */
1184 rc
= qed_cxt_src_t2_alloc(p_hwfn
);
1186 goto tables_alloc_fail
;
1188 /* Allocate and initialize the acquired cids bitmaps */
1189 rc
= qed_cid_map_alloc(p_hwfn
);
1191 goto tables_alloc_fail
;
1196 qed_cxt_mngr_free(p_hwfn
);
1200 void qed_cxt_mngr_free(struct qed_hwfn
*p_hwfn
)
1202 if (!p_hwfn
->p_cxt_mngr
)
1205 qed_cid_map_free(p_hwfn
);
1206 qed_cxt_src_t2_free(p_hwfn
);
1207 qed_ilt_shadow_free(p_hwfn
);
1208 kfree(p_hwfn
->p_cxt_mngr
);
1210 p_hwfn
->p_cxt_mngr
= NULL
;
1213 void qed_cxt_mngr_setup(struct qed_hwfn
*p_hwfn
)
1215 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1216 struct qed_cid_acquired_map
*p_map
;
1217 struct qed_conn_type_cfg
*p_cfg
;
1221 /* Reset acquired cids */
1222 for (type
= 0; type
< MAX_CONN_TYPES
; type
++) {
1225 p_cfg
= &p_mngr
->conn_cfg
[type
];
1226 if (p_cfg
->cid_count
) {
1227 p_map
= &p_mngr
->acquired
[type
];
1228 len
= DIV_ROUND_UP(p_map
->max_count
,
1229 sizeof(unsigned long) *
1231 sizeof(unsigned long);
1232 memset(p_map
->cid_map
, 0, len
);
1235 if (!p_cfg
->cids_per_vf
)
1238 for (vf
= 0; vf
< MAX_NUM_VFS
; vf
++) {
1239 p_map
= &p_mngr
->acquired_vf
[type
][vf
];
1240 len
= DIV_ROUND_UP(p_map
->max_count
,
1241 sizeof(unsigned long) *
1243 sizeof(unsigned long);
1244 memset(p_map
->cid_map
, 0, len
);
1250 #define CDUC_CXT_SIZE_SHIFT \
1251 CDU_REG_CID_ADDR_PARAMS_CONTEXT_SIZE_SHIFT
1253 #define CDUC_CXT_SIZE_MASK \
1254 (CDU_REG_CID_ADDR_PARAMS_CONTEXT_SIZE >> CDUC_CXT_SIZE_SHIFT)
1256 #define CDUC_BLOCK_WASTE_SHIFT \
1257 CDU_REG_CID_ADDR_PARAMS_BLOCK_WASTE_SHIFT
1259 #define CDUC_BLOCK_WASTE_MASK \
1260 (CDU_REG_CID_ADDR_PARAMS_BLOCK_WASTE >> CDUC_BLOCK_WASTE_SHIFT)
1262 #define CDUC_NCIB_SHIFT \
1263 CDU_REG_CID_ADDR_PARAMS_NCIB_SHIFT
1265 #define CDUC_NCIB_MASK \
1266 (CDU_REG_CID_ADDR_PARAMS_NCIB >> CDUC_NCIB_SHIFT)
1268 #define CDUT_TYPE0_CXT_SIZE_SHIFT \
1269 CDU_REG_SEGMENT0_PARAMS_T0_TID_SIZE_SHIFT
1271 #define CDUT_TYPE0_CXT_SIZE_MASK \
1272 (CDU_REG_SEGMENT0_PARAMS_T0_TID_SIZE >> \
1273 CDUT_TYPE0_CXT_SIZE_SHIFT)
1275 #define CDUT_TYPE0_BLOCK_WASTE_SHIFT \
1276 CDU_REG_SEGMENT0_PARAMS_T0_TID_BLOCK_WASTE_SHIFT
1278 #define CDUT_TYPE0_BLOCK_WASTE_MASK \
1279 (CDU_REG_SEGMENT0_PARAMS_T0_TID_BLOCK_WASTE >> \
1280 CDUT_TYPE0_BLOCK_WASTE_SHIFT)
1282 #define CDUT_TYPE0_NCIB_SHIFT \
1283 CDU_REG_SEGMENT0_PARAMS_T0_NUM_TIDS_IN_BLOCK_SHIFT
1285 #define CDUT_TYPE0_NCIB_MASK \
1286 (CDU_REG_SEGMENT0_PARAMS_T0_NUM_TIDS_IN_BLOCK >> \
1287 CDUT_TYPE0_NCIB_SHIFT)
1289 #define CDUT_TYPE1_CXT_SIZE_SHIFT \
1290 CDU_REG_SEGMENT1_PARAMS_T1_TID_SIZE_SHIFT
1292 #define CDUT_TYPE1_CXT_SIZE_MASK \
1293 (CDU_REG_SEGMENT1_PARAMS_T1_TID_SIZE >> \
1294 CDUT_TYPE1_CXT_SIZE_SHIFT)
1296 #define CDUT_TYPE1_BLOCK_WASTE_SHIFT \
1297 CDU_REG_SEGMENT1_PARAMS_T1_TID_BLOCK_WASTE_SHIFT
1299 #define CDUT_TYPE1_BLOCK_WASTE_MASK \
1300 (CDU_REG_SEGMENT1_PARAMS_T1_TID_BLOCK_WASTE >> \
1301 CDUT_TYPE1_BLOCK_WASTE_SHIFT)
1303 #define CDUT_TYPE1_NCIB_SHIFT \
1304 CDU_REG_SEGMENT1_PARAMS_T1_NUM_TIDS_IN_BLOCK_SHIFT
1306 #define CDUT_TYPE1_NCIB_MASK \
1307 (CDU_REG_SEGMENT1_PARAMS_T1_NUM_TIDS_IN_BLOCK >> \
1308 CDUT_TYPE1_NCIB_SHIFT)
1310 static void qed_cdu_init_common(struct qed_hwfn
*p_hwfn
)
1312 u32 page_sz
, elems_per_page
, block_waste
, cxt_size
, cdu_params
= 0;
1314 /* CDUC - connection configuration */
1315 page_sz
= p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUC
].p_size
.val
;
1316 cxt_size
= CONN_CXT_SIZE(p_hwfn
);
1317 elems_per_page
= ILT_PAGE_IN_BYTES(page_sz
) / cxt_size
;
1318 block_waste
= ILT_PAGE_IN_BYTES(page_sz
) - elems_per_page
* cxt_size
;
1320 SET_FIELD(cdu_params
, CDUC_CXT_SIZE
, cxt_size
);
1321 SET_FIELD(cdu_params
, CDUC_BLOCK_WASTE
, block_waste
);
1322 SET_FIELD(cdu_params
, CDUC_NCIB
, elems_per_page
);
1323 STORE_RT_REG(p_hwfn
, CDU_REG_CID_ADDR_PARAMS_RT_OFFSET
, cdu_params
);
1325 /* CDUT - type-0 tasks configuration */
1326 page_sz
= p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUT
].p_size
.val
;
1327 cxt_size
= p_hwfn
->p_cxt_mngr
->task_type_size
[0];
1328 elems_per_page
= ILT_PAGE_IN_BYTES(page_sz
) / cxt_size
;
1329 block_waste
= ILT_PAGE_IN_BYTES(page_sz
) - elems_per_page
* cxt_size
;
1331 /* cxt size and block-waste are multipes of 8 */
1333 SET_FIELD(cdu_params
, CDUT_TYPE0_CXT_SIZE
, (cxt_size
>> 3));
1334 SET_FIELD(cdu_params
, CDUT_TYPE0_BLOCK_WASTE
, (block_waste
>> 3));
1335 SET_FIELD(cdu_params
, CDUT_TYPE0_NCIB
, elems_per_page
);
1336 STORE_RT_REG(p_hwfn
, CDU_REG_SEGMENT0_PARAMS_RT_OFFSET
, cdu_params
);
1338 /* CDUT - type-1 tasks configuration */
1339 cxt_size
= p_hwfn
->p_cxt_mngr
->task_type_size
[1];
1340 elems_per_page
= ILT_PAGE_IN_BYTES(page_sz
) / cxt_size
;
1341 block_waste
= ILT_PAGE_IN_BYTES(page_sz
) - elems_per_page
* cxt_size
;
1343 /* cxt size and block-waste are multipes of 8 */
1345 SET_FIELD(cdu_params
, CDUT_TYPE1_CXT_SIZE
, (cxt_size
>> 3));
1346 SET_FIELD(cdu_params
, CDUT_TYPE1_BLOCK_WASTE
, (block_waste
>> 3));
1347 SET_FIELD(cdu_params
, CDUT_TYPE1_NCIB
, elems_per_page
);
1348 STORE_RT_REG(p_hwfn
, CDU_REG_SEGMENT1_PARAMS_RT_OFFSET
, cdu_params
);
1352 #define CDU_SEG_REG_TYPE_SHIFT CDU_SEG_TYPE_OFFSET_REG_TYPE_SHIFT
1353 #define CDU_SEG_REG_TYPE_MASK 0x1
1354 #define CDU_SEG_REG_OFFSET_SHIFT 0
1355 #define CDU_SEG_REG_OFFSET_MASK CDU_SEG_TYPE_OFFSET_REG_OFFSET_MASK
1357 static void qed_cdu_init_pf(struct qed_hwfn
*p_hwfn
)
1359 struct qed_ilt_client_cfg
*p_cli
;
1360 struct qed_tid_seg
*p_seg
;
1361 u32 cdu_seg_params
, offset
;
1364 static const u32 rt_type_offset_arr
[] = {
1365 CDU_REG_PF_SEG0_TYPE_OFFSET_RT_OFFSET
,
1366 CDU_REG_PF_SEG1_TYPE_OFFSET_RT_OFFSET
,
1367 CDU_REG_PF_SEG2_TYPE_OFFSET_RT_OFFSET
,
1368 CDU_REG_PF_SEG3_TYPE_OFFSET_RT_OFFSET
1371 static const u32 rt_type_offset_fl_arr
[] = {
1372 CDU_REG_PF_FL_SEG0_TYPE_OFFSET_RT_OFFSET
,
1373 CDU_REG_PF_FL_SEG1_TYPE_OFFSET_RT_OFFSET
,
1374 CDU_REG_PF_FL_SEG2_TYPE_OFFSET_RT_OFFSET
,
1375 CDU_REG_PF_FL_SEG3_TYPE_OFFSET_RT_OFFSET
1378 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUT
];
1380 /* There are initializations only for CDUT during pf Phase */
1381 for (i
= 0; i
< NUM_TASK_PF_SEGMENTS
; i
++) {
1383 p_seg
= qed_cxt_tid_seg_info(p_hwfn
, i
);
1387 /* Note: start_line is already adjusted for the CDU
1388 * segment register granularity, so we just need to
1389 * divide. Adjustment is implicit as we assume ILT
1390 * Page size is larger than 32K!
1392 offset
= (ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
) *
1393 (p_cli
->pf_blks
[CDUT_SEG_BLK(i
)].start_line
-
1394 p_cli
->first
.val
)) / CDUT_SEG_ALIGNMET_IN_BYTES
;
1397 SET_FIELD(cdu_seg_params
, CDU_SEG_REG_TYPE
, p_seg
->type
);
1398 SET_FIELD(cdu_seg_params
, CDU_SEG_REG_OFFSET
, offset
);
1399 STORE_RT_REG(p_hwfn
, rt_type_offset_arr
[i
], cdu_seg_params
);
1401 offset
= (ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
) *
1402 (p_cli
->pf_blks
[CDUT_FL_SEG_BLK(i
, PF
)].start_line
-
1403 p_cli
->first
.val
)) / CDUT_SEG_ALIGNMET_IN_BYTES
;
1406 SET_FIELD(cdu_seg_params
, CDU_SEG_REG_TYPE
, p_seg
->type
);
1407 SET_FIELD(cdu_seg_params
, CDU_SEG_REG_OFFSET
, offset
);
1408 STORE_RT_REG(p_hwfn
, rt_type_offset_fl_arr
[i
], cdu_seg_params
);
1412 void qed_qm_init_pf(struct qed_hwfn
*p_hwfn
,
1413 struct qed_ptt
*p_ptt
, bool is_pf_loading
)
1415 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
1416 struct qed_qm_pf_rt_init_params params
;
1417 struct qed_qm_iids iids
;
1419 memset(&iids
, 0, sizeof(iids
));
1420 qed_cxt_qm_iids(p_hwfn
, &iids
);
1422 memset(¶ms
, 0, sizeof(params
));
1423 params
.port_id
= p_hwfn
->port_id
;
1424 params
.pf_id
= p_hwfn
->rel_pf_id
;
1425 params
.max_phys_tcs_per_port
= qm_info
->max_phys_tcs_per_port
;
1426 params
.is_pf_loading
= is_pf_loading
;
1427 params
.num_pf_cids
= iids
.cids
;
1428 params
.num_vf_cids
= iids
.vf_cids
;
1429 params
.num_tids
= iids
.tids
;
1430 params
.start_pq
= qm_info
->start_pq
;
1431 params
.num_pf_pqs
= qm_info
->num_pqs
- qm_info
->num_vf_pqs
;
1432 params
.num_vf_pqs
= qm_info
->num_vf_pqs
;
1433 params
.start_vport
= qm_info
->start_vport
;
1434 params
.num_vports
= qm_info
->num_vports
;
1435 params
.pf_wfq
= qm_info
->pf_wfq
;
1436 params
.pf_rl
= qm_info
->pf_rl
;
1437 params
.pq_params
= qm_info
->qm_pq_params
;
1438 params
.vport_params
= qm_info
->qm_vport_params
;
1440 qed_qm_pf_rt_init(p_hwfn
, p_ptt
, ¶ms
);
1444 static void qed_cm_init_pf(struct qed_hwfn
*p_hwfn
)
1446 /* XCM pure-LB queue */
1447 STORE_RT_REG(p_hwfn
, XCM_REG_CON_PHY_Q3_RT_OFFSET
,
1448 qed_get_cm_pq_idx(p_hwfn
, PQ_FLAGS_LB
));
1452 static void qed_dq_init_pf(struct qed_hwfn
*p_hwfn
)
1454 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1455 u32 dq_pf_max_cid
= 0, dq_vf_max_cid
= 0;
1457 dq_pf_max_cid
+= (p_mngr
->conn_cfg
[0].cid_count
>> DQ_RANGE_SHIFT
);
1458 STORE_RT_REG(p_hwfn
, DORQ_REG_PF_MAX_ICID_0_RT_OFFSET
, dq_pf_max_cid
);
1460 dq_vf_max_cid
+= (p_mngr
->conn_cfg
[0].cids_per_vf
>> DQ_RANGE_SHIFT
);
1461 STORE_RT_REG(p_hwfn
, DORQ_REG_VF_MAX_ICID_0_RT_OFFSET
, dq_vf_max_cid
);
1463 dq_pf_max_cid
+= (p_mngr
->conn_cfg
[1].cid_count
>> DQ_RANGE_SHIFT
);
1464 STORE_RT_REG(p_hwfn
, DORQ_REG_PF_MAX_ICID_1_RT_OFFSET
, dq_pf_max_cid
);
1466 dq_vf_max_cid
+= (p_mngr
->conn_cfg
[1].cids_per_vf
>> DQ_RANGE_SHIFT
);
1467 STORE_RT_REG(p_hwfn
, DORQ_REG_VF_MAX_ICID_1_RT_OFFSET
, dq_vf_max_cid
);
1469 dq_pf_max_cid
+= (p_mngr
->conn_cfg
[2].cid_count
>> DQ_RANGE_SHIFT
);
1470 STORE_RT_REG(p_hwfn
, DORQ_REG_PF_MAX_ICID_2_RT_OFFSET
, dq_pf_max_cid
);
1472 dq_vf_max_cid
+= (p_mngr
->conn_cfg
[2].cids_per_vf
>> DQ_RANGE_SHIFT
);
1473 STORE_RT_REG(p_hwfn
, DORQ_REG_VF_MAX_ICID_2_RT_OFFSET
, dq_vf_max_cid
);
1475 dq_pf_max_cid
+= (p_mngr
->conn_cfg
[3].cid_count
>> DQ_RANGE_SHIFT
);
1476 STORE_RT_REG(p_hwfn
, DORQ_REG_PF_MAX_ICID_3_RT_OFFSET
, dq_pf_max_cid
);
1478 dq_vf_max_cid
+= (p_mngr
->conn_cfg
[3].cids_per_vf
>> DQ_RANGE_SHIFT
);
1479 STORE_RT_REG(p_hwfn
, DORQ_REG_VF_MAX_ICID_3_RT_OFFSET
, dq_vf_max_cid
);
1481 dq_pf_max_cid
+= (p_mngr
->conn_cfg
[4].cid_count
>> DQ_RANGE_SHIFT
);
1482 STORE_RT_REG(p_hwfn
, DORQ_REG_PF_MAX_ICID_4_RT_OFFSET
, dq_pf_max_cid
);
1484 dq_vf_max_cid
+= (p_mngr
->conn_cfg
[4].cids_per_vf
>> DQ_RANGE_SHIFT
);
1485 STORE_RT_REG(p_hwfn
, DORQ_REG_VF_MAX_ICID_4_RT_OFFSET
, dq_vf_max_cid
);
1487 dq_pf_max_cid
+= (p_mngr
->conn_cfg
[5].cid_count
>> DQ_RANGE_SHIFT
);
1488 STORE_RT_REG(p_hwfn
, DORQ_REG_PF_MAX_ICID_5_RT_OFFSET
, dq_pf_max_cid
);
1490 dq_vf_max_cid
+= (p_mngr
->conn_cfg
[5].cids_per_vf
>> DQ_RANGE_SHIFT
);
1491 STORE_RT_REG(p_hwfn
, DORQ_REG_VF_MAX_ICID_5_RT_OFFSET
, dq_vf_max_cid
);
1493 /* Connection types 6 & 7 are not in use, yet they must be configured
1494 * as the highest possible connection. Not configuring them means the
1495 * defaults will be used, and with a large number of cids a bug may
1496 * occur, if the defaults will be smaller than dq_pf_max_cid /
1499 STORE_RT_REG(p_hwfn
, DORQ_REG_PF_MAX_ICID_6_RT_OFFSET
, dq_pf_max_cid
);
1500 STORE_RT_REG(p_hwfn
, DORQ_REG_VF_MAX_ICID_6_RT_OFFSET
, dq_vf_max_cid
);
1502 STORE_RT_REG(p_hwfn
, DORQ_REG_PF_MAX_ICID_7_RT_OFFSET
, dq_pf_max_cid
);
1503 STORE_RT_REG(p_hwfn
, DORQ_REG_VF_MAX_ICID_7_RT_OFFSET
, dq_vf_max_cid
);
1506 static void qed_ilt_bounds_init(struct qed_hwfn
*p_hwfn
)
1508 struct qed_ilt_client_cfg
*ilt_clients
;
1511 ilt_clients
= p_hwfn
->p_cxt_mngr
->clients
;
1512 for_each_ilt_valid_client(i
, ilt_clients
) {
1513 STORE_RT_REG(p_hwfn
,
1514 ilt_clients
[i
].first
.reg
,
1515 ilt_clients
[i
].first
.val
);
1516 STORE_RT_REG(p_hwfn
,
1517 ilt_clients
[i
].last
.reg
, ilt_clients
[i
].last
.val
);
1518 STORE_RT_REG(p_hwfn
,
1519 ilt_clients
[i
].p_size
.reg
,
1520 ilt_clients
[i
].p_size
.val
);
1524 static void qed_ilt_vf_bounds_init(struct qed_hwfn
*p_hwfn
)
1526 struct qed_ilt_client_cfg
*p_cli
;
1529 /* For simplicty we set the 'block' to be an ILT page */
1530 if (p_hwfn
->cdev
->p_iov_info
) {
1531 struct qed_hw_sriov_info
*p_iov
= p_hwfn
->cdev
->p_iov_info
;
1533 STORE_RT_REG(p_hwfn
,
1534 PSWRQ2_REG_VF_BASE_RT_OFFSET
,
1535 p_iov
->first_vf_in_pf
);
1536 STORE_RT_REG(p_hwfn
,
1537 PSWRQ2_REG_VF_LAST_ILT_RT_OFFSET
,
1538 p_iov
->first_vf_in_pf
+ p_iov
->total_vfs
);
1541 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUC
];
1542 blk_factor
= ilog2(ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
) >> 10);
1543 if (p_cli
->active
) {
1544 STORE_RT_REG(p_hwfn
,
1545 PSWRQ2_REG_CDUC_BLOCKS_FACTOR_RT_OFFSET
,
1547 STORE_RT_REG(p_hwfn
,
1548 PSWRQ2_REG_CDUC_NUMBER_OF_PF_BLOCKS_RT_OFFSET
,
1549 p_cli
->pf_total_lines
);
1550 STORE_RT_REG(p_hwfn
,
1551 PSWRQ2_REG_CDUC_VF_BLOCKS_RT_OFFSET
,
1552 p_cli
->vf_total_lines
);
1555 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUT
];
1556 blk_factor
= ilog2(ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
) >> 10);
1557 if (p_cli
->active
) {
1558 STORE_RT_REG(p_hwfn
,
1559 PSWRQ2_REG_CDUT_BLOCKS_FACTOR_RT_OFFSET
,
1561 STORE_RT_REG(p_hwfn
,
1562 PSWRQ2_REG_CDUT_NUMBER_OF_PF_BLOCKS_RT_OFFSET
,
1563 p_cli
->pf_total_lines
);
1564 STORE_RT_REG(p_hwfn
,
1565 PSWRQ2_REG_CDUT_VF_BLOCKS_RT_OFFSET
,
1566 p_cli
->vf_total_lines
);
1569 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_TM
];
1570 blk_factor
= ilog2(ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
) >> 10);
1571 if (p_cli
->active
) {
1572 STORE_RT_REG(p_hwfn
,
1573 PSWRQ2_REG_TM_BLOCKS_FACTOR_RT_OFFSET
, blk_factor
);
1574 STORE_RT_REG(p_hwfn
,
1575 PSWRQ2_REG_TM_NUMBER_OF_PF_BLOCKS_RT_OFFSET
,
1576 p_cli
->pf_total_lines
);
1577 STORE_RT_REG(p_hwfn
,
1578 PSWRQ2_REG_TM_VF_BLOCKS_RT_OFFSET
,
1579 p_cli
->vf_total_lines
);
1583 /* ILT (PSWRQ2) PF */
1584 static void qed_ilt_init_pf(struct qed_hwfn
*p_hwfn
)
1586 struct qed_ilt_client_cfg
*clients
;
1587 struct qed_cxt_mngr
*p_mngr
;
1588 struct phys_mem_desc
*p_shdw
;
1589 u32 line
, rt_offst
, i
;
1591 qed_ilt_bounds_init(p_hwfn
);
1592 qed_ilt_vf_bounds_init(p_hwfn
);
1594 p_mngr
= p_hwfn
->p_cxt_mngr
;
1595 p_shdw
= p_mngr
->ilt_shadow
;
1596 clients
= p_hwfn
->p_cxt_mngr
->clients
;
1598 for_each_ilt_valid_client(i
, clients
) {
1599 /** Client's 1st val and RT array are absolute, ILT shadows'
1600 * lines are relative.
1602 line
= clients
[i
].first
.val
- p_mngr
->pf_start_line
;
1603 rt_offst
= PSWRQ2_REG_ILT_MEMORY_RT_OFFSET
+
1604 clients
[i
].first
.val
* ILT_ENTRY_IN_REGS
;
1606 for (; line
<= clients
[i
].last
.val
- p_mngr
->pf_start_line
;
1607 line
++, rt_offst
+= ILT_ENTRY_IN_REGS
) {
1608 u64 ilt_hw_entry
= 0;
1610 /** p_virt could be NULL incase of dynamic
1613 if (p_shdw
[line
].virt_addr
) {
1614 SET_FIELD(ilt_hw_entry
, ILT_ENTRY_VALID
, 1ULL);
1615 SET_FIELD(ilt_hw_entry
, ILT_ENTRY_PHY_ADDR
,
1616 (p_shdw
[line
].phys_addr
>> 12));
1618 DP_VERBOSE(p_hwfn
, QED_MSG_ILT
,
1619 "Setting RT[0x%08x] from ILT[0x%08x] [Client is %d] to Physical addr: 0x%llx\n",
1621 (u64
)(p_shdw
[line
].phys_addr
>> 12));
1624 STORE_RT_REG_AGG(p_hwfn
, rt_offst
, ilt_hw_entry
);
1629 /* SRC (Searcher) PF */
1630 static void qed_src_init_pf(struct qed_hwfn
*p_hwfn
)
1632 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1633 u32 rounded_conn_num
, conn_num
, conn_max
;
1634 struct qed_src_iids src_iids
;
1636 memset(&src_iids
, 0, sizeof(src_iids
));
1637 qed_cxt_src_iids(p_mngr
, &src_iids
);
1638 conn_num
= src_iids
.pf_cids
+ src_iids
.per_vf_cids
* p_mngr
->vf_count
;
1642 conn_max
= max_t(u32
, conn_num
, SRC_MIN_NUM_ELEMS
);
1643 rounded_conn_num
= roundup_pow_of_two(conn_max
);
1645 STORE_RT_REG(p_hwfn
, SRC_REG_COUNTFREE_RT_OFFSET
, conn_num
);
1646 STORE_RT_REG(p_hwfn
, SRC_REG_NUMBER_HASH_BITS_RT_OFFSET
,
1647 ilog2(rounded_conn_num
));
1649 STORE_RT_REG_AGG(p_hwfn
, SRC_REG_FIRSTFREE_RT_OFFSET
,
1650 p_hwfn
->p_cxt_mngr
->src_t2
.first_free
);
1651 STORE_RT_REG_AGG(p_hwfn
, SRC_REG_LASTFREE_RT_OFFSET
,
1652 p_hwfn
->p_cxt_mngr
->src_t2
.last_free
);
1656 #define TM_CFG_NUM_IDS_SHIFT 0
1657 #define TM_CFG_NUM_IDS_MASK 0xFFFFULL
1658 #define TM_CFG_PRE_SCAN_OFFSET_SHIFT 16
1659 #define TM_CFG_PRE_SCAN_OFFSET_MASK 0x1FFULL
1660 #define TM_CFG_PARENT_PF_SHIFT 25
1661 #define TM_CFG_PARENT_PF_MASK 0x7ULL
1663 #define TM_CFG_CID_PRE_SCAN_ROWS_SHIFT 30
1664 #define TM_CFG_CID_PRE_SCAN_ROWS_MASK 0x1FFULL
1666 #define TM_CFG_TID_OFFSET_SHIFT 30
1667 #define TM_CFG_TID_OFFSET_MASK 0x7FFFFULL
1668 #define TM_CFG_TID_PRE_SCAN_ROWS_SHIFT 49
1669 #define TM_CFG_TID_PRE_SCAN_ROWS_MASK 0x1FFULL
1671 static void qed_tm_init_pf(struct qed_hwfn
*p_hwfn
)
1673 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1674 u32 active_seg_mask
= 0, tm_offset
, rt_reg
;
1675 struct qed_tm_iids tm_iids
;
1679 memset(&tm_iids
, 0, sizeof(tm_iids
));
1680 qed_cxt_tm_iids(p_hwfn
, p_mngr
, &tm_iids
);
1682 /* @@@TBD No pre-scan for now */
1684 /* Note: We assume consecutive VFs for a PF */
1685 for (i
= 0; i
< p_mngr
->vf_count
; i
++) {
1687 SET_FIELD(cfg_word
, TM_CFG_NUM_IDS
, tm_iids
.per_vf_cids
);
1688 SET_FIELD(cfg_word
, TM_CFG_PRE_SCAN_OFFSET
, 0);
1689 SET_FIELD(cfg_word
, TM_CFG_PARENT_PF
, p_hwfn
->rel_pf_id
);
1690 SET_FIELD(cfg_word
, TM_CFG_CID_PRE_SCAN_ROWS
, 0);
1691 rt_reg
= TM_REG_CONFIG_CONN_MEM_RT_OFFSET
+
1692 (sizeof(cfg_word
) / sizeof(u32
)) *
1693 (p_hwfn
->cdev
->p_iov_info
->first_vf_in_pf
+ i
);
1694 STORE_RT_REG_AGG(p_hwfn
, rt_reg
, cfg_word
);
1698 SET_FIELD(cfg_word
, TM_CFG_NUM_IDS
, tm_iids
.pf_cids
);
1699 SET_FIELD(cfg_word
, TM_CFG_PRE_SCAN_OFFSET
, 0);
1700 SET_FIELD(cfg_word
, TM_CFG_PARENT_PF
, 0); /* n/a for PF */
1701 SET_FIELD(cfg_word
, TM_CFG_CID_PRE_SCAN_ROWS
, 0); /* scan all */
1703 rt_reg
= TM_REG_CONFIG_CONN_MEM_RT_OFFSET
+
1704 (sizeof(cfg_word
) / sizeof(u32
)) *
1705 (NUM_OF_VFS(p_hwfn
->cdev
) + p_hwfn
->rel_pf_id
);
1706 STORE_RT_REG_AGG(p_hwfn
, rt_reg
, cfg_word
);
1709 STORE_RT_REG(p_hwfn
, TM_REG_PF_ENABLE_CONN_RT_OFFSET
,
1710 tm_iids
.pf_cids
? 0x1 : 0x0);
1712 /* @@@TBD how to enable the scan for the VFs */
1714 tm_offset
= tm_iids
.per_vf_cids
;
1716 /* Note: We assume consecutive VFs for a PF */
1717 for (i
= 0; i
< p_mngr
->vf_count
; i
++) {
1719 SET_FIELD(cfg_word
, TM_CFG_NUM_IDS
, tm_iids
.per_vf_tids
);
1720 SET_FIELD(cfg_word
, TM_CFG_PRE_SCAN_OFFSET
, 0);
1721 SET_FIELD(cfg_word
, TM_CFG_PARENT_PF
, p_hwfn
->rel_pf_id
);
1722 SET_FIELD(cfg_word
, TM_CFG_TID_OFFSET
, tm_offset
);
1723 SET_FIELD(cfg_word
, TM_CFG_TID_PRE_SCAN_ROWS
, (u64
) 0);
1725 rt_reg
= TM_REG_CONFIG_TASK_MEM_RT_OFFSET
+
1726 (sizeof(cfg_word
) / sizeof(u32
)) *
1727 (p_hwfn
->cdev
->p_iov_info
->first_vf_in_pf
+ i
);
1729 STORE_RT_REG_AGG(p_hwfn
, rt_reg
, cfg_word
);
1732 tm_offset
= tm_iids
.pf_cids
;
1733 for (i
= 0; i
< NUM_TASK_PF_SEGMENTS
; i
++) {
1735 SET_FIELD(cfg_word
, TM_CFG_NUM_IDS
, tm_iids
.pf_tids
[i
]);
1736 SET_FIELD(cfg_word
, TM_CFG_PRE_SCAN_OFFSET
, 0);
1737 SET_FIELD(cfg_word
, TM_CFG_PARENT_PF
, 0);
1738 SET_FIELD(cfg_word
, TM_CFG_TID_OFFSET
, tm_offset
);
1739 SET_FIELD(cfg_word
, TM_CFG_TID_PRE_SCAN_ROWS
, (u64
) 0);
1741 rt_reg
= TM_REG_CONFIG_TASK_MEM_RT_OFFSET
+
1742 (sizeof(cfg_word
) / sizeof(u32
)) *
1743 (NUM_OF_VFS(p_hwfn
->cdev
) +
1744 p_hwfn
->rel_pf_id
* NUM_TASK_PF_SEGMENTS
+ i
);
1746 STORE_RT_REG_AGG(p_hwfn
, rt_reg
, cfg_word
);
1747 active_seg_mask
|= (tm_iids
.pf_tids
[i
] ? BIT(i
) : 0);
1749 tm_offset
+= tm_iids
.pf_tids
[i
];
1752 if (QED_IS_RDMA_PERSONALITY(p_hwfn
))
1753 active_seg_mask
= 0;
1755 STORE_RT_REG(p_hwfn
, TM_REG_PF_ENABLE_TASK_RT_OFFSET
, active_seg_mask
);
1757 /* @@@TBD how to enable the scan for the VFs */
1760 static void qed_prs_init_common(struct qed_hwfn
*p_hwfn
)
1762 if ((p_hwfn
->hw_info
.personality
== QED_PCI_FCOE
) &&
1763 p_hwfn
->pf_params
.fcoe_pf_params
.is_target
)
1764 STORE_RT_REG(p_hwfn
,
1765 PRS_REG_SEARCH_RESP_INITIATOR_TYPE_RT_OFFSET
, 0);
1768 static void qed_prs_init_pf(struct qed_hwfn
*p_hwfn
)
1770 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1771 struct qed_conn_type_cfg
*p_fcoe
;
1772 struct qed_tid_seg
*p_tid
;
1774 p_fcoe
= &p_mngr
->conn_cfg
[PROTOCOLID_FCOE
];
1776 /* If FCoE is active set the MAX OX_ID (tid) in the Parser */
1777 if (!p_fcoe
->cid_count
)
1780 p_tid
= &p_fcoe
->tid_seg
[QED_CXT_FCOE_TID_SEG
];
1781 if (p_hwfn
->pf_params
.fcoe_pf_params
.is_target
) {
1782 STORE_RT_REG_AGG(p_hwfn
,
1783 PRS_REG_TASK_ID_MAX_TARGET_PF_RT_OFFSET
,
1786 STORE_RT_REG_AGG(p_hwfn
,
1787 PRS_REG_TASK_ID_MAX_INITIATOR_PF_RT_OFFSET
,
1792 void qed_cxt_hw_init_common(struct qed_hwfn
*p_hwfn
)
1794 qed_cdu_init_common(p_hwfn
);
1795 qed_prs_init_common(p_hwfn
);
1798 void qed_cxt_hw_init_pf(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
1800 qed_qm_init_pf(p_hwfn
, p_ptt
, true);
1801 qed_cm_init_pf(p_hwfn
);
1802 qed_dq_init_pf(p_hwfn
);
1803 qed_cdu_init_pf(p_hwfn
);
1804 qed_ilt_init_pf(p_hwfn
);
1805 qed_src_init_pf(p_hwfn
);
1806 qed_tm_init_pf(p_hwfn
);
1807 qed_prs_init_pf(p_hwfn
);
1810 int _qed_cxt_acquire_cid(struct qed_hwfn
*p_hwfn
,
1811 enum protocol_type type
, u32
*p_cid
, u8 vfid
)
1813 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1814 struct qed_cid_acquired_map
*p_map
;
1817 if (type
>= MAX_CONN_TYPES
) {
1818 DP_NOTICE(p_hwfn
, "Invalid protocol type %d", type
);
1822 if (vfid
>= MAX_NUM_VFS
&& vfid
!= QED_CXT_PF_CID
) {
1823 DP_NOTICE(p_hwfn
, "VF [%02x] is out of range\n", vfid
);
1827 /* Determine the right map to take this CID from */
1828 if (vfid
== QED_CXT_PF_CID
)
1829 p_map
= &p_mngr
->acquired
[type
];
1831 p_map
= &p_mngr
->acquired_vf
[type
][vfid
];
1833 if (!p_map
->cid_map
) {
1834 DP_NOTICE(p_hwfn
, "Invalid protocol type %d", type
);
1838 rel_cid
= find_first_zero_bit(p_map
->cid_map
, p_map
->max_count
);
1840 if (rel_cid
>= p_map
->max_count
) {
1841 DP_NOTICE(p_hwfn
, "no CID available for protocol %d\n", type
);
1845 __set_bit(rel_cid
, p_map
->cid_map
);
1847 *p_cid
= rel_cid
+ p_map
->start_cid
;
1849 DP_VERBOSE(p_hwfn
, QED_MSG_CXT
,
1850 "Acquired cid 0x%08x [rel. %08x] vfid %02x type %d\n",
1851 *p_cid
, rel_cid
, vfid
, type
);
1856 int qed_cxt_acquire_cid(struct qed_hwfn
*p_hwfn
,
1857 enum protocol_type type
, u32
*p_cid
)
1859 return _qed_cxt_acquire_cid(p_hwfn
, type
, p_cid
, QED_CXT_PF_CID
);
1862 static bool qed_cxt_test_cid_acquired(struct qed_hwfn
*p_hwfn
,
1865 enum protocol_type
*p_type
,
1866 struct qed_cid_acquired_map
**pp_map
)
1868 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1871 /* Iterate over protocols and find matching cid range */
1872 for (*p_type
= 0; *p_type
< MAX_CONN_TYPES
; (*p_type
)++) {
1873 if (vfid
== QED_CXT_PF_CID
)
1874 *pp_map
= &p_mngr
->acquired
[*p_type
];
1876 *pp_map
= &p_mngr
->acquired_vf
[*p_type
][vfid
];
1878 if (!((*pp_map
)->cid_map
))
1880 if (cid
>= (*pp_map
)->start_cid
&&
1881 cid
< (*pp_map
)->start_cid
+ (*pp_map
)->max_count
)
1885 if (*p_type
== MAX_CONN_TYPES
) {
1886 DP_NOTICE(p_hwfn
, "Invalid CID %d vfid %02x", cid
, vfid
);
1890 rel_cid
= cid
- (*pp_map
)->start_cid
;
1891 if (!test_bit(rel_cid
, (*pp_map
)->cid_map
)) {
1892 DP_NOTICE(p_hwfn
, "CID %d [vifd %02x] not acquired",
1899 *p_type
= MAX_CONN_TYPES
;
1904 void _qed_cxt_release_cid(struct qed_hwfn
*p_hwfn
, u32 cid
, u8 vfid
)
1906 struct qed_cid_acquired_map
*p_map
= NULL
;
1907 enum protocol_type type
;
1911 if (vfid
!= QED_CXT_PF_CID
&& vfid
> MAX_NUM_VFS
) {
1913 "Trying to return incorrect CID belonging to VF %02x\n",
1918 /* Test acquired and find matching per-protocol map */
1919 b_acquired
= qed_cxt_test_cid_acquired(p_hwfn
, cid
, vfid
,
1925 rel_cid
= cid
- p_map
->start_cid
;
1926 clear_bit(rel_cid
, p_map
->cid_map
);
1928 DP_VERBOSE(p_hwfn
, QED_MSG_CXT
,
1929 "Released CID 0x%08x [rel. %08x] vfid %02x type %d\n",
1930 cid
, rel_cid
, vfid
, type
);
1933 void qed_cxt_release_cid(struct qed_hwfn
*p_hwfn
, u32 cid
)
1935 _qed_cxt_release_cid(p_hwfn
, cid
, QED_CXT_PF_CID
);
1938 int qed_cxt_get_cid_info(struct qed_hwfn
*p_hwfn
, struct qed_cxt_info
*p_info
)
1940 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
1941 struct qed_cid_acquired_map
*p_map
= NULL
;
1942 u32 conn_cxt_size
, hw_p_size
, cxts_per_p
, line
;
1943 enum protocol_type type
;
1946 /* Test acquired and find matching per-protocol map */
1947 b_acquired
= qed_cxt_test_cid_acquired(p_hwfn
, p_info
->iid
,
1948 QED_CXT_PF_CID
, &type
, &p_map
);
1953 /* set the protocl type */
1954 p_info
->type
= type
;
1956 /* compute context virtual pointer */
1957 hw_p_size
= p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUC
].p_size
.val
;
1959 conn_cxt_size
= CONN_CXT_SIZE(p_hwfn
);
1960 cxts_per_p
= ILT_PAGE_IN_BYTES(hw_p_size
) / conn_cxt_size
;
1961 line
= p_info
->iid
/ cxts_per_p
;
1963 /* Make sure context is allocated (dynamic allocation) */
1964 if (!p_mngr
->ilt_shadow
[line
].virt_addr
)
1967 p_info
->p_cxt
= p_mngr
->ilt_shadow
[line
].virt_addr
+
1968 p_info
->iid
% cxts_per_p
* conn_cxt_size
;
1970 DP_VERBOSE(p_hwfn
, (QED_MSG_ILT
| QED_MSG_CXT
),
1971 "Accessing ILT shadow[%d]: CXT pointer is at %p (for iid %d)\n",
1972 p_info
->iid
/ cxts_per_p
, p_info
->p_cxt
, p_info
->iid
);
1977 static void qed_rdma_set_pf_params(struct qed_hwfn
*p_hwfn
,
1978 struct qed_rdma_pf_params
*p_params
,
1981 u32 num_cons
, num_qps
;
1982 enum protocol_type proto
;
1984 if (p_hwfn
->mcp_info
->func_info
.protocol
== QED_PCI_ETH_RDMA
) {
1985 DP_VERBOSE(p_hwfn
, QED_MSG_SP
,
1986 "Current day drivers don't support RoCE & iWARP simultaneously on the same PF. Default to RoCE-only\n");
1987 p_hwfn
->hw_info
.personality
= QED_PCI_ETH_ROCE
;
1990 switch (p_hwfn
->hw_info
.personality
) {
1991 case QED_PCI_ETH_IWARP
:
1992 /* Each QP requires one connection */
1993 num_cons
= min_t(u32
, IWARP_MAX_QPS
, p_params
->num_qps
);
1994 proto
= PROTOCOLID_IWARP
;
1996 case QED_PCI_ETH_ROCE
:
1997 num_qps
= min_t(u32
, ROCE_MAX_QPS
, p_params
->num_qps
);
1998 num_cons
= num_qps
* 2; /* each QP requires two connections */
1999 proto
= PROTOCOLID_ROCE
;
2005 if (num_cons
&& num_tasks
) {
2006 u32 num_srqs
, num_xrc_srqs
;
2008 qed_cxt_set_proto_cid_count(p_hwfn
, proto
, num_cons
, 0);
2010 /* Deliberatly passing ROCE for tasks id. This is because
2011 * iWARP / RoCE share the task id.
2013 qed_cxt_set_proto_tid_count(p_hwfn
, PROTOCOLID_ROCE
,
2014 QED_CXT_ROCE_TID_SEG
, 1,
2017 num_srqs
= min_t(u32
, QED_RDMA_MAX_SRQS
, p_params
->num_srqs
);
2019 /* XRC SRQs populate a single ILT page */
2020 num_xrc_srqs
= qed_cxt_xrc_srqs_per_page(p_hwfn
);
2022 qed_cxt_set_srq_count(p_hwfn
, num_srqs
, num_xrc_srqs
);
2024 DP_INFO(p_hwfn
->cdev
,
2025 "RDMA personality used without setting params!\n");
2029 int qed_cxt_set_pf_params(struct qed_hwfn
*p_hwfn
, u32 rdma_tasks
)
2031 /* Set the number of required CORE connections */
2032 u32 core_cids
= 1; /* SPQ */
2034 if (p_hwfn
->using_ll2
)
2036 qed_cxt_set_proto_cid_count(p_hwfn
, PROTOCOLID_CORE
, core_cids
, 0);
2038 switch (p_hwfn
->hw_info
.personality
) {
2039 case QED_PCI_ETH_RDMA
:
2040 case QED_PCI_ETH_IWARP
:
2041 case QED_PCI_ETH_ROCE
:
2043 qed_rdma_set_pf_params(p_hwfn
,
2045 pf_params
.rdma_pf_params
,
2047 /* no need for break since RoCE coexist with Ethernet */
2052 struct qed_eth_pf_params
*p_params
=
2053 &p_hwfn
->pf_params
.eth_pf_params
;
2055 if (!p_params
->num_vf_cons
)
2056 p_params
->num_vf_cons
=
2057 ETH_PF_PARAMS_VF_CONS_DEFAULT
;
2058 qed_cxt_set_proto_cid_count(p_hwfn
, PROTOCOLID_ETH
,
2060 p_params
->num_vf_cons
);
2061 p_hwfn
->p_cxt_mngr
->arfs_count
= p_params
->num_arfs_filters
;
2066 struct qed_fcoe_pf_params
*p_params
;
2068 p_params
= &p_hwfn
->pf_params
.fcoe_pf_params
;
2070 if (p_params
->num_cons
&& p_params
->num_tasks
) {
2071 qed_cxt_set_proto_cid_count(p_hwfn
,
2076 qed_cxt_set_proto_tid_count(p_hwfn
, PROTOCOLID_FCOE
,
2077 QED_CXT_FCOE_TID_SEG
, 0,
2078 p_params
->num_tasks
, true);
2080 DP_INFO(p_hwfn
->cdev
,
2081 "Fcoe personality used without setting params!\n");
2087 struct qed_iscsi_pf_params
*p_params
;
2089 p_params
= &p_hwfn
->pf_params
.iscsi_pf_params
;
2091 if (p_params
->num_cons
&& p_params
->num_tasks
) {
2092 qed_cxt_set_proto_cid_count(p_hwfn
,
2097 qed_cxt_set_proto_tid_count(p_hwfn
,
2099 QED_CXT_ISCSI_TID_SEG
,
2101 p_params
->num_tasks
,
2104 DP_INFO(p_hwfn
->cdev
,
2105 "Iscsi personality used without setting params!\n");
2116 int qed_cxt_get_tid_mem_info(struct qed_hwfn
*p_hwfn
,
2117 struct qed_tid_mem
*p_info
)
2119 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
2120 u32 proto
, seg
, total_lines
, i
, shadow_line
;
2121 struct qed_ilt_client_cfg
*p_cli
;
2122 struct qed_ilt_cli_blk
*p_fl_seg
;
2123 struct qed_tid_seg
*p_seg_info
;
2125 /* Verify the personality */
2126 switch (p_hwfn
->hw_info
.personality
) {
2128 proto
= PROTOCOLID_FCOE
;
2129 seg
= QED_CXT_FCOE_TID_SEG
;
2132 proto
= PROTOCOLID_ISCSI
;
2133 seg
= QED_CXT_ISCSI_TID_SEG
;
2139 p_cli
= &p_mngr
->clients
[ILT_CLI_CDUT
];
2143 p_seg_info
= &p_mngr
->conn_cfg
[proto
].tid_seg
[seg
];
2144 if (!p_seg_info
->has_fl_mem
)
2147 p_fl_seg
= &p_cli
->pf_blks
[CDUT_FL_SEG_BLK(seg
, PF
)];
2148 total_lines
= DIV_ROUND_UP(p_fl_seg
->total_size
,
2149 p_fl_seg
->real_size_in_page
);
2151 for (i
= 0; i
< total_lines
; i
++) {
2152 shadow_line
= i
+ p_fl_seg
->start_line
-
2153 p_hwfn
->p_cxt_mngr
->pf_start_line
;
2154 p_info
->blocks
[i
] = p_mngr
->ilt_shadow
[shadow_line
].virt_addr
;
2156 p_info
->waste
= ILT_PAGE_IN_BYTES(p_cli
->p_size
.val
) -
2157 p_fl_seg
->real_size_in_page
;
2158 p_info
->tid_size
= p_mngr
->task_type_size
[p_seg_info
->type
];
2159 p_info
->num_tids_per_block
= p_fl_seg
->real_size_in_page
/
2165 /* This function is very RoCE oriented, if another protocol in the future
2166 * will want this feature we'll need to modify the function to be more generic
2169 qed_cxt_dynamic_ilt_alloc(struct qed_hwfn
*p_hwfn
,
2170 enum qed_cxt_elem_type elem_type
, u32 iid
)
2172 u32 reg_offset
, shadow_line
, elem_size
, hw_p_size
, elems_per_p
, line
;
2173 struct tdif_task_context
*tdif_context
;
2174 struct qed_ilt_client_cfg
*p_cli
;
2175 struct qed_ilt_cli_blk
*p_blk
;
2176 struct qed_ptt
*p_ptt
;
2183 switch (elem_type
) {
2185 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUC
];
2186 elem_size
= CONN_CXT_SIZE(p_hwfn
);
2187 p_blk
= &p_cli
->pf_blks
[CDUC_BLK
];
2190 /* The first ILT page is not used for regular SRQs. Skip it. */
2191 iid
+= p_hwfn
->p_cxt_mngr
->xrc_srq_count
;
2192 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_TSDM
];
2193 elem_size
= SRQ_CXT_SIZE
;
2194 p_blk
= &p_cli
->pf_blks
[SRQ_BLK
];
2196 case QED_ELEM_XRC_SRQ
:
2197 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_TSDM
];
2198 elem_size
= XRC_SRQ_CXT_SIZE
;
2199 p_blk
= &p_cli
->pf_blks
[SRQ_BLK
];
2202 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUT
];
2203 elem_size
= TYPE1_TASK_CXT_SIZE(p_hwfn
);
2204 p_blk
= &p_cli
->pf_blks
[CDUT_SEG_BLK(QED_CXT_ROCE_TID_SEG
)];
2207 DP_NOTICE(p_hwfn
, "-EINVALID elem type = %d", elem_type
);
2211 /* Calculate line in ilt */
2212 hw_p_size
= p_cli
->p_size
.val
;
2213 elems_per_p
= ILT_PAGE_IN_BYTES(hw_p_size
) / elem_size
;
2214 line
= p_blk
->start_line
+ (iid
/ elems_per_p
);
2215 shadow_line
= line
- p_hwfn
->p_cxt_mngr
->pf_start_line
;
2217 /* If line is already allocated, do nothing, otherwise allocate it and
2218 * write it to the PSWRQ2 registers.
2219 * This section can be run in parallel from different contexts and thus
2220 * a mutex protection is needed.
2223 mutex_lock(&p_hwfn
->p_cxt_mngr
->mutex
);
2225 if (p_hwfn
->p_cxt_mngr
->ilt_shadow
[shadow_line
].virt_addr
)
2228 p_ptt
= qed_ptt_acquire(p_hwfn
);
2231 "QED_TIME_OUT on ptt acquire - dynamic allocation");
2236 p_virt
= dma_alloc_coherent(&p_hwfn
->cdev
->pdev
->dev
,
2237 p_blk
->real_size_in_page
, &p_phys
,
2244 /* configuration of refTagMask to 0xF is required for RoCE DIF MR only,
2245 * to compensate for a HW bug, but it is configured even if DIF is not
2246 * enabled. This is harmless and allows us to avoid a dedicated API. We
2247 * configure the field for all of the contexts on the newly allocated
2250 if (elem_type
== QED_ELEM_TASK
) {
2252 u8
*elem_start
= (u8
*)p_virt
;
2253 union type1_task_context
*elem
;
2255 for (elem_i
= 0; elem_i
< elems_per_p
; elem_i
++) {
2256 elem
= (union type1_task_context
*)elem_start
;
2257 tdif_context
= &elem
->roce_ctx
.tdif_context
;
2259 flags1
= le32_to_cpu(tdif_context
->flags1
);
2260 SET_FIELD(flags1
, TDIF_TASK_CONTEXT_REF_TAG_MASK
, 0xf);
2261 tdif_context
->flags1
= cpu_to_le32(flags1
);
2263 elem_start
+= TYPE1_TASK_CXT_SIZE(p_hwfn
);
2267 p_hwfn
->p_cxt_mngr
->ilt_shadow
[shadow_line
].virt_addr
= p_virt
;
2268 p_hwfn
->p_cxt_mngr
->ilt_shadow
[shadow_line
].phys_addr
= p_phys
;
2269 p_hwfn
->p_cxt_mngr
->ilt_shadow
[shadow_line
].size
=
2270 p_blk
->real_size_in_page
;
2272 /* compute absolute offset */
2273 reg_offset
= PSWRQ2_REG_ILT_MEMORY
+
2274 (line
* ILT_REG_SIZE_IN_BYTES
* ILT_ENTRY_IN_REGS
);
2277 SET_FIELD(ilt_hw_entry
, ILT_ENTRY_VALID
, 1ULL);
2278 SET_FIELD(ilt_hw_entry
, ILT_ENTRY_PHY_ADDR
,
2279 (p_hwfn
->p_cxt_mngr
->ilt_shadow
[shadow_line
].phys_addr
2282 /* Write via DMAE since the PSWRQ2_REG_ILT_MEMORY line is a wide-bus */
2283 qed_dmae_host2grc(p_hwfn
, p_ptt
, (u64
) (uintptr_t)&ilt_hw_entry
,
2284 reg_offset
, sizeof(ilt_hw_entry
) / sizeof(u32
),
2287 if (elem_type
== QED_ELEM_CXT
) {
2288 u32 last_cid_allocated
= (1 + (iid
/ elems_per_p
)) *
2291 /* Update the relevant register in the parser */
2292 qed_wr(p_hwfn
, p_ptt
, PRS_REG_ROCE_DEST_QP_MAX_PF
,
2293 last_cid_allocated
- 1);
2295 if (!p_hwfn
->b_rdma_enabled_in_prs
) {
2296 /* Enable RDMA search */
2297 qed_wr(p_hwfn
, p_ptt
, p_hwfn
->rdma_prs_search_reg
, 1);
2298 p_hwfn
->b_rdma_enabled_in_prs
= true;
2303 qed_ptt_release(p_hwfn
, p_ptt
);
2305 mutex_unlock(&p_hwfn
->p_cxt_mngr
->mutex
);
2310 /* This function is very RoCE oriented, if another protocol in the future
2311 * will want this feature we'll need to modify the function to be more generic
2314 qed_cxt_free_ilt_range(struct qed_hwfn
*p_hwfn
,
2315 enum qed_cxt_elem_type elem_type
,
2316 u32 start_iid
, u32 count
)
2318 u32 start_line
, end_line
, shadow_start_line
, shadow_end_line
;
2319 u32 reg_offset
, elem_size
, hw_p_size
, elems_per_p
;
2320 struct qed_ilt_client_cfg
*p_cli
;
2321 struct qed_ilt_cli_blk
*p_blk
;
2322 u32 end_iid
= start_iid
+ count
;
2323 struct qed_ptt
*p_ptt
;
2324 u64 ilt_hw_entry
= 0;
2327 switch (elem_type
) {
2329 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUC
];
2330 elem_size
= CONN_CXT_SIZE(p_hwfn
);
2331 p_blk
= &p_cli
->pf_blks
[CDUC_BLK
];
2334 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_TSDM
];
2335 elem_size
= SRQ_CXT_SIZE
;
2336 p_blk
= &p_cli
->pf_blks
[SRQ_BLK
];
2338 case QED_ELEM_XRC_SRQ
:
2339 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_TSDM
];
2340 elem_size
= XRC_SRQ_CXT_SIZE
;
2341 p_blk
= &p_cli
->pf_blks
[SRQ_BLK
];
2344 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUT
];
2345 elem_size
= TYPE1_TASK_CXT_SIZE(p_hwfn
);
2346 p_blk
= &p_cli
->pf_blks
[CDUT_SEG_BLK(QED_CXT_ROCE_TID_SEG
)];
2349 DP_NOTICE(p_hwfn
, "-EINVALID elem type = %d", elem_type
);
2353 /* Calculate line in ilt */
2354 hw_p_size
= p_cli
->p_size
.val
;
2355 elems_per_p
= ILT_PAGE_IN_BYTES(hw_p_size
) / elem_size
;
2356 start_line
= p_blk
->start_line
+ (start_iid
/ elems_per_p
);
2357 end_line
= p_blk
->start_line
+ (end_iid
/ elems_per_p
);
2358 if (((end_iid
+ 1) / elems_per_p
) != (end_iid
/ elems_per_p
))
2361 shadow_start_line
= start_line
- p_hwfn
->p_cxt_mngr
->pf_start_line
;
2362 shadow_end_line
= end_line
- p_hwfn
->p_cxt_mngr
->pf_start_line
;
2364 p_ptt
= qed_ptt_acquire(p_hwfn
);
2367 "QED_TIME_OUT on ptt acquire - dynamic allocation");
2371 for (i
= shadow_start_line
; i
< shadow_end_line
; i
++) {
2372 if (!p_hwfn
->p_cxt_mngr
->ilt_shadow
[i
].virt_addr
)
2375 dma_free_coherent(&p_hwfn
->cdev
->pdev
->dev
,
2376 p_hwfn
->p_cxt_mngr
->ilt_shadow
[i
].size
,
2377 p_hwfn
->p_cxt_mngr
->ilt_shadow
[i
].virt_addr
,
2378 p_hwfn
->p_cxt_mngr
->ilt_shadow
[i
].phys_addr
);
2380 p_hwfn
->p_cxt_mngr
->ilt_shadow
[i
].virt_addr
= NULL
;
2381 p_hwfn
->p_cxt_mngr
->ilt_shadow
[i
].phys_addr
= 0;
2382 p_hwfn
->p_cxt_mngr
->ilt_shadow
[i
].size
= 0;
2384 /* compute absolute offset */
2385 reg_offset
= PSWRQ2_REG_ILT_MEMORY
+
2386 ((start_line
++) * ILT_REG_SIZE_IN_BYTES
*
2389 /* Write via DMAE since the PSWRQ2_REG_ILT_MEMORY line is a
2392 qed_dmae_host2grc(p_hwfn
, p_ptt
,
2393 (u64
) (uintptr_t) &ilt_hw_entry
,
2395 sizeof(ilt_hw_entry
) / sizeof(u32
),
2399 qed_ptt_release(p_hwfn
, p_ptt
);
2404 int qed_cxt_free_proto_ilt(struct qed_hwfn
*p_hwfn
, enum protocol_type proto
)
2409 /* Free Connection CXT */
2410 rc
= qed_cxt_free_ilt_range(p_hwfn
, QED_ELEM_CXT
,
2411 qed_cxt_get_proto_cid_start(p_hwfn
,
2413 qed_cxt_get_proto_cid_count(p_hwfn
,
2419 /* Free Task CXT ( Intentionally RoCE as task-id is shared between
2422 proto
= PROTOCOLID_ROCE
;
2423 rc
= qed_cxt_free_ilt_range(p_hwfn
, QED_ELEM_TASK
, 0,
2424 qed_cxt_get_proto_tid_count(p_hwfn
, proto
));
2429 rc
= qed_cxt_free_ilt_range(p_hwfn
, QED_ELEM_XRC_SRQ
, 0,
2430 p_hwfn
->p_cxt_mngr
->xrc_srq_count
);
2432 rc
= qed_cxt_free_ilt_range(p_hwfn
, QED_ELEM_SRQ
,
2433 p_hwfn
->p_cxt_mngr
->xrc_srq_count
,
2434 p_hwfn
->p_cxt_mngr
->srq_count
);
2439 int qed_cxt_get_task_ctx(struct qed_hwfn
*p_hwfn
,
2440 u32 tid
, u8 ctx_type
, void **pp_task_ctx
)
2442 struct qed_cxt_mngr
*p_mngr
= p_hwfn
->p_cxt_mngr
;
2443 struct qed_ilt_client_cfg
*p_cli
;
2444 struct qed_tid_seg
*p_seg_info
;
2445 struct qed_ilt_cli_blk
*p_seg
;
2446 u32 num_tids_per_block
;
2447 u32 tid_size
, ilt_idx
;
2451 /* Verify the personality */
2452 switch (p_hwfn
->hw_info
.personality
) {
2454 proto
= PROTOCOLID_FCOE
;
2455 seg
= QED_CXT_FCOE_TID_SEG
;
2458 proto
= PROTOCOLID_ISCSI
;
2459 seg
= QED_CXT_ISCSI_TID_SEG
;
2465 p_cli
= &p_mngr
->clients
[ILT_CLI_CDUT
];
2469 p_seg_info
= &p_mngr
->conn_cfg
[proto
].tid_seg
[seg
];
2471 if (ctx_type
== QED_CTX_WORKING_MEM
) {
2472 p_seg
= &p_cli
->pf_blks
[CDUT_SEG_BLK(seg
)];
2473 } else if (ctx_type
== QED_CTX_FL_MEM
) {
2474 if (!p_seg_info
->has_fl_mem
)
2476 p_seg
= &p_cli
->pf_blks
[CDUT_FL_SEG_BLK(seg
, PF
)];
2480 total_lines
= DIV_ROUND_UP(p_seg
->total_size
, p_seg
->real_size_in_page
);
2481 tid_size
= p_mngr
->task_type_size
[p_seg_info
->type
];
2482 num_tids_per_block
= p_seg
->real_size_in_page
/ tid_size
;
2484 if (total_lines
< tid
/ num_tids_per_block
)
2487 ilt_idx
= tid
/ num_tids_per_block
+ p_seg
->start_line
-
2488 p_mngr
->pf_start_line
;
2489 *pp_task_ctx
= (u8
*)p_mngr
->ilt_shadow
[ilt_idx
].virt_addr
+
2490 (tid
% num_tids_per_block
) * tid_size
;
2495 static u16
qed_blk_calculate_pages(struct qed_ilt_cli_blk
*p_blk
)
2497 if (p_blk
->real_size_in_page
== 0)
2500 return DIV_ROUND_UP(p_blk
->total_size
, p_blk
->real_size_in_page
);
2503 u16
qed_get_cdut_num_pf_init_pages(struct qed_hwfn
*p_hwfn
)
2505 struct qed_ilt_client_cfg
*p_cli
;
2506 struct qed_ilt_cli_blk
*p_blk
;
2509 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUT
];
2510 for (i
= 0; i
< NUM_TASK_PF_SEGMENTS
; i
++) {
2511 p_blk
= &p_cli
->pf_blks
[CDUT_FL_SEG_BLK(i
, PF
)];
2512 pages
+= qed_blk_calculate_pages(p_blk
);
2518 u16
qed_get_cdut_num_vf_init_pages(struct qed_hwfn
*p_hwfn
)
2520 struct qed_ilt_client_cfg
*p_cli
;
2521 struct qed_ilt_cli_blk
*p_blk
;
2524 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUT
];
2525 for (i
= 0; i
< NUM_TASK_VF_SEGMENTS
; i
++) {
2526 p_blk
= &p_cli
->vf_blks
[CDUT_FL_SEG_BLK(i
, VF
)];
2527 pages
+= qed_blk_calculate_pages(p_blk
);
2533 u16
qed_get_cdut_num_pf_work_pages(struct qed_hwfn
*p_hwfn
)
2535 struct qed_ilt_client_cfg
*p_cli
;
2536 struct qed_ilt_cli_blk
*p_blk
;
2539 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUT
];
2540 for (i
= 0; i
< NUM_TASK_PF_SEGMENTS
; i
++) {
2541 p_blk
= &p_cli
->pf_blks
[CDUT_SEG_BLK(i
)];
2542 pages
+= qed_blk_calculate_pages(p_blk
);
2548 u16
qed_get_cdut_num_vf_work_pages(struct qed_hwfn
*p_hwfn
)
2550 struct qed_ilt_client_cfg
*p_cli
;
2551 struct qed_ilt_cli_blk
*p_blk
;
2554 p_cli
= &p_hwfn
->p_cxt_mngr
->clients
[ILT_CLI_CDUT
];
2555 for (i
= 0; i
< NUM_TASK_VF_SEGMENTS
; i
++) {
2556 p_blk
= &p_cli
->vf_blks
[CDUT_SEG_BLK(i
)];
2557 pages
+= qed_blk_calculate_pages(p_blk
);