mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-19 05:22:06 -05:00
drm/amd/display: Add PSP FW version mask.
[Why] PSP version format is AB.CD.EF.GH, where CD and GH is the main version. current psp version check for dmcub loading dmcu check 0x00110029, in case of some psp version eg: 0x00110227 which main version should be 0x00110027, will result in unexpeceted dmcub loading dmcu FW. [How] Add psp version mask 0x00FF00FF for checking version. Signed-off-by: Yongqiang Sun <yongqiang.sun@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Acked-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com> Reviewed-by: Hersen Wu <hersenxs.wu@amd.com> Acked-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
a7e3658e94
commit
28bcdb8ee9
@@ -886,7 +886,7 @@ static void dcn21_dmcu_construct(
|
||||
|
||||
if (!IS_FPGA_MAXIMUS_DC(ctx->dce_environment)) {
|
||||
psp_version = dm_read_reg(ctx, mmMP0_SMN_C2PMSG_58);
|
||||
dmcu_dce->base.auto_load_dmcu = (psp_version > 0x00110029);
|
||||
dmcu_dce->base.auto_load_dmcu = ((psp_version & 0x00FF00FF) > 0x00110029);
|
||||
dmcu_dce->base.psp_version = psp_version;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user