drm/amd/display: Add utm_qos_model pointer to clk_bw_params

[Why]
Add support for passing QoS model data from clock manager
to bandwidth calculation consumers.

[How]
- Add forward declaration and const pointer for utm_qos_model
  in clk_bw_params

Reviewed-by: Dillon Varone <dillon.varone@amd.com>
Signed-off-by: Wenjing Liu <wenjing.liu@amd.com>
Signed-off-by: Chenyu Chen <chen-yu.chen@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Wenjing Liu 2026-05-28 13:10:27 -04:00 committed by Alex Deucher
parent e32cb17d4c
commit d00531ce78

View File

@ -30,6 +30,7 @@
#include "dc.h"
#include "core_types.h"
#include "dm_pp_smu.h"
struct utm_qos_model;
/* Constants */
#define DDR4_DRAM_WIDTH 64
@ -311,6 +312,7 @@ struct clk_bw_params {
struct wm_table wm_table;
struct dummy_pstate_entry dummy_pstate_table[4];
struct clk_limit_table_entry dc_mode_limit;
const struct utm_qos_model *utm_qos_model;
};
/* Public interfaces */