Re: [PATCH 1/2] drm/amdgpu: Add SDMA queue start/stop callbacks to amdgpu_ring_funcs

2025-03-11 Thread Christian König
Am 11.03.25 um 09:32 schrieb jesse.zh...@amd.com: > From: "jesse.zh...@amd.com" > > This patch introduces two new callbacks, `stop_queue` and `start_queue`, to > the > `amdgpu_ring_funcs` structure. These callbacks are designed to handle the > stopping > and starting of SDMA queues during engine

[PATCH 1/2] drm/amdgpu: Add SDMA queue start/stop callbacks to amdgpu_ring_funcs

2025-03-11 Thread jesse.zh...@amd.com
From: "jesse.zh...@amd.com" This patch introduces two new callbacks, `stop_queue` and `start_queue`, to the `amdgpu_ring_funcs` structure. These callbacks are designed to handle the stopping and starting of SDMA queues during engine reset operations. The changes include: 1. **Addition of Callba