blob: 17b433f1ce23b7deeb2e3f35139d3bef57ef20d0 [file] [log] [blame]
Ian Munsief204e0b2014-10-08 19:55:02 +11001/*
2 * Copyright 2014 IBM Corp.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
9
10#include <linux/spinlock.h>
11#include <linux/module.h>
12#include <linux/export.h>
13#include <linux/kernel.h>
14#include <linux/bitmap.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010015#include <linux/sched/signal.h>
Ian Munsief204e0b2014-10-08 19:55:02 +110016#include <linux/poll.h>
17#include <linux/pid.h>
18#include <linux/fs.h>
19#include <linux/mm.h>
20#include <linux/slab.h>
Christophe Lombard6dd2d232017-04-07 16:11:55 +020021#include <linux/sched/mm.h>
Ian Munsief204e0b2014-10-08 19:55:02 +110022#include <asm/cputable.h>
23#include <asm/current.h>
24#include <asm/copro.h>
25
26#include "cxl.h"
Ian Munsie9bcf28c2015-01-09 20:34:36 +110027#include "trace.h"
Ian Munsief204e0b2014-10-08 19:55:02 +110028
29#define CXL_NUM_MINORS 256 /* Total to reserve */
Ian Munsief204e0b2014-10-08 19:55:02 +110030
Ian Munsief204e0b2014-10-08 19:55:02 +110031#define CXL_AFU_MINOR_D(afu) (CXL_CARD_MINOR(afu->adapter) + 1 + (3 * afu->slice))
32#define CXL_AFU_MINOR_M(afu) (CXL_AFU_MINOR_D(afu) + 1)
33#define CXL_AFU_MINOR_S(afu) (CXL_AFU_MINOR_D(afu) + 2)
34#define CXL_AFU_MKDEV_D(afu) MKDEV(MAJOR(cxl_dev), CXL_AFU_MINOR_D(afu))
35#define CXL_AFU_MKDEV_M(afu) MKDEV(MAJOR(cxl_dev), CXL_AFU_MINOR_M(afu))
36#define CXL_AFU_MKDEV_S(afu) MKDEV(MAJOR(cxl_dev), CXL_AFU_MINOR_S(afu))
37
Ian Munsief204e0b2014-10-08 19:55:02 +110038#define CXL_DEVT_AFU(dev) ((MINOR(dev) % CXL_DEV_MINORS - 1) / 3)
39
40#define CXL_DEVT_IS_CARD(dev) (MINOR(dev) % CXL_DEV_MINORS == 0)
41
42static dev_t cxl_dev;
43
44static struct class *cxl_class;
45
46static int __afu_open(struct inode *inode, struct file *file, bool master)
47{
48 struct cxl *adapter;
49 struct cxl_afu *afu;
50 struct cxl_context *ctx;
51 int adapter_num = CXL_DEVT_ADAPTER(inode->i_rdev);
52 int slice = CXL_DEVT_AFU(inode->i_rdev);
53 int rc = -ENODEV;
54
55 pr_devel("afu_open afu%i.%i\n", slice, adapter_num);
56
57 if (!(adapter = get_cxl_adapter(adapter_num)))
58 return -ENODEV;
59
60 if (slice > adapter->slices)
61 goto err_put_adapter;
62
63 spin_lock(&adapter->afu_list_lock);
64 if (!(afu = adapter->afu[slice])) {
65 spin_unlock(&adapter->afu_list_lock);
66 goto err_put_adapter;
67 }
Vaibhav Jain1b5df592015-11-16 09:33:45 +053068
69 /*
70 * taking a ref to the afu so that it doesn't go away
71 * for rest of the function. This ref is released before
72 * we return.
73 */
74 cxl_afu_get(afu);
Ian Munsief204e0b2014-10-08 19:55:02 +110075 spin_unlock(&adapter->afu_list_lock);
76
77 if (!afu->current_mode)
78 goto err_put_afu;
79
Christophe Lombard0d400f72016-03-04 12:26:41 +010080 if (!cxl_ops->link_ok(adapter, afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +100081 rc = -EIO;
82 goto err_put_afu;
83 }
84
Ian Munsief204e0b2014-10-08 19:55:02 +110085 if (!(ctx = cxl_context_alloc())) {
86 rc = -ENOMEM;
87 goto err_put_afu;
88 }
89
Frederic Barratbdecf762016-11-18 23:00:31 +110090 rc = cxl_context_init(ctx, afu, master);
91 if (rc)
Ian Munsief204e0b2014-10-08 19:55:02 +110092 goto err_put_afu;
93
Frederic Barratbdecf762016-11-18 23:00:31 +110094 cxl_context_set_mapping(ctx, inode->i_mapping);
95
Ian Munsief204e0b2014-10-08 19:55:02 +110096 pr_devel("afu_open pe: %i\n", ctx->pe);
97 file->private_data = ctx;
98 cxl_ctx_get();
99
Vaibhav Jain1b5df592015-11-16 09:33:45 +0530100 /* indicate success */
101 rc = 0;
Ian Munsief204e0b2014-10-08 19:55:02 +1100102
103err_put_afu:
Vaibhav Jain1b5df592015-11-16 09:33:45 +0530104 /* release the ref taken earlier */
105 cxl_afu_put(afu);
Ian Munsief204e0b2014-10-08 19:55:02 +1100106err_put_adapter:
107 put_device(&adapter->dev);
108 return rc;
109}
Michael Neuling05203362015-05-27 16:07:17 +1000110
111int afu_open(struct inode *inode, struct file *file)
Ian Munsief204e0b2014-10-08 19:55:02 +1100112{
113 return __afu_open(inode, file, false);
114}
115
116static int afu_master_open(struct inode *inode, struct file *file)
117{
118 return __afu_open(inode, file, true);
119}
120
Michael Neuling05203362015-05-27 16:07:17 +1000121int afu_release(struct inode *inode, struct file *file)
Ian Munsief204e0b2014-10-08 19:55:02 +1100122{
123 struct cxl_context *ctx = file->private_data;
124
125 pr_devel("%s: closing cxl file descriptor. pe: %i\n",
126 __func__, ctx->pe);
127 cxl_context_detach(ctx);
128
Andrew Donnellan5f81b952015-09-30 11:58:07 +1000129
130 /*
131 * Delete the context's mapping pointer, unless it's created by the
132 * kernel API, in which case leave it so it can be freed by reclaim_ctx()
133 */
134 if (!ctx->kernelapi) {
135 mutex_lock(&ctx->mapping_lock);
136 ctx->mapping = NULL;
137 mutex_unlock(&ctx->mapping_lock);
138 }
Ian Munsieb1234292014-12-08 19:18:01 +1100139
Ian Munsief204e0b2014-10-08 19:55:02 +1100140 /*
141 * At this this point all bottom halfs have finished and we should be
142 * getting no more IRQs from the hardware for this context. Once it's
143 * removed from the IDR (and RCU synchronised) it's safe to free the
144 * sstp and context.
145 */
146 cxl_context_free(ctx);
147
Ian Munsief204e0b2014-10-08 19:55:02 +1100148 return 0;
149}
150
151static long afu_ioctl_start_work(struct cxl_context *ctx,
152 struct cxl_ioctl_start_work __user *uwork)
153{
154 struct cxl_ioctl_start_work work;
155 u64 amr = 0;
156 int rc;
157
158 pr_devel("%s: pe: %i\n", __func__, ctx->pe);
159
Ian Munsie0712dc72015-01-07 16:33:04 +1100160 /* Do this outside the status_mutex to avoid a circular dependency with
161 * the locking in cxl_mmap_fault() */
Ian Munsief204e0b2014-10-08 19:55:02 +1100162 if (copy_from_user(&work, uwork,
163 sizeof(struct cxl_ioctl_start_work))) {
164 rc = -EFAULT;
165 goto out;
166 }
167
Ian Munsie0712dc72015-01-07 16:33:04 +1100168 mutex_lock(&ctx->status_mutex);
169 if (ctx->status != OPENED) {
170 rc = -EIO;
171 goto out;
172 }
173
Ian Munsief204e0b2014-10-08 19:55:02 +1100174 /*
175 * if any of the reserved fields are set or any of the unused
176 * flags are set it's invalid
177 */
178 if (work.reserved1 || work.reserved2 || work.reserved3 ||
179 work.reserved4 || work.reserved5 || work.reserved6 ||
180 (work.flags & ~CXL_START_WORK_ALL)) {
181 rc = -EINVAL;
182 goto out;
183 }
184
185 if (!(work.flags & CXL_START_WORK_NUM_IRQS))
186 work.num_interrupts = ctx->afu->pp_irqs;
187 else if ((work.num_interrupts < ctx->afu->pp_irqs) ||
188 (work.num_interrupts > ctx->afu->irqs_max)) {
189 rc = -EINVAL;
190 goto out;
191 }
192 if ((rc = afu_register_irqs(ctx, work.num_interrupts)))
193 goto out;
194
195 if (work.flags & CXL_START_WORK_AMR)
196 amr = work.amr & mfspr(SPRN_UAMOR);
197
Ian Munsied9232a32015-07-23 16:43:56 +1000198 ctx->mmio_err_ff = !!(work.flags & CXL_START_WORK_ERR_FF);
199
Ian Munsief204e0b2014-10-08 19:55:02 +1100200 /*
Vaibhav Jaina05b82d2016-10-21 14:53:53 +0530201 * Increment the mapped context count for adapter. This also checks
202 * if adapter_context_lock is taken.
203 */
204 rc = cxl_adapter_context_get(ctx->afu->adapter);
205 if (rc) {
206 afu_release_irqs(ctx, ctx);
207 goto out;
208 }
209
210 /*
Ian Munsief204e0b2014-10-08 19:55:02 +1100211 * We grab the PID here and not in the file open to allow for the case
212 * where a process (master, some daemon, etc) has opened the chardev on
213 * behalf of another process, so the AFU's mm gets bound to the process
214 * that performs this ioctl and not the process that opened the file.
Vaibhav Jain7b8ad492015-11-24 16:26:18 +0530215 * Also we grab the PID of the group leader so that if the task that
216 * has performed the attach operation exits the mm context of the
217 * process is still accessible.
Ian Munsief204e0b2014-10-08 19:55:02 +1100218 */
Vaibhav Jain7b8ad492015-11-24 16:26:18 +0530219 ctx->pid = get_task_pid(current, PIDTYPE_PID);
Ian Munsief204e0b2014-10-08 19:55:02 +1100220
Christophe Lombard6dd2d232017-04-07 16:11:55 +0200221 /* acquire a reference to the task's mm */
222 ctx->mm = get_task_mm(current);
223
224 /* ensure this mm_struct can't be freed */
225 cxl_context_mm_count_get(ctx);
226
227 /* decrement the use count */
228 if (ctx->mm)
229 mmput(ctx->mm);
Vaibhav Jain70b565b2016-10-14 15:08:36 +0530230
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100231 trace_cxl_attach(ctx, work.work_element_descriptor, work.num_interrupts, amr);
232
Frederic Barrat5be587b2016-03-04 12:26:28 +0100233 if ((rc = cxl_ops->attach_process(ctx, false, work.work_element_descriptor,
234 amr))) {
Michael Neuling64288322015-05-27 16:07:07 +1000235 afu_release_irqs(ctx, ctx);
Vaibhav Jain70b565b2016-10-14 15:08:36 +0530236 cxl_adapter_context_put(ctx->afu->adapter);
Vaibhav Jaina05b82d2016-10-21 14:53:53 +0530237 put_pid(ctx->pid);
Christophe Lombard6dd2d232017-04-07 16:11:55 +0200238 ctx->pid = NULL;
239 cxl_context_mm_count_put(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100240 goto out;
Ian Munsie456295e2014-12-08 19:17:57 +1100241 }
Ian Munsief204e0b2014-10-08 19:55:02 +1100242
243 ctx->status = STARTED;
244 rc = 0;
245out:
246 mutex_unlock(&ctx->status_mutex);
247 return rc;
248}
Frederic Barrat5be587b2016-03-04 12:26:28 +0100249
Ian Munsief204e0b2014-10-08 19:55:02 +1100250static long afu_ioctl_process_element(struct cxl_context *ctx,
251 int __user *upe)
252{
253 pr_devel("%s: pe: %i\n", __func__, ctx->pe);
254
Christophe Lombard14baf4d2016-03-04 12:26:36 +0100255 if (copy_to_user(upe, &ctx->external_pe, sizeof(__u32)))
Ian Munsief204e0b2014-10-08 19:55:02 +1100256 return -EFAULT;
257
258 return 0;
259}
260
Vaibhav Jain27d4dc72015-04-29 15:47:23 +0530261static long afu_ioctl_get_afu_id(struct cxl_context *ctx,
262 struct cxl_afu_id __user *upafuid)
263{
264 struct cxl_afu_id afuid = { 0 };
265
266 afuid.card_id = ctx->afu->adapter->adapter_num;
267 afuid.afu_offset = ctx->afu->slice;
268 afuid.afu_mode = ctx->afu->current_mode;
269
270 /* set the flag bit in case the afu is a slave */
271 if (ctx->afu->current_mode == CXL_MODE_DIRECTED && !ctx->master)
272 afuid.flags |= CXL_AFUID_FLAG_SLAVE;
273
274 if (copy_to_user(upafuid, &afuid, sizeof(afuid)))
275 return -EFAULT;
276
277 return 0;
278}
279
Michael Neuling05203362015-05-27 16:07:17 +1000280long afu_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Ian Munsief204e0b2014-10-08 19:55:02 +1100281{
282 struct cxl_context *ctx = file->private_data;
283
284 if (ctx->status == CLOSED)
285 return -EIO;
286
Christophe Lombard0d400f72016-03-04 12:26:41 +0100287 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000288 return -EIO;
289
Ian Munsief204e0b2014-10-08 19:55:02 +1100290 pr_devel("afu_ioctl\n");
291 switch (cmd) {
292 case CXL_IOCTL_START_WORK:
293 return afu_ioctl_start_work(ctx, (struct cxl_ioctl_start_work __user *)arg);
294 case CXL_IOCTL_GET_PROCESS_ELEMENT:
295 return afu_ioctl_process_element(ctx, (__u32 __user *)arg);
Vaibhav Jain27d4dc72015-04-29 15:47:23 +0530296 case CXL_IOCTL_GET_AFU_ID:
297 return afu_ioctl_get_afu_id(ctx, (struct cxl_afu_id __user *)
298 arg);
Ian Munsief204e0b2014-10-08 19:55:02 +1100299 }
300 return -EINVAL;
301}
302
Daniel Axtens3d6b0402015-08-07 13:18:18 +1000303static long afu_compat_ioctl(struct file *file, unsigned int cmd,
Ian Munsief204e0b2014-10-08 19:55:02 +1100304 unsigned long arg)
305{
306 return afu_ioctl(file, cmd, arg);
307}
308
Michael Neuling05203362015-05-27 16:07:17 +1000309int afu_mmap(struct file *file, struct vm_area_struct *vm)
Ian Munsief204e0b2014-10-08 19:55:02 +1100310{
311 struct cxl_context *ctx = file->private_data;
312
313 /* AFU must be started before we can MMIO */
314 if (ctx->status != STARTED)
315 return -EIO;
316
Christophe Lombard0d400f72016-03-04 12:26:41 +0100317 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000318 return -EIO;
319
Ian Munsief204e0b2014-10-08 19:55:02 +1100320 return cxl_context_iomap(ctx, vm);
321}
322
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200323static inline bool ctx_event_pending(struct cxl_context *ctx)
324{
325 if (ctx->pending_irq || ctx->pending_fault || ctx->pending_afu_err)
326 return true;
327
328 if (ctx->afu_driver_ops && atomic_read(&ctx->afu_driver_events))
329 return true;
330
331 return false;
332}
333
Michael Neuling05203362015-05-27 16:07:17 +1000334unsigned int afu_poll(struct file *file, struct poll_table_struct *poll)
Ian Munsief204e0b2014-10-08 19:55:02 +1100335{
336 struct cxl_context *ctx = file->private_data;
337 int mask = 0;
338 unsigned long flags;
339
340
341 poll_wait(file, &ctx->wq, poll);
342
343 pr_devel("afu_poll wait done pe: %i\n", ctx->pe);
344
345 spin_lock_irqsave(&ctx->lock, flags);
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200346 if (ctx_event_pending(ctx))
Ian Munsief204e0b2014-10-08 19:55:02 +1100347 mask |= POLLIN | POLLRDNORM;
348 else if (ctx->status == CLOSED)
349 /* Only error on closed when there are no futher events pending
350 */
351 mask |= POLLERR;
352 spin_unlock_irqrestore(&ctx->lock, flags);
353
354 pr_devel("afu_poll pe: %i returning %#x\n", ctx->pe, mask);
355
356 return mask;
357}
358
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200359static ssize_t afu_driver_event_copy(struct cxl_context *ctx,
360 char __user *buf,
361 struct cxl_event *event,
362 struct cxl_event_afu_driver_reserved *pl)
Ian Munsief204e0b2014-10-08 19:55:02 +1100363{
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200364 /* Check event */
365 if (!pl) {
366 ctx->afu_driver_ops->event_delivered(ctx, pl, -EINVAL);
367 return -EFAULT;
368 }
369
370 /* Check event size */
371 event->header.size += pl->data_size;
372 if (event->header.size > CXL_READ_MIN_SIZE) {
373 ctx->afu_driver_ops->event_delivered(ctx, pl, -EINVAL);
374 return -EFAULT;
375 }
376
377 /* Copy event header */
378 if (copy_to_user(buf, event, sizeof(struct cxl_event_header))) {
379 ctx->afu_driver_ops->event_delivered(ctx, pl, -EFAULT);
380 return -EFAULT;
381 }
382
383 /* Copy event data */
384 buf += sizeof(struct cxl_event_header);
385 if (copy_to_user(buf, &pl->data, pl->data_size)) {
386 ctx->afu_driver_ops->event_delivered(ctx, pl, -EFAULT);
387 return -EFAULT;
388 }
389
390 ctx->afu_driver_ops->event_delivered(ctx, pl, 0); /* Success */
391 return event->header.size;
Ian Munsief204e0b2014-10-08 19:55:02 +1100392}
393
Michael Neuling05203362015-05-27 16:07:17 +1000394ssize_t afu_read(struct file *file, char __user *buf, size_t count,
Ian Munsief204e0b2014-10-08 19:55:02 +1100395 loff_t *off)
396{
397 struct cxl_context *ctx = file->private_data;
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200398 struct cxl_event_afu_driver_reserved *pl = NULL;
Ian Munsief204e0b2014-10-08 19:55:02 +1100399 struct cxl_event event;
400 unsigned long flags;
Ian Munsied53ba6b2014-10-09 11:17:46 +1100401 int rc;
Ian Munsief204e0b2014-10-08 19:55:02 +1100402 DEFINE_WAIT(wait);
403
Christophe Lombard0d400f72016-03-04 12:26:41 +0100404 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000405 return -EIO;
406
Ian Munsief204e0b2014-10-08 19:55:02 +1100407 if (count < CXL_READ_MIN_SIZE)
408 return -EINVAL;
409
410 spin_lock_irqsave(&ctx->lock, flags);
411
412 for (;;) {
413 prepare_to_wait(&ctx->wq, &wait, TASK_INTERRUPTIBLE);
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200414 if (ctx_event_pending(ctx) || (ctx->status == CLOSED))
Ian Munsief204e0b2014-10-08 19:55:02 +1100415 break;
416
Christophe Lombard0d400f72016-03-04 12:26:41 +0100417 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000418 rc = -EIO;
419 goto out;
420 }
421
Ian Munsied53ba6b2014-10-09 11:17:46 +1100422 if (file->f_flags & O_NONBLOCK) {
423 rc = -EAGAIN;
424 goto out;
425 }
426
427 if (signal_pending(current)) {
428 rc = -ERESTARTSYS;
429 goto out;
430 }
431
Ian Munsief204e0b2014-10-08 19:55:02 +1100432 spin_unlock_irqrestore(&ctx->lock, flags);
Ian Munsief204e0b2014-10-08 19:55:02 +1100433 pr_devel("afu_read going to sleep...\n");
434 schedule();
435 pr_devel("afu_read woken up\n");
436 spin_lock_irqsave(&ctx->lock, flags);
437 }
438
439 finish_wait(&ctx->wq, &wait);
440
441 memset(&event, 0, sizeof(event));
442 event.header.process_element = ctx->pe;
443 event.header.size = sizeof(struct cxl_event_header);
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200444 if (ctx->afu_driver_ops && atomic_read(&ctx->afu_driver_events)) {
445 pr_devel("afu_read delivering AFU driver specific event\n");
446 pl = ctx->afu_driver_ops->fetch_event(ctx);
447 atomic_dec(&ctx->afu_driver_events);
448 event.header.type = CXL_EVENT_AFU_DRIVER;
449 } else if (ctx->pending_irq) {
Ian Munsief204e0b2014-10-08 19:55:02 +1100450 pr_devel("afu_read delivering AFU interrupt\n");
451 event.header.size += sizeof(struct cxl_event_afu_interrupt);
452 event.header.type = CXL_EVENT_AFU_INTERRUPT;
453 event.irq.irq = find_first_bit(ctx->irq_bitmap, ctx->irq_count) + 1;
454 clear_bit(event.irq.irq - 1, ctx->irq_bitmap);
455 if (bitmap_empty(ctx->irq_bitmap, ctx->irq_count))
456 ctx->pending_irq = false;
457 } else if (ctx->pending_fault) {
458 pr_devel("afu_read delivering data storage fault\n");
459 event.header.size += sizeof(struct cxl_event_data_storage);
460 event.header.type = CXL_EVENT_DATA_STORAGE;
461 event.fault.addr = ctx->fault_addr;
462 event.fault.dsisr = ctx->fault_dsisr;
463 ctx->pending_fault = false;
464 } else if (ctx->pending_afu_err) {
465 pr_devel("afu_read delivering afu error\n");
466 event.header.size += sizeof(struct cxl_event_afu_error);
467 event.header.type = CXL_EVENT_AFU_ERROR;
468 event.afu_error.error = ctx->afu_err;
469 ctx->pending_afu_err = false;
470 } else if (ctx->status == CLOSED) {
471 pr_devel("afu_read fatal error\n");
472 spin_unlock_irqrestore(&ctx->lock, flags);
473 return -EIO;
474 } else
475 WARN(1, "afu_read must be buggy\n");
476
477 spin_unlock_irqrestore(&ctx->lock, flags);
478
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200479 if (event.header.type == CXL_EVENT_AFU_DRIVER)
480 return afu_driver_event_copy(ctx, buf, &event, pl);
481
Ian Munsief204e0b2014-10-08 19:55:02 +1100482 if (copy_to_user(buf, &event, event.header.size))
483 return -EFAULT;
484 return event.header.size;
Ian Munsied53ba6b2014-10-09 11:17:46 +1100485
486out:
487 finish_wait(&ctx->wq, &wait);
488 spin_unlock_irqrestore(&ctx->lock, flags);
489 return rc;
Ian Munsief204e0b2014-10-08 19:55:02 +1100490}
491
Michael Neuling05203362015-05-27 16:07:17 +1000492/*
493 * Note: if this is updated, we need to update api.c to patch the new ones in
494 * too
495 */
496const struct file_operations afu_fops = {
Ian Munsief204e0b2014-10-08 19:55:02 +1100497 .owner = THIS_MODULE,
498 .open = afu_open,
499 .poll = afu_poll,
500 .read = afu_read,
501 .release = afu_release,
502 .unlocked_ioctl = afu_ioctl,
503 .compat_ioctl = afu_compat_ioctl,
504 .mmap = afu_mmap,
505};
506
Daniel Axtens3d6b0402015-08-07 13:18:18 +1000507static const struct file_operations afu_master_fops = {
Ian Munsief204e0b2014-10-08 19:55:02 +1100508 .owner = THIS_MODULE,
509 .open = afu_master_open,
510 .poll = afu_poll,
511 .read = afu_read,
512 .release = afu_release,
513 .unlocked_ioctl = afu_ioctl,
514 .compat_ioctl = afu_compat_ioctl,
515 .mmap = afu_mmap,
516};
517
518
519static char *cxl_devnode(struct device *dev, umode_t *mode)
520{
Christophe Lombard594ff7d2016-03-04 12:26:38 +0100521 if (cpu_has_feature(CPU_FTR_HVMODE) &&
522 CXL_DEVT_IS_CARD(dev->devt)) {
Ian Munsief204e0b2014-10-08 19:55:02 +1100523 /*
524 * These minor numbers will eventually be used to program the
525 * PSL and AFUs once we have dynamic reprogramming support
526 */
527 return NULL;
528 }
529 return kasprintf(GFP_KERNEL, "cxl/%s", dev_name(dev));
530}
531
532extern struct class *cxl_class;
533
534static int cxl_add_chardev(struct cxl_afu *afu, dev_t devt, struct cdev *cdev,
535 struct device **chardev, char *postfix, char *desc,
536 const struct file_operations *fops)
537{
538 struct device *dev;
539 int rc;
540
541 cdev_init(cdev, fops);
542 if ((rc = cdev_add(cdev, devt, 1))) {
543 dev_err(&afu->dev, "Unable to add %s chardev: %i\n", desc, rc);
544 return rc;
545 }
546
547 dev = device_create(cxl_class, &afu->dev, devt, afu,
548 "afu%i.%i%s", afu->adapter->adapter_num, afu->slice, postfix);
549 if (IS_ERR(dev)) {
550 dev_err(&afu->dev, "Unable to create %s chardev in sysfs: %i\n", desc, rc);
551 rc = PTR_ERR(dev);
552 goto err;
553 }
554
555 *chardev = dev;
556
557 return 0;
558err:
559 cdev_del(cdev);
560 return rc;
561}
562
563int cxl_chardev_d_afu_add(struct cxl_afu *afu)
564{
565 return cxl_add_chardev(afu, CXL_AFU_MKDEV_D(afu), &afu->afu_cdev_d,
566 &afu->chardev_d, "d", "dedicated",
567 &afu_master_fops); /* Uses master fops */
568}
569
570int cxl_chardev_m_afu_add(struct cxl_afu *afu)
571{
572 return cxl_add_chardev(afu, CXL_AFU_MKDEV_M(afu), &afu->afu_cdev_m,
573 &afu->chardev_m, "m", "master",
574 &afu_master_fops);
575}
576
577int cxl_chardev_s_afu_add(struct cxl_afu *afu)
578{
579 return cxl_add_chardev(afu, CXL_AFU_MKDEV_S(afu), &afu->afu_cdev_s,
580 &afu->chardev_s, "s", "shared",
581 &afu_fops);
582}
583
584void cxl_chardev_afu_remove(struct cxl_afu *afu)
585{
586 if (afu->chardev_d) {
587 cdev_del(&afu->afu_cdev_d);
588 device_unregister(afu->chardev_d);
589 afu->chardev_d = NULL;
590 }
591 if (afu->chardev_m) {
592 cdev_del(&afu->afu_cdev_m);
593 device_unregister(afu->chardev_m);
594 afu->chardev_m = NULL;
595 }
596 if (afu->chardev_s) {
597 cdev_del(&afu->afu_cdev_s);
598 device_unregister(afu->chardev_s);
599 afu->chardev_s = NULL;
600 }
601}
602
603int cxl_register_afu(struct cxl_afu *afu)
604{
605 afu->dev.class = cxl_class;
606
607 return device_register(&afu->dev);
608}
609
610int cxl_register_adapter(struct cxl *adapter)
611{
612 adapter->dev.class = cxl_class;
613
614 /*
615 * Future: When we support dynamically reprogramming the PSL & AFU we
616 * will expose the interface to do that via a chardev:
617 * adapter->dev.devt = CXL_CARD_MKDEV(adapter);
618 */
619
620 return device_register(&adapter->dev);
621}
622
Christophe Lombard594ff7d2016-03-04 12:26:38 +0100623dev_t cxl_get_dev(void)
624{
625 return cxl_dev;
626}
627
Ian Munsief204e0b2014-10-08 19:55:02 +1100628int __init cxl_file_init(void)
629{
630 int rc;
631
632 /*
633 * If these change we really need to update API. Either change some
634 * flags or update API version number CXL_API_VERSION.
635 */
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200636 BUILD_BUG_ON(CXL_API_VERSION != 3);
Ian Munsief204e0b2014-10-08 19:55:02 +1100637 BUILD_BUG_ON(sizeof(struct cxl_ioctl_start_work) != 64);
638 BUILD_BUG_ON(sizeof(struct cxl_event_header) != 8);
639 BUILD_BUG_ON(sizeof(struct cxl_event_afu_interrupt) != 8);
640 BUILD_BUG_ON(sizeof(struct cxl_event_data_storage) != 32);
641 BUILD_BUG_ON(sizeof(struct cxl_event_afu_error) != 16);
642
643 if ((rc = alloc_chrdev_region(&cxl_dev, 0, CXL_NUM_MINORS, "cxl"))) {
644 pr_err("Unable to allocate CXL major number: %i\n", rc);
645 return rc;
646 }
647
648 pr_devel("CXL device allocated, MAJOR %i\n", MAJOR(cxl_dev));
649
650 cxl_class = class_create(THIS_MODULE, "cxl");
651 if (IS_ERR(cxl_class)) {
652 pr_err("Unable to create CXL class\n");
653 rc = PTR_ERR(cxl_class);
654 goto err;
655 }
656 cxl_class->devnode = cxl_devnode;
657
658 return 0;
659
660err:
661 unregister_chrdev_region(cxl_dev, CXL_NUM_MINORS);
662 return rc;
663}
664
665void cxl_file_exit(void)
666{
667 unregister_chrdev_region(cxl_dev, CXL_NUM_MINORS);
668 class_destroy(cxl_class);
669}