Home
last modified time | relevance | path

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

/openbmc/linux/include/drm/display/
H A Ddrm_dp_helper.h779 int drm_dp_pcon_pps_override_param(struct drm_dp_aux *aux, u8 pps_param[6]);
/openbmc/linux/drivers/gpu/drm/display/
H A Ddrm_dp_helper.c3409 int drm_dp_pcon_pps_override_param(struct drm_dp_aux *aux, u8 pps_param[6]) in drm_dp_pcon_pps_override_param()
3413 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVRD_SLICE_HEIGHT, &pps_param[0], 2); in drm_dp_pcon_pps_override_param()
3416 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVRD_SLICE_WIDTH, &pps_param[2], 2); in drm_dp_pcon_pps_override_param()
3419 ret = drm_dp_dpcd_write(aux, DP_PCON_HDMI_PPS_OVRD_BPP, &pps_param[4], 2); in drm_dp_pcon_pps_override_param()
/openbmc/linux/drivers/gpu/drm/i915/display/
H A Dintel_dp.c2870 u8 pps_param[6]; in intel_dp_pcon_dsc_configure() local
2909 pps_param[0] = slice_height & 0xFF; in intel_dp_pcon_dsc_configure()
2910 pps_param[1] = slice_height >> 8; in intel_dp_pcon_dsc_configure()
2911 pps_param[2] = slice_width & 0xFF; in intel_dp_pcon_dsc_configure()
2912 pps_param[3] = slice_width >> 8; in intel_dp_pcon_dsc_configure()
2913 pps_param[4] = bits_per_pixel & 0xFF; in intel_dp_pcon_dsc_configure()
2914 pps_param[5] = (bits_per_pixel >> 8) & 0x3; in intel_dp_pcon_dsc_configure()
2916 ret = drm_dp_pcon_pps_override_param(&intel_dp->aux, pps_param); in intel_dp_pcon_dsc_configure()