mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-07 15:49:02 +02:00
tests/amdgpu: make amdgpu_command_submission_sdma_write_linear generic
So it can be shared for CP tests. Reviewed-by: Ken Wang <Qingqing.Wang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
8be79be043
commit
c5da5eade0
1 changed files with 18 additions and 9 deletions
|
|
@ -49,6 +49,8 @@ static void amdgpu_command_submission_sdma(void);
|
|||
static void amdgpu_userptr_test(void);
|
||||
static void amdgpu_semaphore_test(void);
|
||||
|
||||
static void amdgpu_command_submission_write_linear_helper(unsigned ip_type);
|
||||
|
||||
CU_TestInfo basic_tests[] = {
|
||||
{ "Query Info Test", amdgpu_query_info_test },
|
||||
{ "Memory alloc Test", amdgpu_memory_alloc },
|
||||
|
|
@ -619,7 +621,7 @@ static void amdgpu_test_exec_cs_helper(amdgpu_context_handle context_handle,
|
|||
CU_ASSERT_EQUAL(r, 0);
|
||||
}
|
||||
|
||||
static void amdgpu_command_submission_sdma_write_linear(void)
|
||||
static void amdgpu_command_submission_write_linear_helper(unsigned ip_type)
|
||||
{
|
||||
const int sdma_write_length = 128;
|
||||
const int pm4_dw = 256;
|
||||
|
|
@ -669,16 +671,18 @@ static void amdgpu_command_submission_sdma_write_linear(void)
|
|||
|
||||
/* fullfill PM4: test DMA write-linear */
|
||||
i = j = 0;
|
||||
pm4[i++] = SDMA_PACKET(SDMA_OPCODE_WRITE,
|
||||
SDMA_WRITE_SUB_OPCODE_LINEAR, 0);
|
||||
pm4[i++] = 0xffffffff & bo_mc;
|
||||
pm4[i++] = (0xffffffff00000000 & bo_mc) >> 32;
|
||||
pm4[i++] = sdma_write_length;
|
||||
while(j++ < sdma_write_length)
|
||||
pm4[i++] = 0xdeadbeaf;
|
||||
if (ip_type == AMDGPU_HW_IP_DMA) {
|
||||
pm4[i++] = SDMA_PACKET(SDMA_OPCODE_WRITE,
|
||||
SDMA_WRITE_SUB_OPCODE_LINEAR, 0);
|
||||
pm4[i++] = 0xffffffff & bo_mc;
|
||||
pm4[i++] = (0xffffffff00000000 & bo_mc) >> 32;
|
||||
pm4[i++] = sdma_write_length;
|
||||
while(j++ < sdma_write_length)
|
||||
pm4[i++] = 0xdeadbeaf;
|
||||
}
|
||||
|
||||
amdgpu_test_exec_cs_helper(context_handle,
|
||||
AMDGPU_HW_IP_DMA, 0,
|
||||
ip_type, 0,
|
||||
i, pm4,
|
||||
1, resources,
|
||||
ib_info, ibs_request);
|
||||
|
|
@ -705,6 +709,11 @@ static void amdgpu_command_submission_sdma_write_linear(void)
|
|||
CU_ASSERT_EQUAL(r, 0);
|
||||
}
|
||||
|
||||
static void amdgpu_command_submission_sdma_write_linear(void)
|
||||
{
|
||||
amdgpu_command_submission_write_linear_helper(AMDGPU_HW_IP_DMA);
|
||||
}
|
||||
|
||||
static void amdgpu_command_submission_sdma_const_fill(void)
|
||||
{
|
||||
const int sdma_write_length = 1024 * 1024;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue