diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2012-10-09 20:41:04 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2012-11-28 18:56:28 -0500 |
commit | 150ccf161f5a83468409afa689081bb66f7d4585 (patch) | |
tree | b0068873ceef02d0f5adb2cbf60b14a7e5c77ae7 | |
parent | d33db63b3775409b1725cb4f5d17eb7cab2cc656 (diff) |
drm/nv30-nv40/fb: make use of bankoff for zeta buffers, where supported
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | drivers/gpu/drm/nouveau/core/include/subdev/fb.h | 3 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/core/subdev/fb/nv30.c | 7 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c | 12 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/core/subdev/fb/nv46.c | 16 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/core/subdev/fb/nv4e.c | 2 |
5 files changed, 36 insertions, 4 deletions
diff --git a/drivers/gpu/drm/nouveau/core/include/subdev/fb.h b/drivers/gpu/drm/nouveau/core/include/subdev/fb.h index 526672555b53..500998cee0ed 100644 --- a/drivers/gpu/drm/nouveau/core/include/subdev/fb.h +++ b/drivers/gpu/drm/nouveau/core/include/subdev/fb.h | |||
@@ -148,6 +148,9 @@ int nv41_fb_init(struct nouveau_object *); | |||
148 | int nv44_fb_init(struct nouveau_object *); | 148 | int nv44_fb_init(struct nouveau_object *); |
149 | void nv41_fb_tile_prog(struct nouveau_fb *, int, struct nouveau_fb_tile *); | 149 | void nv41_fb_tile_prog(struct nouveau_fb *, int, struct nouveau_fb_tile *); |
150 | 150 | ||
151 | void nv46_fb_tile_init(struct nouveau_fb *, int i, u32 addr, u32 size, | ||
152 | u32 pitch, u32 flags, struct nouveau_fb_tile *); | ||
153 | |||
151 | void nv50_fb_vram_del(struct nouveau_fb *, struct nouveau_mem **); | 154 | void nv50_fb_vram_del(struct nouveau_fb *, struct nouveau_mem **); |
152 | void nv50_fb_trap(struct nouveau_fb *, int display); | 155 | void nv50_fb_trap(struct nouveau_fb *, int display); |
153 | 156 | ||
diff --git a/drivers/gpu/drm/nouveau/core/subdev/fb/nv30.c b/drivers/gpu/drm/nouveau/core/subdev/fb/nv30.c index edc4ebe2ecc0..83e3a88c41fb 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/fb/nv30.c +++ b/drivers/gpu/drm/nouveau/core/subdev/fb/nv30.c | |||
@@ -34,7 +34,12 @@ void | |||
34 | nv30_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch, | 34 | nv30_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch, |
35 | u32 flags, struct nouveau_fb_tile *tile) | 35 | u32 flags, struct nouveau_fb_tile *tile) |
36 | { | 36 | { |
37 | tile->addr = addr | 1; | 37 | /* for performance, select alternate bank offset for zeta */ |
38 | if (!(flags & 4)) tile->addr = (0 << 4); | ||
39 | else tile->addr = (1 << 4); | ||
40 | |||
41 | tile->addr |= 0x00000001; /* enable */ | ||
42 | tile->addr |= addr; | ||
38 | tile->limit = max(1u, addr + size) - 1; | 43 | tile->limit = max(1u, addr + size) - 1; |
39 | tile->pitch = pitch; | 44 | tile->pitch = pitch; |
40 | } | 45 | } |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c b/drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c index f7e42fa412d9..d0804fdb9dbb 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c +++ b/drivers/gpu/drm/nouveau/core/subdev/fb/nv44.c | |||
@@ -30,6 +30,16 @@ struct nv44_fb_priv { | |||
30 | struct nouveau_fb base; | 30 | struct nouveau_fb base; |
31 | }; | 31 | }; |
32 | 32 | ||
33 | static void | ||
34 | nv44_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch, | ||
35 | u32 flags, struct nouveau_fb_tile *tile) | ||
36 | { | ||
37 | tile->addr = 0x00000001; /* mode = vram */ | ||
38 | tile->addr |= addr; | ||
39 | tile->limit = max(1u, addr + size) - 1; | ||
40 | tile->pitch = pitch; | ||
41 | } | ||
42 | |||
33 | int | 43 | int |
34 | nv44_fb_init(struct nouveau_object *object) | 44 | nv44_fb_init(struct nouveau_object *object) |
35 | { | 45 | { |
@@ -72,7 +82,7 @@ nv44_fb_ctor(struct nouveau_object *parent, struct nouveau_object *engine, | |||
72 | 82 | ||
73 | priv->base.memtype_valid = nv04_fb_memtype_valid; | 83 | priv->base.memtype_valid = nv04_fb_memtype_valid; |
74 | priv->base.tile.regions = 12; | 84 | priv->base.tile.regions = 12; |
75 | priv->base.tile.init = nv30_fb_tile_init; | 85 | priv->base.tile.init = nv44_fb_tile_init; |
76 | priv->base.tile.fini = nv30_fb_tile_fini; | 86 | priv->base.tile.fini = nv30_fb_tile_fini; |
77 | priv->base.tile.prog = nv41_fb_tile_prog; | 87 | priv->base.tile.prog = nv41_fb_tile_prog; |
78 | return nouveau_fb_created(&priv->base); | 88 | return nouveau_fb_created(&priv->base); |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/fb/nv46.c b/drivers/gpu/drm/nouveau/core/subdev/fb/nv46.c index 5cecb550e1d1..005f8a3df830 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/fb/nv46.c +++ b/drivers/gpu/drm/nouveau/core/subdev/fb/nv46.c | |||
@@ -30,6 +30,20 @@ struct nv46_fb_priv { | |||
30 | struct nouveau_fb base; | 30 | struct nouveau_fb base; |
31 | }; | 31 | }; |
32 | 32 | ||
33 | void | ||
34 | nv46_fb_tile_init(struct nouveau_fb *pfb, int i, u32 addr, u32 size, u32 pitch, | ||
35 | u32 flags, struct nouveau_fb_tile *tile) | ||
36 | { | ||
37 | /* for performance, select alternate bank offset for zeta */ | ||
38 | if (!(flags & 4)) tile->addr = (0 << 3); | ||
39 | else tile->addr = (1 << 3); | ||
40 | |||
41 | tile->addr |= 0x00000001; /* mode = vram */ | ||
42 | tile->addr |= addr; | ||
43 | tile->limit = max(1u, addr + size) - 1; | ||
44 | tile->pitch = pitch; | ||
45 | } | ||
46 | |||
33 | static int | 47 | static int |
34 | nv46_fb_ctor(struct nouveau_object *parent, struct nouveau_object *engine, | 48 | nv46_fb_ctor(struct nouveau_object *parent, struct nouveau_object *engine, |
35 | struct nouveau_oclass *oclass, void *data, u32 size, | 49 | struct nouveau_oclass *oclass, void *data, u32 size, |
@@ -57,7 +71,7 @@ nv46_fb_ctor(struct nouveau_object *parent, struct nouveau_object *engine, | |||
57 | 71 | ||
58 | priv->base.memtype_valid = nv04_fb_memtype_valid; | 72 | priv->base.memtype_valid = nv04_fb_memtype_valid; |
59 | priv->base.tile.regions = 15; | 73 | priv->base.tile.regions = 15; |
60 | priv->base.tile.init = nv30_fb_tile_init; | 74 | priv->base.tile.init = nv46_fb_tile_init; |
61 | priv->base.tile.fini = nv30_fb_tile_fini; | 75 | priv->base.tile.fini = nv30_fb_tile_fini; |
62 | priv->base.tile.prog = nv41_fb_tile_prog; | 76 | priv->base.tile.prog = nv41_fb_tile_prog; |
63 | return nouveau_fb_created(&priv->base); | 77 | return nouveau_fb_created(&priv->base); |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/fb/nv4e.c b/drivers/gpu/drm/nouveau/core/subdev/fb/nv4e.c index 18e880e95cc1..f839ba02e532 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/fb/nv4e.c +++ b/drivers/gpu/drm/nouveau/core/subdev/fb/nv4e.c | |||
@@ -48,7 +48,7 @@ nv4e_fb_ctor(struct nouveau_object *parent, struct nouveau_object *engine, | |||
48 | priv->base.ram.type = NV_MEM_TYPE_STOLEN; | 48 | priv->base.ram.type = NV_MEM_TYPE_STOLEN; |
49 | priv->base.memtype_valid = nv04_fb_memtype_valid; | 49 | priv->base.memtype_valid = nv04_fb_memtype_valid; |
50 | priv->base.tile.regions = 12; | 50 | priv->base.tile.regions = 12; |
51 | priv->base.tile.init = nv30_fb_tile_init; | 51 | priv->base.tile.init = nv46_fb_tile_init; |
52 | priv->base.tile.fini = nv30_fb_tile_fini; | 52 | priv->base.tile.fini = nv30_fb_tile_fini; |
53 | priv->base.tile.prog = nv41_fb_tile_prog; | 53 | priv->base.tile.prog = nv41_fb_tile_prog; |
54 | return nouveau_fb_created(&priv->base); | 54 | return nouveau_fb_created(&priv->base); |