return true;
 }
 
+bool dc_link_get_psr_state(const struct dc_link *dc_link, uint32_t *psr_state)
+{
+       struct core_link *link = DC_LINK_TO_CORE(dc_link);
+       struct dc_context *ctx = link->ctx;
+       struct core_dc *core_dc = DC_TO_CORE(ctx->dc);
+       struct dmcu *dmcu = core_dc->res_pool->dmcu;
+
+       if (dmcu != NULL && link->psr_enabled)
+               dmcu->funcs->get_psr_state(dmcu, psr_state);
+
+       return true;
+}
+
 bool dc_link_setup_psr(const struct dc_link *dc_link,
                const struct dc_stream *stream, struct psr_config *psr_config)
 {
 
 
 bool dc_link_set_psr_enable(const struct dc_link *dc_link, bool enable);
 
+bool dc_link_get_psr_state(const struct dc_link *dc_link, uint32_t *psr_state);
+
 bool dc_link_setup_psr(const struct dc_link *dc_link,
                const struct dc_stream *stream, struct psr_config *psr_config);
 
 
        .load_iram = dce_dmcu_load_iram,
        .set_psr_enable = dce_dmcu_set_psr_enable,
        .setup_psr = dce_dmcu_setup_psr,
+       .get_psr_state = dce_get_dmcu_psr_state
 };
 
 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
        .load_iram = dcn10_dmcu_load_iram,
        .set_psr_enable = dcn10_dmcu_set_psr_enable,
        .setup_psr = dcn10_dmcu_setup_psr,
+       .get_psr_state = dcn10_get_dmcu_psr_state
 };
 #endif
 
 
        void (*setup_psr)(struct dmcu *dmcu,
                        struct core_link *link,
                        struct psr_context *psr_context);
+       void (*get_psr_state)(struct dmcu *dmcu, uint32_t *psr_state);
 };
 
 #endif