]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/misc/cxl/api.c
cxl: Move bare-metal specific code to specialized files
[mirror_ubuntu-bionic-kernel.git] / drivers / misc / cxl / api.c
CommitLineData
6f7f0b3d
MN
1/*
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/pci.h>
11#include <linux/slab.h>
12#include <linux/anon_inodes.h>
13#include <linux/file.h>
14#include <misc/cxl.h>
55e07668 15#include <linux/fs.h>
6f7f0b3d
MN
16
17#include "cxl.h"
18
19struct cxl_context *cxl_dev_context_init(struct pci_dev *dev)
20{
55e07668 21 struct address_space *mapping;
6f7f0b3d
MN
22 struct cxl_afu *afu;
23 struct cxl_context *ctx;
24 int rc;
25
26 afu = cxl_pci_to_afu(dev);
27
28 ctx = cxl_context_alloc();
af2a50bb
IM
29 if (IS_ERR(ctx)) {
30 rc = PTR_ERR(ctx);
31 goto err_dev;
32 }
6f7f0b3d 33
55e07668
IM
34 ctx->kernelapi = true;
35
36 /*
37 * Make our own address space since we won't have one from the
38 * filesystem like the user api has, and even if we do associate a file
39 * with this context we don't want to use the global anonymous inode's
40 * address space as that can invalidate unrelated users:
41 */
42 mapping = kmalloc(sizeof(struct address_space), GFP_KERNEL);
43 if (!mapping) {
44 rc = -ENOMEM;
45 goto err_ctx;
46 }
47 address_space_init_once(mapping);
48
6f7f0b3d 49 /* Make it a slave context. We can promote it later? */
55e07668 50 rc = cxl_context_init(ctx, afu, false, mapping);
af2a50bb 51 if (rc)
55e07668
IM
52 goto err_mapping;
53
6f7f0b3d
MN
54 cxl_assign_psn_space(ctx);
55
56 return ctx;
af2a50bb 57
55e07668
IM
58err_mapping:
59 kfree(mapping);
af2a50bb
IM
60err_ctx:
61 kfree(ctx);
62err_dev:
af2a50bb 63 return ERR_PTR(rc);
6f7f0b3d
MN
64}
65EXPORT_SYMBOL_GPL(cxl_dev_context_init);
66
67struct cxl_context *cxl_get_context(struct pci_dev *dev)
68{
69 return dev->dev.archdata.cxl_ctx;
70}
71EXPORT_SYMBOL_GPL(cxl_get_context);
72
73struct device *cxl_get_phys_dev(struct pci_dev *dev)
74{
75 struct cxl_afu *afu;
76
77 afu = cxl_pci_to_afu(dev);
78
79 return afu->adapter->dev.parent;
80}
81EXPORT_SYMBOL_GPL(cxl_get_phys_dev);
82
83int cxl_release_context(struct cxl_context *ctx)
84{
7c26b9cf 85 if (ctx->status >= STARTED)
6f7f0b3d
MN
86 return -EBUSY;
87
88 cxl_context_free(ctx);
89
90 return 0;
91}
92EXPORT_SYMBOL_GPL(cxl_release_context);
93
94int cxl_allocate_afu_irqs(struct cxl_context *ctx, int num)
95{
96 if (num == 0)
97 num = ctx->afu->pp_irqs;
98 return afu_allocate_irqs(ctx, num);
99}
100EXPORT_SYMBOL_GPL(cxl_allocate_afu_irqs);
101
102void cxl_free_afu_irqs(struct cxl_context *ctx)
103{
8dde152e 104 afu_irq_name_free(ctx);
6f7f0b3d
MN
105 cxl_release_irq_ranges(&ctx->irqs, ctx->afu->adapter);
106}
107EXPORT_SYMBOL_GPL(cxl_free_afu_irqs);
108
109static irq_hw_number_t cxl_find_afu_irq(struct cxl_context *ctx, int num)
110{
111 __u16 range;
112 int r;
113
114 WARN_ON(num == 0);
115
116 for (r = 0; r < CXL_IRQ_RANGES; r++) {
117 range = ctx->irqs.range[r];
118 if (num < range) {
119 return ctx->irqs.offset[r] + num;
120 }
121 num -= range;
122 }
123 return 0;
124}
125
126int cxl_map_afu_irq(struct cxl_context *ctx, int num,
127 irq_handler_t handler, void *cookie, char *name)
128{
129 irq_hw_number_t hwirq;
130
131 /*
132 * Find interrupt we are to register.
133 */
134 hwirq = cxl_find_afu_irq(ctx, num);
135 if (!hwirq)
136 return -ENOENT;
137
138 return cxl_map_irq(ctx->afu->adapter, hwirq, handler, cookie, name);
139}
140EXPORT_SYMBOL_GPL(cxl_map_afu_irq);
141
142void cxl_unmap_afu_irq(struct cxl_context *ctx, int num, void *cookie)
143{
144 irq_hw_number_t hwirq;
145 unsigned int virq;
146
147 hwirq = cxl_find_afu_irq(ctx, num);
148 if (!hwirq)
149 return;
150
151 virq = irq_find_mapping(NULL, hwirq);
152 if (virq)
153 cxl_unmap_irq(virq, cookie);
154}
155EXPORT_SYMBOL_GPL(cxl_unmap_afu_irq);
156
157/*
158 * Start a context
159 * Code here similar to afu_ioctl_start_work().
160 */
161int cxl_start_context(struct cxl_context *ctx, u64 wed,
162 struct task_struct *task)
163{
164 int rc = 0;
165 bool kernel = true;
166
167 pr_devel("%s: pe: %i\n", __func__, ctx->pe);
168
169 mutex_lock(&ctx->status_mutex);
170 if (ctx->status == STARTED)
171 goto out; /* already started */
172
173 if (task) {
174 ctx->pid = get_task_pid(task, PIDTYPE_PID);
7b8ad495 175 ctx->glpid = get_task_pid(task->group_leader, PIDTYPE_PID);
6f7f0b3d
MN
176 kernel = false;
177 }
178
179 cxl_ctx_get();
180
181 if ((rc = cxl_attach_process(ctx, kernel, wed , 0))) {
182 put_pid(ctx->pid);
183 cxl_ctx_put();
184 goto out;
185 }
186
187 ctx->status = STARTED;
6f7f0b3d
MN
188out:
189 mutex_unlock(&ctx->status_mutex);
190 return rc;
191}
192EXPORT_SYMBOL_GPL(cxl_start_context);
193
194int cxl_process_element(struct cxl_context *ctx)
195{
196 return ctx->pe;
197}
198EXPORT_SYMBOL_GPL(cxl_process_element);
199
200/* Stop a context. Returns 0 on success, otherwise -Errno */
201int cxl_stop_context(struct cxl_context *ctx)
202{
3f8dc44d 203 return __detach_context(ctx);
6f7f0b3d
MN
204}
205EXPORT_SYMBOL_GPL(cxl_stop_context);
206
207void cxl_set_master(struct cxl_context *ctx)
208{
209 ctx->master = true;
210 cxl_assign_psn_space(ctx);
211}
212EXPORT_SYMBOL_GPL(cxl_set_master);
213
214/* wrappers around afu_* file ops which are EXPORTED */
215int cxl_fd_open(struct inode *inode, struct file *file)
216{
217 return afu_open(inode, file);
218}
219EXPORT_SYMBOL_GPL(cxl_fd_open);
220int cxl_fd_release(struct inode *inode, struct file *file)
221{
222 return afu_release(inode, file);
223}
224EXPORT_SYMBOL_GPL(cxl_fd_release);
225long cxl_fd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
226{
227 return afu_ioctl(file, cmd, arg);
228}
229EXPORT_SYMBOL_GPL(cxl_fd_ioctl);
230int cxl_fd_mmap(struct file *file, struct vm_area_struct *vm)
231{
232 return afu_mmap(file, vm);
233}
234EXPORT_SYMBOL_GPL(cxl_fd_mmap);
235unsigned int cxl_fd_poll(struct file *file, struct poll_table_struct *poll)
236{
237 return afu_poll(file, poll);
238}
239EXPORT_SYMBOL_GPL(cxl_fd_poll);
240ssize_t cxl_fd_read(struct file *file, char __user *buf, size_t count,
241 loff_t *off)
242{
243 return afu_read(file, buf, count, off);
244}
245EXPORT_SYMBOL_GPL(cxl_fd_read);
246
247#define PATCH_FOPS(NAME) if (!fops->NAME) fops->NAME = afu_fops.NAME
248
249/* Get a struct file and fd for a context and attach the ops */
250struct file *cxl_get_fd(struct cxl_context *ctx, struct file_operations *fops,
251 int *fd)
252{
253 struct file *file;
254 int rc, flags, fdtmp;
255
256 flags = O_RDWR | O_CLOEXEC;
257
258 /* This code is similar to anon_inode_getfd() */
259 rc = get_unused_fd_flags(flags);
260 if (rc < 0)
261 return ERR_PTR(rc);
262 fdtmp = rc;
263
264 /*
265 * Patch the file ops. Needs to be careful that this is rentrant safe.
266 */
267 if (fops) {
268 PATCH_FOPS(open);
269 PATCH_FOPS(poll);
270 PATCH_FOPS(read);
271 PATCH_FOPS(release);
272 PATCH_FOPS(unlocked_ioctl);
273 PATCH_FOPS(compat_ioctl);
274 PATCH_FOPS(mmap);
275 } else /* use default ops */
276 fops = (struct file_operations *)&afu_fops;
277
278 file = anon_inode_getfile("cxl", fops, ctx, flags);
279 if (IS_ERR(file))
55e07668
IM
280 goto err_fd;
281
282 file->f_mapping = ctx->mapping;
283
6f7f0b3d
MN
284 *fd = fdtmp;
285 return file;
55e07668
IM
286
287err_fd:
288 put_unused_fd(fdtmp);
289 return NULL;
6f7f0b3d
MN
290}
291EXPORT_SYMBOL_GPL(cxl_get_fd);
292
293struct cxl_context *cxl_fops_get_context(struct file *file)
294{
295 return file->private_data;
296}
297EXPORT_SYMBOL_GPL(cxl_fops_get_context);
298
299int cxl_start_work(struct cxl_context *ctx,
300 struct cxl_ioctl_start_work *work)
301{
302 int rc;
303
304 /* code taken from afu_ioctl_start_work */
305 if (!(work->flags & CXL_START_WORK_NUM_IRQS))
306 work->num_interrupts = ctx->afu->pp_irqs;
307 else if ((work->num_interrupts < ctx->afu->pp_irqs) ||
308 (work->num_interrupts > ctx->afu->irqs_max)) {
309 return -EINVAL;
310 }
311
312 rc = afu_register_irqs(ctx, work->num_interrupts);
313 if (rc)
314 return rc;
315
316 rc = cxl_start_context(ctx, work->work_element_descriptor, current);
317 if (rc < 0) {
318 afu_release_irqs(ctx, ctx);
319 return rc;
320 }
321
322 return 0;
323}
324EXPORT_SYMBOL_GPL(cxl_start_work);
325
326void __iomem *cxl_psa_map(struct cxl_context *ctx)
327{
328 struct cxl_afu *afu = ctx->afu;
329 int rc;
330
331 rc = cxl_afu_check_and_enable(afu);
332 if (rc)
333 return NULL;
334
335 pr_devel("%s: psn_phys%llx size:%llx\n",
336 __func__, afu->psn_phys, afu->adapter->ps_size);
337 return ioremap(ctx->psn_phys, ctx->psn_size);
338}
339EXPORT_SYMBOL_GPL(cxl_psa_map);
340
341void cxl_psa_unmap(void __iomem *addr)
342{
343 iounmap(addr);
344}
345EXPORT_SYMBOL_GPL(cxl_psa_unmap);
346
347int cxl_afu_reset(struct cxl_context *ctx)
348{
349 struct cxl_afu *afu = ctx->afu;
350 int rc;
351
352 rc = __cxl_afu_reset(afu);
353 if (rc)
354 return rc;
355
356 return cxl_afu_check_and_enable(afu);
357}
358EXPORT_SYMBOL_GPL(cxl_afu_reset);
13e68d8b
DA
359
360void cxl_perst_reloads_same_image(struct cxl_afu *afu,
361 bool perst_reloads_same_image)
362{
363 afu->adapter->perst_same_image = perst_reloads_same_image;
364}
365EXPORT_SYMBOL_GPL(cxl_perst_reloads_same_image);