Commit 447f3d0f authored by Anthony Koo's avatar Anthony Koo Committed by Alex Deucher

drm/amd/display: [FW Promotion] Release 1.0.19

[Header Changes]
- Add debug flag for psr to use hw locking mgr state machine
Signed-off-by: default avatarAnthony Koo <Anthony.Koo@amd.com>
Acked-by: default avatarRodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent c797ede0
...@@ -36,10 +36,10 @@ ...@@ -36,10 +36,10 @@
/* Firmware versioning. */ /* Firmware versioning. */
#ifdef DMUB_EXPOSE_VERSION #ifdef DMUB_EXPOSE_VERSION
#define DMUB_FW_VERSION_GIT_HASH 0x67e8928df #define DMUB_FW_VERSION_GIT_HASH 0xf87bb940b
#define DMUB_FW_VERSION_MAJOR 1 #define DMUB_FW_VERSION_MAJOR 1
#define DMUB_FW_VERSION_MINOR 0 #define DMUB_FW_VERSION_MINOR 0
#define DMUB_FW_VERSION_REVISION 18 #define DMUB_FW_VERSION_REVISION 19
#define DMUB_FW_VERSION_UCODE ((DMUB_FW_VERSION_MAJOR << 24) | (DMUB_FW_VERSION_MINOR << 16) | DMUB_FW_VERSION_REVISION) #define DMUB_FW_VERSION_UCODE ((DMUB_FW_VERSION_MAJOR << 24) | (DMUB_FW_VERSION_MINOR << 16) | DMUB_FW_VERSION_REVISION)
#endif #endif
...@@ -86,10 +86,11 @@ union dmub_addr { ...@@ -86,10 +86,11 @@ union dmub_addr {
union dmub_psr_debug_flags { union dmub_psr_debug_flags {
struct { struct {
uint8_t visual_confirm : 1; uint32_t visual_confirm : 1;
uint32_t use_hw_lock_mgr : 1;
} bitfields; } bitfields;
unsigned int u32All; uint32_t u32All;
}; };
#if defined(__cplusplus) #if defined(__cplusplus)
......
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