1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright 2018 NXP 3 * 4 */ 5 6 #ifndef _DPAA2_SEC_EVENT_H_ 7 #define _DPAA2_SEC_EVENT_H_ 8 9 #include <rte_compat.h> 10 11 __rte_internal 12 int dpaa2_sec_eventq_attach(const struct rte_cryptodev *dev, 13 int qp_id, 14 struct dpaa2_dpcon_dev *dpcon, 15 const struct rte_event *event); 16 17 __rte_internal 18 int dpaa2_sec_eventq_detach(const struct rte_cryptodev *dev, 19 int qp_id); 20 21 #endif /* _DPAA2_SEC_EVENT_H_ */ 22