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/spinlock.h>
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/device.h>
14 #include <linux/mutex.h>
15 #include <linux/init.h>
16 #include <linux/list.h>
19 #include <linux/slab.h>
20 #include <linux/idr.h>
21 #include <linux/pci.h>
22 #include <asm/cputable.h>
23 #include <misc/cxl-base.h>
28 static DEFINE_SPINLOCK(adapter_idr_lock);
29 static DEFINE_IDR(cxl_adapter_idr);
32 module_param_named(verbose, cxl_verbose, uint, 0600);
33 MODULE_PARM_DESC(verbose, "Enable verbose dmesg output");
35 const struct cxl_backend_ops *cxl_ops;
37 int cxl_afu_slbia(struct cxl_afu *afu)
39 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
41 pr_devel("cxl_afu_slbia issuing SLBIA command\n");
42 cxl_p2n_write(afu, CXL_SLBIA_An, CXL_TLB_SLB_IQ_ALL);
43 while (cxl_p2n_read(afu, CXL_SLBIA_An) & CXL_TLB_SLB_P) {
44 if (time_after_eq(jiffies, timeout)) {
45 dev_warn(&afu->dev, "WARNING: CXL AFU SLBIA timed out!\n");
48 /* If the adapter has gone down, we can assume that we
49 * will PERST it and that will invalidate everything.
51 if (!cxl_ops->link_ok(afu->adapter, afu))
58 static inline void _cxl_slbia(struct cxl_context *ctx, struct mm_struct *mm)
60 struct task_struct *task;
62 if (!(task = get_pid_task(ctx->pid, PIDTYPE_PID))) {
63 pr_devel("%s unable to get task %i\n",
64 __func__, pid_nr(ctx->pid));
71 pr_devel("%s matched mm - card: %i afu: %i pe: %i\n", __func__,
72 ctx->afu->adapter->adapter_num, ctx->afu->slice, ctx->pe);
74 spin_lock_irqsave(&ctx->sste_lock, flags);
76 memset(ctx->sstp, 0, ctx->sst_size);
77 spin_unlock_irqrestore(&ctx->sste_lock, flags);
79 cxl_afu_slbia(ctx->afu);
81 put_task_struct(task);
84 static inline void cxl_slbia_core(struct mm_struct *mm)
88 struct cxl_context *ctx;
91 pr_devel("%s called\n", __func__);
93 spin_lock(&adapter_idr_lock);
94 idr_for_each_entry(&cxl_adapter_idr, adapter, card) {
95 /* XXX: Make this lookup faster with link from mm to ctx */
96 spin_lock(&adapter->afu_list_lock);
97 for (slice = 0; slice < adapter->slices; slice++) {
98 afu = adapter->afu[slice];
99 if (!afu || !afu->enabled)
102 idr_for_each_entry(&afu->contexts_idr, ctx, id)
106 spin_unlock(&adapter->afu_list_lock);
108 spin_unlock(&adapter_idr_lock);
111 static struct cxl_calls cxl_calls = {
112 .cxl_slbia = cxl_slbia_core,
113 .cxl_pci_associate_default_context = _cxl_pci_associate_default_context,
114 .cxl_pci_disable_device = _cxl_pci_disable_device,
115 .cxl_next_msi_hwirq = _cxl_next_msi_hwirq,
116 .cxl_cx4_setup_msi_irqs = _cxl_cx4_setup_msi_irqs,
117 .cxl_cx4_teardown_msi_irqs = _cxl_cx4_teardown_msi_irqs,
118 .owner = THIS_MODULE,
121 int cxl_alloc_sst(struct cxl_context *ctx)
124 u64 ea_mask, size, sstp0, sstp1;
129 ctx->sst_size = PAGE_SIZE;
131 ctx->sstp = (struct cxl_sste *)get_zeroed_page(GFP_KERNEL);
133 pr_err("cxl_alloc_sst: Unable to allocate segment table\n");
136 pr_devel("SSTP allocated at 0x%p\n", ctx->sstp);
138 vsid = get_kernel_vsid((u64)ctx->sstp, mmu_kernel_ssize) << 12;
140 sstp0 |= (u64)mmu_kernel_ssize << CXL_SSTP0_An_B_SHIFT;
141 sstp0 |= (SLB_VSID_KERNEL | mmu_psize_defs[mmu_linear_psize].sllp) << 50;
143 size = (((u64)ctx->sst_size >> 8) - 1) << CXL_SSTP0_An_SegTableSize_SHIFT;
144 if (unlikely(size & ~CXL_SSTP0_An_SegTableSize_MASK)) {
145 WARN(1, "Impossible segment table size\n");
150 if (mmu_kernel_ssize == MMU_SEGSIZE_256M)
151 ea_mask = 0xfffff00ULL;
153 ea_mask = 0xffffffff00ULL;
155 sstp0 |= vsid >> (50-14); /* Top 14 bits of VSID */
156 sstp1 |= (vsid << (64-(50-14))) & ~ea_mask;
157 sstp1 |= (u64)ctx->sstp & ea_mask;
158 sstp1 |= CXL_SSTP1_An_V;
160 pr_devel("Looked up %#llx: slbfee. %#llx (ssize: %x, vsid: %#lx), copied to SSTP0: %#llx, SSTP1: %#llx\n",
161 (u64)ctx->sstp, (u64)ctx->sstp & ESID_MASK, mmu_kernel_ssize, vsid, sstp0, sstp1);
163 /* Store calculated sstp hardware points for use later */
170 /* print buffer content as integers when debugging */
171 void cxl_dump_debug_buffer(void *buf, size_t buf_len)
177 * We want to regroup up to 4 integers per line, which means they
178 * need to be in the same pr_devel() statement
181 for (i = 0; i * 4 < buf_len; i += 4) {
182 if ((i + 3) * 4 < buf_len)
183 pr_devel("%.8x %.8x %.8x %.8x\n", ptr[i], ptr[i + 1],
184 ptr[i + 2], ptr[i + 3]);
185 else if ((i + 2) * 4 < buf_len)
186 pr_devel("%.8x %.8x %.8x\n", ptr[i], ptr[i + 1],
188 else if ((i + 1) * 4 < buf_len)
189 pr_devel("%.8x %.8x\n", ptr[i], ptr[i + 1]);
191 pr_devel("%.8x\n", ptr[i]);
196 /* Find a CXL adapter by it's number and increase it's refcount */
197 struct cxl *get_cxl_adapter(int num)
201 spin_lock(&adapter_idr_lock);
202 if ((adapter = idr_find(&cxl_adapter_idr, num)))
203 get_device(&adapter->dev);
204 spin_unlock(&adapter_idr_lock);
209 static int cxl_alloc_adapter_nr(struct cxl *adapter)
213 idr_preload(GFP_KERNEL);
214 spin_lock(&adapter_idr_lock);
215 i = idr_alloc(&cxl_adapter_idr, adapter, 0, 0, GFP_NOWAIT);
216 spin_unlock(&adapter_idr_lock);
221 adapter->adapter_num = i;
226 void cxl_remove_adapter_nr(struct cxl *adapter)
228 idr_remove(&cxl_adapter_idr, adapter->adapter_num);
231 struct cxl *cxl_alloc_adapter(void)
235 if (!(adapter = kzalloc(sizeof(struct cxl), GFP_KERNEL)))
238 spin_lock_init(&adapter->afu_list_lock);
240 if (cxl_alloc_adapter_nr(adapter))
243 if (dev_set_name(&adapter->dev, "card%i", adapter->adapter_num))
246 /* start with context lock taken */
247 atomic_set(&adapter->contexts_num, -1);
251 cxl_remove_adapter_nr(adapter);
257 struct cxl_afu *cxl_alloc_afu(struct cxl *adapter, int slice)
261 if (!(afu = kzalloc(sizeof(struct cxl_afu), GFP_KERNEL)))
264 afu->adapter = adapter;
265 afu->dev.parent = &adapter->dev;
266 afu->dev.release = cxl_ops->release_afu;
268 idr_init(&afu->contexts_idr);
269 mutex_init(&afu->contexts_lock);
270 spin_lock_init(&afu->afu_cntl_lock);
271 init_rwsem(&afu->configured_rwsem);
272 down_write(&afu->configured_rwsem);
273 afu->prefault_mode = CXL_PREFAULT_NONE;
274 afu->irqs_max = afu->adapter->user_irqs;
279 int cxl_afu_select_best_mode(struct cxl_afu *afu)
281 if (afu->modes_supported & CXL_MODE_DIRECTED)
282 return cxl_ops->afu_activate_mode(afu, CXL_MODE_DIRECTED);
284 if (afu->modes_supported & CXL_MODE_DEDICATED)
285 return cxl_ops->afu_activate_mode(afu, CXL_MODE_DEDICATED);
287 dev_warn(&afu->dev, "No supported programming modes available\n");
288 /* We don't fail this so the user can inspect sysfs */
292 int cxl_adapter_context_get(struct cxl *adapter)
296 rc = atomic_inc_unless_negative(&adapter->contexts_num);
297 return rc >= 0 ? 0 : -EBUSY;
300 void cxl_adapter_context_put(struct cxl *adapter)
302 atomic_dec_if_positive(&adapter->contexts_num);
305 int cxl_adapter_context_lock(struct cxl *adapter)
308 /* no active contexts -> contexts_num == 0 */
309 rc = atomic_cmpxchg(&adapter->contexts_num, 0, -1);
310 return rc ? -EBUSY : 0;
313 void cxl_adapter_context_unlock(struct cxl *adapter)
315 int val = atomic_cmpxchg(&adapter->contexts_num, -1, 0);
318 * contexts lock taken -> contexts_num == -1
319 * If not true then show a warning and force reset the lock.
320 * This will happen when context_unlock was requested without
321 * doing a context_lock.
324 atomic_set(&adapter->contexts_num, 0);
325 WARN(1, "Adapter context unlocked with %d active contexts",
330 static int __init init_cxl(void)
334 if ((rc = cxl_file_init()))
339 if ((rc = register_cxl_calls(&cxl_calls)))
342 if (cpu_has_feature(CPU_FTR_HVMODE)) {
343 cxl_ops = &cxl_native_ops;
344 rc = pci_register_driver(&cxl_pci_driver);
346 #ifdef CONFIG_PPC_PSERIES
348 cxl_ops = &cxl_guest_ops;
349 rc = platform_driver_register(&cxl_of_driver);
357 unregister_cxl_calls(&cxl_calls);
365 static void exit_cxl(void)
367 if (cpu_has_feature(CPU_FTR_HVMODE))
368 pci_unregister_driver(&cxl_pci_driver);
369 #ifdef CONFIG_PPC_PSERIES
371 platform_driver_unregister(&cxl_of_driver);
376 unregister_cxl_calls(&cxl_calls);
377 idr_destroy(&cxl_adapter_idr);
380 module_init(init_cxl);
381 module_exit(exit_cxl);
383 MODULE_DESCRIPTION("IBM Coherent Accelerator");
385 MODULE_LICENSE("GPL");