@@ -118,7 +118,7 @@ static int ufshcd_crypto_keyslot_evict(struct blk_crypto_profile *profile,
bool ufshcd_crypto_enable(struct ufs_hba *hba)
{
- if (!(hba->caps & UFSHCD_CAP_CRYPTO))
+ if (!ufshcd_is_crypto_supported(hba))
return false;
/* Reset might clear all keys, so reprogram all the keys. */
@@ -165,7 +165,7 @@ int ufshcd_hba_init_crypto_capabilities(struct ufs_hba *hba)
* hasn't advertised that crypto is supported.
*/
if (!(hba->capabilities & MASK_CRYPTO_SUPPORT) ||
- !(hba->caps & UFSHCD_CAP_CRYPTO))
+ !ufshcd_is_crypto_supported(hba))
goto out;
hba->crypto_capabilities.reg_val =
@@ -225,7 +225,7 @@ void ufshcd_init_crypto(struct ufs_hba *hba)
{
int slot;
- if (!(hba->caps & UFSHCD_CAP_CRYPTO))
+ if (!ufshcd_is_crypto_supported(hba))
return;
/* Clear all keyslots - the number of keyslots is (CFGC + 1) */
@@ -235,6 +235,6 @@ void ufshcd_init_crypto(struct ufs_hba *hba)
void ufshcd_crypto_register(struct ufs_hba *hba, struct request_queue *q)
{
- if (hba->caps & UFSHCD_CAP_CRYPTO)
+ if (ufshcd_is_crypto_supported(hba))
blk_crypto_register(&hba->crypto_profile, q);
}
@@ -182,7 +182,7 @@ static int ufs_mtk_hce_enable_notify(struct ufs_hba *hba,
ufs_mtk_host_reset(hba);
}
- if (hba->caps & UFSHCD_CAP_CRYPTO)
+ if (ufshcd_is_crypto_supported(hba))
ufs_mtk_crypto_enable(hba);
if (host->caps & UFS_MTK_CAP_DISABLE_AH8) {
@@ -161,7 +161,7 @@ static void qcom_ice_optimization_enable(struct ufs_qcom_host *host)
int ufs_qcom_ice_enable(struct ufs_qcom_host *host)
{
- if (!(host->hba->caps & UFSHCD_CAP_CRYPTO))
+ if (!ufshcd_is_crypto_supported(host->hba))
return 0;
qcom_ice_low_power_mode_enable(host);
qcom_ice_optimization_enable(host);
@@ -189,7 +189,7 @@ int ufs_qcom_ice_resume(struct ufs_qcom_host *host)
{
int err;
- if (!(host->hba->caps & UFSHCD_CAP_CRYPTO))
+ if (!ufshcd_is_crypto_supported(host->hba))
return 0;
err = qcom_ice_wait_bist_status(host);
@@ -89,7 +89,7 @@ static int ufs_intel_hce_enable_notify(struct ufs_hba *hba,
enum ufs_notify_change_status status)
{
/* Cannot enable ICE until after HC enable */
- if (status == POST_CHANGE && hba->caps & UFSHCD_CAP_CRYPTO) {
+ if (status == POST_CHANGE && ufshcd_is_crypto_supported(hba)) {
u32 hce = ufshcd_readl(hba, REG_CONTROLLER_ENABLE);
hce |= CRYPTO_GENERAL_ENABLE;
@@ -1005,6 +1005,11 @@ static inline bool ufshcd_is_wb_allowed(struct ufs_hba *hba)
return hba->caps & UFSHCD_CAP_WB_EN;
}
+static inline bool ufshcd_is_crypto_supported(struct ufs_hba *hba)
+{
+ return hba->caps & UFSHCD_CAP_CRYPTO;
+}
+
#define ufshcd_writel(hba, val, reg) \
writel((val), (hba)->mmio_base + (reg))
#define ufshcd_readl(hba, reg) \
To align with other capability check functions. Signed-off-by: Daniil Lunev <dlunev@chromium.org> drivers/ufs/core/ufshcd-crypto.c | 8 ++++---- drivers/ufs/host/ufs-mediatek.c | 2 +- drivers/ufs/host/ufs-qcom-ice.c | 4 ++-- drivers/ufs/host/ufshcd-pci.c | 2 +- include/ufs/ufshcd.h | 5 +++++ 5 files changed, 13 insertions(+), 8 deletions(-)