diff options
author | Rob Clark <[email protected]> | 2015-05-12 14:46:50 -0400 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-05-20 22:10:07 +0100 |
commit | 21dd729dcc34a9435c5b69eac103056f86b965d2 (patch) | |
tree | b94c26ad3881dc01a5f3239037bcb3b87ed0721a /src | |
parent | 104dc7447d66fb0006b40e8f8fc4664a7a1216e5 (diff) |
freedreno: enable a306
Whitelist adreno 306 (as found in msm8916/apq8016). Works pretty much
out of the box, although the smaller GMEM size requires more tiles to
fit 1920x1080, so bump up the max # of tiles as well.
Since it is just whitelist + trivial change, it makes sense to land on
all the active release branches.
Note that a305c ends up with gpu-id "306", hence a306 ends up with
gpu-id of "307". Apparently that is what happens when you let the
marketing dept name things.
Cc: "10.4" and "10.5" and "10.6" <[email protected]>
Signed-off-by: Rob Clark <[email protected]>
(cherry picked from commit fcc7d6323bbea489219225f467d59192d538e95f)
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_context.h | 2 | ||||
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_screen.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_context.h b/src/gallium/drivers/freedreno/freedreno_context.h index bf9abaf8855..5f863ca4c49 100644 --- a/src/gallium/drivers/freedreno/freedreno_context.h +++ b/src/gallium/drivers/freedreno/freedreno_context.h @@ -293,7 +293,7 @@ struct fd_context { */ struct fd_gmem_stateobj gmem; struct fd_vsc_pipe pipe[8]; - struct fd_tile tile[64]; + struct fd_tile tile[256]; /* which state objects need to be re-emit'd: */ enum { diff --git a/src/gallium/drivers/freedreno/freedreno_screen.c b/src/gallium/drivers/freedreno/freedreno_screen.c index f4ae6248b24..3746c674b74 100644 --- a/src/gallium/drivers/freedreno/freedreno_screen.c +++ b/src/gallium/drivers/freedreno/freedreno_screen.c @@ -531,6 +531,7 @@ fd_screen_create(struct fd_device *dev) case 220: fd2_screen_init(pscreen); break; + case 307: case 320: case 330: fd3_screen_init(pscreen); |