Home
last modified time | relevance | path

Searched refs:pps_param (Results 1 – 3 of 3) sorted by relevance

/linux-6.6.21/include/drm/display/
Ddrm_dp_helper.h773 int drm_dp_pcon_pps_override_param(struct drm_dp_aux *aux, u8 pps_param[6]);
/linux-6.6.21/drivers/gpu/drm/display/
Ddrm_dp_helper.c3374 int drm_dp_pcon_pps_override_param(struct drm_dp_aux *aux, u8 pps_param[6]) in drm_dp_pcon_pps_override_param()
3378 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVRD_SLICE_HEIGHT, &pps_param[0], 2); in drm_dp_pcon_pps_override_param()
3381 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVRD_SLICE_WIDTH, &pps_param[2], 2); in drm_dp_pcon_pps_override_param()
3384 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVRD_BPP, &pps_param[4], 2); in drm_dp_pcon_pps_override_param()
/linux-6.6.21/drivers/gpu/drm/i915/display/
Dintel_dp.c2861 u8 pps_param[6]; in intel_dp_pcon_dsc_configure() local
2900 pps_param[0] = slice_height & 0xFF; in intel_dp_pcon_dsc_configure()
2901 pps_param[1] = slice_height >> 8; in intel_dp_pcon_dsc_configure()
2902 pps_param[2] = slice_width & 0xFF; in intel_dp_pcon_dsc_configure()
2903 pps_param[3] = slice_width >> 8; in intel_dp_pcon_dsc_configure()
2904 pps_param[4] = bits_per_pixel & 0xFF; in intel_dp_pcon_dsc_configure()
2905 pps_param[5] = (bits_per_pixel >> 8) & 0x3; in intel_dp_pcon_dsc_configure()
2907 ret = drm_dp_pcon_pps_override_param(&intel_dp->aux, pps_param); in intel_dp_pcon_dsc_configure()