mirror of https://gitee.com/openkylin/linux.git
drm/amdgpu/gfx9: add additional MQD initialization
Need to properly set the ROQ space setting. Reviewed-by: monk liu <monk.liu@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
0274a9c556
commit
fca4ce697f
|
@ -1998,6 +1998,11 @@ static int gfx_v9_0_mqd_init(struct amdgpu_ring *ring)
|
||||||
tmp = REG_SET_FIELD(tmp, CP_HQD_PERSISTENT_STATE, PRELOAD_SIZE, 0x53);
|
tmp = REG_SET_FIELD(tmp, CP_HQD_PERSISTENT_STATE, PRELOAD_SIZE, 0x53);
|
||||||
mqd->cp_hqd_persistent_state = tmp;
|
mqd->cp_hqd_persistent_state = tmp;
|
||||||
|
|
||||||
|
/* set MIN_IB_AVAIL_SIZE */
|
||||||
|
tmp = RREG32_SOC15(GC, 0, mmCP_HQD_IB_CONTROL);
|
||||||
|
tmp = REG_SET_FIELD(tmp, CP_HQD_IB_CONTROL, MIN_IB_AVAIL_SIZE, 3);
|
||||||
|
mqd->cp_hqd_ib_control = tmp;
|
||||||
|
|
||||||
/* activate the queue */
|
/* activate the queue */
|
||||||
mqd->cp_hqd_active = 1;
|
mqd->cp_hqd_active = 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue