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