xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/phl_rx_agg.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /******************************************************************************
2*4882a593Smuzhiyun  *
3*4882a593Smuzhiyun  * Copyright(c) 2019 Realtek Corporation.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or modify it
6*4882a593Smuzhiyun  * under the terms of version 2 of the GNU General Public License as
7*4882a593Smuzhiyun  * published by the Free Software Foundation.
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful, but WITHOUT
10*4882a593Smuzhiyun  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12*4882a593Smuzhiyun  * more details.
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  *****************************************************************************/
15*4882a593Smuzhiyun #ifndef _PHL_RX_AGG_H_
16*4882a593Smuzhiyun #define _PHL_RX_AGG_H_
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun /*
19*4882a593Smuzhiyun  * This value is used when removing a @phl_tid_ampdu_rx as a timeout value
20*4882a593Smuzhiyun  * wating for an event passed as an argument to _os_event_wait().  Note that the
21*4882a593Smuzhiyun  * timeout value 0 has a different meaning on Windows and Linux.  See the
22*4882a593Smuzhiyun  * implementation of _os_event_wait().
23*4882a593Smuzhiyun  */
24*4882a593Smuzhiyun #define PHL_REORDER_TIMER_SYNC_TO_MS 50
25*4882a593Smuzhiyun 
26*4882a593Smuzhiyun void phl_tid_ampdu_rx_free(struct phl_tid_ampdu_rx *r);
27*4882a593Smuzhiyun void phl_free_rx_reorder(struct phl_info_t *phl_info, struct rtw_phl_stainfo_t *sta);
28*4882a593Smuzhiyun struct phl_tid_ampdu_rx *phl_tid_ampdu_rx_alloc(struct phl_info_t *phl_info,
29*4882a593Smuzhiyun                                                 struct rtw_phl_stainfo_t *sta,
30*4882a593Smuzhiyun                                                 u16 timeout, u16 ssn, u16 tid,
31*4882a593Smuzhiyun                                                 u16 buf_size);
32*4882a593Smuzhiyun void phl_notify_reorder_sleep(void *phl, struct rtw_phl_stainfo_t *sta);
33*4882a593Smuzhiyun #endif /*_PHL_RX_AGG_H_*/
34