2023-04-07 13:50:26 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2023, Linaro Limited
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __QCOM_ICE_H__
|
|
|
|
#define __QCOM_ICE_H__
|
|
|
|
|
2025-04-04 16:15:30 -07:00
|
|
|
#include <linux/blk-crypto.h>
|
2023-04-07 13:50:26 +03:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
struct qcom_ice;
|
|
|
|
|
|
|
|
int qcom_ice_enable(struct qcom_ice *ice);
|
|
|
|
int qcom_ice_resume(struct qcom_ice *ice);
|
|
|
|
int qcom_ice_suspend(struct qcom_ice *ice);
|
2025-04-04 16:15:30 -07:00
|
|
|
int qcom_ice_program_key(struct qcom_ice *ice, unsigned int slot,
|
|
|
|
const struct blk_crypto_key *blk_key);
|
2023-04-07 13:50:26 +03:00
|
|
|
int qcom_ice_evict_key(struct qcom_ice *ice, int slot);
|
2025-04-04 16:15:31 -07:00
|
|
|
enum blk_crypto_key_type qcom_ice_get_supported_key_type(struct qcom_ice *ice);
|
|
|
|
int qcom_ice_derive_sw_secret(struct qcom_ice *ice,
|
|
|
|
const u8 *eph_key, size_t eph_key_size,
|
|
|
|
u8 sw_secret[BLK_CRYPTO_SW_SECRET_SIZE]);
|
|
|
|
int qcom_ice_generate_key(struct qcom_ice *ice,
|
|
|
|
u8 lt_key[BLK_CRYPTO_MAX_HW_WRAPPED_KEY_SIZE]);
|
|
|
|
int qcom_ice_prepare_key(struct qcom_ice *ice,
|
|
|
|
const u8 *lt_key, size_t lt_key_size,
|
|
|
|
u8 eph_key[BLK_CRYPTO_MAX_HW_WRAPPED_KEY_SIZE]);
|
|
|
|
int qcom_ice_import_key(struct qcom_ice *ice,
|
|
|
|
const u8 *raw_key, size_t raw_key_size,
|
|
|
|
u8 lt_key[BLK_CRYPTO_MAX_HW_WRAPPED_KEY_SIZE]);
|
2025-01-17 14:18:50 +00:00
|
|
|
struct qcom_ice *devm_of_qcom_ice_get(struct device *dev);
|
|
|
|
|
2023-04-07 13:50:26 +03:00
|
|
|
#endif /* __QCOM_ICE_H__ */
|