Re: [PATCH 07/18] drm/amdgpu/vcn: separate gating state by instance

2024-10-04 Thread Boyuan Zhang
On 2024-10-02 07:28, Christian König wrote: Am 02.10.24 um 06:36 schrieb boyuan.zh...@amd.com: From: Boyuan Zhang vcn gating state should now be based on instance. For example, instance 0 can be gated while instance 1 is ungated, or vice versa. Therefore, change the cur_state to be an arr

Re: [PATCH 07/18] drm/amdgpu/vcn: separate gating state by instance

2024-10-02 Thread Christian König
Am 02.10.24 um 06:36 schrieb boyuan.zh...@amd.com: From: Boyuan Zhang vcn gating state should now be based on instance. For example, instance 0 can be gated while instance 1 is ungated, or vice versa. Therefore, change the cur_state to be an array, so that it can track the gating status for ea

[PATCH 07/18] drm/amdgpu/vcn: separate gating state by instance

2024-10-01 Thread boyuan.zhang
From: Boyuan Zhang vcn gating state should now be based on instance. For example, instance 0 can be gated while instance 1 is ungated, or vice versa. Therefore, change the cur_state to be an array, so that it can track the gating status for each vcn instance now. Signed-off-by: Boyuan Zhang --