Searched refs:pps_param (Results 1 – 3 of 3) sorted by relevance
/linux-6.1.9/drivers/gpu/drm/i915/display/ |
D | intel_dp.c | 2600 u8 pps_param[6]; in intel_dp_pcon_dsc_configure() local 2639 pps_param[0] = slice_height & 0xFF; in intel_dp_pcon_dsc_configure() 2640 pps_param[1] = slice_height >> 8; in intel_dp_pcon_dsc_configure() 2641 pps_param[2] = slice_width & 0xFF; in intel_dp_pcon_dsc_configure() 2642 pps_param[3] = slice_width >> 8; in intel_dp_pcon_dsc_configure() 2643 pps_param[4] = bits_per_pixel & 0xFF; in intel_dp_pcon_dsc_configure() 2644 pps_param[5] = (bits_per_pixel >> 8) & 0x3; in intel_dp_pcon_dsc_configure() 2646 ret = drm_dp_pcon_pps_override_param(&intel_dp->aux, pps_param); in intel_dp_pcon_dsc_configure()
|
/linux-6.1.9/include/drm/display/ |
D | drm_dp_helper.h | 761 int drm_dp_pcon_pps_override_param(struct drm_dp_aux *aux, u8 pps_param[6]);
|
/linux-6.1.9/drivers/gpu/drm/display/ |
D | drm_dp_helper.c | 3374 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()
|