2 * Copyright (c) 2013-2015, Mellanox Technologies, Ltd. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 #include <linux/mlx5/mlx5_ifc.h>
37 #include <linux/mlx5/cq.h>
38 #include <linux/mlx5/qp.h>
40 struct mlx5_wq_param
{
46 struct mlx5_core_dev
*mdev
;
47 struct mlx5_frag_buf buf
;
52 struct mlx5_frag_buf_ctrl fbc
;
60 struct mlx5_wq_cyc rq
;
61 struct mlx5_wq_cyc sq
;
65 struct mlx5_frag_buf_ctrl fbc
;
67 u32 cc
; /* consumer counter */
71 struct mlx5_frag_buf_ctrl fbc
;
79 int mlx5_wq_cyc_create(struct mlx5_core_dev
*mdev
, struct mlx5_wq_param
*param
,
80 void *wqc
, struct mlx5_wq_cyc
*wq
,
81 struct mlx5_wq_ctrl
*wq_ctrl
);
82 void mlx5_wq_cyc_wqe_dump(struct mlx5_wq_cyc
*wq
, u16 ix
, u8 nstrides
);
83 void mlx5_wq_cyc_reset(struct mlx5_wq_cyc
*wq
);
85 int mlx5_wq_qp_create(struct mlx5_core_dev
*mdev
, struct mlx5_wq_param
*param
,
86 void *qpc
, struct mlx5_wq_qp
*wq
,
87 struct mlx5_wq_ctrl
*wq_ctrl
);
89 int mlx5_cqwq_create(struct mlx5_core_dev
*mdev
, struct mlx5_wq_param
*param
,
90 void *cqc
, struct mlx5_cqwq
*wq
,
91 struct mlx5_wq_ctrl
*wq_ctrl
);
93 int mlx5_wq_ll_create(struct mlx5_core_dev
*mdev
, struct mlx5_wq_param
*param
,
94 void *wqc
, struct mlx5_wq_ll
*wq
,
95 struct mlx5_wq_ctrl
*wq_ctrl
);
96 void mlx5_wq_ll_reset(struct mlx5_wq_ll
*wq
);
98 void mlx5_wq_destroy(struct mlx5_wq_ctrl
*wq_ctrl
);
100 static inline u32
mlx5_wq_cyc_get_size(struct mlx5_wq_cyc
*wq
)
102 return (u32
)wq
->fbc
.sz_m1
+ 1;
105 static inline int mlx5_wq_cyc_is_full(struct mlx5_wq_cyc
*wq
)
107 return wq
->cur_sz
== wq
->sz
;
110 static inline int mlx5_wq_cyc_missing(struct mlx5_wq_cyc
*wq
)
112 return wq
->sz
- wq
->cur_sz
;
115 static inline int mlx5_wq_cyc_is_empty(struct mlx5_wq_cyc
*wq
)
120 static inline void mlx5_wq_cyc_push(struct mlx5_wq_cyc
*wq
)
126 static inline void mlx5_wq_cyc_push_n(struct mlx5_wq_cyc
*wq
, u8 n
)
132 static inline void mlx5_wq_cyc_pop(struct mlx5_wq_cyc
*wq
)
137 static inline void mlx5_wq_cyc_update_db_record(struct mlx5_wq_cyc
*wq
)
139 *wq
->db
= cpu_to_be32(wq
->wqe_ctr
);
142 static inline u16
mlx5_wq_cyc_ctr2ix(struct mlx5_wq_cyc
*wq
, u16 ctr
)
144 return ctr
& wq
->fbc
.sz_m1
;
147 static inline u16
mlx5_wq_cyc_get_head(struct mlx5_wq_cyc
*wq
)
149 return mlx5_wq_cyc_ctr2ix(wq
, wq
->wqe_ctr
);
152 static inline u16
mlx5_wq_cyc_get_tail(struct mlx5_wq_cyc
*wq
)
154 return mlx5_wq_cyc_ctr2ix(wq
, wq
->wqe_ctr
- wq
->cur_sz
);
157 static inline void *mlx5_wq_cyc_get_wqe(struct mlx5_wq_cyc
*wq
, u16 ix
)
159 return mlx5_frag_buf_get_wqe(&wq
->fbc
, ix
);
162 static inline u16
mlx5_wq_cyc_get_contig_wqebbs(struct mlx5_wq_cyc
*wq
, u16 ix
)
164 return mlx5_frag_buf_get_idx_last_contig_stride(&wq
->fbc
, ix
) - ix
+ 1;
167 static inline int mlx5_wq_cyc_cc_bigger(u16 cc1
, u16 cc2
)
169 int equal
= (cc1
== cc2
);
170 int smaller
= 0x8000 & (cc1
- cc2
);
172 return !equal
&& !smaller
;
175 static inline u16
mlx5_wq_cyc_get_counter(struct mlx5_wq_cyc
*wq
)
180 static inline u32
mlx5_cqwq_get_size(struct mlx5_cqwq
*wq
)
182 return wq
->fbc
.sz_m1
+ 1;
185 static inline u8
mlx5_cqwq_get_log_stride_size(struct mlx5_cqwq
*wq
)
187 return wq
->fbc
.log_stride
;
190 static inline u32
mlx5_cqwq_ctr2ix(struct mlx5_cqwq
*wq
, u32 ctr
)
192 return ctr
& wq
->fbc
.sz_m1
;
195 static inline u32
mlx5_cqwq_get_ci(struct mlx5_cqwq
*wq
)
197 return mlx5_cqwq_ctr2ix(wq
, wq
->cc
);
200 static inline struct mlx5_cqe64
*mlx5_cqwq_get_wqe(struct mlx5_cqwq
*wq
, u32 ix
)
202 struct mlx5_cqe64
*cqe
= mlx5_frag_buf_get_wqe(&wq
->fbc
, ix
);
204 /* For 128B CQEs the data is in the last 64B */
205 cqe
+= wq
->fbc
.log_stride
== 7;
210 static inline u32
mlx5_cqwq_get_ctr_wrap_cnt(struct mlx5_cqwq
*wq
, u32 ctr
)
212 return ctr
>> wq
->fbc
.log_sz
;
215 static inline u32
mlx5_cqwq_get_wrap_cnt(struct mlx5_cqwq
*wq
)
217 return mlx5_cqwq_get_ctr_wrap_cnt(wq
, wq
->cc
);
220 static inline void mlx5_cqwq_pop(struct mlx5_cqwq
*wq
)
225 static inline void mlx5_cqwq_update_db_record(struct mlx5_cqwq
*wq
)
227 *wq
->db
= cpu_to_be32(wq
->cc
& 0xffffff);
230 static inline struct mlx5_cqe64
*mlx5_cqwq_get_cqe(struct mlx5_cqwq
*wq
)
232 u32 ci
= mlx5_cqwq_get_ci(wq
);
233 struct mlx5_cqe64
*cqe
= mlx5_cqwq_get_wqe(wq
, ci
);
234 u8 cqe_ownership_bit
= cqe
->op_own
& MLX5_CQE_OWNER_MASK
;
235 u8 sw_ownership_val
= mlx5_cqwq_get_wrap_cnt(wq
) & 1;
237 if (cqe_ownership_bit
!= sw_ownership_val
)
240 /* ensure cqe content is read after cqe ownership bit */
246 static inline u32
mlx5_wq_ll_get_size(struct mlx5_wq_ll
*wq
)
248 return (u32
)wq
->fbc
.sz_m1
+ 1;
251 static inline int mlx5_wq_ll_is_full(struct mlx5_wq_ll
*wq
)
253 return wq
->cur_sz
== wq
->fbc
.sz_m1
;
256 static inline int mlx5_wq_ll_is_empty(struct mlx5_wq_ll
*wq
)
261 static inline int mlx5_wq_ll_missing(struct mlx5_wq_ll
*wq
)
263 return wq
->fbc
.sz_m1
- wq
->cur_sz
;
266 static inline void *mlx5_wq_ll_get_wqe(struct mlx5_wq_ll
*wq
, u16 ix
)
268 return mlx5_frag_buf_get_wqe(&wq
->fbc
, ix
);
271 static inline u16
mlx5_wq_ll_get_wqe_next_ix(struct mlx5_wq_ll
*wq
, u16 ix
)
273 struct mlx5_wqe_srq_next_seg
*wqe
= mlx5_wq_ll_get_wqe(wq
, ix
);
275 return be16_to_cpu(wqe
->next_wqe_index
);
278 static inline void mlx5_wq_ll_push(struct mlx5_wq_ll
*wq
, u16 head_next
)
280 wq
->head
= head_next
;
285 static inline void mlx5_wq_ll_pop(struct mlx5_wq_ll
*wq
, __be16 ix
,
286 __be16
*next_tail_next
)
289 wq
->tail_next
= next_tail_next
;
293 static inline void mlx5_wq_ll_update_db_record(struct mlx5_wq_ll
*wq
)
295 *wq
->db
= cpu_to_be32(wq
->wqe_ctr
);
298 static inline u16
mlx5_wq_ll_get_head(struct mlx5_wq_ll
*wq
)
303 static inline u16
mlx5_wq_ll_get_counter(struct mlx5_wq_ll
*wq
)
308 #endif /* __MLX5_WQ_H__ */