]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/infiniband/hw/cxgb3/cxio_wr.h
RDMA/cxgb3: Report correct port state and MTU
[mirror_ubuntu-artful-kernel.git] / drivers / infiniband / hw / cxgb3 / cxio_wr.h
CommitLineData
b038ced7
SW
1/*
2 * Copyright (c) 2006 Chelsio, Inc. All rights reserved.
b038ced7
SW
3 *
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:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
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.
22 *
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
30 * SOFTWARE.
31 */
32#ifndef __CXIO_WR_H__
33#define __CXIO_WR_H__
34
35#include <asm/io.h>
36#include <linux/pci.h>
37#include <linux/timer.h>
38#include "firmware_exports.h"
39
40#define T3_MAX_SGE 4
1860cdf8 41#define T3_MAX_INLINE 64
4ab928f6
SW
42#define T3_STAG0_PBL_SIZE (2 * T3_MAX_SGE << 3)
43#define T3_STAG0_MAX_PBE_LEN (128 * 1024 * 1024)
44#define T3_STAG0_PAGE_SHIFT 15
b038ced7
SW
45
46#define Q_EMPTY(rptr,wptr) ((rptr)==(wptr))
47#define Q_FULL(rptr,wptr,size_log2) ( (((wptr)-(rptr))>>(size_log2)) && \
48 ((rptr)!=(wptr)) )
49#define Q_GENBIT(ptr,size_log2) (!(((ptr)>>size_log2)&0x1))
50#define Q_FREECNT(rptr,wptr,size_log2) ((1UL<<size_log2)-((wptr)-(rptr)))
51#define Q_COUNT(rptr,wptr) ((wptr)-(rptr))
52#define Q_PTR2IDX(ptr,size_log2) (ptr & ((1UL<<size_log2)-1))
53
54static inline void ring_doorbell(void __iomem *doorbell, u32 qpid)
55{
56 writel(((1<<31) | qpid), doorbell);
57}
58
59#define SEQ32_GE(x,y) (!( (((u32) (x)) - ((u32) (y))) & 0x80000000 ))
60
61enum t3_wr_flags {
62 T3_COMPLETION_FLAG = 0x01,
63 T3_NOTIFY_FLAG = 0x02,
64 T3_SOLICITED_EVENT_FLAG = 0x04,
65 T3_READ_FENCE_FLAG = 0x08,
66 T3_LOCAL_FENCE_FLAG = 0x10
67} __attribute__ ((packed));
68
69enum t3_wr_opcode {
70 T3_WR_BP = FW_WROPCODE_RI_BYPASS,
71 T3_WR_SEND = FW_WROPCODE_RI_SEND,
72 T3_WR_WRITE = FW_WROPCODE_RI_RDMA_WRITE,
73 T3_WR_READ = FW_WROPCODE_RI_RDMA_READ,
74 T3_WR_INV_STAG = FW_WROPCODE_RI_LOCAL_INV,
75 T3_WR_BIND = FW_WROPCODE_RI_BIND_MW,
76 T3_WR_RCV = FW_WROPCODE_RI_RECEIVE,
77 T3_WR_INIT = FW_WROPCODE_RI_RDMA_INIT,
e7e55829
SW
78 T3_WR_QP_MOD = FW_WROPCODE_RI_MODIFY_QP,
79 T3_WR_FASTREG = FW_WROPCODE_RI_FASTREGISTER_MR
b038ced7
SW
80} __attribute__ ((packed));
81
82enum t3_rdma_opcode {
83 T3_RDMA_WRITE, /* IETF RDMAP v1.0 ... */
84 T3_READ_REQ,
85 T3_READ_RESP,
86 T3_SEND,
87 T3_SEND_WITH_INV,
88 T3_SEND_WITH_SE,
89 T3_SEND_WITH_SE_INV,
90 T3_TERMINATE,
91 T3_RDMA_INIT, /* CHELSIO RI specific ... */
92 T3_BIND_MW,
93 T3_FAST_REGISTER,
94 T3_LOCAL_INV,
95 T3_QP_MOD,
e7e55829
SW
96 T3_BYPASS,
97 T3_RDMA_READ_REQ_WITH_INV,
b038ced7
SW
98} __attribute__ ((packed));
99
100static inline enum t3_rdma_opcode wr2opcode(enum t3_wr_opcode wrop)
101{
102 switch (wrop) {
103 case T3_WR_BP: return T3_BYPASS;
104 case T3_WR_SEND: return T3_SEND;
105 case T3_WR_WRITE: return T3_RDMA_WRITE;
106 case T3_WR_READ: return T3_READ_REQ;
107 case T3_WR_INV_STAG: return T3_LOCAL_INV;
108 case T3_WR_BIND: return T3_BIND_MW;
109 case T3_WR_INIT: return T3_RDMA_INIT;
110 case T3_WR_QP_MOD: return T3_QP_MOD;
e7e55829 111 case T3_WR_FASTREG: return T3_FAST_REGISTER;
b038ced7
SW
112 default: break;
113 }
114 return -1;
115}
116
117
118/* Work request id */
119union t3_wrid {
120 struct {
121 u32 hi;
122 u32 low;
123 } id0;
124 u64 id1;
125};
126
127#define WRID(wrid) (wrid.id1)
128#define WRID_GEN(wrid) (wrid.id0.wr_gen)
129#define WRID_IDX(wrid) (wrid.id0.wr_idx)
130#define WRID_LO(wrid) (wrid.id0.wr_lo)
131
132struct fw_riwrh {
133 __be32 op_seop_flags;
134 __be32 gen_tid_len;
135};
136
137#define S_FW_RIWR_OP 24
138#define M_FW_RIWR_OP 0xff
139#define V_FW_RIWR_OP(x) ((x) << S_FW_RIWR_OP)
140#define G_FW_RIWR_OP(x) ((((x) >> S_FW_RIWR_OP)) & M_FW_RIWR_OP)
141
142#define S_FW_RIWR_SOPEOP 22
143#define M_FW_RIWR_SOPEOP 0x3
144#define V_FW_RIWR_SOPEOP(x) ((x) << S_FW_RIWR_SOPEOP)
145
146#define S_FW_RIWR_FLAGS 8
147#define M_FW_RIWR_FLAGS 0x3fffff
148#define V_FW_RIWR_FLAGS(x) ((x) << S_FW_RIWR_FLAGS)
149#define G_FW_RIWR_FLAGS(x) ((((x) >> S_FW_RIWR_FLAGS)) & M_FW_RIWR_FLAGS)
150
151#define S_FW_RIWR_TID 8
152#define V_FW_RIWR_TID(x) ((x) << S_FW_RIWR_TID)
153
154#define S_FW_RIWR_LEN 0
155#define V_FW_RIWR_LEN(x) ((x) << S_FW_RIWR_LEN)
156
157#define S_FW_RIWR_GEN 31
158#define V_FW_RIWR_GEN(x) ((x) << S_FW_RIWR_GEN)
159
160struct t3_sge {
161 __be32 stag;
162 __be32 len;
163 __be64 to;
164};
165
166/* If num_sgle is zero, flit 5+ contains immediate data.*/
167struct t3_send_wr {
168 struct fw_riwrh wrh; /* 0 */
169 union t3_wrid wrid; /* 1 */
170
171 u8 rdmaop; /* 2 */
172 u8 reserved[3];
173 __be32 rem_stag;
174 __be32 plen; /* 3 */
175 __be32 num_sgle;
176 struct t3_sge sgl[T3_MAX_SGE]; /* 4+ */
177};
178
e7e55829
SW
179#define T3_MAX_FASTREG_DEPTH 24
180#define T3_MAX_FASTREG_FRAG 10
181
182struct t3_fastreg_wr {
183 struct fw_riwrh wrh; /* 0 */
184 union t3_wrid wrid; /* 1 */
185 __be32 stag; /* 2 */
186 __be32 len;
187 __be32 va_base_hi; /* 3 */
188 __be32 va_base_lo_fbo;
189 __be32 page_type_perms; /* 4 */
190 __be32 reserved1;
191 __be64 pbl_addrs[0]; /* 5+ */
192};
193
194/*
195 * If a fastreg wr spans multiple wqes, then the 2nd fragment look like this.
196 */
197struct t3_pbl_frag {
198 struct fw_riwrh wrh; /* 0 */
199 __be64 pbl_addrs[14]; /* 1..14 */
200};
201
202#define S_FR_PAGE_COUNT 24
203#define M_FR_PAGE_COUNT 0xff
204#define V_FR_PAGE_COUNT(x) ((x) << S_FR_PAGE_COUNT)
205#define G_FR_PAGE_COUNT(x) ((((x) >> S_FR_PAGE_COUNT)) & M_FR_PAGE_COUNT)
206
207#define S_FR_PAGE_SIZE 16
208#define M_FR_PAGE_SIZE 0x1f
209#define V_FR_PAGE_SIZE(x) ((x) << S_FR_PAGE_SIZE)
210#define G_FR_PAGE_SIZE(x) ((((x) >> S_FR_PAGE_SIZE)) & M_FR_PAGE_SIZE)
211
212#define S_FR_TYPE 8
213#define M_FR_TYPE 0x1
214#define V_FR_TYPE(x) ((x) << S_FR_TYPE)
215#define G_FR_TYPE(x) ((((x) >> S_FR_TYPE)) & M_FR_TYPE)
216
217#define S_FR_PERMS 0
218#define M_FR_PERMS 0xff
219#define V_FR_PERMS(x) ((x) << S_FR_PERMS)
220#define G_FR_PERMS(x) ((((x) >> S_FR_PERMS)) & M_FR_PERMS)
221
b038ced7
SW
222struct t3_local_inv_wr {
223 struct fw_riwrh wrh; /* 0 */
224 union t3_wrid wrid; /* 1 */
225 __be32 stag; /* 2 */
e7e55829 226 __be32 reserved;
b038ced7
SW
227};
228
229struct t3_rdma_write_wr {
230 struct fw_riwrh wrh; /* 0 */
231 union t3_wrid wrid; /* 1 */
232 u8 rdmaop; /* 2 */
233 u8 reserved[3];
234 __be32 stag_sink;
235 __be64 to_sink; /* 3 */
236 __be32 plen; /* 4 */
237 __be32 num_sgle;
238 struct t3_sge sgl[T3_MAX_SGE]; /* 5+ */
239};
240
241struct t3_rdma_read_wr {
242 struct fw_riwrh wrh; /* 0 */
243 union t3_wrid wrid; /* 1 */
244 u8 rdmaop; /* 2 */
e7e55829
SW
245 u8 local_inv;
246 u8 reserved[2];
b038ced7
SW
247 __be32 rem_stag;
248 __be64 rem_to; /* 3 */
249 __be32 local_stag; /* 4 */
250 __be32 local_len;
251 __be64 local_to; /* 5 */
252};
253
b038ced7
SW
254struct t3_bind_mw_wr {
255 struct fw_riwrh wrh; /* 0 */
256 union t3_wrid wrid; /* 1 */
257 u16 reserved; /* 2 */
258 u8 type;
259 u8 perms;
260 __be32 mr_stag;
261 __be32 mw_stag; /* 3 */
262 __be32 mw_len;
263 __be64 mw_va; /* 4 */
264 __be32 mr_pbl_addr; /* 5 */
265 u8 reserved2[3];
266 u8 mr_pagesz;
267};
268
269struct t3_receive_wr {
270 struct fw_riwrh wrh; /* 0 */
271 union t3_wrid wrid; /* 1 */
272 u8 pagesz[T3_MAX_SGE];
273 __be32 num_sgle; /* 2 */
274 struct t3_sge sgl[T3_MAX_SGE]; /* 3+ */
275 __be32 pbl_addr[T3_MAX_SGE];
276};
277
278struct t3_bypass_wr {
279 struct fw_riwrh wrh;
280 union t3_wrid wrid; /* 1 */
281};
282
283struct t3_modify_qp_wr {
284 struct fw_riwrh wrh; /* 0 */
285 union t3_wrid wrid; /* 1 */
286 __be32 flags; /* 2 */
287 __be32 quiesce; /* 2 */
288 __be32 max_ird; /* 3 */
289 __be32 max_ord; /* 3 */
290 __be64 sge_cmd; /* 4 */
291 __be64 ctx1; /* 5 */
292 __be64 ctx0; /* 6 */
293};
294
295enum t3_modify_qp_flags {
296 MODQP_QUIESCE = 0x01,
297 MODQP_MAX_IRD = 0x02,
298 MODQP_MAX_ORD = 0x04,
299 MODQP_WRITE_EC = 0x08,
300 MODQP_READ_EC = 0x10,
301};
302
303
304enum t3_mpa_attrs {
305 uP_RI_MPA_RX_MARKER_ENABLE = 0x1,
306 uP_RI_MPA_TX_MARKER_ENABLE = 0x2,
307 uP_RI_MPA_CRC_ENABLE = 0x4,
308 uP_RI_MPA_IETF_ENABLE = 0x8
309} __attribute__ ((packed));
310
311enum t3_qp_caps {
312 uP_RI_QP_RDMA_READ_ENABLE = 0x01,
313 uP_RI_QP_RDMA_WRITE_ENABLE = 0x02,
314 uP_RI_QP_BIND_ENABLE = 0x04,
315 uP_RI_QP_FAST_REGISTER_ENABLE = 0x08,
316 uP_RI_QP_STAG0_ENABLE = 0x10
317} __attribute__ ((packed));
318
f8b0dfd1
SW
319enum rdma_init_rtr_types {
320 RTR_READ = 1,
321 RTR_WRITE = 2,
322 RTR_SEND = 3,
323};
324
325#define S_RTR_TYPE 2
326#define M_RTR_TYPE 0x3
327#define V_RTR_TYPE(x) ((x) << S_RTR_TYPE)
328#define G_RTR_TYPE(x) ((((x) >> S_RTR_TYPE)) & M_RTR_TYPE)
329
b038ced7
SW
330struct t3_rdma_init_attr {
331 u32 tid;
332 u32 qpid;
333 u32 pdid;
334 u32 scqid;
335 u32 rcqid;
336 u32 rq_addr;
337 u32 rq_size;
338 enum t3_mpa_attrs mpaattrs;
339 enum t3_qp_caps qpcaps;
340 u16 tcp_emss;
341 u32 ord;
342 u32 ird;
343 u64 qp_dma_addr;
344 u32 qp_dma_size;
f8b0dfd1
SW
345 enum rdma_init_rtr_types rtr_type;
346 u16 flags;
347 u16 rqe_count;
de3d3530 348 u32 irs;
b038ced7
SW
349};
350
351struct t3_rdma_init_wr {
352 struct fw_riwrh wrh; /* 0 */
353 union t3_wrid wrid; /* 1 */
354 __be32 qpid; /* 2 */
355 __be32 pdid;
356 __be32 scqid; /* 3 */
357 __be32 rcqid;
358 __be32 rq_addr; /* 4 */
359 __be32 rq_size;
360 u8 mpaattrs; /* 5 */
361 u8 qpcaps;
362 __be16 ulpdu_size;
f8b0dfd1
SW
363 __be16 flags_rtr_type;
364 __be16 rqe_count;
b038ced7
SW
365 __be32 ord; /* 6 */
366 __be32 ird;
367 __be64 qp_dma_addr; /* 7 */
368 __be32 qp_dma_size; /* 8 */
1d6e658e 369 __be32 irs;
b038ced7
SW
370};
371
372struct t3_genbit {
373 u64 flit[15];
374 __be64 genbit;
375};
376
e7e55829
SW
377struct t3_wq_in_err {
378 u64 flit[13];
379 u64 err;
380};
381
b038ced7 382enum rdma_init_wr_flags {
f8b0dfd1 383 MPA_INITIATOR = (1<<0),
c6b5b504 384 PRIV_QP = (1<<1),
b038ced7
SW
385};
386
387union t3_wr {
388 struct t3_send_wr send;
389 struct t3_rdma_write_wr write;
390 struct t3_rdma_read_wr read;
391 struct t3_receive_wr recv;
e7e55829
SW
392 struct t3_fastreg_wr fastreg;
393 struct t3_pbl_frag pbl_frag;
b038ced7
SW
394 struct t3_local_inv_wr local_inv;
395 struct t3_bind_mw_wr bind;
396 struct t3_bypass_wr bypass;
397 struct t3_rdma_init_wr init;
398 struct t3_modify_qp_wr qp_mod;
399 struct t3_genbit genbit;
e7e55829
SW
400 struct t3_wq_in_err wq_in_err;
401 __be64 flit[16];
b038ced7
SW
402};
403
404#define T3_SQ_CQE_FLIT 13
405#define T3_SQ_COOKIE_FLIT 14
406
407#define T3_RQ_COOKIE_FLIT 13
408#define T3_RQ_CQE_FLIT 14
409
410static inline enum t3_wr_opcode fw_riwrh_opcode(struct fw_riwrh *wqe)
411{
412 return G_FW_RIWR_OP(be32_to_cpu(wqe->op_seop_flags));
413}
414
e7e55829
SW
415enum t3_wr_hdr_bits {
416 T3_EOP = 1,
417 T3_SOP = 2,
418 T3_SOPEOP = T3_EOP|T3_SOP,
419};
420
b038ced7
SW
421static inline void build_fw_riwrh(struct fw_riwrh *wqe, enum t3_wr_opcode op,
422 enum t3_wr_flags flags, u8 genbit, u32 tid,
e7e55829 423 u8 len, u8 sopeop)
b038ced7
SW
424{
425 wqe->op_seop_flags = cpu_to_be32(V_FW_RIWR_OP(op) |
e7e55829 426 V_FW_RIWR_SOPEOP(sopeop) |
b038ced7
SW
427 V_FW_RIWR_FLAGS(flags));
428 wmb();
429 wqe->gen_tid_len = cpu_to_be32(V_FW_RIWR_GEN(genbit) |
430 V_FW_RIWR_TID(tid) |
431 V_FW_RIWR_LEN(len));
432 /* 2nd gen bit... */
433 ((union t3_wr *)wqe)->genbit.genbit = cpu_to_be64(genbit);
434}
435
436/*
437 * T3 ULP2_TX commands
438 */
439enum t3_utx_mem_op {
440 T3_UTX_MEM_READ = 2,
441 T3_UTX_MEM_WRITE = 3
442};
443
444/* T3 MC7 RDMA TPT entry format */
445
446enum tpt_mem_type {
447 TPT_NON_SHARED_MR = 0x0,
448 TPT_SHARED_MR = 0x1,
449 TPT_MW = 0x2,
450 TPT_MW_RELAXED_PROTECTION = 0x3
451};
452
453enum tpt_addr_type {
454 TPT_ZBTO = 0,
455 TPT_VATO = 1
456};
457
458enum tpt_mem_perm {
e7e55829 459 TPT_MW_BIND = 0x10,
b038ced7
SW
460 TPT_LOCAL_READ = 0x8,
461 TPT_LOCAL_WRITE = 0x4,
462 TPT_REMOTE_READ = 0x2,
463 TPT_REMOTE_WRITE = 0x1
464};
465
466struct tpt_entry {
467 __be32 valid_stag_pdid;
468 __be32 flags_pagesize_qpid;
469
470 __be32 rsvd_pbl_addr;
471 __be32 len;
472 __be32 va_hi;
473 __be32 va_low_or_fbo;
474
475 __be32 rsvd_bind_cnt_or_pstag;
476 __be32 rsvd_pbl_size;
477};
478
479#define S_TPT_VALID 31
480#define V_TPT_VALID(x) ((x) << S_TPT_VALID)
481#define F_TPT_VALID V_TPT_VALID(1U)
482
483#define S_TPT_STAG_KEY 23
484#define M_TPT_STAG_KEY 0xFF
485#define V_TPT_STAG_KEY(x) ((x) << S_TPT_STAG_KEY)
486#define G_TPT_STAG_KEY(x) (((x) >> S_TPT_STAG_KEY) & M_TPT_STAG_KEY)
487
488#define S_TPT_STAG_STATE 22
489#define V_TPT_STAG_STATE(x) ((x) << S_TPT_STAG_STATE)
490#define F_TPT_STAG_STATE V_TPT_STAG_STATE(1U)
491
492#define S_TPT_STAG_TYPE 20
493#define M_TPT_STAG_TYPE 0x3
494#define V_TPT_STAG_TYPE(x) ((x) << S_TPT_STAG_TYPE)
495#define G_TPT_STAG_TYPE(x) (((x) >> S_TPT_STAG_TYPE) & M_TPT_STAG_TYPE)
496
497#define S_TPT_PDID 0
498#define M_TPT_PDID 0xFFFFF
499#define V_TPT_PDID(x) ((x) << S_TPT_PDID)
500#define G_TPT_PDID(x) (((x) >> S_TPT_PDID) & M_TPT_PDID)
501
502#define S_TPT_PERM 28
503#define M_TPT_PERM 0xF
504#define V_TPT_PERM(x) ((x) << S_TPT_PERM)
505#define G_TPT_PERM(x) (((x) >> S_TPT_PERM) & M_TPT_PERM)
506
507#define S_TPT_REM_INV_DIS 27
508#define V_TPT_REM_INV_DIS(x) ((x) << S_TPT_REM_INV_DIS)
509#define F_TPT_REM_INV_DIS V_TPT_REM_INV_DIS(1U)
510
511#define S_TPT_ADDR_TYPE 26
512#define V_TPT_ADDR_TYPE(x) ((x) << S_TPT_ADDR_TYPE)
513#define F_TPT_ADDR_TYPE V_TPT_ADDR_TYPE(1U)
514
515#define S_TPT_MW_BIND_ENABLE 25
516#define V_TPT_MW_BIND_ENABLE(x) ((x) << S_TPT_MW_BIND_ENABLE)
517#define F_TPT_MW_BIND_ENABLE V_TPT_MW_BIND_ENABLE(1U)
518
519#define S_TPT_PAGE_SIZE 20
520#define M_TPT_PAGE_SIZE 0x1F
521#define V_TPT_PAGE_SIZE(x) ((x) << S_TPT_PAGE_SIZE)
522#define G_TPT_PAGE_SIZE(x) (((x) >> S_TPT_PAGE_SIZE) & M_TPT_PAGE_SIZE)
523
524#define S_TPT_PBL_ADDR 0
525#define M_TPT_PBL_ADDR 0x1FFFFFFF
526#define V_TPT_PBL_ADDR(x) ((x) << S_TPT_PBL_ADDR)
527#define G_TPT_PBL_ADDR(x) (((x) >> S_TPT_PBL_ADDR) & M_TPT_PBL_ADDR)
528
529#define S_TPT_QPID 0
530#define M_TPT_QPID 0xFFFFF
531#define V_TPT_QPID(x) ((x) << S_TPT_QPID)
532#define G_TPT_QPID(x) (((x) >> S_TPT_QPID) & M_TPT_QPID)
533
534#define S_TPT_PSTAG 0
535#define M_TPT_PSTAG 0xFFFFFF
536#define V_TPT_PSTAG(x) ((x) << S_TPT_PSTAG)
537#define G_TPT_PSTAG(x) (((x) >> S_TPT_PSTAG) & M_TPT_PSTAG)
538
539#define S_TPT_PBL_SIZE 0
540#define M_TPT_PBL_SIZE 0xFFFFF
541#define V_TPT_PBL_SIZE(x) ((x) << S_TPT_PBL_SIZE)
542#define G_TPT_PBL_SIZE(x) (((x) >> S_TPT_PBL_SIZE) & M_TPT_PBL_SIZE)
543
544/*
545 * CQE defs
546 */
547struct t3_cqe {
548 __be32 header;
549 __be32 len;
550 union {
551 struct {
552 __be32 stag;
553 __be32 msn;
554 } rcqe;
555 struct {
556 u32 wrid_hi;
557 u32 wrid_low;
558 } scqe;
559 } u;
560};
561
562#define S_CQE_OOO 31
563#define M_CQE_OOO 0x1
564#define G_CQE_OOO(x) ((((x) >> S_CQE_OOO)) & M_CQE_OOO)
565#define V_CEQ_OOO(x) ((x)<<S_CQE_OOO)
566
567#define S_CQE_QPID 12
568#define M_CQE_QPID 0x7FFFF
569#define G_CQE_QPID(x) ((((x) >> S_CQE_QPID)) & M_CQE_QPID)
570#define V_CQE_QPID(x) ((x)<<S_CQE_QPID)
571
572#define S_CQE_SWCQE 11
573#define M_CQE_SWCQE 0x1
574#define G_CQE_SWCQE(x) ((((x) >> S_CQE_SWCQE)) & M_CQE_SWCQE)
575#define V_CQE_SWCQE(x) ((x)<<S_CQE_SWCQE)
576
577#define S_CQE_GENBIT 10
578#define M_CQE_GENBIT 0x1
579#define G_CQE_GENBIT(x) (((x) >> S_CQE_GENBIT) & M_CQE_GENBIT)
580#define V_CQE_GENBIT(x) ((x)<<S_CQE_GENBIT)
581
582#define S_CQE_STATUS 5
583#define M_CQE_STATUS 0x1F
584#define G_CQE_STATUS(x) ((((x) >> S_CQE_STATUS)) & M_CQE_STATUS)
585#define V_CQE_STATUS(x) ((x)<<S_CQE_STATUS)
586
587#define S_CQE_TYPE 4
588#define M_CQE_TYPE 0x1
589#define G_CQE_TYPE(x) ((((x) >> S_CQE_TYPE)) & M_CQE_TYPE)
590#define V_CQE_TYPE(x) ((x)<<S_CQE_TYPE)
591
592#define S_CQE_OPCODE 0
593#define M_CQE_OPCODE 0xF
594#define G_CQE_OPCODE(x) ((((x) >> S_CQE_OPCODE)) & M_CQE_OPCODE)
595#define V_CQE_OPCODE(x) ((x)<<S_CQE_OPCODE)
596
597#define SW_CQE(x) (G_CQE_SWCQE(be32_to_cpu((x).header)))
598#define CQE_OOO(x) (G_CQE_OOO(be32_to_cpu((x).header)))
599#define CQE_QPID(x) (G_CQE_QPID(be32_to_cpu((x).header)))
600#define CQE_GENBIT(x) (G_CQE_GENBIT(be32_to_cpu((x).header)))
601#define CQE_TYPE(x) (G_CQE_TYPE(be32_to_cpu((x).header)))
602#define SQ_TYPE(x) (CQE_TYPE((x)))
603#define RQ_TYPE(x) (!CQE_TYPE((x)))
604#define CQE_STATUS(x) (G_CQE_STATUS(be32_to_cpu((x).header)))
605#define CQE_OPCODE(x) (G_CQE_OPCODE(be32_to_cpu((x).header)))
606
42fb61f0
SW
607#define CQE_SEND_OPCODE(x)( \
608 (G_CQE_OPCODE(be32_to_cpu((x).header)) == T3_SEND) || \
609 (G_CQE_OPCODE(be32_to_cpu((x).header)) == T3_SEND_WITH_SE) || \
610 (G_CQE_OPCODE(be32_to_cpu((x).header)) == T3_SEND_WITH_INV) || \
611 (G_CQE_OPCODE(be32_to_cpu((x).header)) == T3_SEND_WITH_SE_INV))
612
b038ced7
SW
613#define CQE_LEN(x) (be32_to_cpu((x).len))
614
615/* used for RQ completion processing */
616#define CQE_WRID_STAG(x) (be32_to_cpu((x).u.rcqe.stag))
617#define CQE_WRID_MSN(x) (be32_to_cpu((x).u.rcqe.msn))
618
619/* used for SQ completion processing */
620#define CQE_WRID_SQ_WPTR(x) ((x).u.scqe.wrid_hi)
621#define CQE_WRID_WPTR(x) ((x).u.scqe.wrid_low)
622
623/* generic accessor macros */
624#define CQE_WRID_HI(x) ((x).u.scqe.wrid_hi)
625#define CQE_WRID_LOW(x) ((x).u.scqe.wrid_low)
626
627#define TPT_ERR_SUCCESS 0x0
628#define TPT_ERR_STAG 0x1 /* STAG invalid: either the */
629 /* STAG is offlimt, being 0, */
630 /* or STAG_key mismatch */
631#define TPT_ERR_PDID 0x2 /* PDID mismatch */
632#define TPT_ERR_QPID 0x3 /* QPID mismatch */
633#define TPT_ERR_ACCESS 0x4 /* Invalid access right */
634#define TPT_ERR_WRAP 0x5 /* Wrap error */
635#define TPT_ERR_BOUND 0x6 /* base and bounds voilation */
636#define TPT_ERR_INVALIDATE_SHARED_MR 0x7 /* attempt to invalidate a */
637 /* shared memory region */
638#define TPT_ERR_INVALIDATE_MR_WITH_MW_BOUND 0x8 /* attempt to invalidate a */
639 /* shared memory region */
640#define TPT_ERR_ECC 0x9 /* ECC error detected */
641#define TPT_ERR_ECC_PSTAG 0xA /* ECC error detected when */
642 /* reading PSTAG for a MW */
643 /* Invalidate */
644#define TPT_ERR_PBL_ADDR_BOUND 0xB /* pbl addr out of bounds: */
645 /* software error */
646#define TPT_ERR_SWFLUSH 0xC /* SW FLUSHED */
647#define TPT_ERR_CRC 0x10 /* CRC error */
648#define TPT_ERR_MARKER 0x11 /* Marker error */
649#define TPT_ERR_PDU_LEN_ERR 0x12 /* invalid PDU length */
650#define TPT_ERR_OUT_OF_RQE 0x13 /* out of RQE */
651#define TPT_ERR_DDP_VERSION 0x14 /* wrong DDP version */
652#define TPT_ERR_RDMA_VERSION 0x15 /* wrong RDMA version */
653#define TPT_ERR_OPCODE 0x16 /* invalid rdma opcode */
654#define TPT_ERR_DDP_QUEUE_NUM 0x17 /* invalid ddp queue number */
655#define TPT_ERR_MSN 0x18 /* MSN error */
656#define TPT_ERR_TBIT 0x19 /* tag bit not set correctly */
657#define TPT_ERR_MO 0x1A /* MO not 0 for TERMINATE */
658 /* or READ_REQ */
659#define TPT_ERR_MSN_GAP 0x1B
660#define TPT_ERR_MSN_RANGE 0x1C
661#define TPT_ERR_IRD_OVERFLOW 0x1D
662#define TPT_ERR_RQE_ADDR_BOUND 0x1E /* RQE addr out of bounds: */
663 /* software error */
664#define TPT_ERR_INTERNAL_ERR 0x1F /* internal error (opcode */
665 /* mismatch) */
666
667struct t3_swsq {
668 __u64 wr_id;
669 struct t3_cqe cqe;
670 __u32 sq_wptr;
671 __be32 read_len;
672 int opcode;
673 int complete;
674 int signaled;
675};
676
4ab928f6
SW
677struct t3_swrq {
678 __u64 wr_id;
679 __u32 pbl_addr;
680};
681
b038ced7
SW
682/*
683 * A T3 WQ implements both the SQ and RQ.
684 */
685struct t3_wq {
686 union t3_wr *queue; /* DMA accessable memory */
687 dma_addr_t dma_addr; /* DMA address for HW */
688 DECLARE_PCI_UNMAP_ADDR(mapping) /* unmap kruft */
689 u32 error; /* 1 once we go to ERROR */
690 u32 qpid;
691 u32 wptr; /* idx to next available WR slot */
692 u32 size_log2; /* total wq size */
693 struct t3_swsq *sq; /* SW SQ */
694 struct t3_swsq *oldest_read; /* tracks oldest pending read */
695 u32 sq_wptr; /* sq_wptr - sq_rptr == count of */
696 u32 sq_rptr; /* pending wrs */
697 u32 sq_size_log2; /* sq size */
4ab928f6 698 struct t3_swrq *rq; /* SW RQ (holds consumer wr_ids */
b038ced7
SW
699 u32 rq_wptr; /* rq_wptr - rq_rptr == count of */
700 u32 rq_rptr; /* pending wrs */
4ab928f6 701 struct t3_swrq *rq_oldest_wr; /* oldest wr on the SW RQ */
b038ced7
SW
702 u32 rq_size_log2; /* rq size */
703 u32 rq_addr; /* rq adapter address */
704 void __iomem *doorbell; /* kernel db */
705 u64 udb; /* user db if any */
4ab928f6 706 struct cxio_rdev *rdev;
b038ced7
SW
707};
708
709struct t3_cq {
710 u32 cqid;
711 u32 rptr;
712 u32 wptr;
713 u32 size_log2;
714 dma_addr_t dma_addr;
715 DECLARE_PCI_UNMAP_ADDR(mapping)
716 struct t3_cqe *queue;
717 struct t3_cqe *sw_queue;
718 u32 sw_rptr;
719 u32 sw_wptr;
720};
721
722#define CQ_VLD_ENTRY(ptr,size_log2,cqe) (Q_GENBIT(ptr,size_log2) == \
723 CQE_GENBIT(*cqe))
724
725static inline void cxio_set_wq_in_error(struct t3_wq *wq)
726{
e7e55829 727 wq->queue->wq_in_err.err = 1;
b038ced7
SW
728}
729
730static inline struct t3_cqe *cxio_next_hw_cqe(struct t3_cq *cq)
731{
732 struct t3_cqe *cqe;
733
734 cqe = cq->queue + (Q_PTR2IDX(cq->rptr, cq->size_log2));
735 if (CQ_VLD_ENTRY(cq->rptr, cq->size_log2, cqe))
736 return cqe;
737 return NULL;
738}
739
740static inline struct t3_cqe *cxio_next_sw_cqe(struct t3_cq *cq)
741{
742 struct t3_cqe *cqe;
743
744 if (!Q_EMPTY(cq->sw_rptr, cq->sw_wptr)) {
745 cqe = cq->sw_queue + (Q_PTR2IDX(cq->sw_rptr, cq->size_log2));
746 return cqe;
747 }
748 return NULL;
749}
750
751static inline struct t3_cqe *cxio_next_cqe(struct t3_cq *cq)
752{
753 struct t3_cqe *cqe;
754
755 if (!Q_EMPTY(cq->sw_rptr, cq->sw_wptr)) {
756 cqe = cq->sw_queue + (Q_PTR2IDX(cq->sw_rptr, cq->size_log2));
757 return cqe;
758 }
759 cqe = cq->queue + (Q_PTR2IDX(cq->rptr, cq->size_log2));
760 if (CQ_VLD_ENTRY(cq->rptr, cq->size_log2, cqe))
761 return cqe;
762 return NULL;
763}
764
765#endif