Commit b129c94e authored by Anthony Koo's avatar Anthony Koo Committed by Alex Deucher
Browse files

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



- Add flag to control root clock gating in init_hw
- Add flag to indicate a diags environment is being used

Acked-by: default avatarAgustin Gutierrez <agustin.gutierrez@amd.com>
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarAnthony Koo <Anthony.Koo@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 8df219bb
Loading
Loading
Loading
Loading
+6 −3
Original line number Original line Diff line number Diff line
@@ -46,10 +46,10 @@


/* Firmware versioning. */
/* Firmware versioning. */
#ifdef DMUB_EXPOSE_VERSION
#ifdef DMUB_EXPOSE_VERSION
#define DMUB_FW_VERSION_GIT_HASH 0xd146258f
#define DMUB_FW_VERSION_GIT_HASH 0xdd808d7b
#define DMUB_FW_VERSION_MAJOR 0
#define DMUB_FW_VERSION_MAJOR 0
#define DMUB_FW_VERSION_MINOR 0
#define DMUB_FW_VERSION_MINOR 0
#define DMUB_FW_VERSION_REVISION 88
#define DMUB_FW_VERSION_REVISION 89
#define DMUB_FW_VERSION_TEST 0
#define DMUB_FW_VERSION_TEST 0
#define DMUB_FW_VERSION_VBIOS 0
#define DMUB_FW_VERSION_VBIOS 0
#define DMUB_FW_VERSION_HOTFIX 0
#define DMUB_FW_VERSION_HOTFIX 0
@@ -371,7 +371,10 @@ union dmub_fw_boot_options {
		uint32_t enable_dpia: 1; /**< 1 if DPIA should be enabled */
		uint32_t enable_dpia: 1; /**< 1 if DPIA should be enabled */
		uint32_t invalid_vbios_data: 1; /**< 1 if VBIOS data table is invalid */
		uint32_t invalid_vbios_data: 1; /**< 1 if VBIOS data table is invalid */
		uint32_t reserved_unreleased2: 1; /**< reserved for an unreleased feature */
		uint32_t reserved_unreleased2: 1; /**< reserved for an unreleased feature */
		uint32_t reserved : 22; /**< reserved */
		uint32_t root_clock_gating: 1; /**< 1 if all root clock gating is enabled */
		uint32_t diag_env: 1; /* 1 if diagnostic environment */

		uint32_t reserved : 19; /**< reserved */
	} bits; /**< boot bits */
	} bits; /**< boot bits */
	uint32_t all; /**< 32-bit access to bits */
	uint32_t all; /**< 32-bit access to bits */
};
};