提交 b7d485df 编写于 作者: E Evan Quan 提交者: Alex Deucher

drm/amd/powerplay: fix the confusing ppfeature mask calculations

Simplify the ppfeature mask calculations.
Signed-off-by: NEvan Quan <evan.quan@amd.com>
Reviewed-by: NKenneth Feng <kenneth.feng@amd.com>
Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
上级 6a7a20ed
......@@ -4407,9 +4407,9 @@ static int vega10_set_ppfeature_status(struct pp_hwmgr *hwmgr, uint64_t new_ppfe
return ret;
features_to_disable =
(features_enabled ^ new_ppfeature_masks) & features_enabled;
features_enabled & ~new_ppfeature_masks;
features_to_enable =
(features_enabled ^ new_ppfeature_masks) ^ features_to_disable;
~features_enabled & new_ppfeature_masks;
pr_debug("features_to_disable 0x%llx\n", features_to_disable);
pr_debug("features_to_enable 0x%llx\n", features_to_enable);
......
......@@ -2009,9 +2009,9 @@ static int vega12_set_ppfeature_status(struct pp_hwmgr *hwmgr, uint64_t new_ppfe
return ret;
features_to_disable =
(features_enabled ^ new_ppfeature_masks) & features_enabled;
features_enabled & ~new_ppfeature_masks;
features_to_enable =
(features_enabled ^ new_ppfeature_masks) ^ features_to_disable;
~features_enabled & new_ppfeature_masks;
pr_debug("features_to_disable 0x%llx\n", features_to_disable);
pr_debug("features_to_enable 0x%llx\n", features_to_enable);
......
......@@ -3084,9 +3084,9 @@ static int vega20_set_ppfeature_status(struct pp_hwmgr *hwmgr, uint64_t new_ppfe
return ret;
features_to_disable =
(features_enabled ^ new_ppfeature_masks) & features_enabled;
features_enabled & ~new_ppfeature_masks;
features_to_enable =
(features_enabled ^ new_ppfeature_masks) ^ features_to_disable;
~features_enabled & new_ppfeature_masks;
pr_debug("features_to_disable 0x%llx\n", features_to_disable);
pr_debug("features_to_enable 0x%llx\n", features_to_enable);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册