Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

Acked-by: Wayne Lin <wayne.lin@amd.com>
Signed-off-by: Anthony Koo <Anthony.Koo@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Anthony Koo and committed by
Alex Deucher
01934c30 96160687

+12 -2
+12 -2
drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h
··· 47 47 48 48 /* Firmware versioning. */ 49 49 #ifdef DMUB_EXPOSE_VERSION 50 - #define DMUB_FW_VERSION_GIT_HASH 0x9b7fa7783 50 + #define DMUB_FW_VERSION_GIT_HASH 0x7383caadc 51 51 #define DMUB_FW_VERSION_MAJOR 0 52 52 #define DMUB_FW_VERSION_MINOR 0 53 - #define DMUB_FW_VERSION_REVISION 78 53 + #define DMUB_FW_VERSION_REVISION 79 54 54 #define DMUB_FW_VERSION_TEST 0 55 55 #define DMUB_FW_VERSION_VBIOS 0 56 56 #define DMUB_FW_VERSION_HOTFIX 0 ··· 322 322 uint32_t mailbox_rdy : 1; /**< 1 if mailbox ready */ 323 323 uint32_t optimized_init_done : 1; /**< 1 if optimized init done */ 324 324 uint32_t restore_required : 1; /**< 1 if driver should call restore */ 325 + uint32_t defer_load : 1; /**< 1 if VBIOS data is deferred programmed */ 326 + uint32_t reserved : 1; 327 + uint32_t detection_required: 1; /**< if detection need to be triggered by driver */ 328 + 325 329 } bits; /**< status bits */ 326 330 uint32_t all; /**< 32-bit access to status bits */ 327 331 }; ··· 339 335 DMUB_FW_BOOT_STATUS_BIT_OPTIMIZED_INIT_DONE = (1 << 2), /**< 1 if init done */ 340 336 DMUB_FW_BOOT_STATUS_BIT_RESTORE_REQUIRED = (1 << 3), /**< 1 if driver should call restore */ 341 337 DMUB_FW_BOOT_STATUS_BIT_DEFERRED_LOADED = (1 << 4), /**< 1 if VBIOS data is deferred programmed */ 338 + DMUB_FW_BOOT_STATUS_BIT_DETECTION_REQUIRED = (1 << 6), /**< 1 if detection need to be triggered by driver*/ 342 339 }; 343 340 344 341 /* Register bit definition for SCRATCH5 */ ··· 494 489 * RETURN: PSR residency in milli-percent. 495 490 */ 496 491 DMUB_GPINT__PSR_RESIDENCY = 9, 492 + 493 + /** 494 + * DESC: Notifies DMCUB detection is done so detection required can be cleared. 495 + */ 496 + DMUB_GPINT__NOTIFY_DETECTION_DONE = 12, 497 497 }; 498 498 499 499 /**