Commit 08b8ccfb authored by Corbin McElhanney's avatar Corbin McElhanney Committed by Alex Deucher

drm/amd/display: Fix hw state logging regression

Signed-off-by: default avatarCorbin McElhanney <corbin.mcelhanney@amd.com>
Reviewed-by: default avatarTony Cheng <Tony.Cheng@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent e1403629
...@@ -134,6 +134,7 @@ static void verify_allow_pstate_change_high( ...@@ -134,6 +134,7 @@ static void verify_allow_pstate_change_high(
static unsigned int pstate_wait_timeout_us = 40; static unsigned int pstate_wait_timeout_us = 40;
static unsigned int max_sampled_pstate_wait_us; /* data collection */ static unsigned int max_sampled_pstate_wait_us; /* data collection */
static bool forced_pstate_allow; /* help with revert wa */ static bool forced_pstate_allow; /* help with revert wa */
static bool should_log_hw_state; /* prevent hw state log by default */
unsigned int debug_index = 0x7; unsigned int debug_index = 0x7;
unsigned int debug_data; unsigned int debug_data;
...@@ -191,7 +192,9 @@ static void verify_allow_pstate_change_high( ...@@ -191,7 +192,9 @@ static void verify_allow_pstate_change_high(
REG_WRITE(DCHUBBUB_ARB_DRAM_STATE_CNTL, force_allow_pstate); REG_WRITE(DCHUBBUB_ARB_DRAM_STATE_CNTL, force_allow_pstate);
forced_pstate_allow = true; forced_pstate_allow = true;
dcn10_log_hw_state(DC_TO_CORE(hws->ctx->dc)); if (should_log_hw_state) {
dcn10_log_hw_state(DC_TO_CORE(hws->ctx->dc));
}
BREAK_TO_DEBUGGER(); BREAK_TO_DEBUGGER();
} }
......
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