]> git.baikalelectronics.ru Git - kernel.git/commit
drm/amd/display: Fix USB4 null pointer dereference in update_psp_stream_config
authorNicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Fri, 17 Dec 2021 19:18:59 +0000 (14:18 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 28 Dec 2021 21:03:35 +0000 (16:03 -0500)
commita38e1c4fdf1a19318f2c3954232bb4f87d887768
treeaa0ce770f4a098635b68be07b52165084809c85f
parent396d06458c6caa7bcaf83f99c1bdb44516ff402b
drm/amd/display: Fix USB4 null pointer dereference in update_psp_stream_config

[Why]
A porting error on a previous patch left the block of code that
causes the crash from a NULL pointer dereference.

More specifically, we try to access link_enc before it's assigned in
the USB4 case in the following assignment:

config.dio_output_idx = link_enc->transmitter - TRANSMITTER_UNIPHY_A;

[How]
That assignment occurs later depending on the ASIC version. It's only
needed on DCN31 and only after link_enc is already assigned.

Fixes: 99dc4c444e3a19 ("drm/amd/display: fix a crash on USB4 over C20 PHY")
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc_link.c