// SPDX-License-Identifier: GPL-2.0-only /* * UFS Crypto ops QTI implementation. * * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved. */ #include #include #include #include #include "ufs-qcom.h" #define MINIMUM_DUN_SIZE 512 #define MAXIMUM_DUN_SIZE 65536 /* Blk-crypto modes supported by UFS crypto */ static const struct ufs_crypto_alg_entry { enum ufs_crypto_alg ufs_alg; enum ufs_crypto_key_size ufs_key_size; } ufs_crypto_algs[BLK_ENCRYPTION_MODE_MAX] = { [BLK_ENCRYPTION_MODE_AES_256_XTS] = { .ufs_alg = UFS_CRYPTO_ALG_AES_XTS, .ufs_key_size = UFS_CRYPTO_KEY_SIZE_256, }, }; static void get_mmio_data(struct ice_mmio_data *data, struct ufs_qcom_host *host) { data->ice_base_mmio = host->ice_mmio; #if (IS_ENABLED(CONFIG_QTI_HW_KEY_MANAGER) || IS_ENABLED(CONFIG_QTI_HW_KEY_MANAGER_V1)) data->ice_hwkm_mmio = host->ice_hwkm_mmio; #endif } static int ufshcd_crypto_qti_keyslot_program( struct blk_crypto_profile *profile, const struct blk_crypto_key *key, unsigned int slot) { struct ufs_hba *hba = container_of(profile, struct ufs_hba, crypto_profile); int err = 0; u8 data_unit_mask = -1; int cap_idx = -1; const union ufs_crypto_cap_entry *ccap_array = hba->crypto_cap_array; const struct ufs_crypto_alg_entry *alg; struct ufs_qcom_host *host = ufshcd_get_variant(hba); int i = 0; struct ice_mmio_data mmio_data; if (!key) { pr_err("Invalid/no key present\n"); return -EINVAL; } data_unit_mask = key->crypto_cfg.data_unit_size / MINIMUM_DUN_SIZE; alg = &ufs_crypto_algs[key->crypto_cfg.crypto_mode]; BUILD_BUG_ON(UFS_CRYPTO_KEY_SIZE_INVALID != 0); for (i = 0; i < hba->crypto_capabilities.num_crypto_cap; i++) { if (ccap_array[i].algorithm_id == alg->ufs_alg && ccap_array[i].key_size == alg->ufs_key_size && (ccap_array[i].sdus_mask & data_unit_mask)) { cap_idx = i; break; } } if (WARN_ON(cap_idx < 0)) return -EOPNOTSUPP; if (host->reset_in_progress) { pr_err("UFS host reset in progress, state = 0x%x\n", hba->ufshcd_state); return -EINVAL; } err = ufshcd_hold(hba, false); if (err) { pr_err("%s: failed to enable clocks, err %d\n", __func__, err); goto out; } get_mmio_data(&mmio_data, host); err = crypto_qti_keyslot_program(&mmio_data, key, slot, data_unit_mask, cap_idx, UFS_CE); if (err) pr_err("%s: failed with error %d\n", __func__, err); ufshcd_release(hba); out: return err; } static int ufshcd_crypto_qti_keyslot_evict( struct blk_crypto_profile *profile, const struct blk_crypto_key *key, unsigned int slot) { int err = 0; struct ufs_hba *hba = container_of(profile, struct ufs_hba, crypto_profile); struct ufs_qcom_host *host = ufshcd_get_variant(hba); struct ice_mmio_data mmio_data; if (host->reset_in_progress) { pr_err("UFS host reset in progress, state = 0x%x\n", hba->ufshcd_state); return -EINVAL; } err = ufshcd_hold(hba, false); if (err) { pr_err("%s: failed to enable clocks, err %d\n", __func__, err); return err; } get_mmio_data(&mmio_data, host); err = crypto_qti_keyslot_evict(&mmio_data, slot, UFS_CE); if (err) pr_err("%s: failed with error %d\n", __func__, err); ufshcd_release(hba); return err; } static int ufshcd_crypto_qti_derive_raw_secret( struct blk_crypto_profile *profile, const u8 *eph_key, size_t eph_key_size, u8 sw_secret[BLK_CRYPTO_SW_SECRET_SIZE]) { int err = 0; struct ufs_hba *hba = container_of(profile, struct ufs_hba, crypto_profile); struct ufs_qcom_host *host = ufshcd_get_variant(hba); struct ice_mmio_data mmio_data; if (host->reset_in_progress) { pr_err("UFS host reset in progress, state = 0x%x\n", hba->ufshcd_state); return -EINVAL; } err = ufshcd_hold(hba, false); if (err) { pr_err("%s: failed to enable clocks, err %d\n", __func__, err); return err; } get_mmio_data(&mmio_data, host); err = crypto_qti_derive_raw_secret(&mmio_data, eph_key, eph_key_size, sw_secret, BLK_CRYPTO_SW_SECRET_SIZE); if (err) pr_err("%s: failed with error %d\n", __func__, err); ufshcd_release(hba); return err; } static const struct blk_crypto_ll_ops ufshcd_qti_crypto_ops = { .keyslot_program = ufshcd_crypto_qti_keyslot_program, .keyslot_evict = ufshcd_crypto_qti_keyslot_evict, .derive_sw_secret = ufshcd_crypto_qti_derive_raw_secret, }; static enum blk_crypto_mode_num ufshcd_find_blk_crypto_mode(union ufs_crypto_cap_entry cap) { int i; for (i = 0; i < ARRAY_SIZE(ufs_crypto_algs); i++) { BUILD_BUG_ON(UFS_CRYPTO_KEY_SIZE_INVALID != 0); if (ufs_crypto_algs[i].ufs_alg == cap.algorithm_id && ufs_crypto_algs[i].ufs_key_size == cap.key_size) { return i; } } return BLK_ENCRYPTION_MODE_INVALID; } /** * ufshcd_hba_init_crypto_capabilities - Read crypto capabilities, init crypto * fields in hba * @hba: Per adapter instance * * Return: 0 if crypto was initialized or is not supported, else a -errno value. */ int ufshcd_qti_hba_init_crypto_capabilities(struct ufs_hba *hba) { int cap_idx; int err = 0; enum blk_crypto_mode_num blk_mode_num; /* * Don't use crypto if either the hardware doesn't advertise the * standard crypto capability bit *or* if the vendor specific driver * hasn't advertised that crypto is supported. */ if (!(ufshcd_readl(hba, REG_CONTROLLER_CAPABILITIES) & MASK_CRYPTO_SUPPORT)) goto out; if (!(hba->caps & UFSHCD_CAP_CRYPTO)) goto out; hba->crypto_capabilities.reg_val = cpu_to_le32(ufshcd_readl(hba, REG_UFS_CCAP)); hba->crypto_cfg_register = (u32)hba->crypto_capabilities.config_array_ptr * 0x100; hba->crypto_cap_array = devm_kcalloc(hba->dev, hba->crypto_capabilities.num_crypto_cap, sizeof(hba->crypto_cap_array[0]), GFP_KERNEL); if (!hba->crypto_cap_array) { err = -ENOMEM; goto out; } /* The actual number of configurations supported is (CFGC+1) */ err = devm_blk_crypto_profile_init(hba->dev, &hba->crypto_profile, hba->crypto_capabilities.config_count + 1); if (err) goto out; hba->crypto_profile.ll_ops = ufshcd_qti_crypto_ops; /* UFS only supports 8 bytes for any DUN */ hba->crypto_profile.max_dun_bytes_supported = 8; hba->crypto_profile.key_types_supported = BLK_CRYPTO_KEY_TYPE_HW_WRAPPED; hba->crypto_profile.dev = hba->dev; /* * Cache all the UFS crypto capabilities and advertise the supported * crypto modes and data unit sizes to the block layer. */ for (cap_idx = 0; cap_idx < hba->crypto_capabilities.num_crypto_cap; cap_idx++) { hba->crypto_cap_array[cap_idx].reg_val = cpu_to_le32(ufshcd_readl(hba, REG_UFS_CRYPTOCAP + cap_idx * sizeof(__le32))); blk_mode_num = ufshcd_find_blk_crypto_mode( hba->crypto_cap_array[cap_idx]); if (blk_mode_num != BLK_ENCRYPTION_MODE_INVALID) hba->crypto_profile.modes_supported[blk_mode_num] |= hba->crypto_cap_array[cap_idx].sdus_mask * 512; } return 0; out: /* Indicate that init failed by clearing UFSHCD_CAP_CRYPTO */ hba->caps &= ~UFSHCD_CAP_CRYPTO; return err; } EXPORT_SYMBOL(ufshcd_qti_hba_init_crypto_capabilities); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("UFS Crypto ops QTI implementation");