qce_ota.h 1.0 KB

123456789101112131415161718192021222324252627282930
  1. /* Copyright (c) 2010-2017, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. */
  13. /* QTI Crypto Engine driver OTA APIi */
  14. #ifndef __CRYPTO_MSM_QCE_OTA_H
  15. #define __CRYPTO_MSM_QCE_OTA_H
  16. #include <linux/platform_device.h>
  17. #include <linux/qcota.h>
  18. int qce_f8_req(void *handle, struct qce_f8_req *req,
  19. void *cookie, qce_comp_func_ptr_t qce_cb);
  20. int qce_f8_multi_pkt_req(void *handle, struct qce_f8_multi_pkt_req *req,
  21. void *cookie, qce_comp_func_ptr_t qce_cb);
  22. int qce_f9_req(void *handle, struct qce_f9_req *req,
  23. void *cookie, qce_comp_func_ptr_t qce_cb);
  24. #endif /* __CRYPTO_MSM_QCE_OTA_H */