drm/nouveau/ce: switch to subdev printk macros
authorBen Skeggs <bskeggs@redhat.com>
Thu, 20 Aug 2015 04:54:12 +0000 (14:54 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Fri, 28 Aug 2015 02:40:24 +0000 (12:40 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvkm/engine/ce/gk104.c
drivers/gpu/drm/nouveau/nvkm/engine/ce/gm204.c
drivers/gpu/drm/nouveau/nvkm/engine/ce/gt215.c

index 2237a44a537061ab0fc703f4ecaed8d1a7dc6d44..8fad0ef13bd06e0e249ece4b5a28055bdc336675 100644 (file)
@@ -64,11 +64,10 @@ gk104_ce_intr(struct nvkm_subdev *subdev)
 {
        struct nvkm_device *device = subdev->device;
        const int idx = nv_subidx(subdev) - NVDEV_ENGINE_CE0;
-       struct nvkm_engine *ce = (void *)subdev;
        u32 stat = nvkm_rd32(device, 0x104908 + (idx * 0x1000));
 
        if (stat) {
-               nv_warn(ce, "unhandled intr 0x%08x\n", stat);
+               nvkm_warn(subdev, "intr %08x\n", stat);
                nvkm_wr32(device, 0x104908 + (idx * 0x1000), stat);
        }
 }
index 698deddd51f5f97de7f02b6f460e1f65fee130c8..23dc90769b1ad4e3e2592616f9cb2b14f271214e 100644 (file)
@@ -64,11 +64,10 @@ gm204_ce_intr(struct nvkm_subdev *subdev)
 {
        struct nvkm_device *device = subdev->device;
        const int idx = nv_subidx(subdev) - NVDEV_ENGINE_CE0;
-       struct nvkm_engine *ce = (void *)subdev;
        u32 stat = nvkm_rd32(device, 0x104908 + (idx * 0x1000));
 
        if (stat) {
-               nv_warn(ce, "unhandled intr 0x%08x\n", stat);
+               nvkm_warn(subdev, "intr %08x\n", stat);
                nvkm_wr32(device, 0x104908 + (idx * 0x1000), stat);
        }
 }
index a8fff0e13e195f08e808b25a375c59ed289303fa..49aeeb74990a34e24fd2e79e35c6b76c3964aed7 100644 (file)
@@ -76,6 +76,7 @@ gt215_ce_intr(struct nvkm_subdev *subdev)
        struct nvkm_engine *engine = nv_engine(subdev);
        struct nvkm_falcon *falcon = (void *)subdev;
        struct nvkm_object *engctx;
+       const struct nvkm_enum *en;
        u32 dispatch = nv_ro32(falcon, 0x01c);
        u32 stat = nv_ro32(falcon, 0x008) & dispatch & ~(dispatch >> 16);
        u64 inst = nv_ro32(falcon, 0x050) & 0x3fffffff;
@@ -90,17 +91,18 @@ gt215_ce_intr(struct nvkm_subdev *subdev)
        chid   = fifo->chid(fifo, engctx);
 
        if (stat & 0x00000040) {
-               nv_error(falcon, "DISPATCH_ERROR [");
-               nvkm_enum_print(gt215_ce_isr_error_name, ssta);
-               pr_cont("] ch %d [0x%010llx %s] subc %d mthd 0x%04x data 0x%08x\n",
-                      chid, inst << 12, nvkm_client_name(engctx), subc,
-                      mthd, data);
+               en = nvkm_enum_find(gt215_ce_isr_error_name, ssta);
+               nvkm_error(subdev, "DISPATCH_ERROR %04x [%s] "
+                                  "ch %d [%010llx %s] subc %d "
+                                  "mthd %04x data %08x\n",
+                          ssta, en ? en->name : "", chid, inst << 12,
+                          nvkm_client_name(engctx), subc, mthd, data);
                nv_wo32(falcon, 0x004, 0x00000040);
                stat &= ~0x00000040;
        }
 
        if (stat) {
-               nv_error(falcon, "unhandled intr 0x%08x\n", stat);
+               nvkm_error(subdev, "intr %08x\n", stat);
                nv_wo32(falcon, 0x004, stat);
        }
 
This page took 0.026675 seconds and 5 git commands to generate.