diff options
| author | Josip Pavic <[email protected]> | 2019-01-08 19:43:10 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2019-01-25 21:15:36 +0000 |
| commit | 07772b0715122222d5a3669fd794ac817ee1617c (patch) | |
| tree | 79c318ad3b32c8d5c4620499350922083dd1b75f /drivers/gpu/drm/amd/display/dc/inc/hw | |
| parent | drm/amd/display: Know what a pageflip is (diff) | |
| download | kernel-07772b0715122222d5a3669fd794ac817ee1617c.tar.gz kernel-07772b0715122222d5a3669fd794ac817ee1617c.zip | |
drm/amd/display: Update DMCU versioning mechanism
[Why]
Current date based versioning doesn't tell us about feature version
and build version, and is not useful for debug.
[How]
Add versioning based on feature and build
Signed-off-by: Josip Pavic <[email protected]>
Reviewed-by: Anthony Koo <[email protected]>
Acked-by: Leo Li <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/inc/hw')
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/inc/hw/dmcu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/inc/hw/dmcu.h b/drivers/gpu/drm/amd/display/dc/inc/hw/dmcu.h index ed32a7503684..cbaa43853611 100644 --- a/drivers/gpu/drm/amd/display/dc/inc/hw/dmcu.h +++ b/drivers/gpu/drm/amd/display/dc/inc/hw/dmcu.h @@ -39,10 +39,10 @@ enum dmcu_state { }; struct dmcu_version { - unsigned int date; - unsigned int month; - unsigned int year; unsigned int interface_version; + unsigned int abm_version; + unsigned int psr_version; + unsigned int build_version; }; struct dmcu { |
