drm/amd/display: Make clock table struct more accessible
authorSung Lee <sung.lee@amd.com>
Thu, 20 Feb 2020 18:04:15 +0000 (13:04 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 5 Mar 2020 05:29:20 +0000 (00:29 -0500)
[WHY & HOW]
In order to correctly intepret clock table, num_states is also needed.
This field did not get moved with clock_table but should next to it for
easier access/viewing.

Signed-off-by: Sung Lee <sung.lee@amd.com>
Reviewed-by: Eric Yang <eric.yang2@amd.com>
Acked-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dml/display_mode_structs.h

index a56b611..a1d68e0 100644 (file)
@@ -69,6 +69,7 @@ struct _vcs_dpi_voltage_scaling_st {
 
 struct _vcs_dpi_soc_bounding_box_st {
        struct _vcs_dpi_voltage_scaling_st clock_limits[MAX_CLOCK_LIMIT_STATES];
+       unsigned int num_states;
        double sr_exit_time_us;
        double sr_enter_plus_exit_time_us;
        double urgent_latency_us;
@@ -111,7 +112,6 @@ struct _vcs_dpi_soc_bounding_box_st {
        double xfc_bus_transport_time_us;
        double xfc_xbuf_latency_tolerance_us;
        int use_urgent_burst_bw;
-       unsigned int num_states;
        double min_dcfclk;
        bool do_urgent_latency_adjustment;
        double urgent_latency_adjustment_fabric_clock_component_us;