blob: 194c58ec83b82f186ee03fa8295a5858c168c676 [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;
Christophe Lombardf24be422017-04-12 16:34:07 +0200123 u64 trans_fault = 0x0ULL;
Ian Munsief204e0b2014-10-08 19:55:02 +1100124 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100125 int rc = 0;
126
127 trace_cxl_psl_ctrl(afu, CXL_PSL_SCNTL_An_Pc);
Ian Munsief204e0b2014-10-08 19:55:02 +1100128
129 pr_devel("PSL purge request\n");
130
Christophe Lombardf24be422017-04-12 16:34:07 +0200131 if (cxl_is_psl8(afu))
132 trans_fault = CXL_PSL_DSISR_TRANS;
133 if (cxl_is_psl9(afu))
134 trans_fault = CXL_PSL9_DSISR_An_TF;
135
Christophe Lombard0d400f72016-03-04 12:26:41 +0100136 if (!cxl_ops->link_ok(afu->adapter, afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000137 dev_warn(&afu->dev, "PSL Purge called with link down, ignoring\n");
138 rc = -EIO;
139 goto out;
140 }
141
Ian Munsief204e0b2014-10-08 19:55:02 +1100142 if ((AFU_Cntl & CXL_AFU_Cntl_An_ES_MASK) != CXL_AFU_Cntl_An_ES_Disabled) {
143 WARN(1, "psl_purge request while AFU not disabled!\n");
144 cxl_afu_disable(afu);
145 }
146
147 cxl_p1n_write(afu, CXL_PSL_SCNTL_An,
148 PSL_CNTL | CXL_PSL_SCNTL_An_Pc);
149 start = local_clock();
150 PSL_CNTL = cxl_p1n_read(afu, CXL_PSL_SCNTL_An);
151 while ((PSL_CNTL & CXL_PSL_SCNTL_An_Ps_MASK)
152 == CXL_PSL_SCNTL_An_Ps_Pending) {
153 if (time_after_eq(jiffies, timeout)) {
154 dev_warn(&afu->dev, "WARNING: PSL Purge timed out!\n");
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100155 rc = -EBUSY;
156 goto out;
Ian Munsief204e0b2014-10-08 19:55:02 +1100157 }
Christophe Lombard0d400f72016-03-04 12:26:41 +0100158 if (!cxl_ops->link_ok(afu->adapter, afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000159 rc = -EIO;
160 goto out;
161 }
162
Ian Munsief204e0b2014-10-08 19:55:02 +1100163 dsisr = cxl_p2n_read(afu, CXL_PSL_DSISR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +0200164 pr_devel_ratelimited("PSL purging... PSL_CNTL: 0x%016llx PSL_DSISR: 0x%016llx\n",
165 PSL_CNTL, dsisr);
166
Christophe Lombardf24be422017-04-12 16:34:07 +0200167 if (dsisr & trans_fault) {
Ian Munsief204e0b2014-10-08 19:55:02 +1100168 dar = cxl_p2n_read(afu, CXL_PSL_DAR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +0200169 dev_notice(&afu->dev, "PSL purge terminating pending translation, DSISR: 0x%016llx, DAR: 0x%016llx\n",
170 dsisr, dar);
Ian Munsief204e0b2014-10-08 19:55:02 +1100171 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_AE);
172 } else if (dsisr) {
Christophe Lombardabd1d992017-04-07 16:11:58 +0200173 dev_notice(&afu->dev, "PSL purge acknowledging pending non-translation fault, DSISR: 0x%016llx\n",
174 dsisr);
Ian Munsief204e0b2014-10-08 19:55:02 +1100175 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_A);
176 } else {
177 cpu_relax();
178 }
179 PSL_CNTL = cxl_p1n_read(afu, CXL_PSL_SCNTL_An);
Andrew Donnellan3382a622016-11-22 21:13:27 +1100180 }
Ian Munsief204e0b2014-10-08 19:55:02 +1100181 end = local_clock();
182 pr_devel("PSL purged in %lld ns\n", end - start);
183
184 cxl_p1n_write(afu, CXL_PSL_SCNTL_An,
185 PSL_CNTL & ~CXL_PSL_SCNTL_An_Pc);
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100186out:
187 trace_cxl_psl_ctrl_done(afu, CXL_PSL_SCNTL_An_Pc, rc);
188 return rc;
Ian Munsief204e0b2014-10-08 19:55:02 +1100189}
190
191static int spa_max_procs(int spa_size)
192{
193 /*
194 * From the CAIA:
195 * end_of_SPA_area = SPA_Base + ((n+4) * 128) + (( ((n*8) + 127) >> 7) * 128) + 255
196 * Most of that junk is really just an overly-complicated way of saying
197 * the last 256 bytes are __aligned(128), so it's really:
198 * end_of_SPA_area = end_of_PSL_queue_area + __aligned(128) 255
199 * and
200 * end_of_PSL_queue_area = SPA_Base + ((n+4) * 128) + (n*8) - 1
201 * so
202 * sizeof(SPA) = ((n+4) * 128) + (n*8) + __aligned(128) 256
203 * Ignore the alignment (which is safe in this case as long as we are
204 * careful with our rounding) and solve for n:
205 */
206 return ((spa_size / 8) - 96) / 17;
207}
208
Christophe Lombardf24be422017-04-12 16:34:07 +0200209static int cxl_alloc_spa(struct cxl_afu *afu, int mode)
Ian Munsief204e0b2014-10-08 19:55:02 +1100210{
Ian Munsie895a7982016-05-04 14:46:30 +1000211 unsigned spa_size;
212
Ian Munsief204e0b2014-10-08 19:55:02 +1100213 /* Work out how many pages to allocate */
Ian Munsie2224b672016-06-29 22:16:26 +1000214 afu->native->spa_order = -1;
Ian Munsief204e0b2014-10-08 19:55:02 +1100215 do {
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100216 afu->native->spa_order++;
Ian Munsie895a7982016-05-04 14:46:30 +1000217 spa_size = (1 << afu->native->spa_order) * PAGE_SIZE;
218
219 if (spa_size > 0x100000) {
220 dev_warn(&afu->dev, "num_of_processes too large for the SPA, limiting to %i (0x%x)\n",
221 afu->native->spa_max_procs, afu->native->spa_size);
Christophe Lombardf24be422017-04-12 16:34:07 +0200222 if (mode != CXL_MODE_DEDICATED)
223 afu->num_procs = afu->native->spa_max_procs;
Ian Munsie895a7982016-05-04 14:46:30 +1000224 break;
225 }
226
227 afu->native->spa_size = spa_size;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100228 afu->native->spa_max_procs = spa_max_procs(afu->native->spa_size);
229 } while (afu->native->spa_max_procs < afu->num_procs);
Ian Munsief204e0b2014-10-08 19:55:02 +1100230
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100231 if (!(afu->native->spa = (struct cxl_process_element *)
232 __get_free_pages(GFP_KERNEL | __GFP_ZERO, afu->native->spa_order))) {
Ian Munsief204e0b2014-10-08 19:55:02 +1100233 pr_err("cxl_alloc_spa: Unable to allocate scheduled process area\n");
234 return -ENOMEM;
235 }
236 pr_devel("spa pages: %i afu->spa_max_procs: %i afu->num_procs: %i\n",
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100237 1<<afu->native->spa_order, afu->native->spa_max_procs, afu->num_procs);
Ian Munsief204e0b2014-10-08 19:55:02 +1100238
Daniel Axtens051557722015-08-14 17:41:19 +1000239 return 0;
240}
241
242static void attach_spa(struct cxl_afu *afu)
243{
244 u64 spap;
245
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100246 afu->native->sw_command_status = (__be64 *)((char *)afu->native->spa +
247 ((afu->native->spa_max_procs + 3) * 128));
Ian Munsief204e0b2014-10-08 19:55:02 +1100248
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100249 spap = virt_to_phys(afu->native->spa) & CXL_PSL_SPAP_Addr;
250 spap |= ((afu->native->spa_size >> (12 - CXL_PSL_SPAP_Size_Shift)) - 1) & CXL_PSL_SPAP_Size;
Ian Munsief204e0b2014-10-08 19:55:02 +1100251 spap |= CXL_PSL_SPAP_V;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100252 pr_devel("cxl: SPA allocated at 0x%p. Max processes: %i, sw_command_status: 0x%p CXL_PSL_SPAP_An=0x%016llx\n",
253 afu->native->spa, afu->native->spa_max_procs,
254 afu->native->sw_command_status, spap);
Ian Munsief204e0b2014-10-08 19:55:02 +1100255 cxl_p1n_write(afu, CXL_PSL_SPAP_An, spap);
Ian Munsief204e0b2014-10-08 19:55:02 +1100256}
257
Daniel Axtens051557722015-08-14 17:41:19 +1000258static inline void detach_spa(struct cxl_afu *afu)
Ian Munsief204e0b2014-10-08 19:55:02 +1100259{
Ian Munsiedb7933f2014-12-08 19:18:00 +1100260 cxl_p1n_write(afu, CXL_PSL_SPAP_An, 0);
Daniel Axtens051557722015-08-14 17:41:19 +1000261}
262
263void cxl_release_spa(struct cxl_afu *afu)
264{
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100265 if (afu->native->spa) {
266 free_pages((unsigned long) afu->native->spa,
267 afu->native->spa_order);
268 afu->native->spa = NULL;
Daniel Axtens051557722015-08-14 17:41:19 +1000269 }
Ian Munsief204e0b2014-10-08 19:55:02 +1100270}
271
Christophe Lombardf24be422017-04-12 16:34:07 +0200272/*
273 * Invalidation of all ERAT entries is no longer required by CAIA2. Use
274 * only for debug.
275 */
276int cxl_invalidate_all_psl9(struct cxl *adapter)
277{
278 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
279 u64 ierat;
280
281 pr_devel("CXL adapter - invalidation of all ERAT entries\n");
282
283 /* Invalidates all ERAT entries for Radix or HPT */
284 ierat = CXL_XSL9_IERAT_IALL;
285 if (radix_enabled())
286 ierat |= CXL_XSL9_IERAT_INVR;
287 cxl_p1_write(adapter, CXL_XSL9_IERAT, ierat);
288
289 while (cxl_p1_read(adapter, CXL_XSL9_IERAT) & CXL_XSL9_IERAT_IINPROG) {
290 if (time_after_eq(jiffies, timeout)) {
291 dev_warn(&adapter->dev,
292 "WARNING: CXL adapter invalidation of all ERAT entries timed out!\n");
293 return -EBUSY;
294 }
295 if (!cxl_ops->link_ok(adapter, NULL))
296 return -EIO;
297 cpu_relax();
298 }
299 return 0;
300}
301
Christophe Lombard64663f32017-04-07 16:11:57 +0200302int cxl_invalidate_all_psl8(struct cxl *adapter)
Ian Munsief204e0b2014-10-08 19:55:02 +1100303{
304 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
305
306 pr_devel("CXL adapter wide TLBIA & SLBIA\n");
307
308 cxl_p1_write(adapter, CXL_PSL_AFUSEL, CXL_PSL_AFUSEL_A);
309
310 cxl_p1_write(adapter, CXL_PSL_TLBIA, CXL_TLB_SLB_IQ_ALL);
311 while (cxl_p1_read(adapter, CXL_PSL_TLBIA) & CXL_TLB_SLB_P) {
312 if (time_after_eq(jiffies, timeout)) {
313 dev_warn(&adapter->dev, "WARNING: CXL adapter wide TLBIA timed out!\n");
314 return -EBUSY;
315 }
Christophe Lombard0d400f72016-03-04 12:26:41 +0100316 if (!cxl_ops->link_ok(adapter, NULL))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000317 return -EIO;
Ian Munsief204e0b2014-10-08 19:55:02 +1100318 cpu_relax();
319 }
320
321 cxl_p1_write(adapter, CXL_PSL_SLBIA, CXL_TLB_SLB_IQ_ALL);
322 while (cxl_p1_read(adapter, CXL_PSL_SLBIA) & CXL_TLB_SLB_P) {
323 if (time_after_eq(jiffies, timeout)) {
324 dev_warn(&adapter->dev, "WARNING: CXL adapter wide SLBIA timed out!\n");
325 return -EBUSY;
326 }
Christophe Lombard0d400f72016-03-04 12:26:41 +0100327 if (!cxl_ops->link_ok(adapter, NULL))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000328 return -EIO;
Ian Munsief204e0b2014-10-08 19:55:02 +1100329 cpu_relax();
330 }
331 return 0;
332}
333
Frederic Barrataaa22452016-10-03 21:36:02 +0200334int cxl_data_cache_flush(struct cxl *adapter)
335{
336 u64 reg;
337 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
338
339 pr_devel("Flushing data cache\n");
340
341 reg = cxl_p1_read(adapter, CXL_PSL_Control);
342 reg |= CXL_PSL_Control_Fr;
343 cxl_p1_write(adapter, CXL_PSL_Control, reg);
344
345 reg = cxl_p1_read(adapter, CXL_PSL_Control);
346 while ((reg & CXL_PSL_Control_Fs_MASK) != CXL_PSL_Control_Fs_Complete) {
347 if (time_after_eq(jiffies, timeout)) {
348 dev_warn(&adapter->dev, "WARNING: cache flush timed out!\n");
349 return -EBUSY;
350 }
351
352 if (!cxl_ops->link_ok(adapter, NULL)) {
353 dev_warn(&adapter->dev, "WARNING: link down when flushing cache\n");
354 return -EIO;
355 }
356 cpu_relax();
357 reg = cxl_p1_read(adapter, CXL_PSL_Control);
358 }
359
360 reg &= ~CXL_PSL_Control_Fr;
361 cxl_p1_write(adapter, CXL_PSL_Control, reg);
362 return 0;
363}
364
Ian Munsief204e0b2014-10-08 19:55:02 +1100365static int cxl_write_sstp(struct cxl_afu *afu, u64 sstp0, u64 sstp1)
366{
367 int rc;
368
369 /* 1. Disable SSTP by writing 0 to SSTP1[V] */
370 cxl_p2n_write(afu, CXL_SSTP1_An, 0);
371
372 /* 2. Invalidate all SLB entries */
373 if ((rc = cxl_afu_slbia(afu)))
374 return rc;
375
376 /* 3. Set SSTP0_An */
377 cxl_p2n_write(afu, CXL_SSTP0_An, sstp0);
378
379 /* 4. Set SSTP1_An */
380 cxl_p2n_write(afu, CXL_SSTP1_An, sstp1);
381
382 return 0;
383}
384
385/* Using per slice version may improve performance here. (ie. SLBIA_An) */
386static void slb_invalid(struct cxl_context *ctx)
387{
388 struct cxl *adapter = ctx->afu->adapter;
389 u64 slbia;
390
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100391 WARN_ON(!mutex_is_locked(&ctx->afu->native->spa_mutex));
Ian Munsief204e0b2014-10-08 19:55:02 +1100392
393 cxl_p1_write(adapter, CXL_PSL_LBISEL,
394 ((u64)be32_to_cpu(ctx->elem->common.pid) << 32) |
395 be32_to_cpu(ctx->elem->lpid));
396 cxl_p1_write(adapter, CXL_PSL_SLBIA, CXL_TLB_SLB_IQ_LPIDPID);
397
398 while (1) {
Christophe Lombard0d400f72016-03-04 12:26:41 +0100399 if (!cxl_ops->link_ok(adapter, NULL))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000400 break;
Ian Munsief204e0b2014-10-08 19:55:02 +1100401 slbia = cxl_p1_read(adapter, CXL_PSL_SLBIA);
402 if (!(slbia & CXL_TLB_SLB_P))
403 break;
404 cpu_relax();
405 }
406}
407
408static int do_process_element_cmd(struct cxl_context *ctx,
409 u64 cmd, u64 pe_state)
410{
411 u64 state;
Ian Munsiea98e6e92014-12-08 19:17:56 +1100412 unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT);
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100413 int rc = 0;
414
415 trace_cxl_llcmd(ctx, cmd);
Ian Munsief204e0b2014-10-08 19:55:02 +1100416
417 WARN_ON(!ctx->afu->enabled);
418
419 ctx->elem->software_state = cpu_to_be32(pe_state);
420 smp_wmb();
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100421 *(ctx->afu->native->sw_command_status) = cpu_to_be64(cmd | 0 | ctx->pe);
Ian Munsief204e0b2014-10-08 19:55:02 +1100422 smp_mb();
423 cxl_p1n_write(ctx->afu, CXL_PSL_LLCMD_An, cmd | ctx->pe);
424 while (1) {
Ian Munsiea98e6e92014-12-08 19:17:56 +1100425 if (time_after_eq(jiffies, timeout)) {
426 dev_warn(&ctx->afu->dev, "WARNING: Process Element Command timed out!\n");
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100427 rc = -EBUSY;
428 goto out;
Ian Munsiea98e6e92014-12-08 19:17:56 +1100429 }
Christophe Lombard0d400f72016-03-04 12:26:41 +0100430 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000431 dev_warn(&ctx->afu->dev, "WARNING: Device link down, aborting Process Element Command!\n");
432 rc = -EIO;
433 goto out;
434 }
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100435 state = be64_to_cpup(ctx->afu->native->sw_command_status);
Ian Munsief204e0b2014-10-08 19:55:02 +1100436 if (state == ~0ULL) {
437 pr_err("cxl: Error adding process element to AFU\n");
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100438 rc = -1;
439 goto out;
Ian Munsief204e0b2014-10-08 19:55:02 +1100440 }
441 if ((state & (CXL_SPA_SW_CMD_MASK | CXL_SPA_SW_STATE_MASK | CXL_SPA_SW_LINK_MASK)) ==
442 (cmd | (cmd >> 16) | ctx->pe))
443 break;
444 /*
445 * The command won't finish in the PSL if there are
446 * outstanding DSIs. Hence we need to yield here in
447 * case there are outstanding DSIs that we need to
448 * service. Tuning possiblity: we could wait for a
449 * while before sched
450 */
451 schedule();
452
453 }
Ian Munsie9bcf28c2015-01-09 20:34:36 +1100454out:
455 trace_cxl_llcmd_done(ctx, cmd, rc);
456 return rc;
Ian Munsief204e0b2014-10-08 19:55:02 +1100457}
458
459static int add_process_element(struct cxl_context *ctx)
460{
461 int rc = 0;
462
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100463 mutex_lock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100464 pr_devel("%s Adding pe: %i started\n", __func__, ctx->pe);
465 if (!(rc = do_process_element_cmd(ctx, CXL_SPA_SW_CMD_ADD, CXL_PE_SOFTWARE_STATE_V)))
466 ctx->pe_inserted = true;
467 pr_devel("%s Adding pe: %i finished\n", __func__, ctx->pe);
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100468 mutex_unlock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100469 return rc;
470}
471
472static int terminate_process_element(struct cxl_context *ctx)
473{
474 int rc = 0;
475
476 /* fast path terminate if it's already invalid */
477 if (!(ctx->elem->software_state & cpu_to_be32(CXL_PE_SOFTWARE_STATE_V)))
478 return rc;
479
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100480 mutex_lock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100481 pr_devel("%s Terminate pe: %i started\n", __func__, ctx->pe);
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000482 /* We could be asked to terminate when the hw is down. That
483 * should always succeed: it's not running if the hw has gone
484 * away and is being reset.
485 */
Christophe Lombard0d400f72016-03-04 12:26:41 +0100486 if (cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000487 rc = do_process_element_cmd(ctx, CXL_SPA_SW_CMD_TERMINATE,
488 CXL_PE_SOFTWARE_STATE_V | CXL_PE_SOFTWARE_STATE_T);
Ian Munsief204e0b2014-10-08 19:55:02 +1100489 ctx->elem->software_state = 0; /* Remove Valid bit */
490 pr_devel("%s Terminate pe: %i finished\n", __func__, ctx->pe);
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100491 mutex_unlock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100492 return rc;
493}
494
495static int remove_process_element(struct cxl_context *ctx)
496{
497 int rc = 0;
498
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100499 mutex_lock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100500 pr_devel("%s Remove pe: %i started\n", __func__, ctx->pe);
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000501
502 /* We could be asked to remove when the hw is down. Again, if
503 * the hw is down, the PE is gone, so we succeed.
504 */
Christophe Lombard0d400f72016-03-04 12:26:41 +0100505 if (cxl_ops->link_ok(ctx->afu->adapter, ctx->afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000506 rc = do_process_element_cmd(ctx, CXL_SPA_SW_CMD_REMOVE, 0);
507
508 if (!rc)
Ian Munsief204e0b2014-10-08 19:55:02 +1100509 ctx->pe_inserted = false;
Christophe Lombardabd1d992017-04-07 16:11:58 +0200510 if (cxl_is_power8())
511 slb_invalid(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100512 pr_devel("%s Remove pe: %i finished\n", __func__, ctx->pe);
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100513 mutex_unlock(&ctx->afu->native->spa_mutex);
Ian Munsief204e0b2014-10-08 19:55:02 +1100514
515 return rc;
516}
517
Michael Neuling1a1a94b2015-05-27 16:07:10 +1000518void cxl_assign_psn_space(struct cxl_context *ctx)
Ian Munsief204e0b2014-10-08 19:55:02 +1100519{
520 if (!ctx->afu->pp_size || ctx->master) {
521 ctx->psn_phys = ctx->afu->psn_phys;
522 ctx->psn_size = ctx->afu->adapter->ps_size;
523 } else {
524 ctx->psn_phys = ctx->afu->psn_phys +
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100525 (ctx->afu->native->pp_offset + ctx->afu->pp_size * ctx->pe);
Ian Munsief204e0b2014-10-08 19:55:02 +1100526 ctx->psn_size = ctx->afu->pp_size;
527 }
528}
529
530static int activate_afu_directed(struct cxl_afu *afu)
531{
532 int rc;
533
534 dev_info(&afu->dev, "Activating AFU directed mode\n");
535
Christophe Lombard4108efb2015-10-07 16:07:40 +1100536 afu->num_procs = afu->max_procs_virtualised;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +0100537 if (afu->native->spa == NULL) {
Christophe Lombardf24be422017-04-12 16:34:07 +0200538 if (cxl_alloc_spa(afu, CXL_MODE_DIRECTED))
Daniel Axtens051557722015-08-14 17:41:19 +1000539 return -ENOMEM;
540 }
541 attach_spa(afu);
Ian Munsief204e0b2014-10-08 19:55:02 +1100542
543 cxl_p1n_write(afu, CXL_PSL_SCNTL_An, CXL_PSL_SCNTL_An_PM_AFU);
Christophe Lombardabd1d992017-04-07 16:11:58 +0200544 if (cxl_is_power8())
545 cxl_p1n_write(afu, CXL_PSL_AMOR_An, 0xFFFFFFFFFFFFFFFFULL);
Ian Munsief204e0b2014-10-08 19:55:02 +1100546 cxl_p1n_write(afu, CXL_PSL_ID_An, CXL_PSL_ID_An_F | CXL_PSL_ID_An_L);
547
548 afu->current_mode = CXL_MODE_DIRECTED;
Ian Munsief204e0b2014-10-08 19:55:02 +1100549
550 if ((rc = cxl_chardev_m_afu_add(afu)))
551 return rc;
552
553 if ((rc = cxl_sysfs_afu_m_add(afu)))
554 goto err;
555
556 if ((rc = cxl_chardev_s_afu_add(afu)))
557 goto err1;
558
559 return 0;
560err1:
561 cxl_sysfs_afu_m_remove(afu);
562err:
563 cxl_chardev_afu_remove(afu);
564 return rc;
565}
566
567#ifdef CONFIG_CPU_LITTLE_ENDIAN
568#define set_endian(sr) ((sr) |= CXL_PSL_SR_An_LE)
569#else
570#define set_endian(sr) ((sr) &= ~(CXL_PSL_SR_An_LE))
571#endif
572
Michael Neuling2f663522015-05-27 16:07:13 +1000573static u64 calculate_sr(struct cxl_context *ctx)
574{
575 u64 sr = 0;
576
Frederic Barrate606e032015-12-07 14:34:40 +0100577 set_endian(sr);
Michael Neuling2f663522015-05-27 16:07:13 +1000578 if (ctx->master)
579 sr |= CXL_PSL_SR_An_MP;
580 if (mfspr(SPRN_LPCR) & LPCR_TC)
581 sr |= CXL_PSL_SR_An_TC;
582 if (ctx->kernel) {
Ian Munsie7a0d85d2016-05-06 17:46:36 +1000583 if (!ctx->real_mode)
584 sr |= CXL_PSL_SR_An_R;
585 sr |= (mfmsr() & MSR_SF) | CXL_PSL_SR_An_HV;
Michael Neuling2f663522015-05-27 16:07:13 +1000586 } else {
587 sr |= CXL_PSL_SR_An_PR | CXL_PSL_SR_An_R;
Christophe Lombardf24be422017-04-12 16:34:07 +0200588 if (radix_enabled())
589 sr |= CXL_PSL_SR_An_HV;
590 else
591 sr &= ~(CXL_PSL_SR_An_HV);
Michael Neuling2f663522015-05-27 16:07:13 +1000592 if (!test_tsk_thread_flag(current, TIF_32BIT))
593 sr |= CXL_PSL_SR_An_SF;
594 }
Christophe Lombardf24be422017-04-12 16:34:07 +0200595 if (cxl_is_psl9(ctx->afu)) {
596 if (radix_enabled())
597 sr |= CXL_PSL_SR_An_XLAT_ror;
598 else
599 sr |= CXL_PSL_SR_An_XLAT_hpt;
600 }
Michael Neuling2f663522015-05-27 16:07:13 +1000601 return sr;
602}
603
Ian Munsie292841b2016-05-24 02:14:05 +1000604static void update_ivtes_directed(struct cxl_context *ctx)
605{
606 bool need_update = (ctx->status == STARTED);
607 int r;
608
609 if (need_update) {
610 WARN_ON(terminate_process_element(ctx));
611 WARN_ON(remove_process_element(ctx));
612 }
613
614 for (r = 0; r < CXL_IRQ_RANGES; r++) {
615 ctx->elem->ivte_offsets[r] = cpu_to_be16(ctx->irqs.offset[r]);
616 ctx->elem->ivte_ranges[r] = cpu_to_be16(ctx->irqs.range[r]);
617 }
618
619 /*
620 * Theoretically we could use the update llcmd, instead of a
621 * terminate/remove/add (or if an atomic update was required we could
622 * do a suspend/update/resume), however it seems there might be issues
623 * with the update llcmd on some cards (including those using an XSL on
624 * an ASIC) so for now it's safest to go with the commands that are
625 * known to work. In the future if we come across a situation where the
626 * card may be performing transactions using the same PE while we are
627 * doing this update we might need to revisit this.
628 */
629 if (need_update)
630 WARN_ON(add_process_element(ctx));
631}
632
Christophe Lombardf24be422017-04-12 16:34:07 +0200633static int process_element_entry_psl9(struct cxl_context *ctx, u64 wed, u64 amr)
634{
635 u32 pid;
636
637 cxl_assign_psn_space(ctx);
638
639 ctx->elem->ctxtime = 0; /* disable */
640 ctx->elem->lpid = cpu_to_be32(mfspr(SPRN_LPID));
641 ctx->elem->haurp = 0; /* disable */
642
643 if (ctx->kernel)
644 pid = 0;
645 else {
646 if (ctx->mm == NULL) {
647 pr_devel("%s: unable to get mm for pe=%d pid=%i\n",
648 __func__, ctx->pe, pid_nr(ctx->pid));
649 return -EINVAL;
650 }
651 pid = ctx->mm->context.id;
652 }
653
654 ctx->elem->common.tid = 0;
655 ctx->elem->common.pid = cpu_to_be32(pid);
656
657 ctx->elem->sr = cpu_to_be64(calculate_sr(ctx));
658
659 ctx->elem->common.csrp = 0; /* disable */
660
661 cxl_prefault(ctx, wed);
662
663 /*
664 * Ensure we have the multiplexed PSL interrupt set up to take faults
665 * for kernel contexts that may not have allocated any AFU IRQs at all:
666 */
667 if (ctx->irqs.range[0] == 0) {
668 ctx->irqs.offset[0] = ctx->afu->native->psl_hwirq;
669 ctx->irqs.range[0] = 1;
670 }
671
672 ctx->elem->common.amr = cpu_to_be64(amr);
673 ctx->elem->common.wed = cpu_to_be64(wed);
674
675 return 0;
676}
677
678int cxl_attach_afu_directed_psl9(struct cxl_context *ctx, u64 wed, u64 amr)
679{
680 int result;
681
682 /* fill the process element entry */
683 result = process_element_entry_psl9(ctx, wed, amr);
684 if (result)
685 return result;
686
687 update_ivtes_directed(ctx);
688
689 /* first guy needs to enable */
690 result = cxl_ops->afu_check_and_enable(ctx->afu);
691 if (result)
692 return result;
693
694 return add_process_element(ctx);
695}
696
Christophe Lombard64663f32017-04-07 16:11:57 +0200697int cxl_attach_afu_directed_psl8(struct cxl_context *ctx, u64 wed, u64 amr)
Ian Munsief204e0b2014-10-08 19:55:02 +1100698{
Michael Neuling2f663522015-05-27 16:07:13 +1000699 u32 pid;
Ian Munsie292841b2016-05-24 02:14:05 +1000700 int result;
Ian Munsief204e0b2014-10-08 19:55:02 +1100701
Michael Neuling1a1a94b2015-05-27 16:07:10 +1000702 cxl_assign_psn_space(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100703
704 ctx->elem->ctxtime = 0; /* disable */
705 ctx->elem->lpid = cpu_to_be32(mfspr(SPRN_LPID));
706 ctx->elem->haurp = 0; /* disable */
Christophe Lombardf24be422017-04-12 16:34:07 +0200707 ctx->elem->u.sdr = cpu_to_be64(mfspr(SPRN_SDR1));
Ian Munsief204e0b2014-10-08 19:55:02 +1100708
Michael Neuling2f663522015-05-27 16:07:13 +1000709 pid = current->pid;
710 if (ctx->kernel)
711 pid = 0;
Ian Munsief204e0b2014-10-08 19:55:02 +1100712 ctx->elem->common.tid = 0;
Michael Neuling2f663522015-05-27 16:07:13 +1000713 ctx->elem->common.pid = cpu_to_be32(pid);
714
715 ctx->elem->sr = cpu_to_be64(calculate_sr(ctx));
Ian Munsief204e0b2014-10-08 19:55:02 +1100716
717 ctx->elem->common.csrp = 0; /* disable */
Christophe Lombardf24be422017-04-12 16:34:07 +0200718 ctx->elem->common.u.psl8.aurp0 = 0; /* disable */
719 ctx->elem->common.u.psl8.aurp1 = 0; /* disable */
Ian Munsief204e0b2014-10-08 19:55:02 +1100720
721 cxl_prefault(ctx, wed);
722
Christophe Lombardf24be422017-04-12 16:34:07 +0200723 ctx->elem->common.u.psl8.sstp0 = cpu_to_be64(ctx->sstp0);
724 ctx->elem->common.u.psl8.sstp1 = cpu_to_be64(ctx->sstp1);
Ian Munsief204e0b2014-10-08 19:55:02 +1100725
Ian Munsie3c206fa2016-05-04 14:52:58 +1000726 /*
727 * Ensure we have the multiplexed PSL interrupt set up to take faults
728 * for kernel contexts that may not have allocated any AFU IRQs at all:
729 */
730 if (ctx->irqs.range[0] == 0) {
731 ctx->irqs.offset[0] = ctx->afu->native->psl_hwirq;
732 ctx->irqs.range[0] = 1;
733 }
734
Ian Munsie292841b2016-05-24 02:14:05 +1000735 update_ivtes_directed(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100736
737 ctx->elem->common.amr = cpu_to_be64(amr);
738 ctx->elem->common.wed = cpu_to_be64(wed);
739
740 /* first guy needs to enable */
Frederic Barrat5be587b2016-03-04 12:26:28 +0100741 if ((result = cxl_ops->afu_check_and_enable(ctx->afu)))
Ian Munsief204e0b2014-10-08 19:55:02 +1100742 return result;
743
Daniel Axtens368857c2015-07-29 14:07:22 +1000744 return add_process_element(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100745}
746
747static int deactivate_afu_directed(struct cxl_afu *afu)
748{
749 dev_info(&afu->dev, "Deactivating AFU directed mode\n");
750
751 afu->current_mode = 0;
752 afu->num_procs = 0;
753
754 cxl_sysfs_afu_m_remove(afu);
755 cxl_chardev_afu_remove(afu);
756
Ian Munsie5e7823c2016-07-01 02:50:40 +1000757 /*
758 * The CAIA section 2.2.1 indicates that the procedure for starting and
759 * stopping an AFU in AFU directed mode is AFU specific, which is not
760 * ideal since this code is generic and with one exception has no
761 * knowledge of the AFU. This is in contrast to the procedure for
762 * disabling a dedicated process AFU, which is documented to just
763 * require a reset. The architecture does indicate that both an AFU
764 * reset and an AFU disable should result in the AFU being disabled and
765 * we do both followed by a PSL purge for safety.
766 *
767 * Notably we used to have some issues with the disable sequence on PSL
768 * cards, which is why we ended up using this heavy weight procedure in
769 * the first place, however a bug was discovered that had rendered the
770 * disable operation ineffective, so it is conceivable that was the
771 * sole explanation for those difficulties. Careful regression testing
772 * is recommended if anyone attempts to remove or reorder these
773 * operations.
774 *
775 * The XSL on the Mellanox CX4 behaves a little differently from the
776 * PSL based cards and will time out an AFU reset if the AFU is still
777 * enabled. That card is special in that we do have a means to identify
778 * it from this code, so in that case we skip the reset and just use a
779 * disable/purge to avoid the timeout and corresponding noise in the
780 * kernel log.
781 */
782 if (afu->adapter->native->sl_ops->needs_reset_before_disable)
783 cxl_ops->afu_reset(afu);
Ian Munsief204e0b2014-10-08 19:55:02 +1100784 cxl_afu_disable(afu);
785 cxl_psl_purge(afu);
786
Ian Munsief204e0b2014-10-08 19:55:02 +1100787 return 0;
788}
789
Christophe Lombardf24be422017-04-12 16:34:07 +0200790int cxl_activate_dedicated_process_psl9(struct cxl_afu *afu)
791{
792 dev_info(&afu->dev, "Activating dedicated process mode\n");
793
794 /*
795 * If XSL is set to dedicated mode (Set in PSL_SCNTL reg), the
796 * XSL and AFU are programmed to work with a single context.
797 * The context information should be configured in the SPA area
798 * index 0 (so PSL_SPAP must be configured before enabling the
799 * AFU).
800 */
801 afu->num_procs = 1;
802 if (afu->native->spa == NULL) {
803 if (cxl_alloc_spa(afu, CXL_MODE_DEDICATED))
804 return -ENOMEM;
805 }
806 attach_spa(afu);
807
808 cxl_p1n_write(afu, CXL_PSL_SCNTL_An, CXL_PSL_SCNTL_An_PM_Process);
809 cxl_p1n_write(afu, CXL_PSL_ID_An, CXL_PSL_ID_An_F | CXL_PSL_ID_An_L);
810
811 afu->current_mode = CXL_MODE_DEDICATED;
812
813 return cxl_chardev_d_afu_add(afu);
814}
815
Christophe Lombard64663f32017-04-07 16:11:57 +0200816int cxl_activate_dedicated_process_psl8(struct cxl_afu *afu)
Ian Munsief204e0b2014-10-08 19:55:02 +1100817{
818 dev_info(&afu->dev, "Activating dedicated process mode\n");
819
820 cxl_p1n_write(afu, CXL_PSL_SCNTL_An, CXL_PSL_SCNTL_An_PM_Process);
821
822 cxl_p1n_write(afu, CXL_PSL_CtxTime_An, 0); /* disable */
823 cxl_p1n_write(afu, CXL_PSL_SPAP_An, 0); /* disable */
824 cxl_p1n_write(afu, CXL_PSL_AMOR_An, 0xFFFFFFFFFFFFFFFFULL);
825 cxl_p1n_write(afu, CXL_PSL_LPID_An, mfspr(SPRN_LPID));
826 cxl_p1n_write(afu, CXL_HAURP_An, 0); /* disable */
827 cxl_p1n_write(afu, CXL_PSL_SDR_An, mfspr(SPRN_SDR1));
828
829 cxl_p2n_write(afu, CXL_CSRP_An, 0); /* disable */
830 cxl_p2n_write(afu, CXL_AURP0_An, 0); /* disable */
831 cxl_p2n_write(afu, CXL_AURP1_An, 0); /* disable */
832
833 afu->current_mode = CXL_MODE_DEDICATED;
834 afu->num_procs = 1;
835
836 return cxl_chardev_d_afu_add(afu);
837}
838
Christophe Lombardf24be422017-04-12 16:34:07 +0200839void cxl_update_dedicated_ivtes_psl9(struct cxl_context *ctx)
840{
841 int r;
842
843 for (r = 0; r < CXL_IRQ_RANGES; r++) {
844 ctx->elem->ivte_offsets[r] = cpu_to_be16(ctx->irqs.offset[r]);
845 ctx->elem->ivte_ranges[r] = cpu_to_be16(ctx->irqs.range[r]);
846 }
847}
848
Christophe Lombard64663f32017-04-07 16:11:57 +0200849void cxl_update_dedicated_ivtes_psl8(struct cxl_context *ctx)
Ian Munsie292841b2016-05-24 02:14:05 +1000850{
851 struct cxl_afu *afu = ctx->afu;
852
853 cxl_p1n_write(afu, CXL_PSL_IVTE_Offset_An,
854 (((u64)ctx->irqs.offset[0] & 0xffff) << 48) |
855 (((u64)ctx->irqs.offset[1] & 0xffff) << 32) |
856 (((u64)ctx->irqs.offset[2] & 0xffff) << 16) |
857 ((u64)ctx->irqs.offset[3] & 0xffff));
858 cxl_p1n_write(afu, CXL_PSL_IVTE_Limit_An, (u64)
859 (((u64)ctx->irqs.range[0] & 0xffff) << 48) |
860 (((u64)ctx->irqs.range[1] & 0xffff) << 32) |
861 (((u64)ctx->irqs.range[2] & 0xffff) << 16) |
862 ((u64)ctx->irqs.range[3] & 0xffff));
863}
864
Christophe Lombardf24be422017-04-12 16:34:07 +0200865int cxl_attach_dedicated_process_psl9(struct cxl_context *ctx, u64 wed, u64 amr)
866{
867 struct cxl_afu *afu = ctx->afu;
868 int result;
869
870 /* fill the process element entry */
871 result = process_element_entry_psl9(ctx, wed, amr);
872 if (result)
873 return result;
874
875 if (ctx->afu->adapter->native->sl_ops->update_dedicated_ivtes)
876 afu->adapter->native->sl_ops->update_dedicated_ivtes(ctx);
877
878 result = cxl_ops->afu_reset(afu);
879 if (result)
880 return result;
881
882 return afu_enable(afu);
883}
884
Christophe Lombard64663f32017-04-07 16:11:57 +0200885int cxl_attach_dedicated_process_psl8(struct cxl_context *ctx, u64 wed, u64 amr)
Ian Munsief204e0b2014-10-08 19:55:02 +1100886{
887 struct cxl_afu *afu = ctx->afu;
Michael Neuling2f663522015-05-27 16:07:13 +1000888 u64 pid;
Ian Munsief204e0b2014-10-08 19:55:02 +1100889 int rc;
890
Michael Neuling2f663522015-05-27 16:07:13 +1000891 pid = (u64)current->pid << 32;
892 if (ctx->kernel)
893 pid = 0;
894 cxl_p2n_write(afu, CXL_PSL_PID_TID_An, pid);
895
896 cxl_p1n_write(afu, CXL_PSL_SR_An, calculate_sr(ctx));
Ian Munsief204e0b2014-10-08 19:55:02 +1100897
898 if ((rc = cxl_write_sstp(afu, ctx->sstp0, ctx->sstp1)))
899 return rc;
900
901 cxl_prefault(ctx, wed);
902
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200903 if (ctx->afu->adapter->native->sl_ops->update_dedicated_ivtes)
904 afu->adapter->native->sl_ops->update_dedicated_ivtes(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100905
906 cxl_p2n_write(afu, CXL_PSL_AMR_An, amr);
907
908 /* master only context for dedicated */
Michael Neuling1a1a94b2015-05-27 16:07:10 +1000909 cxl_assign_psn_space(ctx);
Ian Munsief204e0b2014-10-08 19:55:02 +1100910
Frederic Barrat5be587b2016-03-04 12:26:28 +0100911 if ((rc = cxl_ops->afu_reset(afu)))
Ian Munsief204e0b2014-10-08 19:55:02 +1100912 return rc;
913
914 cxl_p2n_write(afu, CXL_PSL_WED_An, wed);
915
916 return afu_enable(afu);
917}
918
919static int deactivate_dedicated_process(struct cxl_afu *afu)
920{
921 dev_info(&afu->dev, "Deactivating dedicated process mode\n");
922
923 afu->current_mode = 0;
924 afu->num_procs = 0;
925
926 cxl_chardev_afu_remove(afu);
927
928 return 0;
929}
930
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100931static int native_afu_deactivate_mode(struct cxl_afu *afu, int mode)
Ian Munsief204e0b2014-10-08 19:55:02 +1100932{
933 if (mode == CXL_MODE_DIRECTED)
934 return deactivate_afu_directed(afu);
935 if (mode == CXL_MODE_DEDICATED)
936 return deactivate_dedicated_process(afu);
937 return 0;
938}
939
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100940static int native_afu_activate_mode(struct cxl_afu *afu, int mode)
Ian Munsief204e0b2014-10-08 19:55:02 +1100941{
942 if (!mode)
943 return 0;
944 if (!(mode & afu->modes_supported))
945 return -EINVAL;
946
Christophe Lombard0d400f72016-03-04 12:26:41 +0100947 if (!cxl_ops->link_ok(afu->adapter, afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000948 WARN(1, "Device link is down, refusing to activate!\n");
949 return -EIO;
950 }
951
Ian Munsief204e0b2014-10-08 19:55:02 +1100952 if (mode == CXL_MODE_DIRECTED)
953 return activate_afu_directed(afu);
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200954 if ((mode == CXL_MODE_DEDICATED) &&
955 (afu->adapter->native->sl_ops->activate_dedicated_process))
956 return afu->adapter->native->sl_ops->activate_dedicated_process(afu);
Ian Munsief204e0b2014-10-08 19:55:02 +1100957
958 return -EINVAL;
959}
960
Frederic Barrat2b04cf32016-03-04 12:26:29 +0100961static int native_attach_process(struct cxl_context *ctx, bool kernel,
962 u64 wed, u64 amr)
Ian Munsief204e0b2014-10-08 19:55:02 +1100963{
Christophe Lombard0d400f72016-03-04 12:26:41 +0100964 if (!cxl_ops->link_ok(ctx->afu->adapter, ctx->afu)) {
Daniel Axtens0b3f9c72015-08-14 17:41:18 +1000965 WARN(1, "Device link is down, refusing to attach process!\n");
966 return -EIO;
967 }
968
Ian Munsief204e0b2014-10-08 19:55:02 +1100969 ctx->kernel = kernel;
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200970 if ((ctx->afu->current_mode == CXL_MODE_DIRECTED) &&
971 (ctx->afu->adapter->native->sl_ops->attach_afu_directed))
972 return ctx->afu->adapter->native->sl_ops->attach_afu_directed(ctx, wed, amr);
Ian Munsief204e0b2014-10-08 19:55:02 +1100973
Christophe Lombardbdd2e712017-04-07 16:11:56 +0200974 if ((ctx->afu->current_mode == CXL_MODE_DEDICATED) &&
975 (ctx->afu->adapter->native->sl_ops->attach_dedicated_process))
976 return ctx->afu->adapter->native->sl_ops->attach_dedicated_process(ctx, wed, amr);
Ian Munsief204e0b2014-10-08 19:55:02 +1100977
978 return -EINVAL;
979}
980
981static inline int detach_process_native_dedicated(struct cxl_context *ctx)
982{
Ian Munsie5e7823c2016-07-01 02:50:40 +1000983 /*
984 * The CAIA section 2.1.1 indicates that we need to do an AFU reset to
985 * stop the AFU in dedicated mode (we therefore do not make that
986 * optional like we do in the afu directed path). It does not indicate
987 * that we need to do an explicit disable (which should occur
988 * implicitly as part of the reset) or purge, but we do these as well
989 * to be on the safe side.
990 *
991 * Notably we used to have some issues with the disable sequence
992 * (before the sequence was spelled out in the architecture) which is
993 * why we were so heavy weight in the first place, however a bug was
994 * discovered that had rendered the disable operation ineffective, so
995 * it is conceivable that was the sole explanation for those
996 * difficulties. Point is, we should be careful and do some regression
997 * testing if we ever attempt to remove any part of this procedure.
998 */
Frederic Barrat5be587b2016-03-04 12:26:28 +0100999 cxl_ops->afu_reset(ctx->afu);
Ian Munsief204e0b2014-10-08 19:55:02 +11001000 cxl_afu_disable(ctx->afu);
1001 cxl_psl_purge(ctx->afu);
1002 return 0;
1003}
1004
Ian Munsie292841b2016-05-24 02:14:05 +10001005static void native_update_ivtes(struct cxl_context *ctx)
1006{
1007 if (ctx->afu->current_mode == CXL_MODE_DIRECTED)
1008 return update_ivtes_directed(ctx);
Christophe Lombardbdd2e712017-04-07 16:11:56 +02001009 if ((ctx->afu->current_mode == CXL_MODE_DEDICATED) &&
1010 (ctx->afu->adapter->native->sl_ops->update_dedicated_ivtes))
1011 return ctx->afu->adapter->native->sl_ops->update_dedicated_ivtes(ctx);
Ian Munsie292841b2016-05-24 02:14:05 +10001012 WARN(1, "native_update_ivtes: Bad mode\n");
1013}
1014
Ian Munsief204e0b2014-10-08 19:55:02 +11001015static inline int detach_process_native_afu_directed(struct cxl_context *ctx)
1016{
1017 if (!ctx->pe_inserted)
1018 return 0;
1019 if (terminate_process_element(ctx))
1020 return -1;
1021 if (remove_process_element(ctx))
1022 return -1;
1023
1024 return 0;
1025}
1026
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001027static int native_detach_process(struct cxl_context *ctx)
Ian Munsief204e0b2014-10-08 19:55:02 +11001028{
Ian Munsie9bcf28c2015-01-09 20:34:36 +11001029 trace_cxl_detach(ctx);
1030
Ian Munsief204e0b2014-10-08 19:55:02 +11001031 if (ctx->afu->current_mode == CXL_MODE_DEDICATED)
1032 return detach_process_native_dedicated(ctx);
1033
1034 return detach_process_native_afu_directed(ctx);
1035}
1036
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001037static int native_get_irq_info(struct cxl_afu *afu, struct cxl_irq_info *info)
Ian Munsief204e0b2014-10-08 19:55:02 +11001038{
Daniel Axtens0b3f9c72015-08-14 17:41:18 +10001039 /* If the adapter has gone away, we can't get any meaningful
1040 * information.
1041 */
Christophe Lombard0d400f72016-03-04 12:26:41 +01001042 if (!cxl_ops->link_ok(afu->adapter, afu))
Daniel Axtens0b3f9c72015-08-14 17:41:18 +10001043 return -EIO;
1044
Ian Munsiebc78b052014-11-14 17:37:50 +11001045 info->dsisr = cxl_p2n_read(afu, CXL_PSL_DSISR_An);
1046 info->dar = cxl_p2n_read(afu, CXL_PSL_DAR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +02001047 if (cxl_is_power8())
1048 info->dsr = cxl_p2n_read(afu, CXL_PSL_DSR_An);
Ian Munsiebc78b052014-11-14 17:37:50 +11001049 info->afu_err = cxl_p2n_read(afu, CXL_AFU_ERR_An);
1050 info->errstat = cxl_p2n_read(afu, CXL_PSL_ErrStat_An);
Christophe Lombard444c4ba2016-03-04 12:26:34 +01001051 info->proc_handle = 0;
Ian Munsief204e0b2014-10-08 19:55:02 +11001052
1053 return 0;
1054}
1055
Christophe Lombardf24be422017-04-12 16:34:07 +02001056void cxl_native_irq_dump_regs_psl9(struct cxl_context *ctx)
1057{
1058 u64 fir1, fir2, serr;
1059
1060 fir1 = cxl_p1_read(ctx->afu->adapter, CXL_PSL9_FIR1);
1061 fir2 = cxl_p1_read(ctx->afu->adapter, CXL_PSL9_FIR2);
1062
1063 dev_crit(&ctx->afu->dev, "PSL_FIR1: 0x%016llx\n", fir1);
1064 dev_crit(&ctx->afu->dev, "PSL_FIR2: 0x%016llx\n", fir2);
1065 if (ctx->afu->adapter->native->sl_ops->register_serr_irq) {
1066 serr = cxl_p1n_read(ctx->afu, CXL_PSL_SERR_An);
1067 cxl_afu_decode_psl_serr(ctx->afu, serr);
1068 }
1069}
1070
Christophe Lombard64663f32017-04-07 16:11:57 +02001071void cxl_native_irq_dump_regs_psl8(struct cxl_context *ctx)
Frederic Barratd56d3012016-03-04 12:26:26 +01001072{
1073 u64 fir1, fir2, fir_slice, serr, afu_debug;
1074
1075 fir1 = cxl_p1_read(ctx->afu->adapter, CXL_PSL_FIR1);
1076 fir2 = cxl_p1_read(ctx->afu->adapter, CXL_PSL_FIR2);
1077 fir_slice = cxl_p1n_read(ctx->afu, CXL_PSL_FIR_SLICE_An);
Frederic Barratd56d3012016-03-04 12:26:26 +01001078 afu_debug = cxl_p1n_read(ctx->afu, CXL_AFU_DEBUG_An);
1079
Frederic Barratd56d3012016-03-04 12:26:26 +01001080 dev_crit(&ctx->afu->dev, "PSL_FIR1: 0x%016llx\n", fir1);
1081 dev_crit(&ctx->afu->dev, "PSL_FIR2: 0x%016llx\n", fir2);
Frederic Barrat6d382612016-05-24 03:39:18 +10001082 if (ctx->afu->adapter->native->sl_ops->register_serr_irq) {
1083 serr = cxl_p1n_read(ctx->afu, CXL_PSL_SERR_An);
Philippe Bergheaud6e0c50f2016-07-05 13:08:06 +02001084 cxl_afu_decode_psl_serr(ctx->afu, serr);
Frederic Barrat6d382612016-05-24 03:39:18 +10001085 }
Frederic Barratd56d3012016-03-04 12:26:26 +01001086 dev_crit(&ctx->afu->dev, "PSL_FIR_SLICE_An: 0x%016llx\n", fir_slice);
1087 dev_crit(&ctx->afu->dev, "CXL_PSL_AFU_DEBUG_An: 0x%016llx\n", afu_debug);
Frederic Barrat6d382612016-05-24 03:39:18 +10001088}
Frederic Barratd56d3012016-03-04 12:26:26 +01001089
Frederic Barrat6d382612016-05-24 03:39:18 +10001090static irqreturn_t native_handle_psl_slice_error(struct cxl_context *ctx,
1091 u64 dsisr, u64 errstat)
1092{
1093
1094 dev_crit(&ctx->afu->dev, "PSL ERROR STATUS: 0x%016llx\n", errstat);
1095
1096 if (ctx->afu->adapter->native->sl_ops->psl_irq_dump_registers)
1097 ctx->afu->adapter->native->sl_ops->psl_irq_dump_registers(ctx);
1098
1099 if (ctx->afu->adapter->native->sl_ops->debugfs_stop_trace) {
1100 dev_crit(&ctx->afu->dev, "STOPPING CXL TRACE\n");
1101 ctx->afu->adapter->native->sl_ops->debugfs_stop_trace(ctx->afu->adapter);
1102 }
Frederic Barratd56d3012016-03-04 12:26:26 +01001103
Frederic Barrat5be587b2016-03-04 12:26:28 +01001104 return cxl_ops->ack_irq(ctx, 0, errstat);
Frederic Barratd56d3012016-03-04 12:26:26 +01001105}
1106
Christophe Lombardf24be422017-04-12 16:34:07 +02001107static bool cxl_is_translation_fault(struct cxl_afu *afu, u64 dsisr)
1108{
1109 if ((cxl_is_psl8(afu)) && (dsisr & CXL_PSL_DSISR_TRANS))
1110 return true;
1111
1112 if ((cxl_is_psl9(afu)) && (dsisr & CXL_PSL9_DSISR_An_TF))
1113 return true;
1114
1115 return false;
1116}
1117
Christophe Lombardbdd2e712017-04-07 16:11:56 +02001118irqreturn_t cxl_fail_irq_psl(struct cxl_afu *afu, struct cxl_irq_info *irq_info)
Frederic Barratd56d3012016-03-04 12:26:26 +01001119{
Christophe Lombardf24be422017-04-12 16:34:07 +02001120 if (cxl_is_translation_fault(afu, irq_info->dsisr))
Frederic Barratd56d3012016-03-04 12:26:26 +01001121 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_AE);
1122 else
1123 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_A);
1124
1125 return IRQ_HANDLED;
1126}
1127
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001128static irqreturn_t native_irq_multiplexed(int irq, void *data)
Frederic Barratd56d3012016-03-04 12:26:26 +01001129{
1130 struct cxl_afu *afu = data;
1131 struct cxl_context *ctx;
1132 struct cxl_irq_info irq_info;
Vaibhav Jainabf051b2016-11-16 19:39:33 +05301133 u64 phreg = cxl_p2n_read(afu, CXL_PSL_PEHandle_An);
Christophe Lombardbdd2e712017-04-07 16:11:56 +02001134 int ph, ret = IRQ_HANDLED, res;
Frederic Barratd56d3012016-03-04 12:26:26 +01001135
Vaibhav Jainabf051b2016-11-16 19:39:33 +05301136 /* check if eeh kicked in while the interrupt was in flight */
1137 if (unlikely(phreg == ~0ULL)) {
1138 dev_warn(&afu->dev,
1139 "Ignoring slice interrupt(%d) due to fenced card",
1140 irq);
1141 return IRQ_HANDLED;
1142 }
1143 /* Mask the pe-handle from register value */
1144 ph = phreg & 0xffff;
Christophe Lombardbdd2e712017-04-07 16:11:56 +02001145 if ((res = native_get_irq_info(afu, &irq_info))) {
1146 WARN(1, "Unable to get CXL IRQ Info: %i\n", res);
1147 if (afu->adapter->native->sl_ops->fail_irq)
1148 return afu->adapter->native->sl_ops->fail_irq(afu, &irq_info);
1149 return ret;
Frederic Barratd56d3012016-03-04 12:26:26 +01001150 }
1151
1152 rcu_read_lock();
1153 ctx = idr_find(&afu->contexts_idr, ph);
1154 if (ctx) {
Christophe Lombardbdd2e712017-04-07 16:11:56 +02001155 if (afu->adapter->native->sl_ops->handle_interrupt)
1156 ret = afu->adapter->native->sl_ops->handle_interrupt(irq, ctx, &irq_info);
Frederic Barratd56d3012016-03-04 12:26:26 +01001157 rcu_read_unlock();
1158 return ret;
1159 }
1160 rcu_read_unlock();
1161
1162 WARN(1, "Unable to demultiplex CXL PSL IRQ for PE %i DSISR %016llx DAR"
1163 " %016llx\n(Possible AFU HW issue - was a term/remove acked"
1164 " with outstanding transactions?)\n", ph, irq_info.dsisr,
1165 irq_info.dar);
Christophe Lombardbdd2e712017-04-07 16:11:56 +02001166 if (afu->adapter->native->sl_ops->fail_irq)
1167 ret = afu->adapter->native->sl_ops->fail_irq(afu, &irq_info);
1168 return ret;
Frederic Barratd56d3012016-03-04 12:26:26 +01001169}
1170
Andrew Donnellan6fd40f12016-07-22 19:01:36 +10001171static void native_irq_wait(struct cxl_context *ctx)
Michael Neuling2bc79ff2016-04-22 14:57:49 +10001172{
1173 u64 dsisr;
1174 int timeout = 1000;
1175 int ph;
1176
1177 /*
1178 * Wait until no further interrupts are presented by the PSL
1179 * for this context.
1180 */
1181 while (timeout--) {
1182 ph = cxl_p2n_read(ctx->afu, CXL_PSL_PEHandle_An) & 0xffff;
1183 if (ph != ctx->pe)
1184 return;
1185 dsisr = cxl_p2n_read(ctx->afu, CXL_PSL_DSISR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +02001186 if (cxl_is_psl8(ctx->afu) &&
1187 ((dsisr & CXL_PSL_DSISR_PENDING) == 0))
Michael Neuling2bc79ff2016-04-22 14:57:49 +10001188 return;
Christophe Lombardf24be422017-04-12 16:34:07 +02001189 if (cxl_is_psl9(ctx->afu) &&
1190 ((dsisr & CXL_PSL9_DSISR_PENDING) == 0))
1191 return;
Michael Neuling2bc79ff2016-04-22 14:57:49 +10001192 /*
1193 * We are waiting for the workqueue to process our
1194 * irq, so need to let that run here.
1195 */
1196 msleep(1);
1197 }
1198
1199 dev_warn(&ctx->afu->dev, "WARNING: waiting on DSI for PE %i"
1200 " DSISR %016llx!\n", ph, dsisr);
1201 return;
1202}
1203
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001204static irqreturn_t native_slice_irq_err(int irq, void *data)
Frederic Barratd56d3012016-03-04 12:26:26 +01001205{
1206 struct cxl_afu *afu = data;
Christophe Lombardabd1d992017-04-07 16:11:58 +02001207 u64 errstat, serr, afu_error, dsisr;
1208 u64 fir_slice, afu_debug;
Frederic Barratd56d3012016-03-04 12:26:26 +01001209
Frederic Barrat6d382612016-05-24 03:39:18 +10001210 /*
1211 * slice err interrupt is only used with full PSL (no XSL)
1212 */
Frederic Barratd56d3012016-03-04 12:26:26 +01001213 serr = cxl_p1n_read(afu, CXL_PSL_SERR_An);
Frederic Barratd56d3012016-03-04 12:26:26 +01001214 errstat = cxl_p2n_read(afu, CXL_PSL_ErrStat_An);
Philippe Bergheaud6e0c50f2016-07-05 13:08:06 +02001215 afu_error = cxl_p2n_read(afu, CXL_AFU_ERR_An);
1216 dsisr = cxl_p2n_read(afu, CXL_PSL_DSISR_An);
1217 cxl_afu_decode_psl_serr(afu, serr);
Christophe Lombardabd1d992017-04-07 16:11:58 +02001218
1219 if (cxl_is_power8()) {
1220 fir_slice = cxl_p1n_read(afu, CXL_PSL_FIR_SLICE_An);
1221 afu_debug = cxl_p1n_read(afu, CXL_AFU_DEBUG_An);
1222 dev_crit(&afu->dev, "PSL_FIR_SLICE_An: 0x%016llx\n", fir_slice);
1223 dev_crit(&afu->dev, "CXL_PSL_AFU_DEBUG_An: 0x%016llx\n", afu_debug);
1224 }
Frederic Barratd56d3012016-03-04 12:26:26 +01001225 dev_crit(&afu->dev, "CXL_PSL_ErrStat_An: 0x%016llx\n", errstat);
Philippe Bergheaud6e0c50f2016-07-05 13:08:06 +02001226 dev_crit(&afu->dev, "AFU_ERR_An: 0x%.16llx\n", afu_error);
1227 dev_crit(&afu->dev, "PSL_DSISR_An: 0x%.16llx\n", dsisr);
Frederic Barratd56d3012016-03-04 12:26:26 +01001228
1229 cxl_p1n_write(afu, CXL_PSL_SERR_An, serr);
1230
1231 return IRQ_HANDLED;
1232}
1233
Frederic Barrat6d382612016-05-24 03:39:18 +10001234void cxl_native_err_irq_dump_regs(struct cxl *adapter)
1235{
1236 u64 fir1, fir2;
1237
1238 fir1 = cxl_p1_read(adapter, CXL_PSL_FIR1);
1239 fir2 = cxl_p1_read(adapter, CXL_PSL_FIR2);
1240
1241 dev_crit(&adapter->dev, "PSL_FIR1: 0x%016llx\nPSL_FIR2: 0x%016llx\n", fir1, fir2);
1242}
1243
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001244static irqreturn_t native_irq_err(int irq, void *data)
Frederic Barratd56d3012016-03-04 12:26:26 +01001245{
1246 struct cxl *adapter = data;
Frederic Barrat6d382612016-05-24 03:39:18 +10001247 u64 err_ivte;
Frederic Barratd56d3012016-03-04 12:26:26 +01001248
1249 WARN(1, "CXL ERROR interrupt %i\n", irq);
1250
1251 err_ivte = cxl_p1_read(adapter, CXL_PSL_ErrIVTE);
1252 dev_crit(&adapter->dev, "PSL_ErrIVTE: 0x%016llx\n", err_ivte);
1253
Frederic Barrat6d382612016-05-24 03:39:18 +10001254 if (adapter->native->sl_ops->debugfs_stop_trace) {
1255 dev_crit(&adapter->dev, "STOPPING CXL TRACE\n");
1256 adapter->native->sl_ops->debugfs_stop_trace(adapter);
1257 }
Frederic Barratd56d3012016-03-04 12:26:26 +01001258
Frederic Barrat6d382612016-05-24 03:39:18 +10001259 if (adapter->native->sl_ops->err_irq_dump_registers)
1260 adapter->native->sl_ops->err_irq_dump_registers(adapter);
Frederic Barratd56d3012016-03-04 12:26:26 +01001261
1262 return IRQ_HANDLED;
1263}
1264
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001265int cxl_native_register_psl_err_irq(struct cxl *adapter)
Frederic Barratd56d3012016-03-04 12:26:26 +01001266{
1267 int rc;
1268
1269 adapter->irq_name = kasprintf(GFP_KERNEL, "cxl-%s-err",
1270 dev_name(&adapter->dev));
1271 if (!adapter->irq_name)
1272 return -ENOMEM;
1273
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001274 if ((rc = cxl_register_one_irq(adapter, native_irq_err, adapter,
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001275 &adapter->native->err_hwirq,
1276 &adapter->native->err_virq,
Frederic Barratd56d3012016-03-04 12:26:26 +01001277 adapter->irq_name))) {
1278 kfree(adapter->irq_name);
1279 adapter->irq_name = NULL;
1280 return rc;
1281 }
1282
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001283 cxl_p1_write(adapter, CXL_PSL_ErrIVTE, adapter->native->err_hwirq & 0xffff);
Frederic Barratd56d3012016-03-04 12:26:26 +01001284
1285 return 0;
1286}
1287
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001288void cxl_native_release_psl_err_irq(struct cxl *adapter)
Frederic Barratd56d3012016-03-04 12:26:26 +01001289{
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001290 if (adapter->native->err_virq != irq_find_mapping(NULL, adapter->native->err_hwirq))
Frederic Barratd56d3012016-03-04 12:26:26 +01001291 return;
1292
1293 cxl_p1_write(adapter, CXL_PSL_ErrIVTE, 0x0000000000000000);
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001294 cxl_unmap_irq(adapter->native->err_virq, adapter);
1295 cxl_ops->release_one_irq(adapter, adapter->native->err_hwirq);
Frederic Barratd56d3012016-03-04 12:26:26 +01001296 kfree(adapter->irq_name);
1297}
1298
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001299int cxl_native_register_serr_irq(struct cxl_afu *afu)
Frederic Barratd56d3012016-03-04 12:26:26 +01001300{
1301 u64 serr;
1302 int rc;
1303
1304 afu->err_irq_name = kasprintf(GFP_KERNEL, "cxl-%s-err",
1305 dev_name(&afu->dev));
1306 if (!afu->err_irq_name)
1307 return -ENOMEM;
1308
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001309 if ((rc = cxl_register_one_irq(afu->adapter, native_slice_irq_err, afu,
Frederic Barratd56d3012016-03-04 12:26:26 +01001310 &afu->serr_hwirq,
1311 &afu->serr_virq, afu->err_irq_name))) {
1312 kfree(afu->err_irq_name);
1313 afu->err_irq_name = NULL;
1314 return rc;
1315 }
1316
1317 serr = cxl_p1n_read(afu, CXL_PSL_SERR_An);
Christophe Lombardabd1d992017-04-07 16:11:58 +02001318 if (cxl_is_power8())
1319 serr = (serr & 0x00ffffffffff0000ULL) | (afu->serr_hwirq & 0xffff);
Christophe Lombardf24be422017-04-12 16:34:07 +02001320 if (cxl_is_power9()) {
1321 /*
1322 * By default, all errors are masked. So don't set all masks.
1323 * Slice errors will be transfered.
1324 */
1325 serr = (serr & ~0xff0000007fffffffULL) | (afu->serr_hwirq & 0xffff);
1326 }
Frederic Barratd56d3012016-03-04 12:26:26 +01001327 cxl_p1n_write(afu, CXL_PSL_SERR_An, serr);
1328
1329 return 0;
1330}
1331
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001332void cxl_native_release_serr_irq(struct cxl_afu *afu)
Frederic Barratd56d3012016-03-04 12:26:26 +01001333{
1334 if (afu->serr_virq != irq_find_mapping(NULL, afu->serr_hwirq))
1335 return;
1336
1337 cxl_p1n_write(afu, CXL_PSL_SERR_An, 0x0000000000000000);
1338 cxl_unmap_irq(afu->serr_virq, afu);
Frederic Barrat5be587b2016-03-04 12:26:28 +01001339 cxl_ops->release_one_irq(afu->adapter, afu->serr_hwirq);
Frederic Barratd56d3012016-03-04 12:26:26 +01001340 kfree(afu->err_irq_name);
1341}
1342
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001343int cxl_native_register_psl_irq(struct cxl_afu *afu)
Frederic Barratd56d3012016-03-04 12:26:26 +01001344{
1345 int rc;
1346
1347 afu->psl_irq_name = kasprintf(GFP_KERNEL, "cxl-%s",
1348 dev_name(&afu->dev));
1349 if (!afu->psl_irq_name)
1350 return -ENOMEM;
1351
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001352 if ((rc = cxl_register_one_irq(afu->adapter, native_irq_multiplexed,
1353 afu, &afu->native->psl_hwirq, &afu->native->psl_virq,
Frederic Barratd56d3012016-03-04 12:26:26 +01001354 afu->psl_irq_name))) {
1355 kfree(afu->psl_irq_name);
1356 afu->psl_irq_name = NULL;
1357 }
1358 return rc;
1359}
1360
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001361void cxl_native_release_psl_irq(struct cxl_afu *afu)
Frederic Barratd56d3012016-03-04 12:26:26 +01001362{
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001363 if (afu->native->psl_virq != irq_find_mapping(NULL, afu->native->psl_hwirq))
Frederic Barratd56d3012016-03-04 12:26:26 +01001364 return;
1365
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001366 cxl_unmap_irq(afu->native->psl_virq, afu);
1367 cxl_ops->release_one_irq(afu->adapter, afu->native->psl_hwirq);
Frederic Barratd56d3012016-03-04 12:26:26 +01001368 kfree(afu->psl_irq_name);
1369}
1370
Ian Munsief204e0b2014-10-08 19:55:02 +11001371static void recover_psl_err(struct cxl_afu *afu, u64 errstat)
1372{
1373 u64 dsisr;
1374
Rasmus Villemoesde369532015-06-11 13:27:52 +02001375 pr_devel("RECOVERING FROM PSL ERROR... (0x%016llx)\n", errstat);
Ian Munsief204e0b2014-10-08 19:55:02 +11001376
1377 /* Clear PSL_DSISR[PE] */
1378 dsisr = cxl_p2n_read(afu, CXL_PSL_DSISR_An);
1379 cxl_p2n_write(afu, CXL_PSL_DSISR_An, dsisr & ~CXL_PSL_DSISR_An_PE);
1380
1381 /* Write 1s to clear error status bits */
1382 cxl_p2n_write(afu, CXL_PSL_ErrStat_An, errstat);
1383}
1384
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001385static int native_ack_irq(struct cxl_context *ctx, u64 tfc, u64 psl_reset_mask)
Ian Munsief204e0b2014-10-08 19:55:02 +11001386{
Ian Munsie9bcf28c2015-01-09 20:34:36 +11001387 trace_cxl_psl_irq_ack(ctx, tfc);
Ian Munsief204e0b2014-10-08 19:55:02 +11001388 if (tfc)
1389 cxl_p2n_write(ctx->afu, CXL_PSL_TFC_An, tfc);
1390 if (psl_reset_mask)
1391 recover_psl_err(ctx->afu, psl_reset_mask);
1392
1393 return 0;
1394}
1395
1396int cxl_check_error(struct cxl_afu *afu)
1397{
1398 return (cxl_p1n_read(afu, CXL_PSL_SCNTL_An) == ~0ULL);
1399}
Frederic Barratd56d3012016-03-04 12:26:26 +01001400
Christophe Lombard47528762016-03-04 12:26:37 +01001401static bool native_support_attributes(const char *attr_name,
1402 enum cxl_attrs type)
1403{
1404 return true;
1405}
1406
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001407static int native_afu_cr_read64(struct cxl_afu *afu, int cr, u64 off, u64 *out)
Frederic Barratd56d3012016-03-04 12:26:26 +01001408{
Christophe Lombard0d400f72016-03-04 12:26:41 +01001409 if (unlikely(!cxl_ops->link_ok(afu->adapter, afu)))
Frederic Barrat5be587b2016-03-04 12:26:28 +01001410 return -EIO;
1411 if (unlikely(off >= afu->crs_len))
1412 return -ERANGE;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001413 *out = in_le64(afu->native->afu_desc_mmio + afu->crs_offset +
Frederic Barrat5be587b2016-03-04 12:26:28 +01001414 (cr * afu->crs_len) + off);
1415 return 0;
Frederic Barratd56d3012016-03-04 12:26:26 +01001416}
1417
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001418static int native_afu_cr_read32(struct cxl_afu *afu, int cr, u64 off, u32 *out)
Frederic Barratd56d3012016-03-04 12:26:26 +01001419{
Christophe Lombard0d400f72016-03-04 12:26:41 +01001420 if (unlikely(!cxl_ops->link_ok(afu->adapter, afu)))
Frederic Barrat5be587b2016-03-04 12:26:28 +01001421 return -EIO;
1422 if (unlikely(off >= afu->crs_len))
1423 return -ERANGE;
Christophe Lombardcbffa3a2016-03-04 12:26:35 +01001424 *out = in_le32(afu->native->afu_desc_mmio + afu->crs_offset +
Frederic Barrat5be587b2016-03-04 12:26:28 +01001425 (cr * afu->crs_len) + off);
1426 return 0;
Frederic Barratd56d3012016-03-04 12:26:26 +01001427}
1428
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001429static int native_afu_cr_read16(struct cxl_afu *afu, int cr, u64 off, u16 *out)
Frederic Barratd56d3012016-03-04 12:26:26 +01001430{
1431 u64 aligned_off = off & ~0x3L;
1432 u32 val;
Frederic Barrat5be587b2016-03-04 12:26:28 +01001433 int rc;
Frederic Barratd56d3012016-03-04 12:26:26 +01001434
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001435 rc = native_afu_cr_read32(afu, cr, aligned_off, &val);
Frederic Barrat5be587b2016-03-04 12:26:28 +01001436 if (!rc)
1437 *out = (val >> ((off & 0x3) * 8)) & 0xffff;
1438 return rc;
Frederic Barratd56d3012016-03-04 12:26:26 +01001439}
1440
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001441static int native_afu_cr_read8(struct cxl_afu *afu, int cr, u64 off, u8 *out)
Frederic Barratd56d3012016-03-04 12:26:26 +01001442{
1443 u64 aligned_off = off & ~0x3L;
1444 u32 val;
Frederic Barrat5be587b2016-03-04 12:26:28 +01001445 int rc;
Frederic Barratd56d3012016-03-04 12:26:26 +01001446
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001447 rc = native_afu_cr_read32(afu, cr, aligned_off, &val);
Frederic Barrat5be587b2016-03-04 12:26:28 +01001448 if (!rc)
1449 *out = (val >> ((off & 0x3) * 8)) & 0xff;
1450 return rc;
Frederic Barratd56d3012016-03-04 12:26:26 +01001451}
Frederic Barrat5be587b2016-03-04 12:26:28 +01001452
Frederic Barratd601ea92016-03-04 12:26:40 +01001453static int native_afu_cr_write32(struct cxl_afu *afu, int cr, u64 off, u32 in)
1454{
Christophe Lombard0d400f72016-03-04 12:26:41 +01001455 if (unlikely(!cxl_ops->link_ok(afu->adapter, afu)))
Frederic Barratd601ea92016-03-04 12:26:40 +01001456 return -EIO;
1457 if (unlikely(off >= afu->crs_len))
1458 return -ERANGE;
1459 out_le32(afu->native->afu_desc_mmio + afu->crs_offset +
1460 (cr * afu->crs_len) + off, in);
1461 return 0;
1462}
1463
1464static int native_afu_cr_write16(struct cxl_afu *afu, int cr, u64 off, u16 in)
1465{
1466 u64 aligned_off = off & ~0x3L;
1467 u32 val32, mask, shift;
1468 int rc;
1469
1470 rc = native_afu_cr_read32(afu, cr, aligned_off, &val32);
1471 if (rc)
1472 return rc;
1473 shift = (off & 0x3) * 8;
1474 WARN_ON(shift == 24);
1475 mask = 0xffff << shift;
1476 val32 = (val32 & ~mask) | (in << shift);
1477
1478 rc = native_afu_cr_write32(afu, cr, aligned_off, val32);
1479 return rc;
1480}
1481
1482static int native_afu_cr_write8(struct cxl_afu *afu, int cr, u64 off, u8 in)
1483{
1484 u64 aligned_off = off & ~0x3L;
1485 u32 val32, mask, shift;
1486 int rc;
1487
1488 rc = native_afu_cr_read32(afu, cr, aligned_off, &val32);
1489 if (rc)
1490 return rc;
1491 shift = (off & 0x3) * 8;
1492 mask = 0xff << shift;
1493 val32 = (val32 & ~mask) | (in << shift);
1494
1495 rc = native_afu_cr_write32(afu, cr, aligned_off, val32);
1496 return rc;
1497}
1498
Frederic Barrat5be587b2016-03-04 12:26:28 +01001499const struct cxl_backend_ops cxl_native_ops = {
1500 .module = THIS_MODULE,
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001501 .adapter_reset = cxl_pci_reset,
1502 .alloc_one_irq = cxl_pci_alloc_one_irq,
1503 .release_one_irq = cxl_pci_release_one_irq,
1504 .alloc_irq_ranges = cxl_pci_alloc_irq_ranges,
1505 .release_irq_ranges = cxl_pci_release_irq_ranges,
1506 .setup_irq = cxl_pci_setup_irq,
1507 .handle_psl_slice_error = native_handle_psl_slice_error,
Frederic Barrat5be587b2016-03-04 12:26:28 +01001508 .psl_interrupt = NULL,
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001509 .ack_irq = native_ack_irq,
Michael Neuling2bc79ff2016-04-22 14:57:49 +10001510 .irq_wait = native_irq_wait,
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001511 .attach_process = native_attach_process,
1512 .detach_process = native_detach_process,
Ian Munsie292841b2016-05-24 02:14:05 +10001513 .update_ivtes = native_update_ivtes,
Christophe Lombard47528762016-03-04 12:26:37 +01001514 .support_attributes = native_support_attributes,
Frederic Barrat5be587b2016-03-04 12:26:28 +01001515 .link_ok = cxl_adapter_link_ok,
Frederic Barrat2b04cf32016-03-04 12:26:29 +01001516 .release_afu = cxl_pci_release_afu,
1517 .afu_read_err_buffer = cxl_pci_afu_read_err_buffer,
1518 .afu_check_and_enable = native_afu_check_and_enable,
1519 .afu_activate_mode = native_afu_activate_mode,
1520 .afu_deactivate_mode = native_afu_deactivate_mode,
1521 .afu_reset = native_afu_reset,
1522 .afu_cr_read8 = native_afu_cr_read8,
1523 .afu_cr_read16 = native_afu_cr_read16,
1524 .afu_cr_read32 = native_afu_cr_read32,
1525 .afu_cr_read64 = native_afu_cr_read64,
Frederic Barratd601ea92016-03-04 12:26:40 +01001526 .afu_cr_write8 = native_afu_cr_write8,
1527 .afu_cr_write16 = native_afu_cr_write16,
1528 .afu_cr_write32 = native_afu_cr_write32,
1529 .read_adapter_vpd = cxl_pci_read_adapter_vpd,
Frederic Barrat5be587b2016-03-04 12:26:28 +01001530};