Module: Mesa
Branch: master
Commit: a1d808638de026d07d16161b432df25afefdd959
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=a1d808638de026d07d16161b432df25afefdd959

Author: Rob Clark <[email protected]>
Date:   Sat Dec  7 08:47:10 2013 -0500

freedreno/a3xx: add adreno 330 support

Signed-off-by: Rob Clark <[email protected]>

---

 src/gallium/drivers/freedreno/a3xx/fd3_emit.c    |   10 ++++++----
 src/gallium/drivers/freedreno/freedreno_screen.c |    1 +
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_emit.c 
b/src/gallium/drivers/freedreno/a3xx/fd3_emit.c
index b1c0e74..a8b2df7 100644
--- a/src/gallium/drivers/freedreno/a3xx/fd3_emit.c
+++ b/src/gallium/drivers/freedreno/a3xx/fd3_emit.c
@@ -491,10 +491,12 @@ fd3_emit_restore(struct fd_context *ctx)
        struct fd_ringbuffer *ring = ctx->ring;
        int i;
 
-       OUT_PKT3(ring, CP_REG_RMW, 3);
-       OUT_RING(ring, REG_A3XX_RBBM_CLOCK_CTL);
-       OUT_RING(ring, 0xfffcffff);
-       OUT_RING(ring, 0x00000000);
+       if (ctx->screen->gpu_id == 320) {
+               OUT_PKT3(ring, CP_REG_RMW, 3);
+               OUT_RING(ring, REG_A3XX_RBBM_CLOCK_CTL);
+               OUT_RING(ring, 0xfffcffff);
+               OUT_RING(ring, 0x00000000);
+       }
 
        OUT_PKT3(ring, CP_INVALIDATE_STATE, 1);
        OUT_RING(ring, 0x00007fff);
diff --git a/src/gallium/drivers/freedreno/freedreno_screen.c 
b/src/gallium/drivers/freedreno/freedreno_screen.c
index 4031f55..d07cc0b 100644
--- a/src/gallium/drivers/freedreno/freedreno_screen.c
+++ b/src/gallium/drivers/freedreno/freedreno_screen.c
@@ -429,6 +429,7 @@ fd_screen_create(struct fd_device *dev)
                fd2_screen_init(pscreen);
                break;
        case 320:
+       case 330:
                fd3_screen_init(pscreen);
                break;
        default:

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to