staging/hfi1: Move s_sde to read mostly section of hfi1_qp
[deliverable/linux.git] / drivers / staging / rdma / hfi1 / verbs.h
1 /*
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
8 * Copyright(c) 2015 Intel Corporation.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * BSD LICENSE
20 *
21 * Copyright(c) 2015 Intel Corporation.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 *
27 * - Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * - Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in
31 * the documentation and/or other materials provided with the
32 * distribution.
33 * - Neither the name of Intel Corporation nor the names of its
34 * contributors may be used to endorse or promote products derived
35 * from this software without specific prior written permission.
36 *
37 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
38 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
39 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
40 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
41 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
42 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
43 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
45 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
47 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 *
49 */
50
51 #ifndef HFI1_VERBS_H
52 #define HFI1_VERBS_H
53
54 #include <linux/types.h>
55 #include <linux/seqlock.h>
56 #include <linux/kernel.h>
57 #include <linux/interrupt.h>
58 #include <linux/kref.h>
59 #include <linux/workqueue.h>
60 #include <linux/kthread.h>
61 #include <linux/completion.h>
62 #include <rdma/ib_pack.h>
63 #include <rdma/ib_user_verbs.h>
64 #include <rdma/ib_mad.h>
65
66 struct hfi1_ctxtdata;
67 struct hfi1_pportdata;
68 struct hfi1_devdata;
69 struct hfi1_packet;
70
71 #include "iowait.h"
72
73 #define HFI1_MAX_RDMA_ATOMIC 16
74 #define HFI1_GUIDS_PER_PORT 5
75
76 /*
77 * Increment this value if any changes that break userspace ABI
78 * compatibility are made.
79 */
80 #define HFI1_UVERBS_ABI_VERSION 2
81
82 /*
83 * Define an ib_cq_notify value that is not valid so we know when CQ
84 * notifications are armed.
85 */
86 #define IB_CQ_NONE (IB_CQ_NEXT_COMP + 1)
87
88 #define IB_SEQ_NAK (3 << 29)
89
90 /* AETH NAK opcode values */
91 #define IB_RNR_NAK 0x20
92 #define IB_NAK_PSN_ERROR 0x60
93 #define IB_NAK_INVALID_REQUEST 0x61
94 #define IB_NAK_REMOTE_ACCESS_ERROR 0x62
95 #define IB_NAK_REMOTE_OPERATIONAL_ERROR 0x63
96 #define IB_NAK_INVALID_RD_REQUEST 0x64
97
98 /* Flags for checking QP state (see ib_hfi1_state_ops[]) */
99 #define HFI1_POST_SEND_OK 0x01
100 #define HFI1_POST_RECV_OK 0x02
101 #define HFI1_PROCESS_RECV_OK 0x04
102 #define HFI1_PROCESS_SEND_OK 0x08
103 #define HFI1_PROCESS_NEXT_SEND_OK 0x10
104 #define HFI1_FLUSH_SEND 0x20
105 #define HFI1_FLUSH_RECV 0x40
106 #define HFI1_PROCESS_OR_FLUSH_SEND \
107 (HFI1_PROCESS_SEND_OK | HFI1_FLUSH_SEND)
108
109 /* IB Performance Manager status values */
110 #define IB_PMA_SAMPLE_STATUS_DONE 0x00
111 #define IB_PMA_SAMPLE_STATUS_STARTED 0x01
112 #define IB_PMA_SAMPLE_STATUS_RUNNING 0x02
113
114 /* Mandatory IB performance counter select values. */
115 #define IB_PMA_PORT_XMIT_DATA cpu_to_be16(0x0001)
116 #define IB_PMA_PORT_RCV_DATA cpu_to_be16(0x0002)
117 #define IB_PMA_PORT_XMIT_PKTS cpu_to_be16(0x0003)
118 #define IB_PMA_PORT_RCV_PKTS cpu_to_be16(0x0004)
119 #define IB_PMA_PORT_XMIT_WAIT cpu_to_be16(0x0005)
120
121 #define HFI1_VENDOR_IPG cpu_to_be16(0xFFA0)
122
123 #define IB_BTH_REQ_ACK BIT(31)
124 #define IB_BTH_SOLICITED BIT(23)
125 #define IB_BTH_MIG_REQ BIT(22)
126
127 #define IB_GRH_VERSION 6
128 #define IB_GRH_VERSION_MASK 0xF
129 #define IB_GRH_VERSION_SHIFT 28
130 #define IB_GRH_TCLASS_MASK 0xFF
131 #define IB_GRH_TCLASS_SHIFT 20
132 #define IB_GRH_FLOW_MASK 0xFFFFF
133 #define IB_GRH_FLOW_SHIFT 0
134 #define IB_GRH_NEXT_HDR 0x1B
135
136 #define IB_DEFAULT_GID_PREFIX cpu_to_be64(0xfe80000000000000ULL)
137
138 /* flags passed by hfi1_ib_rcv() */
139 enum {
140 HFI1_HAS_GRH = (1 << 0),
141 };
142
143 struct ib_reth {
144 __be64 vaddr;
145 __be32 rkey;
146 __be32 length;
147 } __packed;
148
149 struct ib_atomic_eth {
150 __be32 vaddr[2]; /* unaligned so access as 2 32-bit words */
151 __be32 rkey;
152 __be64 swap_data;
153 __be64 compare_data;
154 } __packed;
155
156 union ib_ehdrs {
157 struct {
158 __be32 deth[2];
159 __be32 imm_data;
160 } ud;
161 struct {
162 struct ib_reth reth;
163 __be32 imm_data;
164 } rc;
165 struct {
166 __be32 aeth;
167 __be32 atomic_ack_eth[2];
168 } at;
169 __be32 imm_data;
170 __be32 aeth;
171 struct ib_atomic_eth atomic_eth;
172 } __packed;
173
174 struct hfi1_other_headers {
175 __be32 bth[3];
176 union ib_ehdrs u;
177 } __packed;
178
179 /*
180 * Note that UD packets with a GRH header are 8+40+12+8 = 68 bytes
181 * long (72 w/ imm_data). Only the first 56 bytes of the IB header
182 * will be in the eager header buffer. The remaining 12 or 16 bytes
183 * are in the data buffer.
184 */
185 struct hfi1_ib_header {
186 __be16 lrh[4];
187 union {
188 struct {
189 struct ib_grh grh;
190 struct hfi1_other_headers oth;
191 } l;
192 struct hfi1_other_headers oth;
193 } u;
194 } __packed;
195
196 struct ahg_ib_header {
197 struct sdma_engine *sde;
198 u32 ahgdesc[2];
199 u16 tx_flags;
200 u8 ahgcount;
201 u8 ahgidx;
202 struct hfi1_ib_header ibh;
203 };
204
205 struct hfi1_pio_header {
206 __le64 pbc;
207 struct hfi1_ib_header hdr;
208 } __packed;
209
210 /*
211 * used for force cacheline alignment for AHG
212 */
213 struct tx_pio_header {
214 struct hfi1_pio_header phdr;
215 } ____cacheline_aligned;
216
217 /*
218 * There is one struct hfi1_mcast for each multicast GID.
219 * All attached QPs are then stored as a list of
220 * struct hfi1_mcast_qp.
221 */
222 struct hfi1_mcast_qp {
223 struct list_head list;
224 struct hfi1_qp *qp;
225 };
226
227 struct hfi1_mcast {
228 struct rb_node rb_node;
229 union ib_gid mgid;
230 struct list_head qp_list;
231 wait_queue_head_t wait;
232 atomic_t refcount;
233 int n_attached;
234 };
235
236 /* Protection domain */
237 struct hfi1_pd {
238 struct ib_pd ibpd;
239 int user; /* non-zero if created from user space */
240 };
241
242 /* Address Handle */
243 struct hfi1_ah {
244 struct ib_ah ibah;
245 struct ib_ah_attr attr;
246 atomic_t refcount;
247 };
248
249 /*
250 * This structure is used by hfi1_mmap() to validate an offset
251 * when an mmap() request is made. The vm_area_struct then uses
252 * this as its vm_private_data.
253 */
254 struct hfi1_mmap_info {
255 struct list_head pending_mmaps;
256 struct ib_ucontext *context;
257 void *obj;
258 __u64 offset;
259 struct kref ref;
260 unsigned size;
261 };
262
263 /*
264 * This structure is used to contain the head pointer, tail pointer,
265 * and completion queue entries as a single memory allocation so
266 * it can be mmap'ed into user space.
267 */
268 struct hfi1_cq_wc {
269 u32 head; /* index of next entry to fill */
270 u32 tail; /* index of next ib_poll_cq() entry */
271 union {
272 /* these are actually size ibcq.cqe + 1 */
273 struct ib_uverbs_wc uqueue[0];
274 struct ib_wc kqueue[0];
275 };
276 };
277
278 /*
279 * The completion queue structure.
280 */
281 struct hfi1_cq {
282 struct ib_cq ibcq;
283 struct kthread_work comptask;
284 struct hfi1_devdata *dd;
285 spinlock_t lock; /* protect changes in this struct */
286 u8 notify;
287 u8 triggered;
288 struct hfi1_cq_wc *queue;
289 struct hfi1_mmap_info *ip;
290 };
291
292 /*
293 * A segment is a linear region of low physical memory.
294 * Used by the verbs layer.
295 */
296 struct hfi1_seg {
297 void *vaddr;
298 size_t length;
299 };
300
301 /* The number of hfi1_segs that fit in a page. */
302 #define HFI1_SEGSZ (PAGE_SIZE / sizeof(struct hfi1_seg))
303
304 struct hfi1_segarray {
305 struct hfi1_seg segs[HFI1_SEGSZ];
306 };
307
308 struct hfi1_mregion {
309 struct ib_pd *pd; /* shares refcnt of ibmr.pd */
310 u64 user_base; /* User's address for this region */
311 u64 iova; /* IB start address of this region */
312 size_t length;
313 u32 lkey;
314 u32 offset; /* offset (bytes) to start of region */
315 int access_flags;
316 u32 max_segs; /* number of hfi1_segs in all the arrays */
317 u32 mapsz; /* size of the map array */
318 u8 page_shift; /* 0 - non unform/non powerof2 sizes */
319 u8 lkey_published; /* in global table */
320 struct completion comp; /* complete when refcount goes to zero */
321 atomic_t refcount;
322 struct hfi1_segarray *map[0]; /* the segments */
323 };
324
325 /*
326 * These keep track of the copy progress within a memory region.
327 * Used by the verbs layer.
328 */
329 struct hfi1_sge {
330 struct hfi1_mregion *mr;
331 void *vaddr; /* kernel virtual address of segment */
332 u32 sge_length; /* length of the SGE */
333 u32 length; /* remaining length of the segment */
334 u16 m; /* current index: mr->map[m] */
335 u16 n; /* current index: mr->map[m]->segs[n] */
336 };
337
338 /* Memory region */
339 struct hfi1_mr {
340 struct ib_mr ibmr;
341 struct ib_umem *umem;
342 struct hfi1_mregion mr; /* must be last */
343 };
344
345 /*
346 * Send work request queue entry.
347 * The size of the sg_list is determined when the QP is created and stored
348 * in qp->s_max_sge.
349 */
350 struct hfi1_swqe {
351 union {
352 struct ib_send_wr wr; /* don't use wr.sg_list */
353 struct ib_rdma_wr rdma_wr;
354 struct ib_atomic_wr atomic_wr;
355 struct ib_ud_wr ud_wr;
356 };
357 u32 psn; /* first packet sequence number */
358 u32 lpsn; /* last packet sequence number */
359 u32 ssn; /* send sequence number */
360 u32 length; /* total length of data in sg_list */
361 struct hfi1_sge sg_list[0];
362 };
363
364 /*
365 * Receive work request queue entry.
366 * The size of the sg_list is determined when the QP (or SRQ) is created
367 * and stored in qp->r_rq.max_sge (or srq->rq.max_sge).
368 */
369 struct hfi1_rwqe {
370 u64 wr_id;
371 u8 num_sge;
372 struct ib_sge sg_list[0];
373 };
374
375 /*
376 * This structure is used to contain the head pointer, tail pointer,
377 * and receive work queue entries as a single memory allocation so
378 * it can be mmap'ed into user space.
379 * Note that the wq array elements are variable size so you can't
380 * just index into the array to get the N'th element;
381 * use get_rwqe_ptr() instead.
382 */
383 struct hfi1_rwq {
384 u32 head; /* new work requests posted to the head */
385 u32 tail; /* receives pull requests from here. */
386 struct hfi1_rwqe wq[0];
387 };
388
389 struct hfi1_rq {
390 struct hfi1_rwq *wq;
391 u32 size; /* size of RWQE array */
392 u8 max_sge;
393 /* protect changes in this struct */
394 spinlock_t lock ____cacheline_aligned_in_smp;
395 };
396
397 struct hfi1_srq {
398 struct ib_srq ibsrq;
399 struct hfi1_rq rq;
400 struct hfi1_mmap_info *ip;
401 /* send signal when number of RWQEs < limit */
402 u32 limit;
403 };
404
405 struct hfi1_sge_state {
406 struct hfi1_sge *sg_list; /* next SGE to be used if any */
407 struct hfi1_sge sge; /* progress state for the current SGE */
408 u32 total_len;
409 u8 num_sge;
410 };
411
412 /*
413 * This structure holds the information that the send tasklet needs
414 * to send a RDMA read response or atomic operation.
415 */
416 struct hfi1_ack_entry {
417 u8 opcode;
418 u8 sent;
419 u32 psn;
420 u32 lpsn;
421 union {
422 struct hfi1_sge rdma_sge;
423 u64 atomic_data;
424 };
425 };
426
427 /*
428 * Variables prefixed with s_ are for the requester (sender).
429 * Variables prefixed with r_ are for the responder (receiver).
430 * Variables prefixed with ack_ are for responder replies.
431 *
432 * Common variables are protected by both r_rq.lock and s_lock in that order
433 * which only happens in modify_qp() or changing the QP 'state'.
434 */
435 struct hfi1_qp {
436 struct ib_qp ibqp;
437 /* read mostly fields above and below */
438 struct ib_ah_attr remote_ah_attr;
439 struct ib_ah_attr alt_ah_attr;
440 struct hfi1_qp __rcu *next; /* link list for QPN hash table */
441 struct hfi1_swqe *s_wq; /* send work queue */
442 struct hfi1_mmap_info *ip;
443 struct ahg_ib_header *s_hdr; /* next packet header to send */
444 struct sdma_engine *s_sde; /* current sde */
445 /* sc for UC/RC QPs - based on ah for UD */
446 u8 s_sc;
447 unsigned long timeout_jiffies; /* computed from timeout */
448
449 enum ib_mtu path_mtu;
450 int srate_mbps; /* s_srate (below) converted to Mbit/s */
451 u32 remote_qpn;
452 u32 pmtu; /* decoded from path_mtu */
453 u32 qkey; /* QKEY for this QP (for UD or RD) */
454 u32 s_size; /* send work queue size */
455 u32 s_rnr_timeout; /* number of milliseconds for RNR timeout */
456 u32 s_ahgpsn; /* set to the psn in the copy of the header */
457
458 u8 state; /* QP state */
459 u8 allowed_ops; /* high order bits of allowed opcodes */
460 u8 qp_access_flags;
461 u8 alt_timeout; /* Alternate path timeout for this QP */
462 u8 timeout; /* Timeout for this QP */
463 u8 s_srate;
464 u8 s_mig_state;
465 u8 port_num;
466 u8 s_pkey_index; /* PKEY index to use */
467 u8 s_alt_pkey_index; /* Alternate path PKEY index to use */
468 u8 r_max_rd_atomic; /* max number of RDMA read/atomic to receive */
469 u8 s_max_rd_atomic; /* max number of RDMA read/atomic to send */
470 u8 s_retry_cnt; /* number of times to retry */
471 u8 s_rnr_retry_cnt;
472 u8 r_min_rnr_timer; /* retry timeout value for RNR NAKs */
473 u8 s_max_sge; /* size of s_wq->sg_list */
474 u8 s_draining;
475
476 /* start of read/write fields */
477 atomic_t refcount ____cacheline_aligned_in_smp;
478 wait_queue_head_t wait;
479
480
481 struct hfi1_ack_entry s_ack_queue[HFI1_MAX_RDMA_ATOMIC + 1]
482 ____cacheline_aligned_in_smp;
483 struct hfi1_sge_state s_rdma_read_sge;
484
485 spinlock_t r_lock ____cacheline_aligned_in_smp; /* used for APM */
486 unsigned long r_aflags;
487 u64 r_wr_id; /* ID for current receive WQE */
488 u32 r_ack_psn; /* PSN for next ACK or atomic ACK */
489 u32 r_len; /* total length of r_sge */
490 u32 r_rcv_len; /* receive data len processed */
491 u32 r_psn; /* expected rcv packet sequence number */
492 u32 r_msn; /* message sequence number */
493
494 u8 r_adefered; /* number of acks defered */
495 u8 r_state; /* opcode of last packet received */
496 u8 r_flags;
497 u8 r_head_ack_queue; /* index into s_ack_queue[] */
498
499 struct list_head rspwait; /* link for waiting to respond */
500
501 struct hfi1_sge_state r_sge; /* current receive data */
502 struct hfi1_rq r_rq; /* receive work queue */
503
504 spinlock_t s_lock ____cacheline_aligned_in_smp;
505 struct hfi1_sge_state *s_cur_sge;
506 u32 s_flags;
507 struct hfi1_swqe *s_wqe;
508 struct hfi1_sge_state s_sge; /* current send request data */
509 struct hfi1_mregion *s_rdma_mr;
510 u32 s_cur_size; /* size of send packet in bytes */
511 u32 s_len; /* total length of s_sge */
512 u32 s_rdma_read_len; /* total length of s_rdma_read_sge */
513 u32 s_next_psn; /* PSN for next request */
514 u32 s_last_psn; /* last response PSN processed */
515 u32 s_sending_psn; /* lowest PSN that is being sent */
516 u32 s_sending_hpsn; /* highest PSN that is being sent */
517 u32 s_psn; /* current packet sequence number */
518 u32 s_ack_rdma_psn; /* PSN for sending RDMA read responses */
519 u32 s_ack_psn; /* PSN for acking sends and RDMA writes */
520 u32 s_head; /* new entries added here */
521 u32 s_tail; /* next entry to process */
522 u32 s_cur; /* current work queue entry */
523 u32 s_acked; /* last un-ACK'ed entry */
524 u32 s_last; /* last completed entry */
525 u32 s_ssn; /* SSN of tail entry */
526 u32 s_lsn; /* limit sequence number (credit) */
527 u16 s_hdrwords; /* size of s_hdr in 32 bit words */
528 u16 s_rdma_ack_cnt;
529 s8 s_ahgidx;
530 u8 s_state; /* opcode of last packet sent */
531 u8 s_ack_state; /* opcode of packet to ACK */
532 u8 s_nak_state; /* non-zero if NAK is pending */
533 u8 r_nak_state; /* non-zero if NAK is pending */
534 u8 s_retry; /* requester retry counter */
535 u8 s_rnr_retry; /* requester RNR retry counter */
536 u8 s_num_rd_atomic; /* number of RDMA read/atomic pending */
537 u8 s_tail_ack_queue; /* index into s_ack_queue[] */
538
539 struct hfi1_sge_state s_ack_rdma_sge;
540 struct timer_list s_timer;
541
542 struct iowait s_iowait;
543
544 struct hfi1_sge r_sg_list[0] /* verified SGEs */
545 ____cacheline_aligned_in_smp;
546 };
547
548 /*
549 * This structure is used to hold commonly lookedup and computed values during
550 * the send engine progress.
551 */
552 struct hfi1_pkt_state {
553 struct hfi1_ibdev *dev;
554 struct hfi1_ibport *ibp;
555 struct hfi1_pportdata *ppd;
556 };
557
558 /*
559 * Atomic bit definitions for r_aflags.
560 */
561 #define HFI1_R_WRID_VALID 0
562 #define HFI1_R_REWIND_SGE 1
563
564 /*
565 * Bit definitions for r_flags.
566 */
567 #define HFI1_R_REUSE_SGE 0x01
568 #define HFI1_R_RDMAR_SEQ 0x02
569 /* defer ack until end of interrupt session */
570 #define HFI1_R_RSP_DEFERED_ACK 0x04
571 /* relay ack to send engine */
572 #define HFI1_R_RSP_SEND 0x08
573 #define HFI1_R_COMM_EST 0x10
574
575 /*
576 * Bit definitions for s_flags.
577 *
578 * HFI1_S_SIGNAL_REQ_WR - set if QP send WRs contain completion signaled
579 * HFI1_S_BUSY - send tasklet is processing the QP
580 * HFI1_S_TIMER - the RC retry timer is active
581 * HFI1_S_ACK_PENDING - an ACK is waiting to be sent after RDMA read/atomics
582 * HFI1_S_WAIT_FENCE - waiting for all prior RDMA read or atomic SWQEs
583 * before processing the next SWQE
584 * HFI1_S_WAIT_RDMAR - waiting for a RDMA read or atomic SWQE to complete
585 * before processing the next SWQE
586 * HFI1_S_WAIT_RNR - waiting for RNR timeout
587 * HFI1_S_WAIT_SSN_CREDIT - waiting for RC credits to process next SWQE
588 * HFI1_S_WAIT_DMA - waiting for send DMA queue to drain before generating
589 * next send completion entry not via send DMA
590 * HFI1_S_WAIT_PIO - waiting for a send buffer to be available
591 * HFI1_S_WAIT_TX - waiting for a struct verbs_txreq to be available
592 * HFI1_S_WAIT_DMA_DESC - waiting for DMA descriptors to be available
593 * HFI1_S_WAIT_KMEM - waiting for kernel memory to be available
594 * HFI1_S_WAIT_PSN - waiting for a packet to exit the send DMA queue
595 * HFI1_S_WAIT_ACK - waiting for an ACK packet before sending more requests
596 * HFI1_S_SEND_ONE - send one packet, request ACK, then wait for ACK
597 * HFI1_S_ECN - a BECN was queued to the send engine
598 */
599 #define HFI1_S_SIGNAL_REQ_WR 0x0001
600 #define HFI1_S_BUSY 0x0002
601 #define HFI1_S_TIMER 0x0004
602 #define HFI1_S_RESP_PENDING 0x0008
603 #define HFI1_S_ACK_PENDING 0x0010
604 #define HFI1_S_WAIT_FENCE 0x0020
605 #define HFI1_S_WAIT_RDMAR 0x0040
606 #define HFI1_S_WAIT_RNR 0x0080
607 #define HFI1_S_WAIT_SSN_CREDIT 0x0100
608 #define HFI1_S_WAIT_DMA 0x0200
609 #define HFI1_S_WAIT_PIO 0x0400
610 #define HFI1_S_WAIT_TX 0x0800
611 #define HFI1_S_WAIT_DMA_DESC 0x1000
612 #define HFI1_S_WAIT_KMEM 0x2000
613 #define HFI1_S_WAIT_PSN 0x4000
614 #define HFI1_S_WAIT_ACK 0x8000
615 #define HFI1_S_SEND_ONE 0x10000
616 #define HFI1_S_UNLIMITED_CREDIT 0x20000
617 #define HFI1_S_AHG_VALID 0x40000
618 #define HFI1_S_AHG_CLEAR 0x80000
619 #define HFI1_S_ECN 0x100000
620
621 /*
622 * Wait flags that would prevent any packet type from being sent.
623 */
624 #define HFI1_S_ANY_WAIT_IO (HFI1_S_WAIT_PIO | HFI1_S_WAIT_TX | \
625 HFI1_S_WAIT_DMA_DESC | HFI1_S_WAIT_KMEM)
626
627 /*
628 * Wait flags that would prevent send work requests from making progress.
629 */
630 #define HFI1_S_ANY_WAIT_SEND (HFI1_S_WAIT_FENCE | HFI1_S_WAIT_RDMAR | \
631 HFI1_S_WAIT_RNR | HFI1_S_WAIT_SSN_CREDIT | HFI1_S_WAIT_DMA | \
632 HFI1_S_WAIT_PSN | HFI1_S_WAIT_ACK)
633
634 #define HFI1_S_ANY_WAIT (HFI1_S_ANY_WAIT_IO | HFI1_S_ANY_WAIT_SEND)
635
636 #define HFI1_PSN_CREDIT 16
637
638 /*
639 * Since struct hfi1_swqe is not a fixed size, we can't simply index into
640 * struct hfi1_qp.s_wq. This function does the array index computation.
641 */
642 static inline struct hfi1_swqe *get_swqe_ptr(struct hfi1_qp *qp,
643 unsigned n)
644 {
645 return (struct hfi1_swqe *)((char *)qp->s_wq +
646 (sizeof(struct hfi1_swqe) +
647 qp->s_max_sge *
648 sizeof(struct hfi1_sge)) * n);
649 }
650
651 /*
652 * Since struct hfi1_rwqe is not a fixed size, we can't simply index into
653 * struct hfi1_rwq.wq. This function does the array index computation.
654 */
655 static inline struct hfi1_rwqe *get_rwqe_ptr(struct hfi1_rq *rq, unsigned n)
656 {
657 return (struct hfi1_rwqe *)
658 ((char *) rq->wq->wq +
659 (sizeof(struct hfi1_rwqe) +
660 rq->max_sge * sizeof(struct ib_sge)) * n);
661 }
662
663 #define MAX_LKEY_TABLE_BITS 23
664
665 struct hfi1_lkey_table {
666 spinlock_t lock; /* protect changes in this struct */
667 u32 next; /* next unused index (speeds search) */
668 u32 gen; /* generation count */
669 u32 max; /* size of the table */
670 struct hfi1_mregion __rcu **table;
671 };
672
673 struct hfi1_opcode_stats {
674 u64 n_packets; /* number of packets */
675 u64 n_bytes; /* total number of bytes */
676 };
677
678 struct hfi1_opcode_stats_perctx {
679 struct hfi1_opcode_stats stats[256];
680 };
681
682 static inline void inc_opstats(
683 u32 tlen,
684 struct hfi1_opcode_stats *stats)
685 {
686 #ifdef CONFIG_DEBUG_FS
687 stats->n_bytes += tlen;
688 stats->n_packets++;
689 #endif
690 }
691
692 struct hfi1_ibport {
693 struct hfi1_qp __rcu *qp[2];
694 struct ib_mad_agent *send_agent; /* agent for SMI (traps) */
695 struct hfi1_ah *sm_ah;
696 struct hfi1_ah *smi_ah;
697 struct rb_root mcast_tree;
698 spinlock_t lock; /* protect changes in this struct */
699
700 /* non-zero when timer is set */
701 unsigned long mkey_lease_timeout;
702 unsigned long trap_timeout;
703 __be64 gid_prefix; /* in network order */
704 __be64 mkey;
705 __be64 guids[HFI1_GUIDS_PER_PORT - 1]; /* writable GUIDs */
706 u64 tid; /* TID for traps */
707 u64 n_rc_resends;
708 u64 n_seq_naks;
709 u64 n_rdma_seq;
710 u64 n_rnr_naks;
711 u64 n_other_naks;
712 u64 n_loop_pkts;
713 u64 n_pkt_drops;
714 u64 n_vl15_dropped;
715 u64 n_rc_timeouts;
716 u64 n_dmawait;
717 u64 n_unaligned;
718 u64 n_rc_dupreq;
719 u64 n_rc_seqnak;
720
721 /* Hot-path per CPU counters to avoid cacheline trading to update */
722 u64 z_rc_acks;
723 u64 z_rc_qacks;
724 u64 z_rc_delayed_comp;
725 u64 __percpu *rc_acks;
726 u64 __percpu *rc_qacks;
727 u64 __percpu *rc_delayed_comp;
728
729 u32 port_cap_flags;
730 u32 pma_sample_start;
731 u32 pma_sample_interval;
732 __be16 pma_counter_select[5];
733 u16 pma_tag;
734 u16 pkey_violations;
735 u16 qkey_violations;
736 u16 mkey_violations;
737 u16 mkey_lease_period;
738 u16 sm_lid;
739 u16 repress_traps;
740 u8 sm_sl;
741 u8 mkeyprot;
742 u8 subnet_timeout;
743 u8 vl_high_limit;
744 /* the first 16 entries are sl_to_vl for !OPA */
745 u8 sl_to_sc[32];
746 u8 sc_to_sl[32];
747 };
748
749
750 struct hfi1_qp_ibdev;
751 struct hfi1_ibdev {
752 struct ib_device ibdev;
753 struct list_head pending_mmaps;
754 spinlock_t mmap_offset_lock; /* protect mmap_offset */
755 u32 mmap_offset;
756 struct hfi1_mregion __rcu *dma_mr;
757
758 struct hfi1_qp_ibdev *qp_dev;
759
760 /* QP numbers are shared by all IB ports */
761 struct hfi1_lkey_table lk_table;
762 /* protect wait lists */
763 seqlock_t iowait_lock;
764 struct list_head txwait; /* list for wait verbs_txreq */
765 struct list_head memwait; /* list for wait kernel memory */
766 struct list_head txreq_free;
767 struct kmem_cache *verbs_txreq_cache;
768 struct timer_list mem_timer;
769
770 /* other waiters */
771 spinlock_t pending_lock;
772
773 u64 n_piowait;
774 u64 n_txwait;
775 u64 n_kmem_wait;
776 u64 n_send_schedule;
777
778 u32 n_pds_allocated; /* number of PDs allocated for device */
779 spinlock_t n_pds_lock;
780 u32 n_ahs_allocated; /* number of AHs allocated for device */
781 spinlock_t n_ahs_lock;
782 u32 n_cqs_allocated; /* number of CQs allocated for device */
783 spinlock_t n_cqs_lock;
784 u32 n_qps_allocated; /* number of QPs allocated for device */
785 spinlock_t n_qps_lock;
786 u32 n_srqs_allocated; /* number of SRQs allocated for device */
787 spinlock_t n_srqs_lock;
788 u32 n_mcast_grps_allocated; /* number of mcast groups allocated */
789 spinlock_t n_mcast_grps_lock;
790 #ifdef CONFIG_DEBUG_FS
791 /* per HFI debugfs */
792 struct dentry *hfi1_ibdev_dbg;
793 /* per HFI symlinks to above */
794 struct dentry *hfi1_ibdev_link;
795 #endif
796 };
797
798 struct hfi1_verbs_counters {
799 u64 symbol_error_counter;
800 u64 link_error_recovery_counter;
801 u64 link_downed_counter;
802 u64 port_rcv_errors;
803 u64 port_rcv_remphys_errors;
804 u64 port_xmit_discards;
805 u64 port_xmit_data;
806 u64 port_rcv_data;
807 u64 port_xmit_packets;
808 u64 port_rcv_packets;
809 u32 local_link_integrity_errors;
810 u32 excessive_buffer_overrun_errors;
811 u32 vl15_dropped;
812 };
813
814 static inline struct hfi1_mr *to_imr(struct ib_mr *ibmr)
815 {
816 return container_of(ibmr, struct hfi1_mr, ibmr);
817 }
818
819 static inline struct hfi1_pd *to_ipd(struct ib_pd *ibpd)
820 {
821 return container_of(ibpd, struct hfi1_pd, ibpd);
822 }
823
824 static inline struct hfi1_ah *to_iah(struct ib_ah *ibah)
825 {
826 return container_of(ibah, struct hfi1_ah, ibah);
827 }
828
829 static inline struct hfi1_cq *to_icq(struct ib_cq *ibcq)
830 {
831 return container_of(ibcq, struct hfi1_cq, ibcq);
832 }
833
834 static inline struct hfi1_srq *to_isrq(struct ib_srq *ibsrq)
835 {
836 return container_of(ibsrq, struct hfi1_srq, ibsrq);
837 }
838
839 static inline struct hfi1_qp *to_iqp(struct ib_qp *ibqp)
840 {
841 return container_of(ibqp, struct hfi1_qp, ibqp);
842 }
843
844 static inline struct hfi1_ibdev *to_idev(struct ib_device *ibdev)
845 {
846 return container_of(ibdev, struct hfi1_ibdev, ibdev);
847 }
848
849 /*
850 * Send if not busy or waiting for I/O and either
851 * a RC response is pending or we can process send work requests.
852 */
853 static inline int hfi1_send_ok(struct hfi1_qp *qp)
854 {
855 return !(qp->s_flags & (HFI1_S_BUSY | HFI1_S_ANY_WAIT_IO)) &&
856 (qp->s_hdrwords || (qp->s_flags & HFI1_S_RESP_PENDING) ||
857 !(qp->s_flags & HFI1_S_ANY_WAIT_SEND));
858 }
859
860 /*
861 * This must be called with s_lock held.
862 */
863 void hfi1_bad_pqkey(struct hfi1_ibport *ibp, __be16 trap_num, u32 key, u32 sl,
864 u32 qp1, u32 qp2, u16 lid1, u16 lid2);
865 void hfi1_cap_mask_chg(struct hfi1_ibport *ibp);
866 void hfi1_sys_guid_chg(struct hfi1_ibport *ibp);
867 void hfi1_node_desc_chg(struct hfi1_ibport *ibp);
868 int hfi1_process_mad(struct ib_device *ibdev, int mad_flags, u8 port,
869 const struct ib_wc *in_wc, const struct ib_grh *in_grh,
870 const struct ib_mad_hdr *in_mad, size_t in_mad_size,
871 struct ib_mad_hdr *out_mad, size_t *out_mad_size,
872 u16 *out_mad_pkey_index);
873 int hfi1_create_agents(struct hfi1_ibdev *dev);
874 void hfi1_free_agents(struct hfi1_ibdev *dev);
875
876 /*
877 * The PSN_MASK and PSN_SHIFT allow for
878 * 1) comparing two PSNs
879 * 2) returning the PSN with any upper bits masked
880 * 3) returning the difference between to PSNs
881 *
882 * The number of significant bits in the PSN must
883 * necessarily be at least one bit less than
884 * the container holding the PSN.
885 */
886 #ifndef CONFIG_HFI1_VERBS_31BIT_PSN
887 #define PSN_MASK 0xFFFFFF
888 #define PSN_SHIFT 8
889 #else
890 #define PSN_MASK 0x7FFFFFFF
891 #define PSN_SHIFT 1
892 #endif
893 #define PSN_MODIFY_MASK 0xFFFFFF
894
895 /* Number of bits to pay attention to in the opcode for checking qp type */
896 #define OPCODE_QP_MASK 0xE0
897
898 /*
899 * Compare the lower 24 bits of the msn values.
900 * Returns an integer <, ==, or > than zero.
901 */
902 static inline int cmp_msn(u32 a, u32 b)
903 {
904 return (((int) a) - ((int) b)) << 8;
905 }
906
907 /*
908 * Compare two PSNs
909 * Returns an integer <, ==, or > than zero.
910 */
911 static inline int cmp_psn(u32 a, u32 b)
912 {
913 return (((int) a) - ((int) b)) << PSN_SHIFT;
914 }
915
916 /*
917 * Return masked PSN
918 */
919 static inline u32 mask_psn(u32 a)
920 {
921 return a & PSN_MASK;
922 }
923
924 /*
925 * Return delta between two PSNs
926 */
927 static inline u32 delta_psn(u32 a, u32 b)
928 {
929 return (((int)a - (int)b) << PSN_SHIFT) >> PSN_SHIFT;
930 }
931
932 struct hfi1_mcast *hfi1_mcast_find(struct hfi1_ibport *ibp, union ib_gid *mgid);
933
934 int hfi1_multicast_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid);
935
936 int hfi1_multicast_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid);
937
938 int hfi1_mcast_tree_empty(struct hfi1_ibport *ibp);
939
940 struct verbs_txreq;
941 void hfi1_put_txreq(struct verbs_txreq *tx);
942
943 int hfi1_verbs_send(struct hfi1_qp *qp, struct hfi1_pkt_state *ps);
944
945 void hfi1_copy_sge(struct hfi1_sge_state *ss, void *data, u32 length,
946 int release);
947
948 void hfi1_skip_sge(struct hfi1_sge_state *ss, u32 length, int release);
949
950 void hfi1_cnp_rcv(struct hfi1_packet *packet);
951
952 void hfi1_uc_rcv(struct hfi1_packet *packet);
953
954 void hfi1_rc_rcv(struct hfi1_packet *packet);
955
956 void hfi1_rc_hdrerr(
957 struct hfi1_ctxtdata *rcd,
958 struct hfi1_ib_header *hdr,
959 u32 rcv_flags,
960 struct hfi1_qp *qp);
961
962 u8 ah_to_sc(struct ib_device *ibdev, struct ib_ah_attr *ah_attr);
963
964 int hfi1_check_ah(struct ib_device *ibdev, struct ib_ah_attr *ah_attr);
965
966 struct ib_ah *hfi1_create_qp0_ah(struct hfi1_ibport *ibp, u16 dlid);
967
968 void hfi1_rc_rnr_retry(unsigned long arg);
969
970 void hfi1_rc_send_complete(struct hfi1_qp *qp, struct hfi1_ib_header *hdr);
971
972 void hfi1_rc_error(struct hfi1_qp *qp, enum ib_wc_status err);
973
974 void hfi1_ud_rcv(struct hfi1_packet *packet);
975
976 int hfi1_lookup_pkey_idx(struct hfi1_ibport *ibp, u16 pkey);
977
978 int hfi1_alloc_lkey(struct hfi1_mregion *mr, int dma_region);
979
980 void hfi1_free_lkey(struct hfi1_mregion *mr);
981
982 int hfi1_lkey_ok(struct hfi1_lkey_table *rkt, struct hfi1_pd *pd,
983 struct hfi1_sge *isge, struct ib_sge *sge, int acc);
984
985 int hfi1_rkey_ok(struct hfi1_qp *qp, struct hfi1_sge *sge,
986 u32 len, u64 vaddr, u32 rkey, int acc);
987
988 int hfi1_post_srq_receive(struct ib_srq *ibsrq, struct ib_recv_wr *wr,
989 struct ib_recv_wr **bad_wr);
990
991 struct ib_srq *hfi1_create_srq(struct ib_pd *ibpd,
992 struct ib_srq_init_attr *srq_init_attr,
993 struct ib_udata *udata);
994
995 int hfi1_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr,
996 enum ib_srq_attr_mask attr_mask,
997 struct ib_udata *udata);
998
999 int hfi1_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr);
1000
1001 int hfi1_destroy_srq(struct ib_srq *ibsrq);
1002
1003 int hfi1_cq_init(struct hfi1_devdata *dd);
1004
1005 void hfi1_cq_exit(struct hfi1_devdata *dd);
1006
1007 void hfi1_cq_enter(struct hfi1_cq *cq, struct ib_wc *entry, int sig);
1008
1009 int hfi1_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *entry);
1010
1011 struct ib_cq *hfi1_create_cq(
1012 struct ib_device *ibdev,
1013 const struct ib_cq_init_attr *attr,
1014 struct ib_ucontext *context,
1015 struct ib_udata *udata);
1016
1017 int hfi1_destroy_cq(struct ib_cq *ibcq);
1018
1019 int hfi1_req_notify_cq(
1020 struct ib_cq *ibcq,
1021 enum ib_cq_notify_flags notify_flags);
1022
1023 int hfi1_resize_cq(struct ib_cq *ibcq, int cqe, struct ib_udata *udata);
1024
1025 struct ib_mr *hfi1_get_dma_mr(struct ib_pd *pd, int acc);
1026
1027 struct ib_mr *hfi1_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
1028 u64 virt_addr, int mr_access_flags,
1029 struct ib_udata *udata);
1030
1031 int hfi1_dereg_mr(struct ib_mr *ibmr);
1032
1033 struct ib_mr *hfi1_alloc_mr(struct ib_pd *pd,
1034 enum ib_mr_type mr_type,
1035 u32 max_entries);
1036
1037 struct ib_fmr *hfi1_alloc_fmr(struct ib_pd *pd, int mr_access_flags,
1038 struct ib_fmr_attr *fmr_attr);
1039
1040 int hfi1_map_phys_fmr(struct ib_fmr *ibfmr, u64 *page_list,
1041 int list_len, u64 iova);
1042
1043 int hfi1_unmap_fmr(struct list_head *fmr_list);
1044
1045 int hfi1_dealloc_fmr(struct ib_fmr *ibfmr);
1046
1047 static inline void hfi1_get_mr(struct hfi1_mregion *mr)
1048 {
1049 atomic_inc(&mr->refcount);
1050 }
1051
1052 static inline void hfi1_put_mr(struct hfi1_mregion *mr)
1053 {
1054 if (unlikely(atomic_dec_and_test(&mr->refcount)))
1055 complete(&mr->comp);
1056 }
1057
1058 static inline void hfi1_put_ss(struct hfi1_sge_state *ss)
1059 {
1060 while (ss->num_sge) {
1061 hfi1_put_mr(ss->sge.mr);
1062 if (--ss->num_sge)
1063 ss->sge = *ss->sg_list++;
1064 }
1065 }
1066
1067 void hfi1_release_mmap_info(struct kref *ref);
1068
1069 struct hfi1_mmap_info *hfi1_create_mmap_info(struct hfi1_ibdev *dev, u32 size,
1070 struct ib_ucontext *context,
1071 void *obj);
1072
1073 void hfi1_update_mmap_info(struct hfi1_ibdev *dev, struct hfi1_mmap_info *ip,
1074 u32 size, void *obj);
1075
1076 int hfi1_mmap(struct ib_ucontext *context, struct vm_area_struct *vma);
1077
1078 int hfi1_get_rwqe(struct hfi1_qp *qp, int wr_id_only);
1079
1080 int hfi1_ruc_check_hdr(struct hfi1_ibport *ibp, struct hfi1_ib_header *hdr,
1081 int has_grh, struct hfi1_qp *qp, u32 bth0);
1082
1083 u32 hfi1_make_grh(struct hfi1_ibport *ibp, struct ib_grh *hdr,
1084 struct ib_global_route *grh, u32 hwords, u32 nwords);
1085
1086 void hfi1_make_ruc_header(struct hfi1_qp *qp, struct hfi1_other_headers *ohdr,
1087 u32 bth0, u32 bth2, int middle);
1088
1089 void hfi1_do_send(struct work_struct *work);
1090
1091 void hfi1_send_complete(struct hfi1_qp *qp, struct hfi1_swqe *wqe,
1092 enum ib_wc_status status);
1093
1094 void hfi1_send_rc_ack(struct hfi1_ctxtdata *, struct hfi1_qp *qp, int is_fecn);
1095
1096 int hfi1_make_rc_req(struct hfi1_qp *qp);
1097
1098 int hfi1_make_uc_req(struct hfi1_qp *qp);
1099
1100 int hfi1_make_ud_req(struct hfi1_qp *qp);
1101
1102 int hfi1_register_ib_device(struct hfi1_devdata *);
1103
1104 void hfi1_unregister_ib_device(struct hfi1_devdata *);
1105
1106 void hfi1_ib_rcv(struct hfi1_packet *packet);
1107
1108 unsigned hfi1_get_npkeys(struct hfi1_devdata *);
1109
1110 int hfi1_verbs_send_dma(struct hfi1_qp *qp, struct hfi1_pkt_state *ps,
1111 u64 pbc);
1112
1113 int hfi1_verbs_send_pio(struct hfi1_qp *qp, struct hfi1_pkt_state *ps,
1114 u64 pbc);
1115
1116 struct send_context *qp_to_send_context(struct hfi1_qp *qp, u8 sc5);
1117
1118 extern const enum ib_wc_opcode ib_hfi1_wc_opcode[];
1119
1120 extern const u8 hdr_len_by_opcode[];
1121
1122 extern const int ib_hfi1_state_ops[];
1123
1124 extern __be64 ib_hfi1_sys_image_guid; /* in network order */
1125
1126 extern unsigned int hfi1_lkey_table_size;
1127
1128 extern unsigned int hfi1_max_cqes;
1129
1130 extern unsigned int hfi1_max_cqs;
1131
1132 extern unsigned int hfi1_max_qp_wrs;
1133
1134 extern unsigned int hfi1_max_qps;
1135
1136 extern unsigned int hfi1_max_sges;
1137
1138 extern unsigned int hfi1_max_mcast_grps;
1139
1140 extern unsigned int hfi1_max_mcast_qp_attached;
1141
1142 extern unsigned int hfi1_max_srqs;
1143
1144 extern unsigned int hfi1_max_srq_sges;
1145
1146 extern unsigned int hfi1_max_srq_wrs;
1147
1148 extern const u32 ib_hfi1_rnr_table[];
1149
1150 extern struct ib_dma_mapping_ops hfi1_dma_mapping_ops;
1151
1152 #endif /* HFI1_VERBS_H */
This page took 0.082223 seconds and 5 git commands to generate.