summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2012-10-10 10:57:49 +1000
committerBen Skeggs <bskeggs@redhat.com>2012-11-29 09:56:29 +1000
commit5f8e256704e86df795037b18395fdf102b75199e (patch)
treec02e4c9d9e9d5a1485b04cc3fe449616aa8413ea /drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c
parent150ccf161f5a83468409afa689081bb66f7d4585 (diff)
drm/nv40/fb: start bashing zcomp registers on relevant chipsets
Always bashing "disabled" for now, actual compressing coming up... Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c')
-rw-r--r--drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c b/drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c
index d0804fdb9db..c62a07781fe 100644
--- a/drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c
+++ b/drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c
@@ -40,6 +40,14 @@ nv44_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch,
tile->pitch = pitch;
}
+void
+nv44_fb_tile_prog(struct nouveau_fb *pfb, int i, struct nouveau_fb_tile *tile)
+{
+ nv_wr32(pfb, 0x100604 + (i * 0x10), tile->limit);
+ nv_wr32(pfb, 0x100608 + (i * 0x10), tile->pitch);
+ nv_wr32(pfb, 0x100600 + (i * 0x10), tile->addr);
+}
+
int
nv44_fb_init(struct nouveau_object *object)
{
@@ -84,7 +92,7 @@ nv44_fb_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
priv->base.tile.regions = 12;
priv->base.tile.init = nv44_fb_tile_init;
priv->base.tile.fini = nv30_fb_tile_fini;
- priv->base.tile.prog = nv41_fb_tile_prog;
+ priv->base.tile.prog = nv44_fb_tile_prog;
return nouveau_fb_created(&priv->base);
}