forked from Minki/linux
drm/amdgpu: use the new ring ib and dma frame size callbacks (v2)
Use them to more accurately determine the ring size required for ib submission. v2: drop extra alignment Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
58fafbaf16
commit
9a9db6ef7c
@ -125,7 +125,7 @@ int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs,
|
|||||||
unsigned patch_offset = ~0;
|
unsigned patch_offset = ~0;
|
||||||
struct amdgpu_vm *vm;
|
struct amdgpu_vm *vm;
|
||||||
uint64_t fence_ctx;
|
uint64_t fence_ctx;
|
||||||
uint32_t status = 0;
|
uint32_t status = 0, alloc_size;
|
||||||
|
|
||||||
unsigned i;
|
unsigned i;
|
||||||
int r = 0;
|
int r = 0;
|
||||||
@ -152,7 +152,10 @@ int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs,
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
r = amdgpu_ring_alloc(ring, 256 * num_ibs);
|
alloc_size = amdgpu_ring_get_dma_frame_size(ring) +
|
||||||
|
num_ibs * amdgpu_ring_get_emit_ib_size(ring);
|
||||||
|
|
||||||
|
r = amdgpu_ring_alloc(ring, alloc_size);
|
||||||
if (r) {
|
if (r) {
|
||||||
dev_err(adev->dev, "scheduling IB failed (%d).\n", r);
|
dev_err(adev->dev, "scheduling IB failed (%d).\n", r);
|
||||||
return r;
|
return r;
|
||||||
|
Loading…
Reference in New Issue
Block a user