blob: 193769f5607598ff5b652f76674531830cb64960 [file] [log] [blame]
Ian Munsief204e0b2014-10-08 19:55:02 +11001/*
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/spinlock.h>
11#include <linux/sched.h>
Ingo Molnare6017572017-02-01 16:36:40 +010012#include <linux/sched/clock.h>
Ian Munsief204e0b2014-10-08 19:55:02 +110013#include <linux/slab.h>
Ian Munsief204e0b2014-10-08 19:55:02 +110014#include <linux/mutex.h>
15#include <linux/mm.h>
16#include <linux/uaccess.h>
Michael Neuling2bc79ff2016-04-22 14:57:49 +100017#include <linux/delay.h>
Ian Munsief204e0b2014-10-08 19:55:02 +110018#include <asm/synch.h>
Michael Neulingec249dd2015-05-27 16:07:16 +100019#include <misc/cxl-base.h>
Ian Munsief204e0b2014-10-08 19:55:02 +110020
21#include "cxl.h"
Ian Munsie9bcf28c2015-01-09 20:34:36 +110022#include "trace.h"
Ian Munsief204e0b2014-10-08 19:55:02 +110023
Ian Munsie5e7823c2016-07-01 02:50:40 +100024static int afu_control(struct cxl_afu *afu, u64 command, u64 clear,
Ian Munsief204e0b2014-10-08 19:55:02 +110025 u64 result, u64 mask, bool enabled)
26{
Ian Munsie5e7823c2016-07-01 02:50:40 +100027 u64 AFU_Cntl;
Ian Munsief204e0b2014-10-08 19:55:02 +110028 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
Ian Munsie9bcf28c2015-01-09 20:34:36 +110029 int rc = 0;
Ian Munsief204e0b2014-10-08 19:55:02 +110030
31 spin_lock(&afu->afu_cntl_lock);
32 pr_devel("AFU command starting: %llx\n", command);
33
Ian Munsie9bcf28c2015-01-09 20:34:36 +110034 trace_cxl_afu_ctrl(afu, command);
35
Ian Munsie5e7823c2016-07-01 02:50:40 +100036 AFU_Cntl = cxl_p2n_read(afu, CXL_AFU_Cntl_An);
37 cxl_p2n_write(afu, CXL_AFU_Cntl_An, (AFU_Cntl & ~clear) | command);
Ian Munsief204e0b2014-10-08 19:55:02 +110038
39 AFU_Cntl = cxl_p2n_read(afu, CXL_AFU_Cntl_An);
40 while ((AFU_Cntl & mask) != result) {
41 if (time_after_eq(jiffies, timeout)) {
42 dev_warn(&afu->dev, "WARNING: AFU control timed out!\n");
Ian Munsie9bcf28c2015-01-09 20:34:36 +110043 rc = -EBUSY;
44 goto out;
Ian Munsief204e0b2014-10-08 19:55:02 +110045 }
Daniel Axtens0b3f9c72015-08-14 17:41:18 +100046
Christophe Lombard0d400f72016-03-04 12:26:41 +010047 if (!cxl_ops->link_ok(afu->adapter, afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +100048 afu->enabled = enabled;
49 rc = -EIO;
50 goto out;
51 }
52
Rasmus Villemoesde369532015-06-11 13:27:52 +020053 pr_devel_ratelimited("AFU control... (0x%016llx)\n",
Ian Munsief204e0b2014-10-08 19:55:02 +110054 AFU_Cntl | command);
55 cpu_relax();
56 AFU_Cntl = cxl_p2n_read(afu, CXL_AFU_Cntl_An);
Andrew Donnellan3382a622016-11-22 21:13:27 +110057 }
Ian Munsie2a4f6672016-06-30 04:51:26 +100058
59 if (AFU_Cntl & CXL_AFU_Cntl_An_RA) {
60 /*
61 * Workaround for a bug in the XSL used in the Mellanox CX4
62 * that fails to clear the RA bit after an AFU reset,
63 * preventing subsequent AFU resets from working.
64 */
65 cxl_p2n_write(afu, CXL_AFU_Cntl_An, AFU_Cntl & ~CXL_AFU_Cntl_An_RA);
66 }
67
Ian Munsief204e0b2014-10-08 19:55:02 +110068 pr_devel("AFU command complete: %llx\n", command);
69 afu->enabled = enabled;
Ian Munsie9bcf28c2015-01-09 20:34:36 +110070out:
71 trace_cxl_afu_ctrl_done(afu, command, rc);
Ian Munsief204e0b2014-10-08 19:55:02 +110072 spin_unlock(&afu->afu_cntl_lock);
73
Ian Munsie9bcf28c2015-01-09 20:34:36 +110074 return rc;
Ian Munsief204e0b2014-10-08 19:55:02 +110075}
76
77static int afu_enable(struct cxl_afu *afu)
78{
79 pr_devel("AFU enable request\n");
80
Ian Munsie5e7823c2016-07-01 02:50:40 +100081 return afu_control(afu, CXL_AFU_Cntl_An_E, 0,
Ian Munsief204e0b2014-10-08 19:55:02 +110082 CXL_AFU_Cntl_An_ES_Enabled,
83 CXL_AFU_Cntl_An_ES_MASK, true);
84}
85
86int cxl_afu_disable(struct cxl_afu *afu)
87{
88 pr_devel("AFU disable request\n");
89
Ian Munsie5e7823c2016-07-01 02:50:40 +100090 return afu_control(afu, 0, CXL_AFU_Cntl_An_E,
91 CXL_AFU_Cntl_An_ES_Disabled,
Ian Munsief204e0b2014-10-08 19:55:02 +110092 CXL_AFU_Cntl_An_ES_MASK, false);
93}
94
95/* This will disable as well as reset */
Frederic Barrat2b04cf32016-03-04 12:26:29 +010096static int native_afu_reset(struct cxl_afu *afu)
Ian Munsief204e0b2014-10-08 19:55:02 +110097{
98 pr_devel("AFU reset request\n");
99
Ian Munsie5e7823c2016-07-01 02:50:40 +1000100 return afu_control(afu, CXL_AFU_Cntl_An_RA, 0,
Ian Munsief204e0b2014-10-08 19:55:02 +1100101 CXL_AFU_Cntl_An_RS_Complete | CXL_AFU_Cntl_An_ES_Disabled,
102 CXL_AFU_Cntl_An_RS_MASK | CXL_AFU_Cntl_An_ES_MASK,
103 false);
104}
105
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100106static int native_afu_check_and_enable(struct cxl_afu *afu)
Ian Munsief204e0b2014-10-08 19:55:02 +1100107{
Christophe Lombard0d400f72016-03-04 12:26:41 +0100108 if (!cxl_ops->link_ok(afu->adapter, afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000109 WARN(1, "Refusing to enable afu while link down!\n");
110 return -EIO;
111 }
Ian Munsief204e0b2014-10-08 19:55:02 +1100112 if (afu->enabled)
113 return 0;
114 return afu_enable(afu);
115}
116
117int cxl_psl_purge(struct cxl_afu *afu)
118{
119 u64 PSL_CNTL = cxl_p1n_read(afu, CXL_PSL_SCNTL_An);
120 u64 AFU_Cntl = cxl_p2n_read(afu, CXL_AFU_Cntl_An);
121 u64 dsisr, dar;
122 u64 start, end;
123 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100124 int rc = 0;
125
126 trace_cxl_psl_ctrl(afu, CXL_PSL_SCNTL_An_Pc);
Ian Munsief204e0b2014-10-08 19:55:02 +1100127
128 pr_devel("PSL purge request\n");
129
Christophe Lombard0d400f72016-03-04 12:26:41 +0100130 if (!cxl_ops->link_ok(afu->adapter, afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000131 dev_warn(&afu->dev, "PSL Purge called with link down, ignoring\n");
132 rc = -EIO;
133 goto out;
134 }
135
Ian Munsief204e0b2014-10-08 19:55:02 +1100136 if ((AFU_Cntl & CXL_AFU_Cntl_An_ES_MASK) != CXL_AFU_Cntl_An_ES_Disabled) {
137 WARN(1, "psl_purge request while AFU not disabled!\n");
138 cxl_afu_disable(afu);
139 }
140
141 cxl_p1n_write(afu, CXL_PSL_SCNTL_An,
142 PSL_CNTL | CXL_PSL_SCNTL_An_Pc);
143 start = local_clock();
144 PSL_CNTL = cxl_p1n_read(afu, CXL_PSL_SCNTL_An);
145 while ((PSL_CNTL & CXL_PSL_SCNTL_An_Ps_MASK)
146 == CXL_PSL_SCNTL_An_Ps_Pending) {
147 if (time_after_eq(jiffies, timeout)) {
148 dev_warn(&afu->dev, "WARNING: PSL Purge timed out!\n");
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100149 rc = -EBUSY;
150 goto out;
Ian Munsief204e0b2014-10-08 19:55:02 +1100151 }
Christophe Lombard0d400f72016-03-04 12:26:41 +0100152 if (!cxl_ops->link_ok(afu->adapter, afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000153 rc = -EIO;
154 goto out;
155 }
156
Ian Munsief204e0b2014-10-08 19:55:02 +1100157 dsisr = cxl_p2n_read(afu, CXL_PSL_DSISR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +0200158 pr_devel_ratelimited("PSL purging... PSL_CNTL: 0x%016llx PSL_DSISR: 0x%016llx\n",
159 PSL_CNTL, dsisr);
160
Ian Munsief204e0b2014-10-08 19:55:02 +1100161 if (dsisr & CXL_PSL_DSISR_TRANS) {
162 dar = cxl_p2n_read(afu, CXL_PSL_DAR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +0200163 dev_notice(&afu->dev, "PSL purge terminating pending translation, DSISR: 0x%016llx, DAR: 0x%016llx\n",
164 dsisr, dar);
Ian Munsief204e0b2014-10-08 19:55:02 +1100165 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_AE);
166 } else if (dsisr) {
Christophe Lombardabd1d992017-04-07 16:11:58 +0200167 dev_notice(&afu->dev, "PSL purge acknowledging pending non-translation fault, DSISR: 0x%016llx\n",
168 dsisr);
Ian Munsief204e0b2014-10-08 19:55:02 +1100169 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_A);
170 } else {
171 cpu_relax();
172 }
173 PSL_CNTL = cxl_p1n_read(afu, CXL_PSL_SCNTL_An);
Andrew Donnellan3382a622016-11-22 21:13:27 +1100174 }
Ian Munsief204e0b2014-10-08 19:55:02 +1100175 end = local_clock();
176 pr_devel("PSL purged in %lld ns\n", end - start);
177
178 cxl_p1n_write(afu, CXL_PSL_SCNTL_An,
179 PSL_CNTL & ~CXL_PSL_SCNTL_An_Pc);
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100180out:
181 trace_cxl_psl_ctrl_done(afu, CXL_PSL_SCNTL_An_Pc, rc);
182 return rc;
Ian Munsief204e0b2014-10-08 19:55:02 +1100183}
184
185static int spa_max_procs(int spa_size)
186{
187 /*
188 * From the CAIA:
189 * end_of_SPA_area = SPA_Base + ((n+4) * 128) + (( ((n*8) + 127) >> 7) * 128) + 255
190 * Most of that junk is really just an overly-complicated way of saying
191 * the last 256 bytes are __aligned(128), so it's really:
192 * end_of_SPA_area = end_of_PSL_queue_area + __aligned(128) 255
193 * and
194 * end_of_PSL_queue_area = SPA_Base + ((n+4) * 128) + (n*8) - 1
195 * so
196 * sizeof(SPA) = ((n+4) * 128) + (n*8) + __aligned(128) 256
197 * Ignore the alignment (which is safe in this case as long as we are
198 * careful with our rounding) and solve for n:
199 */
200 return ((spa_size / 8) - 96) / 17;
201}
202
Daniel Axtens051557722015-08-14 17:41:19 +1000203int cxl_alloc_spa(struct cxl_afu *afu)
Ian Munsief204e0b2014-10-08 19:55:02 +1100204{
Ian Munsie895a7982016-05-04 14:46:30 +1000205 unsigned spa_size;
206
Ian Munsief204e0b2014-10-08 19:55:02 +1100207 /* Work out how many pages to allocate */
Ian Munsie2224b672016-06-29 22:16:26 +1000208 afu->native->spa_order = -1;
Ian Munsief204e0b2014-10-08 19:55:02 +1100209 do {
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100210 afu->native->spa_order++;
Ian Munsie895a7982016-05-04 14:46:30 +1000211 spa_size = (1 << afu->native->spa_order) * PAGE_SIZE;
212
213 if (spa_size > 0x100000) {
214 dev_warn(&afu->dev, "num_of_processes too large for the SPA, limiting to %i (0x%x)\n",
215 afu->native->spa_max_procs, afu->native->spa_size);
216 afu->num_procs = afu->native->spa_max_procs;
217 break;
218 }
219
220 afu->native->spa_size = spa_size;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100221 afu->native->spa_max_procs = spa_max_procs(afu->native->spa_size);
222 } while (afu->native->spa_max_procs < afu->num_procs);
Ian Munsief204e0b2014-10-08 19:55:02 +1100223
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100224 if (!(afu->native->spa = (struct cxl_process_element *)
225 __get_free_pages(GFP_KERNEL | __GFP_ZERO, afu->native->spa_order))) {
Ian Munsief204e0b2014-10-08 19:55:02 +1100226 pr_err("cxl_alloc_spa: Unable to allocate scheduled process area\n");
227 return -ENOMEM;
228 }
229 pr_devel("spa pages: %i afu->spa_max_procs: %i afu->num_procs: %i\n",
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100230 1<<afu->native->spa_order, afu->native->spa_max_procs, afu->num_procs);
Ian Munsief204e0b2014-10-08 19:55:02 +1100231
Daniel Axtens051557722015-08-14 17:41:19 +1000232 return 0;
233}
234
235static void attach_spa(struct cxl_afu *afu)
236{
237 u64 spap;
238
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100239 afu->native->sw_command_status = (__be64 *)((char *)afu->native->spa +
240 ((afu->native->spa_max_procs + 3) * 128));
Ian Munsief204e0b2014-10-08 19:55:02 +1100241
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100242 spap = virt_to_phys(afu->native->spa) & CXL_PSL_SPAP_Addr;
243 spap |= ((afu->native->spa_size >> (12 - CXL_PSL_SPAP_Size_Shift)) - 1) & CXL_PSL_SPAP_Size;
Ian Munsief204e0b2014-10-08 19:55:02 +1100244 spap |= CXL_PSL_SPAP_V;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100245 pr_devel("cxl: SPA allocated at 0x%p. Max processes: %i, sw_command_status: 0x%p CXL_PSL_SPAP_An=0x%016llx\n",
246 afu->native->spa, afu->native->spa_max_procs,
247 afu->native->sw_command_status, spap);
Ian Munsief204e0b2014-10-08 19:55:02 +1100248 cxl_p1n_write(afu, CXL_PSL_SPAP_An, spap);
Ian Munsief204e0b2014-10-08 19:55:02 +1100249}
250
Daniel Axtens051557722015-08-14 17:41:19 +1000251static inline void detach_spa(struct cxl_afu *afu)
Ian Munsief204e0b2014-10-08 19:55:02 +1100252{
Ian Munsiedb7933f2014-12-08 19:18:00 +1100253 cxl_p1n_write(afu, CXL_PSL_SPAP_An, 0);
Daniel Axtens051557722015-08-14 17:41:19 +1000254}
255
256void cxl_release_spa(struct cxl_afu *afu)
257{
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100258 if (afu->native->spa) {
259 free_pages((unsigned long) afu->native->spa,
260 afu->native->spa_order);
261 afu->native->spa = NULL;
Daniel Axtens051557722015-08-14 17:41:19 +1000262 }
Ian Munsief204e0b2014-10-08 19:55:02 +1100263}
264
Christophe Lombard64663f32017-04-07 16:11:57 +0200265int cxl_invalidate_all_psl8(struct cxl *adapter)
Ian Munsief204e0b2014-10-08 19:55:02 +1100266{
267 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
268
269 pr_devel("CXL adapter wide TLBIA & SLBIA\n");
270
271 cxl_p1_write(adapter, CXL_PSL_AFUSEL, CXL_PSL_AFUSEL_A);
272
273 cxl_p1_write(adapter, CXL_PSL_TLBIA, CXL_TLB_SLB_IQ_ALL);
274 while (cxl_p1_read(adapter, CXL_PSL_TLBIA) & CXL_TLB_SLB_P) {
275 if (time_after_eq(jiffies, timeout)) {
276 dev_warn(&adapter->dev, "WARNING: CXL adapter wide TLBIA timed out!\n");
277 return -EBUSY;
278 }
Christophe Lombard0d400f72016-03-04 12:26:41 +0100279 if (!cxl_ops->link_ok(adapter, NULL))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000280 return -EIO;
Ian Munsief204e0b2014-10-08 19:55:02 +1100281 cpu_relax();
282 }
283
284 cxl_p1_write(adapter, CXL_PSL_SLBIA, CXL_TLB_SLB_IQ_ALL);
285 while (cxl_p1_read(adapter, CXL_PSL_SLBIA) & CXL_TLB_SLB_P) {
286 if (time_after_eq(jiffies, timeout)) {
287 dev_warn(&adapter->dev, "WARNING: CXL adapter wide SLBIA timed out!\n");
288 return -EBUSY;
289 }
Christophe Lombard0d400f72016-03-04 12:26:41 +0100290 if (!cxl_ops->link_ok(adapter, NULL))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000291 return -EIO;
Ian Munsief204e0b2014-10-08 19:55:02 +1100292 cpu_relax();
293 }
294 return 0;
295}
296
Frederic Barrataaa22452016-10-03 21:36:02 +0200297int cxl_data_cache_flush(struct cxl *adapter)
298{
299 u64 reg;
300 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
301
302 pr_devel("Flushing data cache\n");
303
304 reg = cxl_p1_read(adapter, CXL_PSL_Control);
305 reg |= CXL_PSL_Control_Fr;
306 cxl_p1_write(adapter, CXL_PSL_Control, reg);
307
308 reg = cxl_p1_read(adapter, CXL_PSL_Control);
309 while ((reg & CXL_PSL_Control_Fs_MASK) != CXL_PSL_Control_Fs_Complete) {
310 if (time_after_eq(jiffies, timeout)) {
311 dev_warn(&adapter->dev, "WARNING: cache flush timed out!\n");
312 return -EBUSY;
313 }
314
315 if (!cxl_ops->link_ok(adapter, NULL)) {
316 dev_warn(&adapter->dev, "WARNING: link down when flushing cache\n");
317 return -EIO;
318 }
319 cpu_relax();
320 reg = cxl_p1_read(adapter, CXL_PSL_Control);
321 }
322
323 reg &= ~CXL_PSL_Control_Fr;
324 cxl_p1_write(adapter, CXL_PSL_Control, reg);
325 return 0;
326}
327
Ian Munsief204e0b2014-10-08 19:55:02 +1100328static int cxl_write_sstp(struct cxl_afu *afu, u64 sstp0, u64 sstp1)
329{
330 int rc;
331
332 /* 1. Disable SSTP by writing 0 to SSTP1[V] */
333 cxl_p2n_write(afu, CXL_SSTP1_An, 0);
334
335 /* 2. Invalidate all SLB entries */
336 if ((rc = cxl_afu_slbia(afu)))
337 return rc;
338
339 /* 3. Set SSTP0_An */
340 cxl_p2n_write(afu, CXL_SSTP0_An, sstp0);
341
342 /* 4. Set SSTP1_An */
343 cxl_p2n_write(afu, CXL_SSTP1_An, sstp1);
344
345 return 0;
346}
347
348/* Using per slice version may improve performance here. (ie. SLBIA_An) */
349static void slb_invalid(struct cxl_context *ctx)
350{
351 struct cxl *adapter = ctx->afu->adapter;
352 u64 slbia;
353
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100354 WARN_ON(!mutex_is_locked(&ctx->afu->native->spa_mutex));
Ian Munsief204e0b2014-10-08 19:55:02 +1100355
356 cxl_p1_write(adapter, CXL_PSL_LBISEL,
357 ((u64)be32_to_cpu(ctx->elem->common.pid) << 32) |
358 be32_to_cpu(ctx->elem->lpid));
359 cxl_p1_write(adapter, CXL_PSL_SLBIA, CXL_TLB_SLB_IQ_LPIDPID);
360
361 while (1) {
Christophe Lombard0d400f72016-03-04 12:26:41 +0100362 if (!cxl_ops->link_ok(adapter, NULL))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000363 break;
Ian Munsief204e0b2014-10-08 19:55:02 +1100364 slbia = cxl_p1_read(adapter, CXL_PSL_SLBIA);
365 if (!(slbia & CXL_TLB_SLB_P))
366 break;
367 cpu_relax();
368 }
369}
370
371static int do_process_element_cmd(struct cxl_context *ctx,
372 u64 cmd, u64 pe_state)
373{
374 u64 state;
Ian Munsiea98e6e92014-12-08 19:17:56 +1100375 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100376 int rc = 0;
377
378 trace_cxl_llcmd(ctx, cmd);
Ian Munsief204e0b2014-10-08 19:55:02 +1100379
380 WARN_ON(!ctx->afu->enabled);
381
382 ctx->elem->software_state = cpu_to_be32(pe_state);
383 smp_wmb();
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100384 *(ctx->afu->native->sw_command_status) = cpu_to_be64(cmd | 0 | ctx->pe);
Ian Munsief204e0b2014-10-08 19:55:02 +1100385 smp_mb();
386 cxl_p1n_write(ctx->afu, CXL_PSL_LLCMD_An, cmd | ctx->pe);
387 while (1) {
Ian Munsiea98e6e92014-12-08 19:17:56 +1100388 if (time_after_eq(jiffies, timeout)) {
389 dev_warn(&ctx->afu->dev, "WARNING: Process Element Command timed out!\n");
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100390 rc = -EBUSY;
391 goto out;
Ian Munsiea98e6e92014-12-08 19:17:56 +1100392 }
Christophe Lombard0d400f72016-03-04 12:26:41 +0100393 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000394 dev_warn(&ctx->afu->dev, "WARNING: Device link down, aborting Process Element Command!\n");
395 rc = -EIO;
396 goto out;
397 }
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100398 state = be64_to_cpup(ctx->afu->native->sw_command_status);
Ian Munsief204e0b2014-10-08 19:55:02 +1100399 if (state == ~0ULL) {
400 pr_err("cxl: Error adding process element to AFU\n");
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100401 rc = -1;
402 goto out;
Ian Munsief204e0b2014-10-08 19:55:02 +1100403 }
404 if ((state & (CXL_SPA_SW_CMD_MASK | CXL_SPA_SW_STATE_MASK | CXL_SPA_SW_LINK_MASK)) ==
405 (cmd | (cmd >> 16) | ctx->pe))
406 break;
407 /*
408 * The command won't finish in the PSL if there are
409 * outstanding DSIs. Hence we need to yield here in
410 * case there are outstanding DSIs that we need to
411 * service. Tuning possiblity: we could wait for a
412 * while before sched
413 */
414 schedule();
415
416 }
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100417out:
418 trace_cxl_llcmd_done(ctx, cmd, rc);
419 return rc;
Ian Munsief204e0b2014-10-08 19:55:02 +1100420}
421
422static int add_process_element(struct cxl_context *ctx)
423{
424 int rc = 0;
425
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100426 mutex_lock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100427 pr_devel("%s Adding pe: %i started\n", __func__, ctx->pe);
428 if (!(rc = do_process_element_cmd(ctx, CXL_SPA_SW_CMD_ADD, CXL_PE_SOFTWARE_STATE_V)))
429 ctx->pe_inserted = true;
430 pr_devel("%s Adding pe: %i finished\n", __func__, ctx->pe);
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100431 mutex_unlock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100432 return rc;
433}
434
435static int terminate_process_element(struct cxl_context *ctx)
436{
437 int rc = 0;
438
439 /* fast path terminate if it's already invalid */
440 if (!(ctx->elem->software_state & cpu_to_be32(CXL_PE_SOFTWARE_STATE_V)))
441 return rc;
442
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100443 mutex_lock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100444 pr_devel("%s Terminate pe: %i started\n", __func__, ctx->pe);
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000445 /* We could be asked to terminate when the hw is down. That
446 * should always succeed: it's not running if the hw has gone
447 * away and is being reset.
448 */
Christophe Lombard0d400f72016-03-04 12:26:41 +0100449 if (cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000450 rc = do_process_element_cmd(ctx, CXL_SPA_SW_CMD_TERMINATE,
451 CXL_PE_SOFTWARE_STATE_V | CXL_PE_SOFTWARE_STATE_T);
Ian Munsief204e0b2014-10-08 19:55:02 +1100452 ctx->elem->software_state = 0; /* Remove Valid bit */
453 pr_devel("%s Terminate pe: %i finished\n", __func__, ctx->pe);
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100454 mutex_unlock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100455 return rc;
456}
457
458static int remove_process_element(struct cxl_context *ctx)
459{
460 int rc = 0;
461
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100462 mutex_lock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100463 pr_devel("%s Remove pe: %i started\n", __func__, ctx->pe);
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000464
465 /* We could be asked to remove when the hw is down. Again, if
466 * the hw is down, the PE is gone, so we succeed.
467 */
Christophe Lombard0d400f72016-03-04 12:26:41 +0100468 if (cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000469 rc = do_process_element_cmd(ctx, CXL_SPA_SW_CMD_REMOVE, 0);
470
471 if (!rc)
Ian Munsief204e0b2014-10-08 19:55:02 +1100472 ctx->pe_inserted = false;
Christophe Lombardabd1d992017-04-07 16:11:58 +0200473 if (cxl_is_power8())
474 slb_invalid(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100475 pr_devel("%s Remove pe: %i finished\n", __func__, ctx->pe);
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100476 mutex_unlock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100477
478 return rc;
479}
480
Michael Neuling1a1a94b2015-05-27 16:07:10 +1000481void cxl_assign_psn_space(struct cxl_context *ctx)
Ian Munsief204e0b2014-10-08 19:55:02 +1100482{
483 if (!ctx->afu->pp_size || ctx->master) {
484 ctx->psn_phys = ctx->afu->psn_phys;
485 ctx->psn_size = ctx->afu->adapter->ps_size;
486 } else {
487 ctx->psn_phys = ctx->afu->psn_phys +
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100488 (ctx->afu->native->pp_offset + ctx->afu->pp_size * ctx->pe);
Ian Munsief204e0b2014-10-08 19:55:02 +1100489 ctx->psn_size = ctx->afu->pp_size;
490 }
491}
492
493static int activate_afu_directed(struct cxl_afu *afu)
494{
495 int rc;
496
497 dev_info(&afu->dev, "Activating AFU directed mode\n");
498
Christophe Lombard4108efb2015-10-07 16:07:40 +1100499 afu->num_procs = afu->max_procs_virtualised;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100500 if (afu->native->spa == NULL) {
Daniel Axtens051557722015-08-14 17:41:19 +1000501 if (cxl_alloc_spa(afu))
502 return -ENOMEM;
503 }
504 attach_spa(afu);
Ian Munsief204e0b2014-10-08 19:55:02 +1100505
506 cxl_p1n_write(afu, CXL_PSL_SCNTL_An, CXL_PSL_SCNTL_An_PM_AFU);
Christophe Lombardabd1d992017-04-07 16:11:58 +0200507 if (cxl_is_power8())
508 cxl_p1n_write(afu, CXL_PSL_AMOR_An, 0xFFFFFFFFFFFFFFFFULL);
Ian Munsief204e0b2014-10-08 19:55:02 +1100509 cxl_p1n_write(afu, CXL_PSL_ID_An, CXL_PSL_ID_An_F | CXL_PSL_ID_An_L);
510
511 afu->current_mode = CXL_MODE_DIRECTED;
Ian Munsief204e0b2014-10-08 19:55:02 +1100512
513 if ((rc = cxl_chardev_m_afu_add(afu)))
514 return rc;
515
516 if ((rc = cxl_sysfs_afu_m_add(afu)))
517 goto err;
518
519 if ((rc = cxl_chardev_s_afu_add(afu)))
520 goto err1;
521
522 return 0;
523err1:
524 cxl_sysfs_afu_m_remove(afu);
525err:
526 cxl_chardev_afu_remove(afu);
527 return rc;
528}
529
530#ifdef CONFIG_CPU_LITTLE_ENDIAN
531#define set_endian(sr) ((sr) |= CXL_PSL_SR_An_LE)
532#else
533#define set_endian(sr) ((sr) &= ~(CXL_PSL_SR_An_LE))
534#endif
535
Michael Neuling2f663522015-05-27 16:07:13 +1000536static u64 calculate_sr(struct cxl_context *ctx)
537{
538 u64 sr = 0;
539
Frederic Barrate606e032015-12-07 14:34:40 +0100540 set_endian(sr);
Michael Neuling2f663522015-05-27 16:07:13 +1000541 if (ctx->master)
542 sr |= CXL_PSL_SR_An_MP;
543 if (mfspr(SPRN_LPCR) & LPCR_TC)
544 sr |= CXL_PSL_SR_An_TC;
545 if (ctx->kernel) {
Ian Munsie7a0d85d2016-05-06 17:46:36 +1000546 if (!ctx->real_mode)
547 sr |= CXL_PSL_SR_An_R;
548 sr |= (mfmsr() & MSR_SF) | CXL_PSL_SR_An_HV;
Michael Neuling2f663522015-05-27 16:07:13 +1000549 } else {
550 sr |= CXL_PSL_SR_An_PR | CXL_PSL_SR_An_R;
Michael Neuling2f663522015-05-27 16:07:13 +1000551 sr &= ~(CXL_PSL_SR_An_HV);
552 if (!test_tsk_thread_flag(current, TIF_32BIT))
553 sr |= CXL_PSL_SR_An_SF;
554 }
555 return sr;
556}
557
Ian Munsie292841b2016-05-24 02:14:05 +1000558static void update_ivtes_directed(struct cxl_context *ctx)
559{
560 bool need_update = (ctx->status == STARTED);
561 int r;
562
563 if (need_update) {
564 WARN_ON(terminate_process_element(ctx));
565 WARN_ON(remove_process_element(ctx));
566 }
567
568 for (r = 0; r < CXL_IRQ_RANGES; r++) {
569 ctx->elem->ivte_offsets[r] = cpu_to_be16(ctx->irqs.offset[r]);
570 ctx->elem->ivte_ranges[r] = cpu_to_be16(ctx->irqs.range[r]);
571 }
572
573 /*
574 * Theoretically we could use the update llcmd, instead of a
575 * terminate/remove/add (or if an atomic update was required we could
576 * do a suspend/update/resume), however it seems there might be issues
577 * with the update llcmd on some cards (including those using an XSL on
578 * an ASIC) so for now it's safest to go with the commands that are
579 * known to work. In the future if we come across a situation where the
580 * card may be performing transactions using the same PE while we are
581 * doing this update we might need to revisit this.
582 */
583 if (need_update)
584 WARN_ON(add_process_element(ctx));
585}
586
Christophe Lombard64663f32017-04-07 16:11:57 +0200587int cxl_attach_afu_directed_psl8(struct cxl_context *ctx, u64 wed, u64 amr)
Ian Munsief204e0b2014-10-08 19:55:02 +1100588{
Michael Neuling2f663522015-05-27 16:07:13 +1000589 u32 pid;
Ian Munsie292841b2016-05-24 02:14:05 +1000590 int result;
Ian Munsief204e0b2014-10-08 19:55:02 +1100591
Michael Neuling1a1a94b2015-05-27 16:07:10 +1000592 cxl_assign_psn_space(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100593
594 ctx->elem->ctxtime = 0; /* disable */
595 ctx->elem->lpid = cpu_to_be32(mfspr(SPRN_LPID));
596 ctx->elem->haurp = 0; /* disable */
597 ctx->elem->sdr = cpu_to_be64(mfspr(SPRN_SDR1));
598
Michael Neuling2f663522015-05-27 16:07:13 +1000599 pid = current->pid;
600 if (ctx->kernel)
601 pid = 0;
Ian Munsief204e0b2014-10-08 19:55:02 +1100602 ctx->elem->common.tid = 0;
Michael Neuling2f663522015-05-27 16:07:13 +1000603 ctx->elem->common.pid = cpu_to_be32(pid);
604
605 ctx->elem->sr = cpu_to_be64(calculate_sr(ctx));
Ian Munsief204e0b2014-10-08 19:55:02 +1100606
607 ctx->elem->common.csrp = 0; /* disable */
608 ctx->elem->common.aurp0 = 0; /* disable */
609 ctx->elem->common.aurp1 = 0; /* disable */
610
611 cxl_prefault(ctx, wed);
612
613 ctx->elem->common.sstp0 = cpu_to_be64(ctx->sstp0);
614 ctx->elem->common.sstp1 = cpu_to_be64(ctx->sstp1);
615
Ian Munsie3c206fa2016-05-04 14:52:58 +1000616 /*
617 * Ensure we have the multiplexed PSL interrupt set up to take faults
618 * for kernel contexts that may not have allocated any AFU IRQs at all:
619 */
620 if (ctx->irqs.range[0] == 0) {
621 ctx->irqs.offset[0] = ctx->afu->native->psl_hwirq;
622 ctx->irqs.range[0] = 1;
623 }
624
Ian Munsie292841b2016-05-24 02:14:05 +1000625 update_ivtes_directed(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100626
627 ctx->elem->common.amr = cpu_to_be64(amr);
628 ctx->elem->common.wed = cpu_to_be64(wed);
629
630 /* first guy needs to enable */
Frederic Barrat5be587b2016-03-04 12:26:28 +0100631 if ((result = cxl_ops->afu_check_and_enable(ctx->afu)))
Ian Munsief204e0b2014-10-08 19:55:02 +1100632 return result;
633
Daniel Axtens368857c2015-07-29 14:07:22 +1000634 return add_process_element(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100635}
636
637static int deactivate_afu_directed(struct cxl_afu *afu)
638{
639 dev_info(&afu->dev, "Deactivating AFU directed mode\n");
640
641 afu->current_mode = 0;
642 afu->num_procs = 0;
643
644 cxl_sysfs_afu_m_remove(afu);
645 cxl_chardev_afu_remove(afu);
646
Ian Munsie5e7823c2016-07-01 02:50:40 +1000647 /*
648 * The CAIA section 2.2.1 indicates that the procedure for starting and
649 * stopping an AFU in AFU directed mode is AFU specific, which is not
650 * ideal since this code is generic and with one exception has no
651 * knowledge of the AFU. This is in contrast to the procedure for
652 * disabling a dedicated process AFU, which is documented to just
653 * require a reset. The architecture does indicate that both an AFU
654 * reset and an AFU disable should result in the AFU being disabled and
655 * we do both followed by a PSL purge for safety.
656 *
657 * Notably we used to have some issues with the disable sequence on PSL
658 * cards, which is why we ended up using this heavy weight procedure in
659 * the first place, however a bug was discovered that had rendered the
660 * disable operation ineffective, so it is conceivable that was the
661 * sole explanation for those difficulties. Careful regression testing
662 * is recommended if anyone attempts to remove or reorder these
663 * operations.
664 *
665 * The XSL on the Mellanox CX4 behaves a little differently from the
666 * PSL based cards and will time out an AFU reset if the AFU is still
667 * enabled. That card is special in that we do have a means to identify
668 * it from this code, so in that case we skip the reset and just use a
669 * disable/purge to avoid the timeout and corresponding noise in the
670 * kernel log.
671 */
672 if (afu->adapter->native->sl_ops->needs_reset_before_disable)
673 cxl_ops->afu_reset(afu);
Ian Munsief204e0b2014-10-08 19:55:02 +1100674 cxl_afu_disable(afu);
675 cxl_psl_purge(afu);
676
Ian Munsief204e0b2014-10-08 19:55:02 +1100677 return 0;
678}
679
Christophe Lombard64663f32017-04-07 16:11:57 +0200680int cxl_activate_dedicated_process_psl8(struct cxl_afu *afu)
Ian Munsief204e0b2014-10-08 19:55:02 +1100681{
682 dev_info(&afu->dev, "Activating dedicated process mode\n");
683
684 cxl_p1n_write(afu, CXL_PSL_SCNTL_An, CXL_PSL_SCNTL_An_PM_Process);
685
686 cxl_p1n_write(afu, CXL_PSL_CtxTime_An, 0); /* disable */
687 cxl_p1n_write(afu, CXL_PSL_SPAP_An, 0); /* disable */
688 cxl_p1n_write(afu, CXL_PSL_AMOR_An, 0xFFFFFFFFFFFFFFFFULL);
689 cxl_p1n_write(afu, CXL_PSL_LPID_An, mfspr(SPRN_LPID));
690 cxl_p1n_write(afu, CXL_HAURP_An, 0); /* disable */
691 cxl_p1n_write(afu, CXL_PSL_SDR_An, mfspr(SPRN_SDR1));
692
693 cxl_p2n_write(afu, CXL_CSRP_An, 0); /* disable */
694 cxl_p2n_write(afu, CXL_AURP0_An, 0); /* disable */
695 cxl_p2n_write(afu, CXL_AURP1_An, 0); /* disable */
696
697 afu->current_mode = CXL_MODE_DEDICATED;
698 afu->num_procs = 1;
699
700 return cxl_chardev_d_afu_add(afu);
701}
702
Christophe Lombard64663f32017-04-07 16:11:57 +0200703void cxl_update_dedicated_ivtes_psl8(struct cxl_context *ctx)
Ian Munsie292841b2016-05-24 02:14:05 +1000704{
705 struct cxl_afu *afu = ctx->afu;
706
707 cxl_p1n_write(afu, CXL_PSL_IVTE_Offset_An,
708 (((u64)ctx->irqs.offset[0] & 0xffff) << 48) |
709 (((u64)ctx->irqs.offset[1] & 0xffff) << 32) |
710 (((u64)ctx->irqs.offset[2] & 0xffff) << 16) |
711 ((u64)ctx->irqs.offset[3] & 0xffff));
712 cxl_p1n_write(afu, CXL_PSL_IVTE_Limit_An, (u64)
713 (((u64)ctx->irqs.range[0] & 0xffff) << 48) |
714 (((u64)ctx->irqs.range[1] & 0xffff) << 32) |
715 (((u64)ctx->irqs.range[2] & 0xffff) << 16) |
716 ((u64)ctx->irqs.range[3] & 0xffff));
717}
718
Christophe Lombard64663f32017-04-07 16:11:57 +0200719int cxl_attach_dedicated_process_psl8(struct cxl_context *ctx, u64 wed, u64 amr)
Ian Munsief204e0b2014-10-08 19:55:02 +1100720{
721 struct cxl_afu *afu = ctx->afu;
Michael Neuling2f663522015-05-27 16:07:13 +1000722 u64 pid;
Ian Munsief204e0b2014-10-08 19:55:02 +1100723 int rc;
724
Michael Neuling2f663522015-05-27 16:07:13 +1000725 pid = (u64)current->pid << 32;
726 if (ctx->kernel)
727 pid = 0;
728 cxl_p2n_write(afu, CXL_PSL_PID_TID_An, pid);
729
730 cxl_p1n_write(afu, CXL_PSL_SR_An, calculate_sr(ctx));
Ian Munsief204e0b2014-10-08 19:55:02 +1100731
732 if ((rc = cxl_write_sstp(afu, ctx->sstp0, ctx->sstp1)))
733 return rc;
734
735 cxl_prefault(ctx, wed);
736
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200737 if (ctx->afu->adapter->native->sl_ops->update_dedicated_ivtes)
738 afu->adapter->native->sl_ops->update_dedicated_ivtes(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100739
740 cxl_p2n_write(afu, CXL_PSL_AMR_An, amr);
741
742 /* master only context for dedicated */
Michael Neuling1a1a94b2015-05-27 16:07:10 +1000743 cxl_assign_psn_space(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100744
Frederic Barrat5be587b2016-03-04 12:26:28 +0100745 if ((rc = cxl_ops->afu_reset(afu)))
Ian Munsief204e0b2014-10-08 19:55:02 +1100746 return rc;
747
748 cxl_p2n_write(afu, CXL_PSL_WED_An, wed);
749
750 return afu_enable(afu);
751}
752
753static int deactivate_dedicated_process(struct cxl_afu *afu)
754{
755 dev_info(&afu->dev, "Deactivating dedicated process mode\n");
756
757 afu->current_mode = 0;
758 afu->num_procs = 0;
759
760 cxl_chardev_afu_remove(afu);
761
762 return 0;
763}
764
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100765static int native_afu_deactivate_mode(struct cxl_afu *afu, int mode)
Ian Munsief204e0b2014-10-08 19:55:02 +1100766{
767 if (mode == CXL_MODE_DIRECTED)
768 return deactivate_afu_directed(afu);
769 if (mode == CXL_MODE_DEDICATED)
770 return deactivate_dedicated_process(afu);
771 return 0;
772}
773
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100774static int native_afu_activate_mode(struct cxl_afu *afu, int mode)
Ian Munsief204e0b2014-10-08 19:55:02 +1100775{
776 if (!mode)
777 return 0;
778 if (!(mode & afu->modes_supported))
779 return -EINVAL;
780
Christophe Lombard0d400f72016-03-04 12:26:41 +0100781 if (!cxl_ops->link_ok(afu->adapter, afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000782 WARN(1, "Device link is down, refusing to activate!\n");
783 return -EIO;
784 }
785
Ian Munsief204e0b2014-10-08 19:55:02 +1100786 if (mode == CXL_MODE_DIRECTED)
787 return activate_afu_directed(afu);
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200788 if ((mode == CXL_MODE_DEDICATED) &&
789 (afu->adapter->native->sl_ops->activate_dedicated_process))
790 return afu->adapter->native->sl_ops->activate_dedicated_process(afu);
Ian Munsief204e0b2014-10-08 19:55:02 +1100791
792 return -EINVAL;
793}
794
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100795static int native_attach_process(struct cxl_context *ctx, bool kernel,
796 u64 wed, u64 amr)
Ian Munsief204e0b2014-10-08 19:55:02 +1100797{
Christophe Lombard0d400f72016-03-04 12:26:41 +0100798 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000799 WARN(1, "Device link is down, refusing to attach process!\n");
800 return -EIO;
801 }
802
Ian Munsief204e0b2014-10-08 19:55:02 +1100803 ctx->kernel = kernel;
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200804 if ((ctx->afu->current_mode == CXL_MODE_DIRECTED) &&
805 (ctx->afu->adapter->native->sl_ops->attach_afu_directed))
806 return ctx->afu->adapter->native->sl_ops->attach_afu_directed(ctx, wed, amr);
Ian Munsief204e0b2014-10-08 19:55:02 +1100807
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200808 if ((ctx->afu->current_mode == CXL_MODE_DEDICATED) &&
809 (ctx->afu->adapter->native->sl_ops->attach_dedicated_process))
810 return ctx->afu->adapter->native->sl_ops->attach_dedicated_process(ctx, wed, amr);
Ian Munsief204e0b2014-10-08 19:55:02 +1100811
812 return -EINVAL;
813}
814
815static inline int detach_process_native_dedicated(struct cxl_context *ctx)
816{
Ian Munsie5e7823c2016-07-01 02:50:40 +1000817 /*
818 * The CAIA section 2.1.1 indicates that we need to do an AFU reset to
819 * stop the AFU in dedicated mode (we therefore do not make that
820 * optional like we do in the afu directed path). It does not indicate
821 * that we need to do an explicit disable (which should occur
822 * implicitly as part of the reset) or purge, but we do these as well
823 * to be on the safe side.
824 *
825 * Notably we used to have some issues with the disable sequence
826 * (before the sequence was spelled out in the architecture) which is
827 * why we were so heavy weight in the first place, however a bug was
828 * discovered that had rendered the disable operation ineffective, so
829 * it is conceivable that was the sole explanation for those
830 * difficulties. Point is, we should be careful and do some regression
831 * testing if we ever attempt to remove any part of this procedure.
832 */
Frederic Barrat5be587b2016-03-04 12:26:28 +0100833 cxl_ops->afu_reset(ctx->afu);
Ian Munsief204e0b2014-10-08 19:55:02 +1100834 cxl_afu_disable(ctx->afu);
835 cxl_psl_purge(ctx->afu);
836 return 0;
837}
838
Ian Munsie292841b2016-05-24 02:14:05 +1000839static void native_update_ivtes(struct cxl_context *ctx)
840{
841 if (ctx->afu->current_mode == CXL_MODE_DIRECTED)
842 return update_ivtes_directed(ctx);
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200843 if ((ctx->afu->current_mode == CXL_MODE_DEDICATED) &&
844 (ctx->afu->adapter->native->sl_ops->update_dedicated_ivtes))
845 return ctx->afu->adapter->native->sl_ops->update_dedicated_ivtes(ctx);
Ian Munsie292841b2016-05-24 02:14:05 +1000846 WARN(1, "native_update_ivtes: Bad mode\n");
847}
848
Ian Munsief204e0b2014-10-08 19:55:02 +1100849static inline int detach_process_native_afu_directed(struct cxl_context *ctx)
850{
851 if (!ctx->pe_inserted)
852 return 0;
853 if (terminate_process_element(ctx))
854 return -1;
855 if (remove_process_element(ctx))
856 return -1;
857
858 return 0;
859}
860
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100861static int native_detach_process(struct cxl_context *ctx)
Ian Munsief204e0b2014-10-08 19:55:02 +1100862{
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100863 trace_cxl_detach(ctx);
864
Ian Munsief204e0b2014-10-08 19:55:02 +1100865 if (ctx->afu->current_mode == CXL_MODE_DEDICATED)
866 return detach_process_native_dedicated(ctx);
867
868 return detach_process_native_afu_directed(ctx);
869}
870
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100871static int native_get_irq_info(struct cxl_afu *afu, struct cxl_irq_info *info)
Ian Munsief204e0b2014-10-08 19:55:02 +1100872{
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000873 /* If the adapter has gone away, we can't get any meaningful
874 * information.
875 */
Christophe Lombard0d400f72016-03-04 12:26:41 +0100876 if (!cxl_ops->link_ok(afu->adapter, afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000877 return -EIO;
878
Ian Munsiebc78b052014-11-14 17:37:50 +1100879 info->dsisr = cxl_p2n_read(afu, CXL_PSL_DSISR_An);
880 info->dar = cxl_p2n_read(afu, CXL_PSL_DAR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +0200881 if (cxl_is_power8())
882 info->dsr = cxl_p2n_read(afu, CXL_PSL_DSR_An);
Ian Munsiebc78b052014-11-14 17:37:50 +1100883 info->afu_err = cxl_p2n_read(afu, CXL_AFU_ERR_An);
884 info->errstat = cxl_p2n_read(afu, CXL_PSL_ErrStat_An);
Christophe Lombard444c4ba2016-03-04 12:26:34 +0100885 info->proc_handle = 0;
Ian Munsief204e0b2014-10-08 19:55:02 +1100886
887 return 0;
888}
889
Christophe Lombard64663f32017-04-07 16:11:57 +0200890void cxl_native_irq_dump_regs_psl8(struct cxl_context *ctx)
Frederic Barratd56d3012016-03-04 12:26:26 +0100891{
892 u64 fir1, fir2, fir_slice, serr, afu_debug;
893
894 fir1 = cxl_p1_read(ctx->afu->adapter, CXL_PSL_FIR1);
895 fir2 = cxl_p1_read(ctx->afu->adapter, CXL_PSL_FIR2);
896 fir_slice = cxl_p1n_read(ctx->afu, CXL_PSL_FIR_SLICE_An);
Frederic Barratd56d3012016-03-04 12:26:26 +0100897 afu_debug = cxl_p1n_read(ctx->afu, CXL_AFU_DEBUG_An);
898
Frederic Barratd56d3012016-03-04 12:26:26 +0100899 dev_crit(&ctx->afu->dev, "PSL_FIR1: 0x%016llx\n", fir1);
900 dev_crit(&ctx->afu->dev, "PSL_FIR2: 0x%016llx\n", fir2);
Frederic Barrat6d382612016-05-24 03:39:18 +1000901 if (ctx->afu->adapter->native->sl_ops->register_serr_irq) {
902 serr = cxl_p1n_read(ctx->afu, CXL_PSL_SERR_An);
Philippe Bergheaud6e0c50f2016-07-05 13:08:06 +0200903 cxl_afu_decode_psl_serr(ctx->afu, serr);
Frederic Barrat6d382612016-05-24 03:39:18 +1000904 }
Frederic Barratd56d3012016-03-04 12:26:26 +0100905 dev_crit(&ctx->afu->dev, "PSL_FIR_SLICE_An: 0x%016llx\n", fir_slice);
906 dev_crit(&ctx->afu->dev, "CXL_PSL_AFU_DEBUG_An: 0x%016llx\n", afu_debug);
Frederic Barrat6d382612016-05-24 03:39:18 +1000907}
Frederic Barratd56d3012016-03-04 12:26:26 +0100908
Frederic Barrat6d382612016-05-24 03:39:18 +1000909static irqreturn_t native_handle_psl_slice_error(struct cxl_context *ctx,
910 u64 dsisr, u64 errstat)
911{
912
913 dev_crit(&ctx->afu->dev, "PSL ERROR STATUS: 0x%016llx\n", errstat);
914
915 if (ctx->afu->adapter->native->sl_ops->psl_irq_dump_registers)
916 ctx->afu->adapter->native->sl_ops->psl_irq_dump_registers(ctx);
917
918 if (ctx->afu->adapter->native->sl_ops->debugfs_stop_trace) {
919 dev_crit(&ctx->afu->dev, "STOPPING CXL TRACE\n");
920 ctx->afu->adapter->native->sl_ops->debugfs_stop_trace(ctx->afu->adapter);
921 }
Frederic Barratd56d3012016-03-04 12:26:26 +0100922
Frederic Barrat5be587b2016-03-04 12:26:28 +0100923 return cxl_ops->ack_irq(ctx, 0, errstat);
Frederic Barratd56d3012016-03-04 12:26:26 +0100924}
925
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200926irqreturn_t cxl_fail_irq_psl(struct cxl_afu *afu, struct cxl_irq_info *irq_info)
Frederic Barratd56d3012016-03-04 12:26:26 +0100927{
928 if (irq_info->dsisr & CXL_PSL_DSISR_TRANS)
929 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_AE);
930 else
931 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_A);
932
933 return IRQ_HANDLED;
934}
935
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100936static irqreturn_t native_irq_multiplexed(int irq, void *data)
Frederic Barratd56d3012016-03-04 12:26:26 +0100937{
938 struct cxl_afu *afu = data;
939 struct cxl_context *ctx;
940 struct cxl_irq_info irq_info;
Vaibhav Jainabf051b2016-11-16 19:39:33 +0530941 u64 phreg = cxl_p2n_read(afu, CXL_PSL_PEHandle_An);
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200942 int ph, ret = IRQ_HANDLED, res;
Frederic Barratd56d3012016-03-04 12:26:26 +0100943
Vaibhav Jainabf051b2016-11-16 19:39:33 +0530944 /* check if eeh kicked in while the interrupt was in flight */
945 if (unlikely(phreg == ~0ULL)) {
946 dev_warn(&afu->dev,
947 "Ignoring slice interrupt(%d) due to fenced card",
948 irq);
949 return IRQ_HANDLED;
950 }
951 /* Mask the pe-handle from register value */
952 ph = phreg & 0xffff;
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200953 if ((res = native_get_irq_info(afu, &irq_info))) {
954 WARN(1, "Unable to get CXL IRQ Info: %i\n", res);
955 if (afu->adapter->native->sl_ops->fail_irq)
956 return afu->adapter->native->sl_ops->fail_irq(afu, &irq_info);
957 return ret;
Frederic Barratd56d3012016-03-04 12:26:26 +0100958 }
959
960 rcu_read_lock();
961 ctx = idr_find(&afu->contexts_idr, ph);
962 if (ctx) {
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200963 if (afu->adapter->native->sl_ops->handle_interrupt)
964 ret = afu->adapter->native->sl_ops->handle_interrupt(irq, ctx, &irq_info);
Frederic Barratd56d3012016-03-04 12:26:26 +0100965 rcu_read_unlock();
966 return ret;
967 }
968 rcu_read_unlock();
969
970 WARN(1, "Unable to demultiplex CXL PSL IRQ for PE %i DSISR %016llx DAR"
971 " %016llx\n(Possible AFU HW issue - was a term/remove acked"
972 " with outstanding transactions?)\n", ph, irq_info.dsisr,
973 irq_info.dar);
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200974 if (afu->adapter->native->sl_ops->fail_irq)
975 ret = afu->adapter->native->sl_ops->fail_irq(afu, &irq_info);
976 return ret;
Frederic Barratd56d3012016-03-04 12:26:26 +0100977}
978
Andrew Donnellan6fd40f12016-07-22 19:01:36 +1000979static void native_irq_wait(struct cxl_context *ctx)
Michael Neuling2bc79ff2016-04-22 14:57:49 +1000980{
981 u64 dsisr;
982 int timeout = 1000;
983 int ph;
984
985 /*
986 * Wait until no further interrupts are presented by the PSL
987 * for this context.
988 */
989 while (timeout--) {
990 ph = cxl_p2n_read(ctx->afu, CXL_PSL_PEHandle_An) & 0xffff;
991 if (ph != ctx->pe)
992 return;
993 dsisr = cxl_p2n_read(ctx->afu, CXL_PSL_DSISR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +0200994 if (cxl_is_psl8(ctx->afu) &&
995 ((dsisr & CXL_PSL_DSISR_PENDING) == 0))
Michael Neuling2bc79ff2016-04-22 14:57:49 +1000996 return;
997 /*
998 * We are waiting for the workqueue to process our
999 * irq, so need to let that run here.
1000 */
1001 msleep(1);
1002 }
1003
1004 dev_warn(&ctx->afu->dev, "WARNING: waiting on DSI for PE %i"
1005 " DSISR %016llx!\n", ph, dsisr);
1006 return;
1007}
1008
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001009static irqreturn_t native_slice_irq_err(int irq, void *data)
Frederic Barratd56d3012016-03-04 12:26:26 +01001010{
1011 struct cxl_afu *afu = data;
Christophe Lombardabd1d992017-04-07 16:11:58 +02001012 u64 errstat, serr, afu_error, dsisr;
1013 u64 fir_slice, afu_debug;
Frederic Barratd56d3012016-03-04 12:26:26 +01001014
Frederic Barrat6d382612016-05-24 03:39:18 +10001015 /*
1016 * slice err interrupt is only used with full PSL (no XSL)
1017 */
Frederic Barratd56d3012016-03-04 12:26:26 +01001018 serr = cxl_p1n_read(afu, CXL_PSL_SERR_An);
Frederic Barratd56d3012016-03-04 12:26:26 +01001019 errstat = cxl_p2n_read(afu, CXL_PSL_ErrStat_An);
Philippe Bergheaud6e0c50f2016-07-05 13:08:06 +02001020 afu_error = cxl_p2n_read(afu, CXL_AFU_ERR_An);
1021 dsisr = cxl_p2n_read(afu, CXL_PSL_DSISR_An);
1022 cxl_afu_decode_psl_serr(afu, serr);
Christophe Lombardabd1d992017-04-07 16:11:58 +02001023
1024 if (cxl_is_power8()) {
1025 fir_slice = cxl_p1n_read(afu, CXL_PSL_FIR_SLICE_An);
1026 afu_debug = cxl_p1n_read(afu, CXL_AFU_DEBUG_An);
1027 dev_crit(&afu->dev, "PSL_FIR_SLICE_An: 0x%016llx\n", fir_slice);
1028 dev_crit(&afu->dev, "CXL_PSL_AFU_DEBUG_An: 0x%016llx\n", afu_debug);
1029 }
Frederic Barratd56d3012016-03-04 12:26:26 +01001030 dev_crit(&afu->dev, "CXL_PSL_ErrStat_An: 0x%016llx\n", errstat);
Philippe Bergheaud6e0c50f2016-07-05 13:08:06 +02001031 dev_crit(&afu->dev, "AFU_ERR_An: 0x%.16llx\n", afu_error);
1032 dev_crit(&afu->dev, "PSL_DSISR_An: 0x%.16llx\n", dsisr);
Frederic Barratd56d3012016-03-04 12:26:26 +01001033
1034 cxl_p1n_write(afu, CXL_PSL_SERR_An, serr);
1035
1036 return IRQ_HANDLED;
1037}
1038
Frederic Barrat6d382612016-05-24 03:39:18 +10001039void cxl_native_err_irq_dump_regs(struct cxl *adapter)
1040{
1041 u64 fir1, fir2;
1042
1043 fir1 = cxl_p1_read(adapter, CXL_PSL_FIR1);
1044 fir2 = cxl_p1_read(adapter, CXL_PSL_FIR2);
1045
1046 dev_crit(&adapter->dev, "PSL_FIR1: 0x%016llx\nPSL_FIR2: 0x%016llx\n", fir1, fir2);
1047}
1048
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001049static irqreturn_t native_irq_err(int irq, void *data)
Frederic Barratd56d3012016-03-04 12:26:26 +01001050{
1051 struct cxl *adapter = data;
Frederic Barrat6d382612016-05-24 03:39:18 +10001052 u64 err_ivte;
Frederic Barratd56d3012016-03-04 12:26:26 +01001053
1054 WARN(1, "CXL ERROR interrupt %i\n", irq);
1055
1056 err_ivte = cxl_p1_read(adapter, CXL_PSL_ErrIVTE);
1057 dev_crit(&adapter->dev, "PSL_ErrIVTE: 0x%016llx\n", err_ivte);
1058
Frederic Barrat6d382612016-05-24 03:39:18 +10001059 if (adapter->native->sl_ops->debugfs_stop_trace) {
1060 dev_crit(&adapter->dev, "STOPPING CXL TRACE\n");
1061 adapter->native->sl_ops->debugfs_stop_trace(adapter);
1062 }
Frederic Barratd56d3012016-03-04 12:26:26 +01001063
Frederic Barrat6d382612016-05-24 03:39:18 +10001064 if (adapter->native->sl_ops->err_irq_dump_registers)
1065 adapter->native->sl_ops->err_irq_dump_registers(adapter);
Frederic Barratd56d3012016-03-04 12:26:26 +01001066
1067 return IRQ_HANDLED;
1068}
1069
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001070int cxl_native_register_psl_err_irq(struct cxl *adapter)
Frederic Barratd56d3012016-03-04 12:26:26 +01001071{
1072 int rc;
1073
1074 adapter->irq_name = kasprintf(GFP_KERNEL, "cxl-%s-err",
1075 dev_name(&adapter->dev));
1076 if (!adapter->irq_name)
1077 return -ENOMEM;
1078
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001079 if ((rc = cxl_register_one_irq(adapter, native_irq_err, adapter,
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001080 &adapter->native->err_hwirq,
1081 &adapter->native->err_virq,
Frederic Barratd56d3012016-03-04 12:26:26 +01001082 adapter->irq_name))) {
1083 kfree(adapter->irq_name);
1084 adapter->irq_name = NULL;
1085 return rc;
1086 }
1087
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001088 cxl_p1_write(adapter, CXL_PSL_ErrIVTE, adapter->native->err_hwirq & 0xffff);
Frederic Barratd56d3012016-03-04 12:26:26 +01001089
1090 return 0;
1091}
1092
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001093void cxl_native_release_psl_err_irq(struct cxl *adapter)
Frederic Barratd56d3012016-03-04 12:26:26 +01001094{
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001095 if (adapter->native->err_virq != irq_find_mapping(NULL, adapter->native->err_hwirq))
Frederic Barratd56d3012016-03-04 12:26:26 +01001096 return;
1097
1098 cxl_p1_write(adapter, CXL_PSL_ErrIVTE, 0x0000000000000000);
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001099 cxl_unmap_irq(adapter->native->err_virq, adapter);
1100 cxl_ops->release_one_irq(adapter, adapter->native->err_hwirq);
Frederic Barratd56d3012016-03-04 12:26:26 +01001101 kfree(adapter->irq_name);
1102}
1103
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001104int cxl_native_register_serr_irq(struct cxl_afu *afu)
Frederic Barratd56d3012016-03-04 12:26:26 +01001105{
1106 u64 serr;
1107 int rc;
1108
1109 afu->err_irq_name = kasprintf(GFP_KERNEL, "cxl-%s-err",
1110 dev_name(&afu->dev));
1111 if (!afu->err_irq_name)
1112 return -ENOMEM;
1113
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001114 if ((rc = cxl_register_one_irq(afu->adapter, native_slice_irq_err, afu,
Frederic Barratd56d3012016-03-04 12:26:26 +01001115 &afu->serr_hwirq,
1116 &afu->serr_virq, afu->err_irq_name))) {
1117 kfree(afu->err_irq_name);
1118 afu->err_irq_name = NULL;
1119 return rc;
1120 }
1121
1122 serr = cxl_p1n_read(afu, CXL_PSL_SERR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +02001123 if (cxl_is_power8())
1124 serr = (serr & 0x00ffffffffff0000ULL) | (afu->serr_hwirq & 0xffff);
Frederic Barratd56d3012016-03-04 12:26:26 +01001125 cxl_p1n_write(afu, CXL_PSL_SERR_An, serr);
1126
1127 return 0;
1128}
1129
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001130void cxl_native_release_serr_irq(struct cxl_afu *afu)
Frederic Barratd56d3012016-03-04 12:26:26 +01001131{
1132 if (afu->serr_virq != irq_find_mapping(NULL, afu->serr_hwirq))
1133 return;
1134
1135 cxl_p1n_write(afu, CXL_PSL_SERR_An, 0x0000000000000000);
1136 cxl_unmap_irq(afu->serr_virq, afu);
Frederic Barrat5be587b2016-03-04 12:26:28 +01001137 cxl_ops->release_one_irq(afu->adapter, afu->serr_hwirq);
Frederic Barratd56d3012016-03-04 12:26:26 +01001138 kfree(afu->err_irq_name);
1139}
1140
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001141int cxl_native_register_psl_irq(struct cxl_afu *afu)
Frederic Barratd56d3012016-03-04 12:26:26 +01001142{
1143 int rc;
1144
1145 afu->psl_irq_name = kasprintf(GFP_KERNEL, "cxl-%s",
1146 dev_name(&afu->dev));
1147 if (!afu->psl_irq_name)
1148 return -ENOMEM;
1149
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001150 if ((rc = cxl_register_one_irq(afu->adapter, native_irq_multiplexed,
1151 afu, &afu->native->psl_hwirq, &afu->native->psl_virq,
Frederic Barratd56d3012016-03-04 12:26:26 +01001152 afu->psl_irq_name))) {
1153 kfree(afu->psl_irq_name);
1154 afu->psl_irq_name = NULL;
1155 }
1156 return rc;
1157}
1158
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001159void cxl_native_release_psl_irq(struct cxl_afu *afu)
Frederic Barratd56d3012016-03-04 12:26:26 +01001160{
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001161 if (afu->native->psl_virq != irq_find_mapping(NULL, afu->native->psl_hwirq))
Frederic Barratd56d3012016-03-04 12:26:26 +01001162 return;
1163
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001164 cxl_unmap_irq(afu->native->psl_virq, afu);
1165 cxl_ops->release_one_irq(afu->adapter, afu->native->psl_hwirq);
Frederic Barratd56d3012016-03-04 12:26:26 +01001166 kfree(afu->psl_irq_name);
1167}
1168
Ian Munsief204e0b2014-10-08 19:55:02 +11001169static void recover_psl_err(struct cxl_afu *afu, u64 errstat)
1170{
1171 u64 dsisr;
1172
Rasmus Villemoesde369532015-06-11 13:27:52 +02001173 pr_devel("RECOVERING FROM PSL ERROR... (0x%016llx)\n", errstat);
Ian Munsief204e0b2014-10-08 19:55:02 +11001174
1175 /* Clear PSL_DSISR[PE] */
1176 dsisr = cxl_p2n_read(afu, CXL_PSL_DSISR_An);
1177 cxl_p2n_write(afu, CXL_PSL_DSISR_An, dsisr & ~CXL_PSL_DSISR_An_PE);
1178
1179 /* Write 1s to clear error status bits */
1180 cxl_p2n_write(afu, CXL_PSL_ErrStat_An, errstat);
1181}
1182
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001183static int native_ack_irq(struct cxl_context *ctx, u64 tfc, u64 psl_reset_mask)
Ian Munsief204e0b2014-10-08 19:55:02 +11001184{
Ian Munsie9bcf28c2015-01-09 20:34:36 +11001185 trace_cxl_psl_irq_ack(ctx, tfc);
Ian Munsief204e0b2014-10-08 19:55:02 +11001186 if (tfc)
1187 cxl_p2n_write(ctx->afu, CXL_PSL_TFC_An, tfc);
1188 if (psl_reset_mask)
1189 recover_psl_err(ctx->afu, psl_reset_mask);
1190
1191 return 0;
1192}
1193
1194int cxl_check_error(struct cxl_afu *afu)
1195{
1196 return (cxl_p1n_read(afu, CXL_PSL_SCNTL_An) == ~0ULL);
1197}
Frederic Barratd56d3012016-03-04 12:26:26 +01001198
Christophe Lombard47528762016-03-04 12:26:37 +01001199static bool native_support_attributes(const char *attr_name,
1200 enum cxl_attrs type)
1201{
1202 return true;
1203}
1204
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001205static int native_afu_cr_read64(struct cxl_afu *afu, int cr, u64 off, u64 *out)
Frederic Barratd56d3012016-03-04 12:26:26 +01001206{
Christophe Lombard0d400f72016-03-04 12:26:41 +01001207 if (unlikely(!cxl_ops->link_ok(afu->adapter, afu)))
Frederic Barrat5be587b2016-03-04 12:26:28 +01001208 return -EIO;
1209 if (unlikely(off >= afu->crs_len))
1210 return -ERANGE;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001211 *out = in_le64(afu->native->afu_desc_mmio + afu->crs_offset +
Frederic Barrat5be587b2016-03-04 12:26:28 +01001212 (cr * afu->crs_len) + off);
1213 return 0;
Frederic Barratd56d3012016-03-04 12:26:26 +01001214}
1215
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001216static int native_afu_cr_read32(struct cxl_afu *afu, int cr, u64 off, u32 *out)
Frederic Barratd56d3012016-03-04 12:26:26 +01001217{
Christophe Lombard0d400f72016-03-04 12:26:41 +01001218 if (unlikely(!cxl_ops->link_ok(afu->adapter, afu)))
Frederic Barrat5be587b2016-03-04 12:26:28 +01001219 return -EIO;
1220 if (unlikely(off >= afu->crs_len))
1221 return -ERANGE;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001222 *out = in_le32(afu->native->afu_desc_mmio + afu->crs_offset +
Frederic Barrat5be587b2016-03-04 12:26:28 +01001223 (cr * afu->crs_len) + off);
1224 return 0;
Frederic Barratd56d3012016-03-04 12:26:26 +01001225}
1226
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001227static int native_afu_cr_read16(struct cxl_afu *afu, int cr, u64 off, u16 *out)
Frederic Barratd56d3012016-03-04 12:26:26 +01001228{
1229 u64 aligned_off = off & ~0x3L;
1230 u32 val;
Frederic Barrat5be587b2016-03-04 12:26:28 +01001231 int rc;
Frederic Barratd56d3012016-03-04 12:26:26 +01001232
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001233 rc = native_afu_cr_read32(afu, cr, aligned_off, &val);
Frederic Barrat5be587b2016-03-04 12:26:28 +01001234 if (!rc)
1235 *out = (val >> ((off & 0x3) * 8)) & 0xffff;
1236 return rc;
Frederic Barratd56d3012016-03-04 12:26:26 +01001237}
1238
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001239static int native_afu_cr_read8(struct cxl_afu *afu, int cr, u64 off, u8 *out)
Frederic Barratd56d3012016-03-04 12:26:26 +01001240{
1241 u64 aligned_off = off & ~0x3L;
1242 u32 val;
Frederic Barrat5be587b2016-03-04 12:26:28 +01001243 int rc;
Frederic Barratd56d3012016-03-04 12:26:26 +01001244
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001245 rc = native_afu_cr_read32(afu, cr, aligned_off, &val);
Frederic Barrat5be587b2016-03-04 12:26:28 +01001246 if (!rc)
1247 *out = (val >> ((off & 0x3) * 8)) & 0xff;
1248 return rc;
Frederic Barratd56d3012016-03-04 12:26:26 +01001249}
Frederic Barrat5be587b2016-03-04 12:26:28 +01001250
Frederic Barratd601ea92016-03-04 12:26:40 +01001251static int native_afu_cr_write32(struct cxl_afu *afu, int cr, u64 off, u32 in)
1252{
Christophe Lombard0d400f72016-03-04 12:26:41 +01001253 if (unlikely(!cxl_ops->link_ok(afu->adapter, afu)))
Frederic Barratd601ea92016-03-04 12:26:40 +01001254 return -EIO;
1255 if (unlikely(off >= afu->crs_len))
1256 return -ERANGE;
1257 out_le32(afu->native->afu_desc_mmio + afu->crs_offset +
1258 (cr * afu->crs_len) + off, in);
1259 return 0;
1260}
1261
1262static int native_afu_cr_write16(struct cxl_afu *afu, int cr, u64 off, u16 in)
1263{
1264 u64 aligned_off = off & ~0x3L;
1265 u32 val32, mask, shift;
1266 int rc;
1267
1268 rc = native_afu_cr_read32(afu, cr, aligned_off, &val32);
1269 if (rc)
1270 return rc;
1271 shift = (off & 0x3) * 8;
1272 WARN_ON(shift == 24);
1273 mask = 0xffff << shift;
1274 val32 = (val32 & ~mask) | (in << shift);
1275
1276 rc = native_afu_cr_write32(afu, cr, aligned_off, val32);
1277 return rc;
1278}
1279
1280static int native_afu_cr_write8(struct cxl_afu *afu, int cr, u64 off, u8 in)
1281{
1282 u64 aligned_off = off & ~0x3L;
1283 u32 val32, mask, shift;
1284 int rc;
1285
1286 rc = native_afu_cr_read32(afu, cr, aligned_off, &val32);
1287 if (rc)
1288 return rc;
1289 shift = (off & 0x3) * 8;
1290 mask = 0xff << shift;
1291 val32 = (val32 & ~mask) | (in << shift);
1292
1293 rc = native_afu_cr_write32(afu, cr, aligned_off, val32);
1294 return rc;
1295}
1296
Frederic Barrat5be587b2016-03-04 12:26:28 +01001297const struct cxl_backend_ops cxl_native_ops = {
1298 .module = THIS_MODULE,
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001299 .adapter_reset = cxl_pci_reset,
1300 .alloc_one_irq = cxl_pci_alloc_one_irq,
1301 .release_one_irq = cxl_pci_release_one_irq,
1302 .alloc_irq_ranges = cxl_pci_alloc_irq_ranges,
1303 .release_irq_ranges = cxl_pci_release_irq_ranges,
1304 .setup_irq = cxl_pci_setup_irq,
1305 .handle_psl_slice_error = native_handle_psl_slice_error,
Frederic Barrat5be587b2016-03-04 12:26:28 +01001306 .psl_interrupt = NULL,
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001307 .ack_irq = native_ack_irq,
Michael Neuling2bc79ff2016-04-22 14:57:49 +10001308 .irq_wait = native_irq_wait,
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001309 .attach_process = native_attach_process,
1310 .detach_process = native_detach_process,
Ian Munsie292841b2016-05-24 02:14:05 +10001311 .update_ivtes = native_update_ivtes,
Christophe Lombard47528762016-03-04 12:26:37 +01001312 .support_attributes = native_support_attributes,
Frederic Barrat5be587b2016-03-04 12:26:28 +01001313 .link_ok = cxl_adapter_link_ok,
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001314 .release_afu = cxl_pci_release_afu,
1315 .afu_read_err_buffer = cxl_pci_afu_read_err_buffer,
1316 .afu_check_and_enable = native_afu_check_and_enable,
1317 .afu_activate_mode = native_afu_activate_mode,
1318 .afu_deactivate_mode = native_afu_deactivate_mode,
1319 .afu_reset = native_afu_reset,
1320 .afu_cr_read8 = native_afu_cr_read8,
1321 .afu_cr_read16 = native_afu_cr_read16,
1322 .afu_cr_read32 = native_afu_cr_read32,
1323 .afu_cr_read64 = native_afu_cr_read64,
Frederic Barratd601ea92016-03-04 12:26:40 +01001324 .afu_cr_write8 = native_afu_cr_write8,
1325 .afu_cr_write16 = native_afu_cr_write16,
1326 .afu_cr_write32 = native_afu_cr_write32,
1327 .read_adapter_vpd = cxl_pci_read_adapter_vpd,
Frederic Barrat5be587b2016-03-04 12:26:28 +01001328};