drm/amdgpu: remove unconditional trap enable on add gfx11 queues
authorJonathan Kim <jonathan.kim@amd.com>
Thu, 19 Jan 2023 23:42:03 +0000 (18:42 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 25 Jan 2023 18:45:05 +0000 (13:45 -0500)
Rebase of driver has incorrect unconditional trap enablement
for GFX11 when adding mes queues.

Reported-by: Graham Sider <graham.sider@amd.com>
Signed-off-by: Jonathan Kim <jonathan.kim@amd.com>
Reviewed-by: Graham Sider <graham.sider@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org # 6.1.x
drivers/gpu/drm/amd/amdgpu/mes_v11_0.c

index 970b066b37bb917a0b99fdf54c8855bab86511e1..3a8fe8a24d3a3231177ec04cace6af203c539a51 100644 (file)
@@ -196,7 +196,6 @@ static int mes_v11_0_add_hw_queue(struct amdgpu_mes *mes,
        mes_add_queue_pkt.trap_handler_addr = input->tba_addr;
        mes_add_queue_pkt.tma_addr = input->tma_addr;
        mes_add_queue_pkt.is_kfd_process = input->is_kfd_process;
-       mes_add_queue_pkt.trap_en = 1;
 
        /* For KFD, gds_size is re-used for queue size (needed in MES for AQL queues) */
        mes_add_queue_pkt.is_aql_queue = input->is_aql_queue;