Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 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> |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 12 | #include <linux/file.h> |
| 13 | #include <misc/cxl.h> |
Ian Munsie | a2f67d5 | 2016-07-14 07:17:10 +1000 | [diff] [blame] | 14 | #include <linux/msi.h> |
Frederic Barrat | bdecf76 | 2016-11-18 23:00:31 +1100 | [diff] [blame] | 15 | #include <linux/module.h> |
| 16 | #include <linux/mount.h> |
Christophe Lombard | 6dd2d23 | 2017-04-07 16:11:55 +0200 | [diff] [blame] | 17 | #include <linux/sched/mm.h> |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 18 | |
| 19 | #include "cxl.h" |
| 20 | |
Frederic Barrat | bdecf76 | 2016-11-18 23:00:31 +1100 | [diff] [blame] | 21 | /* |
| 22 | * Since we want to track memory mappings to be able to force-unmap |
| 23 | * when the AFU is no longer reachable, we need an inode. For devices |
| 24 | * opened through the cxl user API, this is not a problem, but a |
| 25 | * userland process can also get a cxl fd through the cxl_get_fd() |
| 26 | * API, which is used by the cxlflash driver. |
| 27 | * |
| 28 | * Therefore we implement our own simple pseudo-filesystem and inode |
| 29 | * allocator. We don't use the anonymous inode, as we need the |
| 30 | * meta-data associated with it (address_space) and it is shared by |
| 31 | * other drivers/processes, so it could lead to cxl unmapping VMAs |
| 32 | * from random processes. |
| 33 | */ |
| 34 | |
| 35 | #define CXL_PSEUDO_FS_MAGIC 0x1697697f |
| 36 | |
| 37 | static int cxl_fs_cnt; |
| 38 | static struct vfsmount *cxl_vfs_mount; |
| 39 | |
| 40 | static const struct dentry_operations cxl_fs_dops = { |
| 41 | .d_dname = simple_dname, |
| 42 | }; |
| 43 | |
| 44 | static struct dentry *cxl_fs_mount(struct file_system_type *fs_type, int flags, |
| 45 | const char *dev_name, void *data) |
| 46 | { |
| 47 | return mount_pseudo(fs_type, "cxl:", NULL, &cxl_fs_dops, |
| 48 | CXL_PSEUDO_FS_MAGIC); |
| 49 | } |
| 50 | |
| 51 | static struct file_system_type cxl_fs_type = { |
| 52 | .name = "cxl", |
| 53 | .owner = THIS_MODULE, |
| 54 | .mount = cxl_fs_mount, |
| 55 | .kill_sb = kill_anon_super, |
| 56 | }; |
| 57 | |
| 58 | |
| 59 | void cxl_release_mapping(struct cxl_context *ctx) |
| 60 | { |
| 61 | if (ctx->kernelapi && ctx->mapping) |
| 62 | simple_release_fs(&cxl_vfs_mount, &cxl_fs_cnt); |
| 63 | } |
| 64 | |
| 65 | static struct file *cxl_getfile(const char *name, |
| 66 | const struct file_operations *fops, |
| 67 | void *priv, int flags) |
| 68 | { |
| 69 | struct qstr this; |
| 70 | struct path path; |
| 71 | struct file *file; |
| 72 | struct inode *inode = NULL; |
| 73 | int rc; |
| 74 | |
| 75 | /* strongly inspired by anon_inode_getfile() */ |
| 76 | |
| 77 | if (fops->owner && !try_module_get(fops->owner)) |
| 78 | return ERR_PTR(-ENOENT); |
| 79 | |
| 80 | rc = simple_pin_fs(&cxl_fs_type, &cxl_vfs_mount, &cxl_fs_cnt); |
| 81 | if (rc < 0) { |
| 82 | pr_err("Cannot mount cxl pseudo filesystem: %d\n", rc); |
| 83 | file = ERR_PTR(rc); |
| 84 | goto err_module; |
| 85 | } |
| 86 | |
| 87 | inode = alloc_anon_inode(cxl_vfs_mount->mnt_sb); |
| 88 | if (IS_ERR(inode)) { |
| 89 | file = ERR_CAST(inode); |
| 90 | goto err_fs; |
| 91 | } |
| 92 | |
| 93 | file = ERR_PTR(-ENOMEM); |
| 94 | this.name = name; |
| 95 | this.len = strlen(name); |
| 96 | this.hash = 0; |
| 97 | path.dentry = d_alloc_pseudo(cxl_vfs_mount->mnt_sb, &this); |
| 98 | if (!path.dentry) |
| 99 | goto err_inode; |
| 100 | |
| 101 | path.mnt = mntget(cxl_vfs_mount); |
| 102 | d_instantiate(path.dentry, inode); |
| 103 | |
| 104 | file = alloc_file(&path, OPEN_FMODE(flags), fops); |
| 105 | if (IS_ERR(file)) |
| 106 | goto err_dput; |
| 107 | file->f_flags = flags & (O_ACCMODE | O_NONBLOCK); |
| 108 | file->private_data = priv; |
| 109 | |
| 110 | return file; |
| 111 | |
| 112 | err_dput: |
| 113 | path_put(&path); |
| 114 | err_inode: |
| 115 | iput(inode); |
| 116 | err_fs: |
| 117 | simple_release_fs(&cxl_vfs_mount, &cxl_fs_cnt); |
| 118 | err_module: |
| 119 | module_put(fops->owner); |
| 120 | return file; |
| 121 | } |
| 122 | |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 123 | struct cxl_context *cxl_dev_context_init(struct pci_dev *dev) |
| 124 | { |
| 125 | struct cxl_afu *afu; |
| 126 | struct cxl_context *ctx; |
| 127 | int rc; |
| 128 | |
| 129 | afu = cxl_pci_to_afu(dev); |
Ian Munsie | 317f5ef | 2016-07-14 07:17:07 +1000 | [diff] [blame] | 130 | if (IS_ERR(afu)) |
| 131 | return ERR_CAST(afu); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 132 | |
| 133 | ctx = cxl_context_alloc(); |
Christophe Jaillet | 5cd4f5c | 2016-10-30 20:35:57 +0100 | [diff] [blame] | 134 | if (!ctx) |
| 135 | return ERR_PTR(-ENOMEM); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 136 | |
Ian Munsie | 55e0766 | 2015-08-27 19:50:19 +1000 | [diff] [blame] | 137 | ctx->kernelapi = true; |
| 138 | |
Ian Munsie | 55e0766 | 2015-08-27 19:50:19 +1000 | [diff] [blame] | 139 | /* Make it a slave context. We can promote it later? */ |
Frederic Barrat | bdecf76 | 2016-11-18 23:00:31 +1100 | [diff] [blame] | 140 | rc = cxl_context_init(ctx, afu, false); |
Ian Munsie | 55e0766 | 2015-08-27 19:50:19 +1000 | [diff] [blame] | 141 | if (rc) |
Frederic Barrat | bdecf76 | 2016-11-18 23:00:31 +1100 | [diff] [blame] | 142 | goto err_ctx; |
Ian Munsie | 55e0766 | 2015-08-27 19:50:19 +1000 | [diff] [blame] | 143 | |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 144 | return ctx; |
Ian Munsie | af2a50b | 2015-08-27 19:50:18 +1000 | [diff] [blame] | 145 | |
| 146 | err_ctx: |
| 147 | kfree(ctx); |
Ian Munsie | af2a50b | 2015-08-27 19:50:18 +1000 | [diff] [blame] | 148 | return ERR_PTR(rc); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 149 | } |
| 150 | EXPORT_SYMBOL_GPL(cxl_dev_context_init); |
| 151 | |
| 152 | struct cxl_context *cxl_get_context(struct pci_dev *dev) |
| 153 | { |
| 154 | return dev->dev.archdata.cxl_ctx; |
| 155 | } |
| 156 | EXPORT_SYMBOL_GPL(cxl_get_context); |
| 157 | |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 158 | int cxl_release_context(struct cxl_context *ctx) |
| 159 | { |
Andrew Donnellan | 7c26b9c | 2015-08-19 09:27:18 +1000 | [diff] [blame] | 160 | if (ctx->status >= STARTED) |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 161 | return -EBUSY; |
| 162 | |
| 163 | cxl_context_free(ctx); |
| 164 | |
| 165 | return 0; |
| 166 | } |
| 167 | EXPORT_SYMBOL_GPL(cxl_release_context); |
| 168 | |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 169 | static irq_hw_number_t cxl_find_afu_irq(struct cxl_context *ctx, int num) |
| 170 | { |
| 171 | __u16 range; |
| 172 | int r; |
| 173 | |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 174 | for (r = 0; r < CXL_IRQ_RANGES; r++) { |
| 175 | range = ctx->irqs.range[r]; |
| 176 | if (num < range) { |
| 177 | return ctx->irqs.offset[r] + num; |
| 178 | } |
| 179 | num -= range; |
| 180 | } |
| 181 | return 0; |
| 182 | } |
| 183 | |
Ian Munsie | cbce091 | 2016-07-14 07:17:09 +1000 | [diff] [blame] | 184 | int _cxl_next_msi_hwirq(struct pci_dev *pdev, struct cxl_context **ctx, int *afu_irq) |
| 185 | { |
| 186 | if (*ctx == NULL || *afu_irq == 0) { |
| 187 | *afu_irq = 1; |
| 188 | *ctx = cxl_get_context(pdev); |
| 189 | } else { |
| 190 | (*afu_irq)++; |
| 191 | if (*afu_irq > cxl_get_max_irqs_per_process(pdev)) { |
| 192 | *ctx = list_next_entry(*ctx, extra_irq_contexts); |
| 193 | *afu_irq = 1; |
| 194 | } |
| 195 | } |
| 196 | return cxl_find_afu_irq(*ctx, *afu_irq); |
| 197 | } |
| 198 | /* Exported via cxl_base */ |
Michael Neuling | ad42de8 | 2016-06-24 08:47:07 +0200 | [diff] [blame] | 199 | |
| 200 | int cxl_set_priv(struct cxl_context *ctx, void *priv) |
| 201 | { |
| 202 | if (!ctx) |
| 203 | return -EINVAL; |
| 204 | |
| 205 | ctx->priv = priv; |
| 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | EXPORT_SYMBOL_GPL(cxl_set_priv); |
| 210 | |
| 211 | void *cxl_get_priv(struct cxl_context *ctx) |
| 212 | { |
| 213 | if (!ctx) |
| 214 | return ERR_PTR(-EINVAL); |
| 215 | |
| 216 | return ctx->priv; |
| 217 | } |
| 218 | EXPORT_SYMBOL_GPL(cxl_get_priv); |
| 219 | |
Frederic Barrat | d601ea9 | 2016-03-04 12:26:40 +0100 | [diff] [blame] | 220 | int cxl_allocate_afu_irqs(struct cxl_context *ctx, int num) |
| 221 | { |
| 222 | int res; |
| 223 | irq_hw_number_t hwirq; |
| 224 | |
| 225 | if (num == 0) |
| 226 | num = ctx->afu->pp_irqs; |
| 227 | res = afu_allocate_irqs(ctx, num); |
Ian Munsie | 292841b | 2016-05-24 02:14:05 +1000 | [diff] [blame] | 228 | if (res) |
| 229 | return res; |
| 230 | |
| 231 | if (!cpu_has_feature(CPU_FTR_HVMODE)) { |
Frederic Barrat | d601ea9 | 2016-03-04 12:26:40 +0100 | [diff] [blame] | 232 | /* In a guest, the PSL interrupt is not multiplexed. It was |
| 233 | * allocated above, and we need to set its handler |
| 234 | */ |
| 235 | hwirq = cxl_find_afu_irq(ctx, 0); |
| 236 | if (hwirq) |
| 237 | cxl_map_irq(ctx->afu->adapter, hwirq, cxl_ops->psl_interrupt, ctx, "psl"); |
| 238 | } |
Ian Munsie | 292841b | 2016-05-24 02:14:05 +1000 | [diff] [blame] | 239 | |
| 240 | if (ctx->status == STARTED) { |
| 241 | if (cxl_ops->update_ivtes) |
| 242 | cxl_ops->update_ivtes(ctx); |
| 243 | else WARN(1, "BUG: cxl_allocate_afu_irqs must be called prior to starting the context on this platform\n"); |
| 244 | } |
| 245 | |
Frederic Barrat | d601ea9 | 2016-03-04 12:26:40 +0100 | [diff] [blame] | 246 | return res; |
| 247 | } |
| 248 | EXPORT_SYMBOL_GPL(cxl_allocate_afu_irqs); |
| 249 | |
| 250 | void cxl_free_afu_irqs(struct cxl_context *ctx) |
| 251 | { |
| 252 | irq_hw_number_t hwirq; |
| 253 | unsigned int virq; |
| 254 | |
| 255 | if (!cpu_has_feature(CPU_FTR_HVMODE)) { |
| 256 | hwirq = cxl_find_afu_irq(ctx, 0); |
| 257 | if (hwirq) { |
| 258 | virq = irq_find_mapping(NULL, hwirq); |
| 259 | if (virq) |
| 260 | cxl_unmap_irq(virq, ctx); |
| 261 | } |
| 262 | } |
| 263 | afu_irq_name_free(ctx); |
| 264 | cxl_ops->release_irq_ranges(&ctx->irqs, ctx->afu->adapter); |
| 265 | } |
| 266 | EXPORT_SYMBOL_GPL(cxl_free_afu_irqs); |
| 267 | |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 268 | int cxl_map_afu_irq(struct cxl_context *ctx, int num, |
| 269 | irq_handler_t handler, void *cookie, char *name) |
| 270 | { |
| 271 | irq_hw_number_t hwirq; |
| 272 | |
| 273 | /* |
| 274 | * Find interrupt we are to register. |
| 275 | */ |
| 276 | hwirq = cxl_find_afu_irq(ctx, num); |
| 277 | if (!hwirq) |
| 278 | return -ENOENT; |
| 279 | |
| 280 | return cxl_map_irq(ctx->afu->adapter, hwirq, handler, cookie, name); |
| 281 | } |
| 282 | EXPORT_SYMBOL_GPL(cxl_map_afu_irq); |
| 283 | |
| 284 | void cxl_unmap_afu_irq(struct cxl_context *ctx, int num, void *cookie) |
| 285 | { |
| 286 | irq_hw_number_t hwirq; |
| 287 | unsigned int virq; |
| 288 | |
| 289 | hwirq = cxl_find_afu_irq(ctx, num); |
| 290 | if (!hwirq) |
| 291 | return; |
| 292 | |
| 293 | virq = irq_find_mapping(NULL, hwirq); |
| 294 | if (virq) |
| 295 | cxl_unmap_irq(virq, cookie); |
| 296 | } |
| 297 | EXPORT_SYMBOL_GPL(cxl_unmap_afu_irq); |
| 298 | |
| 299 | /* |
| 300 | * Start a context |
| 301 | * Code here similar to afu_ioctl_start_work(). |
| 302 | */ |
| 303 | int cxl_start_context(struct cxl_context *ctx, u64 wed, |
| 304 | struct task_struct *task) |
| 305 | { |
| 306 | int rc = 0; |
| 307 | bool kernel = true; |
| 308 | |
| 309 | pr_devel("%s: pe: %i\n", __func__, ctx->pe); |
| 310 | |
| 311 | mutex_lock(&ctx->status_mutex); |
| 312 | if (ctx->status == STARTED) |
| 313 | goto out; /* already started */ |
| 314 | |
Vaibhav Jain | 70b565b | 2016-10-14 15:08:36 +0530 | [diff] [blame] | 315 | /* |
| 316 | * Increment the mapped context count for adapter. This also checks |
| 317 | * if adapter_context_lock is taken. |
| 318 | */ |
| 319 | rc = cxl_adapter_context_get(ctx->afu->adapter); |
| 320 | if (rc) |
| 321 | goto out; |
| 322 | |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 323 | if (task) { |
| 324 | ctx->pid = get_task_pid(task, PIDTYPE_PID); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 325 | kernel = false; |
Ian Munsie | 7a0d85d | 2016-05-06 17:46:36 +1000 | [diff] [blame] | 326 | ctx->real_mode = false; |
Christophe Lombard | 6dd2d23 | 2017-04-07 16:11:55 +0200 | [diff] [blame] | 327 | |
| 328 | /* acquire a reference to the task's mm */ |
| 329 | ctx->mm = get_task_mm(current); |
| 330 | |
| 331 | /* ensure this mm_struct can't be freed */ |
| 332 | cxl_context_mm_count_get(ctx); |
| 333 | |
| 334 | /* decrement the use count */ |
| 335 | if (ctx->mm) |
| 336 | mmput(ctx->mm); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 337 | } |
| 338 | |
Frederic Barrat | 197267d | 2017-08-30 12:15:49 +0200 | [diff] [blame] | 339 | /* |
| 340 | * Increment driver use count. Enables global TLBIs for hash |
| 341 | * and callbacks to handle the segment table |
| 342 | */ |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 343 | cxl_ctx_get(); |
| 344 | |
Frederic Barrat | 5be587b | 2016-03-04 12:26:28 +0100 | [diff] [blame] | 345 | if ((rc = cxl_ops->attach_process(ctx, kernel, wed, 0))) { |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 346 | put_pid(ctx->pid); |
Christophe Lombard | 6dd2d23 | 2017-04-07 16:11:55 +0200 | [diff] [blame] | 347 | ctx->pid = NULL; |
Vaibhav Jain | 70b565b | 2016-10-14 15:08:36 +0530 | [diff] [blame] | 348 | cxl_adapter_context_put(ctx->afu->adapter); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 349 | cxl_ctx_put(); |
Christophe Lombard | 6dd2d23 | 2017-04-07 16:11:55 +0200 | [diff] [blame] | 350 | if (task) |
| 351 | cxl_context_mm_count_put(ctx); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 352 | goto out; |
| 353 | } |
| 354 | |
| 355 | ctx->status = STARTED; |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 356 | out: |
| 357 | mutex_unlock(&ctx->status_mutex); |
| 358 | return rc; |
| 359 | } |
| 360 | EXPORT_SYMBOL_GPL(cxl_start_context); |
| 361 | |
| 362 | int cxl_process_element(struct cxl_context *ctx) |
| 363 | { |
Christophe Lombard | 14baf4d | 2016-03-04 12:26:36 +0100 | [diff] [blame] | 364 | return ctx->external_pe; |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 365 | } |
| 366 | EXPORT_SYMBOL_GPL(cxl_process_element); |
| 367 | |
| 368 | /* Stop a context. Returns 0 on success, otherwise -Errno */ |
| 369 | int cxl_stop_context(struct cxl_context *ctx) |
| 370 | { |
Michael Neuling | 3f8dc44 | 2015-07-07 11:01:17 +1000 | [diff] [blame] | 371 | return __detach_context(ctx); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 372 | } |
| 373 | EXPORT_SYMBOL_GPL(cxl_stop_context); |
| 374 | |
| 375 | void cxl_set_master(struct cxl_context *ctx) |
| 376 | { |
| 377 | ctx->master = true; |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 378 | } |
| 379 | EXPORT_SYMBOL_GPL(cxl_set_master); |
| 380 | |
Ian Munsie | 7a0d85d | 2016-05-06 17:46:36 +1000 | [diff] [blame] | 381 | int cxl_set_translation_mode(struct cxl_context *ctx, bool real_mode) |
| 382 | { |
| 383 | if (ctx->status == STARTED) { |
| 384 | /* |
| 385 | * We could potentially update the PE and issue an update LLCMD |
| 386 | * to support this, but it doesn't seem to have a good use case |
| 387 | * since it's trivial to just create a second kernel context |
| 388 | * with different translation modes, so until someone convinces |
| 389 | * me otherwise: |
| 390 | */ |
| 391 | return -EBUSY; |
| 392 | } |
| 393 | |
| 394 | ctx->real_mode = real_mode; |
| 395 | return 0; |
| 396 | } |
| 397 | EXPORT_SYMBOL_GPL(cxl_set_translation_mode); |
| 398 | |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 399 | /* wrappers around afu_* file ops which are EXPORTED */ |
| 400 | int cxl_fd_open(struct inode *inode, struct file *file) |
| 401 | { |
| 402 | return afu_open(inode, file); |
| 403 | } |
| 404 | EXPORT_SYMBOL_GPL(cxl_fd_open); |
| 405 | int cxl_fd_release(struct inode *inode, struct file *file) |
| 406 | { |
| 407 | return afu_release(inode, file); |
| 408 | } |
| 409 | EXPORT_SYMBOL_GPL(cxl_fd_release); |
| 410 | long cxl_fd_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 411 | { |
| 412 | return afu_ioctl(file, cmd, arg); |
| 413 | } |
| 414 | EXPORT_SYMBOL_GPL(cxl_fd_ioctl); |
| 415 | int cxl_fd_mmap(struct file *file, struct vm_area_struct *vm) |
| 416 | { |
| 417 | return afu_mmap(file, vm); |
| 418 | } |
| 419 | EXPORT_SYMBOL_GPL(cxl_fd_mmap); |
| 420 | unsigned int cxl_fd_poll(struct file *file, struct poll_table_struct *poll) |
| 421 | { |
| 422 | return afu_poll(file, poll); |
| 423 | } |
| 424 | EXPORT_SYMBOL_GPL(cxl_fd_poll); |
| 425 | ssize_t cxl_fd_read(struct file *file, char __user *buf, size_t count, |
| 426 | loff_t *off) |
| 427 | { |
| 428 | return afu_read(file, buf, count, off); |
| 429 | } |
| 430 | EXPORT_SYMBOL_GPL(cxl_fd_read); |
| 431 | |
| 432 | #define PATCH_FOPS(NAME) if (!fops->NAME) fops->NAME = afu_fops.NAME |
| 433 | |
| 434 | /* Get a struct file and fd for a context and attach the ops */ |
| 435 | struct file *cxl_get_fd(struct cxl_context *ctx, struct file_operations *fops, |
| 436 | int *fd) |
| 437 | { |
| 438 | struct file *file; |
| 439 | int rc, flags, fdtmp; |
Frederic Barrat | bdecf76 | 2016-11-18 23:00:31 +1100 | [diff] [blame] | 440 | char *name = NULL; |
| 441 | |
| 442 | /* only allow one per context */ |
| 443 | if (ctx->mapping) |
| 444 | return ERR_PTR(-EEXIST); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 445 | |
| 446 | flags = O_RDWR | O_CLOEXEC; |
| 447 | |
| 448 | /* This code is similar to anon_inode_getfd() */ |
| 449 | rc = get_unused_fd_flags(flags); |
| 450 | if (rc < 0) |
| 451 | return ERR_PTR(rc); |
| 452 | fdtmp = rc; |
| 453 | |
| 454 | /* |
| 455 | * Patch the file ops. Needs to be careful that this is rentrant safe. |
| 456 | */ |
| 457 | if (fops) { |
| 458 | PATCH_FOPS(open); |
| 459 | PATCH_FOPS(poll); |
| 460 | PATCH_FOPS(read); |
| 461 | PATCH_FOPS(release); |
| 462 | PATCH_FOPS(unlocked_ioctl); |
| 463 | PATCH_FOPS(compat_ioctl); |
| 464 | PATCH_FOPS(mmap); |
| 465 | } else /* use default ops */ |
| 466 | fops = (struct file_operations *)&afu_fops; |
| 467 | |
Frederic Barrat | bdecf76 | 2016-11-18 23:00:31 +1100 | [diff] [blame] | 468 | name = kasprintf(GFP_KERNEL, "cxl:%d", ctx->pe); |
| 469 | file = cxl_getfile(name, fops, ctx, flags); |
| 470 | kfree(name); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 471 | if (IS_ERR(file)) |
Ian Munsie | 55e0766 | 2015-08-27 19:50:19 +1000 | [diff] [blame] | 472 | goto err_fd; |
| 473 | |
Frederic Barrat | bdecf76 | 2016-11-18 23:00:31 +1100 | [diff] [blame] | 474 | cxl_context_set_mapping(ctx, file->f_mapping); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 475 | *fd = fdtmp; |
| 476 | return file; |
Ian Munsie | 55e0766 | 2015-08-27 19:50:19 +1000 | [diff] [blame] | 477 | |
| 478 | err_fd: |
| 479 | put_unused_fd(fdtmp); |
| 480 | return NULL; |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 481 | } |
| 482 | EXPORT_SYMBOL_GPL(cxl_get_fd); |
| 483 | |
| 484 | struct cxl_context *cxl_fops_get_context(struct file *file) |
| 485 | { |
| 486 | return file->private_data; |
| 487 | } |
| 488 | EXPORT_SYMBOL_GPL(cxl_fops_get_context); |
| 489 | |
Philippe Bergheaud | b810253 | 2016-06-23 15:03:53 +0200 | [diff] [blame] | 490 | void cxl_set_driver_ops(struct cxl_context *ctx, |
| 491 | struct cxl_afu_driver_ops *ops) |
| 492 | { |
| 493 | WARN_ON(!ops->fetch_event || !ops->event_delivered); |
| 494 | atomic_set(&ctx->afu_driver_events, 0); |
| 495 | ctx->afu_driver_ops = ops; |
| 496 | } |
| 497 | EXPORT_SYMBOL_GPL(cxl_set_driver_ops); |
| 498 | |
| 499 | void cxl_context_events_pending(struct cxl_context *ctx, |
| 500 | unsigned int new_events) |
| 501 | { |
| 502 | atomic_add(new_events, &ctx->afu_driver_events); |
| 503 | wake_up_all(&ctx->wq); |
| 504 | } |
| 505 | EXPORT_SYMBOL_GPL(cxl_context_events_pending); |
| 506 | |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 507 | int cxl_start_work(struct cxl_context *ctx, |
| 508 | struct cxl_ioctl_start_work *work) |
| 509 | { |
| 510 | int rc; |
| 511 | |
| 512 | /* code taken from afu_ioctl_start_work */ |
| 513 | if (!(work->flags & CXL_START_WORK_NUM_IRQS)) |
| 514 | work->num_interrupts = ctx->afu->pp_irqs; |
| 515 | else if ((work->num_interrupts < ctx->afu->pp_irqs) || |
| 516 | (work->num_interrupts > ctx->afu->irqs_max)) { |
| 517 | return -EINVAL; |
| 518 | } |
| 519 | |
| 520 | rc = afu_register_irqs(ctx, work->num_interrupts); |
| 521 | if (rc) |
| 522 | return rc; |
| 523 | |
| 524 | rc = cxl_start_context(ctx, work->work_element_descriptor, current); |
| 525 | if (rc < 0) { |
| 526 | afu_release_irqs(ctx, ctx); |
| 527 | return rc; |
| 528 | } |
| 529 | |
| 530 | return 0; |
| 531 | } |
| 532 | EXPORT_SYMBOL_GPL(cxl_start_work); |
| 533 | |
| 534 | void __iomem *cxl_psa_map(struct cxl_context *ctx) |
| 535 | { |
Frederic Barrat | cca44c0 | 2016-03-04 12:26:27 +0100 | [diff] [blame] | 536 | if (ctx->status != STARTED) |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 537 | return NULL; |
| 538 | |
| 539 | pr_devel("%s: psn_phys%llx size:%llx\n", |
Frederic Barrat | cca44c0 | 2016-03-04 12:26:27 +0100 | [diff] [blame] | 540 | __func__, ctx->psn_phys, ctx->psn_size); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 541 | return ioremap(ctx->psn_phys, ctx->psn_size); |
| 542 | } |
| 543 | EXPORT_SYMBOL_GPL(cxl_psa_map); |
| 544 | |
| 545 | void cxl_psa_unmap(void __iomem *addr) |
| 546 | { |
| 547 | iounmap(addr); |
| 548 | } |
| 549 | EXPORT_SYMBOL_GPL(cxl_psa_unmap); |
| 550 | |
| 551 | int cxl_afu_reset(struct cxl_context *ctx) |
| 552 | { |
| 553 | struct cxl_afu *afu = ctx->afu; |
| 554 | int rc; |
| 555 | |
Frederic Barrat | 5be587b | 2016-03-04 12:26:28 +0100 | [diff] [blame] | 556 | rc = cxl_ops->afu_reset(afu); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 557 | if (rc) |
| 558 | return rc; |
| 559 | |
Frederic Barrat | 5be587b | 2016-03-04 12:26:28 +0100 | [diff] [blame] | 560 | return cxl_ops->afu_check_and_enable(afu); |
Michael Neuling | 6f7f0b3 | 2015-05-27 16:07:18 +1000 | [diff] [blame] | 561 | } |
| 562 | EXPORT_SYMBOL_GPL(cxl_afu_reset); |
Daniel Axtens | 13e68d8 | 2015-08-14 17:41:25 +1000 | [diff] [blame] | 563 | |
| 564 | void cxl_perst_reloads_same_image(struct cxl_afu *afu, |
| 565 | bool perst_reloads_same_image) |
| 566 | { |
| 567 | afu->adapter->perst_same_image = perst_reloads_same_image; |
| 568 | } |
| 569 | EXPORT_SYMBOL_GPL(cxl_perst_reloads_same_image); |
Frederic Barrat | d601ea9 | 2016-03-04 12:26:40 +0100 | [diff] [blame] | 570 | |
| 571 | ssize_t cxl_read_adapter_vpd(struct pci_dev *dev, void *buf, size_t count) |
| 572 | { |
| 573 | struct cxl_afu *afu = cxl_pci_to_afu(dev); |
Ian Munsie | 317f5ef | 2016-07-14 07:17:07 +1000 | [diff] [blame] | 574 | if (IS_ERR(afu)) |
| 575 | return -ENODEV; |
Frederic Barrat | d601ea9 | 2016-03-04 12:26:40 +0100 | [diff] [blame] | 576 | |
| 577 | return cxl_ops->read_adapter_vpd(afu->adapter, buf, count); |
| 578 | } |
| 579 | EXPORT_SYMBOL_GPL(cxl_read_adapter_vpd); |
Ian Munsie | 79384e4 | 2016-07-14 07:17:08 +1000 | [diff] [blame] | 580 | |
| 581 | int cxl_set_max_irqs_per_process(struct pci_dev *dev, int irqs) |
| 582 | { |
| 583 | struct cxl_afu *afu = cxl_pci_to_afu(dev); |
| 584 | if (IS_ERR(afu)) |
| 585 | return -ENODEV; |
| 586 | |
| 587 | if (irqs > afu->adapter->user_irqs) |
| 588 | return -EINVAL; |
| 589 | |
| 590 | /* Limit user_irqs to prevent the user increasing this via sysfs */ |
| 591 | afu->adapter->user_irqs = irqs; |
| 592 | afu->irqs_max = irqs; |
| 593 | |
| 594 | return 0; |
| 595 | } |
| 596 | EXPORT_SYMBOL_GPL(cxl_set_max_irqs_per_process); |
| 597 | |
| 598 | int cxl_get_max_irqs_per_process(struct pci_dev *dev) |
| 599 | { |
| 600 | struct cxl_afu *afu = cxl_pci_to_afu(dev); |
| 601 | if (IS_ERR(afu)) |
| 602 | return -ENODEV; |
| 603 | |
| 604 | return afu->irqs_max; |
| 605 | } |
| 606 | EXPORT_SYMBOL_GPL(cxl_get_max_irqs_per_process); |
Ian Munsie | a2f67d5 | 2016-07-14 07:17:10 +1000 | [diff] [blame] | 607 | |
| 608 | /* |
| 609 | * This is a special interrupt allocation routine called from the PHB's MSI |
| 610 | * setup function. When capi interrupts are allocated in this manner they must |
| 611 | * still be associated with a running context, but since the MSI APIs have no |
| 612 | * way to specify this we use the default context associated with the device. |
| 613 | * |
| 614 | * The Mellanox CX4 has a hardware limitation that restricts the maximum AFU |
| 615 | * interrupt number, so in order to overcome this their driver informs us of |
| 616 | * the restriction by setting the maximum interrupts per context, and we |
| 617 | * allocate additional contexts as necessary so that we can keep the AFU |
| 618 | * interrupt number within the supported range. |
| 619 | */ |
| 620 | int _cxl_cx4_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type) |
| 621 | { |
| 622 | struct cxl_context *ctx, *new_ctx, *default_ctx; |
| 623 | int remaining; |
| 624 | int rc; |
| 625 | |
| 626 | ctx = default_ctx = cxl_get_context(pdev); |
| 627 | if (WARN_ON(!default_ctx)) |
| 628 | return -ENODEV; |
| 629 | |
| 630 | remaining = nvec; |
| 631 | while (remaining > 0) { |
| 632 | rc = cxl_allocate_afu_irqs(ctx, min(remaining, ctx->afu->irqs_max)); |
| 633 | if (rc) { |
| 634 | pr_warn("%s: Failed to find enough free MSIs\n", pci_name(pdev)); |
| 635 | return rc; |
| 636 | } |
| 637 | remaining -= ctx->afu->irqs_max; |
| 638 | |
| 639 | if (ctx != default_ctx && default_ctx->status == STARTED) { |
| 640 | WARN_ON(cxl_start_context(ctx, |
| 641 | be64_to_cpu(default_ctx->elem->common.wed), |
| 642 | NULL)); |
| 643 | } |
| 644 | |
| 645 | if (remaining > 0) { |
| 646 | new_ctx = cxl_dev_context_init(pdev); |
Christophe Jaillet | 28e323e | 2016-10-30 22:34:51 +0100 | [diff] [blame] | 647 | if (IS_ERR(new_ctx)) { |
Ian Munsie | a2f67d5 | 2016-07-14 07:17:10 +1000 | [diff] [blame] | 648 | pr_warn("%s: Failed to allocate enough contexts for MSIs\n", pci_name(pdev)); |
| 649 | return -ENOSPC; |
| 650 | } |
| 651 | list_add(&new_ctx->extra_irq_contexts, &ctx->extra_irq_contexts); |
| 652 | ctx = new_ctx; |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | return 0; |
| 657 | } |
| 658 | /* Exported via cxl_base */ |
| 659 | |
| 660 | void _cxl_cx4_teardown_msi_irqs(struct pci_dev *pdev) |
| 661 | { |
| 662 | struct cxl_context *ctx, *pos, *tmp; |
| 663 | |
| 664 | ctx = cxl_get_context(pdev); |
| 665 | if (WARN_ON(!ctx)) |
| 666 | return; |
| 667 | |
| 668 | cxl_free_afu_irqs(ctx); |
| 669 | list_for_each_entry_safe(pos, tmp, &ctx->extra_irq_contexts, extra_irq_contexts) { |
| 670 | cxl_stop_context(pos); |
| 671 | cxl_free_afu_irqs(pos); |
| 672 | list_del(&pos->extra_irq_contexts); |
| 673 | cxl_release_context(pos); |
| 674 | } |
| 675 | } |
| 676 | /* Exported via cxl_base */ |