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;
51 struct mlx5_frag_wq_ctrl {
52 struct mlx5_core_dev *mdev;
53 struct mlx5_frag_buf frag_buf;
65 struct mlx5_wq_cyc rq;
66 struct mlx5_wq_cyc sq;
70 struct mlx5_frag_buf_ctrl fbc;
72 u32 cc; /* consumer counter */
86 int mlx5_wq_cyc_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
87 void *wqc, struct mlx5_wq_cyc *wq,
88 struct mlx5_wq_ctrl *wq_ctrl);
89 u32 mlx5_wq_cyc_get_size(struct mlx5_wq_cyc *wq);
91 int mlx5_wq_qp_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
92 void *qpc, struct mlx5_wq_qp *wq,
93 struct mlx5_wq_ctrl *wq_ctrl);
95 int mlx5_cqwq_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
96 void *cqc, struct mlx5_cqwq *wq,
97 struct mlx5_frag_wq_ctrl *wq_ctrl);
98 u32 mlx5_cqwq_get_size(struct mlx5_cqwq *wq);
100 int mlx5_wq_ll_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
101 void *wqc, struct mlx5_wq_ll *wq,
102 struct mlx5_wq_ctrl *wq_ctrl);
103 u32 mlx5_wq_ll_get_size(struct mlx5_wq_ll *wq);
105 void mlx5_wq_destroy(struct mlx5_wq_ctrl *wq_ctrl);
106 void mlx5_cqwq_destroy(struct mlx5_frag_wq_ctrl *wq_ctrl);
108 static inline u16 mlx5_wq_cyc_ctr2ix(struct mlx5_wq_cyc *wq, u16 ctr)
110 return ctr & wq->sz_m1;
113 static inline void *mlx5_wq_cyc_get_wqe(struct mlx5_wq_cyc *wq, u16 ix)
115 return wq->buf + (ix << wq->log_stride);
118 static inline int mlx5_wq_cyc_cc_bigger(u16 cc1, u16 cc2)
120 int equal = (cc1 == cc2);
121 int smaller = 0x8000 & (cc1 - cc2);
123 return !equal && !smaller;
126 static inline u32 mlx5_cqwq_get_ci(struct mlx5_cqwq *wq)
128 return wq->cc & wq->fbc.sz_m1;
131 static inline void *mlx5_cqwq_get_wqe(struct mlx5_cqwq *wq, u32 ix)
133 return mlx5_frag_buf_get_wqe(&wq->fbc, ix);
136 static inline u32 mlx5_cqwq_get_wrap_cnt(struct mlx5_cqwq *wq)
138 return wq->cc >> wq->fbc.log_sz;
141 static inline void mlx5_cqwq_pop(struct mlx5_cqwq *wq)
146 static inline void mlx5_cqwq_update_db_record(struct mlx5_cqwq *wq)
148 *wq->db = cpu_to_be32(wq->cc & 0xffffff);
151 static inline struct mlx5_cqe64 *mlx5_cqwq_get_cqe(struct mlx5_cqwq *wq)
153 u32 ci = mlx5_cqwq_get_ci(wq);
154 struct mlx5_cqe64 *cqe = mlx5_cqwq_get_wqe(wq, ci);
155 u8 cqe_ownership_bit = cqe->op_own & MLX5_CQE_OWNER_MASK;
156 u8 sw_ownership_val = mlx5_cqwq_get_wrap_cnt(wq) & 1;
158 if (cqe_ownership_bit != sw_ownership_val)
161 /* ensure cqe content is read after cqe ownership bit */
167 static inline int mlx5_wq_ll_is_full(struct mlx5_wq_ll *wq)
169 return wq->cur_sz == wq->sz_m1;
172 static inline int mlx5_wq_ll_is_empty(struct mlx5_wq_ll *wq)
177 static inline void *mlx5_wq_ll_get_wqe(struct mlx5_wq_ll *wq, u16 ix)
179 return wq->buf + (ix << wq->log_stride);
182 static inline void mlx5_wq_ll_push(struct mlx5_wq_ll *wq, u16 head_next)
184 wq->head = head_next;
189 static inline void mlx5_wq_ll_pop(struct mlx5_wq_ll *wq, __be16 ix,
190 __be16 *next_tail_next)
193 wq->tail_next = next_tail_next;
197 static inline void mlx5_wq_ll_update_db_record(struct mlx5_wq_ll *wq)
199 *wq->db = cpu_to_be32(wq->wqe_ctr);
202 #endif /* __MLX5_WQ_H__ */