blob: 8778ca5ca200ffb104fbf45c9dc8a3a3db7c9993 [file] [log] [blame]
Duy Truonge833aca2013-02-12 13:35:08 -08001/* Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002 *
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
14/* Qualcomm Crypto Engine driver OTA APIi */
15
16#ifndef __CRYPTO_MSM_QCE_OTA_H
17#define __CRYPTO_MSM_QCE_OTA_H
18
19#include <linux/platform_device.h>
20#include <linux/qcota.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070021
22
23int qce_f8_req(void *handle, struct qce_f8_req *req,
24 void *cookie, qce_comp_func_ptr_t qce_cb);
25int qce_f8_multi_pkt_req(void *handle, struct qce_f8_multi_pkt_req *req,
26 void *cookie, qce_comp_func_ptr_t qce_cb);
27int qce_f9_req(void *handle, struct qce_f9_req *req,
28 void *cookie, qce_comp_func_ptr_t qce_cb);
29
30#endif /* __CRYPTO_MSM_QCE_OTA_H */