1*5113495bSYour Name /* 2*5113495bSYour Name * Copyright (c) 2018 The Linux Foundation. All rights reserved. 3*5113495bSYour Name * 4*5113495bSYour Name * Permission to use, copy, modify, and/or distribute this software for 5*5113495bSYour Name * any purpose with or without fee is hereby granted, provided that the 6*5113495bSYour Name * above copyright notice and this permission notice appear in all 7*5113495bSYour Name * copies. 8*5113495bSYour Name * 9*5113495bSYour Name * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 10*5113495bSYour Name * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 11*5113495bSYour Name * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE 12*5113495bSYour Name * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL 13*5113495bSYour Name * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 14*5113495bSYour Name * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 15*5113495bSYour Name * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 16*5113495bSYour Name * PERFORMANCE OF THIS SOFTWARE. 17*5113495bSYour Name */ 18*5113495bSYour Name /** 19*5113495bSYour Name * DOC: Declare public API for disa to interact with target/WMI 20*5113495bSYour Name */ 21*5113495bSYour Name 22*5113495bSYour Name #ifndef _WLAN_DISA_TGT_API_H_ 23*5113495bSYour Name #define _WLAN_DISA_TGT_API_H_ 24*5113495bSYour Name 25*5113495bSYour Name #include <qdf_types.h> 26*5113495bSYour Name 27*5113495bSYour Name struct wlan_objmgr_psoc; 28*5113495bSYour Name struct disa_encrypt_decrypt_req_params; 29*5113495bSYour Name struct disa_encrypt_decrypt_resp_params; 30*5113495bSYour Name 31*5113495bSYour Name #define GET_DISA_TX_OPS_FROM_PSOC(psoc) \ 32*5113495bSYour Name (&disa_psoc_get_priv(psoc)->disa_tx_ops) 33*5113495bSYour Name 34*5113495bSYour Name /** 35*5113495bSYour Name * tgt_disa_encrypt_decrypt_req() - send encrypt/decrypt request to target if 36*5113495bSYour Name * @psoc: objmgr psoc object 37*5113495bSYour Name * @req: encrypt/decrypt parameters 38*5113495bSYour Name * 39*5113495bSYour Name * Return: QDF_STATUS 40*5113495bSYour Name */ 41*5113495bSYour Name QDF_STATUS tgt_disa_encrypt_decrypt_req(struct wlan_objmgr_psoc *psoc, 42*5113495bSYour Name struct disa_encrypt_decrypt_req_params *req); 43*5113495bSYour Name 44*5113495bSYour Name /** 45*5113495bSYour Name * tgt_disa_encrypt_decrypt_resp() - receive encrypt/decrypt response 46*5113495bSYour Name * from target if 47*5113495bSYour Name * @psoc: objmgr psoc object 48*5113495bSYour Name * @resp: encrypt/decrypt response containing results 49*5113495bSYour Name * 50*5113495bSYour Name * Return: QDF_STATUS 51*5113495bSYour Name */ 52*5113495bSYour Name QDF_STATUS tgt_disa_encrypt_decrypt_resp(struct wlan_objmgr_psoc *psoc, 53*5113495bSYour Name struct disa_encrypt_decrypt_resp_params *resp); 54*5113495bSYour Name 55*5113495bSYour Name /** 56*5113495bSYour Name * tgt_disa_register_ev_handlers() - API to register disa event handlers 57*5113495bSYour Name * @psoc: objmgr psoc object 58*5113495bSYour Name * 59*5113495bSYour Name * Return: QDF_STATUS_SUCCESS in case of success else return error 60*5113495bSYour Name */ 61*5113495bSYour Name QDF_STATUS tgt_disa_register_ev_handlers(struct wlan_objmgr_psoc *psoc); 62*5113495bSYour Name 63*5113495bSYour Name /** 64*5113495bSYour Name * tgt_disa_unregister_ev_handlers() - API to unregister disa event handlers 65*5113495bSYour Name * @psoc: objmgr psoc object 66*5113495bSYour Name * 67*5113495bSYour Name * Return: QDF_STATUS_SUCCESS in case of success else return error 68*5113495bSYour Name */ 69*5113495bSYour Name QDF_STATUS tgt_disa_unregister_ev_handlers(struct wlan_objmgr_psoc *psoc); 70*5113495bSYour Name 71*5113495bSYour Name #endif /* end of _WLAN_DISA_TGT_API_H_ */ 72