1 // SPDX-License-Identifier: GPL-2.0+
2 // Copyright 2017 IBM Corp.
4 #include <linux/poll.h>
5 #include <linux/sched/signal.h>
6 #include <linux/eventfd.h>
7 #include <linux/uaccess.h>
8 #include <uapi/misc/ocxl.h>
10 #include <asm/switch_to.h>
11 #include "ocxl_internal.h"
14 #define OCXL_NUM_MINORS 256 /* Total to reserve */
16 static dev_t ocxl_dev;
17 static struct class *ocxl_class;
18 static struct mutex minors_idr_lock;
19 static struct idr minors_idr;
21 static struct ocxl_file_info *find_file_info(dev_t devno)
23 struct ocxl_file_info *info;
26 * We don't declare an RCU critical section here, as our AFU
27 * is protected by a reference counter on the device. By the time the
28 * info reference is removed from the idr, the ref count of
29 * the device is already at 0, so no user API will access that AFU and
30 * this function can't return it.
32 info = idr_find(&minors_idr, MINOR(devno));
36 static int allocate_minor(struct ocxl_file_info *info)
40 mutex_lock(&minors_idr_lock);
41 minor = idr_alloc(&minors_idr, info, 0, OCXL_NUM_MINORS, GFP_KERNEL);
42 mutex_unlock(&minors_idr_lock);
46 static void free_minor(struct ocxl_file_info *info)
48 mutex_lock(&minors_idr_lock);
49 idr_remove(&minors_idr, MINOR(info->dev.devt));
50 mutex_unlock(&minors_idr_lock);
53 static int afu_open(struct inode *inode, struct file *file)
55 struct ocxl_file_info *info;
56 struct ocxl_context *ctx;
59 pr_debug("%s for device %x\n", __func__, inode->i_rdev);
61 info = find_file_info(inode->i_rdev);
65 rc = ocxl_context_alloc(&ctx, info->afu, inode->i_mapping);
69 file->private_data = ctx;
73 static long afu_ioctl_attach(struct ocxl_context *ctx,
74 struct ocxl_ioctl_attach __user *uarg)
76 struct ocxl_ioctl_attach arg;
80 pr_debug("%s for context %d\n", __func__, ctx->pasid);
82 if (copy_from_user(&arg, uarg, sizeof(arg)))
85 /* Make sure reserved fields are not set for forward compatibility */
86 if (arg.reserved1 || arg.reserved2 || arg.reserved3)
89 amr = arg.amr & mfspr(SPRN_UAMOR);
90 rc = ocxl_context_attach(ctx, amr, current->mm);
94 static long afu_ioctl_get_metadata(struct ocxl_context *ctx,
95 struct ocxl_ioctl_metadata __user *uarg)
97 struct ocxl_ioctl_metadata arg;
99 memset(&arg, 0, sizeof(arg));
103 arg.afu_version_major = ctx->afu->config.version_major;
104 arg.afu_version_minor = ctx->afu->config.version_minor;
105 arg.pasid = ctx->pasid;
106 arg.pp_mmio_size = ctx->afu->config.pp_mmio_stride;
107 arg.global_mmio_size = ctx->afu->config.global_mmio_size;
109 if (copy_to_user(uarg, &arg, sizeof(arg)))
116 static long afu_ioctl_enable_p9_wait(struct ocxl_context *ctx,
117 struct ocxl_ioctl_p9_wait __user *uarg)
119 struct ocxl_ioctl_p9_wait arg;
121 memset(&arg, 0, sizeof(arg));
123 if (cpu_has_feature(CPU_FTR_P9_TIDR)) {
124 enum ocxl_context_status status;
126 // Locks both status & tidr
127 mutex_lock(&ctx->status_mutex);
129 if (set_thread_tidr(current)) {
130 mutex_unlock(&ctx->status_mutex);
134 ctx->tidr = current->thread.tidr;
137 status = ctx->status;
138 mutex_unlock(&ctx->status_mutex);
140 if (status == ATTACHED) {
141 int rc = ocxl_link_update_pe(ctx->afu->fn->link,
142 ctx->pasid, ctx->tidr);
148 arg.thread_id = ctx->tidr;
152 if (copy_to_user(uarg, &arg, sizeof(arg)))
160 static long afu_ioctl_get_features(struct ocxl_context *ctx,
161 struct ocxl_ioctl_features __user *uarg)
163 struct ocxl_ioctl_features arg;
165 memset(&arg, 0, sizeof(arg));
168 if (cpu_has_feature(CPU_FTR_P9_TIDR))
169 arg.flags[0] |= OCXL_IOCTL_FEATURES_FLAGS0_P9_WAIT;
172 if (copy_to_user(uarg, &arg, sizeof(arg)))
178 #define CMD_STR(x) (x == OCXL_IOCTL_ATTACH ? "ATTACH" : \
179 x == OCXL_IOCTL_IRQ_ALLOC ? "IRQ_ALLOC" : \
180 x == OCXL_IOCTL_IRQ_FREE ? "IRQ_FREE" : \
181 x == OCXL_IOCTL_IRQ_SET_FD ? "IRQ_SET_FD" : \
182 x == OCXL_IOCTL_GET_METADATA ? "GET_METADATA" : \
183 x == OCXL_IOCTL_ENABLE_P9_WAIT ? "ENABLE_P9_WAIT" : \
184 x == OCXL_IOCTL_GET_FEATURES ? "GET_FEATURES" : \
187 static irqreturn_t irq_handler(void *private)
189 struct eventfd_ctx *ev_ctx = private;
191 eventfd_signal(ev_ctx, 1);
195 static void irq_free(void *private)
197 struct eventfd_ctx *ev_ctx = private;
199 eventfd_ctx_put(ev_ctx);
202 static long afu_ioctl(struct file *file, unsigned int cmd,
205 struct ocxl_context *ctx = file->private_data;
206 struct ocxl_ioctl_irq_fd irq_fd;
207 struct eventfd_ctx *ev_ctx;
213 pr_debug("%s for context %d, command %s\n", __func__, ctx->pasid,
216 mutex_lock(&ctx->status_mutex);
217 closed = (ctx->status == CLOSED);
218 mutex_unlock(&ctx->status_mutex);
224 case OCXL_IOCTL_ATTACH:
225 rc = afu_ioctl_attach(ctx,
226 (struct ocxl_ioctl_attach __user *) args);
229 case OCXL_IOCTL_IRQ_ALLOC:
230 rc = ocxl_afu_irq_alloc(ctx, &irq_id);
232 irq_offset = ocxl_irq_id_to_offset(ctx, irq_id);
233 rc = copy_to_user((u64 __user *) args, &irq_offset,
236 ocxl_afu_irq_free(ctx, irq_id);
242 case OCXL_IOCTL_IRQ_FREE:
243 rc = copy_from_user(&irq_offset, (u64 __user *) args,
247 irq_id = ocxl_irq_offset_to_id(ctx, irq_offset);
248 rc = ocxl_afu_irq_free(ctx, irq_id);
251 case OCXL_IOCTL_IRQ_SET_FD:
252 rc = copy_from_user(&irq_fd, (u64 __user *) args,
258 irq_id = ocxl_irq_offset_to_id(ctx, irq_fd.irq_offset);
259 ev_ctx = eventfd_ctx_fdget(irq_fd.eventfd);
261 return PTR_ERR(ev_ctx);
262 rc = ocxl_irq_set_handler(ctx, irq_id, irq_handler, irq_free, ev_ctx);
265 case OCXL_IOCTL_GET_METADATA:
266 rc = afu_ioctl_get_metadata(ctx,
267 (struct ocxl_ioctl_metadata __user *) args);
271 case OCXL_IOCTL_ENABLE_P9_WAIT:
272 rc = afu_ioctl_enable_p9_wait(ctx,
273 (struct ocxl_ioctl_p9_wait __user *) args);
277 case OCXL_IOCTL_GET_FEATURES:
278 rc = afu_ioctl_get_features(ctx,
279 (struct ocxl_ioctl_features __user *) args);
288 static long afu_compat_ioctl(struct file *file, unsigned int cmd,
291 return afu_ioctl(file, cmd, args);
294 static int afu_mmap(struct file *file, struct vm_area_struct *vma)
296 struct ocxl_context *ctx = file->private_data;
298 pr_debug("%s for context %d\n", __func__, ctx->pasid);
299 return ocxl_context_mmap(ctx, vma);
302 static bool has_xsl_error(struct ocxl_context *ctx)
306 mutex_lock(&ctx->xsl_error_lock);
307 ret = !!ctx->xsl_error.addr;
308 mutex_unlock(&ctx->xsl_error_lock);
314 * Are there any events pending on the AFU
315 * ctx: The AFU context
316 * Returns: true if there are events pending
318 static bool afu_events_pending(struct ocxl_context *ctx)
320 if (has_xsl_error(ctx))
325 static unsigned int afu_poll(struct file *file, struct poll_table_struct *wait)
327 struct ocxl_context *ctx = file->private_data;
328 unsigned int mask = 0;
331 pr_debug("%s for context %d\n", __func__, ctx->pasid);
333 poll_wait(file, &ctx->events_wq, wait);
335 mutex_lock(&ctx->status_mutex);
336 closed = (ctx->status == CLOSED);
337 mutex_unlock(&ctx->status_mutex);
339 if (afu_events_pending(ctx))
340 mask = EPOLLIN | EPOLLRDNORM;
348 * Populate the supplied buffer with a single XSL error
349 * ctx: The AFU context to report the error from
350 * header: the event header to populate
351 * buf: The buffer to write the body into (should be at least
352 * AFU_EVENT_BODY_XSL_ERROR_SIZE)
353 * Return: the amount of buffer that was populated
355 static ssize_t append_xsl_error(struct ocxl_context *ctx,
356 struct ocxl_kernel_event_header *header,
359 struct ocxl_kernel_event_xsl_fault_error body;
361 memset(&body, 0, sizeof(body));
363 mutex_lock(&ctx->xsl_error_lock);
364 if (!ctx->xsl_error.addr) {
365 mutex_unlock(&ctx->xsl_error_lock);
369 body.addr = ctx->xsl_error.addr;
370 body.dsisr = ctx->xsl_error.dsisr;
371 body.count = ctx->xsl_error.count;
373 ctx->xsl_error.addr = 0;
374 ctx->xsl_error.dsisr = 0;
375 ctx->xsl_error.count = 0;
377 mutex_unlock(&ctx->xsl_error_lock);
379 header->type = OCXL_AFU_EVENT_XSL_FAULT_ERROR;
381 if (copy_to_user(buf, &body, sizeof(body)))
387 #define AFU_EVENT_BODY_MAX_SIZE sizeof(struct ocxl_kernel_event_xsl_fault_error)
390 * Reports events on the AFU
392 * Header (struct ocxl_kernel_event_header)
393 * Body (struct ocxl_kernel_event_*)
396 static ssize_t afu_read(struct file *file, char __user *buf, size_t count,
399 struct ocxl_context *ctx = file->private_data;
400 struct ocxl_kernel_event_header header;
403 DEFINE_WAIT(event_wait);
405 memset(&header, 0, sizeof(header));
407 /* Require offset to be 0 */
411 if (count < (sizeof(struct ocxl_kernel_event_header) +
412 AFU_EVENT_BODY_MAX_SIZE))
416 prepare_to_wait(&ctx->events_wq, &event_wait,
419 if (afu_events_pending(ctx))
422 if (ctx->status == CLOSED)
425 if (file->f_flags & O_NONBLOCK) {
426 finish_wait(&ctx->events_wq, &event_wait);
430 if (signal_pending(current)) {
431 finish_wait(&ctx->events_wq, &event_wait);
438 finish_wait(&ctx->events_wq, &event_wait);
440 if (has_xsl_error(ctx)) {
441 used = append_xsl_error(ctx, &header, buf + sizeof(header));
446 if (!afu_events_pending(ctx))
447 header.flags |= OCXL_KERNEL_EVENT_FLAG_LAST;
449 if (copy_to_user(buf, &header, sizeof(header)))
452 used += sizeof(header);
458 static int afu_release(struct inode *inode, struct file *file)
460 struct ocxl_context *ctx = file->private_data;
463 pr_debug("%s for device %x\n", __func__, inode->i_rdev);
464 rc = ocxl_context_detach(ctx);
465 mutex_lock(&ctx->mapping_lock);
467 mutex_unlock(&ctx->mapping_lock);
468 wake_up_all(&ctx->events_wq);
470 ocxl_context_free(ctx);
474 static const struct file_operations ocxl_afu_fops = {
475 .owner = THIS_MODULE,
477 .unlocked_ioctl = afu_ioctl,
478 .compat_ioctl = afu_compat_ioctl,
482 .release = afu_release,
485 // Free the info struct
486 static void info_release(struct device *dev)
488 struct ocxl_file_info *info = container_of(dev, struct ocxl_file_info, dev);
491 ocxl_afu_put(info->afu);
495 static int ocxl_file_make_visible(struct ocxl_file_info *info)
499 cdev_init(&info->cdev, &ocxl_afu_fops);
500 rc = cdev_add(&info->cdev, info->dev.devt, 1);
502 dev_err(&info->dev, "Unable to add afu char device: %d\n", rc);
509 static void ocxl_file_make_invisible(struct ocxl_file_info *info)
511 cdev_del(&info->cdev);
514 int ocxl_file_register_afu(struct ocxl_afu *afu)
518 struct ocxl_file_info *info;
519 struct ocxl_fn *fn = afu->fn;
520 struct pci_dev *pci_dev = to_pci_dev(fn->dev.parent);
522 info = kzalloc(sizeof(*info), GFP_KERNEL);
526 minor = allocate_minor(info);
532 info->dev.parent = &fn->dev;
533 info->dev.devt = MKDEV(MAJOR(ocxl_dev), minor);
534 info->dev.class = ocxl_class;
535 info->dev.release = info_release;
540 rc = dev_set_name(&info->dev, "%s.%s.%hhu",
541 afu->config.name, dev_name(&pci_dev->dev), afu->config.idx);
545 rc = device_register(&info->dev);
549 rc = ocxl_sysfs_register_afu(info);
553 rc = ocxl_file_make_visible(info);
557 ocxl_afu_set_private(afu, info);
562 ocxl_sysfs_unregister_afu(info); // safe to call even if register failed
563 device_unregister(&info->dev);
571 void ocxl_file_unregister_afu(struct ocxl_afu *afu)
573 struct ocxl_file_info *info = ocxl_afu_get_private(afu);
578 ocxl_file_make_invisible(info);
579 ocxl_sysfs_unregister_afu(info);
580 device_unregister(&info->dev);
583 static char *ocxl_devnode(struct device *dev, umode_t *mode)
585 return kasprintf(GFP_KERNEL, "ocxl/%s", dev_name(dev));
588 int ocxl_file_init(void)
592 mutex_init(&minors_idr_lock);
593 idr_init(&minors_idr);
595 rc = alloc_chrdev_region(&ocxl_dev, 0, OCXL_NUM_MINORS, "ocxl");
597 pr_err("Unable to allocate ocxl major number: %d\n", rc);
601 ocxl_class = class_create(THIS_MODULE, "ocxl");
602 if (IS_ERR(ocxl_class)) {
603 pr_err("Unable to create ocxl class\n");
604 unregister_chrdev_region(ocxl_dev, OCXL_NUM_MINORS);
605 return PTR_ERR(ocxl_class);
608 ocxl_class->devnode = ocxl_devnode;
612 void ocxl_file_exit(void)
614 class_destroy(ocxl_class);
615 unregister_chrdev_region(ocxl_dev, OCXL_NUM_MINORS);
616 idr_destroy(&minors_idr);