diff options
author | Anthony Koo <Anthony.Koo@amd.com> | 2020-06-12 19:48:56 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-07-01 01:59:26 -0400 |
commit | 447f3d0f387b1048295d58832b0e041a3ed67df8 (patch) | |
tree | 8cdc007741d03f4aeb558112506903a32643a462 | |
parent | c797ede0ec89f1bbf97fc73823c3bc37473854e3 (diff) |
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: Anthony Koo <Anthony.Koo@amd.com>
Acked-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h b/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h index 96e1379c4cf8..68b5fd811d26 100644 --- a/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h +++ b/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h @@ -36,10 +36,10 @@ /* Firmware versioning. */ #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_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) #endif @@ -86,10 +86,11 @@ union dmub_addr { union dmub_psr_debug_flags { struct { - uint8_t visual_confirm : 1; + uint32_t visual_confirm : 1; + uint32_t use_hw_lock_mgr : 1; } bitfields; - unsigned int u32All; + uint32_t u32All; }; #if defined(__cplusplus) |