of: MSI: Simplify irqdomain lookup
[linux/fpc-iii.git] / drivers / misc / cxl / api.c
blob103baf0e0c5bfd9aa23537adf12f6035bb427d86
1 /*
2 * Copyright 2014 IBM Corp.
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 */
10 #include <linux/pci.h>
11 #include <linux/slab.h>
12 #include <linux/anon_inodes.h>
13 #include <linux/file.h>
14 #include <misc/cxl.h>
15 #include <linux/fs.h>
17 #include "cxl.h"
19 struct cxl_context *cxl_dev_context_init(struct pci_dev *dev)
21 struct address_space *mapping;
22 struct cxl_afu *afu;
23 struct cxl_context *ctx;
24 int rc;
26 afu = cxl_pci_to_afu(dev);
28 get_device(&afu->dev);
29 ctx = cxl_context_alloc();
30 if (IS_ERR(ctx)) {
31 rc = PTR_ERR(ctx);
32 goto err_dev;
35 ctx->kernelapi = true;
38 * Make our own address space since we won't have one from the
39 * filesystem like the user api has, and even if we do associate a file
40 * with this context we don't want to use the global anonymous inode's
41 * address space as that can invalidate unrelated users:
43 mapping = kmalloc(sizeof(struct address_space), GFP_KERNEL);
44 if (!mapping) {
45 rc = -ENOMEM;
46 goto err_ctx;
48 address_space_init_once(mapping);
50 /* Make it a slave context. We can promote it later? */
51 rc = cxl_context_init(ctx, afu, false, mapping);
52 if (rc)
53 goto err_mapping;
55 cxl_assign_psn_space(ctx);
57 return ctx;
59 err_mapping:
60 kfree(mapping);
61 err_ctx:
62 kfree(ctx);
63 err_dev:
64 put_device(&afu->dev);
65 return ERR_PTR(rc);
67 EXPORT_SYMBOL_GPL(cxl_dev_context_init);
69 struct cxl_context *cxl_get_context(struct pci_dev *dev)
71 return dev->dev.archdata.cxl_ctx;
73 EXPORT_SYMBOL_GPL(cxl_get_context);
75 struct device *cxl_get_phys_dev(struct pci_dev *dev)
77 struct cxl_afu *afu;
79 afu = cxl_pci_to_afu(dev);
81 return afu->adapter->dev.parent;
83 EXPORT_SYMBOL_GPL(cxl_get_phys_dev);
85 int cxl_release_context(struct cxl_context *ctx)
87 if (ctx->status >= STARTED)
88 return -EBUSY;
90 put_device(&ctx->afu->dev);
92 cxl_context_free(ctx);
94 return 0;
96 EXPORT_SYMBOL_GPL(cxl_release_context);
98 int cxl_allocate_afu_irqs(struct cxl_context *ctx, int num)
100 if (num == 0)
101 num = ctx->afu->pp_irqs;
102 return afu_allocate_irqs(ctx, num);
104 EXPORT_SYMBOL_GPL(cxl_allocate_afu_irqs);
106 void cxl_free_afu_irqs(struct cxl_context *ctx)
108 afu_irq_name_free(ctx);
109 cxl_release_irq_ranges(&ctx->irqs, ctx->afu->adapter);
111 EXPORT_SYMBOL_GPL(cxl_free_afu_irqs);
113 static irq_hw_number_t cxl_find_afu_irq(struct cxl_context *ctx, int num)
115 __u16 range;
116 int r;
118 WARN_ON(num == 0);
120 for (r = 0; r < CXL_IRQ_RANGES; r++) {
121 range = ctx->irqs.range[r];
122 if (num < range) {
123 return ctx->irqs.offset[r] + num;
125 num -= range;
127 return 0;
130 int cxl_map_afu_irq(struct cxl_context *ctx, int num,
131 irq_handler_t handler, void *cookie, char *name)
133 irq_hw_number_t hwirq;
136 * Find interrupt we are to register.
138 hwirq = cxl_find_afu_irq(ctx, num);
139 if (!hwirq)
140 return -ENOENT;
142 return cxl_map_irq(ctx->afu->adapter, hwirq, handler, cookie, name);
144 EXPORT_SYMBOL_GPL(cxl_map_afu_irq);
146 void cxl_unmap_afu_irq(struct cxl_context *ctx, int num, void *cookie)
148 irq_hw_number_t hwirq;
149 unsigned int virq;
151 hwirq = cxl_find_afu_irq(ctx, num);
152 if (!hwirq)
153 return;
155 virq = irq_find_mapping(NULL, hwirq);
156 if (virq)
157 cxl_unmap_irq(virq, cookie);
159 EXPORT_SYMBOL_GPL(cxl_unmap_afu_irq);
162 * Start a context
163 * Code here similar to afu_ioctl_start_work().
165 int cxl_start_context(struct cxl_context *ctx, u64 wed,
166 struct task_struct *task)
168 int rc = 0;
169 bool kernel = true;
171 pr_devel("%s: pe: %i\n", __func__, ctx->pe);
173 mutex_lock(&ctx->status_mutex);
174 if (ctx->status == STARTED)
175 goto out; /* already started */
177 if (task) {
178 ctx->pid = get_task_pid(task, PIDTYPE_PID);
179 get_pid(ctx->pid);
180 kernel = false;
183 cxl_ctx_get();
185 if ((rc = cxl_attach_process(ctx, kernel, wed , 0))) {
186 put_pid(ctx->pid);
187 cxl_ctx_put();
188 goto out;
191 ctx->status = STARTED;
192 out:
193 mutex_unlock(&ctx->status_mutex);
194 return rc;
196 EXPORT_SYMBOL_GPL(cxl_start_context);
198 int cxl_process_element(struct cxl_context *ctx)
200 return ctx->pe;
202 EXPORT_SYMBOL_GPL(cxl_process_element);
204 /* Stop a context. Returns 0 on success, otherwise -Errno */
205 int cxl_stop_context(struct cxl_context *ctx)
207 return __detach_context(ctx);
209 EXPORT_SYMBOL_GPL(cxl_stop_context);
211 void cxl_set_master(struct cxl_context *ctx)
213 ctx->master = true;
214 cxl_assign_psn_space(ctx);
216 EXPORT_SYMBOL_GPL(cxl_set_master);
218 /* wrappers around afu_* file ops which are EXPORTED */
219 int cxl_fd_open(struct inode *inode, struct file *file)
221 return afu_open(inode, file);
223 EXPORT_SYMBOL_GPL(cxl_fd_open);
224 int cxl_fd_release(struct inode *inode, struct file *file)
226 return afu_release(inode, file);
228 EXPORT_SYMBOL_GPL(cxl_fd_release);
229 long cxl_fd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
231 return afu_ioctl(file, cmd, arg);
233 EXPORT_SYMBOL_GPL(cxl_fd_ioctl);
234 int cxl_fd_mmap(struct file *file, struct vm_area_struct *vm)
236 return afu_mmap(file, vm);
238 EXPORT_SYMBOL_GPL(cxl_fd_mmap);
239 unsigned int cxl_fd_poll(struct file *file, struct poll_table_struct *poll)
241 return afu_poll(file, poll);
243 EXPORT_SYMBOL_GPL(cxl_fd_poll);
244 ssize_t cxl_fd_read(struct file *file, char __user *buf, size_t count,
245 loff_t *off)
247 return afu_read(file, buf, count, off);
249 EXPORT_SYMBOL_GPL(cxl_fd_read);
251 #define PATCH_FOPS(NAME) if (!fops->NAME) fops->NAME = afu_fops.NAME
253 /* Get a struct file and fd for a context and attach the ops */
254 struct file *cxl_get_fd(struct cxl_context *ctx, struct file_operations *fops,
255 int *fd)
257 struct file *file;
258 int rc, flags, fdtmp;
260 flags = O_RDWR | O_CLOEXEC;
262 /* This code is similar to anon_inode_getfd() */
263 rc = get_unused_fd_flags(flags);
264 if (rc < 0)
265 return ERR_PTR(rc);
266 fdtmp = rc;
269 * Patch the file ops. Needs to be careful that this is rentrant safe.
271 if (fops) {
272 PATCH_FOPS(open);
273 PATCH_FOPS(poll);
274 PATCH_FOPS(read);
275 PATCH_FOPS(release);
276 PATCH_FOPS(unlocked_ioctl);
277 PATCH_FOPS(compat_ioctl);
278 PATCH_FOPS(mmap);
279 } else /* use default ops */
280 fops = (struct file_operations *)&afu_fops;
282 file = anon_inode_getfile("cxl", fops, ctx, flags);
283 if (IS_ERR(file))
284 goto err_fd;
286 file->f_mapping = ctx->mapping;
288 *fd = fdtmp;
289 return file;
291 err_fd:
292 put_unused_fd(fdtmp);
293 return NULL;
295 EXPORT_SYMBOL_GPL(cxl_get_fd);
297 struct cxl_context *cxl_fops_get_context(struct file *file)
299 return file->private_data;
301 EXPORT_SYMBOL_GPL(cxl_fops_get_context);
303 int cxl_start_work(struct cxl_context *ctx,
304 struct cxl_ioctl_start_work *work)
306 int rc;
308 /* code taken from afu_ioctl_start_work */
309 if (!(work->flags & CXL_START_WORK_NUM_IRQS))
310 work->num_interrupts = ctx->afu->pp_irqs;
311 else if ((work->num_interrupts < ctx->afu->pp_irqs) ||
312 (work->num_interrupts > ctx->afu->irqs_max)) {
313 return -EINVAL;
316 rc = afu_register_irqs(ctx, work->num_interrupts);
317 if (rc)
318 return rc;
320 rc = cxl_start_context(ctx, work->work_element_descriptor, current);
321 if (rc < 0) {
322 afu_release_irqs(ctx, ctx);
323 return rc;
326 return 0;
328 EXPORT_SYMBOL_GPL(cxl_start_work);
330 void __iomem *cxl_psa_map(struct cxl_context *ctx)
332 struct cxl_afu *afu = ctx->afu;
333 int rc;
335 rc = cxl_afu_check_and_enable(afu);
336 if (rc)
337 return NULL;
339 pr_devel("%s: psn_phys%llx size:%llx\n",
340 __func__, afu->psn_phys, afu->adapter->ps_size);
341 return ioremap(ctx->psn_phys, ctx->psn_size);
343 EXPORT_SYMBOL_GPL(cxl_psa_map);
345 void cxl_psa_unmap(void __iomem *addr)
347 iounmap(addr);
349 EXPORT_SYMBOL_GPL(cxl_psa_unmap);
351 int cxl_afu_reset(struct cxl_context *ctx)
353 struct cxl_afu *afu = ctx->afu;
354 int rc;
356 rc = __cxl_afu_reset(afu);
357 if (rc)
358 return rc;
360 return cxl_afu_check_and_enable(afu);
362 EXPORT_SYMBOL_GPL(cxl_afu_reset);
364 void cxl_perst_reloads_same_image(struct cxl_afu *afu,
365 bool perst_reloads_same_image)
367 afu->adapter->perst_same_image = perst_reloads_same_image;
369 EXPORT_SYMBOL_GPL(cxl_perst_reloads_same_image);