/drivers/net/wireless/tiwlan1251/common/src/TNETW_Driver/FW_Transfer/inc/eventMbox_api.h
http://github.com/CyanogenMod/cm-kernel · C Header · 78 lines · 17 code · 8 blank · 53 comment · 0 complexity · 4aa5a6bc83144b5e410eb5d9249f24d2 MD5 · raw file
- /****************************************************************************
- **+-----------------------------------------------------------------------+**
- **| |**
- **| Copyright(c) 1998 - 2008 Texas Instruments. All rights reserved. |**
- **| All rights reserved. |**
- **| |**
- **| Redistribution and use in source and binary forms, with or without |**
- **| modification, are permitted provided that the following conditions |**
- **| are met: |**
- **| |**
- **| * Redistributions of source code must retain the above copyright |**
- **| notice, this list of conditions and the following disclaimer. |**
- **| * Redistributions in binary form must reproduce the above copyright |**
- **| notice, this list of conditions and the following disclaimer in |**
- **| the documentation and/or other materials provided with the |**
- **| distribution. |**
- **| * Neither the name Texas Instruments nor the names of its |**
- **| contributors may be used to endorse or promote products derived |**
- **| from this software without specific prior written permission. |**
- **| |**
- **| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |**
- **| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |**
- **| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |**
- **| A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |**
- **| OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |**
- **| SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |**
- **| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |**
- **| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |**
- **| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |**
- **| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |**
- **| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |**
- **| |**
- **+-----------------------------------------------------------------------+**
- ****************************************************************************/
- /****************************************************************************
- *
- * MODULE: eventMbox_api.h : event Mail Box API
- * PURPOSE: Notify EventMbox in case of an incoming event from the FW
- *
- ****************************************************************************/
- #ifndef _EVENT_MBOX_API_H
- #define _EVENT_MBOX_API_H
- /*
- * whal_hwMboxDataEvCB : This Call back is for EventMbox Client
- * that expect an event with Data associated
- * str: The Data String
- * strLen : The Length of the Data
- */
- typedef void (*whal_hwMboxDataEvCB)(void *pObj, char* str, UINT32 strLen);
- /*
- * whal_hwMboxDataEvCB : This Call back is for EventMbox Client
- * that expect an event without any Data
- */
- typedef void (*whal_hwMboxEvCB)(void *pObj);
- /*****************************************************************************
- ** API **
- *****************************************************************************/
- TI_HANDLE eventMbox_Create (TI_HANDLE hOs);
- void eventMbox_Destroy (TI_HANDLE hEventMbox);
- void eventMbox_Config (TI_HANDLE hEventMbox, TI_HANDLE hTNETWIF, TI_HANDLE hHwIntr,
- TI_HANDLE hReport, TI_HANDLE hFwEvent, TI_HANDLE hWhalCtrl);
- TI_STATUS eventMbox_ConfigHw (TI_HANDLE hEventMbox, UINT8 module_id, fnotify_t fCb, TI_HANDLE hCb);
- void eventMbox_InitComplete (TI_HANDLE hEventMbox);
- int eventMbox_RegisterEventCB (TI_HANDLE hEventMbox, UINT32 EvID, void* CbFunc, TI_HANDLE CbObj);
- TI_STATUS eventMbox_Event (TI_HANDLE hEventMbox);
- int eventMbox_EvMask (TI_HANDLE hEventMbox, UINT32 EvID);
- int eventMbox_EvUnMask (TI_HANDLE hEventMbox, UINT32 EvID);
- void eventMbox_Print (TI_HANDLE hEventMbox);
- int eventMbox_Stop(TI_HANDLE hEventMbox);
- #endif /* _EVENT_MBOX_API_H */