Home
last modified time | relevance | path

Searched refs:dcn_soc (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/drivers/gpu/drm/amd/display/dc/dml/calcs/
Ddcn_calcs.c642 if ((int)(dc->dcn_soc->sr_exit_time * 1000) != dc->debug.sr_exit_time_ns in dcn_bw_apply_registry_override()
645 dc->dcn_soc->sr_exit_time = dc->debug.sr_exit_time_ns / 1000.0; in dcn_bw_apply_registry_override()
648 if ((int)(dc->dcn_soc->sr_enter_plus_exit_time * 1000) in dcn_bw_apply_registry_override()
652 dc->dcn_soc->sr_enter_plus_exit_time = in dcn_bw_apply_registry_override()
656 if ((int)(dc->dcn_soc->urgent_latency * 1000) != dc->debug.urgent_latency_ns in dcn_bw_apply_registry_override()
659 dc->dcn_soc->urgent_latency = dc->debug.urgent_latency_ns / 1000.0; in dcn_bw_apply_registry_override()
662 if ((int)(dc->dcn_soc->percent_of_ideal_drambw_received_after_urg_latency * 1000) in dcn_bw_apply_registry_override()
666 dc->dcn_soc->percent_of_ideal_drambw_received_after_urg_latency = in dcn_bw_apply_registry_override()
670 if ((int)(dc->dcn_soc->dram_clock_change_latency * 1000) in dcn_bw_apply_registry_override()
674 dc->dcn_soc->dram_clock_change_latency = in dcn_bw_apply_registry_override()
[all …]
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/dcn10/
Ddcn10_resource.c1219 dc->dcn_soc->number_of_channels == 1) in dcn10_validate_global()
1307 struct dcn_soc_bounding_box *dcn_soc = dc->dcn_soc; in dcn10_resource_construct_fp() local
1313 dcn_soc->dram_clock_change_latency = 23; in dcn10_resource_construct_fp()
1317 dc->dcn_soc->urgent_latency = 3; in dcn10_resource_construct_fp()
1319 dc->dcn_soc->fabric_and_dram_bandwidth_vmax0p9 = 41.60f; in dcn10_resource_construct_fp()
1323 dc->dcn_soc->number_of_channels = dc->ctx->asic_id.vram_width / ddr4_dram_width; in dcn10_resource_construct_fp()
1324 ASSERT(dc->dcn_soc->number_of_channels < 3); in dcn10_resource_construct_fp()
1325 if (dc->dcn_soc->number_of_channels == 0)/*old sbios bug*/ in dcn10_resource_construct_fp()
1326 dc->dcn_soc->number_of_channels = 2; in dcn10_resource_construct_fp()
1328 if (dc->dcn_soc->number_of_channels == 1) { in dcn10_resource_construct_fp()
[all …]
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/core/
Ddc.c843 kfree(dc->dcn_soc); in dc_destruct()
844 dc->dcn_soc = NULL; in dc_destruct()
896 struct dcn_soc_bounding_box *dcn_soc; in dc_construct() local
925 dcn_soc = kzalloc(sizeof(*dcn_soc), GFP_KERNEL); in dc_construct()
926 if (!dcn_soc) { in dc_construct()
931 dc->dcn_soc = dcn_soc; in dc_construct()
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/
Ddc.h885 struct dcn_soc_bounding_box *dcn_soc; member