From: vitaly prosyak <vprosyak@amd.com>
To: Yogesh Mohan Marimuthu <yogesh.mohanmarimuthu@amd.com>,
igt-dev@lists.freedesktop.org
Cc: vitaly.prosyak@amd.com
Subject: Re: [PATCH i-g-t 2/2] tests/amdgpu: add fence wait multi packet test
Date: Mon, 16 Feb 2026 00:48:11 -0500 [thread overview]
Message-ID: <95706055-96d0-4db3-a45b-e38de2bea20a@amd.com> (raw)
In-Reply-To: <20260211113922.11211-2-yogesh.mohanmarimuthu@amd.com>
Please see feedback below.
Also please check formatting.
Please add test description .
Other things looks good to me
Thanks, Vitaly
On 2026-02-11 06:39, Yogesh Mohan Marimuthu wrote:
> Signed-off-by: Yogesh Mohan Marimuthu <yogesh.mohanmarimuthu@amd.com>
> ---
> tests/amdgpu/amd_basic.c | 184 +++++++++++++++++++++++++++++++++++++++
> 1 file changed, 184 insertions(+)
>
> diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
> index e57eb7969..0ef940bbe 100644
> --- a/tests/amdgpu/amd_basic.c
> +++ b/tests/amdgpu/amd_basic.c
> @@ -5,6 +5,7 @@
> * Copyright 2023 Advanced Micro Devices, Inc.
> */
>
> +#include <pthread.h>
> #include "lib/amdgpu/amd_memory.h"
> #include "lib/amdgpu/amd_sdma.h"
> #include "lib/amdgpu/amd_PM4.h"
> @@ -13,6 +14,7 @@
> #include "lib/amdgpu/amd_gfx.h"
> #include "lib/amdgpu/shaders/amd_shaders.h"
> #include "lib/amdgpu/compute_utils/amd_dispatch.h"
> +#include "lib/amdgpu/amdgpu_asic_addr.h"
>
> #define BUFFER_SIZE (8 * 1024)
>
> @@ -662,6 +664,172 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle, bool user_queue)
> free(ring_context);
> }
>
> +static int wait_for_value64(volatile uint64_t *ptr, uint64_t expected,
> + uint64_t timeout_ns, uint64_t check_interval_ns)
> +{
> + struct timespec start, now, sleep_time;
> + uint64_t elapsed_ns;
> +
> + if (!ptr)
> + return -EINVAL;
> +
> + clock_gettime(CLOCK_MONOTONIC, &start);
> +
> + if (check_interval_ns > 0) {
> + sleep_time.tv_sec = check_interval_ns / 1000000000ULL;
> + sleep_time.tv_nsec = check_interval_ns % 1000000000ULL;
> + }
> +
> + while (1) {
> + /* Check current value */
> + if (*ptr == expected)
> + return 0;
> +
> + /* Check timeout if specified */
> + if (timeout_ns > 0) {
> + clock_gettime(CLOCK_MONOTONIC, &now);
> + elapsed_ns = (now.tv_sec - start.tv_sec) * 1000000000ULL +
> + (now.tv_nsec - start.tv_nsec);
> +
> + if (elapsed_ns >= timeout_ns)
> + return -ETIMEDOUT;
> + }
> +
> + /* Sleep if interval specified, otherwise tight loop */
> + if (check_interval_ns > 0)
> + nanosleep(&sleep_time, NULL);
> + else
> + __asm__ __volatile__("pause" ::: "memory"); /* CPU hint for spin-wait */
> + }
> +}
> +
> +static void* amdgpu_fwm_test_thread(void *data)
> +{
> + struct amdgpu_ring_context *ring_context = data;
> + uint64_t *job_start_write_data_ptr = (uint64_t*)ring_context->bo3_cpu;
> + uint64_t *fwm_fence_ptr = (uint64_t*)ring_context->bo3_cpu + 1;
> + int *ret = calloc(1, sizeof(int));
> +
> + /* Poll to confirm if job has started. This is done to have low timeout for fences
> + * wrongly satsified check.
> + */
> + *ret = wait_for_value64((uint64_t*)job_start_write_data_ptr, 0x1, 2 * 1000000, 1000);
> + if (*ret)
> + return ret;
> +
> + /* Poll if job completed without fence satisfied */
> + *ret = wait_for_value64((uint64_t*)ring_context->bo_cpu, 0xdeadbeef, 100 * 1000, 2000);
> + if (*ret == 0) {
> + *ret = -EINVAL;
> + return ret;
> + }
> +
> + for (unsigned i = 0; i < 32; i++)
> + fwm_fence_ptr[i] = i + 1;
> +
> + *ret = 0;
> + return ret;
> +}
> +
> +static void amdgpu_fwm_test(amdgpu_device_handle device_handle, unsigned ip_type)
> +{
> + struct amdgpu_ring_context *ring_context;
> + struct amdgpu_cmd_base *cmd_base = get_cmd_base();
> + const struct amdgpu_ip_block_version *ip_block = get_ip_block(device_handle, ip_type);
> + int r;
> + pthread_t fwm_test_thread;
> + int *thread_ret;
> +
> + ring_context = calloc(1, sizeof(struct amdgpu_ring_context));
> + igt_assert(ring_context);
> + if (ip_block->funcs->family_id == FAMILY_GFX1150)
> + ring_context->max_num_fences_fwm = 4;
> + else
> + ring_context->max_num_fences_fwm = 32;
> +
> + ip_block->funcs->userq_create(device_handle, ring_context, ip_block->type);
> +
> + /* Allocate bo for dma */
> + ring_context->write_length = 1024;
> + r = amdgpu_bo_alloc_and_map_sync(device_handle , ring_context->write_length, 4096,
> + AMDGPU_GEM_DOMAIN_GTT, AMDGPU_GEM_CREATE_CPU_GTT_USWC,
> + AMDGPU_VM_MTYPE_UC, &ring_context->bo,
> + (void **)&ring_context->bo_cpu, &ring_context->bo_mc,
> + &ring_context->va_handle,
> + ring_context->timeline_syncobj_handle,
> + ++ring_context->point, true);
> + igt_assert_eq(r, 0);
> + memset((void *)ring_context->bo_cpu, 0, ring_context->write_length);
> +
> + /* Allocate bo2 for ib */
> + r = amdgpu_bo_alloc_and_map_sync(device_handle, 8192, 4096, AMDGPU_GEM_DOMAIN_GTT,
> + AMDGPU_GEM_CREATE_CPU_GTT_USWC, AMDGPU_VM_MTYPE_UC,
> + &ring_context->bo2, (void **)&ring_context->bo2_cpu,
> + &ring_context->bo_mc2, &ring_context->va_handle2,
> + ring_context->timeline_syncobj_handle,
> + ++ring_context->point, true);
> + igt_assert_eq(r, 0);
> + memset((void *)ring_context->bo2_cpu, 0, 8192);
> +
> + /* Allocate bo3 for fence wait packet fences */
> + r = amdgpu_bo_alloc_and_map_sync(device_handle, 4096, 4096, AMDGPU_GEM_DOMAIN_GTT,
> + AMDGPU_GEM_CREATE_CPU_GTT_USWC, AMDGPU_VM_MTYPE_UC,
> + &ring_context->bo3, (void **)&ring_context->bo3_cpu,
> + &ring_context->bo_mc3, &ring_context->va_handle3,
> + ring_context->timeline_syncobj_handle,
> + ++ring_context->point, true);
> + igt_assert_eq(r, 0);
> + memset((void *)ring_context->bo3_cpu, 0, 4096);
> +
> + /* wait for gtt mapping to complete */
> + r = amdgpu_timeline_syncobj_wait(device_handle, ring_context->timeline_syncobj_handle,
> + ring_context->point);
> + igt_assert_eq(r, 0);
> +
> + /* assign cmd buffer for ring context */
> + cmd_base->attach_buf(cmd_base, (void *)ring_context->bo2_cpu, 8192);
> +
> + ring_context->job_start_write_data_va_addr = ring_context->bo_mc3;
> + ring_context->job_start_write_data_val = 0x1;
> + ring_context->num_fences = 32;
> + ring_context->fence_info = alloca(sizeof(struct drm_amdgpu_userq_fence_info) * 32);
Please avoid local declarations of 'i'
> + for (unsigned i = 0; i < 32; i++) {
> + ring_context->fence_info[i].va = ring_context->bo_mc3 + 8 + (i * 8);
> + ring_context->fence_info[i].value = i + 1;
> + }
> +
> + cmd_base->emit(cmd_base, PACKET3(PACKET3_WRITE_DATA, 3));
> + cmd_base->emit(cmd_base, WRITE_DATA_DST_SEL(5) | WR_CONFIRM |
> + WRITE_DATA_CACHE_POLICY(3));
Please use upper_32_bits lower_32_bits
> + cmd_base->emit(cmd_base, 0xfffffffc & ring_context->bo_mc);
> + cmd_base->emit(cmd_base, (0xffffffff00000000 & ring_context->bo_mc) >> 32);
> + cmd_base->emit(cmd_base, 0xdeadbeef);
> +
> + /* satisfy fence wait multi packet fences in separate thread for checking if fences
> + * gets satisifed incorrectly.
> + */
> + pthread_create(&fwm_test_thread, NULL, amdgpu_fwm_test_thread, ring_context);
> +
> + ring_context->pm4_dw = cmd_base->cdw;
> + ip_block->funcs->userq_submit(device_handle, ring_context, ip_block->type,
> + ring_context->bo_mc2);
> +
> + pthread_join(fwm_test_thread, (void **)&thread_ret);
> + igt_assert_eq(*thread_ret, 0);
> + igt_assert_eq_u32(*ring_context->bo_cpu, 0xdeadbeef);
> +
> + free(thread_ret);
> + ip_block->funcs->userq_destroy(device_handle, ring_context, ip_block->type);
> + amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle,
> + ring_context->bo_mc, ring_context->write_length);
> + amdgpu_bo_unmap_and_free(ring_context->bo2, ring_context->va_handle2,
> + ring_context->bo_mc2, 8192);
> + amdgpu_bo_unmap_and_free(ring_context->bo3, ring_context->va_handle3,
> + ring_context->bo_mc3, 4096);
> + free_cmd_base(cmd_base);
> + free(ring_context);
> +}
> +
> int igt_main()
> {
> amdgpu_device_handle device;
> @@ -811,6 +979,22 @@ int igt_main()
> }
> }
>
> + igt_describe("Check-GFX-CS-FENCE_WAIT_MULTI-packet");
> + igt_subtest_with_dynamic("cs-gfx-fwm-UMQ") {
> + if (enable_test && userq_arr_cap[AMD_IP_GFX]) {
> + igt_dynamic_f("cs-gfx-fwm-umq")
> + amdgpu_fwm_test(device, AMDGPU_HW_IP_GFX);
> + }
> + }
> +
> + igt_describe("Check-COMPUTE-CS-FENCE_WAIT_MULTI-packet");
> + igt_subtest_with_dynamic("cs-compute-fwm-UMQ") {
> + if (enable_test && userq_arr_cap[AMD_IP_COMPUTE]) {
> + igt_dynamic_f("cs-compute-fwm-umq")
> + amdgpu_fwm_test(device, AMDGPU_HW_IP_COMPUTE);
> + }
> + }
> +
> igt_fixture() {
> amdgpu_device_deinitialize(device);
> drm_close_driver(fd);
next prev parent reply other threads:[~2026-02-16 5:48 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-11 11:39 [PATCH i-g-t 1/2] lib/amdgpu: support FWM packet in user queue Yogesh Mohan Marimuthu
2026-02-11 11:39 ` [PATCH i-g-t 2/2] tests/amdgpu: add fence wait multi packet test Yogesh Mohan Marimuthu
2026-02-16 5:48 ` vitaly prosyak [this message]
2026-02-11 16:40 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,1/2] lib/amdgpu: support FWM packet in user queue Patchwork
2026-02-11 16:40 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-12 4:25 ` ✗ i915.CI.Full: failure " Patchwork
2026-02-13 0:07 ` ✗ Xe.CI.FULL: " Patchwork
2026-02-16 5:38 ` [PATCH i-g-t 1/2] " vitaly prosyak
2026-02-16 5:39 ` vitaly prosyak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=95706055-96d0-4db3-a45b-e38de2bea20a@amd.com \
--to=vprosyak@amd.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=vitaly.prosyak@amd.com \
--cc=yogesh.mohanmarimuthu@amd.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox