Commit 20acbed4 authored by Emily Deng's avatar Emily Deng Committed by Alex Deucher

drm/amdgpu/vce: VCE entity initialization relies on ring initializtion

Entity init should after ring init, as the entity's sched_rq's initialization
is in ring init.

SWDEV-161495
Signed-off-by: default avatarEmily Deng <Emily.Deng@amd.com>
Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 33d5bd07
...@@ -90,8 +90,6 @@ static void amdgpu_vce_idle_work_handler(struct work_struct *work); ...@@ -90,8 +90,6 @@ static void amdgpu_vce_idle_work_handler(struct work_struct *work);
*/ */
int amdgpu_vce_sw_init(struct amdgpu_device *adev, unsigned long size) int amdgpu_vce_sw_init(struct amdgpu_device *adev, unsigned long size)
{ {
struct amdgpu_ring *ring;
struct drm_sched_rq *rq;
const char *fw_name; const char *fw_name;
const struct common_firmware_header *hdr; const struct common_firmware_header *hdr;
unsigned ucode_version, version_major, version_minor, binary_id; unsigned ucode_version, version_major, version_minor, binary_id;
...@@ -188,14 +186,6 @@ int amdgpu_vce_sw_init(struct amdgpu_device *adev, unsigned long size) ...@@ -188,14 +186,6 @@ int amdgpu_vce_sw_init(struct amdgpu_device *adev, unsigned long size)
return r; return r;
} }
ring = &adev->vce.ring[0];
rq = &ring->sched.sched_rq[DRM_SCHED_PRIORITY_NORMAL];
r = drm_sched_entity_init(&adev->vce.entity, &rq, 1, NULL);
if (r != 0) {
DRM_ERROR("Failed setting up VCE run queue.\n");
return r;
}
for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) { for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) {
atomic_set(&adev->vce.handles[i], 0); atomic_set(&adev->vce.handles[i], 0);
adev->vce.filp[i] = NULL; adev->vce.filp[i] = NULL;
...@@ -235,6 +225,29 @@ int amdgpu_vce_sw_fini(struct amdgpu_device *adev) ...@@ -235,6 +225,29 @@ int amdgpu_vce_sw_fini(struct amdgpu_device *adev)
return 0; return 0;
} }
/**
* amdgpu_vce_entity_init - init entity
*
* @adev: amdgpu_device pointer
*
*/
int amdgpu_vce_entity_init(struct amdgpu_device *adev)
{
struct amdgpu_ring *ring;
struct drm_sched_rq *rq;
int r;
ring = &adev->vce.ring[0];
rq = &ring->sched.sched_rq[DRM_SCHED_PRIORITY_NORMAL];
r = drm_sched_entity_init(&adev->vce.entity, &rq, 1, NULL);
if (r != 0) {
DRM_ERROR("Failed setting up VCE run queue.\n");
return r;
}
return 0;
}
/** /**
* amdgpu_vce_suspend - unpin VCE fw memory * amdgpu_vce_suspend - unpin VCE fw memory
* *
......
...@@ -55,6 +55,7 @@ struct amdgpu_vce { ...@@ -55,6 +55,7 @@ struct amdgpu_vce {
int amdgpu_vce_sw_init(struct amdgpu_device *adev, unsigned long size); int amdgpu_vce_sw_init(struct amdgpu_device *adev, unsigned long size);
int amdgpu_vce_sw_fini(struct amdgpu_device *adev); int amdgpu_vce_sw_fini(struct amdgpu_device *adev);
int amdgpu_vce_entity_init(struct amdgpu_device *adev);
int amdgpu_vce_suspend(struct amdgpu_device *adev); int amdgpu_vce_suspend(struct amdgpu_device *adev);
int amdgpu_vce_resume(struct amdgpu_device *adev); int amdgpu_vce_resume(struct amdgpu_device *adev);
int amdgpu_vce_get_create_msg(struct amdgpu_ring *ring, uint32_t handle, int amdgpu_vce_get_create_msg(struct amdgpu_ring *ring, uint32_t handle,
......
...@@ -439,6 +439,8 @@ static int vce_v2_0_sw_init(void *handle) ...@@ -439,6 +439,8 @@ static int vce_v2_0_sw_init(void *handle)
return r; return r;
} }
r = amdgpu_vce_entity_init(adev);
return r; return r;
} }
......
...@@ -448,6 +448,8 @@ static int vce_v3_0_sw_init(void *handle) ...@@ -448,6 +448,8 @@ static int vce_v3_0_sw_init(void *handle)
return r; return r;
} }
r = amdgpu_vce_entity_init(adev);
return r; return r;
} }
......
...@@ -419,6 +419,7 @@ static int vce_v4_0_sw_init(void *handle) ...@@ -419,6 +419,7 @@ static int vce_v4_0_sw_init(void *handle)
{ {
struct amdgpu_device *adev = (struct amdgpu_device *)handle; struct amdgpu_device *adev = (struct amdgpu_device *)handle;
struct amdgpu_ring *ring; struct amdgpu_ring *ring;
unsigned size; unsigned size;
int r, i; int r, i;
...@@ -474,6 +475,11 @@ static int vce_v4_0_sw_init(void *handle) ...@@ -474,6 +475,11 @@ static int vce_v4_0_sw_init(void *handle)
return r; return r;
} }
r = amdgpu_vce_entity_init(adev);
if (r)
return r;
r = amdgpu_virt_alloc_mm_table(adev); r = amdgpu_virt_alloc_mm_table(adev);
if (r) if (r)
return r; return r;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment