Commit 4a680b45 authored by Sung Lee's avatar Sung Lee Committed by Alex Deucher

drm/amd/display: Make clock table struct more accessible

[WHY]
Currently clock table struct is very far down in the bounding box struct
making it hard to find while debugging, especially when using the
dal3dbgext.

[HOW]
Move it up so it is the first struct defined, and therefore much easier
to find and access.
Signed-off-by: default avatarSung Lee <sung.lee@amd.com>
Reviewed-by: default avatarEric Yang <eric.yang2@amd.com>
Acked-by: default avatarRodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Acked-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 89e94bc5
...@@ -68,6 +68,7 @@ struct _vcs_dpi_voltage_scaling_st { ...@@ -68,6 +68,7 @@ struct _vcs_dpi_voltage_scaling_st {
}; };
struct _vcs_dpi_soc_bounding_box_st { struct _vcs_dpi_soc_bounding_box_st {
struct _vcs_dpi_voltage_scaling_st clock_limits[MAX_CLOCK_LIMIT_STATES];
double sr_exit_time_us; double sr_exit_time_us;
double sr_enter_plus_exit_time_us; double sr_enter_plus_exit_time_us;
double urgent_latency_us; double urgent_latency_us;
...@@ -111,7 +112,6 @@ struct _vcs_dpi_soc_bounding_box_st { ...@@ -111,7 +112,6 @@ struct _vcs_dpi_soc_bounding_box_st {
double xfc_xbuf_latency_tolerance_us; double xfc_xbuf_latency_tolerance_us;
int use_urgent_burst_bw; int use_urgent_burst_bw;
unsigned int num_states; unsigned int num_states;
struct _vcs_dpi_voltage_scaling_st clock_limits[MAX_CLOCK_LIMIT_STATES];
double min_dcfclk; double min_dcfclk;
bool do_urgent_latency_adjustment; bool do_urgent_latency_adjustment;
double urgent_latency_adjustment_fabric_clock_component_us; double urgent_latency_adjustment_fabric_clock_component_us;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment