Searched refs:psr_settings (Results 1 - 25 of 26) sorted by relevance

12

/linux-master/drivers/gpu/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_psr.c68 link->psr_settings.psr_feature_enabled = false;
73 link->psr_settings.psr_feature_enabled = false;
78 link->psr_settings.psr_version = DC_PSR_VERSION_UNSUPPORTED;
79 link->psr_settings.psr_feature_enabled = false;
83 link->psr_settings.psr_version = DC_PSR_VERSION_SU_1;
85 link->psr_settings.psr_version = DC_PSR_VERSION_1;
87 link->psr_settings.psr_feature_enabled = true;
91 link->psr_settings.psr_feature_enabled,
92 link->psr_settings.psr_version,
119 if (link->psr_settings
[all...]
H A Damdgpu_dm_crtc.c129 link->psr_settings.psr_allow_active);
141 if (link->psr_settings.psr_version < DC_PSR_VERSION_SU_1 && is_sr_active)
143 } else if (link->psr_settings.psr_feature_enabled &&
H A Damdgpu_dm.c4585 link->psr_settings.psr_feature_enabled = false;
4586 link->psr_settings.psr_version = DC_PSR_VERSION_UNSUPPORTED;
4641 if (link->psr_settings.psr_feature_enabled)
8446 if (acrtc_state->stream->link->psr_settings.psr_feature_enabled ||
8451 acrtc_state->stream->link->psr_settings.psr_version ==
8461 if (acrtc_state->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
8468 acrtc_state->stream->link->psr_settings.psr_dirty_rects_change_timestamp_ns =
8470 if (acrtc_state->stream->link->psr_settings.psr_allow_active)
8640 acrtc_state->stream->link->psr_settings.psr_allow_active)
8687 } else if (acrtc_state->stream->link->psr_settings
[all...]
H A Damdgpu_dm_debugfs.c997 seq_printf(m, "Driver support: %s", str_yes_no(link->psr_settings.psr_feature_enabled));
998 if (link->psr_settings.psr_version)
999 seq_printf(m, " [0x%02x]", link->psr_settings.psr_version);
/linux-master/drivers/gpu/drm/amd/display/dc/link/protocols/
H A Dlink_edp_panel_control.c490 if (link->psr_settings.psr_version == DC_PSR_VERSION_SU_1) {
573 if (power_opts && link->psr_settings.psr_power_opt != *power_opts) {
574 link->psr_settings.psr_power_opt = *power_opts;
576 if (psr != NULL && link->psr_settings.psr_feature_enabled && psr->funcs->psr_set_power_opt)
577 psr->funcs->psr_set_power_opt(psr, link->psr_settings.psr_power_opt, panel_inst);
580 if (psr != NULL && link->psr_settings.psr_feature_enabled &&
585 if (allow_active && link->psr_settings.psr_allow_active != *allow_active) {
586 link->psr_settings.psr_allow_active = *allow_active;
588 if (!link->psr_settings.psr_allow_active)
591 if (psr != NULL && link->psr_settings
[all...]
H A Dlink_dp_irq_handler.c125 if (!link->psr_settings.psr_feature_enabled)
166 if (link->psr_settings.psr_allow_active) {
/linux-master/drivers/gpu/drm/amd/display/dc/dce/
H A Ddmub_hw_lock_mgr.c66 if (link->psr_settings.psr_version == DC_PSR_VERSION_SU_1)
H A Ddmub_psr.c143 if (stream->link->psr_settings.psr_version == DC_PSR_VERSION_UNSUPPORTED)
149 switch (stream->link->psr_settings.psr_version) {
389 link->psr_settings.force_ffu_mode = 1;
391 link->psr_settings.force_ffu_mode = 0;
392 copy_settings_data->force_ffu_mode = link->psr_settings.force_ffu_mode;
408 if (link->psr_settings.psr_version == DC_PSR_VERSION_1 &&
/linux-master/drivers/gpu/drm/amd/display/dc/clk_mgr/
H A Dclk_mgr.c116 if (!edp_link->psr_settings.psr_feature_enabled)
118 clk_mgr->psr_allow_active_cache = edp_link->psr_settings.psr_allow_active;
137 if (!edp_link->psr_settings.psr_feature_enabled)
/linux-master/drivers/gpu/drm/amd/display/modules/info_packet/
H A Dinfo_packet.c150 if (stream->link->psr_settings.psr_version == DC_PSR_VERSION_SU_1)
154 else if (stream->link->psr_settings.psr_version == DC_PSR_VERSION_1)
/linux-master/drivers/gpu/drm/amd/display/modules/power/
H A Dpower_helpers.c912 link->psr_settings.psr_frame_capture_indication_req = true;
913 link->psr_settings.psr_sdp_transmit_line_num_deadline = num_vblank_lines;
918 link->psr_settings.psr_frame_capture_indication_req = false;
919 link->psr_settings.psr_sdp_transmit_line_num_deadline = sdp_tx_deadline_in_us / line_time_in_us;
922 psr_config->psr_sdp_transmit_line_num_deadline = link->psr_settings.psr_sdp_transmit_line_num_deadline;
926 psr_config->psr_frame_capture_indication_req = link->psr_settings.psr_frame_capture_indication_req;
/linux-master/drivers/gpu/drm/amd/display/dc/dml/dcn35/
H A Ddcn35_fpu.c591 bool is_psr = (link && (link->psr_settings.psr_version == DC_PSR_VERSION_1 ||
592 link->psr_settings.psr_version == DC_PSR_VERSION_SU_1) && !link->panel_config.psr.disable_psr);
/linux-master/drivers/gpu/drm/amd/display/dc/dml/dcn351/
H A Ddcn351_fpu.c627 bool is_psr = (link && (link->psr_settings.psr_version == DC_PSR_VERSION_1 ||
628 link->psr_settings.psr_version == DC_PSR_VERSION_SU_1) && !link->panel_config.psr.disable_psr);
/linux-master/drivers/gpu/drm/amd/display/dc/link/
H A Dlink_factory.c721 link->psr_settings.psr_vtotal_control_support = false;
722 link->psr_settings.psr_version = DC_PSR_VERSION_UNSUPPORTED;
803 link->psr_settings.psr_version = DC_PSR_VERSION_UNSUPPORTED;
/linux-master/drivers/gpu/drm/amd/display/dc/dce60/
H A Ddce60_hw_sequencer.c97 if (pipe_ctx->stream->link->psr_settings.psr_feature_enabled)
/linux-master/drivers/gpu/drm/amd/display/dc/hwss/dcn32/
H A Ddcn32_hwseq.c203 (dc->current_state->streams[i]->link->psr_settings.psr_version == DC_PSR_VERSION_UNSUPPORTED))
264 dc->current_state->streams[i]->link->psr_settings.psr_version != DC_PSR_VERSION_UNSUPPORTED)
675 pipe->stream->link->psr_settings.psr_version == DC_PSR_VERSION_UNSUPPORTED &&
/linux-master/drivers/gpu/drm/amd/display/dc/
H A Ddc_types.h995 struct psr_settings { struct
H A Ddc.h1621 struct psr_settings psr_settings; member in struct:dc_link
H A Ddc_dmub_srv.c1009 if ((pipe_ctx->stream->link->psr_settings.psr_version == DC_PSR_VERSION_SU_1 ||
1010 pipe_ctx->stream->link->psr_settings.psr_version == DC_PSR_VERSION_1) &&
/linux-master/drivers/gpu/drm/amd/display/dc/core/
H A Ddc.c3323 if ((stream->link->psr_settings.psr_version == DC_PSR_VERSION_SU_1
3324 || stream->link->psr_settings.psr_version == DC_PSR_VERSION_1)
4834 if (link->psr_settings.psr_feature_enabled) {
4835 if (enable && !link->psr_settings.psr_allow_active) {
4839 } else if (!enable && link->psr_settings.psr_allow_active) {
5373 if (link->psr_settings.psr_feature_enabled)
/linux-master/drivers/gpu/drm/amd/display/dc/dcn32/
H A Ddcn32_resource_helpers.c253 if (pipe->stream && pipe->stream->link->psr_settings.psr_version != DC_PSR_VERSION_UNSUPPORTED) {
/linux-master/drivers/gpu/drm/amd/display/dc/hwss/dcn30/
H A Ddcn30_hwseq.c943 stream->link->psr_settings.psr_version == DC_PSR_VERSION_UNSUPPORTED &&
/linux-master/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_hubp.c1080 if (param->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 &&
/linux-master/drivers/gpu/drm/amd/display/dc/hwss/dce110/
H A Ddce110_hwseq.c1656 pipe_ctx->stream->link->psr_settings.psr_feature_enabled = false;
2083 if (pipe_ctx->stream->link->psr_settings.psr_feature_enabled)
/linux-master/drivers/gpu/drm/amd/display/dc/dml/dcn20/
H A Ddcn20_fpu.c1095 else if (is_pwrseq0 && link->psr_settings.psr_version == DC_PSR_VERSION_1 && !link->panel_config.psr.disable_psr)

Completed in 351 milliseconds

12