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>
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 static inline void _cxl_slbia(struct cxl_context *ctx, struct mm_struct *mm)
37 struct task_struct *task;
39 if (!(task = get_pid_task(ctx->pid, PIDTYPE_PID))) {
40 pr_devel("%s unable to get task %i\n",
41 __func__, pid_nr(ctx->pid));
48 pr_devel("%s matched mm - card: %i afu: %i pe: %i\n", __func__,
49 ctx->afu->adapter->adapter_num, ctx->afu->slice, ctx->pe);
51 spin_lock_irqsave(&ctx->sste_lock, flags);
53 memset(ctx->sstp, 0, ctx->sst_size);
54 spin_unlock_irqrestore(&ctx->sste_lock, flags);
56 cxl_afu_slbia(ctx->afu);
58 put_task_struct(task);
61 static inline void cxl_slbia_core(struct mm_struct *mm)
65 struct cxl_context *ctx;
68 pr_devel("%s called\n", __func__);
70 spin_lock(&adapter_idr_lock);
71 idr_for_each_entry(&cxl_adapter_idr, adapter, card) {
72 /* XXX: Make this lookup faster with link from mm to ctx */
73 spin_lock(&adapter->afu_list_lock);
74 for (slice = 0; slice < adapter->slices; slice++) {
75 afu = adapter->afu[slice];
79 idr_for_each_entry(&afu->contexts_idr, ctx, id)
83 spin_unlock(&adapter->afu_list_lock);
85 spin_unlock(&adapter_idr_lock);
88 static struct cxl_calls cxl_calls = {
89 .cxl_slbia = cxl_slbia_core,
93 int cxl_alloc_sst(struct cxl_context *ctx)
96 u64 ea_mask, size, sstp0, sstp1;
101 ctx->sst_size = PAGE_SIZE;
103 ctx->sstp = (struct cxl_sste *)get_zeroed_page(GFP_KERNEL);
105 pr_err("cxl_alloc_sst: Unable to allocate segment table\n");
108 pr_devel("SSTP allocated at 0x%p\n", ctx->sstp);
110 vsid = get_kernel_vsid((u64)ctx->sstp, mmu_kernel_ssize) << 12;
112 sstp0 |= (u64)mmu_kernel_ssize << CXL_SSTP0_An_B_SHIFT;
113 sstp0 |= (SLB_VSID_KERNEL | mmu_psize_defs[mmu_linear_psize].sllp) << 50;
115 size = (((u64)ctx->sst_size >> 8) - 1) << CXL_SSTP0_An_SegTableSize_SHIFT;
116 if (unlikely(size & ~CXL_SSTP0_An_SegTableSize_MASK)) {
117 WARN(1, "Impossible segment table size\n");
122 if (mmu_kernel_ssize == MMU_SEGSIZE_256M)
123 ea_mask = 0xfffff00ULL;
125 ea_mask = 0xffffffff00ULL;
127 sstp0 |= vsid >> (50-14); /* Top 14 bits of VSID */
128 sstp1 |= (vsid << (64-(50-14))) & ~ea_mask;
129 sstp1 |= (u64)ctx->sstp & ea_mask;
130 sstp1 |= CXL_SSTP1_An_V;
132 pr_devel("Looked up %#llx: slbfee. %#llx (ssize: %x, vsid: %#lx), copied to SSTP0: %#llx, SSTP1: %#llx\n",
133 (u64)ctx->sstp, (u64)ctx->sstp & ESID_MASK, mmu_kernel_ssize, vsid, sstp0, sstp1);
135 /* Store calculated sstp hardware points for use later */
142 /* Find a CXL adapter by it's number and increase it's refcount */
143 struct cxl *get_cxl_adapter(int num)
147 spin_lock(&adapter_idr_lock);
148 if ((adapter = idr_find(&cxl_adapter_idr, num)))
149 get_device(&adapter->dev);
150 spin_unlock(&adapter_idr_lock);
155 int cxl_alloc_adapter_nr(struct cxl *adapter)
159 idr_preload(GFP_KERNEL);
160 spin_lock(&adapter_idr_lock);
161 i = idr_alloc(&cxl_adapter_idr, adapter, 0, 0, GFP_NOWAIT);
162 spin_unlock(&adapter_idr_lock);
167 adapter->adapter_num = i;
172 void cxl_remove_adapter_nr(struct cxl *adapter)
174 idr_remove(&cxl_adapter_idr, adapter->adapter_num);
177 int cxl_afu_select_best_mode(struct cxl_afu *afu)
179 if (afu->modes_supported & CXL_MODE_DIRECTED)
180 return cxl_afu_activate_mode(afu, CXL_MODE_DIRECTED);
182 if (afu->modes_supported & CXL_MODE_DEDICATED)
183 return cxl_afu_activate_mode(afu, CXL_MODE_DEDICATED);
185 dev_warn(&afu->dev, "No supported programming modes available\n");
186 /* We don't fail this so the user can inspect sysfs */
190 static int __init init_cxl(void)
194 if (!cpu_has_feature(CPU_FTR_HVMODE))
197 if ((rc = cxl_file_init()))
202 if ((rc = register_cxl_calls(&cxl_calls)))
205 if ((rc = pci_register_driver(&cxl_pci_driver)))
210 unregister_cxl_calls(&cxl_calls);
218 static void exit_cxl(void)
220 pci_unregister_driver(&cxl_pci_driver);
224 unregister_cxl_calls(&cxl_calls);
227 module_init(init_cxl);
228 module_exit(exit_cxl);
230 MODULE_DESCRIPTION("IBM Coherent Accelerator");
232 MODULE_LICENSE("GPL");