blob: 668c9bc19505e8638c0e1c465f61f558fbd72450 [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001/*
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07002 * Copyright(c) 2015-2017 Intel Corporation.
Mike Marciniszyn77241052015-07-30 15:17:43 -04003 *
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
6 *
7 * GPL LICENSE SUMMARY
8 *
Mike Marciniszyn77241052015-07-30 15:17:43 -04009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * BSD LICENSE
19 *
Mike Marciniszyn77241052015-07-30 15:17:43 -040020 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 *
46 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040047#include <linux/poll.h>
48#include <linux/cdev.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040049#include <linux/vmalloc.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040050#include <linux/io.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010051#include <linux/sched/mm.h>
Michael J. Ruhl8737ce92017-05-04 05:15:15 -070052#include <linux/bitmap.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040053
Jason Gunthorpee6bd18f2016-04-10 19:13:13 -060054#include <rdma/ib.h>
55
Mike Marciniszyn77241052015-07-30 15:17:43 -040056#include "hfi.h"
57#include "pio.h"
58#include "device.h"
59#include "common.h"
60#include "trace.h"
Harish Chegondi637f4602017-08-21 18:27:23 -070061#include "mmu_rb.h"
Mike Marciniszyn77241052015-07-30 15:17:43 -040062#include "user_sdma.h"
Mitko Haralanov701e4412015-10-30 18:58:43 -040063#include "user_exp_rcv.h"
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080064#include "aspm.h"
Mike Marciniszyn77241052015-07-30 15:17:43 -040065
66#undef pr_fmt
67#define pr_fmt(fmt) DRIVER_NAME ": " fmt
68
69#define SEND_CTXT_HALT_TIMEOUT 1000 /* msecs */
70
71/*
72 * File operation functions
73 */
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -070074static int hfi1_file_open(struct inode *inode, struct file *fp);
75static int hfi1_file_close(struct inode *inode, struct file *fp);
76static ssize_t hfi1_write_iter(struct kiocb *kiocb, struct iov_iter *from);
77static unsigned int hfi1_poll(struct file *fp, struct poll_table_struct *pt);
78static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma);
Mike Marciniszyn77241052015-07-30 15:17:43 -040079
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -070080static u64 kvirt_to_phys(void *addr);
Michael J. Ruhl5fbded42017-05-04 05:14:57 -070081static int assign_ctxt(struct hfi1_filedata *fd, struct hfi1_user_info *uinfo);
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -070082static void init_subctxts(struct hfi1_ctxtdata *uctxt,
83 const struct hfi1_user_info *uinfo);
Michael J. Ruhle87473b2017-07-29 08:43:32 -070084static int init_user_ctxt(struct hfi1_filedata *fd,
85 struct hfi1_ctxtdata *uctxt);
Michael J. Ruhl62239fc2017-05-04 05:15:21 -070086static void user_init(struct hfi1_ctxtdata *uctxt);
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -070087static int get_ctxt_info(struct hfi1_filedata *fd, void __user *ubase,
88 __u32 len);
89static int get_base_info(struct hfi1_filedata *fd, void __user *ubase,
90 __u32 len);
Michael J. Ruhle87473b2017-07-29 08:43:32 -070091static int setup_base_ctxt(struct hfi1_filedata *fd,
92 struct hfi1_ctxtdata *uctxt);
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -070093static int setup_subctxt(struct hfi1_ctxtdata *uctxt);
Michael J. Ruhl5fbded42017-05-04 05:14:57 -070094
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -070095static int find_sub_ctxt(struct hfi1_filedata *fd,
96 const struct hfi1_user_info *uinfo);
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -070097static int allocate_ctxt(struct hfi1_filedata *fd, struct hfi1_devdata *dd,
Michael J. Ruhle87473b2017-07-29 08:43:32 -070098 struct hfi1_user_info *uinfo,
99 struct hfi1_ctxtdata **cd);
Michael J. Ruhl42492012017-07-24 07:45:43 -0700100static void deallocate_ctxt(struct hfi1_ctxtdata *uctxt);
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -0700101static unsigned int poll_urgent(struct file *fp, struct poll_table_struct *pt);
102static unsigned int poll_next(struct file *fp, struct poll_table_struct *pt);
Michael J. Ruhl8737ce92017-05-04 05:15:15 -0700103static int user_event_ack(struct hfi1_ctxtdata *uctxt, u16 subctxt,
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -0700104 unsigned long events);
Michael J. Ruhl8737ce92017-05-04 05:15:15 -0700105static int set_ctxt_pkey(struct hfi1_ctxtdata *uctxt, u16 subctxt, u16 pkey);
106static int manage_rcvq(struct hfi1_ctxtdata *uctxt, u16 subctxt,
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -0700107 int start_stop);
108static int vma_fault(struct vm_fault *vmf);
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700109static long hfi1_file_ioctl(struct file *fp, unsigned int cmd,
110 unsigned long arg);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400111
112static const struct file_operations hfi1_file_ops = {
113 .owner = THIS_MODULE,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400114 .write_iter = hfi1_write_iter,
115 .open = hfi1_file_open,
116 .release = hfi1_file_close,
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700117 .unlocked_ioctl = hfi1_file_ioctl,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400118 .poll = hfi1_poll,
119 .mmap = hfi1_file_mmap,
120 .llseek = noop_llseek,
121};
122
Arvind Yadav733da3b2017-08-28 09:59:28 +0530123static const struct vm_operations_struct vm_ops = {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400124 .fault = vma_fault,
125};
126
127/*
128 * Types of memories mapped into user processes' space
129 */
130enum mmap_types {
131 PIO_BUFS = 1,
132 PIO_BUFS_SOP,
133 PIO_CRED,
134 RCV_HDRQ,
135 RCV_EGRBUF,
136 UREGS,
137 EVENTS,
138 STATUS,
139 RTAIL,
140 SUBCTXT_UREGS,
141 SUBCTXT_RCV_HDRQ,
142 SUBCTXT_EGRBUF,
143 SDMA_COMP
144};
145
146/*
147 * Masks and offsets defining the mmap tokens
148 */
149#define HFI1_MMAP_OFFSET_MASK 0xfffULL
150#define HFI1_MMAP_OFFSET_SHIFT 0
151#define HFI1_MMAP_SUBCTXT_MASK 0xfULL
152#define HFI1_MMAP_SUBCTXT_SHIFT 12
153#define HFI1_MMAP_CTXT_MASK 0xffULL
154#define HFI1_MMAP_CTXT_SHIFT 16
155#define HFI1_MMAP_TYPE_MASK 0xfULL
156#define HFI1_MMAP_TYPE_SHIFT 24
157#define HFI1_MMAP_MAGIC_MASK 0xffffffffULL
158#define HFI1_MMAP_MAGIC_SHIFT 32
159
160#define HFI1_MMAP_MAGIC 0xdabbad00
161
162#define HFI1_MMAP_TOKEN_SET(field, val) \
163 (((val) & HFI1_MMAP_##field##_MASK) << HFI1_MMAP_##field##_SHIFT)
164#define HFI1_MMAP_TOKEN_GET(field, token) \
165 (((token) >> HFI1_MMAP_##field##_SHIFT) & HFI1_MMAP_##field##_MASK)
166#define HFI1_MMAP_TOKEN(type, ctxt, subctxt, addr) \
167 (HFI1_MMAP_TOKEN_SET(MAGIC, HFI1_MMAP_MAGIC) | \
168 HFI1_MMAP_TOKEN_SET(TYPE, type) | \
169 HFI1_MMAP_TOKEN_SET(CTXT, ctxt) | \
170 HFI1_MMAP_TOKEN_SET(SUBCTXT, subctxt) | \
Geliang Tange260e402015-10-03 10:34:59 +0800171 HFI1_MMAP_TOKEN_SET(OFFSET, (offset_in_page(addr))))
Mike Marciniszyn77241052015-07-30 15:17:43 -0400172
Mike Marciniszyn77241052015-07-30 15:17:43 -0400173#define dbg(fmt, ...) \
174 pr_info(fmt, ##__VA_ARGS__)
175
Mike Marciniszyn77241052015-07-30 15:17:43 -0400176static inline int is_valid_mmap(u64 token)
177{
178 return (HFI1_MMAP_TOKEN_GET(MAGIC, token) == HFI1_MMAP_MAGIC);
179}
180
181static int hfi1_file_open(struct inode *inode, struct file *fp)
182{
Ira Weinyea3a0ee2016-07-28 12:27:35 -0400183 struct hfi1_filedata *fd;
Dennis Dalessandroe11ffbd2016-05-19 05:26:44 -0700184 struct hfi1_devdata *dd = container_of(inode->i_cdev,
185 struct hfi1_devdata,
186 user_cdev);
187
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -0700188 if (!((dd->flags & HFI1_PRESENT) && dd->kregbase1))
Michael J. Ruhl5fbded42017-05-04 05:14:57 -0700189 return -EINVAL;
190
Tadeusz Strukacd7c8f2016-10-25 08:57:55 -0700191 if (!atomic_inc_not_zero(&dd->user_refcount))
192 return -ENXIO;
193
Dennis Dalessandroe11ffbd2016-05-19 05:26:44 -0700194 /* Just take a ref now. Not all opens result in a context assign */
195 kobject_get(&dd->kobj);
196
Mike Marciniszyn77241052015-07-30 15:17:43 -0400197 /* The real work is performed later in assign_ctxt() */
Ira Weinyea3a0ee2016-07-28 12:27:35 -0400198
199 fd = kzalloc(sizeof(*fd), GFP_KERNEL);
200
Ira Weiny3faa3d92016-07-28 15:21:19 -0400201 if (fd) {
202 fd->rec_cpu_num = -1; /* no cpu affinity by default */
203 fd->mm = current->mm;
Vegard Nossumf1f10072017-02-27 14:30:07 -0800204 mmgrab(fd->mm);
Michael J. Ruhl5fbded42017-05-04 05:14:57 -0700205 fd->dd = dd;
Tadeusz Strukacd7c8f2016-10-25 08:57:55 -0700206 fp->private_data = fd;
207 } else {
208 fp->private_data = NULL;
209
210 if (atomic_dec_and_test(&dd->user_refcount))
211 complete(&dd->user_comp);
212
213 return -ENOMEM;
Ira Weiny3faa3d92016-07-28 15:21:19 -0400214 }
Ira Weinyea3a0ee2016-07-28 12:27:35 -0400215
Tadeusz Strukacd7c8f2016-10-25 08:57:55 -0700216 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400217}
218
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700219static long hfi1_file_ioctl(struct file *fp, unsigned int cmd,
220 unsigned long arg)
221{
222 struct hfi1_filedata *fd = fp->private_data;
223 struct hfi1_ctxtdata *uctxt = fd->uctxt;
224 struct hfi1_user_info uinfo;
225 struct hfi1_tid_info tinfo;
226 int ret = 0;
227 unsigned long addr;
228 int uval = 0;
229 unsigned long ul_uval = 0;
230 u16 uval16 = 0;
231
Dennis Dalessandro8a1882e2016-05-19 05:26:37 -0700232 hfi1_cdbg(IOCTL, "IOCTL recv: 0x%x", cmd);
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700233 if (cmd != HFI1_IOCTL_ASSIGN_CTXT &&
234 cmd != HFI1_IOCTL_GET_VERS &&
235 !uctxt)
236 return -EINVAL;
237
238 switch (cmd) {
239 case HFI1_IOCTL_ASSIGN_CTXT:
Ira Weinyca2f30a2016-06-09 07:51:33 -0700240 if (uctxt)
241 return -EINVAL;
242
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700243 if (copy_from_user(&uinfo,
244 (struct hfi1_user_info __user *)arg,
245 sizeof(uinfo)))
246 return -EFAULT;
247
Michael J. Ruhl5fbded42017-05-04 05:14:57 -0700248 ret = assign_ctxt(fd, &uinfo);
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700249 break;
250 case HFI1_IOCTL_CTXT_INFO:
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -0700251 ret = get_ctxt_info(fd, (void __user *)(unsigned long)arg,
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700252 sizeof(struct hfi1_ctxt_info));
253 break;
254 case HFI1_IOCTL_USER_INFO:
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -0700255 ret = get_base_info(fd, (void __user *)(unsigned long)arg,
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700256 sizeof(struct hfi1_base_info));
257 break;
258 case HFI1_IOCTL_CREDIT_UPD:
Markus Elfringf7ca5352016-07-23 08:30:52 +0200259 if (uctxt)
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700260 sc_return_credits(uctxt->sc);
261 break;
262
263 case HFI1_IOCTL_TID_UPDATE:
264 if (copy_from_user(&tinfo,
265 (struct hfi11_tid_info __user *)arg,
266 sizeof(tinfo)))
267 return -EFAULT;
268
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -0700269 ret = hfi1_user_exp_rcv_setup(fd, &tinfo);
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700270 if (!ret) {
271 /*
272 * Copy the number of tidlist entries we used
273 * and the length of the buffer we registered.
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700274 */
275 addr = arg + offsetof(struct hfi1_tid_info, tidcnt);
276 if (copy_to_user((void __user *)addr, &tinfo.tidcnt,
Michael J. Ruhlf13a6e52017-07-24 07:46:42 -0700277 sizeof(tinfo.tidcnt)))
278 return -EFAULT;
279
280 addr = arg + offsetof(struct hfi1_tid_info, length);
281 if (copy_to_user((void __user *)addr, &tinfo.length,
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700282 sizeof(tinfo.length)))
283 ret = -EFAULT;
284 }
285 break;
286
287 case HFI1_IOCTL_TID_FREE:
288 if (copy_from_user(&tinfo,
289 (struct hfi11_tid_info __user *)arg,
290 sizeof(tinfo)))
291 return -EFAULT;
292
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -0700293 ret = hfi1_user_exp_rcv_clear(fd, &tinfo);
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700294 if (ret)
295 break;
296 addr = arg + offsetof(struct hfi1_tid_info, tidcnt);
297 if (copy_to_user((void __user *)addr, &tinfo.tidcnt,
298 sizeof(tinfo.tidcnt)))
299 ret = -EFAULT;
300 break;
301
302 case HFI1_IOCTL_TID_INVAL_READ:
303 if (copy_from_user(&tinfo,
304 (struct hfi11_tid_info __user *)arg,
305 sizeof(tinfo)))
306 return -EFAULT;
307
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -0700308 ret = hfi1_user_exp_rcv_invalid(fd, &tinfo);
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700309 if (ret)
310 break;
311 addr = arg + offsetof(struct hfi1_tid_info, tidcnt);
312 if (copy_to_user((void __user *)addr, &tinfo.tidcnt,
313 sizeof(tinfo.tidcnt)))
314 ret = -EFAULT;
315 break;
316
317 case HFI1_IOCTL_RECV_CTRL:
318 ret = get_user(uval, (int __user *)arg);
319 if (ret != 0)
320 return -EFAULT;
321 ret = manage_rcvq(uctxt, fd->subctxt, uval);
322 break;
323
324 case HFI1_IOCTL_POLL_TYPE:
325 ret = get_user(uval, (int __user *)arg);
326 if (ret != 0)
327 return -EFAULT;
328 uctxt->poll_type = (typeof(uctxt->poll_type))uval;
329 break;
330
331 case HFI1_IOCTL_ACK_EVENT:
332 ret = get_user(ul_uval, (unsigned long __user *)arg);
333 if (ret != 0)
334 return -EFAULT;
335 ret = user_event_ack(uctxt, fd->subctxt, ul_uval);
336 break;
337
338 case HFI1_IOCTL_SET_PKEY:
339 ret = get_user(uval16, (u16 __user *)arg);
340 if (ret != 0)
341 return -EFAULT;
342 if (HFI1_CAP_IS_USET(PKEY_CHECK))
343 ret = set_ctxt_pkey(uctxt, fd->subctxt, uval16);
344 else
345 return -EPERM;
346 break;
347
348 case HFI1_IOCTL_CTXT_RESET: {
349 struct send_context *sc;
350 struct hfi1_devdata *dd;
351
352 if (!uctxt || !uctxt->dd || !uctxt->sc)
353 return -EINVAL;
354
355 /*
356 * There is no protection here. User level has to
357 * guarantee that no one will be writing to the send
358 * context while it is being re-initialized.
359 * If user level breaks that guarantee, it will break
360 * it's own context and no one else's.
361 */
362 dd = uctxt->dd;
363 sc = uctxt->sc;
364 /*
365 * Wait until the interrupt handler has marked the
366 * context as halted or frozen. Report error if we time
367 * out.
368 */
369 wait_event_interruptible_timeout(
370 sc->halt_wait, (sc->flags & SCF_HALTED),
371 msecs_to_jiffies(SEND_CTXT_HALT_TIMEOUT));
372 if (!(sc->flags & SCF_HALTED))
373 return -ENOLCK;
374
375 /*
376 * If the send context was halted due to a Freeze,
377 * wait until the device has been "unfrozen" before
378 * resetting the context.
379 */
380 if (sc->flags & SCF_FROZEN) {
381 wait_event_interruptible_timeout(
382 dd->event_queue,
383 !(ACCESS_ONCE(dd->flags) & HFI1_FROZEN),
384 msecs_to_jiffies(SEND_CTXT_HALT_TIMEOUT));
385 if (dd->flags & HFI1_FROZEN)
386 return -ENOLCK;
387
388 if (dd->flags & HFI1_FORCED_FREEZE)
389 /*
390 * Don't allow context reset if we are into
391 * forced freeze
392 */
393 return -ENODEV;
394
395 sc_disable(sc);
396 ret = sc_enable(sc);
Michael J. Ruhl22505632017-07-24 07:46:06 -0700397 hfi1_rcvctrl(dd, HFI1_RCVCTRL_CTXT_ENB, uctxt);
Dennis Dalessandro8d970cf2016-05-19 05:26:24 -0700398 } else {
399 ret = sc_restart(sc);
400 }
401 if (!ret)
402 sc_return_credits(sc);
403 break;
404 }
405
406 case HFI1_IOCTL_GET_VERS:
407 uval = HFI1_USER_SWVERSION;
408 if (put_user(uval, (int __user *)arg))
409 return -EFAULT;
410 break;
411
412 default:
413 return -EINVAL;
414 }
415
416 return ret;
417}
418
Mike Marciniszyn77241052015-07-30 15:17:43 -0400419static ssize_t hfi1_write_iter(struct kiocb *kiocb, struct iov_iter *from)
420{
Ira Weiny9e10af42015-10-30 18:58:40 -0400421 struct hfi1_filedata *fd = kiocb->ki_filp->private_data;
422 struct hfi1_user_sdma_pkt_q *pq = fd->pq;
423 struct hfi1_user_sdma_comp_q *cq = fd->cq;
Ira Weiny0904f322016-07-01 16:00:55 -0700424 int done = 0, reqs = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400425 unsigned long dim = from->nr_segs;
426
Ira Weiny0904f322016-07-01 16:00:55 -0700427 if (!cq || !pq)
428 return -EIO;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400429
Ira Weiny0904f322016-07-01 16:00:55 -0700430 if (!iter_is_iovec(from) || !dim)
431 return -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400432
Michael J. Ruhl34ab4de2017-08-28 11:23:27 -0700433 trace_hfi1_sdma_request(fd->dd, fd->uctxt->ctxt, fd->subctxt, dim);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400434
Ira Weiny0904f322016-07-01 16:00:55 -0700435 if (atomic_read(&pq->n_reqs) == pq->n_max_reqs)
436 return -ENOSPC;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400437
438 while (dim) {
Ira Weiny0904f322016-07-01 16:00:55 -0700439 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400440 unsigned long count = 0;
441
442 ret = hfi1_user_sdma_process_request(
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -0700443 fd, (struct iovec *)(from->iov + done),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400444 dim, &count);
Ira Weiny0904f322016-07-01 16:00:55 -0700445 if (ret) {
446 reqs = ret;
447 break;
448 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400449 dim -= count;
450 done += count;
451 reqs++;
452 }
Ira Weiny0904f322016-07-01 16:00:55 -0700453
454 return reqs;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400455}
456
457static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma)
458{
Ira Weiny9e10af42015-10-30 18:58:40 -0400459 struct hfi1_filedata *fd = fp->private_data;
460 struct hfi1_ctxtdata *uctxt = fd->uctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400461 struct hfi1_devdata *dd;
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700462 unsigned long flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400463 u64 token = vma->vm_pgoff << PAGE_SHIFT,
464 memaddr = 0;
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700465 void *memvirt = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400466 u8 subctxt, mapio = 0, vmf = 0, type;
467 ssize_t memlen = 0;
468 int ret = 0;
469 u16 ctxt;
470
Mike Marciniszyn77241052015-07-30 15:17:43 -0400471 if (!is_valid_mmap(token) || !uctxt ||
472 !(vma->vm_flags & VM_SHARED)) {
473 ret = -EINVAL;
474 goto done;
475 }
476 dd = uctxt->dd;
477 ctxt = HFI1_MMAP_TOKEN_GET(CTXT, token);
478 subctxt = HFI1_MMAP_TOKEN_GET(SUBCTXT, token);
479 type = HFI1_MMAP_TOKEN_GET(TYPE, token);
Ira Weiny9e10af42015-10-30 18:58:40 -0400480 if (ctxt != uctxt->ctxt || subctxt != fd->subctxt) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400481 ret = -EINVAL;
482 goto done;
483 }
484
485 flags = vma->vm_flags;
486
487 switch (type) {
488 case PIO_BUFS:
489 case PIO_BUFS_SOP:
490 memaddr = ((dd->physaddr + TXE_PIO_SEND) +
491 /* chip pio base */
Amitoj Kaur Chawlad32cf442015-10-16 22:09:08 +0530492 (uctxt->sc->hw_context * BIT(16))) +
Mike Marciniszyn77241052015-07-30 15:17:43 -0400493 /* 64K PIO space / ctxt */
494 (type == PIO_BUFS_SOP ?
495 (TXE_PIO_SIZE / 2) : 0); /* sop? */
496 /*
497 * Map only the amount allocated to the context, not the
498 * entire available context's PIO space.
499 */
Amitoj Kaur Chawla437b29d2016-03-04 22:45:00 +0530500 memlen = PAGE_ALIGN(uctxt->sc->credits * PIO_BLOCK_SIZE);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400501 flags &= ~VM_MAYREAD;
502 flags |= VM_DONTCOPY | VM_DONTEXPAND;
503 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
504 mapio = 1;
505 break;
506 case PIO_CRED:
507 if (flags & VM_WRITE) {
508 ret = -EPERM;
509 goto done;
510 }
511 /*
512 * The credit return location for this context could be on the
513 * second or third page allocated for credit returns (if number
514 * of enabled contexts > 64 and 128 respectively).
515 */
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700516 memvirt = dd->cr_base[uctxt->numa_id].va;
517 memaddr = virt_to_phys(memvirt) +
Mike Marciniszyn77241052015-07-30 15:17:43 -0400518 (((u64)uctxt->sc->hw_free -
519 (u64)dd->cr_base[uctxt->numa_id].va) & PAGE_MASK);
520 memlen = PAGE_SIZE;
521 flags &= ~VM_MAYWRITE;
522 flags |= VM_DONTCOPY | VM_DONTEXPAND;
523 /*
524 * The driver has already allocated memory for credit
525 * returns and programmed it into the chip. Has that
526 * memory been flagged as non-cached?
527 */
528 /* vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); */
529 mapio = 1;
530 break;
531 case RCV_HDRQ:
Mike Marciniszyn77241052015-07-30 15:17:43 -0400532 memlen = uctxt->rcvhdrq_size;
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700533 memvirt = uctxt->rcvhdrq;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400534 break;
535 case RCV_EGRBUF: {
536 unsigned long addr;
537 int i;
538 /*
539 * The RcvEgr buffer need to be handled differently
540 * as multiple non-contiguous pages need to be mapped
541 * into the user process.
542 */
543 memlen = uctxt->egrbufs.size;
544 if ((vma->vm_end - vma->vm_start) != memlen) {
545 dd_dev_err(dd, "Eager buffer map size invalid (%lu != %lu)\n",
546 (vma->vm_end - vma->vm_start), memlen);
547 ret = -EINVAL;
548 goto done;
549 }
550 if (vma->vm_flags & VM_WRITE) {
551 ret = -EPERM;
552 goto done;
553 }
554 vma->vm_flags &= ~VM_MAYWRITE;
555 addr = vma->vm_start;
556 for (i = 0 ; i < uctxt->egrbufs.numbufs; i++) {
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700557 memlen = uctxt->egrbufs.buffers[i].len;
558 memvirt = uctxt->egrbufs.buffers[i].addr;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400559 ret = remap_pfn_range(
560 vma, addr,
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700561 /*
562 * virt_to_pfn() does the same, but
563 * it's not available on x86_64
564 * when CONFIG_MMU is enabled.
565 */
566 PFN_DOWN(__pa(memvirt)),
567 memlen,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400568 vma->vm_page_prot);
569 if (ret < 0)
570 goto done;
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700571 addr += memlen;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400572 }
573 ret = 0;
574 goto done;
575 }
576 case UREGS:
577 /*
578 * Map only the page that contains this context's user
579 * registers.
580 */
581 memaddr = (unsigned long)
582 (dd->physaddr + RXE_PER_CONTEXT_USER)
583 + (uctxt->ctxt * RXE_PER_CONTEXT_SIZE);
584 /*
585 * TidFlow table is on the same page as the rest of the
586 * user registers.
587 */
588 memlen = PAGE_SIZE;
589 flags |= VM_DONTCOPY | VM_DONTEXPAND;
590 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
591 mapio = 1;
592 break;
593 case EVENTS:
594 /*
595 * Use the page where this context's flags are. User level
596 * knows where it's own bitmap is within the page.
597 */
Michael J. Ruhl21e5acc2017-09-26 07:00:56 -0700598 memaddr = (unsigned long)
599 (dd->events + uctxt_offset(uctxt)) & PAGE_MASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400600 memlen = PAGE_SIZE;
601 /*
602 * v3.7 removes VM_RESERVED but the effect is kept by
603 * using VM_IO.
604 */
605 flags |= VM_IO | VM_DONTEXPAND;
606 vmf = 1;
607 break;
608 case STATUS:
Ira Weiny12220262017-04-09 10:17:24 -0700609 if (flags & (unsigned long)(VM_WRITE | VM_EXEC)) {
610 ret = -EPERM;
611 goto done;
612 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400613 memaddr = kvirt_to_phys((void *)dd->status);
614 memlen = PAGE_SIZE;
615 flags |= VM_IO | VM_DONTEXPAND;
616 break;
617 case RTAIL:
618 if (!HFI1_CAP_IS_USET(DMA_RTAIL)) {
619 /*
620 * If the memory allocation failed, the context alloc
621 * also would have failed, so we would never get here
622 */
623 ret = -EINVAL;
624 goto done;
625 }
626 if (flags & VM_WRITE) {
627 ret = -EPERM;
628 goto done;
629 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400630 memlen = PAGE_SIZE;
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700631 memvirt = (void *)uctxt->rcvhdrtail_kvaddr;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400632 flags &= ~VM_MAYWRITE;
633 break;
634 case SUBCTXT_UREGS:
635 memaddr = (u64)uctxt->subctxt_uregbase;
636 memlen = PAGE_SIZE;
637 flags |= VM_IO | VM_DONTEXPAND;
638 vmf = 1;
639 break;
640 case SUBCTXT_RCV_HDRQ:
641 memaddr = (u64)uctxt->subctxt_rcvhdr_base;
642 memlen = uctxt->rcvhdrq_size * uctxt->subctxt_cnt;
643 flags |= VM_IO | VM_DONTEXPAND;
644 vmf = 1;
645 break;
646 case SUBCTXT_EGRBUF:
647 memaddr = (u64)uctxt->subctxt_rcvegrbuf;
648 memlen = uctxt->egrbufs.size * uctxt->subctxt_cnt;
649 flags |= VM_IO | VM_DONTEXPAND;
650 flags &= ~VM_MAYWRITE;
651 vmf = 1;
652 break;
653 case SDMA_COMP: {
Ira Weiny9e10af42015-10-30 18:58:40 -0400654 struct hfi1_user_sdma_comp_q *cq = fd->cq;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400655
Ira Weiny9e10af42015-10-30 18:58:40 -0400656 if (!cq) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400657 ret = -EFAULT;
658 goto done;
659 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400660 memaddr = (u64)cq->comps;
Amitoj Kaur Chawla437b29d2016-03-04 22:45:00 +0530661 memlen = PAGE_ALIGN(sizeof(*cq->comps) * cq->nentries);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400662 flags |= VM_IO | VM_DONTEXPAND;
663 vmf = 1;
664 break;
665 }
666 default:
667 ret = -EINVAL;
668 break;
669 }
670
671 if ((vma->vm_end - vma->vm_start) != memlen) {
672 hfi1_cdbg(PROC, "%u:%u Memory size mismatch %lu:%lu",
Ira Weiny9e10af42015-10-30 18:58:40 -0400673 uctxt->ctxt, fd->subctxt,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400674 (vma->vm_end - vma->vm_start), memlen);
675 ret = -EINVAL;
676 goto done;
677 }
678
679 vma->vm_flags = flags;
Sebastian Sanchez6c63e422015-11-06 20:06:56 -0500680 hfi1_cdbg(PROC,
681 "%u:%u type:%u io/vf:%d/%d, addr:0x%llx, len:%lu(%lu), flags:0x%lx\n",
682 ctxt, subctxt, type, mapio, vmf, memaddr, memlen,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400683 vma->vm_end - vma->vm_start, vma->vm_flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400684 if (vmf) {
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700685 vma->vm_pgoff = PFN_DOWN(memaddr);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400686 vma->vm_ops = &vm_ops;
687 ret = 0;
688 } else if (mapio) {
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700689 ret = io_remap_pfn_range(vma, vma->vm_start,
690 PFN_DOWN(memaddr),
691 memlen,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400692 vma->vm_page_prot);
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700693 } else if (memvirt) {
694 ret = remap_pfn_range(vma, vma->vm_start,
695 PFN_DOWN(__pa(memvirt)),
696 memlen,
697 vma->vm_page_prot);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400698 } else {
Tymoteusz Kielan60368182016-09-06 04:35:54 -0700699 ret = remap_pfn_range(vma, vma->vm_start,
700 PFN_DOWN(memaddr),
701 memlen,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400702 vma->vm_page_prot);
703 }
704done:
705 return ret;
706}
707
708/*
709 * Local (non-chip) user memory is not mapped right away but as it is
710 * accessed by the user-level code.
711 */
Dave Jiang11bac802017-02-24 14:56:41 -0800712static int vma_fault(struct vm_fault *vmf)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400713{
714 struct page *page;
715
716 page = vmalloc_to_page((void *)(vmf->pgoff << PAGE_SHIFT));
717 if (!page)
718 return VM_FAULT_SIGBUS;
719
720 get_page(page);
721 vmf->page = page;
722
723 return 0;
724}
725
726static unsigned int hfi1_poll(struct file *fp, struct poll_table_struct *pt)
727{
728 struct hfi1_ctxtdata *uctxt;
729 unsigned pollflag;
730
Ira Weiny9e10af42015-10-30 18:58:40 -0400731 uctxt = ((struct hfi1_filedata *)fp->private_data)->uctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400732 if (!uctxt)
733 pollflag = POLLERR;
734 else if (uctxt->poll_type == HFI1_POLL_TYPE_URGENT)
735 pollflag = poll_urgent(fp, pt);
736 else if (uctxt->poll_type == HFI1_POLL_TYPE_ANYRCV)
737 pollflag = poll_next(fp, pt);
738 else /* invalid */
739 pollflag = POLLERR;
740
741 return pollflag;
742}
743
744static int hfi1_file_close(struct inode *inode, struct file *fp)
745{
746 struct hfi1_filedata *fdata = fp->private_data;
747 struct hfi1_ctxtdata *uctxt = fdata->uctxt;
Dennis Dalessandroe11ffbd2016-05-19 05:26:44 -0700748 struct hfi1_devdata *dd = container_of(inode->i_cdev,
749 struct hfi1_devdata,
750 user_cdev);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400751 unsigned long flags, *ev;
752
753 fp->private_data = NULL;
754
755 if (!uctxt)
756 goto done;
757
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700758 hfi1_cdbg(PROC, "closing ctxt %u:%u", uctxt->ctxt, fdata->subctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400759
760 flush_wc();
761 /* drain user sdma queue */
Michael J. Ruhle87473b2017-07-29 08:43:32 -0700762 hfi1_user_sdma_free_queues(fdata, uctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400763
Mitko Haralanov957558c2016-02-03 14:33:40 -0800764 /* release the cpu */
Sebastian Sanchezb094a362016-07-25 07:54:57 -0700765 hfi1_put_proc_affinity(fdata->rec_cpu_num);
Mitko Haralanov957558c2016-02-03 14:33:40 -0800766
Michael J. Ruhl224d71f2017-05-04 05:14:34 -0700767 /* clean up rcv side */
768 hfi1_user_exp_rcv_free(fdata);
769
Mike Marciniszyn77241052015-07-30 15:17:43 -0400770 /*
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700771 * fdata->uctxt is used in the above cleanup. It is not ready to be
772 * removed until here.
773 */
774 fdata->uctxt = NULL;
775 hfi1_rcd_put(uctxt);
776
777 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -0400778 * Clear any left over, unhandled events so the next process that
779 * gets this context doesn't get confused.
780 */
Michael J. Ruhl21e5acc2017-09-26 07:00:56 -0700781 ev = dd->events + uctxt_offset(uctxt) + fdata->subctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400782 *ev = 0;
783
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700784 spin_lock_irqsave(&dd->uctxt_lock, flags);
Michael J. Ruhl8737ce92017-05-04 05:15:15 -0700785 __clear_bit(fdata->subctxt, uctxt->in_use_ctxts);
786 if (!bitmap_empty(uctxt->in_use_ctxts, HFI1_MAX_SHARED_CTXTS)) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700787 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400788 goto done;
789 }
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700790 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400791
Mike Marciniszyn77241052015-07-30 15:17:43 -0400792 /*
793 * Disable receive context and interrupt available, reset all
794 * RcvCtxtCtrl bits to default values.
795 */
796 hfi1_rcvctrl(dd, HFI1_RCVCTRL_CTXT_DIS |
797 HFI1_RCVCTRL_TIDFLOW_DIS |
798 HFI1_RCVCTRL_INTRAVAIL_DIS |
Mitko Haralanov566c1572016-02-03 14:32:49 -0800799 HFI1_RCVCTRL_TAILUPD_DIS |
Mike Marciniszyn77241052015-07-30 15:17:43 -0400800 HFI1_RCVCTRL_ONE_PKT_EGR_DIS |
801 HFI1_RCVCTRL_NO_RHQ_DROP_DIS |
Michael J. Ruhl22505632017-07-24 07:46:06 -0700802 HFI1_RCVCTRL_NO_EGR_DROP_DIS, uctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400803 /* Clear the context's J_KEY */
Michael J. Ruhl17573972017-07-24 07:46:01 -0700804 hfi1_clear_ctxt_jkey(dd, uctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400805 /*
Michael J. Ruhlf683c802017-06-09 16:00:19 -0700806 * If a send context is allocated, reset context integrity
807 * checks to default and disable the send context.
Mike Marciniszyn77241052015-07-30 15:17:43 -0400808 */
Michael J. Ruhlf683c802017-06-09 16:00:19 -0700809 if (uctxt->sc) {
810 set_pio_integrity(uctxt->sc);
811 sc_disable(uctxt->sc);
812 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400813
Mike Marciniszyn9c1a99c32017-06-09 15:59:40 -0700814 hfi1_free_ctxt_rcv_groups(uctxt);
Michael J. Ruhl637a9a72017-05-04 05:15:03 -0700815 hfi1_clear_ctxt_pkey(dd, uctxt);
Mitko Haralanov94158442016-04-20 06:05:36 -0700816
Mike Marciniszyn77241052015-07-30 15:17:43 -0400817 uctxt->event_flags = 0;
Michael J. Ruhl42492012017-07-24 07:45:43 -0700818
819 deallocate_ctxt(uctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400820done:
Ira Weinye0cf75d2016-08-16 13:27:03 -0700821 mmdrop(fdata->mm);
Dennis Dalessandroe11ffbd2016-05-19 05:26:44 -0700822 kobject_put(&dd->kobj);
Tadeusz Strukacd7c8f2016-10-25 08:57:55 -0700823
824 if (atomic_dec_and_test(&dd->user_refcount))
825 complete(&dd->user_comp);
826
Mike Marciniszyn77241052015-07-30 15:17:43 -0400827 kfree(fdata);
828 return 0;
829}
830
831/*
832 * Convert kernel *virtual* addresses to physical addresses.
833 * This is used to vmalloc'ed addresses.
834 */
835static u64 kvirt_to_phys(void *addr)
836{
837 struct page *page;
838 u64 paddr = 0;
839
840 page = vmalloc_to_page(addr);
841 if (page)
842 paddr = page_to_pfn(page) << PAGE_SHIFT;
843
844 return paddr;
845}
846
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700847/**
848 * complete_subctxt
849 * @fd: valid filedata pointer
850 *
851 * Sub-context info can only be set up after the base context
852 * has been completed. This is indicated by the clearing of the
853 * HFI1_CTXT_BASE_UINIT bit.
854 *
855 * Wait for the bit to be cleared, and then complete the subcontext
856 * initialization.
857 *
858 */
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700859static int complete_subctxt(struct hfi1_filedata *fd)
860{
861 int ret;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700862 unsigned long flags;
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700863
864 /*
865 * sub-context info can only be set up after the base context
866 * has been completed.
867 */
868 ret = wait_event_interruptible(
869 fd->uctxt->wait,
870 !test_bit(HFI1_CTXT_BASE_UNINIT, &fd->uctxt->event_flags));
871
872 if (test_bit(HFI1_CTXT_BASE_FAILED, &fd->uctxt->event_flags))
873 ret = -ENOMEM;
874
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700875 /* Finish the sub-context init */
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700876 if (!ret) {
877 fd->rec_cpu_num = hfi1_get_proc_affinity(fd->uctxt->numa_id);
878 ret = init_user_ctxt(fd, fd->uctxt);
879 }
880
881 if (ret) {
882 hfi1_rcd_put(fd->uctxt);
883 fd->uctxt = NULL;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700884 spin_lock_irqsave(&fd->dd->uctxt_lock, flags);
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700885 __clear_bit(fd->subctxt, fd->uctxt->in_use_ctxts);
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700886 spin_unlock_irqrestore(&fd->dd->uctxt_lock, flags);
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700887 }
888
889 return ret;
890}
891
Michael J. Ruhl5fbded42017-05-04 05:14:57 -0700892static int assign_ctxt(struct hfi1_filedata *fd, struct hfi1_user_info *uinfo)
Mike Marciniszyn77241052015-07-30 15:17:43 -0400893{
Michael J. Ruhl62239fc2017-05-04 05:15:21 -0700894 int ret;
Dennis Dalessandro0eb62652016-05-19 05:25:50 -0700895 unsigned int swmajor, swminor;
Michael J. Ruhle87473b2017-07-29 08:43:32 -0700896 struct hfi1_ctxtdata *uctxt = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400897
898 swmajor = uinfo->userversion >> 16;
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -0700899 if (swmajor != HFI1_USER_SWMAJOR)
900 return -ENODEV;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400901
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700902 if (uinfo->subctxt_cnt > HFI1_MAX_SHARED_CTXTS)
903 return -EINVAL;
904
Mike Marciniszyn77241052015-07-30 15:17:43 -0400905 swminor = uinfo->userversion & 0xffff;
906
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700907 /*
908 * Acquire the mutex to protect against multiple creations of what
909 * could be a shared base context.
910 */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400911 mutex_lock(&hfi1_mutex);
Michael J. Ruhl62239fc2017-05-04 05:15:21 -0700912 /*
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700913 * Get a sub context if available (fd->uctxt will be set).
Michael J. Ruhl62239fc2017-05-04 05:15:21 -0700914 * ret < 0 error, 0 no context, 1 sub-context found
915 */
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700916 ret = find_sub_ctxt(fd, uinfo);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400917
918 /*
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700919 * Allocate a base context if context sharing is not required or a
920 * sub context wasn't found.
Mike Marciniszyn77241052015-07-30 15:17:43 -0400921 */
Michael J. Ruhl5fbded42017-05-04 05:14:57 -0700922 if (!ret)
Michael J. Ruhle87473b2017-07-29 08:43:32 -0700923 ret = allocate_ctxt(fd, fd->dd, uinfo, &uctxt);
Michael J. Ruhl5fbded42017-05-04 05:14:57 -0700924
Mike Marciniszyn77241052015-07-30 15:17:43 -0400925 mutex_unlock(&hfi1_mutex);
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -0700926
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700927 /* Depending on the context type, finish the appropriate init */
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700928 switch (ret) {
929 case 0:
Michael J. Ruhle87473b2017-07-29 08:43:32 -0700930 ret = setup_base_ctxt(fd, uctxt);
931 if (uctxt->subctxt_cnt) {
Michael J. Ruhl62239fc2017-05-04 05:15:21 -0700932 /*
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700933 * Base context is done (successfully or not), notify
934 * anybody using a sub-context that is waiting for
935 * this completion.
Michael J. Ruhl62239fc2017-05-04 05:15:21 -0700936 */
Michael J. Ruhle87473b2017-07-29 08:43:32 -0700937 clear_bit(HFI1_CTXT_BASE_UNINIT, &uctxt->event_flags);
938 wake_up(&uctxt->wait);
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -0700939 }
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -0700940 break;
941 case 1:
942 ret = complete_subctxt(fd);
943 break;
944 default:
945 break;
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -0700946 }
947
Mike Marciniszyn77241052015-07-30 15:17:43 -0400948 return ret;
949}
950
Michael J. Ruhld295dbe2017-08-04 13:52:44 -0700951/**
952 * match_ctxt
953 * @fd: valid filedata pointer
954 * @uinfo: user info to compare base context with
955 * @uctxt: context to compare uinfo to.
956 *
957 * Compare the given context with the given information to see if it
958 * can be used for a sub context.
959 */
960static int match_ctxt(struct hfi1_filedata *fd,
961 const struct hfi1_user_info *uinfo,
962 struct hfi1_ctxtdata *uctxt)
963{
964 struct hfi1_devdata *dd = fd->dd;
965 unsigned long flags;
966 u16 subctxt;
967
968 /* Skip dynamically allocated kernel contexts */
969 if (uctxt->sc && (uctxt->sc->type == SC_KERNEL))
970 return 0;
971
972 /* Skip ctxt if it doesn't match the requested one */
973 if (memcmp(uctxt->uuid, uinfo->uuid, sizeof(uctxt->uuid)) ||
974 uctxt->jkey != generate_jkey(current_uid()) ||
975 uctxt->subctxt_id != uinfo->subctxt_id ||
976 uctxt->subctxt_cnt != uinfo->subctxt_cnt)
977 return 0;
978
979 /* Verify the sharing process matches the base */
980 if (uctxt->userversion != uinfo->userversion)
981 return -EINVAL;
982
983 /* Find an unused sub context */
984 spin_lock_irqsave(&dd->uctxt_lock, flags);
985 if (bitmap_empty(uctxt->in_use_ctxts, HFI1_MAX_SHARED_CTXTS)) {
986 /* context is being closed, do not use */
987 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
988 return 0;
989 }
990
991 subctxt = find_first_zero_bit(uctxt->in_use_ctxts,
992 HFI1_MAX_SHARED_CTXTS);
993 if (subctxt >= uctxt->subctxt_cnt) {
994 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
995 return -EBUSY;
996 }
997
998 fd->subctxt = subctxt;
999 __set_bit(fd->subctxt, uctxt->in_use_ctxts);
1000 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
1001
1002 fd->uctxt = uctxt;
1003 hfi1_rcd_get(uctxt);
1004
1005 return 1;
1006}
1007
1008/**
1009 * find_sub_ctxt
1010 * @fd: valid filedata pointer
1011 * @uinfo: matching info to use to find a possible context to share.
1012 *
Michael J. Ruhl8737ce92017-05-04 05:15:15 -07001013 * The hfi1_mutex must be held when this function is called. It is
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001014 * necessary to ensure serialized creation of shared contexts.
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001015 *
1016 * Return:
1017 * 0 No sub-context found
1018 * 1 Subcontext found and allocated
1019 * errno EINVAL (incorrect parameters)
1020 * EBUSY (all sub contexts in use)
Michael J. Ruhl8737ce92017-05-04 05:15:15 -07001021 */
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001022static int find_sub_ctxt(struct hfi1_filedata *fd,
1023 const struct hfi1_user_info *uinfo)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001024{
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001025 struct hfi1_ctxtdata *uctxt;
Michael J. Ruhl5fbded42017-05-04 05:14:57 -07001026 struct hfi1_devdata *dd = fd->dd;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001027 u16 i;
1028 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001029
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001030 if (!uinfo->subctxt_cnt)
1031 return 0;
1032
Michael J. Ruhl5fbded42017-05-04 05:14:57 -07001033 for (i = dd->first_dyn_alloc_ctxt; i < dd->num_rcv_contexts; i++) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001034 uctxt = hfi1_rcd_get_by_index(dd, i);
1035 if (uctxt) {
1036 ret = match_ctxt(fd, uinfo, uctxt);
1037 hfi1_rcd_put(uctxt);
1038 /* value of != 0 will return */
1039 if (ret)
1040 return ret;
1041 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001042 }
1043
Michael J. Ruhl5fbded42017-05-04 05:14:57 -07001044 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001045}
1046
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -07001047static int allocate_ctxt(struct hfi1_filedata *fd, struct hfi1_devdata *dd,
Michael J. Ruhle87473b2017-07-29 08:43:32 -07001048 struct hfi1_user_info *uinfo,
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001049 struct hfi1_ctxtdata **rcd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001050{
1051 struct hfi1_ctxtdata *uctxt;
Mitko Haralanov957558c2016-02-03 14:33:40 -08001052 int ret, numa;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001053
1054 if (dd->flags & HFI1_FROZEN) {
1055 /*
1056 * Pick an error that is unique from all other errors
1057 * that are returned so the user process knows that
1058 * it tried to allocate while the SPC was frozen. It
1059 * it should be able to retry with success in a short
1060 * while.
1061 */
1062 return -EIO;
1063 }
1064
Michael J. Ruhl5fbded42017-05-04 05:14:57 -07001065 if (!dd->freectxts)
1066 return -EBUSY;
1067
Sebastian Sanchezb094a362016-07-25 07:54:57 -07001068 /*
1069 * If we don't have a NUMA node requested, preference is towards
1070 * device NUMA node.
1071 */
1072 fd->rec_cpu_num = hfi1_get_proc_affinity(dd->node);
Mitko Haralanov957558c2016-02-03 14:33:40 -08001073 if (fd->rec_cpu_num != -1)
1074 numa = cpu_to_node(fd->rec_cpu_num);
1075 else
1076 numa = numa_node_id();
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001077 ret = hfi1_create_ctxtdata(dd->pport, numa, &uctxt);
1078 if (ret < 0) {
1079 dd_dev_err(dd, "user ctxtdata allocation failed\n");
1080 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001081 }
Mitko Haralanov957558c2016-02-03 14:33:40 -08001082 hfi1_cdbg(PROC, "[%u:%u] pid %u assigned to CPU %d (NUMA %u)",
1083 uctxt->ctxt, fd->subctxt, current->pid, fd->rec_cpu_num,
1084 uctxt->numa_id);
1085
Mike Marciniszyn77241052015-07-30 15:17:43 -04001086 /*
1087 * Allocate and enable a PIO send context.
1088 */
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001089 uctxt->sc = sc_alloc(dd, SC_USER, uctxt->rcvhdrqentsize, dd->node);
Jakub Pawlak3a6982d2016-09-25 07:42:23 -07001090 if (!uctxt->sc) {
1091 ret = -ENOMEM;
1092 goto ctxdata_free;
1093 }
Sebastian Sanchez6c63e422015-11-06 20:06:56 -05001094 hfi1_cdbg(PROC, "allocated send context %u(%u)\n", uctxt->sc->sw_index,
1095 uctxt->sc->hw_context);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001096 ret = sc_enable(uctxt->sc);
1097 if (ret)
Jakub Pawlak3a6982d2016-09-25 07:42:23 -07001098 goto ctxdata_free;
1099
Mike Marciniszyn77241052015-07-30 15:17:43 -04001100 /*
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001101 * Setup sub context information if the user-level has requested
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001102 * sub contexts.
Mike Marciniszyn77241052015-07-30 15:17:43 -04001103 * This has to be done here so the rest of the sub-contexts find the
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001104 * proper base context.
Mike Marciniszyn77241052015-07-30 15:17:43 -04001105 */
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001106 if (uinfo->subctxt_cnt)
1107 init_subctxts(uctxt, uinfo);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001108 uctxt->userversion = uinfo->userversion;
Dean Luickbdf77522016-07-28 15:21:13 -04001109 uctxt->flags = hfi1_cap_mask; /* save current flag state */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001110 init_waitqueue_head(&uctxt->wait);
1111 strlcpy(uctxt->comm, current->comm, sizeof(uctxt->comm));
1112 memcpy(uctxt->uuid, uinfo->uuid, sizeof(uctxt->uuid));
1113 uctxt->jkey = generate_jkey(current_uid());
Mike Marciniszyn77241052015-07-30 15:17:43 -04001114 hfi1_stats.sps_ctxts++;
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -08001115 /*
1116 * Disable ASPM when there are open user/PSM contexts to avoid
1117 * issues with ASPM L1 exit latency
1118 */
1119 if (dd->freectxts-- == dd->num_user_contexts)
1120 aspm_disable_all(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001121
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001122 *rcd = uctxt;
Michael J. Ruhlf683c802017-06-09 16:00:19 -07001123
Mike Marciniszyn77241052015-07-30 15:17:43 -04001124 return 0;
Jakub Pawlak3a6982d2016-09-25 07:42:23 -07001125
1126ctxdata_free:
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001127 hfi1_free_ctxt(uctxt);
Jakub Pawlak3a6982d2016-09-25 07:42:23 -07001128 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001129}
1130
Michael J. Ruhl42492012017-07-24 07:45:43 -07001131static void deallocate_ctxt(struct hfi1_ctxtdata *uctxt)
1132{
1133 mutex_lock(&hfi1_mutex);
1134 hfi1_stats.sps_ctxts--;
1135 if (++uctxt->dd->freectxts == uctxt->dd->num_user_contexts)
1136 aspm_enable_all(uctxt->dd);
Michael J. Ruhl42492012017-07-24 07:45:43 -07001137 mutex_unlock(&hfi1_mutex);
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001138
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001139 hfi1_free_ctxt(uctxt);
Michael J. Ruhl42492012017-07-24 07:45:43 -07001140}
1141
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001142static void init_subctxts(struct hfi1_ctxtdata *uctxt,
1143 const struct hfi1_user_info *uinfo)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001144{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001145 uctxt->subctxt_cnt = uinfo->subctxt_cnt;
1146 uctxt->subctxt_id = uinfo->subctxt_id;
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001147 set_bit(HFI1_CTXT_BASE_UNINIT, &uctxt->event_flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001148}
1149
1150static int setup_subctxt(struct hfi1_ctxtdata *uctxt)
1151{
1152 int ret = 0;
Michael J. Ruhl8737ce92017-05-04 05:15:15 -07001153 u16 num_subctxts = uctxt->subctxt_cnt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001154
1155 uctxt->subctxt_uregbase = vmalloc_user(PAGE_SIZE);
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001156 if (!uctxt->subctxt_uregbase)
1157 return -ENOMEM;
1158
Mike Marciniszyn77241052015-07-30 15:17:43 -04001159 /* We can take the size of the RcvHdr Queue from the master */
1160 uctxt->subctxt_rcvhdr_base = vmalloc_user(uctxt->rcvhdrq_size *
1161 num_subctxts);
1162 if (!uctxt->subctxt_rcvhdr_base) {
1163 ret = -ENOMEM;
1164 goto bail_ureg;
1165 }
1166
1167 uctxt->subctxt_rcvegrbuf = vmalloc_user(uctxt->egrbufs.size *
1168 num_subctxts);
1169 if (!uctxt->subctxt_rcvegrbuf) {
1170 ret = -ENOMEM;
1171 goto bail_rhdr;
1172 }
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001173
1174 return 0;
1175
Mike Marciniszyn77241052015-07-30 15:17:43 -04001176bail_rhdr:
1177 vfree(uctxt->subctxt_rcvhdr_base);
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001178 uctxt->subctxt_rcvhdr_base = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001179bail_ureg:
1180 vfree(uctxt->subctxt_uregbase);
1181 uctxt->subctxt_uregbase = NULL;
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001182
Mike Marciniszyn77241052015-07-30 15:17:43 -04001183 return ret;
1184}
1185
Michael J. Ruhl62239fc2017-05-04 05:15:21 -07001186static void user_init(struct hfi1_ctxtdata *uctxt)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001187{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001188 unsigned int rcvctrl_ops = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001189
1190 /* initialize poll variables... */
1191 uctxt->urgent = 0;
1192 uctxt->urgent_poll = 0;
1193
1194 /*
1195 * Now enable the ctxt for receive.
1196 * For chips that are set to DMA the tail register to memory
1197 * when they change (and when the update bit transitions from
1198 * 0 to 1. So for those chips, we turn it off and then back on.
1199 * This will (very briefly) affect any other open ctxts, but the
1200 * duration is very short, and therefore isn't an issue. We
1201 * explicitly set the in-memory tail copy to 0 beforehand, so we
1202 * don't have to wait to be sure the DMA update has happened
1203 * (chip resets head/tail to 0 on transition to enable).
1204 */
1205 if (uctxt->rcvhdrtail_kvaddr)
1206 clear_rcvhdrtail(uctxt);
1207
1208 /* Setup J_KEY before enabling the context */
Michael J. Ruhl17573972017-07-24 07:46:01 -07001209 hfi1_set_ctxt_jkey(uctxt->dd, uctxt, uctxt->jkey);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001210
1211 rcvctrl_ops = HFI1_RCVCTRL_CTXT_ENB;
Dean Luickbdf77522016-07-28 15:21:13 -04001212 if (HFI1_CAP_UGET_MASK(uctxt->flags, HDRSUPP))
Mike Marciniszyn77241052015-07-30 15:17:43 -04001213 rcvctrl_ops |= HFI1_RCVCTRL_TIDFLOW_ENB;
1214 /*
1215 * Ignore the bit in the flags for now until proper
1216 * support for multiple packet per rcv array entry is
1217 * added.
1218 */
Dean Luickbdf77522016-07-28 15:21:13 -04001219 if (!HFI1_CAP_UGET_MASK(uctxt->flags, MULTI_PKT_EGR))
Mike Marciniszyn77241052015-07-30 15:17:43 -04001220 rcvctrl_ops |= HFI1_RCVCTRL_ONE_PKT_EGR_ENB;
Dean Luickbdf77522016-07-28 15:21:13 -04001221 if (HFI1_CAP_UGET_MASK(uctxt->flags, NODROP_EGR_FULL))
Mike Marciniszyn77241052015-07-30 15:17:43 -04001222 rcvctrl_ops |= HFI1_RCVCTRL_NO_EGR_DROP_ENB;
Dean Luickbdf77522016-07-28 15:21:13 -04001223 if (HFI1_CAP_UGET_MASK(uctxt->flags, NODROP_RHQ_FULL))
Mike Marciniszyn77241052015-07-30 15:17:43 -04001224 rcvctrl_ops |= HFI1_RCVCTRL_NO_RHQ_DROP_ENB;
Mitko Haralanov566c1572016-02-03 14:32:49 -08001225 /*
1226 * The RcvCtxtCtrl.TailUpd bit has to be explicitly written.
1227 * We can't rely on the correct value to be set from prior
1228 * uses of the chip or ctxt. Therefore, add the rcvctrl op
1229 * for both cases.
1230 */
Dean Luickbdf77522016-07-28 15:21:13 -04001231 if (HFI1_CAP_UGET_MASK(uctxt->flags, DMA_RTAIL))
Mike Marciniszyn77241052015-07-30 15:17:43 -04001232 rcvctrl_ops |= HFI1_RCVCTRL_TAILUPD_ENB;
Mitko Haralanov566c1572016-02-03 14:32:49 -08001233 else
1234 rcvctrl_ops |= HFI1_RCVCTRL_TAILUPD_DIS;
Michael J. Ruhl22505632017-07-24 07:46:06 -07001235 hfi1_rcvctrl(uctxt->dd, rcvctrl_ops, uctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001236}
1237
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -07001238static int get_ctxt_info(struct hfi1_filedata *fd, void __user *ubase,
1239 __u32 len)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001240{
1241 struct hfi1_ctxt_info cinfo;
Ira Weiny9e10af42015-10-30 18:58:40 -04001242 struct hfi1_ctxtdata *uctxt = fd->uctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001243 int ret = 0;
1244
Dan Carpenterebe6b2e2015-09-16 09:42:25 +03001245 memset(&cinfo, 0, sizeof(cinfo));
Dean Luickbdf77522016-07-28 15:21:13 -04001246 cinfo.runtime_flags = (((uctxt->flags >> HFI1_CAP_MISC_SHIFT) &
1247 HFI1_CAP_MISC_MASK) << HFI1_CAP_USER_SHIFT) |
1248 HFI1_CAP_UGET_MASK(uctxt->flags, MASK) |
1249 HFI1_CAP_KGET_MASK(uctxt->flags, K2U);
Dean Luick622c2022016-07-28 15:21:21 -04001250 /* adjust flag if this fd is not able to cache */
1251 if (!fd->handler)
1252 cinfo.runtime_flags |= HFI1_CAP_TID_UNMAP; /* no caching */
1253
Mike Marciniszyn77241052015-07-30 15:17:43 -04001254 cinfo.num_active = hfi1_count_active_units();
1255 cinfo.unit = uctxt->dd->unit;
1256 cinfo.ctxt = uctxt->ctxt;
Ira Weiny9e10af42015-10-30 18:58:40 -04001257 cinfo.subctxt = fd->subctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001258 cinfo.rcvtids = roundup(uctxt->egrbufs.alloced,
1259 uctxt->dd->rcv_entries.group_size) +
1260 uctxt->expected_count;
1261 cinfo.credits = uctxt->sc->credits;
1262 cinfo.numa_node = uctxt->numa_id;
1263 cinfo.rec_cpu = fd->rec_cpu_num;
1264 cinfo.send_ctxt = uctxt->sc->hw_context;
1265
1266 cinfo.egrtids = uctxt->egrbufs.alloced;
1267 cinfo.rcvhdrq_cnt = uctxt->rcvhdrq_cnt;
1268 cinfo.rcvhdrq_entsize = uctxt->rcvhdrqentsize << 2;
Ira Weiny9e10af42015-10-30 18:58:40 -04001269 cinfo.sdma_ring_size = fd->cq->nentries;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001270 cinfo.rcvegr_size = uctxt->egrbufs.rcvtid_size;
1271
Ira Weiny9e10af42015-10-30 18:58:40 -04001272 trace_hfi1_ctxt_info(uctxt->dd, uctxt->ctxt, fd->subctxt, cinfo);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001273 if (copy_to_user(ubase, &cinfo, sizeof(cinfo)))
1274 ret = -EFAULT;
Dean Luickbdf77522016-07-28 15:21:13 -04001275
Mike Marciniszyn77241052015-07-30 15:17:43 -04001276 return ret;
1277}
1278
Michael J. Ruhle87473b2017-07-29 08:43:32 -07001279static int init_user_ctxt(struct hfi1_filedata *fd,
1280 struct hfi1_ctxtdata *uctxt)
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001281{
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001282 int ret;
1283
1284 ret = hfi1_user_sdma_alloc_queues(uctxt, fd);
1285 if (ret)
1286 return ret;
1287
Michael J. Ruhle87473b2017-07-29 08:43:32 -07001288 ret = hfi1_user_exp_rcv_init(fd, uctxt);
1289 if (ret)
1290 hfi1_user_sdma_free_queues(fd, uctxt);
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001291
1292 return ret;
1293}
1294
Michael J. Ruhle87473b2017-07-29 08:43:32 -07001295static int setup_base_ctxt(struct hfi1_filedata *fd,
1296 struct hfi1_ctxtdata *uctxt)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001297{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001298 struct hfi1_devdata *dd = uctxt->dd;
1299 int ret = 0;
1300
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001301 hfi1_init_ctxt(uctxt->sc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001302
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001303 /* Now allocate the RcvHdr queue and eager buffers. */
1304 ret = hfi1_create_rcvhdrq(dd, uctxt);
Mitko Haralanov94158442016-04-20 06:05:36 -07001305 if (ret)
Michael J. Ruhl62239fc2017-05-04 05:15:21 -07001306 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001307
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001308 ret = hfi1_setup_eagerbufs(uctxt);
1309 if (ret)
Michael J. Ruhl62239fc2017-05-04 05:15:21 -07001310 goto setup_failed;
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001311
1312 /* If sub-contexts are enabled, do the appropriate setup */
1313 if (uctxt->subctxt_cnt)
1314 ret = setup_subctxt(uctxt);
1315 if (ret)
Michael J. Ruhl62239fc2017-05-04 05:15:21 -07001316 goto setup_failed;
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001317
Mike Marciniszyn9c1a99c32017-06-09 15:59:40 -07001318 ret = hfi1_alloc_ctxt_rcv_groups(uctxt);
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001319 if (ret)
Michael J. Ruhl62239fc2017-05-04 05:15:21 -07001320 goto setup_failed;
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001321
Michael J. Ruhle87473b2017-07-29 08:43:32 -07001322 ret = init_user_ctxt(fd, uctxt);
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001323 if (ret)
Michael J. Ruhl62239fc2017-05-04 05:15:21 -07001324 goto setup_failed;
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001325
Michael J. Ruhl62239fc2017-05-04 05:15:21 -07001326 user_init(uctxt);
1327
Michael J. Ruhle87473b2017-07-29 08:43:32 -07001328 /* Now that the context is set up, the fd can get a reference. */
1329 fd->uctxt = uctxt;
1330 hfi1_rcd_get(uctxt);
1331
Michael J. Ruhl62239fc2017-05-04 05:15:21 -07001332 return 0;
1333
1334setup_failed:
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001335 /* Set the failed bit so sub-context init can do the right thing */
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -07001336 set_bit(HFI1_CTXT_BASE_FAILED, &uctxt->event_flags);
1337 deallocate_ctxt(uctxt);
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001338
Mike Marciniszyn77241052015-07-30 15:17:43 -04001339 return ret;
1340}
1341
Michael J. Ruhl5042cdd2017-05-04 05:14:45 -07001342static int get_base_info(struct hfi1_filedata *fd, void __user *ubase,
1343 __u32 len)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001344{
1345 struct hfi1_base_info binfo;
Ira Weiny9e10af42015-10-30 18:58:40 -04001346 struct hfi1_ctxtdata *uctxt = fd->uctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001347 struct hfi1_devdata *dd = uctxt->dd;
1348 ssize_t sz;
1349 unsigned offset;
1350 int ret = 0;
1351
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -07001352 trace_hfi1_uctxtdata(uctxt->dd, uctxt, fd->subctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001353
1354 memset(&binfo, 0, sizeof(binfo));
1355 binfo.hw_version = dd->revision;
1356 binfo.sw_version = HFI1_KERN_SWVERSION;
1357 binfo.bthqp = kdeth_qp;
1358 binfo.jkey = uctxt->jkey;
1359 /*
1360 * If more than 64 contexts are enabled the allocated credit
1361 * return will span two or three contiguous pages. Since we only
1362 * map the page containing the context's credit return address,
1363 * we need to calculate the offset in the proper page.
1364 */
1365 offset = ((u64)uctxt->sc->hw_free -
1366 (u64)dd->cr_base[uctxt->numa_id].va) % PAGE_SIZE;
1367 binfo.sc_credits_addr = HFI1_MMAP_TOKEN(PIO_CRED, uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001368 fd->subctxt, offset);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001369 binfo.pio_bufbase = HFI1_MMAP_TOKEN(PIO_BUFS, uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001370 fd->subctxt,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001371 uctxt->sc->base_addr);
1372 binfo.pio_bufbase_sop = HFI1_MMAP_TOKEN(PIO_BUFS_SOP,
1373 uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001374 fd->subctxt,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001375 uctxt->sc->base_addr);
1376 binfo.rcvhdr_bufbase = HFI1_MMAP_TOKEN(RCV_HDRQ, uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001377 fd->subctxt,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001378 uctxt->rcvhdrq);
1379 binfo.rcvegr_bufbase = HFI1_MMAP_TOKEN(RCV_EGRBUF, uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001380 fd->subctxt,
Tymoteusz Kielan60368182016-09-06 04:35:54 -07001381 uctxt->egrbufs.rcvtids[0].dma);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001382 binfo.sdma_comp_bufbase = HFI1_MMAP_TOKEN(SDMA_COMP, uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001383 fd->subctxt, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001384 /*
1385 * user regs are at
1386 * (RXE_PER_CONTEXT_USER + (ctxt * RXE_PER_CONTEXT_SIZE))
1387 */
1388 binfo.user_regbase = HFI1_MMAP_TOKEN(UREGS, uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001389 fd->subctxt, 0);
Michael J. Ruhl21e5acc2017-09-26 07:00:56 -07001390 offset = offset_in_page((uctxt_offset(uctxt) + fd->subctxt) *
1391 sizeof(*dd->events));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001392 binfo.events_bufbase = HFI1_MMAP_TOKEN(EVENTS, uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001393 fd->subctxt,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001394 offset);
1395 binfo.status_bufbase = HFI1_MMAP_TOKEN(STATUS, uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001396 fd->subctxt,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001397 dd->status);
1398 if (HFI1_CAP_IS_USET(DMA_RTAIL))
1399 binfo.rcvhdrtail_base = HFI1_MMAP_TOKEN(RTAIL, uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001400 fd->subctxt, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001401 if (uctxt->subctxt_cnt) {
1402 binfo.subctxt_uregbase = HFI1_MMAP_TOKEN(SUBCTXT_UREGS,
1403 uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001404 fd->subctxt, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001405 binfo.subctxt_rcvhdrbuf = HFI1_MMAP_TOKEN(SUBCTXT_RCV_HDRQ,
1406 uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001407 fd->subctxt, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001408 binfo.subctxt_rcvegrbuf = HFI1_MMAP_TOKEN(SUBCTXT_EGRBUF,
1409 uctxt->ctxt,
Ira Weiny9e10af42015-10-30 18:58:40 -04001410 fd->subctxt, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001411 }
1412 sz = (len < sizeof(binfo)) ? len : sizeof(binfo);
1413 if (copy_to_user(ubase, &binfo, sz))
1414 ret = -EFAULT;
1415 return ret;
1416}
1417
1418static unsigned int poll_urgent(struct file *fp,
1419 struct poll_table_struct *pt)
1420{
Ira Weiny9e10af42015-10-30 18:58:40 -04001421 struct hfi1_filedata *fd = fp->private_data;
1422 struct hfi1_ctxtdata *uctxt = fd->uctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001423 struct hfi1_devdata *dd = uctxt->dd;
1424 unsigned pollflag;
1425
1426 poll_wait(fp, &uctxt->wait, pt);
1427
1428 spin_lock_irq(&dd->uctxt_lock);
1429 if (uctxt->urgent != uctxt->urgent_poll) {
1430 pollflag = POLLIN | POLLRDNORM;
1431 uctxt->urgent_poll = uctxt->urgent;
1432 } else {
1433 pollflag = 0;
1434 set_bit(HFI1_CTXT_WAITING_URG, &uctxt->event_flags);
1435 }
1436 spin_unlock_irq(&dd->uctxt_lock);
1437
1438 return pollflag;
1439}
1440
1441static unsigned int poll_next(struct file *fp,
1442 struct poll_table_struct *pt)
1443{
Ira Weiny9e10af42015-10-30 18:58:40 -04001444 struct hfi1_filedata *fd = fp->private_data;
1445 struct hfi1_ctxtdata *uctxt = fd->uctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001446 struct hfi1_devdata *dd = uctxt->dd;
1447 unsigned pollflag;
1448
1449 poll_wait(fp, &uctxt->wait, pt);
1450
1451 spin_lock_irq(&dd->uctxt_lock);
1452 if (hdrqempty(uctxt)) {
1453 set_bit(HFI1_CTXT_WAITING_RCV, &uctxt->event_flags);
Michael J. Ruhl22505632017-07-24 07:46:06 -07001454 hfi1_rcvctrl(dd, HFI1_RCVCTRL_INTRAVAIL_ENB, uctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001455 pollflag = 0;
Jubin Johne4909742016-02-14 20:22:00 -08001456 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -04001457 pollflag = POLLIN | POLLRDNORM;
Jubin Johne4909742016-02-14 20:22:00 -08001458 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001459 spin_unlock_irq(&dd->uctxt_lock);
1460
1461 return pollflag;
1462}
1463
1464/*
1465 * Find all user contexts in use, and set the specified bit in their
1466 * event mask.
1467 * See also find_ctxt() for a similar use, that is specific to send buffers.
1468 */
1469int hfi1_set_uevent_bits(struct hfi1_pportdata *ppd, const int evtbit)
1470{
1471 struct hfi1_ctxtdata *uctxt;
1472 struct hfi1_devdata *dd = ppd->dd;
Michael J. Ruhle6f76222017-07-24 07:45:55 -07001473 u16 ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001474
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001475 if (!dd->events)
1476 return -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001477
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07001478 for (ctxt = dd->first_dyn_alloc_ctxt; ctxt < dd->num_rcv_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001479 ctxt++) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001480 uctxt = hfi1_rcd_get_by_index(dd, ctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001481 if (uctxt) {
Michael J. Ruhl21e5acc2017-09-26 07:00:56 -07001482 unsigned long *evs;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001483 int i;
1484 /*
1485 * subctxt_cnt is 0 if not shared, so do base
1486 * separately, first, then remaining subctxt, if any
1487 */
Michael J. Ruhl21e5acc2017-09-26 07:00:56 -07001488 evs = dd->events + uctxt_offset(uctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001489 set_bit(evtbit, evs);
1490 for (i = 1; i < uctxt->subctxt_cnt; i++)
1491 set_bit(evtbit, evs + i);
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001492 hfi1_rcd_put(uctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001493 }
1494 }
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07001495
1496 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001497}
1498
1499/**
1500 * manage_rcvq - manage a context's receive queue
1501 * @uctxt: the context
1502 * @subctxt: the sub-context
1503 * @start_stop: action to carry out
1504 *
1505 * start_stop == 0 disables receive on the context, for use in queue
1506 * overflow conditions. start_stop==1 re-enables, to be used to
1507 * re-init the software copy of the head register
1508 */
Michael J. Ruhl8737ce92017-05-04 05:15:15 -07001509static int manage_rcvq(struct hfi1_ctxtdata *uctxt, u16 subctxt,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001510 int start_stop)
1511{
1512 struct hfi1_devdata *dd = uctxt->dd;
1513 unsigned int rcvctrl_op;
1514
1515 if (subctxt)
1516 goto bail;
1517 /* atomically clear receive enable ctxt. */
1518 if (start_stop) {
1519 /*
1520 * On enable, force in-memory copy of the tail register to
1521 * 0, so that protocol code doesn't have to worry about
1522 * whether or not the chip has yet updated the in-memory
1523 * copy or not on return from the system call. The chip
1524 * always resets it's tail register back to 0 on a
1525 * transition from disabled to enabled.
1526 */
1527 if (uctxt->rcvhdrtail_kvaddr)
1528 clear_rcvhdrtail(uctxt);
1529 rcvctrl_op = HFI1_RCVCTRL_CTXT_ENB;
Jubin Johne4909742016-02-14 20:22:00 -08001530 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -04001531 rcvctrl_op = HFI1_RCVCTRL_CTXT_DIS;
Jubin Johne4909742016-02-14 20:22:00 -08001532 }
Michael J. Ruhl22505632017-07-24 07:46:06 -07001533 hfi1_rcvctrl(dd, rcvctrl_op, uctxt);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001534 /* always; new head should be equal to new tail; see above */
1535bail:
1536 return 0;
1537}
1538
1539/*
1540 * clear the event notifier events for this context.
1541 * User process then performs actions appropriate to bit having been
1542 * set, if desired, and checks again in future.
1543 */
Michael J. Ruhl8737ce92017-05-04 05:15:15 -07001544static int user_event_ack(struct hfi1_ctxtdata *uctxt, u16 subctxt,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001545 unsigned long events)
1546{
1547 int i;
1548 struct hfi1_devdata *dd = uctxt->dd;
1549 unsigned long *evs;
1550
1551 if (!dd->events)
1552 return 0;
1553
Michael J. Ruhl21e5acc2017-09-26 07:00:56 -07001554 evs = dd->events + uctxt_offset(uctxt) + subctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001555
1556 for (i = 0; i <= _HFI1_MAX_EVENT_BIT; i++) {
1557 if (!test_bit(i, &events))
1558 continue;
1559 clear_bit(i, evs);
1560 }
1561 return 0;
1562}
1563
Michael J. Ruhl8737ce92017-05-04 05:15:15 -07001564static int set_ctxt_pkey(struct hfi1_ctxtdata *uctxt, u16 subctxt, u16 pkey)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001565{
1566 int ret = -ENOENT, i, intable = 0;
1567 struct hfi1_pportdata *ppd = uctxt->ppd;
1568 struct hfi1_devdata *dd = uctxt->dd;
1569
1570 if (pkey == LIM_MGMT_P_KEY || pkey == FULL_MGMT_P_KEY) {
1571 ret = -EINVAL;
1572 goto done;
1573 }
1574
1575 for (i = 0; i < ARRAY_SIZE(ppd->pkeys); i++)
1576 if (pkey == ppd->pkeys[i]) {
1577 intable = 1;
1578 break;
1579 }
1580
1581 if (intable)
Michael J. Ruhl17573972017-07-24 07:46:01 -07001582 ret = hfi1_set_ctxt_pkey(dd, uctxt, pkey);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001583done:
1584 return ret;
1585}
1586
Mike Marciniszyn77241052015-07-30 15:17:43 -04001587static void user_remove(struct hfi1_devdata *dd)
1588{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001589
1590 hfi1_cdev_cleanup(&dd->user_cdev, &dd->user_device);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001591}
1592
1593static int user_add(struct hfi1_devdata *dd)
1594{
1595 char name[10];
1596 int ret;
1597
Mike Marciniszyn77241052015-07-30 15:17:43 -04001598 snprintf(name, sizeof(name), "%s_%d", class_name(), dd->unit);
Dennis Dalessandro0eb62652016-05-19 05:25:50 -07001599 ret = hfi1_cdev_init(dd->unit, name, &hfi1_file_ops,
Ira Weinye116a642015-09-17 13:47:49 -04001600 &dd->user_cdev, &dd->user_device,
Dennis Dalessandroe11ffbd2016-05-19 05:26:44 -07001601 true, &dd->kobj);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001602 if (ret)
Dennis Dalessandro7312f292016-05-19 05:25:57 -07001603 user_remove(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001604
Mike Marciniszyn77241052015-07-30 15:17:43 -04001605 return ret;
1606}
1607
1608/*
1609 * Create per-unit files in /dev
1610 */
1611int hfi1_device_create(struct hfi1_devdata *dd)
1612{
Dennis Dalessandro0f7b1f92016-05-19 05:26:10 -07001613 return user_add(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001614}
1615
1616/*
1617 * Remove per-unit files in /dev
1618 * void, core kernel returns no errors for this stuff
1619 */
1620void hfi1_device_remove(struct hfi1_devdata *dd)
1621{
1622 user_remove(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001623}