OSDN Git Service

drm/nouveau/fifo/gk104: fix chid bit mask
authorXia Yang <xiay@nvidia.com>
Thu, 25 Feb 2016 08:59:08 +0000 (17:59 +0900)
committerBen Skeggs <bskeggs@redhat.com>
Mon, 14 Mar 2016 00:13:30 +0000 (10:13 +1000)
Fix the channel id bit mask in FIFO schedule timeout error handling.

FIFO_ENGINE_STATUS_NEXT_ID is bit 27:16 thus 0x0fff0000.
FIFO_ENGINE_STATUS_ID      is bit 11:0  thus 0x00000fff.

Signed-off-by: Xia Yang <xiay@nvidia.com>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk104.c

index 4fcd147..d6a88cf 100644 (file)
@@ -198,11 +198,11 @@ gk104_fifo_intr_sched_ctxsw(struct gk104_fifo *fifo)
        for (engn = 0; engn < ARRAY_SIZE(fifo->engine); engn++) {
                u32 stat = nvkm_rd32(device, 0x002640 + (engn * 0x08));
                u32 busy = (stat & 0x80000000);
-               u32 next = (stat & 0x07ff0000) >> 16;
+               u32 next = (stat & 0x0fff0000) >> 16;
                u32 chsw = (stat & 0x00008000);
                u32 save = (stat & 0x00004000);
                u32 load = (stat & 0x00002000);
-               u32 prev = (stat & 0x000007ff);
+               u32 prev = (stat & 0x00000fff);
                u32 chid = load ? next : prev;
                (void)save;