[PATCH libdrm] tests/amdgpu/vcn: fix the nop command in IBs
Deucher, Alexander
Alexander.Deucher at amd.com
Tue Dec 11 21:11:10 UTC 2018
Reviewed-by: Alex Deucher <alexander.deucher at amd.com>
________________________________
From: amd-gfx <amd-gfx-bounces at lists.freedesktop.org> on behalf of Liu, Leo <Leo.Liu at amd.com>
Sent: Tuesday, December 11, 2018 4:03 PM
To: amd-gfx at lists.freedesktop.org; dri-devel at lists.freedesktop.org
Cc: Liu, Leo
Subject: [PATCH libdrm] tests/amdgpu/vcn: fix the nop command in IBs
Just make them properly i.e. put 0 to the Nop reg
Signed-off-by: Leo Liu <leo.liu at amd.com>
---
tests/amdgpu/vcn_tests.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/tests/amdgpu/vcn_tests.c b/tests/amdgpu/vcn_tests.c
index d9f05af8..859ec496 100644
--- a/tests/amdgpu/vcn_tests.c
+++ b/tests/amdgpu/vcn_tests.c
@@ -268,8 +268,10 @@ static void amdgpu_cs_vcn_dec_create(void)
ib_cpu[len++] = msg_buf.addr >> 32;
ib_cpu[len++] = 0x81C3;
ib_cpu[len++] = 0;
- for (; len % 16; ++len)
- ib_cpu[len] = 0x81ff;
+ for (; len % 16; ) {
+ ib_cpu[len++] = 0x81ff;
+ ib_cpu[len++] = 0;
+ }
r = submit(len, AMDGPU_HW_IP_VCN_DEC);
CU_ASSERT_EQUAL(r, 0);
@@ -336,8 +338,10 @@ static void amdgpu_cs_vcn_dec_decode(void)
ib_cpu[len++] = 0x81C6;
ib_cpu[len++] = 0x1;
- for (; len % 16; ++len)
- ib_cpu[len] = 0x80000000;
+ for (; len % 16; ) {
+ ib_cpu[len++] = 0x81ff;
+ ib_cpu[len++] = 0;
+ }
r = submit(len, AMDGPU_HW_IP_VCN_DEC);
CU_ASSERT_EQUAL(r, 0);
@@ -373,8 +377,10 @@ static void amdgpu_cs_vcn_dec_destroy(void)
ib_cpu[len++] = msg_buf.addr >> 32;
ib_cpu[len++] = 0x81C3;
ib_cpu[len++] = 0;
- for (; len % 16; ++len)
- ib_cpu[len] = 0x80000000;
+ for (; len % 16; ) {
+ ib_cpu[len++] = 0x81ff;
+ ib_cpu[len++] = 0;
+ }
r = submit(len, AMDGPU_HW_IP_VCN_DEC);
CU_ASSERT_EQUAL(r, 0);
--
2.17.1
_______________________________________________
amd-gfx mailing list
amd-gfx at lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
amd-gfx Info Page - freedesktop.org<https://lists.freedesktop.org/mailman/listinfo/amd-gfx>
lists.freedesktop.org
To see the collection of prior postings to the list, visit the amd-gfx Archives.. Using amd-gfx: To post a message to all the list members, send email to amd-gfx at lists.freedesktop.org. You can subscribe to the list, or change your existing subscription, in the sections below.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/amd-gfx/attachments/20181211/d7784c4e/attachment.html>
More information about the amd-gfx
mailing list