aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ath6kl/include/wmi_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/ath6kl/include/wmi_api.h')
-rw-r--r--drivers/staging/ath6kl/include/wmi_api.h169
1 files changed, 84 insertions, 85 deletions
diff --git a/drivers/staging/ath6kl/include/wmi_api.h b/drivers/staging/ath6kl/include/wmi_api.h
index ae720a07320..3f622100e9b 100644
--- a/drivers/staging/ath6kl/include/wmi_api.h
+++ b/drivers/staging/ath6kl/include/wmi_api.h
@@ -69,9 +69,9 @@ void wmi_qos_state_init(struct wmi_t *wmip);
69void wmi_shutdown(struct wmi_t *wmip); 69void wmi_shutdown(struct wmi_t *wmip);
70HTC_ENDPOINT_ID wmi_get_control_ep(struct wmi_t * wmip); 70HTC_ENDPOINT_ID wmi_get_control_ep(struct wmi_t * wmip);
71void wmi_set_control_ep(struct wmi_t * wmip, HTC_ENDPOINT_ID eid); 71void wmi_set_control_ep(struct wmi_t * wmip, HTC_ENDPOINT_ID eid);
72A_UINT16 wmi_get_mapped_qos_queue(struct wmi_t *, A_UINT8); 72A_UINT16 wmi_get_mapped_qos_queue(struct wmi_t *, u8 );
73int wmi_dix_2_dot3(struct wmi_t *wmip, void *osbuf); 73int wmi_dix_2_dot3(struct wmi_t *wmip, void *osbuf);
74int wmi_data_hdr_add(struct wmi_t *wmip, void *osbuf, A_UINT8 msgType, bool bMoreData, WMI_DATA_HDR_DATA_TYPE data_type,A_UINT8 metaVersion, void *pTxMetaS); 74int wmi_data_hdr_add(struct wmi_t *wmip, void *osbuf, u8 msgType, bool bMoreData, WMI_DATA_HDR_DATA_TYPE data_type,u8 metaVersion, void *pTxMetaS);
75int wmi_dot3_2_dix(void *osbuf); 75int wmi_dot3_2_dix(void *osbuf);
76 76
77int wmi_dot11_hdr_remove (struct wmi_t *wmip, void *osbuf); 77int wmi_dot11_hdr_remove (struct wmi_t *wmip, void *osbuf);
@@ -80,15 +80,15 @@ int wmi_dot11_hdr_add(struct wmi_t *wmip, void *osbuf, NETWORK_TYPE mode);
80int wmi_data_hdr_remove(struct wmi_t *wmip, void *osbuf); 80int wmi_data_hdr_remove(struct wmi_t *wmip, void *osbuf);
81int wmi_syncpoint(struct wmi_t *wmip); 81int wmi_syncpoint(struct wmi_t *wmip);
82int wmi_syncpoint_reset(struct wmi_t *wmip); 82int wmi_syncpoint_reset(struct wmi_t *wmip);
83A_UINT8 wmi_implicit_create_pstream(struct wmi_t *wmip, void *osbuf, A_UINT32 layer2Priority, bool wmmEnabled); 83u8 wmi_implicit_create_pstream(struct wmi_t *wmip, void *osbuf, A_UINT32 layer2Priority, bool wmmEnabled);
84 84
85A_UINT8 wmi_determine_userPriority (A_UINT8 *pkt, A_UINT32 layer2Pri); 85u8 wmi_determine_userPriority (u8 *pkt, A_UINT32 layer2Pri);
86 86
87int wmi_control_rx(struct wmi_t *wmip, void *osbuf); 87int wmi_control_rx(struct wmi_t *wmip, void *osbuf);
88void wmi_iterate_nodes(struct wmi_t *wmip, wlan_node_iter_func *f, void *arg); 88void wmi_iterate_nodes(struct wmi_t *wmip, wlan_node_iter_func *f, void *arg);
89void wmi_free_allnodes(struct wmi_t *wmip); 89void wmi_free_allnodes(struct wmi_t *wmip);
90bss_t *wmi_find_node(struct wmi_t *wmip, const A_UINT8 *macaddr); 90bss_t *wmi_find_node(struct wmi_t *wmip, const u8 *macaddr);
91void wmi_free_node(struct wmi_t *wmip, const A_UINT8 *macaddr); 91void wmi_free_node(struct wmi_t *wmip, const u8 *macaddr);
92 92
93 93
94typedef enum { 94typedef enum {
@@ -107,17 +107,17 @@ int wmi_connect_cmd(struct wmi_t *wmip,
107 DOT11_AUTH_MODE dot11AuthMode, 107 DOT11_AUTH_MODE dot11AuthMode,
108 AUTH_MODE authMode, 108 AUTH_MODE authMode,
109 CRYPTO_TYPE pairwiseCrypto, 109 CRYPTO_TYPE pairwiseCrypto,
110 A_UINT8 pairwiseCryptoLen, 110 u8 pairwiseCryptoLen,
111 CRYPTO_TYPE groupCrypto, 111 CRYPTO_TYPE groupCrypto,
112 A_UINT8 groupCryptoLen, 112 u8 groupCryptoLen,
113 int ssidLength, 113 int ssidLength,
114 A_UCHAR *ssid, 114 A_UCHAR *ssid,
115 A_UINT8 *bssid, 115 u8 *bssid,
116 A_UINT16 channel, 116 A_UINT16 channel,
117 A_UINT32 ctrl_flags); 117 A_UINT32 ctrl_flags);
118 118
119int wmi_reconnect_cmd(struct wmi_t *wmip, 119int wmi_reconnect_cmd(struct wmi_t *wmip,
120 A_UINT8 *bssid, 120 u8 *bssid,
121 A_UINT16 channel); 121 A_UINT16 channel);
122int wmi_disconnect_cmd(struct wmi_t *wmip); 122int wmi_disconnect_cmd(struct wmi_t *wmip);
123int wmi_getrev_cmd(struct wmi_t *wmip); 123int wmi_getrev_cmd(struct wmi_t *wmip);
@@ -129,36 +129,36 @@ int wmi_scanparams_cmd(struct wmi_t *wmip, A_UINT16 fg_start_sec,
129 A_UINT16 fg_end_sec, A_UINT16 bg_sec, 129 A_UINT16 fg_end_sec, A_UINT16 bg_sec,
130 A_UINT16 minact_chdw_msec, 130 A_UINT16 minact_chdw_msec,
131 A_UINT16 maxact_chdw_msec, A_UINT16 pas_chdw_msec, 131 A_UINT16 maxact_chdw_msec, A_UINT16 pas_chdw_msec,
132 A_UINT8 shScanRatio, A_UINT8 scanCtrlFlags, 132 u8 shScanRatio, u8 scanCtrlFlags,
133 A_UINT32 max_dfsch_act_time, 133 A_UINT32 max_dfsch_act_time,
134 A_UINT16 maxact_scan_per_ssid); 134 A_UINT16 maxact_scan_per_ssid);
135int wmi_bssfilter_cmd(struct wmi_t *wmip, A_UINT8 filter, A_UINT32 ieMask); 135int wmi_bssfilter_cmd(struct wmi_t *wmip, u8 filter, A_UINT32 ieMask);
136int wmi_probedSsid_cmd(struct wmi_t *wmip, A_UINT8 index, A_UINT8 flag, 136int wmi_probedSsid_cmd(struct wmi_t *wmip, u8 index, u8 flag,
137 A_UINT8 ssidLength, A_UCHAR *ssid); 137 u8 ssidLength, A_UCHAR *ssid);
138int wmi_listeninterval_cmd(struct wmi_t *wmip, A_UINT16 listenInterval, A_UINT16 listenBeacons); 138int wmi_listeninterval_cmd(struct wmi_t *wmip, A_UINT16 listenInterval, A_UINT16 listenBeacons);
139int wmi_bmisstime_cmd(struct wmi_t *wmip, A_UINT16 bmisstime, A_UINT16 bmissbeacons); 139int wmi_bmisstime_cmd(struct wmi_t *wmip, A_UINT16 bmisstime, A_UINT16 bmissbeacons);
140int wmi_associnfo_cmd(struct wmi_t *wmip, A_UINT8 ieType, 140int wmi_associnfo_cmd(struct wmi_t *wmip, u8 ieType,
141 A_UINT8 ieLen, A_UINT8 *ieInfo); 141 u8 ieLen, u8 *ieInfo);
142int wmi_powermode_cmd(struct wmi_t *wmip, A_UINT8 powerMode); 142int wmi_powermode_cmd(struct wmi_t *wmip, u8 powerMode);
143int wmi_ibsspmcaps_cmd(struct wmi_t *wmip, A_UINT8 pmEnable, A_UINT8 ttl, 143int wmi_ibsspmcaps_cmd(struct wmi_t *wmip, u8 pmEnable, u8 ttl,
144 A_UINT16 atim_windows, A_UINT16 timeout_value); 144 A_UINT16 atim_windows, A_UINT16 timeout_value);
145int wmi_apps_cmd(struct wmi_t *wmip, A_UINT8 psType, A_UINT32 idle_time, 145int wmi_apps_cmd(struct wmi_t *wmip, u8 psType, A_UINT32 idle_time,
146 A_UINT32 ps_period, A_UINT8 sleep_period); 146 A_UINT32 ps_period, u8 sleep_period);
147int wmi_pmparams_cmd(struct wmi_t *wmip, A_UINT16 idlePeriod, 147int wmi_pmparams_cmd(struct wmi_t *wmip, A_UINT16 idlePeriod,
148 A_UINT16 psPollNum, A_UINT16 dtimPolicy, 148 A_UINT16 psPollNum, A_UINT16 dtimPolicy,
149 A_UINT16 wakup_tx_policy, A_UINT16 num_tx_to_wakeup, 149 A_UINT16 wakup_tx_policy, A_UINT16 num_tx_to_wakeup,
150 A_UINT16 ps_fail_event_policy); 150 A_UINT16 ps_fail_event_policy);
151int wmi_disctimeout_cmd(struct wmi_t *wmip, A_UINT8 timeout); 151int wmi_disctimeout_cmd(struct wmi_t *wmip, u8 timeout);
152int wmi_sync_cmd(struct wmi_t *wmip, A_UINT8 syncNumber); 152int wmi_sync_cmd(struct wmi_t *wmip, u8 syncNumber);
153int wmi_create_pstream_cmd(struct wmi_t *wmip, WMI_CREATE_PSTREAM_CMD *pstream); 153int wmi_create_pstream_cmd(struct wmi_t *wmip, WMI_CREATE_PSTREAM_CMD *pstream);
154int wmi_delete_pstream_cmd(struct wmi_t *wmip, A_UINT8 trafficClass, A_UINT8 streamID); 154int wmi_delete_pstream_cmd(struct wmi_t *wmip, u8 trafficClass, u8 streamID);
155int wmi_set_framerate_cmd(struct wmi_t *wmip, A_UINT8 bEnable, A_UINT8 type, A_UINT8 subType, A_UINT16 rateMask); 155int wmi_set_framerate_cmd(struct wmi_t *wmip, u8 bEnable, u8 type, u8 subType, A_UINT16 rateMask);
156int wmi_set_bitrate_cmd(struct wmi_t *wmip, A_INT32 dataRate, A_INT32 mgmtRate, A_INT32 ctlRate); 156int wmi_set_bitrate_cmd(struct wmi_t *wmip, A_INT32 dataRate, A_INT32 mgmtRate, A_INT32 ctlRate);
157int wmi_get_bitrate_cmd(struct wmi_t *wmip); 157int wmi_get_bitrate_cmd(struct wmi_t *wmip);
158A_INT8 wmi_validate_bitrate(struct wmi_t *wmip, A_INT32 rate, A_INT8 *rate_idx); 158A_INT8 wmi_validate_bitrate(struct wmi_t *wmip, A_INT32 rate, A_INT8 *rate_idx);
159int wmi_get_regDomain_cmd(struct wmi_t *wmip); 159int wmi_get_regDomain_cmd(struct wmi_t *wmip);
160int wmi_get_channelList_cmd(struct wmi_t *wmip); 160int wmi_get_channelList_cmd(struct wmi_t *wmip);
161int wmi_set_channelParams_cmd(struct wmi_t *wmip, A_UINT8 scanParam, 161int wmi_set_channelParams_cmd(struct wmi_t *wmip, u8 scanParam,
162 WMI_PHY_MODE mode, A_INT8 numChan, 162 WMI_PHY_MODE mode, A_INT8 numChan,
163 A_UINT16 *channelList); 163 A_UINT16 *channelList);
164 164
@@ -170,7 +170,7 @@ int wmi_clr_rssi_snr(struct wmi_t *wmip);
170int wmi_set_lq_threshold_params(struct wmi_t *wmip, 170int wmi_set_lq_threshold_params(struct wmi_t *wmip,
171 WMI_LQ_THRESHOLD_PARAMS_CMD *lqCmd); 171 WMI_LQ_THRESHOLD_PARAMS_CMD *lqCmd);
172int wmi_set_rts_cmd(struct wmi_t *wmip, A_UINT16 threshold); 172int wmi_set_rts_cmd(struct wmi_t *wmip, A_UINT16 threshold);
173int wmi_set_lpreamble_cmd(struct wmi_t *wmip, A_UINT8 status, A_UINT8 preamblePolicy); 173int wmi_set_lpreamble_cmd(struct wmi_t *wmip, u8 status, u8 preamblePolicy);
174 174
175int wmi_set_error_report_bitmask(struct wmi_t *wmip, A_UINT32 bitmask); 175int wmi_set_error_report_bitmask(struct wmi_t *wmip, A_UINT32 bitmask);
176 176
@@ -183,64 +183,64 @@ int wmi_config_debug_module_cmd(struct wmi_t *wmip, A_UINT16 mmask,
183 183
184int wmi_get_stats_cmd(struct wmi_t *wmip); 184int wmi_get_stats_cmd(struct wmi_t *wmip);
185 185
186int wmi_addKey_cmd(struct wmi_t *wmip, A_UINT8 keyIndex, 186int wmi_addKey_cmd(struct wmi_t *wmip, u8 keyIndex,
187 CRYPTO_TYPE keyType, A_UINT8 keyUsage, 187 CRYPTO_TYPE keyType, u8 keyUsage,
188 A_UINT8 keyLength,A_UINT8 *keyRSC, 188 u8 keyLength,u8 *keyRSC,
189 A_UINT8 *keyMaterial, A_UINT8 key_op_ctrl, A_UINT8 *mac, 189 u8 *keyMaterial, u8 key_op_ctrl, u8 *mac,
190 WMI_SYNC_FLAG sync_flag); 190 WMI_SYNC_FLAG sync_flag);
191int wmi_add_krk_cmd(struct wmi_t *wmip, A_UINT8 *krk); 191int wmi_add_krk_cmd(struct wmi_t *wmip, u8 *krk);
192int wmi_delete_krk_cmd(struct wmi_t *wmip); 192int wmi_delete_krk_cmd(struct wmi_t *wmip);
193int wmi_deleteKey_cmd(struct wmi_t *wmip, A_UINT8 keyIndex); 193int wmi_deleteKey_cmd(struct wmi_t *wmip, u8 keyIndex);
194int wmi_set_akmp_params_cmd(struct wmi_t *wmip, 194int wmi_set_akmp_params_cmd(struct wmi_t *wmip,
195 WMI_SET_AKMP_PARAMS_CMD *akmpParams); 195 WMI_SET_AKMP_PARAMS_CMD *akmpParams);
196int wmi_get_pmkid_list_cmd(struct wmi_t *wmip); 196int wmi_get_pmkid_list_cmd(struct wmi_t *wmip);
197int wmi_set_pmkid_list_cmd(struct wmi_t *wmip, 197int wmi_set_pmkid_list_cmd(struct wmi_t *wmip,
198 WMI_SET_PMKID_LIST_CMD *pmkInfo); 198 WMI_SET_PMKID_LIST_CMD *pmkInfo);
199int wmi_abort_scan_cmd(struct wmi_t *wmip); 199int wmi_abort_scan_cmd(struct wmi_t *wmip);
200int wmi_set_txPwr_cmd(struct wmi_t *wmip, A_UINT8 dbM); 200int wmi_set_txPwr_cmd(struct wmi_t *wmip, u8 dbM);
201int wmi_get_txPwr_cmd(struct wmi_t *wmip); 201int wmi_get_txPwr_cmd(struct wmi_t *wmip);
202int wmi_addBadAp_cmd(struct wmi_t *wmip, A_UINT8 apIndex, A_UINT8 *bssid); 202int wmi_addBadAp_cmd(struct wmi_t *wmip, u8 apIndex, u8 *bssid);
203int wmi_deleteBadAp_cmd(struct wmi_t *wmip, A_UINT8 apIndex); 203int wmi_deleteBadAp_cmd(struct wmi_t *wmip, u8 apIndex);
204int wmi_set_tkip_countermeasures_cmd(struct wmi_t *wmip, bool en); 204int wmi_set_tkip_countermeasures_cmd(struct wmi_t *wmip, bool en);
205int wmi_setPmkid_cmd(struct wmi_t *wmip, A_UINT8 *bssid, A_UINT8 *pmkId, 205int wmi_setPmkid_cmd(struct wmi_t *wmip, u8 *bssid, u8 *pmkId,
206 bool set); 206 bool set);
207int wmi_set_access_params_cmd(struct wmi_t *wmip, A_UINT8 ac, A_UINT16 txop, 207int wmi_set_access_params_cmd(struct wmi_t *wmip, u8 ac, A_UINT16 txop,
208 A_UINT8 eCWmin, A_UINT8 eCWmax, 208 u8 eCWmin, u8 eCWmax,
209 A_UINT8 aifsn); 209 u8 aifsn);
210int wmi_set_retry_limits_cmd(struct wmi_t *wmip, A_UINT8 frameType, 210int wmi_set_retry_limits_cmd(struct wmi_t *wmip, u8 frameType,
211 A_UINT8 trafficClass, A_UINT8 maxRetries, 211 u8 trafficClass, u8 maxRetries,
212 A_UINT8 enableNotify); 212 u8 enableNotify);
213 213
214void wmi_get_current_bssid(struct wmi_t *wmip, A_UINT8 *bssid); 214void wmi_get_current_bssid(struct wmi_t *wmip, u8 *bssid);
215 215
216int wmi_get_roam_tbl_cmd(struct wmi_t *wmip); 216int wmi_get_roam_tbl_cmd(struct wmi_t *wmip);
217int wmi_get_roam_data_cmd(struct wmi_t *wmip, A_UINT8 roamDataType); 217int wmi_get_roam_data_cmd(struct wmi_t *wmip, u8 roamDataType);
218int wmi_set_roam_ctrl_cmd(struct wmi_t *wmip, WMI_SET_ROAM_CTRL_CMD *p, 218int wmi_set_roam_ctrl_cmd(struct wmi_t *wmip, WMI_SET_ROAM_CTRL_CMD *p,
219 A_UINT8 size); 219 u8 size);
220int wmi_set_powersave_timers_cmd(struct wmi_t *wmip, 220int wmi_set_powersave_timers_cmd(struct wmi_t *wmip,
221 WMI_POWERSAVE_TIMERS_POLICY_CMD *pCmd, 221 WMI_POWERSAVE_TIMERS_POLICY_CMD *pCmd,
222 A_UINT8 size); 222 u8 size);
223 223
224int wmi_set_opt_mode_cmd(struct wmi_t *wmip, A_UINT8 optMode); 224int wmi_set_opt_mode_cmd(struct wmi_t *wmip, u8 optMode);
225int wmi_opt_tx_frame_cmd(struct wmi_t *wmip, 225int wmi_opt_tx_frame_cmd(struct wmi_t *wmip,
226 A_UINT8 frmType, 226 u8 frmType,
227 A_UINT8 *dstMacAddr, 227 u8 *dstMacAddr,
228 A_UINT8 *bssid, 228 u8 *bssid,
229 A_UINT16 optIEDataLen, 229 A_UINT16 optIEDataLen,
230 A_UINT8 *optIEData); 230 u8 *optIEData);
231 231
232int wmi_set_adhoc_bconIntvl_cmd(struct wmi_t *wmip, A_UINT16 intvl); 232int wmi_set_adhoc_bconIntvl_cmd(struct wmi_t *wmip, A_UINT16 intvl);
233int wmi_set_voice_pkt_size_cmd(struct wmi_t *wmip, A_UINT16 voicePktSize); 233int wmi_set_voice_pkt_size_cmd(struct wmi_t *wmip, A_UINT16 voicePktSize);
234int wmi_set_max_sp_len_cmd(struct wmi_t *wmip, A_UINT8 maxSpLen); 234int wmi_set_max_sp_len_cmd(struct wmi_t *wmip, u8 maxSpLen);
235A_UINT8 convert_userPriority_to_trafficClass(A_UINT8 userPriority); 235u8 convert_userPriority_to_trafficClass(u8 userPriority);
236A_UINT8 wmi_get_power_mode_cmd(struct wmi_t *wmip); 236u8 wmi_get_power_mode_cmd(struct wmi_t *wmip);
237int wmi_verify_tspec_params(WMI_CREATE_PSTREAM_CMD *pCmd, int tspecCompliance); 237int wmi_verify_tspec_params(WMI_CREATE_PSTREAM_CMD *pCmd, int tspecCompliance);
238 238
239#ifdef CONFIG_HOST_TCMD_SUPPORT 239#ifdef CONFIG_HOST_TCMD_SUPPORT
240int wmi_test_cmd(struct wmi_t *wmip, A_UINT8 *buf, A_UINT32 len); 240int wmi_test_cmd(struct wmi_t *wmip, u8 *buf, A_UINT32 len);
241#endif 241#endif
242 242
243int wmi_set_bt_status_cmd(struct wmi_t *wmip, A_UINT8 streamType, A_UINT8 status); 243int wmi_set_bt_status_cmd(struct wmi_t *wmip, u8 streamType, u8 status);
244int wmi_set_bt_params_cmd(struct wmi_t *wmip, WMI_SET_BT_PARAMS_CMD* cmd); 244int wmi_set_bt_params_cmd(struct wmi_t *wmip, WMI_SET_BT_PARAMS_CMD* cmd);
245 245
246int wmi_set_btcoex_fe_ant_cmd(struct wmi_t *wmip, WMI_SET_BTCOEX_FE_ANT_CMD * cmd); 246int wmi_set_btcoex_fe_ant_cmd(struct wmi_t *wmip, WMI_SET_BTCOEX_FE_ANT_CMD * cmd);
@@ -269,7 +269,7 @@ int wmi_get_btcoex_config_cmd(struct wmi_t * wmip, WMI_GET_BTCOEX_CONFIG_CMD * c
269 269
270int wmi_get_btcoex_stats_cmd(struct wmi_t * wmip); 270int wmi_get_btcoex_stats_cmd(struct wmi_t * wmip);
271 271
272int wmi_SGI_cmd(struct wmi_t *wmip, A_UINT32 sgiMask, A_UINT8 sgiPERThreshold); 272int wmi_SGI_cmd(struct wmi_t *wmip, A_UINT32 sgiMask, u8 sgiPERThreshold);
273 273
274/* 274/*
275 * This function is used to configure the fix rates mask to the target. 275 * This function is used to configure the fix rates mask to the target.
@@ -277,23 +277,23 @@ int wmi_SGI_cmd(struct wmi_t *wmip, A_UINT32 sgiMask, A_UINT8 sgiPERThreshold);
277int wmi_set_fixrates_cmd(struct wmi_t *wmip, A_UINT32 fixRatesMask); 277int wmi_set_fixrates_cmd(struct wmi_t *wmip, A_UINT32 fixRatesMask);
278int wmi_get_ratemask_cmd(struct wmi_t *wmip); 278int wmi_get_ratemask_cmd(struct wmi_t *wmip);
279 279
280int wmi_set_authmode_cmd(struct wmi_t *wmip, A_UINT8 mode); 280int wmi_set_authmode_cmd(struct wmi_t *wmip, u8 mode);
281 281
282int wmi_set_reassocmode_cmd(struct wmi_t *wmip, A_UINT8 mode); 282int wmi_set_reassocmode_cmd(struct wmi_t *wmip, u8 mode);
283 283
284int wmi_set_qos_supp_cmd(struct wmi_t *wmip,A_UINT8 status); 284int wmi_set_qos_supp_cmd(struct wmi_t *wmip,u8 status);
285int wmi_set_wmm_cmd(struct wmi_t *wmip, WMI_WMM_STATUS status); 285int wmi_set_wmm_cmd(struct wmi_t *wmip, WMI_WMM_STATUS status);
286int wmi_set_wmm_txop(struct wmi_t *wmip, WMI_TXOP_CFG txEnable); 286int wmi_set_wmm_txop(struct wmi_t *wmip, WMI_TXOP_CFG txEnable);
287int wmi_set_country(struct wmi_t *wmip, A_UCHAR *countryCode); 287int wmi_set_country(struct wmi_t *wmip, A_UCHAR *countryCode);
288 288
289int wmi_get_keepalive_configured(struct wmi_t *wmip); 289int wmi_get_keepalive_configured(struct wmi_t *wmip);
290A_UINT8 wmi_get_keepalive_cmd(struct wmi_t *wmip); 290u8 wmi_get_keepalive_cmd(struct wmi_t *wmip);
291int wmi_set_keepalive_cmd(struct wmi_t *wmip, A_UINT8 keepaliveInterval); 291int wmi_set_keepalive_cmd(struct wmi_t *wmip, u8 keepaliveInterval);
292 292
293int wmi_set_appie_cmd(struct wmi_t *wmip, A_UINT8 mgmtFrmType, 293int wmi_set_appie_cmd(struct wmi_t *wmip, u8 mgmtFrmType,
294 A_UINT8 ieLen,A_UINT8 *ieInfo); 294 u8 ieLen,u8 *ieInfo);
295 295
296int wmi_set_halparam_cmd(struct wmi_t *wmip, A_UINT8 *cmd, A_UINT16 dataLen); 296int wmi_set_halparam_cmd(struct wmi_t *wmip, u8 *cmd, A_UINT16 dataLen);
297 297
298A_INT32 wmi_get_rate(A_INT8 rateindex); 298A_INT32 wmi_get_rate(A_INT8 rateindex);
299 299
@@ -304,7 +304,7 @@ int wmi_set_host_sleep_mode_cmd(struct wmi_t *wmip, WMI_SET_HOST_SLEEP_MODE_CMD
304int wmi_set_wow_mode_cmd(struct wmi_t *wmip, WMI_SET_WOW_MODE_CMD *cmd); 304int wmi_set_wow_mode_cmd(struct wmi_t *wmip, WMI_SET_WOW_MODE_CMD *cmd);
305int wmi_get_wow_list_cmd(struct wmi_t *wmip, WMI_GET_WOW_LIST_CMD *cmd); 305int wmi_get_wow_list_cmd(struct wmi_t *wmip, WMI_GET_WOW_LIST_CMD *cmd);
306int wmi_add_wow_pattern_cmd(struct wmi_t *wmip, 306int wmi_add_wow_pattern_cmd(struct wmi_t *wmip,
307 WMI_ADD_WOW_PATTERN_CMD *cmd, A_UINT8* pattern, A_UINT8* mask, A_UINT8 pattern_size); 307 WMI_ADD_WOW_PATTERN_CMD *cmd, u8 *pattern, u8 *mask, u8 pattern_size);
308int wmi_del_wow_pattern_cmd(struct wmi_t *wmip, 308int wmi_del_wow_pattern_cmd(struct wmi_t *wmip,
309 WMI_DEL_WOW_PATTERN_CMD *cmd); 309 WMI_DEL_WOW_PATTERN_CMD *cmd);
310int wmi_set_wsc_status_cmd(struct wmi_t *wmip, A_UINT32 status); 310int wmi_set_wsc_status_cmd(struct wmi_t *wmip, A_UINT32 status);
@@ -313,13 +313,13 @@ int
313wmi_set_params_cmd(struct wmi_t *wmip, A_UINT32 opcode, A_UINT32 length, char *buffer); 313wmi_set_params_cmd(struct wmi_t *wmip, A_UINT32 opcode, A_UINT32 length, char *buffer);
314 314
315int 315int
316wmi_set_mcast_filter_cmd(struct wmi_t *wmip, A_UINT8 dot1, A_UINT8 dot2, A_UINT8 dot3, A_UINT8 dot4); 316wmi_set_mcast_filter_cmd(struct wmi_t *wmip, u8 dot1, u8 dot2, u8 dot3, u8 dot4);
317 317
318int 318int
319wmi_del_mcast_filter_cmd(struct wmi_t *wmip, A_UINT8 dot1, A_UINT8 dot2, A_UINT8 dot3, A_UINT8 dot4); 319wmi_del_mcast_filter_cmd(struct wmi_t *wmip, u8 dot1, u8 dot2, u8 dot3, u8 dot4);
320 320
321int 321int
322wmi_mcast_filter_cmd(struct wmi_t *wmip, A_UINT8 enable); 322wmi_mcast_filter_cmd(struct wmi_t *wmip, u8 enable);
323 323
324bss_t * 324bss_t *
325wmi_find_Ssidnode (struct wmi_t *wmip, A_UCHAR *pSsid, 325wmi_find_Ssidnode (struct wmi_t *wmip, A_UCHAR *pSsid,
@@ -346,8 +346,8 @@ void wmi_scan_indication (struct wmi_t *wmip);
346int 346int
347wmi_set_target_event_report_cmd(struct wmi_t *wmip, WMI_SET_TARGET_EVENT_REPORT_CMD* cmd); 347wmi_set_target_event_report_cmd(struct wmi_t *wmip, WMI_SET_TARGET_EVENT_REPORT_CMD* cmd);
348 348
349bss_t *wmi_rm_current_bss (struct wmi_t *wmip, A_UINT8 *id); 349bss_t *wmi_rm_current_bss (struct wmi_t *wmip, u8 *id);
350int wmi_add_current_bss (struct wmi_t *wmip, A_UINT8 *id, bss_t *bss); 350int wmi_add_current_bss (struct wmi_t *wmip, u8 *id, bss_t *bss);
351 351
352 352
353/* 353/*
@@ -357,22 +357,21 @@ int
357wmi_ap_profile_commit(struct wmi_t *wmip, WMI_CONNECT_CMD *p); 357wmi_ap_profile_commit(struct wmi_t *wmip, WMI_CONNECT_CMD *p);
358 358
359int 359int
360wmi_ap_set_hidden_ssid(struct wmi_t *wmip, A_UINT8 hidden_ssid); 360wmi_ap_set_hidden_ssid(struct wmi_t *wmip, u8 hidden_ssid);
361 361
362int 362int
363wmi_ap_set_num_sta(struct wmi_t *wmip, A_UINT8 num_sta); 363wmi_ap_set_num_sta(struct wmi_t *wmip, u8 num_sta);
364 364
365int 365int
366wmi_ap_set_acl_policy(struct wmi_t *wmip, A_UINT8 policy); 366wmi_ap_set_acl_policy(struct wmi_t *wmip, u8 policy);
367 367
368int 368int
369wmi_ap_acl_mac_list(struct wmi_t *wmip, WMI_AP_ACL_MAC_CMD *a); 369wmi_ap_acl_mac_list(struct wmi_t *wmip, WMI_AP_ACL_MAC_CMD *a);
370 370
371A_UINT8 371u8 acl_add_del_mac(WMI_AP_ACL *a, WMI_AP_ACL_MAC_CMD *acl);
372acl_add_del_mac(WMI_AP_ACL *a, WMI_AP_ACL_MAC_CMD *acl);
373 372
374int 373int
375wmi_ap_set_mlme(struct wmi_t *wmip, A_UINT8 cmd, A_UINT8 *mac, A_UINT16 reason); 374wmi_ap_set_mlme(struct wmi_t *wmip, u8 cmd, u8 *mac, A_UINT16 reason);
376 375
377int 376int
378wmi_set_pvb_cmd(struct wmi_t *wmip, A_UINT16 aid, bool flag); 377wmi_set_pvb_cmd(struct wmi_t *wmip, A_UINT16 aid, bool flag);
@@ -384,34 +383,34 @@ int
384wmi_ap_bgscan_time(struct wmi_t *wmip, A_UINT32 period, A_UINT32 dwell); 383wmi_ap_bgscan_time(struct wmi_t *wmip, A_UINT32 period, A_UINT32 dwell);
385 384
386int 385int
387wmi_ap_set_dtim(struct wmi_t *wmip, A_UINT8 dtim); 386wmi_ap_set_dtim(struct wmi_t *wmip, u8 dtim);
388 387
389int 388int
390wmi_ap_set_rateset(struct wmi_t *wmip, A_UINT8 rateset); 389wmi_ap_set_rateset(struct wmi_t *wmip, u8 rateset);
391 390
392int 391int
393wmi_set_ht_cap_cmd(struct wmi_t *wmip, WMI_SET_HT_CAP_CMD *cmd); 392wmi_set_ht_cap_cmd(struct wmi_t *wmip, WMI_SET_HT_CAP_CMD *cmd);
394 393
395int 394int
396wmi_set_ht_op_cmd(struct wmi_t *wmip, A_UINT8 sta_chan_width); 395wmi_set_ht_op_cmd(struct wmi_t *wmip, u8 sta_chan_width);
397 396
398int 397int
399wmi_send_hci_cmd(struct wmi_t *wmip, A_UINT8 *buf, A_UINT16 sz); 398wmi_send_hci_cmd(struct wmi_t *wmip, u8 *buf, A_UINT16 sz);
400 399
401int 400int
402wmi_set_tx_select_rates_cmd(struct wmi_t *wmip, A_UINT32 *pMaskArray); 401wmi_set_tx_select_rates_cmd(struct wmi_t *wmip, A_UINT32 *pMaskArray);
403 402
404int 403int
405wmi_setup_aggr_cmd(struct wmi_t *wmip, A_UINT8 tid); 404wmi_setup_aggr_cmd(struct wmi_t *wmip, u8 tid);
406 405
407int 406int
408wmi_delete_aggr_cmd(struct wmi_t *wmip, A_UINT8 tid, bool uplink); 407wmi_delete_aggr_cmd(struct wmi_t *wmip, u8 tid, bool uplink);
409 408
410int 409int
411wmi_allow_aggr_cmd(struct wmi_t *wmip, A_UINT16 tx_tidmask, A_UINT16 rx_tidmask); 410wmi_allow_aggr_cmd(struct wmi_t *wmip, A_UINT16 tx_tidmask, A_UINT16 rx_tidmask);
412 411
413int 412int
414wmi_set_rx_frame_format_cmd(struct wmi_t *wmip, A_UINT8 rxMetaVersion, bool rxDot11Hdr, bool defragOnHost); 413wmi_set_rx_frame_format_cmd(struct wmi_t *wmip, u8 rxMetaVersion, bool rxDot11Hdr, bool defragOnHost);
415 414
416int 415int
417wmi_set_thin_mode_cmd(struct wmi_t *wmip, bool bThinMode); 416wmi_set_thin_mode_cmd(struct wmi_t *wmip, bool bThinMode);
@@ -420,7 +419,7 @@ int
420wmi_set_wlan_conn_precedence_cmd(struct wmi_t *wmip, BT_WLAN_CONN_PRECEDENCE precedence); 419wmi_set_wlan_conn_precedence_cmd(struct wmi_t *wmip, BT_WLAN_CONN_PRECEDENCE precedence);
421 420
422int 421int
423wmi_set_pmk_cmd(struct wmi_t *wmip, A_UINT8 *pmk); 422wmi_set_pmk_cmd(struct wmi_t *wmip, u8 *pmk);
424 423
425A_UINT16 424A_UINT16
426wmi_ieee2freq (int chan); 425wmi_ieee2freq (int chan);