mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/amdgpu/smu11: add support for navi14
Same as navi10. Signed-off-by: Xiaojie Yuan <xiaojie.yuan@amd.com> Reviewed-by: Feifei Xu <Feifei.Xu@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
7840d8babe
commit
b02ff12689
2 changed files with 6 additions and 0 deletions
|
@ -538,6 +538,7 @@ static int smu_set_funcs(struct amdgpu_device *adev)
|
|||
switch (adev->asic_type) {
|
||||
case CHIP_VEGA20:
|
||||
case CHIP_NAVI10:
|
||||
case CHIP_NAVI14:
|
||||
if (adev->pm.pp_feature & PP_OVERDRIVE_MASK)
|
||||
smu->od_enabled = true;
|
||||
smu_v11_0_set_smu_funcs(smu);
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
|
||||
MODULE_FIRMWARE("amdgpu/vega20_smc.bin");
|
||||
MODULE_FIRMWARE("amdgpu/navi10_smc.bin");
|
||||
MODULE_FIRMWARE("amdgpu/navi14_smc.bin");
|
||||
|
||||
#define SMU11_VOLTAGE_SCALE 4
|
||||
|
||||
|
@ -157,6 +158,9 @@ static int smu_v11_0_init_microcode(struct smu_context *smu)
|
|||
case CHIP_NAVI10:
|
||||
chip_name = "navi10";
|
||||
break;
|
||||
case CHIP_NAVI14:
|
||||
chip_name = "navi14";
|
||||
break;
|
||||
default:
|
||||
BUG();
|
||||
}
|
||||
|
@ -1799,6 +1803,7 @@ void smu_v11_0_set_smu_funcs(struct smu_context *smu)
|
|||
vega20_set_ppt_funcs(smu);
|
||||
break;
|
||||
case CHIP_NAVI10:
|
||||
case CHIP_NAVI14:
|
||||
navi10_set_ppt_funcs(smu);
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue