mirror of https://gitee.com/openkylin/linux.git
drm/amd/display: Add clock types to applying clk for voltage
Add DCF and FCLK clock case statements for changing raven's clocks for voltage request. Also maintain DCEF clock for DCE120 calls. Signed-off-by: Mikita Lipski <mikita.lipski@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Acked-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
9654a28b3a
commit
25684c59af
|
@ -433,10 +433,18 @@ bool dm_pp_apply_clock_for_voltage_request(
|
||||||
pp_clock_request.clock_type = amd_pp_dcef_clock;
|
pp_clock_request.clock_type = amd_pp_dcef_clock;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case DM_PP_CLOCK_TYPE_DCFCLK:
|
||||||
|
pp_clock_request.clock_type = amd_pp_dcf_clock;
|
||||||
|
break;
|
||||||
|
|
||||||
case DM_PP_CLOCK_TYPE_PIXELCLK:
|
case DM_PP_CLOCK_TYPE_PIXELCLK:
|
||||||
pp_clock_request.clock_type = amd_pp_pixel_clock;
|
pp_clock_request.clock_type = amd_pp_pixel_clock;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case DM_PP_CLOCK_TYPE_FCLK:
|
||||||
|
pp_clock_request.clock_type = amd_pp_f_clock;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue