forked from luck/tmp_suning_uos_patched
drm/amdgpu: add invalidate semaphore limit for SRIOV in gmc10
It may fail to load guest driver in round 2 when using invalidate semaphore for SRIOV. So it needs to avoid using invalidate semaphore for SRIOV. Signed-off-by: changzhu <Changfeng.Zhu@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Reviewed-by: Huang Rui <ray.huang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
90f6452ca5
commit
f271fe1856
|
@ -219,6 +219,21 @@ static uint32_t gmc_v10_0_get_invalidate_req(unsigned int vmid,
|
||||||
return req;
|
return req;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gmc_v10_0_use_invalidate_semaphore - judge whether to use semaphore
|
||||||
|
*
|
||||||
|
* @adev: amdgpu_device pointer
|
||||||
|
* @vmhub: vmhub type
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
static bool gmc_v10_0_use_invalidate_semaphore(struct amdgpu_device *adev,
|
||||||
|
uint32_t vmhub)
|
||||||
|
{
|
||||||
|
return ((vmhub == AMDGPU_MMHUB_0 ||
|
||||||
|
vmhub == AMDGPU_MMHUB_1) &&
|
||||||
|
(!amdgpu_sriov_vf(adev)));
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* GART
|
* GART
|
||||||
* VMID 0 is the physical GPU addresses as used by the kernel.
|
* VMID 0 is the physical GPU addresses as used by the kernel.
|
||||||
|
@ -229,6 +244,7 @@ static uint32_t gmc_v10_0_get_invalidate_req(unsigned int vmid,
|
||||||
static void gmc_v10_0_flush_vm_hub(struct amdgpu_device *adev, uint32_t vmid,
|
static void gmc_v10_0_flush_vm_hub(struct amdgpu_device *adev, uint32_t vmid,
|
||||||
unsigned int vmhub, uint32_t flush_type)
|
unsigned int vmhub, uint32_t flush_type)
|
||||||
{
|
{
|
||||||
|
bool use_semaphore = gmc_v10_0_use_invalidate_semaphore(adev, vmhub);
|
||||||
struct amdgpu_vmhub *hub = &adev->vmhub[vmhub];
|
struct amdgpu_vmhub *hub = &adev->vmhub[vmhub];
|
||||||
u32 tmp = gmc_v10_0_get_invalidate_req(vmid, flush_type);
|
u32 tmp = gmc_v10_0_get_invalidate_req(vmid, flush_type);
|
||||||
/* Use register 17 for GART */
|
/* Use register 17 for GART */
|
||||||
|
@ -244,8 +260,7 @@ static void gmc_v10_0_flush_vm_hub(struct amdgpu_device *adev, uint32_t vmid,
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* TODO: It needs to continue working on debugging with semaphore for GFXHUB as well. */
|
/* TODO: It needs to continue working on debugging with semaphore for GFXHUB as well. */
|
||||||
if (vmhub == AMDGPU_MMHUB_0 ||
|
if (use_semaphore) {
|
||||||
vmhub == AMDGPU_MMHUB_1) {
|
|
||||||
for (i = 0; i < adev->usec_timeout; i++) {
|
for (i = 0; i < adev->usec_timeout; i++) {
|
||||||
/* a read return value of 1 means semaphore acuqire */
|
/* a read return value of 1 means semaphore acuqire */
|
||||||
tmp = RREG32_NO_KIQ(hub->vm_inv_eng0_sem + eng);
|
tmp = RREG32_NO_KIQ(hub->vm_inv_eng0_sem + eng);
|
||||||
|
@ -278,8 +293,7 @@ static void gmc_v10_0_flush_vm_hub(struct amdgpu_device *adev, uint32_t vmid,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: It needs to continue working on debugging with semaphore for GFXHUB as well. */
|
/* TODO: It needs to continue working on debugging with semaphore for GFXHUB as well. */
|
||||||
if (vmhub == AMDGPU_MMHUB_0 ||
|
if (use_semaphore)
|
||||||
vmhub == AMDGPU_MMHUB_1)
|
|
||||||
/*
|
/*
|
||||||
* add semaphore release after invalidation,
|
* add semaphore release after invalidation,
|
||||||
* write with 0 means semaphore release
|
* write with 0 means semaphore release
|
||||||
|
@ -369,6 +383,7 @@ static void gmc_v10_0_flush_gpu_tlb(struct amdgpu_device *adev, uint32_t vmid,
|
||||||
static uint64_t gmc_v10_0_emit_flush_gpu_tlb(struct amdgpu_ring *ring,
|
static uint64_t gmc_v10_0_emit_flush_gpu_tlb(struct amdgpu_ring *ring,
|
||||||
unsigned vmid, uint64_t pd_addr)
|
unsigned vmid, uint64_t pd_addr)
|
||||||
{
|
{
|
||||||
|
bool use_semaphore = gmc_v10_0_use_invalidate_semaphore(ring->adev, ring->funcs->vmhub);
|
||||||
struct amdgpu_vmhub *hub = &ring->adev->vmhub[ring->funcs->vmhub];
|
struct amdgpu_vmhub *hub = &ring->adev->vmhub[ring->funcs->vmhub];
|
||||||
uint32_t req = gmc_v10_0_get_invalidate_req(vmid, 0);
|
uint32_t req = gmc_v10_0_get_invalidate_req(vmid, 0);
|
||||||
unsigned eng = ring->vm_inv_eng;
|
unsigned eng = ring->vm_inv_eng;
|
||||||
|
@ -381,8 +396,7 @@ static uint64_t gmc_v10_0_emit_flush_gpu_tlb(struct amdgpu_ring *ring,
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* TODO: It needs to continue working on debugging with semaphore for GFXHUB as well. */
|
/* TODO: It needs to continue working on debugging with semaphore for GFXHUB as well. */
|
||||||
if (ring->funcs->vmhub == AMDGPU_MMHUB_0 ||
|
if (use_semaphore)
|
||||||
ring->funcs->vmhub == AMDGPU_MMHUB_1)
|
|
||||||
/* a read return value of 1 means semaphore acuqire */
|
/* a read return value of 1 means semaphore acuqire */
|
||||||
amdgpu_ring_emit_reg_wait(ring,
|
amdgpu_ring_emit_reg_wait(ring,
|
||||||
hub->vm_inv_eng0_sem + eng, 0x1, 0x1);
|
hub->vm_inv_eng0_sem + eng, 0x1, 0x1);
|
||||||
|
@ -398,8 +412,7 @@ static uint64_t gmc_v10_0_emit_flush_gpu_tlb(struct amdgpu_ring *ring,
|
||||||
req, 1 << vmid);
|
req, 1 << vmid);
|
||||||
|
|
||||||
/* TODO: It needs to continue working on debugging with semaphore for GFXHUB as well. */
|
/* TODO: It needs to continue working on debugging with semaphore for GFXHUB as well. */
|
||||||
if (ring->funcs->vmhub == AMDGPU_MMHUB_0 ||
|
if (use_semaphore)
|
||||||
ring->funcs->vmhub == AMDGPU_MMHUB_1)
|
|
||||||
/*
|
/*
|
||||||
* add semaphore release after invalidation,
|
* add semaphore release after invalidation,
|
||||||
* write with 0 means semaphore release
|
* write with 0 means semaphore release
|
||||||
|
|
Loading…
Reference in New Issue
Block a user