From ec85862d7630765ece666f19296379345aaf1d07 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alejandro=20Pi=C3=B1eiro?= Date: Wed, 26 May 2021 23:21:31 +0200 Subject: [PATCH] v3d/simulator: use the proper register when waiting on a CSD submit Until now we were waiting until having a dispatch current and/or queued. But that would only wait for all shaders to have started, it won't wait for them to have finished. With this commit we wait until the NUM_COMPLETED_JOBS (that in spite of that name, it is about dispatches) field got increased. This is in general safest, and it is needed after the latest simulator update to get CTS tests like the following ones working: dEQP-VK.compute.basic.copy_ssbo_multiple_invocations dEQP-VK.compute.basic.copy_ssbo_single_invocation dEQP-VK.compute.basic.ssbo_rw_single_invocation dEQP-VK.compute.basic.ssbo_unsized_arr_single_invocation dEQP-VK.compute.basic.ubo_to_ssbo_multiple_invocations dEQP-VK.compute.basic.ubo_to_ssbo_single_invocation v2 (from Juan feedback): * Clarify JOBS vs DISPATCHES Reviewed-by: Juan A. Suarez Part-of: --- src/broadcom/simulator/v3dx_simulator.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/broadcom/simulator/v3dx_simulator.c b/src/broadcom/simulator/v3dx_simulator.c index 6052f10..fe56459 100644 --- a/src/broadcom/simulator/v3dx_simulator.c +++ b/src/broadcom/simulator/v3dx_simulator.c @@ -213,6 +213,8 @@ v3dX(simulator_submit_csd_ioctl)(struct v3d_hw *v3d, struct drm_v3d_submit_csd *args, uint32_t gmp_ofs) { + int last_completed_jobs = (V3D_READ(V3D_CSD_0_STATUS) & + V3D_CSD_0_STATUS_NUM_COMPLETED_JOBS_SET); g_gmp_ofs = gmp_ofs; v3d_reload_gmp(v3d); @@ -227,9 +229,13 @@ v3dX(simulator_submit_csd_ioctl)(struct v3d_hw *v3d, /* CFG0 kicks off the job */ V3D_WRITE(V3D_CSD_0_QUEUED_CFG0, args->cfg[0]); - while (V3D_READ(V3D_CSD_0_STATUS) & - (V3D_CSD_0_STATUS_HAVE_CURRENT_DISPATCH_SET | - V3D_CSD_0_STATUS_HAVE_QUEUED_DISPATCH_SET)) { + /* Now we wait for the dispatch to finish. The safest way is to check + * if NUM_COMPLETED_JOBS has increased. Note that in spite of that + * name that register field is about the number of completed + * dispatches. + */ + while ((V3D_READ(V3D_CSD_0_STATUS) & + V3D_CSD_0_STATUS_NUM_COMPLETED_JOBS_SET) == last_completed_jobs) { v3d_hw_tick(v3d); } -- 2.7.4