2020-01-22 02:43:59 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/* Copyright(c) 2019 Intel Corporation. All rights rsvd. */
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/io-64-nonatomic-lo-hi.h>
|
2020-01-22 02:44:23 +03:00
|
|
|
#include <linux/dmaengine.h>
|
2020-01-22 02:43:59 +03:00
|
|
|
#include <uapi/linux/idxd.h>
|
2020-01-22 02:44:23 +03:00
|
|
|
#include "../dmaengine.h"
|
2020-01-22 02:43:59 +03:00
|
|
|
#include "idxd.h"
|
|
|
|
#include "registers.h"
|
|
|
|
|
2020-10-27 20:34:40 +03:00
|
|
|
enum irq_work_type {
|
|
|
|
IRQ_WORK_NORMAL = 0,
|
|
|
|
IRQ_WORK_PROCESS_FAULT,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct idxd_fault {
|
|
|
|
struct work_struct work;
|
|
|
|
u64 addr;
|
|
|
|
struct idxd_device *idxd;
|
|
|
|
};
|
|
|
|
|
2020-06-26 21:11:18 +03:00
|
|
|
static void idxd_device_reinit(struct work_struct *work)
|
2020-01-22 02:43:59 +03:00
|
|
|
{
|
2020-06-26 21:11:18 +03:00
|
|
|
struct idxd_device *idxd = container_of(work, struct idxd_device, work);
|
|
|
|
struct device *dev = &idxd->pdev->dev;
|
|
|
|
int rc, i;
|
2020-01-22 02:43:59 +03:00
|
|
|
|
2020-06-26 21:11:18 +03:00
|
|
|
idxd_device_reset(idxd);
|
2020-01-22 02:43:59 +03:00
|
|
|
rc = idxd_device_config(idxd);
|
|
|
|
if (rc < 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
rc = idxd_device_enable(idxd);
|
|
|
|
if (rc < 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
for (i = 0; i < idxd->max_wqs; i++) {
|
2021-04-16 02:37:39 +03:00
|
|
|
struct idxd_wq *wq = idxd->wqs[i];
|
2020-01-22 02:43:59 +03:00
|
|
|
|
|
|
|
if (wq->state == IDXD_WQ_ENABLED) {
|
|
|
|
rc = idxd_wq_enable(wq);
|
|
|
|
if (rc < 0) {
|
2020-06-26 21:11:18 +03:00
|
|
|
dev_warn(dev, "Unable to re-enable wq %s\n",
|
2021-07-15 21:43:20 +03:00
|
|
|
dev_name(wq_confdev(wq)));
|
2020-01-22 02:43:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 21:11:18 +03:00
|
|
|
return;
|
2020-01-22 02:43:59 +03:00
|
|
|
|
|
|
|
out:
|
2021-06-05 03:06:21 +03:00
|
|
|
idxd_device_clear_state(idxd);
|
2020-01-22 02:43:59 +03:00
|
|
|
}
|
|
|
|
|
2021-10-27 00:36:23 +03:00
|
|
|
/*
|
|
|
|
* The function sends a drain descriptor for the interrupt handle. The drain ensures
|
|
|
|
* all descriptors with this interrupt handle is flushed and the interrupt
|
|
|
|
* will allow the cleanup of the outstanding descriptors.
|
|
|
|
*/
|
|
|
|
static void idxd_int_handle_revoke_drain(struct idxd_irq_entry *ie)
|
|
|
|
{
|
|
|
|
struct idxd_wq *wq = ie->wq;
|
|
|
|
struct idxd_device *idxd = ie->idxd;
|
|
|
|
struct device *dev = &idxd->pdev->dev;
|
|
|
|
struct dsa_hw_desc desc = {};
|
|
|
|
void __iomem *portal;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* Issue a simple drain operation with interrupt but no completion record */
|
|
|
|
desc.flags = IDXD_OP_FLAG_RCI;
|
|
|
|
desc.opcode = DSA_OPCODE_DRAIN;
|
|
|
|
desc.priv = 1;
|
|
|
|
|
|
|
|
if (ie->pasid != INVALID_IOASID)
|
|
|
|
desc.pasid = ie->pasid;
|
|
|
|
desc.int_handle = ie->int_handle;
|
|
|
|
portal = idxd_wq_portal_addr(wq);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The wmb() makes sure that the descriptor is all there before we
|
|
|
|
* issue.
|
|
|
|
*/
|
|
|
|
wmb();
|
|
|
|
if (wq_dedicated(wq)) {
|
|
|
|
iosubmit_cmds512(portal, &desc, 1);
|
|
|
|
} else {
|
|
|
|
rc = enqcmds(portal, &desc);
|
|
|
|
/* This should not fail unless hardware failed. */
|
|
|
|
if (rc < 0)
|
|
|
|
dev_warn(dev, "Failed to submit drain desc on wq %d\n", wq->id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-16 00:52:33 +03:00
|
|
|
static int process_misc_interrupts(struct idxd_device *idxd, u32 cause)
|
2020-01-22 02:43:59 +03:00
|
|
|
{
|
|
|
|
struct device *dev = &idxd->pdev->dev;
|
|
|
|
union gensts_reg gensts;
|
2021-01-16 00:52:33 +03:00
|
|
|
u32 val = 0;
|
2020-06-26 21:11:18 +03:00
|
|
|
int i;
|
2020-01-22 02:43:59 +03:00
|
|
|
bool err = false;
|
|
|
|
|
2021-09-09 02:04:03 +03:00
|
|
|
if (cause & IDXD_INTC_HALT_STATE)
|
|
|
|
goto halt;
|
|
|
|
|
2020-01-22 02:43:59 +03:00
|
|
|
if (cause & IDXD_INTC_ERR) {
|
2021-08-25 00:24:27 +03:00
|
|
|
spin_lock(&idxd->dev_lock);
|
2020-01-22 02:43:59 +03:00
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
idxd->sw_err.bits[i] = ioread64(idxd->reg_base +
|
|
|
|
IDXD_SWERR_OFFSET + i * sizeof(u64));
|
2021-02-17 03:13:42 +03:00
|
|
|
|
|
|
|
iowrite64(idxd->sw_err.bits[0] & IDXD_SWERR_ACK,
|
|
|
|
idxd->reg_base + IDXD_SWERR_OFFSET);
|
2020-01-22 02:44:29 +03:00
|
|
|
|
|
|
|
if (idxd->sw_err.valid && idxd->sw_err.wq_idx_valid) {
|
|
|
|
int id = idxd->sw_err.wq_idx;
|
2021-04-16 02:37:39 +03:00
|
|
|
struct idxd_wq *wq = idxd->wqs[id];
|
2020-01-22 02:44:29 +03:00
|
|
|
|
|
|
|
if (wq->type == IDXD_WQT_USER)
|
2021-04-16 02:37:57 +03:00
|
|
|
wake_up_interruptible(&wq->err_queue);
|
2020-01-22 02:44:29 +03:00
|
|
|
} else {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < idxd->max_wqs; i++) {
|
2021-04-16 02:37:39 +03:00
|
|
|
struct idxd_wq *wq = idxd->wqs[i];
|
2020-01-22 02:44:29 +03:00
|
|
|
|
|
|
|
if (wq->type == IDXD_WQT_USER)
|
2021-04-16 02:37:57 +03:00
|
|
|
wake_up_interruptible(&wq->err_queue);
|
2020-01-22 02:44:29 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-25 00:24:27 +03:00
|
|
|
spin_unlock(&idxd->dev_lock);
|
2020-01-22 02:43:59 +03:00
|
|
|
val |= IDXD_INTC_ERR;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
dev_warn(dev, "err[%d]: %#16.16llx\n",
|
|
|
|
i, idxd->sw_err.bits[i]);
|
|
|
|
err = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cause & IDXD_INTC_CMD) {
|
|
|
|
val |= IDXD_INTC_CMD;
|
2020-06-26 21:11:18 +03:00
|
|
|
complete(idxd->cmd_done);
|
2020-01-22 02:43:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cause & IDXD_INTC_OCCUPY) {
|
|
|
|
/* Driver does not utilize occupancy interrupt */
|
|
|
|
val |= IDXD_INTC_OCCUPY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cause & IDXD_INTC_PERFMON_OVFL) {
|
|
|
|
val |= IDXD_INTC_PERFMON_OVFL;
|
2021-04-24 18:04:16 +03:00
|
|
|
perfmon_counter_overflow(idxd);
|
2020-01-22 02:43:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
val ^= cause;
|
|
|
|
if (val)
|
|
|
|
dev_warn_once(dev, "Unexpected interrupt cause bits set: %#x\n",
|
|
|
|
val);
|
|
|
|
|
|
|
|
if (!err)
|
2021-01-16 00:52:33 +03:00
|
|
|
return 0;
|
2020-01-22 02:43:59 +03:00
|
|
|
|
2021-09-09 02:04:03 +03:00
|
|
|
halt:
|
2020-01-22 02:43:59 +03:00
|
|
|
gensts.bits = ioread32(idxd->reg_base + IDXD_GENSTATS_OFFSET);
|
|
|
|
if (gensts.state == IDXD_DEVICE_STATE_HALT) {
|
2020-06-26 21:11:18 +03:00
|
|
|
idxd->state = IDXD_DEV_HALTED;
|
2020-01-22 02:43:59 +03:00
|
|
|
if (gensts.reset_type == IDXD_DEVICE_RESET_SOFTWARE) {
|
2020-06-26 21:11:18 +03:00
|
|
|
/*
|
|
|
|
* If we need a software reset, we will throw the work
|
|
|
|
* on a system workqueue in order to allow interrupts
|
|
|
|
* for the device command completions.
|
|
|
|
*/
|
|
|
|
INIT_WORK(&idxd->work, idxd_device_reinit);
|
|
|
|
queue_work(idxd->wq, &idxd->work);
|
2020-01-22 02:43:59 +03:00
|
|
|
} else {
|
2021-08-25 00:24:27 +03:00
|
|
|
spin_lock(&idxd->dev_lock);
|
2021-09-09 02:04:03 +03:00
|
|
|
idxd->state = IDXD_DEV_HALTED;
|
2021-04-20 21:46:51 +03:00
|
|
|
idxd_wqs_quiesce(idxd);
|
|
|
|
idxd_wqs_unmap_portal(idxd);
|
2021-06-05 03:06:21 +03:00
|
|
|
idxd_device_clear_state(idxd);
|
2020-01-22 02:43:59 +03:00
|
|
|
dev_err(&idxd->pdev->dev,
|
|
|
|
"idxd halted, need %s.\n",
|
|
|
|
gensts.reset_type == IDXD_DEVICE_RESET_FLR ?
|
|
|
|
"FLR" : "system reset");
|
2021-08-25 00:24:27 +03:00
|
|
|
spin_unlock(&idxd->dev_lock);
|
2021-01-16 00:52:33 +03:00
|
|
|
return -ENXIO;
|
2020-01-22 02:43:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-16 00:52:33 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
irqreturn_t idxd_misc_thread(int vec, void *data)
|
|
|
|
{
|
|
|
|
struct idxd_irq_entry *irq_entry = data;
|
|
|
|
struct idxd_device *idxd = irq_entry->idxd;
|
|
|
|
int rc;
|
|
|
|
u32 cause;
|
|
|
|
|
|
|
|
cause = ioread32(idxd->reg_base + IDXD_INTCAUSE_OFFSET);
|
|
|
|
if (cause)
|
|
|
|
iowrite32(cause, idxd->reg_base + IDXD_INTCAUSE_OFFSET);
|
|
|
|
|
|
|
|
while (cause) {
|
|
|
|
rc = process_misc_interrupts(idxd, cause);
|
|
|
|
if (rc < 0)
|
|
|
|
break;
|
|
|
|
cause = ioread32(idxd->reg_base + IDXD_INTCAUSE_OFFSET);
|
|
|
|
if (cause)
|
|
|
|
iowrite32(cause, idxd->reg_base + IDXD_INTCAUSE_OFFSET);
|
|
|
|
}
|
|
|
|
|
2020-01-22 02:43:59 +03:00
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2021-08-04 01:29:30 +03:00
|
|
|
static void irq_process_pending_llist(struct idxd_irq_entry *irq_entry)
|
2020-01-22 02:44:23 +03:00
|
|
|
{
|
|
|
|
struct idxd_desc *desc, *t;
|
|
|
|
struct llist_node *head;
|
|
|
|
|
|
|
|
head = llist_del_all(&irq_entry->pending_llist);
|
|
|
|
if (!head)
|
2021-08-04 01:29:30 +03:00
|
|
|
return;
|
2020-01-22 02:44:23 +03:00
|
|
|
|
2021-01-16 00:52:52 +03:00
|
|
|
llist_for_each_entry_safe(desc, t, head, llnode) {
|
2021-07-14 21:50:06 +03:00
|
|
|
u8 status = desc->completion->status & DSA_COMP_STATUS_MASK;
|
|
|
|
|
|
|
|
if (status) {
|
2021-07-22 23:10:51 +03:00
|
|
|
/*
|
|
|
|
* Check against the original status as ABORT is software defined
|
|
|
|
* and 0xff, which DSA_COMP_STATUS_MASK can mask out.
|
|
|
|
*/
|
|
|
|
if (unlikely(desc->completion->status == IDXD_COMP_DESC_ABORT)) {
|
2021-10-27 00:36:02 +03:00
|
|
|
idxd_dma_complete_txd(desc, IDXD_COMPLETE_ABORT, true);
|
2021-07-14 21:50:06 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-10-27 00:36:02 +03:00
|
|
|
idxd_dma_complete_txd(desc, IDXD_COMPLETE_NORMAL, true);
|
2020-01-22 02:44:23 +03:00
|
|
|
} else {
|
2021-08-06 18:36:43 +03:00
|
|
|
spin_lock(&irq_entry->list_lock);
|
2020-10-27 20:34:40 +03:00
|
|
|
list_add_tail(&desc->list,
|
|
|
|
&irq_entry->work_list);
|
2021-08-06 18:36:43 +03:00
|
|
|
spin_unlock(&irq_entry->list_lock);
|
2020-01-22 02:44:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-04 01:29:30 +03:00
|
|
|
static void irq_process_work_list(struct idxd_irq_entry *irq_entry)
|
2020-01-22 02:44:23 +03:00
|
|
|
{
|
2021-01-16 00:52:52 +03:00
|
|
|
LIST_HEAD(flist);
|
|
|
|
struct idxd_desc *desc, *n;
|
2020-01-22 02:44:23 +03:00
|
|
|
|
2021-01-16 00:52:52 +03:00
|
|
|
/*
|
|
|
|
* This lock protects list corruption from access of list outside of the irq handler
|
|
|
|
* thread.
|
|
|
|
*/
|
2021-08-06 18:36:43 +03:00
|
|
|
spin_lock(&irq_entry->list_lock);
|
2021-01-16 00:52:52 +03:00
|
|
|
if (list_empty(&irq_entry->work_list)) {
|
2021-08-06 18:36:43 +03:00
|
|
|
spin_unlock(&irq_entry->list_lock);
|
2021-08-04 01:29:30 +03:00
|
|
|
return;
|
2021-01-16 00:52:52 +03:00
|
|
|
}
|
2020-10-27 20:34:40 +03:00
|
|
|
|
2021-01-16 00:52:52 +03:00
|
|
|
list_for_each_entry_safe(desc, n, &irq_entry->work_list, list) {
|
|
|
|
if (desc->completion->status) {
|
2021-09-08 12:28:26 +03:00
|
|
|
list_move_tail(&desc->list, &flist);
|
2020-01-22 02:44:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-06 18:36:43 +03:00
|
|
|
spin_unlock(&irq_entry->list_lock);
|
2021-01-16 00:52:52 +03:00
|
|
|
|
|
|
|
list_for_each_entry(desc, &flist, list) {
|
2021-07-22 23:10:51 +03:00
|
|
|
/*
|
|
|
|
* Check against the original status as ABORT is software defined
|
|
|
|
* and 0xff, which DSA_COMP_STATUS_MASK can mask out.
|
|
|
|
*/
|
|
|
|
if (unlikely(desc->completion->status == IDXD_COMP_DESC_ABORT)) {
|
2021-10-27 00:36:02 +03:00
|
|
|
idxd_dma_complete_txd(desc, IDXD_COMPLETE_ABORT, true);
|
2021-07-14 21:50:06 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-10-27 00:36:02 +03:00
|
|
|
idxd_dma_complete_txd(desc, IDXD_COMPLETE_NORMAL, true);
|
2021-01-16 00:52:52 +03:00
|
|
|
}
|
2020-01-22 02:44:23 +03:00
|
|
|
}
|
|
|
|
|
2021-08-04 01:29:30 +03:00
|
|
|
irqreturn_t idxd_wq_thread(int irq, void *data)
|
2020-01-22 02:43:59 +03:00
|
|
|
{
|
2021-08-04 01:29:30 +03:00
|
|
|
struct idxd_irq_entry *irq_entry = data;
|
2020-01-22 02:44:23 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There are two lists we are processing. The pending_llist is where
|
|
|
|
* submmiter adds all the submitted descriptor after sending it to
|
|
|
|
* the workqueue. It's a lockless singly linked list. The work_list
|
|
|
|
* is the common linux double linked list. We are in a scenario of
|
|
|
|
* multiple producers and a single consumer. The producers are all
|
|
|
|
* the kernel submitters of descriptors, and the consumer is the
|
|
|
|
* kernel irq handler thread for the msix vector when using threaded
|
|
|
|
* irq. To work with the restrictions of llist to remain lockless,
|
|
|
|
* we are doing the following steps:
|
|
|
|
* 1. Iterate through the work_list and process any completed
|
|
|
|
* descriptor. Delete the completed entries during iteration.
|
|
|
|
* 2. llist_del_all() from the pending list.
|
|
|
|
* 3. Iterate through the llist that was deleted from the pending list
|
|
|
|
* and process the completed entries.
|
|
|
|
* 4. If the entry is still waiting on hardware, list_add_tail() to
|
|
|
|
* the work_list.
|
|
|
|
*/
|
2021-08-04 01:29:30 +03:00
|
|
|
irq_process_work_list(irq_entry);
|
|
|
|
irq_process_pending_llist(irq_entry);
|
2020-01-22 02:44:23 +03:00
|
|
|
|
2020-01-22 02:43:59 +03:00
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|