Commit 26a0cfc1 authored by Alistair Popple's avatar Alistair Popple Committed by Ben Skeggs

drm/nouveau/fifo/tu102: FIFO interrupt fixes for Turing

Some of the low level FIFO interrupt status bits have changed for
Turing. Update the handling of these to match the hardware.
Signed-off-by: default avatarAlistair Popple <apopple@nvidia.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent b8ab4b45
...@@ -393,40 +393,21 @@ tu102_fifo_fault(struct nvkm_fifo *base, struct nvkm_fault_data *info) ...@@ -393,40 +393,21 @@ tu102_fifo_fault(struct nvkm_fifo *base, struct nvkm_fault_data *info)
spin_unlock_irqrestore(&fifo->base.lock, flags); spin_unlock_irqrestore(&fifo->base.lock, flags);
} }
static const struct nvkm_enum
tu102_fifo_sched_reason[] = {
{ 0x0a, "CTXSW_TIMEOUT" },
{}
};
static void static void
tu102_fifo_intr_sched_ctxsw(struct gk104_fifo *fifo) tu102_fifo_intr_ctxsw_timeout(struct gk104_fifo *fifo)
{ {
struct nvkm_device *device = fifo->base.engine.subdev.device; struct nvkm_device *device = fifo->base.engine.subdev.device;
unsigned long flags, engm = 0; unsigned long flags, engm;
u32 engn; u32 engn;
/* We need to ACK the SCHED_ERROR here, and prevent it reasserting,
* as MMU_FAULT cannot be triggered while it's pending.
*/
spin_lock_irqsave(&fifo->base.lock, flags); spin_lock_irqsave(&fifo->base.lock, flags);
nvkm_mask(device, 0x002140, 0x00000100, 0x00000000);
nvkm_wr32(device, 0x002100, 0x00000100);
for (engn = 0; engn < fifo->engine_nr; engn++) { engm = nvkm_rd32(device, 0x2a30);
struct gk104_fifo_engine_status status; nvkm_wr32(device, 0x2a30, engm);
gk104_fifo_engine_status(fifo, engn, &status); for_each_set_bit(engn, &engm, 32)
if (!status.busy || !status.chsw)
continue;
engm |= BIT(engn);
}
for_each_set_bit(engn, &engm, fifo->engine_nr)
tu102_fifo_recover_engn(fifo, engn); tu102_fifo_recover_engn(fifo, engn);
nvkm_mask(device, 0x002140, 0x00000100, 0x00000100);
spin_unlock_irqrestore(&fifo->base.lock, flags); spin_unlock_irqrestore(&fifo->base.lock, flags);
} }
...@@ -437,18 +418,8 @@ tu102_fifo_intr_sched(struct gk104_fifo *fifo) ...@@ -437,18 +418,8 @@ tu102_fifo_intr_sched(struct gk104_fifo *fifo)
struct nvkm_device *device = subdev->device; struct nvkm_device *device = subdev->device;
u32 intr = nvkm_rd32(device, 0x00254c); u32 intr = nvkm_rd32(device, 0x00254c);
u32 code = intr & 0x000000ff; u32 code = intr & 0x000000ff;
const struct nvkm_enum *en =
nvkm_enum_find(tu102_fifo_sched_reason, code);
nvkm_error(subdev, "SCHED_ERROR %02x [%s]\n", code, en ? en->name : "");
switch (code) { nvkm_error(subdev, "SCHED_ERROR %02x\n", code);
case 0x0a:
tu102_fifo_intr_sched_ctxsw(fifo);
break;
default:
break;
}
} }
static void static void
...@@ -466,10 +437,9 @@ tu102_fifo_intr(struct nvkm_fifo *base) ...@@ -466,10 +437,9 @@ tu102_fifo_intr(struct nvkm_fifo *base)
stat &= ~0x00000001; stat &= ~0x00000001;
} }
if (stat & 0x00000010) { if (stat & 0x00000002) {
nvkm_error(subdev, "PIO_ERROR\n"); tu102_fifo_intr_ctxsw_timeout(fifo);
nvkm_wr32(device, 0x002100, 0x00000010); stat &= ~0x00000002;
stat &= ~0x00000010;
} }
if (stat & 0x00000100) { if (stat & 0x00000100) {
...@@ -484,36 +454,6 @@ tu102_fifo_intr(struct nvkm_fifo *base) ...@@ -484,36 +454,6 @@ tu102_fifo_intr(struct nvkm_fifo *base)
stat &= ~0x00010000; stat &= ~0x00010000;
} }
if (stat & 0x00800000) {
nvkm_error(subdev, "FB_FLUSH_TIMEOUT\n");
nvkm_wr32(device, 0x002100, 0x00800000);
stat &= ~0x00800000;
}
if (stat & 0x01000000) {
nvkm_error(subdev, "LB_ERROR\n");
nvkm_wr32(device, 0x002100, 0x01000000);
stat &= ~0x01000000;
}
if (stat & 0x08000000) {
gk104_fifo_intr_dropped_fault(fifo);
nvkm_wr32(device, 0x002100, 0x08000000);
stat &= ~0x08000000;
}
if (stat & 0x10000000) {
u32 mask = nvkm_rd32(device, 0x00259c);
while (mask) {
u32 unit = __ffs(mask);
fifo->func->intr.fault(&fifo->base, unit);
nvkm_wr32(device, 0x00259c, (1 << unit));
mask &= ~(1 << unit);
}
stat &= ~0x10000000;
}
if (stat & 0x20000000) { if (stat & 0x20000000) {
u32 mask = nvkm_rd32(device, 0x0025a0); u32 mask = nvkm_rd32(device, 0x0025a0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment