Commit 8908fdce authored by David Rosca's avatar David Rosca Committed by Alex Deucher
Browse files

drm/amdgpu/vcn: Allow limiting ctx to instance 0 for AV1 at any time



There is no reason to require this to happen on first submitted IB only.
We need to wait for the queue to be idle, but it can be done at any
time (including when there are multiple video sessions active).

Signed-off-by: default avatarDavid Rosca <david.rosca@amd.com>
Reviewed-by: default avatarLeo Liu <leo.liu@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent dc8f9f0f
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -1886,15 +1886,19 @@ static int vcn_v3_0_limit_sched(struct amdgpu_cs_parser *p,
				struct amdgpu_job *job)
{
	struct drm_gpu_scheduler **scheds;

	/* The create msg must be in the first IB submitted */
	if (atomic_read(&job->base.entity->fence_seq))
		return -EINVAL;
	struct dma_fence *fence;

	/* if VCN0 is harvested, we can't support AV1 */
	if (p->adev->vcn.harvest_config & AMDGPU_VCN_HARVEST_VCN0)
		return -EINVAL;

	/* wait for all jobs to finish before switching to instance 0 */
	fence = amdgpu_ctx_get_fence(p->ctx, job->base.entity, ~0ull);
	if (fence) {
		dma_fence_wait(fence, false);
		dma_fence_put(fence);
	}

	scheds = p->adev->gpu_sched[AMDGPU_HW_IP_VCN_DEC]
		[AMDGPU_RING_PRIO_DEFAULT].sched;
	drm_sched_entity_modify_sched(job->base.entity, scheds, 1);
+8 −4
Original line number Diff line number Diff line
@@ -1804,15 +1804,19 @@ static int vcn_v4_0_limit_sched(struct amdgpu_cs_parser *p,
				struct amdgpu_job *job)
{
	struct drm_gpu_scheduler **scheds;

	/* The create msg must be in the first IB submitted */
	if (atomic_read(&job->base.entity->fence_seq))
		return -EINVAL;
	struct dma_fence *fence;

	/* if VCN0 is harvested, we can't support AV1 */
	if (p->adev->vcn.harvest_config & AMDGPU_VCN_HARVEST_VCN0)
		return -EINVAL;

	/* wait for all jobs to finish before switching to instance 0 */
	fence = amdgpu_ctx_get_fence(p->ctx, job->base.entity, ~0ull);
	if (fence) {
		dma_fence_wait(fence, false);
		dma_fence_put(fence);
	}

	scheds = p->adev->gpu_sched[AMDGPU_HW_IP_VCN_ENC]
		[AMDGPU_RING_PRIO_0].sched;
	drm_sched_entity_modify_sched(job->base.entity, scheds, 1);