bsec_svc.h 416 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2016-2019, STMicroelectronics - All Rights Reserved
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef BSEC_SVC_H
  7. #define BSEC_SVC_H
  8. #include <stdint.h>
  9. /* version of this service */
  10. /* must be increase at each structure modification */
  11. #define BSEC_SERVICE_VERSION 0x01U
  12. uint32_t bsec_main(uint32_t x1, uint32_t x2, uint32_t x3,
  13. uint32_t *ret_otp_value);
  14. #endif /* BSEC_SVC_H */