blob: 06752ef4df40ce68db627cbdff50438568276c05 [file] [log] [blame]
Yann Gautier52448ab2019-01-17 14:53:24 +01001/*
2 * Copyright (c) 2016-2019, STMicroelectronics - All Rights Reserved
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef BSEC_SVC_H
8#define BSEC_SVC_H
9
10#include <stdint.h>
11
12/* version of this service */
13/* must be increase at each structure modification */
14#define BSEC_SERVICE_VERSION 0x01U
15
16uint32_t bsec_main(uint32_t x1, uint32_t x2, uint32_t x3,
17 uint32_t *ret_otp_value);
18
19#endif /* BSEC_SVC_H */