diff options
author | Jerry (Fangzhi) Zuo <Jerry.Zuo@amd.com> | 2018-05-11 14:51:43 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-05-17 11:13:20 -0400 |
commit | 1edb2c8a32160c00273485efea8d18080e31cc09 (patch) | |
tree | e85814b577d4e4846be965f71dc170569f3f5a9b /drivers | |
parent | 14a13a0ef0665924a5e87947309b6c9abfb41903 (diff) |
drm/amd/display: Add BIOS smu_info v3_3 support for Vega20
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Jerry (Fangzhi) Zuo <Jerry.Zuo@amd.com>
Reviewed-by: Hersen Wu <hersenxs.wu@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Feifei Xu <Feifei.Xu@amd.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c b/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c index 10a5807a7e8b..4561673a0fe6 100644 --- a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c +++ b/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c | |||
@@ -1330,6 +1330,11 @@ static enum bp_result bios_parser_get_firmware_info( | |||
1330 | case 2: | 1330 | case 2: |
1331 | result = get_firmware_info_v3_2(bp, info); | 1331 | result = get_firmware_info_v3_2(bp, info); |
1332 | break; | 1332 | break; |
1333 | case 3: | ||
1334 | #ifdef CONFIG_DRM_AMD_DC_VG20 | ||
1335 | result = get_firmware_info_v3_2(bp, info); | ||
1336 | #endif | ||
1337 | break; | ||
1333 | default: | 1338 | default: |
1334 | break; | 1339 | break; |
1335 | } | 1340 | } |