blob: 0761271d68c5613b23152c03522f6a388950ea86 [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() */
Frederic Barratcec422c2017-06-06 11:43:41 +0200162 if (copy_from_user(&work, uwork, sizeof(work)))
163 return -EFAULT;
Ian Munsief204e0b2014-10-08 19:55:02 +1100164
Ian Munsie0712dc72015-01-07 16:33:04 +1100165 mutex_lock(&ctx->status_mutex);
166 if (ctx->status != OPENED) {
167 rc = -EIO;
168 goto out;
169 }
170
Ian Munsief204e0b2014-10-08 19:55:02 +1100171 /*
172 * if any of the reserved fields are set or any of the unused
173 * flags are set it's invalid
174 */
175 if (work.reserved1 || work.reserved2 || work.reserved3 ||
176 work.reserved4 || work.reserved5 || work.reserved6 ||
177 (work.flags & ~CXL_START_WORK_ALL)) {
178 rc = -EINVAL;
179 goto out;
180 }
181
182 if (!(work.flags & CXL_START_WORK_NUM_IRQS))
183 work.num_interrupts = ctx->afu->pp_irqs;
184 else if ((work.num_interrupts < ctx->afu->pp_irqs) ||
185 (work.num_interrupts > ctx->afu->irqs_max)) {
186 rc = -EINVAL;
187 goto out;
188 }
189 if ((rc = afu_register_irqs(ctx, work.num_interrupts)))
190 goto out;
191
192 if (work.flags & CXL_START_WORK_AMR)
193 amr = work.amr & mfspr(SPRN_UAMOR);
194
Ian Munsied9232a32015-07-23 16:43:56 +1000195 ctx->mmio_err_ff = !!(work.flags & CXL_START_WORK_ERR_FF);
196
Ian Munsief204e0b2014-10-08 19:55:02 +1100197 /*
Vaibhav Jaina05b82d2016-10-21 14:53:53 +0530198 * Increment the mapped context count for adapter. This also checks
199 * if adapter_context_lock is taken.
200 */
201 rc = cxl_adapter_context_get(ctx->afu->adapter);
202 if (rc) {
203 afu_release_irqs(ctx, ctx);
204 goto out;
205 }
206
207 /*
Ian Munsief204e0b2014-10-08 19:55:02 +1100208 * We grab the PID here and not in the file open to allow for the case
209 * where a process (master, some daemon, etc) has opened the chardev on
210 * behalf of another process, so the AFU's mm gets bound to the process
211 * that performs this ioctl and not the process that opened the file.
Vaibhav Jain7b8ad492015-11-24 16:26:18 +0530212 * Also we grab the PID of the group leader so that if the task that
213 * has performed the attach operation exits the mm context of the
214 * process is still accessible.
Ian Munsief204e0b2014-10-08 19:55:02 +1100215 */
Vaibhav Jain7b8ad492015-11-24 16:26:18 +0530216 ctx->pid = get_task_pid(current, PIDTYPE_PID);
Ian Munsief204e0b2014-10-08 19:55:02 +1100217
Christophe Lombard6dd2d232017-04-07 16:11:55 +0200218 /* acquire a reference to the task's mm */
219 ctx->mm = get_task_mm(current);
220
221 /* ensure this mm_struct can't be freed */
222 cxl_context_mm_count_get(ctx);
223
224 /* decrement the use count */
225 if (ctx->mm)
226 mmput(ctx->mm);
Vaibhav Jain70b565b2016-10-14 15:08:36 +0530227
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100228 trace_cxl_attach(ctx, work.work_element_descriptor, work.num_interrupts, amr);
229
Frederic Barrat5be587b2016-03-04 12:26:28 +0100230 if ((rc = cxl_ops->attach_process(ctx, false, work.work_element_descriptor,
231 amr))) {
Michael Neuling64288322015-05-27 16:07:07 +1000232 afu_release_irqs(ctx, ctx);
Vaibhav Jain70b565b2016-10-14 15:08:36 +0530233 cxl_adapter_context_put(ctx->afu->adapter);
Vaibhav Jaina05b82d2016-10-21 14:53:53 +0530234 put_pid(ctx->pid);
Christophe Lombard6dd2d232017-04-07 16:11:55 +0200235 ctx->pid = NULL;
236 cxl_context_mm_count_put(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100237 goto out;
Ian Munsie456295e2014-12-08 19:17:57 +1100238 }
Ian Munsief204e0b2014-10-08 19:55:02 +1100239
240 ctx->status = STARTED;
241 rc = 0;
242out:
243 mutex_unlock(&ctx->status_mutex);
244 return rc;
245}
Frederic Barrat5be587b2016-03-04 12:26:28 +0100246
Ian Munsief204e0b2014-10-08 19:55:02 +1100247static long afu_ioctl_process_element(struct cxl_context *ctx,
248 int __user *upe)
249{
250 pr_devel("%s: pe: %i\n", __func__, ctx->pe);
251
Christophe Lombard14baf4d2016-03-04 12:26:36 +0100252 if (copy_to_user(upe, &ctx->external_pe, sizeof(__u32)))
Ian Munsief204e0b2014-10-08 19:55:02 +1100253 return -EFAULT;
254
255 return 0;
256}
257
Vaibhav Jain27d4dc72015-04-29 15:47:23 +0530258static long afu_ioctl_get_afu_id(struct cxl_context *ctx,
259 struct cxl_afu_id __user *upafuid)
260{
261 struct cxl_afu_id afuid = { 0 };
262
263 afuid.card_id = ctx->afu->adapter->adapter_num;
264 afuid.afu_offset = ctx->afu->slice;
265 afuid.afu_mode = ctx->afu->current_mode;
266
267 /* set the flag bit in case the afu is a slave */
268 if (ctx->afu->current_mode == CXL_MODE_DIRECTED && !ctx->master)
269 afuid.flags |= CXL_AFUID_FLAG_SLAVE;
270
271 if (copy_to_user(upafuid, &afuid, sizeof(afuid)))
272 return -EFAULT;
273
274 return 0;
275}
276
Michael Neuling05203362015-05-27 16:07:17 +1000277long afu_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Ian Munsief204e0b2014-10-08 19:55:02 +1100278{
279 struct cxl_context *ctx = file->private_data;
280
281 if (ctx->status == CLOSED)
282 return -EIO;
283
Christophe Lombard0d400f72016-03-04 12:26:41 +0100284 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000285 return -EIO;
286
Ian Munsief204e0b2014-10-08 19:55:02 +1100287 pr_devel("afu_ioctl\n");
288 switch (cmd) {
289 case CXL_IOCTL_START_WORK:
290 return afu_ioctl_start_work(ctx, (struct cxl_ioctl_start_work __user *)arg);
291 case CXL_IOCTL_GET_PROCESS_ELEMENT:
292 return afu_ioctl_process_element(ctx, (__u32 __user *)arg);
Vaibhav Jain27d4dc72015-04-29 15:47:23 +0530293 case CXL_IOCTL_GET_AFU_ID:
294 return afu_ioctl_get_afu_id(ctx, (struct cxl_afu_id __user *)
295 arg);
Ian Munsief204e0b2014-10-08 19:55:02 +1100296 }
297 return -EINVAL;
298}
299
Daniel Axtens3d6b0402015-08-07 13:18:18 +1000300static long afu_compat_ioctl(struct file *file, unsigned int cmd,
Ian Munsief204e0b2014-10-08 19:55:02 +1100301 unsigned long arg)
302{
303 return afu_ioctl(file, cmd, arg);
304}
305
Michael Neuling05203362015-05-27 16:07:17 +1000306int afu_mmap(struct file *file, struct vm_area_struct *vm)
Ian Munsief204e0b2014-10-08 19:55:02 +1100307{
308 struct cxl_context *ctx = file->private_data;
309
310 /* AFU must be started before we can MMIO */
311 if (ctx->status != STARTED)
312 return -EIO;
313
Christophe Lombard0d400f72016-03-04 12:26:41 +0100314 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000315 return -EIO;
316
Ian Munsief204e0b2014-10-08 19:55:02 +1100317 return cxl_context_iomap(ctx, vm);
318}
319
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200320static inline bool ctx_event_pending(struct cxl_context *ctx)
321{
322 if (ctx->pending_irq || ctx->pending_fault || ctx->pending_afu_err)
323 return true;
324
325 if (ctx->afu_driver_ops && atomic_read(&ctx->afu_driver_events))
326 return true;
327
328 return false;
329}
330
Michael Neuling05203362015-05-27 16:07:17 +1000331unsigned int afu_poll(struct file *file, struct poll_table_struct *poll)
Ian Munsief204e0b2014-10-08 19:55:02 +1100332{
333 struct cxl_context *ctx = file->private_data;
334 int mask = 0;
335 unsigned long flags;
336
337
338 poll_wait(file, &ctx->wq, poll);
339
340 pr_devel("afu_poll wait done pe: %i\n", ctx->pe);
341
342 spin_lock_irqsave(&ctx->lock, flags);
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200343 if (ctx_event_pending(ctx))
Ian Munsief204e0b2014-10-08 19:55:02 +1100344 mask |= POLLIN | POLLRDNORM;
345 else if (ctx->status == CLOSED)
346 /* Only error on closed when there are no futher events pending
347 */
348 mask |= POLLERR;
349 spin_unlock_irqrestore(&ctx->lock, flags);
350
351 pr_devel("afu_poll pe: %i returning %#x\n", ctx->pe, mask);
352
353 return mask;
354}
355
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200356static ssize_t afu_driver_event_copy(struct cxl_context *ctx,
357 char __user *buf,
358 struct cxl_event *event,
359 struct cxl_event_afu_driver_reserved *pl)
Ian Munsief204e0b2014-10-08 19:55:02 +1100360{
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200361 /* Check event */
362 if (!pl) {
363 ctx->afu_driver_ops->event_delivered(ctx, pl, -EINVAL);
364 return -EFAULT;
365 }
366
367 /* Check event size */
368 event->header.size += pl->data_size;
369 if (event->header.size > CXL_READ_MIN_SIZE) {
370 ctx->afu_driver_ops->event_delivered(ctx, pl, -EINVAL);
371 return -EFAULT;
372 }
373
374 /* Copy event header */
375 if (copy_to_user(buf, event, sizeof(struct cxl_event_header))) {
376 ctx->afu_driver_ops->event_delivered(ctx, pl, -EFAULT);
377 return -EFAULT;
378 }
379
380 /* Copy event data */
381 buf += sizeof(struct cxl_event_header);
382 if (copy_to_user(buf, &pl->data, pl->data_size)) {
383 ctx->afu_driver_ops->event_delivered(ctx, pl, -EFAULT);
384 return -EFAULT;
385 }
386
387 ctx->afu_driver_ops->event_delivered(ctx, pl, 0); /* Success */
388 return event->header.size;
Ian Munsief204e0b2014-10-08 19:55:02 +1100389}
390
Michael Neuling05203362015-05-27 16:07:17 +1000391ssize_t afu_read(struct file *file, char __user *buf, size_t count,
Ian Munsief204e0b2014-10-08 19:55:02 +1100392 loff_t *off)
393{
394 struct cxl_context *ctx = file->private_data;
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200395 struct cxl_event_afu_driver_reserved *pl = NULL;
Ian Munsief204e0b2014-10-08 19:55:02 +1100396 struct cxl_event event;
397 unsigned long flags;
Ian Munsied53ba6b2014-10-09 11:17:46 +1100398 int rc;
Ian Munsief204e0b2014-10-08 19:55:02 +1100399 DEFINE_WAIT(wait);
400
Christophe Lombard0d400f72016-03-04 12:26:41 +0100401 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000402 return -EIO;
403
Ian Munsief204e0b2014-10-08 19:55:02 +1100404 if (count < CXL_READ_MIN_SIZE)
405 return -EINVAL;
406
407 spin_lock_irqsave(&ctx->lock, flags);
408
409 for (;;) {
410 prepare_to_wait(&ctx->wq, &wait, TASK_INTERRUPTIBLE);
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200411 if (ctx_event_pending(ctx) || (ctx->status == CLOSED))
Ian Munsief204e0b2014-10-08 19:55:02 +1100412 break;
413
Christophe Lombard0d400f72016-03-04 12:26:41 +0100414 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000415 rc = -EIO;
416 goto out;
417 }
418
Ian Munsied53ba6b2014-10-09 11:17:46 +1100419 if (file->f_flags & O_NONBLOCK) {
420 rc = -EAGAIN;
421 goto out;
422 }
423
424 if (signal_pending(current)) {
425 rc = -ERESTARTSYS;
426 goto out;
427 }
428
Ian Munsief204e0b2014-10-08 19:55:02 +1100429 spin_unlock_irqrestore(&ctx->lock, flags);
Ian Munsief204e0b2014-10-08 19:55:02 +1100430 pr_devel("afu_read going to sleep...\n");
431 schedule();
432 pr_devel("afu_read woken up\n");
433 spin_lock_irqsave(&ctx->lock, flags);
434 }
435
436 finish_wait(&ctx->wq, &wait);
437
438 memset(&event, 0, sizeof(event));
439 event.header.process_element = ctx->pe;
440 event.header.size = sizeof(struct cxl_event_header);
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200441 if (ctx->afu_driver_ops && atomic_read(&ctx->afu_driver_events)) {
442 pr_devel("afu_read delivering AFU driver specific event\n");
443 pl = ctx->afu_driver_ops->fetch_event(ctx);
444 atomic_dec(&ctx->afu_driver_events);
445 event.header.type = CXL_EVENT_AFU_DRIVER;
446 } else if (ctx->pending_irq) {
Ian Munsief204e0b2014-10-08 19:55:02 +1100447 pr_devel("afu_read delivering AFU interrupt\n");
448 event.header.size += sizeof(struct cxl_event_afu_interrupt);
449 event.header.type = CXL_EVENT_AFU_INTERRUPT;
450 event.irq.irq = find_first_bit(ctx->irq_bitmap, ctx->irq_count) + 1;
451 clear_bit(event.irq.irq - 1, ctx->irq_bitmap);
452 if (bitmap_empty(ctx->irq_bitmap, ctx->irq_count))
453 ctx->pending_irq = false;
454 } else if (ctx->pending_fault) {
455 pr_devel("afu_read delivering data storage fault\n");
456 event.header.size += sizeof(struct cxl_event_data_storage);
457 event.header.type = CXL_EVENT_DATA_STORAGE;
458 event.fault.addr = ctx->fault_addr;
459 event.fault.dsisr = ctx->fault_dsisr;
460 ctx->pending_fault = false;
461 } else if (ctx->pending_afu_err) {
462 pr_devel("afu_read delivering afu error\n");
463 event.header.size += sizeof(struct cxl_event_afu_error);
464 event.header.type = CXL_EVENT_AFU_ERROR;
465 event.afu_error.error = ctx->afu_err;
466 ctx->pending_afu_err = false;
467 } else if (ctx->status == CLOSED) {
468 pr_devel("afu_read fatal error\n");
469 spin_unlock_irqrestore(&ctx->lock, flags);
470 return -EIO;
471 } else
472 WARN(1, "afu_read must be buggy\n");
473
474 spin_unlock_irqrestore(&ctx->lock, flags);
475
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200476 if (event.header.type == CXL_EVENT_AFU_DRIVER)
477 return afu_driver_event_copy(ctx, buf, &event, pl);
478
Ian Munsief204e0b2014-10-08 19:55:02 +1100479 if (copy_to_user(buf, &event, event.header.size))
480 return -EFAULT;
481 return event.header.size;
Ian Munsied53ba6b2014-10-09 11:17:46 +1100482
483out:
484 finish_wait(&ctx->wq, &wait);
485 spin_unlock_irqrestore(&ctx->lock, flags);
486 return rc;
Ian Munsief204e0b2014-10-08 19:55:02 +1100487}
488
Michael Neuling05203362015-05-27 16:07:17 +1000489/*
490 * Note: if this is updated, we need to update api.c to patch the new ones in
491 * too
492 */
493const struct file_operations afu_fops = {
Ian Munsief204e0b2014-10-08 19:55:02 +1100494 .owner = THIS_MODULE,
495 .open = afu_open,
496 .poll = afu_poll,
497 .read = afu_read,
498 .release = afu_release,
499 .unlocked_ioctl = afu_ioctl,
500 .compat_ioctl = afu_compat_ioctl,
501 .mmap = afu_mmap,
502};
503
Daniel Axtens3d6b0402015-08-07 13:18:18 +1000504static const struct file_operations afu_master_fops = {
Ian Munsief204e0b2014-10-08 19:55:02 +1100505 .owner = THIS_MODULE,
506 .open = afu_master_open,
507 .poll = afu_poll,
508 .read = afu_read,
509 .release = afu_release,
510 .unlocked_ioctl = afu_ioctl,
511 .compat_ioctl = afu_compat_ioctl,
512 .mmap = afu_mmap,
513};
514
515
516static char *cxl_devnode(struct device *dev, umode_t *mode)
517{
Christophe Lombard594ff7d2016-03-04 12:26:38 +0100518 if (cpu_has_feature(CPU_FTR_HVMODE) &&
519 CXL_DEVT_IS_CARD(dev->devt)) {
Ian Munsief204e0b2014-10-08 19:55:02 +1100520 /*
521 * These minor numbers will eventually be used to program the
522 * PSL and AFUs once we have dynamic reprogramming support
523 */
524 return NULL;
525 }
526 return kasprintf(GFP_KERNEL, "cxl/%s", dev_name(dev));
527}
528
529extern struct class *cxl_class;
530
531static int cxl_add_chardev(struct cxl_afu *afu, dev_t devt, struct cdev *cdev,
532 struct device **chardev, char *postfix, char *desc,
533 const struct file_operations *fops)
534{
535 struct device *dev;
536 int rc;
537
538 cdev_init(cdev, fops);
539 if ((rc = cdev_add(cdev, devt, 1))) {
540 dev_err(&afu->dev, "Unable to add %s chardev: %i\n", desc, rc);
541 return rc;
542 }
543
544 dev = device_create(cxl_class, &afu->dev, devt, afu,
545 "afu%i.%i%s", afu->adapter->adapter_num, afu->slice, postfix);
546 if (IS_ERR(dev)) {
547 dev_err(&afu->dev, "Unable to create %s chardev in sysfs: %i\n", desc, rc);
548 rc = PTR_ERR(dev);
549 goto err;
550 }
551
552 *chardev = dev;
553
554 return 0;
555err:
556 cdev_del(cdev);
557 return rc;
558}
559
560int cxl_chardev_d_afu_add(struct cxl_afu *afu)
561{
562 return cxl_add_chardev(afu, CXL_AFU_MKDEV_D(afu), &afu->afu_cdev_d,
563 &afu->chardev_d, "d", "dedicated",
564 &afu_master_fops); /* Uses master fops */
565}
566
567int cxl_chardev_m_afu_add(struct cxl_afu *afu)
568{
569 return cxl_add_chardev(afu, CXL_AFU_MKDEV_M(afu), &afu->afu_cdev_m,
570 &afu->chardev_m, "m", "master",
571 &afu_master_fops);
572}
573
574int cxl_chardev_s_afu_add(struct cxl_afu *afu)
575{
576 return cxl_add_chardev(afu, CXL_AFU_MKDEV_S(afu), &afu->afu_cdev_s,
577 &afu->chardev_s, "s", "shared",
578 &afu_fops);
579}
580
581void cxl_chardev_afu_remove(struct cxl_afu *afu)
582{
583 if (afu->chardev_d) {
584 cdev_del(&afu->afu_cdev_d);
585 device_unregister(afu->chardev_d);
586 afu->chardev_d = NULL;
587 }
588 if (afu->chardev_m) {
589 cdev_del(&afu->afu_cdev_m);
590 device_unregister(afu->chardev_m);
591 afu->chardev_m = NULL;
592 }
593 if (afu->chardev_s) {
594 cdev_del(&afu->afu_cdev_s);
595 device_unregister(afu->chardev_s);
596 afu->chardev_s = NULL;
597 }
598}
599
600int cxl_register_afu(struct cxl_afu *afu)
601{
602 afu->dev.class = cxl_class;
603
604 return device_register(&afu->dev);
605}
606
607int cxl_register_adapter(struct cxl *adapter)
608{
609 adapter->dev.class = cxl_class;
610
611 /*
612 * Future: When we support dynamically reprogramming the PSL & AFU we
613 * will expose the interface to do that via a chardev:
614 * adapter->dev.devt = CXL_CARD_MKDEV(adapter);
615 */
616
617 return device_register(&adapter->dev);
618}
619
Christophe Lombard594ff7d2016-03-04 12:26:38 +0100620dev_t cxl_get_dev(void)
621{
622 return cxl_dev;
623}
624
Ian Munsief204e0b2014-10-08 19:55:02 +1100625int __init cxl_file_init(void)
626{
627 int rc;
628
629 /*
630 * If these change we really need to update API. Either change some
631 * flags or update API version number CXL_API_VERSION.
632 */
Philippe Bergheaudb8102532016-06-23 15:03:53 +0200633 BUILD_BUG_ON(CXL_API_VERSION != 3);
Ian Munsief204e0b2014-10-08 19:55:02 +1100634 BUILD_BUG_ON(sizeof(struct cxl_ioctl_start_work) != 64);
635 BUILD_BUG_ON(sizeof(struct cxl_event_header) != 8);
636 BUILD_BUG_ON(sizeof(struct cxl_event_afu_interrupt) != 8);
637 BUILD_BUG_ON(sizeof(struct cxl_event_data_storage) != 32);
638 BUILD_BUG_ON(sizeof(struct cxl_event_afu_error) != 16);
639
640 if ((rc = alloc_chrdev_region(&cxl_dev, 0, CXL_NUM_MINORS, "cxl"))) {
641 pr_err("Unable to allocate CXL major number: %i\n", rc);
642 return rc;
643 }
644
645 pr_devel("CXL device allocated, MAJOR %i\n", MAJOR(cxl_dev));
646
647 cxl_class = class_create(THIS_MODULE, "cxl");
648 if (IS_ERR(cxl_class)) {
649 pr_err("Unable to create CXL class\n");
650 rc = PTR_ERR(cxl_class);
651 goto err;
652 }
653 cxl_class->devnode = cxl_devnode;
654
655 return 0;
656
657err:
658 unregister_chrdev_region(cxl_dev, CXL_NUM_MINORS);
659 return rc;
660}
661
662void cxl_file_exit(void)
663{
664 unregister_chrdev_region(cxl_dev, CXL_NUM_MINORS);
665 class_destroy(cxl_class);
666}