Commit 5adc673c authored by Wyatt Wood's avatar Wyatt Wood Committed by Alex Deucher
Browse files

drm/amd/display: Fix DMUB PSR command IDs



[Why]
The DMUB PSR command IDs do not have the correct values.

[How]
Fix the command IDs and cleanup the formatting.

Signed-off-by: default avatarWyatt Wood <wyatt.wood@amd.com>
Reviewed-by: default avatarAric Cyr <Aric.Cyr@amd.com>
Acked-by: default avatarHarry Wentland <harry.wentland@amd.com>
Acked-by: default avatarRodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 22aa5614
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -32,16 +32,17 @@
 */

enum dmub_cmd_psr_type {
	DMUB_CMD__PSR_ENABLE = 0,
	DMUB_CMD__PSR_DISABLE = 1,
	DMUB_CMD__PSR_COPY_SETTINGS = 2,
	DMUB_CMD__PSR_SET_LEVEL = 3,
	DMUB_CMD__PSR_SETUP = 4,
	DMUB_CMD__PSR_SETUP		= 0,
	DMUB_CMD__PSR_COPY_SETTINGS	= 1,
	DMUB_CMD__PSR_ENABLE		= 2,
	DMUB_CMD__PSR_DISABLE		= 3,
	DMUB_CMD__PSR_SET_LEVEL		= 4,
};

enum psr_version {
	PSR_VERSION_1 = 0x0,
	PSR_VERSION_2 = 0x10,
	PSR_VERSION_1			= 0x10, // PSR Version 1
	PSR_VERSION_2			= 0x20, // PSR Version 2, includes selective update
	PSR_VERSION_2_Y_COORD		= 0x21, // PSR Version 2, includes Y-coordinate support for SU
};

#endif /* _DMUB_CMD_DAL_H_ */