Yann Gautier | 52448ab | 2019-01-17 14:53:24 +0100 | [diff] [blame] | 1 | /* |
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 | |||||
16 | uint32_t bsec_main(uint32_t x1, uint32_t x2, uint32_t x3, | ||||
17 | uint32_t *ret_otp_value); | ||||
18 | |||||
19 | #endif /* BSEC_SVC_H */ |