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

| [Header Changes]
|       - Reworked the FW versioning to include hotfix
|         and test bits

Signed-off-by: Anthony Koo <Anthony.Koo@amd.com>
Acked-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Anthony Koo 2020-07-24 21:37:56 -04:00 committed by Alex Deucher
parent 4453fbec10
commit ded750e6fa
1 changed files with 12 additions and 3 deletions

View File

@ -36,11 +36,20 @@
/* Firmware versioning. */
#ifdef DMUB_EXPOSE_VERSION
#define DMUB_FW_VERSION_GIT_HASH 0x636e7b294
#define DMUB_FW_VERSION_GIT_HASH 0xd7f4bb6ee
#define DMUB_FW_VERSION_MAJOR 0
#define DMUB_FW_VERSION_MINOR 0
#define DMUB_FW_VERSION_REVISION 26
#define DMUB_FW_VERSION_UCODE ((DMUB_FW_VERSION_MAJOR << 24) | (DMUB_FW_VERSION_MINOR << 16) | DMUB_FW_VERSION_REVISION)
#define DMUB_FW_VERSION_REVISION 27
#define DMUB_FW_VERSION_TEST 0
#define DMUB_FW_VERSION_VBIOS 0
#define DMUB_FW_VERSION_HOTFIX 0
#define DMUB_FW_VERSION_UCODE (((DMUB_FW_VERSION_MAJOR & 0xFF) << 24) | \
((DMUB_FW_VERSION_MINOR & 0xFF) << 16) | \
((DMUB_FW_VERSION_REVISION & 0xFF) << 8) | \
((DMUB_FW_VERSION_TEST & 0x1) << 7) | \
((DMUB_FW_VERSION_VBIOS & 0x1) << 6) | \
(DMUB_FW_VERSION_HOTFIX & 0x3F))
#endif
//<DMUB_TYPES>==================================================================