1 #ifndef _HFI1_USER_SDMA_H
2 #define _HFI1_USER_SDMA_H
4 * Copyright(c) 2020 - Cornelis Networks, Inc.
5 * Copyright(c) 2015 - 2018 Intel Corporation.
7 * This file is provided under a dual BSD/GPLv2 license. When using or
8 * redistributing this file, you may do so under either license.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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
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.
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.
50 #include <linux/device.h>
51 #include <linux/wait.h>
55 #include "user_exp_rcv.h"
57 /* The maximum number of Data io vectors per message/request */
58 #define MAX_VECTORS_PER_REQ 8
60 * Maximum number of packet to send from each message/request
61 * before moving to the next one.
63 #define MAX_PKTS_PER_QUEUE 16
65 #define num_pages(x) (1 + ((((x) - 1) & PAGE_MASK) >> PAGE_SHIFT))
67 #define req_opcode(x) \
68 (((x) >> HFI1_SDMA_REQ_OPCODE_SHIFT) & HFI1_SDMA_REQ_OPCODE_MASK)
69 #define req_version(x) \
70 (((x) >> HFI1_SDMA_REQ_VERSION_SHIFT) & HFI1_SDMA_REQ_OPCODE_MASK)
71 #define req_iovcnt(x) \
72 (((x) >> HFI1_SDMA_REQ_IOVCNT_SHIFT) & HFI1_SDMA_REQ_IOVCNT_MASK)
74 /* Number of BTH.PSN bits used for sequence number in expected rcvs */
75 #define BTH_SEQ_MASK 0x7ffull
77 #define AHG_KDETH_INTR_SHIFT 12
78 #define AHG_KDETH_SH_SHIFT 13
79 #define AHG_KDETH_ARRAY_SIZE 9
81 #define PBC2LRH(x) ((((x) & 0xfff) << 2) - 4)
82 #define LRH2PBC(x) ((((x) >> 2) + 1) & 0xfff)
85 * Build an SDMA AHG header update descriptor and save it to an array.
86 * @arr - Array to save the descriptor to.
87 * @idx - Index of the array at which the descriptor will be saved.
88 * @array_size - Size of the array arr.
89 * @dw - Update index into the header in DWs.
91 * @width - Field width.
92 * @value - 16 bits of immediate data to write into the field.
93 * Returns -ERANGE if idx is invalid. If successful, returns the next index
94 * (idx + 1) of the array to be used for the next descriptor.
96 static inline int ahg_header_set(u32
*arr
, int idx
, size_t array_size
,
97 u8 dw
, u8 bit
, u8 width
, u16 value
)
99 if ((size_t)idx
>= array_size
)
101 arr
[idx
++] = sdma_build_ahg_descriptor(value
, dw
, bit
, width
);
105 /* Tx request flag bits */
106 #define TXREQ_FLAGS_REQ_ACK BIT(0) /* Set the ACK bit in the header */
107 #define TXREQ_FLAGS_REQ_DISABLE_SH BIT(1) /* Disable header suppression */
109 enum pkt_q_sdma_state
{
114 #define SDMA_IOWAIT_TIMEOUT 1000 /* in milliseconds */
116 #define SDMA_DBG(req, fmt, ...) \
117 hfi1_cdbg(SDMA, "[%u:%u:%u:%u] " fmt, (req)->pq->dd->unit, \
118 (req)->pq->ctxt, (req)->pq->subctxt, (req)->info.comp_idx, \
121 struct hfi1_user_sdma_pkt_q
{
127 struct hfi1_devdata
*dd
;
128 struct kmem_cache
*txreq_cache
;
129 struct user_sdma_request
*reqs
;
130 unsigned long *req_in_use
;
132 enum pkt_q_sdma_state state
;
133 wait_queue_head_t wait
;
134 unsigned long unpinned
;
135 struct mmu_rb_handler
*handler
;
139 struct hfi1_user_sdma_comp_q
{
141 struct hfi1_sdma_comp_entry
*comps
;
144 struct sdma_mmu_node
{
145 struct mmu_rb_node rb
;
146 struct hfi1_user_sdma_pkt_q
*pq
;
152 struct user_sdma_iovec
{
153 struct list_head list
;
155 /* number of pages in this vector */
157 /* array of pinned pages for this vector */
160 * offset into the virtual address space of the vector at
161 * which we last left off.
164 struct sdma_mmu_node
*node
;
167 /* evict operation argument */
169 u32 cleared
; /* count evicted so far */
170 u32 target
; /* target count to evict */
173 struct user_sdma_request
{
174 /* This is the original header from user space */
175 struct hfi1_pkt_header hdr
;
177 /* Read mostly fields */
178 struct hfi1_user_sdma_pkt_q
*pq ____cacheline_aligned_in_smp
;
179 struct hfi1_user_sdma_comp_q
*cq
;
181 * Pointer to the SDMA engine for this request.
182 * Since different request could be on different VLs,
183 * each request will need it's own engine pointer.
185 struct sdma_engine
*sde
;
186 struct sdma_req_info info
;
187 /* TID array values copied from the tid_iov vector */
189 /* total length of the data in the request */
191 /* number of elements copied to the tids array */
194 * We copy the iovs for this request (based on
195 * info.iovcnt). These are only the data vectors
200 /* Writeable fields shared with interrupt */
201 u16 seqcomp ____cacheline_aligned_in_smp
;
204 /* Send side fields */
205 struct list_head txps ____cacheline_aligned_in_smp
;
208 * KDETH.OFFSET (TID) field
209 * The offset can cover multiple packets, depending on the
210 * size of the TID entry.
214 * KDETH.Offset (Eager) field
215 * We need to remember the initial value so the headers
216 * can be updated properly.
220 /* TID index copied from the tid_iov vector */
222 /* progress index moving along the iovs array */
226 struct user_sdma_iovec iovs
[MAX_VECTORS_PER_REQ
];
227 } ____cacheline_aligned_in_smp
;
230 * A single txreq could span up to 3 physical pages when the MTU
231 * is sufficiently large (> 4K). Each of the IOV pointers also
232 * needs it's own set of flags so the vector has been handled
233 * independently of each other.
235 struct user_sdma_txreq
{
236 /* Packet header for the txreq */
237 struct hfi1_pkt_header hdr
;
238 struct sdma_txreq txreq
;
239 struct list_head list
;
240 struct user_sdma_request
*req
;
245 int hfi1_user_sdma_alloc_queues(struct hfi1_ctxtdata
*uctxt
,
246 struct hfi1_filedata
*fd
);
247 int hfi1_user_sdma_free_queues(struct hfi1_filedata
*fd
,
248 struct hfi1_ctxtdata
*uctxt
);
249 int hfi1_user_sdma_process_request(struct hfi1_filedata
*fd
,
250 struct iovec
*iovec
, unsigned long dim
,
251 unsigned long *count
);
253 static inline struct mm_struct
*mm_from_sdma_node(struct sdma_mmu_node
*node
)
255 return node
->rb
.handler
->mn
.mm
;
258 #endif /* _HFI1_USER_SDMA_H */