summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/lima
diff options
context:
space:
mode:
authorVasily Khoruzhick <anarsoul@gmail.com>2019-10-16 19:20:25 -0700
committerVasily Khoruzhick <anarsoul@gmail.com>2020-01-05 00:16:39 -0800
commitc5ae64ebc716267f752fc530028791363148f25c (patch)
tree599a2452117b5fbfccccc6462e1b57c06e53f78a /src/gallium/drivers/lima
parent4f5bfe2a5e252f1f7ae047949d645918f374e07c (diff)
lima: fix PP stream terminator size
PP stream terminator size seems to be 4 words, it worked with full PP stream because we align stream beginning to 32 bytes and BO is initialized with zeroes. But with partial PP stream it sometimes break if for new PP stream we reuse BO that has non-zero value at this place. Reviewed-by: Qiang Yu <yuq825@gmail.com> Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
Diffstat (limited to 'src/gallium/drivers/lima')
-rw-r--r--src/gallium/drivers/lima/lima_draw.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/lima/lima_draw.c b/src/gallium/drivers/lima/lima_draw.c
index 72cd3f6cb35..5690aba3e3a 100644
--- a/src/gallium/drivers/lima/lima_draw.c
+++ b/src/gallium/drivers/lima/lima_draw.c
@@ -425,7 +425,7 @@ lima_get_pp_stream_size(int num_pp, int tiled_w, int tiled_h, uint32_t *off)
* extra size should be added to the preceeding stream
* 2. alignment: each stream address should be 0x20 aligned
*/
- int delta = tiled_w * tiled_h / num_pp * 16 + 8;
+ int delta = tiled_w * tiled_h / num_pp * 16 + 16;
int remain = tiled_w * tiled_h % num_pp;
int offset = 0;
@@ -519,6 +519,8 @@ lima_generate_pp_stream(struct lima_context *ctx, int off_x, int off_y,
for (i = 0; i < num_pp; i++) {
stream[i][si[i]++] = 0;
stream[i][si[i]++] = 0xBC000000;
+ stream[i][si[i]++] = 0;
+ stream[i][si[i]++] = 0;
lima_dump_command_stream_print(
stream[i], si[i] * 4, false, "pp plb stream %d at va %x\n",