Displaying 1 result from an estimated 1 matches for "d3e0a2a".
Did you mean:
d3e086a
2009 Dec 11
5
[PATCH 1/3] drm/nouveau: Pre-G80 tiling support.
..., NV40_PFB_TLIMIT(i), fb_bar_size);
- }
- break;
- }
+ /* Turn all the tiling regions off. */
+ for (i = 0; i < pfb->num_tiles; i++)
+ pfb->set_region_tiling(dev, i, 0, 0, 0);
return 0;
}
diff --git a/drivers/gpu/drm/nouveau/nv40_graph.c b/drivers/gpu/drm/nouveau/nv40_graph.c
index d3e0a2a..2435d49 100644
--- a/drivers/gpu/drm/nouveau/nv40_graph.c
+++ b/drivers/gpu/drm/nouveau/nv40_graph.c
@@ -333,6 +333,67 @@ nv40_grctx_vals_load(struct drm_device *dev, struct nouveau_gpuobj *ctx)
nv_wo32(dev, ctx, cv->data[i].offset, cv->data[i].value);
}
+static void
+nv40_graph_write_...