]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/nouveau/gr/gf100-: virtualise init_419c9c + apply fixes from traces
authorBen Skeggs <bskeggs@redhat.com>
Tue, 8 May 2018 10:39:46 +0000 (20:39 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Fri, 18 May 2018 05:01:23 +0000 (15:01 +1000)
Deliberately removed from non-GP100, as RM doesn't touch it.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.c
drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.h
drivers/gpu/drm/nouveau/nvkm/engine/gr/gp100.c

index 947278274846e6aa59b52aea6efbda76f0ac2b73..a379794df76120d7b212da66bd880e941c1e3889 100644 (file)
@@ -2068,6 +2068,8 @@ gf100_gr_init(struct gf100_gr *gr)
                gr->func->init_419cc0(gr);
        if (gr->func->init_419eb4)
                gr->func->init_419eb4(gr);
+       if (gr->func->init_419c9c)
+               gr->func->init_419c9c(gr);
 
        for (gpc = 0; gpc < gr->gpc_nr; gpc++) {
                nvkm_wr32(device, GPC_UNIT(gpc, 0x0420), 0xc0000000);
index 1dae373fa0d746a44375377e76cab36f82763cf7..e328957453fbc12087e8e1b3e53e292e7ce45fb5 100644 (file)
@@ -136,6 +136,7 @@ struct gf100_gr_func {
        void (*init_sked_hww_esr)(struct gf100_gr *);
        void (*init_419cc0)(struct gf100_gr *);
        void (*init_419eb4)(struct gf100_gr *);
+       void (*init_419c9c)(struct gf100_gr *);
        void (*init_ppc_exceptions)(struct gf100_gr *);
        void (*set_hww_esr_report_mask)(struct gf100_gr *);
        const struct gf100_gr_pack *mmio;
index 7518d249f648ce2fb116d357d5c42d5a4cea0f16..3fcbe1fc19cf758cab330c0d97f3f9a845b4a99e 100644 (file)
  * PGRAPH engine/subdev functions
  ******************************************************************************/
 
+static void
+gp100_gr_init_419c9c(struct gf100_gr *gr)
+{
+       struct nvkm_device *device = gr->base.engine.subdev.device;
+       nvkm_mask(device, 0x419c9c, 0x00010000, 0x00010000);
+       nvkm_mask(device, 0x419c9c, 0x00020000, 0x00020000);
+}
+
 void
 gp100_gr_init_fecs_exceptions(struct gf100_gr *gr)
 {
@@ -80,9 +88,8 @@ gp100_gr_init(struct gf100_gr *gr)
        nvkm_wr32(device, 0x405840, 0xc0000000);
        nvkm_wr32(device, 0x405844, 0x00ffffff);
        gr->func->init_419cc0(gr);
-
-       nvkm_mask(device, 0x419c9c, 0x00010000, 0x00010000);
-       nvkm_mask(device, 0x419c9c, 0x00020000, 0x00020000);
+       if (gr->func->init_419c9c)
+               gr->func->init_419c9c(gr);
 
        gr->func->init_ppc_exceptions(gr);
 
@@ -135,6 +142,7 @@ gp100_gr = {
        .init_ds_hww_esr_2 = gm200_gr_init_ds_hww_esr_2,
        .init_sked_hww_esr = gk104_gr_init_sked_hww_esr,
        .init_419cc0 = gf100_gr_init_419cc0,
+       .init_419c9c = gp100_gr_init_419c9c,
        .init_ppc_exceptions = gk104_gr_init_ppc_exceptions,
        .rops = gm200_gr_rops,
        .ppc_nr = 2,