Files
cubelinux-kernel/drivers/nvmem/stm32-bsec-optee-ta.h
T
Greg Kroah-Hartman 598cf27219 Linux 6.19.3
Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com>
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com>
Tested-by: Peter Schneider <pschneider1968@googlemail.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Salvatore Bonaccorso <carnil@debian.org>
Tested-by: Brett A C Sheffield <bacs@librecast.net>
Tested-by: Mark Brown <broonie@kernel.org>
Tested-by: Luna Jernberg <droidbittin@gmail.com>
Tested-by: Ronald Warsow <rwarsow@gmx.de>
Tested-by: Justin M. Forbes <jforbes@fedoraproject.org>
Tested-by: Ron Economos <re@w6rz.net>
Tested-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2026-02-19 16:33:27 +01:00

81 lines
2.1 KiB
C

/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* OP-TEE STM32MP BSEC PTA interface, used by STM32 ROMEM driver
*
* Copyright (C) 2022, STMicroelectronics - All Rights Reserved
*/
#if IS_ENABLED(CONFIG_NVMEM_STM32_BSEC_OPTEE_TA)
/**
* stm32_bsec_optee_ta_open() - initialize the STM32 BSEC TA
* @ctx: the OP-TEE context on success
*
* Return:
* On success, 0. On failure, -errno.
*/
int stm32_bsec_optee_ta_open(struct tee_context **ctx);
/**
* stm32_bsec_optee_ta_close() - release the STM32 BSEC TA
* @ctx: the OP-TEE context
*
* This function used to clean the OP-TEE resources initialized in
* stm32_bsec_optee_ta_open(); it can be used as callback to
* devm_add_action_or_reset()
*/
void stm32_bsec_optee_ta_close(void *ctx);
/**
* stm32_bsec_optee_ta_read() - nvmem read access using TA client driver
* @ctx: the OP-TEE context provided by stm32_bsec_optee_ta_open
* @offset: nvmem offset
* @buf: buffer to fill with nvem values
* @bytes: number of bytes to read
*
* Return:
* On success, 0. On failure, -errno.
*/
int stm32_bsec_optee_ta_read(struct tee_context *ctx, unsigned int offset,
void *buf, size_t bytes);
/**
* stm32_bsec_optee_ta_write() - nvmem write access using TA client driver
* @ctx: the OP-TEE context provided by stm32_bsec_optee_ta_open
* @lower: number of lower OTP, not protected by ECC
* @offset: nvmem offset
* @buf: buffer with nvem values
* @bytes: number of bytes to write
*
* Return:
* On success, 0. On failure, -errno.
*/
int stm32_bsec_optee_ta_write(struct tee_context *ctx, unsigned int lower,
unsigned int offset, void *buf, size_t bytes);
#else
static inline int stm32_bsec_optee_ta_open(struct tee_context **ctx)
{
return -EOPNOTSUPP;
}
static inline void stm32_bsec_optee_ta_close(void *ctx)
{
}
static inline int stm32_bsec_optee_ta_read(struct tee_context *ctx,
unsigned int offset, void *buf,
size_t bytes)
{
return -EOPNOTSUPP;
}
static inline int stm32_bsec_optee_ta_write(struct tee_context *ctx,
unsigned int lower,
unsigned int offset, void *buf,
size_t bytes)
{
return -EOPNOTSUPP;
}
#endif /* CONFIG_NVMEM_STM32_BSEC_OPTEE_TA */