afee571e01949598b970ec397e39cb52ed65b36c
[platform/kernel/linux-rpi.git] / drivers / dma / idxd / irq.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 2019 Intel Corporation. All rights rsvd. */
3 #include <linux/init.h>
4 #include <linux/kernel.h>
5 #include <linux/module.h>
6 #include <linux/pci.h>
7 #include <linux/io-64-nonatomic-lo-hi.h>
8 #include <linux/dmaengine.h>
9 #include <uapi/linux/idxd.h>
10 #include "../dmaengine.h"
11 #include "idxd.h"
12 #include "registers.h"
13
14 enum irq_work_type {
15         IRQ_WORK_NORMAL = 0,
16         IRQ_WORK_PROCESS_FAULT,
17 };
18
19 struct idxd_fault {
20         struct work_struct work;
21         u64 addr;
22         struct idxd_device *idxd;
23 };
24
25 static int irq_process_work_list(struct idxd_irq_entry *irq_entry,
26                                  enum irq_work_type wtype,
27                                  int *processed, u64 data);
28 static int irq_process_pending_llist(struct idxd_irq_entry *irq_entry,
29                                      enum irq_work_type wtype,
30                                      int *processed, u64 data);
31
32 static void idxd_device_reinit(struct work_struct *work)
33 {
34         struct idxd_device *idxd = container_of(work, struct idxd_device, work);
35         struct device *dev = &idxd->pdev->dev;
36         int rc, i;
37
38         idxd_device_reset(idxd);
39         rc = idxd_device_config(idxd);
40         if (rc < 0)
41                 goto out;
42
43         rc = idxd_device_enable(idxd);
44         if (rc < 0)
45                 goto out;
46
47         for (i = 0; i < idxd->max_wqs; i++) {
48                 struct idxd_wq *wq = idxd->wqs[i];
49
50                 if (wq->state == IDXD_WQ_ENABLED) {
51                         rc = idxd_wq_enable(wq);
52                         if (rc < 0) {
53                                 dev_warn(dev, "Unable to re-enable wq %s\n",
54                                          dev_name(&wq->conf_dev));
55                         }
56                 }
57         }
58
59         return;
60
61  out:
62         idxd_device_wqs_clear_state(idxd);
63 }
64
65 static void idxd_device_fault_work(struct work_struct *work)
66 {
67         struct idxd_fault *fault = container_of(work, struct idxd_fault, work);
68         struct idxd_irq_entry *ie;
69         int i;
70         int processed;
71         int irqcnt = fault->idxd->num_wq_irqs + 1;
72
73         for (i = 1; i < irqcnt; i++) {
74                 ie = &fault->idxd->irq_entries[i];
75                 irq_process_work_list(ie, IRQ_WORK_PROCESS_FAULT,
76                                       &processed, fault->addr);
77                 if (processed)
78                         break;
79
80                 irq_process_pending_llist(ie, IRQ_WORK_PROCESS_FAULT,
81                                           &processed, fault->addr);
82                 if (processed)
83                         break;
84         }
85
86         kfree(fault);
87 }
88
89 static int idxd_device_schedule_fault_process(struct idxd_device *idxd,
90                                               u64 fault_addr)
91 {
92         struct idxd_fault *fault;
93
94         fault = kmalloc(sizeof(*fault), GFP_ATOMIC);
95         if (!fault)
96                 return -ENOMEM;
97
98         fault->addr = fault_addr;
99         fault->idxd = idxd;
100         INIT_WORK(&fault->work, idxd_device_fault_work);
101         queue_work(idxd->wq, &fault->work);
102         return 0;
103 }
104
105 static int process_misc_interrupts(struct idxd_device *idxd, u32 cause)
106 {
107         struct device *dev = &idxd->pdev->dev;
108         union gensts_reg gensts;
109         u32 val = 0;
110         int i;
111         bool err = false;
112
113         if (cause & IDXD_INTC_ERR) {
114                 spin_lock_bh(&idxd->dev_lock);
115                 for (i = 0; i < 4; i++)
116                         idxd->sw_err.bits[i] = ioread64(idxd->reg_base +
117                                         IDXD_SWERR_OFFSET + i * sizeof(u64));
118
119                 iowrite64(idxd->sw_err.bits[0] & IDXD_SWERR_ACK,
120                           idxd->reg_base + IDXD_SWERR_OFFSET);
121
122                 if (idxd->sw_err.valid && idxd->sw_err.wq_idx_valid) {
123                         int id = idxd->sw_err.wq_idx;
124                         struct idxd_wq *wq = idxd->wqs[id];
125
126                         if (wq->type == IDXD_WQT_USER)
127                                 wake_up_interruptible(&wq->err_queue);
128                 } else {
129                         int i;
130
131                         for (i = 0; i < idxd->max_wqs; i++) {
132                                 struct idxd_wq *wq = idxd->wqs[i];
133
134                                 if (wq->type == IDXD_WQT_USER)
135                                         wake_up_interruptible(&wq->err_queue);
136                         }
137                 }
138
139                 spin_unlock_bh(&idxd->dev_lock);
140                 val |= IDXD_INTC_ERR;
141
142                 for (i = 0; i < 4; i++)
143                         dev_warn(dev, "err[%d]: %#16.16llx\n",
144                                  i, idxd->sw_err.bits[i]);
145                 err = true;
146         }
147
148         if (cause & IDXD_INTC_CMD) {
149                 val |= IDXD_INTC_CMD;
150                 complete(idxd->cmd_done);
151         }
152
153         if (cause & IDXD_INTC_OCCUPY) {
154                 /* Driver does not utilize occupancy interrupt */
155                 val |= IDXD_INTC_OCCUPY;
156         }
157
158         if (cause & IDXD_INTC_PERFMON_OVFL) {
159                 /*
160                  * Driver does not utilize perfmon counter overflow interrupt
161                  * yet.
162                  */
163                 val |= IDXD_INTC_PERFMON_OVFL;
164         }
165
166         val ^= cause;
167         if (val)
168                 dev_warn_once(dev, "Unexpected interrupt cause bits set: %#x\n",
169                               val);
170
171         if (!err)
172                 return 0;
173
174         /*
175          * This case should rarely happen and typically is due to software
176          * programming error by the driver.
177          */
178         if (idxd->sw_err.valid &&
179             idxd->sw_err.desc_valid &&
180             idxd->sw_err.fault_addr)
181                 idxd_device_schedule_fault_process(idxd, idxd->sw_err.fault_addr);
182
183         gensts.bits = ioread32(idxd->reg_base + IDXD_GENSTATS_OFFSET);
184         if (gensts.state == IDXD_DEVICE_STATE_HALT) {
185                 idxd->state = IDXD_DEV_HALTED;
186                 if (gensts.reset_type == IDXD_DEVICE_RESET_SOFTWARE) {
187                         /*
188                          * If we need a software reset, we will throw the work
189                          * on a system workqueue in order to allow interrupts
190                          * for the device command completions.
191                          */
192                         INIT_WORK(&idxd->work, idxd_device_reinit);
193                         queue_work(idxd->wq, &idxd->work);
194                 } else {
195                         spin_lock_bh(&idxd->dev_lock);
196                         idxd_wqs_quiesce(idxd);
197                         idxd_wqs_unmap_portal(idxd);
198                         idxd_device_wqs_clear_state(idxd);
199                         dev_err(&idxd->pdev->dev,
200                                 "idxd halted, need %s.\n",
201                                 gensts.reset_type == IDXD_DEVICE_RESET_FLR ?
202                                 "FLR" : "system reset");
203                         spin_unlock_bh(&idxd->dev_lock);
204                         return -ENXIO;
205                 }
206         }
207
208         return 0;
209 }
210
211 irqreturn_t idxd_misc_thread(int vec, void *data)
212 {
213         struct idxd_irq_entry *irq_entry = data;
214         struct idxd_device *idxd = irq_entry->idxd;
215         int rc;
216         u32 cause;
217
218         cause = ioread32(idxd->reg_base + IDXD_INTCAUSE_OFFSET);
219         if (cause)
220                 iowrite32(cause, idxd->reg_base + IDXD_INTCAUSE_OFFSET);
221
222         while (cause) {
223                 rc = process_misc_interrupts(idxd, cause);
224                 if (rc < 0)
225                         break;
226                 cause = ioread32(idxd->reg_base + IDXD_INTCAUSE_OFFSET);
227                 if (cause)
228                         iowrite32(cause, idxd->reg_base + IDXD_INTCAUSE_OFFSET);
229         }
230
231         return IRQ_HANDLED;
232 }
233
234 static inline bool match_fault(struct idxd_desc *desc, u64 fault_addr)
235 {
236         /*
237          * Completion address can be bad as well. Check fault address match for descriptor
238          * and completion address.
239          */
240         if ((u64)desc->hw == fault_addr || (u64)desc->completion == fault_addr) {
241                 struct idxd_device *idxd = desc->wq->idxd;
242                 struct device *dev = &idxd->pdev->dev;
243
244                 dev_warn(dev, "desc with fault address: %#llx\n", fault_addr);
245                 return true;
246         }
247
248         return false;
249 }
250
251 static inline void complete_desc(struct idxd_desc *desc, enum idxd_complete_type reason)
252 {
253         idxd_dma_complete_txd(desc, reason);
254         idxd_free_desc(desc->wq, desc);
255 }
256
257 static int irq_process_pending_llist(struct idxd_irq_entry *irq_entry,
258                                      enum irq_work_type wtype,
259                                      int *processed, u64 data)
260 {
261         struct idxd_desc *desc, *t;
262         struct llist_node *head;
263         int queued = 0;
264         unsigned long flags;
265         enum idxd_complete_type reason;
266
267         *processed = 0;
268         head = llist_del_all(&irq_entry->pending_llist);
269         if (!head)
270                 goto out;
271
272         if (wtype == IRQ_WORK_NORMAL)
273                 reason = IDXD_COMPLETE_NORMAL;
274         else
275                 reason = IDXD_COMPLETE_DEV_FAIL;
276
277         llist_for_each_entry_safe(desc, t, head, llnode) {
278                 if (desc->completion->status) {
279                         if ((desc->completion->status & DSA_COMP_STATUS_MASK) != DSA_COMP_SUCCESS)
280                                 match_fault(desc, data);
281                         complete_desc(desc, reason);
282                         (*processed)++;
283                 } else {
284                         spin_lock_irqsave(&irq_entry->list_lock, flags);
285                         list_add_tail(&desc->list,
286                                       &irq_entry->work_list);
287                         spin_unlock_irqrestore(&irq_entry->list_lock, flags);
288                         queued++;
289                 }
290         }
291
292  out:
293         return queued;
294 }
295
296 static int irq_process_work_list(struct idxd_irq_entry *irq_entry,
297                                  enum irq_work_type wtype,
298                                  int *processed, u64 data)
299 {
300         int queued = 0;
301         unsigned long flags;
302         LIST_HEAD(flist);
303         struct idxd_desc *desc, *n;
304         enum idxd_complete_type reason;
305
306         *processed = 0;
307         if (wtype == IRQ_WORK_NORMAL)
308                 reason = IDXD_COMPLETE_NORMAL;
309         else
310                 reason = IDXD_COMPLETE_DEV_FAIL;
311
312         /*
313          * This lock protects list corruption from access of list outside of the irq handler
314          * thread.
315          */
316         spin_lock_irqsave(&irq_entry->list_lock, flags);
317         if (list_empty(&irq_entry->work_list)) {
318                 spin_unlock_irqrestore(&irq_entry->list_lock, flags);
319                 return 0;
320         }
321
322         list_for_each_entry_safe(desc, n, &irq_entry->work_list, list) {
323                 if (desc->completion->status) {
324                         list_del(&desc->list);
325                         (*processed)++;
326                         list_add_tail(&desc->list, &flist);
327                 } else {
328                         queued++;
329                 }
330         }
331
332         spin_unlock_irqrestore(&irq_entry->list_lock, flags);
333
334         list_for_each_entry(desc, &flist, list) {
335                 if ((desc->completion->status & DSA_COMP_STATUS_MASK) != DSA_COMP_SUCCESS)
336                         match_fault(desc, data);
337                 complete_desc(desc, reason);
338         }
339
340         return queued;
341 }
342
343 static int idxd_desc_process(struct idxd_irq_entry *irq_entry)
344 {
345         int rc, processed, total = 0;
346
347         /*
348          * There are two lists we are processing. The pending_llist is where
349          * submmiter adds all the submitted descriptor after sending it to
350          * the workqueue. It's a lockless singly linked list. The work_list
351          * is the common linux double linked list. We are in a scenario of
352          * multiple producers and a single consumer. The producers are all
353          * the kernel submitters of descriptors, and the consumer is the
354          * kernel irq handler thread for the msix vector when using threaded
355          * irq. To work with the restrictions of llist to remain lockless,
356          * we are doing the following steps:
357          * 1. Iterate through the work_list and process any completed
358          *    descriptor. Delete the completed entries during iteration.
359          * 2. llist_del_all() from the pending list.
360          * 3. Iterate through the llist that was deleted from the pending list
361          *    and process the completed entries.
362          * 4. If the entry is still waiting on hardware, list_add_tail() to
363          *    the work_list.
364          * 5. Repeat until no more descriptors.
365          */
366         do {
367                 rc = irq_process_work_list(irq_entry, IRQ_WORK_NORMAL,
368                                            &processed, 0);
369                 total += processed;
370                 if (rc != 0)
371                         continue;
372
373                 rc = irq_process_pending_llist(irq_entry, IRQ_WORK_NORMAL,
374                                                &processed, 0);
375                 total += processed;
376         } while (rc != 0);
377
378         return total;
379 }
380
381 irqreturn_t idxd_wq_thread(int irq, void *data)
382 {
383         struct idxd_irq_entry *irq_entry = data;
384         int processed;
385
386         processed = idxd_desc_process(irq_entry);
387         if (processed == 0)
388                 return IRQ_NONE;
389
390         return IRQ_HANDLED;
391 }