forked from Minki/linux
drm/amdgpu: Add CLK IP base offset
so we can read/write the registers in CLK domain through RREG32/WREG32_SOC15 Reviewed-by: Evan Quan <evan.quan@amd.com> Signed-off-by: Rex Zhu <Rex.Zhu@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
02374bbd3b
commit
73b1917454
@ -1398,6 +1398,7 @@ enum amd_hw_ip_block_type {
|
|||||||
PWR_HWIP,
|
PWR_HWIP,
|
||||||
NBIF_HWIP,
|
NBIF_HWIP,
|
||||||
THM_HWIP,
|
THM_HWIP,
|
||||||
|
CLK_HWIP,
|
||||||
MAX_HWIP
|
MAX_HWIP
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -51,6 +51,7 @@ int vega10_reg_base_init(struct amdgpu_device *adev)
|
|||||||
adev->reg_offset[PWR_HWIP][i] = (uint32_t *)(&(PWR_BASE.instance[i]));
|
adev->reg_offset[PWR_HWIP][i] = (uint32_t *)(&(PWR_BASE.instance[i]));
|
||||||
adev->reg_offset[NBIF_HWIP][i] = (uint32_t *)(&(NBIF_BASE.instance[i]));
|
adev->reg_offset[NBIF_HWIP][i] = (uint32_t *)(&(NBIF_BASE.instance[i]));
|
||||||
adev->reg_offset[THM_HWIP][i] = (uint32_t *)(&(THM_BASE.instance[i]));
|
adev->reg_offset[THM_HWIP][i] = (uint32_t *)(&(THM_BASE.instance[i]));
|
||||||
|
adev->reg_offset[CLK_HWIP][i] = (uint32_t *)(&(CLK_BASE.instance[i]));
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user