1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NITROX_COMMON_H
3 #define __NITROX_COMMON_H
5 #include "nitrox_dev.h"
6 #include "nitrox_req.h"
8 int nitrox_crypto_register(void);
9 void nitrox_crypto_unregister(void);
10 int nitrox_register_aeads(void);
11 void nitrox_unregister_aeads(void);
12 int nitrox_register_skciphers(void);
13 void nitrox_unregister_skciphers(void);
14 void *crypto_alloc_context(struct nitrox_device
*ndev
);
15 void crypto_free_context(void *ctx
);
16 struct nitrox_device
*nitrox_get_first_device(void);
17 void nitrox_put_device(struct nitrox_device
*ndev
);
19 int nitrox_common_sw_init(struct nitrox_device
*ndev
);
20 void nitrox_common_sw_cleanup(struct nitrox_device
*ndev
);
22 void pkt_slc_resp_tasklet(unsigned long data
);
23 int nitrox_process_se_request(struct nitrox_device
*ndev
,
24 struct se_crypto_request
*req
,
27 void backlog_qflush_work(struct work_struct
*work
);
30 #endif /* __NITROX_COMMON_H */