1 /****************************************************************************** 2 * 3 * Copyright(c) 2007 - 2017 Realtek Corporation. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of version 2 of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * 14 *****************************************************************************/ 15 16 #ifndef __RTW_RM_H_ 17 #define __RTW_RM_H_ 18 19 u8 rm_post_event_hdl(_adapter *padapter, u8 *pbuf); 20 21 #define RM_TIMER_NUM 32 22 #define RM_ALL_MEAS BIT(1) 23 #define RM_ID_FOR_ALL(aid) ((aid<<16)|RM_ALL_MEAS) 24 25 #define RM_CAP_ARG(x) ((u8 *)(x))[4], ((u8 *)(x))[3], ((u8 *)(x))[2], ((u8 *)(x))[1], ((u8 *)(x))[0] 26 #define RM_CAP_FMT "%02x %02x%02x %02x%02x" 27 28 #ifndef MIN 29 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) 30 #endif 31 32 /* remember to modify rm_event_name() when adding new event */ 33 enum RM_EV_ID { 34 RM_EV_state_in, 35 RM_EV_busy_timer_expire, 36 RM_EV_delay_timer_expire, 37 RM_EV_meas_timer_expire, 38 RM_EV_retry_timer_expire, 39 RM_EV_repeat_delay_expire, 40 RM_EV_request_timer_expire, 41 RM_EV_wait_report, 42 RM_EV_start_meas, 43 RM_EV_survey_done, 44 RM_EV_recv_rep, 45 RM_EV_cancel, 46 RM_EV_state_out, 47 RM_EV_max 48 }; 49 50 struct rm_event { 51 u32 rmid; 52 enum RM_EV_ID evid; 53 _list list; 54 }; 55 56 #ifdef CONFIG_RTW_80211K 57 58 struct rm_clock { 59 struct rm_obj *prm; 60 ATOMIC_T counter; 61 enum RM_EV_ID evid; 62 }; 63 64 struct rm_priv { 65 u8 enable; 66 _queue ev_queue; 67 _queue rm_queue; 68 _timer rm_timer; 69 70 struct rm_clock clock[RM_TIMER_NUM]; 71 u8 rm_en_cap_def[5]; 72 u8 rm_en_cap_assoc[5]; 73 74 /* rm debug */ 75 void *prm_sel; 76 }; 77 78 int rtw_init_rm(_adapter *padapter); 79 int rtw_free_rm_priv(_adapter *padapter); 80 81 unsigned int rm_on_action(_adapter *padapter, union recv_frame *precv_frame); 82 void RM_IE_handler(_adapter *padapter, PNDIS_802_11_VARIABLE_IEs pIE); 83 void rtw_ap_parse_sta_rm_en_cap(_adapter *padapter, 84 struct sta_info *psta, struct rtw_ieee802_11_elems *elems); 85 86 int rm_post_event(_adapter *padapter, u32 rmid, enum RM_EV_ID evid); 87 void rm_handler(_adapter *padapter, struct rm_event *pev); 88 89 u8 rm_add_nb_req(_adapter *padapter, struct sta_info *psta); 90 91 #endif /*CONFIG_RTW_80211K */ 92 void rm_update_cap(u8 *frame_head, _adapter *pa, u32 pktlen, int offset); 93 94 #endif /* __RTW_RM_H_ */ 95