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.
10 #include <linux/pci.h>
11 #include <linux/slab.h>
12 #include <linux/anon_inodes.h>
13 #include <linux/file.h>
16 #include <asm/pnv-pci.h>
17 #include <linux/msi.h>
21 struct cxl_context
*cxl_dev_context_init(struct pci_dev
*dev
)
23 struct address_space
*mapping
;
25 struct cxl_context
*ctx
;
28 afu
= cxl_pci_to_afu(dev
);
32 ctx
= cxl_context_alloc();
38 ctx
->kernelapi
= true;
41 * Make our own address space since we won't have one from the
42 * filesystem like the user api has, and even if we do associate a file
43 * with this context we don't want to use the global anonymous inode's
44 * address space as that can invalidate unrelated users:
46 mapping
= kmalloc(sizeof(struct address_space
), GFP_KERNEL
);
51 address_space_init_once(mapping
);
53 /* Make it a slave context. We can promote it later? */
54 rc
= cxl_context_init(ctx
, afu
, false, mapping
);
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 int cxl_release_context(struct cxl_context
*ctx
)
77 if (ctx
->status
>= STARTED
)
80 cxl_context_free(ctx
);
84 EXPORT_SYMBOL_GPL(cxl_release_context
);
86 static irq_hw_number_t
cxl_find_afu_irq(struct cxl_context
*ctx
, int num
)
91 for (r
= 0; r
< CXL_IRQ_RANGES
; r
++) {
92 range
= ctx
->irqs
.range
[r
];
94 return ctx
->irqs
.offset
[r
] + num
;
101 int _cxl_next_msi_hwirq(struct pci_dev
*pdev
, struct cxl_context
**ctx
, int *afu_irq
)
103 if (*ctx
== NULL
|| *afu_irq
== 0) {
105 *ctx
= cxl_get_context(pdev
);
108 if (*afu_irq
> cxl_get_max_irqs_per_process(pdev
)) {
109 *ctx
= list_next_entry(*ctx
, extra_irq_contexts
);
113 return cxl_find_afu_irq(*ctx
, *afu_irq
);
115 /* Exported via cxl_base */
117 int cxl_set_priv(struct cxl_context
*ctx
, void *priv
)
126 EXPORT_SYMBOL_GPL(cxl_set_priv
);
128 void *cxl_get_priv(struct cxl_context
*ctx
)
131 return ERR_PTR(-EINVAL
);
135 EXPORT_SYMBOL_GPL(cxl_get_priv
);
137 int cxl_allocate_afu_irqs(struct cxl_context
*ctx
, int num
)
140 irq_hw_number_t hwirq
;
143 num
= ctx
->afu
->pp_irqs
;
144 res
= afu_allocate_irqs(ctx
, num
);
148 if (!cpu_has_feature(CPU_FTR_HVMODE
)) {
149 /* In a guest, the PSL interrupt is not multiplexed. It was
150 * allocated above, and we need to set its handler
152 hwirq
= cxl_find_afu_irq(ctx
, 0);
154 cxl_map_irq(ctx
->afu
->adapter
, hwirq
, cxl_ops
->psl_interrupt
, ctx
, "psl");
157 if (ctx
->status
== STARTED
) {
158 if (cxl_ops
->update_ivtes
)
159 cxl_ops
->update_ivtes(ctx
);
160 else WARN(1, "BUG: cxl_allocate_afu_irqs must be called prior to starting the context on this platform\n");
165 EXPORT_SYMBOL_GPL(cxl_allocate_afu_irqs
);
167 void cxl_free_afu_irqs(struct cxl_context
*ctx
)
169 irq_hw_number_t hwirq
;
172 if (!cpu_has_feature(CPU_FTR_HVMODE
)) {
173 hwirq
= cxl_find_afu_irq(ctx
, 0);
175 virq
= irq_find_mapping(NULL
, hwirq
);
177 cxl_unmap_irq(virq
, ctx
);
180 afu_irq_name_free(ctx
);
181 cxl_ops
->release_irq_ranges(&ctx
->irqs
, ctx
->afu
->adapter
);
183 EXPORT_SYMBOL_GPL(cxl_free_afu_irqs
);
185 int cxl_map_afu_irq(struct cxl_context
*ctx
, int num
,
186 irq_handler_t handler
, void *cookie
, char *name
)
188 irq_hw_number_t hwirq
;
191 * Find interrupt we are to register.
193 hwirq
= cxl_find_afu_irq(ctx
, num
);
197 return cxl_map_irq(ctx
->afu
->adapter
, hwirq
, handler
, cookie
, name
);
199 EXPORT_SYMBOL_GPL(cxl_map_afu_irq
);
201 void cxl_unmap_afu_irq(struct cxl_context
*ctx
, int num
, void *cookie
)
203 irq_hw_number_t hwirq
;
206 hwirq
= cxl_find_afu_irq(ctx
, num
);
210 virq
= irq_find_mapping(NULL
, hwirq
);
212 cxl_unmap_irq(virq
, cookie
);
214 EXPORT_SYMBOL_GPL(cxl_unmap_afu_irq
);
218 * Code here similar to afu_ioctl_start_work().
220 int cxl_start_context(struct cxl_context
*ctx
, u64 wed
,
221 struct task_struct
*task
)
226 pr_devel("%s: pe: %i\n", __func__
, ctx
->pe
);
228 mutex_lock(&ctx
->status_mutex
);
229 if (ctx
->status
== STARTED
)
230 goto out
; /* already started */
233 * Increment the mapped context count for adapter. This also checks
234 * if adapter_context_lock is taken.
236 rc
= cxl_adapter_context_get(ctx
->afu
->adapter
);
241 ctx
->pid
= get_task_pid(task
, PIDTYPE_PID
);
242 ctx
->glpid
= get_task_pid(task
->group_leader
, PIDTYPE_PID
);
244 ctx
->real_mode
= false;
248 * Increment driver use count. Enables global TLBIs for hash
249 * and callbacks to handle the segment table
253 if ((rc
= cxl_ops
->attach_process(ctx
, kernel
, wed
, 0))) {
256 ctx
->glpid
= ctx
->pid
= NULL
;
257 cxl_adapter_context_put(ctx
->afu
->adapter
);
262 ctx
->status
= STARTED
;
264 mutex_unlock(&ctx
->status_mutex
);
267 EXPORT_SYMBOL_GPL(cxl_start_context
);
269 int cxl_process_element(struct cxl_context
*ctx
)
271 return ctx
->external_pe
;
273 EXPORT_SYMBOL_GPL(cxl_process_element
);
275 /* Stop a context. Returns 0 on success, otherwise -Errno */
276 int cxl_stop_context(struct cxl_context
*ctx
)
278 return __detach_context(ctx
);
280 EXPORT_SYMBOL_GPL(cxl_stop_context
);
282 void cxl_set_master(struct cxl_context
*ctx
)
286 EXPORT_SYMBOL_GPL(cxl_set_master
);
288 int cxl_set_translation_mode(struct cxl_context
*ctx
, bool real_mode
)
290 if (ctx
->status
== STARTED
) {
292 * We could potentially update the PE and issue an update LLCMD
293 * to support this, but it doesn't seem to have a good use case
294 * since it's trivial to just create a second kernel context
295 * with different translation modes, so until someone convinces
301 ctx
->real_mode
= real_mode
;
304 EXPORT_SYMBOL_GPL(cxl_set_translation_mode
);
306 /* wrappers around afu_* file ops which are EXPORTED */
307 int cxl_fd_open(struct inode
*inode
, struct file
*file
)
309 return afu_open(inode
, file
);
311 EXPORT_SYMBOL_GPL(cxl_fd_open
);
312 int cxl_fd_release(struct inode
*inode
, struct file
*file
)
314 return afu_release(inode
, file
);
316 EXPORT_SYMBOL_GPL(cxl_fd_release
);
317 long cxl_fd_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
319 return afu_ioctl(file
, cmd
, arg
);
321 EXPORT_SYMBOL_GPL(cxl_fd_ioctl
);
322 int cxl_fd_mmap(struct file
*file
, struct vm_area_struct
*vm
)
324 return afu_mmap(file
, vm
);
326 EXPORT_SYMBOL_GPL(cxl_fd_mmap
);
327 unsigned int cxl_fd_poll(struct file
*file
, struct poll_table_struct
*poll
)
329 return afu_poll(file
, poll
);
331 EXPORT_SYMBOL_GPL(cxl_fd_poll
);
332 ssize_t
cxl_fd_read(struct file
*file
, char __user
*buf
, size_t count
,
335 return afu_read(file
, buf
, count
, off
);
337 EXPORT_SYMBOL_GPL(cxl_fd_read
);
339 #define PATCH_FOPS(NAME) if (!fops->NAME) fops->NAME = afu_fops.NAME
341 /* Get a struct file and fd for a context and attach the ops */
342 struct file
*cxl_get_fd(struct cxl_context
*ctx
, struct file_operations
*fops
,
346 int rc
, flags
, fdtmp
;
348 flags
= O_RDWR
| O_CLOEXEC
;
350 /* This code is similar to anon_inode_getfd() */
351 rc
= get_unused_fd_flags(flags
);
357 * Patch the file ops. Needs to be careful that this is rentrant safe.
364 PATCH_FOPS(unlocked_ioctl
);
365 PATCH_FOPS(compat_ioctl
);
367 } else /* use default ops */
368 fops
= (struct file_operations
*)&afu_fops
;
370 file
= anon_inode_getfile("cxl", fops
, ctx
, flags
);
374 file
->f_mapping
= ctx
->mapping
;
380 put_unused_fd(fdtmp
);
383 EXPORT_SYMBOL_GPL(cxl_get_fd
);
385 struct cxl_context
*cxl_fops_get_context(struct file
*file
)
387 return file
->private_data
;
389 EXPORT_SYMBOL_GPL(cxl_fops_get_context
);
391 void cxl_set_driver_ops(struct cxl_context
*ctx
,
392 struct cxl_afu_driver_ops
*ops
)
394 WARN_ON(!ops
->fetch_event
|| !ops
->event_delivered
);
395 atomic_set(&ctx
->afu_driver_events
, 0);
396 ctx
->afu_driver_ops
= ops
;
398 EXPORT_SYMBOL_GPL(cxl_set_driver_ops
);
400 void cxl_context_events_pending(struct cxl_context
*ctx
,
401 unsigned int new_events
)
403 atomic_add(new_events
, &ctx
->afu_driver_events
);
404 wake_up_all(&ctx
->wq
);
406 EXPORT_SYMBOL_GPL(cxl_context_events_pending
);
408 int cxl_start_work(struct cxl_context
*ctx
,
409 struct cxl_ioctl_start_work
*work
)
413 /* code taken from afu_ioctl_start_work */
414 if (!(work
->flags
& CXL_START_WORK_NUM_IRQS
))
415 work
->num_interrupts
= ctx
->afu
->pp_irqs
;
416 else if ((work
->num_interrupts
< ctx
->afu
->pp_irqs
) ||
417 (work
->num_interrupts
> ctx
->afu
->irqs_max
)) {
421 rc
= afu_register_irqs(ctx
, work
->num_interrupts
);
425 rc
= cxl_start_context(ctx
, work
->work_element_descriptor
, current
);
427 afu_release_irqs(ctx
, ctx
);
433 EXPORT_SYMBOL_GPL(cxl_start_work
);
435 void __iomem
*cxl_psa_map(struct cxl_context
*ctx
)
437 if (ctx
->status
!= STARTED
)
440 pr_devel("%s: psn_phys%llx size:%llx\n",
441 __func__
, ctx
->psn_phys
, ctx
->psn_size
);
442 return ioremap(ctx
->psn_phys
, ctx
->psn_size
);
444 EXPORT_SYMBOL_GPL(cxl_psa_map
);
446 void cxl_psa_unmap(void __iomem
*addr
)
450 EXPORT_SYMBOL_GPL(cxl_psa_unmap
);
452 int cxl_afu_reset(struct cxl_context
*ctx
)
454 struct cxl_afu
*afu
= ctx
->afu
;
457 rc
= cxl_ops
->afu_reset(afu
);
461 return cxl_ops
->afu_check_and_enable(afu
);
463 EXPORT_SYMBOL_GPL(cxl_afu_reset
);
465 void cxl_perst_reloads_same_image(struct cxl_afu
*afu
,
466 bool perst_reloads_same_image
)
468 afu
->adapter
->perst_same_image
= perst_reloads_same_image
;
470 EXPORT_SYMBOL_GPL(cxl_perst_reloads_same_image
);
472 ssize_t
cxl_read_adapter_vpd(struct pci_dev
*dev
, void *buf
, size_t count
)
474 struct cxl_afu
*afu
= cxl_pci_to_afu(dev
);
478 return cxl_ops
->read_adapter_vpd(afu
->adapter
, buf
, count
);
480 EXPORT_SYMBOL_GPL(cxl_read_adapter_vpd
);
482 int cxl_set_max_irqs_per_process(struct pci_dev
*dev
, int irqs
)
484 struct cxl_afu
*afu
= cxl_pci_to_afu(dev
);
488 if (irqs
> afu
->adapter
->user_irqs
)
491 /* Limit user_irqs to prevent the user increasing this via sysfs */
492 afu
->adapter
->user_irqs
= irqs
;
493 afu
->irqs_max
= irqs
;
497 EXPORT_SYMBOL_GPL(cxl_set_max_irqs_per_process
);
499 int cxl_get_max_irqs_per_process(struct pci_dev
*dev
)
501 struct cxl_afu
*afu
= cxl_pci_to_afu(dev
);
505 return afu
->irqs_max
;
507 EXPORT_SYMBOL_GPL(cxl_get_max_irqs_per_process
);
510 * This is a special interrupt allocation routine called from the PHB's MSI
511 * setup function. When capi interrupts are allocated in this manner they must
512 * still be associated with a running context, but since the MSI APIs have no
513 * way to specify this we use the default context associated with the device.
515 * The Mellanox CX4 has a hardware limitation that restricts the maximum AFU
516 * interrupt number, so in order to overcome this their driver informs us of
517 * the restriction by setting the maximum interrupts per context, and we
518 * allocate additional contexts as necessary so that we can keep the AFU
519 * interrupt number within the supported range.
521 int _cxl_cx4_setup_msi_irqs(struct pci_dev
*pdev
, int nvec
, int type
)
523 struct cxl_context
*ctx
, *new_ctx
, *default_ctx
;
527 ctx
= default_ctx
= cxl_get_context(pdev
);
528 if (WARN_ON(!default_ctx
))
532 while (remaining
> 0) {
533 rc
= cxl_allocate_afu_irqs(ctx
, min(remaining
, ctx
->afu
->irqs_max
));
535 pr_warn("%s: Failed to find enough free MSIs\n", pci_name(pdev
));
538 remaining
-= ctx
->afu
->irqs_max
;
540 if (ctx
!= default_ctx
&& default_ctx
->status
== STARTED
) {
541 WARN_ON(cxl_start_context(ctx
,
542 be64_to_cpu(default_ctx
->elem
->common
.wed
),
547 new_ctx
= cxl_dev_context_init(pdev
);
549 pr_warn("%s: Failed to allocate enough contexts for MSIs\n", pci_name(pdev
));
552 list_add(&new_ctx
->extra_irq_contexts
, &ctx
->extra_irq_contexts
);
559 /* Exported via cxl_base */
561 void _cxl_cx4_teardown_msi_irqs(struct pci_dev
*pdev
)
563 struct cxl_context
*ctx
, *pos
, *tmp
;
565 ctx
= cxl_get_context(pdev
);
569 cxl_free_afu_irqs(ctx
);
570 list_for_each_entry_safe(pos
, tmp
, &ctx
->extra_irq_contexts
, extra_irq_contexts
) {
571 cxl_stop_context(pos
);
572 cxl_free_afu_irqs(pos
);
573 list_del(&pos
->extra_irq_contexts
);
574 cxl_release_context(pos
);
577 /* Exported via cxl_base */