drm/nouveau/fifo/g84-: rename non-stall interrupt event
authorBen Skeggs <bskeggs@redhat.com>
Tue, 24 Jan 2017 06:08:14 +0000 (16:08 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Fri, 17 Feb 2017 07:38:08 +0000 (17:38 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/include/nvif/cl826e.h
drivers/gpu/drm/nouveau/include/nvif/cl826f.h
drivers/gpu/drm/nouveau/include/nvif/cl906f.h
drivers/gpu/drm/nouveau/include/nvif/cla06f.h
drivers/gpu/drm/nouveau/nouveau_fence.c
drivers/gpu/drm/nouveau/nvkm/engine/fifo/chang84.c

index 05e6ef7..91e33db 100644 (file)
@@ -10,5 +10,5 @@ struct g82_channel_dma_v0 {
        __u64 offset;
 };
 
-#define G82_CHANNEL_DMA_V0_NTFY_UEVENT                                     0x00
+#define NV826E_V0_NTFY_NON_STALL_INTERRUPT                                 0x00
 #endif
index cecafcb..e34efd4 100644 (file)
@@ -11,5 +11,5 @@ struct g82_channel_gpfifo_v0 {
        __u64 vm;
 };
 
-#define G82_CHANNEL_GPFIFO_V0_NTFY_UEVENT                                  0x00
+#define NV826F_V0_NTFY_NON_STALL_INTERRUPT                                 0x00
 #endif
index 2caf083..e9302ec 100644 (file)
@@ -10,5 +10,5 @@ struct fermi_channel_gpfifo_v0 {
        __u64 vm;
 };
 
-#define FERMI_CHANNEL_GPFIFO_V0_NTFY_UEVENT                                0x00
+#define NV906F_V0_NTFY_NON_STALL_INTERRUPT                                 0x00
 #endif
index 46301ec..567123a 100644 (file)
@@ -25,5 +25,5 @@ struct kepler_channel_gpfifo_a_v0 {
        __u64 vm;
 };
 
-#define NVA06F_V0_NTFY_UEVENT                                              0x00
+#define NVA06F_V0_NTFY_NON_STALL_INTERRUPT                                 0x00
 #endif
index a6126c9..f3e551f 100644 (file)
@@ -190,7 +190,7 @@ nouveau_fence_context_new(struct nouveau_channel *chan, struct nouveau_fence_cha
                return;
 
        ret = nvif_notify_init(&chan->user, nouveau_fence_wait_uevent_handler,
-                              false, G82_CHANNEL_DMA_V0_NTFY_UEVENT,
+                              false, NV826E_V0_NTFY_NON_STALL_INTERRUPT,
                               &(struct nvif_notify_uevent_req) { },
                               sizeof(struct nvif_notify_uevent_req),
                               sizeof(struct nvif_notify_uevent_rep),
index 15a992b..66bd1cd 100644 (file)
@@ -35,7 +35,7 @@ g84_fifo_chan_ntfy(struct nvkm_fifo_chan *chan, u32 type,
                   struct nvkm_event **pevent)
 {
        switch (type) {
-       case G82_CHANNEL_DMA_V0_NTFY_UEVENT:
+       case NV826E_V0_NTFY_NON_STALL_INTERRUPT:
                *pevent = &chan->fifo->uevent;
                return 0;
        default: