drm/nouveau/mc: rename struct nvkm_mc_intr to nvkm_mc_map
authorBen Skeggs <bskeggs@redhat.com>
Fri, 8 Apr 2016 07:24:40 +0000 (17:24 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Fri, 20 May 2016 04:43:04 +0000 (14:43 +1000)
This will also be used to define NV_PMC_ENABLE <-> subdev mappings in an
upcoming commit.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.c
drivers/gpu/drm/nouveau/nvkm/subdev/mc/g98.c
drivers/gpu/drm/nouveau/nvkm/subdev/mc/gf100.c
drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv04.c
drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv50.c
drivers/gpu/drm/nouveau/nvkm/subdev/mc/priv.h

index 954fbbe..e6c5bc4 100644 (file)
@@ -58,7 +58,7 @@ nvkm_mc_intr(struct nvkm_mc *mc, bool *handled)
 {
        struct nvkm_device *device = mc->subdev.device;
        struct nvkm_subdev *subdev;
-       const struct nvkm_mc_intr *map = mc->func->intr;
+       const struct nvkm_mc_map *map = mc->func->intr;
        u32 stat, intr;
 
        stat = intr = nvkm_mc_intr_mask(mc);
index 7344ad6..7fc34bc 100644 (file)
@@ -23,7 +23,7 @@
  */
 #include "priv.h"
 
-static const struct nvkm_mc_intr
+static const struct nvkm_mc_map
 g98_mc_intr[] = {
        { 0x04000000, NVKM_ENGINE_DISP },  /* DISP first, so pageflip timestamps work */
        { 0x00000001, NVKM_ENGINE_MSPPP },
index 122fe69..ffcdbbd 100644 (file)
@@ -23,7 +23,7 @@
  */
 #include "priv.h"
 
-const struct nvkm_mc_intr
+const struct nvkm_mc_map
 gf100_mc_intr[] = {
        { 0x04000000, NVKM_ENGINE_DISP },  /* DISP first, so pageflip timestamps work. */
        { 0x00000001, NVKM_ENGINE_MSPPP },
index d282ec1..1300c8d 100644 (file)
@@ -23,7 +23,7 @@
  */
 #include "priv.h"
 
-const struct nvkm_mc_intr
+const struct nvkm_mc_map
 nv04_mc_intr[] = {
        { 0x00000001, NVKM_ENGINE_MPEG },       /* NV17- MPEG/ME */
        { 0x00000100, NVKM_ENGINE_FIFO },
index 5f27d7b..e5c1ccd 100644 (file)
@@ -23,7 +23,7 @@
  */
 #include "priv.h"
 
-const struct nvkm_mc_intr
+const struct nvkm_mc_map
 nv50_mc_intr[] = {
        { 0x04000000, NVKM_ENGINE_DISP },  /* DISP before FIFO, so pageflip-timestamping works! */
        { 0x00000001, NVKM_ENGINE_MPEG },
index 307f6c6..fa2b2d6 100644 (file)
@@ -6,14 +6,14 @@
 int nvkm_mc_new_(const struct nvkm_mc_func *, struct nvkm_device *,
                 int index, struct nvkm_mc **);
 
-struct nvkm_mc_intr {
+struct nvkm_mc_map {
        u32 stat;
        u32 unit;
 };
 
 struct nvkm_mc_func {
        void (*init)(struct nvkm_mc *);
-       const struct nvkm_mc_intr *intr;
+       const struct nvkm_mc_map *intr;
        /* disable reporting of interrupts to host */
        void (*intr_unarm)(struct nvkm_mc *);
        /* enable reporting of interrupts to host */
@@ -24,7 +24,7 @@ struct nvkm_mc_func {
 };
 
 void nv04_mc_init(struct nvkm_mc *);
-extern const struct nvkm_mc_intr nv04_mc_intr[];
+extern const struct nvkm_mc_map nv04_mc_intr[];
 void nv04_mc_intr_unarm(struct nvkm_mc *);
 void nv04_mc_intr_rearm(struct nvkm_mc *);
 u32 nv04_mc_intr_mask(struct nvkm_mc *);
@@ -32,9 +32,9 @@ u32 nv04_mc_intr_mask(struct nvkm_mc *);
 void nv44_mc_init(struct nvkm_mc *);
 
 void nv50_mc_init(struct nvkm_mc *);
-extern const struct nvkm_mc_intr nv50_mc_intr[];
+extern const struct nvkm_mc_map nv50_mc_intr[];
 
-extern const struct nvkm_mc_intr gf100_mc_intr[];
+extern const struct nvkm_mc_map gf100_mc_intr[];
 void gf100_mc_intr_unarm(struct nvkm_mc *);
 void gf100_mc_intr_rearm(struct nvkm_mc *);
 u32 gf100_mc_intr_mask(struct nvkm_mc *);