blob: 328f88a67563efdfef4b3792f9d3479a2ec9c332 [file] [log] [blame]
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001#include "acx.h"
2
3#include <linux/module.h>
4#include <linux/crc7.h>
5#include <linux/spi/spi.h>
6
7#include "wl12xx.h"
8#include "wl12xx_80211.h"
9#include "reg.h"
10#include "spi.h"
11#include "ps.h"
12
13int wl12xx_acx_frame_rates(struct wl12xx *wl, u8 ctrl_rate, u8 ctrl_mod,
14 u8 mgt_rate, u8 mgt_mod)
15{
Kalle Valoff258392009-06-12 14:14:19 +030016 struct acx_fw_gen_frame_rates *rates;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030017 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030018
19 wl12xx_debug(DEBUG_ACX, "acx frame rates");
20
Kalle Valoff258392009-06-12 14:14:19 +030021 rates = kzalloc(sizeof(*rates), GFP_KERNEL);
22 if (!rates) {
23 ret = -ENOMEM;
24 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030025 }
26
Kalle Valoff258392009-06-12 14:14:19 +030027 rates->tx_ctrl_frame_rate = ctrl_rate;
28 rates->tx_ctrl_frame_mod = ctrl_mod;
29 rates->tx_mgt_frame_rate = mgt_rate;
30 rates->tx_mgt_frame_mod = mgt_mod;
31
32 ret = wl12xx_cmd_configure(wl, ACX_FW_GEN_FRAME_RATES,
33 rates, sizeof(*rates));
34 if (ret < 0) {
35 wl12xx_error("Failed to set FW rates and modulation");
36 goto out;
37 }
38
39out:
40 kfree(rates);
41 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030042}
43
44
45int wl12xx_acx_station_id(struct wl12xx *wl)
46{
Kalle Valoff258392009-06-12 14:14:19 +030047 struct acx_dot11_station_id *mac;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030048 int ret, i;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030049
50 wl12xx_debug(DEBUG_ACX, "acx dot11_station_id");
51
Kalle Valoff258392009-06-12 14:14:19 +030052 mac = kzalloc(sizeof(*mac), GFP_KERNEL);
53 if (!mac) {
54 ret = -ENOMEM;
55 goto out;
56 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +030057
58 for (i = 0; i < ETH_ALEN; i++)
Kalle Valoff258392009-06-12 14:14:19 +030059 mac->mac[i] = wl->mac_addr[ETH_ALEN - 1 - i];
Kalle Valo2f01a1f2009-04-29 23:33:31 +030060
Kalle Valoff258392009-06-12 14:14:19 +030061 ret = wl12xx_cmd_configure(wl, DOT11_STATION_ID, mac, sizeof(*mac));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030062 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +030063 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030064
Kalle Valoff258392009-06-12 14:14:19 +030065out:
66 kfree(mac);
67 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030068}
69
70int wl12xx_acx_default_key(struct wl12xx *wl, u8 key_id)
71{
Kalle Valoff258392009-06-12 14:14:19 +030072 struct acx_dot11_default_key *default_key;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030073 int ret;
74
75 wl12xx_debug(DEBUG_ACX, "acx dot11_default_key (%d)", key_id);
76
Kalle Valoff258392009-06-12 14:14:19 +030077 default_key = kzalloc(sizeof(*default_key), GFP_KERNEL);
78 if (!default_key) {
79 ret = -ENOMEM;
80 goto out;
81 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +030082
Kalle Valoff258392009-06-12 14:14:19 +030083 default_key->id = key_id;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030084
Kalle Valoff258392009-06-12 14:14:19 +030085 ret = wl12xx_cmd_configure(wl, DOT11_DEFAULT_KEY,
86 default_key, sizeof(*default_key));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030087 if (ret < 0) {
88 wl12xx_error("Couldnt set default key");
Kalle Valoff258392009-06-12 14:14:19 +030089 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030090 }
91
92 wl->default_key = key_id;
93
Kalle Valoff258392009-06-12 14:14:19 +030094out:
95 kfree(default_key);
96 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030097}
98
Luciano Coelho9f483dc2009-06-12 14:15:46 +030099int wl12xx_acx_wake_up_conditions(struct wl12xx *wl, u8 wake_up_event,
100 u8 listen_interval)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300101{
Kalle Valoff258392009-06-12 14:14:19 +0300102 struct acx_wake_up_condition *wake_up;
103 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300104
105 wl12xx_debug(DEBUG_ACX, "acx wake up conditions");
106
Kalle Valoff258392009-06-12 14:14:19 +0300107 wake_up = kzalloc(sizeof(*wake_up), GFP_KERNEL);
108 if (!wake_up) {
109 ret = -ENOMEM;
110 goto out;
111 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300112
Luciano Coelho9f483dc2009-06-12 14:15:46 +0300113 wake_up->wake_up_event = wake_up_event;
Kalle Valoff258392009-06-12 14:14:19 +0300114 wake_up->listen_interval = listen_interval;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300115
Kalle Valoff258392009-06-12 14:14:19 +0300116 ret = wl12xx_cmd_configure(wl, ACX_WAKE_UP_CONDITIONS,
117 wake_up, sizeof(*wake_up));
118 if (ret < 0) {
119 wl12xx_warning("could not set wake up conditions: %d", ret);
120 goto out;
121 }
122
123out:
124 kfree(wake_up);
125 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300126}
127
128int wl12xx_acx_sleep_auth(struct wl12xx *wl, u8 sleep_auth)
129{
Kalle Valoff258392009-06-12 14:14:19 +0300130 struct acx_sleep_auth *auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300131 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300132
133 wl12xx_debug(DEBUG_ACX, "acx sleep auth");
134
Kalle Valoff258392009-06-12 14:14:19 +0300135 auth = kzalloc(sizeof(*auth), GFP_KERNEL);
136 if (!auth) {
137 ret = -ENOMEM;
138 goto out;
139 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300140
Kalle Valoff258392009-06-12 14:14:19 +0300141 auth->sleep_auth = sleep_auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300142
Kalle Valoff258392009-06-12 14:14:19 +0300143 ret = wl12xx_cmd_configure(wl, ACX_SLEEP_AUTH, auth, sizeof(*auth));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300144 if (ret < 0)
145 return ret;
146
Kalle Valoff258392009-06-12 14:14:19 +0300147out:
148 kfree(auth);
149 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300150}
151
152int wl12xx_acx_fw_version(struct wl12xx *wl, char *buf, size_t len)
153{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300154 struct acx_revision *rev;
155 int ret;
156
157 wl12xx_debug(DEBUG_ACX, "acx fw rev");
158
Kalle Valoff258392009-06-12 14:14:19 +0300159 rev = kzalloc(sizeof(*rev), GFP_KERNEL);
160 if (!rev) {
161 ret = -ENOMEM;
162 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300163 }
164
Kalle Valoff258392009-06-12 14:14:19 +0300165 ret = wl12xx_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
166 if (ret < 0) {
167 wl12xx_warning("ACX_FW_REV interrogate failed");
168 goto out;
169 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300170
171 /* be careful with the buffer sizes */
172 strncpy(buf, rev->fw_version, min(len, sizeof(rev->fw_version)));
173
174 /*
175 * if the firmware version string is exactly
176 * sizeof(rev->fw_version) long or fw_len is less than
177 * sizeof(rev->fw_version) it won't be null terminated
178 */
179 buf[min(len, sizeof(rev->fw_version)) - 1] = '\0';
180
Kalle Valoff258392009-06-12 14:14:19 +0300181out:
182 kfree(rev);
183 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300184}
185
186int wl12xx_acx_tx_power(struct wl12xx *wl, int power)
187{
Kalle Valoff258392009-06-12 14:14:19 +0300188 struct acx_current_tx_power *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300189 int ret;
190
191 wl12xx_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
192
193 if (power < 0 || power > 25)
194 return -EINVAL;
195
Kalle Valoff258392009-06-12 14:14:19 +0300196 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
197 if (!acx) {
198 ret = -ENOMEM;
199 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300200 }
201
Kalle Valoff258392009-06-12 14:14:19 +0300202 acx->current_tx_power = power * 10;
203
204 ret = wl12xx_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
205 if (ret < 0) {
206 wl12xx_warning("configure of tx power failed: %d", ret);
207 goto out;
208 }
209
210out:
211 kfree(acx);
212 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300213}
214
215int wl12xx_acx_feature_cfg(struct wl12xx *wl)
216{
Kalle Valoff258392009-06-12 14:14:19 +0300217 struct acx_feature_config *feature;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300218 int ret;
219
220 wl12xx_debug(DEBUG_ACX, "acx feature cfg");
221
Kalle Valoff258392009-06-12 14:14:19 +0300222 feature = kzalloc(sizeof(*feature), GFP_KERNEL);
223 if (!feature) {
224 ret = -ENOMEM;
225 goto out;
226 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300227
228 /* DF_ENCRYPTION_DISABLE and DF_SNIFF_MODE_ENABLE are disabled */
Kalle Valoff258392009-06-12 14:14:19 +0300229 feature->data_flow_options = 0;
230 feature->options = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300231
Kalle Valoff258392009-06-12 14:14:19 +0300232 ret = wl12xx_cmd_configure(wl, ACX_FEATURE_CFG,
233 feature, sizeof(*feature));
234 if (ret < 0) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300235 wl12xx_error("Couldnt set HW encryption");
Kalle Valoff258392009-06-12 14:14:19 +0300236 goto out;
237 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300238
Kalle Valoff258392009-06-12 14:14:19 +0300239out:
240 kfree(feature);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300241 return ret;
242}
243
Kalle Valoff258392009-06-12 14:14:19 +0300244int wl12xx_acx_mem_map(struct wl12xx *wl, struct acx_header *mem_map,
245 size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300246{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300247 int ret;
248
249 wl12xx_debug(DEBUG_ACX, "acx mem map");
250
Kalle Valoff258392009-06-12 14:14:19 +0300251 ret = wl12xx_cmd_interrogate(wl, ACX_MEM_MAP, mem_map, len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300252 if (ret < 0)
253 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300254
255 return 0;
256}
257
258int wl12xx_acx_data_path_params(struct wl12xx *wl,
Kalle Valoff258392009-06-12 14:14:19 +0300259 struct acx_data_path_params_resp *resp)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300260{
Kalle Valoff258392009-06-12 14:14:19 +0300261 struct acx_data_path_params *params;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300262 int ret;
263
264 wl12xx_debug(DEBUG_ACX, "acx data path params");
265
Kalle Valoff258392009-06-12 14:14:19 +0300266 params = kzalloc(sizeof(*params), GFP_KERNEL);
267 if (!params) {
268 ret = -ENOMEM;
269 goto out;
270 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300271
Kalle Valoff258392009-06-12 14:14:19 +0300272 params->rx_packet_ring_chunk_size = DP_RX_PACKET_RING_CHUNK_SIZE;
273 params->tx_packet_ring_chunk_size = DP_TX_PACKET_RING_CHUNK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300274
Kalle Valoff258392009-06-12 14:14:19 +0300275 params->rx_packet_ring_chunk_num = DP_RX_PACKET_RING_CHUNK_NUM;
276 params->tx_packet_ring_chunk_num = DP_TX_PACKET_RING_CHUNK_NUM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300277
Kalle Valoff258392009-06-12 14:14:19 +0300278 params->tx_complete_threshold = 1;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300279
Kalle Valoff258392009-06-12 14:14:19 +0300280 params->tx_complete_ring_depth = FW_TX_CMPLT_BLOCK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300281
Kalle Valoff258392009-06-12 14:14:19 +0300282 params->tx_complete_timeout = DP_TX_COMPLETE_TIME_OUT;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300283
Kalle Valoff258392009-06-12 14:14:19 +0300284 ret = wl12xx_cmd_configure(wl, ACX_DATA_PATH_PARAMS,
285 params, sizeof(*params));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300286 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +0300287 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300288
Kalle Valoff258392009-06-12 14:14:19 +0300289 /* FIXME: shouldn't this be ACX_DATA_PATH_RESP_PARAMS? */
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300290 ret = wl12xx_cmd_interrogate(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300291 resp, sizeof(*resp));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300292
293 if (ret < 0) {
294 wl12xx_warning("failed to read data path parameters: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300295 goto out;
296 } else if (resp->header.cmd.status != CMD_STATUS_SUCCESS) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300297 wl12xx_warning("data path parameter acx status failed");
Kalle Valoff258392009-06-12 14:14:19 +0300298 ret = -EIO;
299 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300300 }
301
Kalle Valoff258392009-06-12 14:14:19 +0300302out:
303 kfree(params);
304 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300305}
306
307int wl12xx_acx_rx_msdu_life_time(struct wl12xx *wl, u32 life_time)
308{
Kalle Valoff258392009-06-12 14:14:19 +0300309 struct acx_rx_msdu_lifetime *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300310 int ret;
311
312 wl12xx_debug(DEBUG_ACX, "acx rx msdu life time");
313
Kalle Valoff258392009-06-12 14:14:19 +0300314 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
315 if (!acx) {
316 ret = -ENOMEM;
317 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300318 }
319
Vidhya Govindance650b52009-06-12 14:16:45 +0300320 acx->lifetime = life_time;
Kalle Valoff258392009-06-12 14:14:19 +0300321 ret = wl12xx_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
322 acx, sizeof(*acx));
323 if (ret < 0) {
324 wl12xx_warning("failed to set rx msdu life time: %d", ret);
325 goto out;
326 }
327
328out:
329 kfree(acx);
330 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300331}
332
333int wl12xx_acx_rx_config(struct wl12xx *wl, u32 config, u32 filter)
334{
Kalle Valoff258392009-06-12 14:14:19 +0300335 struct acx_rx_config *rx_config;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300336 int ret;
337
338 wl12xx_debug(DEBUG_ACX, "acx rx config");
339
Kalle Valoff258392009-06-12 14:14:19 +0300340 rx_config = kzalloc(sizeof(*rx_config), GFP_KERNEL);
341 if (!rx_config) {
342 ret = -ENOMEM;
343 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300344 }
345
Kalle Valoff258392009-06-12 14:14:19 +0300346 rx_config->config_options = config;
347 rx_config->filter_options = filter;
348
349 ret = wl12xx_cmd_configure(wl, ACX_RX_CFG,
350 rx_config, sizeof(*rx_config));
351 if (ret < 0) {
352 wl12xx_warning("failed to set rx config: %d", ret);
353 goto out;
354 }
355
356out:
357 kfree(rx_config);
358 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300359}
360
361int wl12xx_acx_pd_threshold(struct wl12xx *wl)
362{
Kalle Valoff258392009-06-12 14:14:19 +0300363 struct acx_packet_detection *pd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300364 int ret;
365
366 wl12xx_debug(DEBUG_ACX, "acx data pd threshold");
367
Kalle Valoff258392009-06-12 14:14:19 +0300368 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
369 if (!pd) {
370 ret = -ENOMEM;
371 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300372 }
373
Kalle Valoff258392009-06-12 14:14:19 +0300374 /* FIXME: threshold value not set */
375
376 ret = wl12xx_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
377 if (ret < 0) {
378 wl12xx_warning("failed to set pd threshold: %d", ret);
379 goto out;
380 }
381
382out:
383 kfree(pd);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300384 return 0;
385}
386
387int wl12xx_acx_slot(struct wl12xx *wl, enum acx_slot_type slot_time)
388{
Kalle Valoff258392009-06-12 14:14:19 +0300389 struct acx_slot *slot;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300390 int ret;
391
392 wl12xx_debug(DEBUG_ACX, "acx slot");
393
Kalle Valoff258392009-06-12 14:14:19 +0300394 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
395 if (!slot) {
396 ret = -ENOMEM;
397 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300398 }
399
Kalle Valoff258392009-06-12 14:14:19 +0300400 slot->wone_index = STATION_WONE_INDEX;
401 slot->slot_time = slot_time;
402
403 ret = wl12xx_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
404 if (ret < 0) {
405 wl12xx_warning("failed to set slot time: %d", ret);
406 goto out;
407 }
408
409out:
410 kfree(slot);
411 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300412}
413
414int wl12xx_acx_group_address_tbl(struct wl12xx *wl)
415{
Kalle Valoff258392009-06-12 14:14:19 +0300416 struct acx_dot11_grp_addr_tbl *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300417 int ret;
418
419 wl12xx_debug(DEBUG_ACX, "acx group address tbl");
420
Kalle Valoff258392009-06-12 14:14:19 +0300421 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
422 if (!acx) {
423 ret = -ENOMEM;
424 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300425 }
426
Kalle Valoff258392009-06-12 14:14:19 +0300427 /* MAC filtering */
428 acx->enabled = 0;
429 acx->num_groups = 0;
430 memset(acx->mac_table, 0, ADDRESS_GROUP_MAX_LEN);
431
432 ret = wl12xx_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
433 acx, sizeof(*acx));
434 if (ret < 0) {
435 wl12xx_warning("failed to set group addr table: %d", ret);
436 goto out;
437 }
438
439out:
440 kfree(acx);
441 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300442}
443
444int wl12xx_acx_service_period_timeout(struct wl12xx *wl)
445{
Kalle Valoff258392009-06-12 14:14:19 +0300446 struct acx_rx_timeout *rx_timeout;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300447 int ret;
448
Kalle Valoff258392009-06-12 14:14:19 +0300449 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL);
450 if (!rx_timeout) {
451 ret = -ENOMEM;
452 goto out;
453 }
454
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300455 wl12xx_debug(DEBUG_ACX, "acx service period timeout");
456
Kalle Valoff258392009-06-12 14:14:19 +0300457 rx_timeout->ps_poll_timeout = RX_TIMEOUT_PS_POLL_DEF;
458 rx_timeout->upsd_timeout = RX_TIMEOUT_UPSD_DEF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300459
Kalle Valoff258392009-06-12 14:14:19 +0300460 ret = wl12xx_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
461 rx_timeout, sizeof(*rx_timeout));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300462 if (ret < 0) {
463 wl12xx_warning("failed to set service period timeout: %d",
464 ret);
Kalle Valoff258392009-06-12 14:14:19 +0300465 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300466 }
467
Kalle Valoff258392009-06-12 14:14:19 +0300468out:
469 kfree(rx_timeout);
470 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300471}
472
473int wl12xx_acx_rts_threshold(struct wl12xx *wl, u16 rts_threshold)
474{
Kalle Valoff258392009-06-12 14:14:19 +0300475 struct acx_rts_threshold *rts;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300476 int ret;
477
478 wl12xx_debug(DEBUG_ACX, "acx rts threshold");
479
Kalle Valoff258392009-06-12 14:14:19 +0300480 rts = kzalloc(sizeof(*rts), GFP_KERNEL);
481 if (!rts) {
482 ret = -ENOMEM;
483 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300484 }
485
Kalle Valoff258392009-06-12 14:14:19 +0300486 rts->threshold = rts_threshold;
487
488 ret = wl12xx_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
489 if (ret < 0) {
490 wl12xx_warning("failed to set rts threshold: %d", ret);
491 goto out;
492 }
493
494out:
495 kfree(rts);
496 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300497}
498
499int wl12xx_acx_beacon_filter_opt(struct wl12xx *wl)
500{
Kalle Valoff258392009-06-12 14:14:19 +0300501 struct acx_beacon_filter_option *beacon_filter;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300502 int ret;
503
504 wl12xx_debug(DEBUG_ACX, "acx beacon filter opt");
505
Kalle Valoff258392009-06-12 14:14:19 +0300506 beacon_filter = kzalloc(sizeof(*beacon_filter), GFP_KERNEL);
507 if (!beacon_filter) {
508 ret = -ENOMEM;
509 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300510 }
511
Kalle Valoff258392009-06-12 14:14:19 +0300512 beacon_filter->enable = 0;
513 beacon_filter->max_num_beacons = 0;
514
515 ret = wl12xx_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
516 beacon_filter, sizeof(*beacon_filter));
517 if (ret < 0) {
518 wl12xx_warning("failed to set beacon filter opt: %d", ret);
519 goto out;
520 }
521
522out:
523 kfree(beacon_filter);
524 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300525}
526
527int wl12xx_acx_beacon_filter_table(struct wl12xx *wl)
528{
Kalle Valoff258392009-06-12 14:14:19 +0300529 struct acx_beacon_filter_ie_table *ie_table;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300530 int ret;
531
532 wl12xx_debug(DEBUG_ACX, "acx beacon filter table");
533
Kalle Valoff258392009-06-12 14:14:19 +0300534 ie_table = kzalloc(sizeof(*ie_table), GFP_KERNEL);
535 if (!ie_table) {
536 ret = -ENOMEM;
537 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300538 }
539
Kalle Valoff258392009-06-12 14:14:19 +0300540 ie_table->num_ie = 0;
541 memset(ie_table->table, 0, BEACON_FILTER_TABLE_MAX_SIZE);
542
543 ret = wl12xx_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
544 ie_table, sizeof(*ie_table));
545 if (ret < 0) {
546 wl12xx_warning("failed to set beacon filter table: %d", ret);
547 goto out;
548 }
549
550out:
551 kfree(ie_table);
552 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300553}
554
555int wl12xx_acx_sg_enable(struct wl12xx *wl)
556{
Kalle Valoff258392009-06-12 14:14:19 +0300557 struct acx_bt_wlan_coex *pta;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300558 int ret;
559
560 wl12xx_debug(DEBUG_ACX, "acx sg enable");
561
Kalle Valoff258392009-06-12 14:14:19 +0300562 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
563 if (!pta) {
564 ret = -ENOMEM;
565 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300566 }
567
Kalle Valoff258392009-06-12 14:14:19 +0300568 pta->enable = SG_ENABLE;
569
570 ret = wl12xx_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
571 if (ret < 0) {
572 wl12xx_warning("failed to set softgemini enable: %d", ret);
573 goto out;
574 }
575
576out:
577 kfree(pta);
578 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300579}
580
581int wl12xx_acx_sg_cfg(struct wl12xx *wl)
582{
Kalle Valoff258392009-06-12 14:14:19 +0300583 struct acx_bt_wlan_coex_param *param;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300584 int ret;
585
586 wl12xx_debug(DEBUG_ACX, "acx sg cfg");
587
Kalle Valoff258392009-06-12 14:14:19 +0300588 param = kzalloc(sizeof(*param), GFP_KERNEL);
589 if (!param) {
590 ret = -ENOMEM;
591 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300592 }
593
Kalle Valoff258392009-06-12 14:14:19 +0300594 /* BT-WLAN coext parameters */
595 param->min_rate = RATE_INDEX_24MBPS;
596 param->bt_hp_max_time = PTA_BT_HP_MAXTIME_DEF;
597 param->wlan_hp_max_time = PTA_WLAN_HP_MAX_TIME_DEF;
598 param->sense_disable_timer = PTA_SENSE_DISABLE_TIMER_DEF;
599 param->rx_time_bt_hp = PTA_PROTECTIVE_RX_TIME_DEF;
600 param->tx_time_bt_hp = PTA_PROTECTIVE_TX_TIME_DEF;
601 param->rx_time_bt_hp_fast = PTA_PROTECTIVE_RX_TIME_FAST_DEF;
602 param->tx_time_bt_hp_fast = PTA_PROTECTIVE_TX_TIME_FAST_DEF;
603 param->wlan_cycle_fast = PTA_CYCLE_TIME_FAST_DEF;
604 param->bt_anti_starvation_period = PTA_ANTI_STARVE_PERIOD_DEF;
605 param->next_bt_lp_packet = PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF;
606 param->wake_up_beacon = PTA_TIME_BEFORE_BEACON_DEF;
607 param->hp_dm_max_guard_time = PTA_HPDM_MAX_TIME_DEF;
608 param->next_wlan_packet = PTA_TIME_OUT_NEXT_WLAN_DEF;
609 param->antenna_type = PTA_ANTENNA_TYPE_DEF;
610 param->signal_type = PTA_SIGNALING_TYPE_DEF;
611 param->afh_leverage_on = PTA_AFH_LEVERAGE_ON_DEF;
612 param->quiet_cycle_num = PTA_NUMBER_QUIET_CYCLE_DEF;
613 param->max_cts = PTA_MAX_NUM_CTS_DEF;
614 param->wlan_packets_num = PTA_NUMBER_OF_WLAN_PACKETS_DEF;
615 param->bt_packets_num = PTA_NUMBER_OF_BT_PACKETS_DEF;
616 param->missed_rx_avalanche = PTA_RX_FOR_AVALANCHE_DEF;
617 param->wlan_elp_hp = PTA_ELP_HP_DEF;
618 param->bt_anti_starvation_cycles = PTA_ANTI_STARVE_NUM_CYCLE_DEF;
619 param->ack_mode_dual_ant = PTA_ACK_MODE_DEF;
620 param->pa_sd_enable = PTA_ALLOW_PA_SD_DEF;
621 param->pta_auto_mode_enable = PTA_AUTO_MODE_NO_CTS_DEF;
622 param->bt_hp_respected_num = PTA_BT_HP_RESPECTED_DEF;
623
624 ret = wl12xx_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
625 if (ret < 0) {
626 wl12xx_warning("failed to set sg config: %d", ret);
627 goto out;
628 }
629
630out:
631 kfree(param);
632 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300633}
634
635int wl12xx_acx_cca_threshold(struct wl12xx *wl)
636{
Kalle Valoff258392009-06-12 14:14:19 +0300637 struct acx_energy_detection *detection;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300638 int ret;
639
640 wl12xx_debug(DEBUG_ACX, "acx cca threshold");
641
Kalle Valoff258392009-06-12 14:14:19 +0300642 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
643 if (!detection) {
644 ret = -ENOMEM;
645 goto out;
646 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300647
Kalle Valoff258392009-06-12 14:14:19 +0300648 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
649 detection->tx_energy_detection = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300650
Kalle Valoff258392009-06-12 14:14:19 +0300651 ret = wl12xx_cmd_configure(wl, ACX_CCA_THRESHOLD,
652 detection, sizeof(*detection));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300653 if (ret < 0) {
654 wl12xx_warning("failed to set cca threshold: %d", ret);
655 return ret;
656 }
657
Kalle Valoff258392009-06-12 14:14:19 +0300658out:
659 kfree(detection);
660 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300661}
662
663int wl12xx_acx_bcn_dtim_options(struct wl12xx *wl)
664{
Kalle Valoff258392009-06-12 14:14:19 +0300665 struct acx_beacon_broadcast *bb;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300666 int ret;
667
668 wl12xx_debug(DEBUG_ACX, "acx bcn dtim options");
669
Kalle Valoff258392009-06-12 14:14:19 +0300670 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
671 if (!bb) {
672 ret = -ENOMEM;
673 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300674 }
675
Kalle Valoff258392009-06-12 14:14:19 +0300676 bb->beacon_rx_timeout = BCN_RX_TIMEOUT_DEF_VALUE;
677 bb->broadcast_timeout = BROADCAST_RX_TIMEOUT_DEF_VALUE;
678 bb->rx_broadcast_in_ps = RX_BROADCAST_IN_PS_DEF_VALUE;
679 bb->ps_poll_threshold = CONSECUTIVE_PS_POLL_FAILURE_DEF;
680
681 ret = wl12xx_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
682 if (ret < 0) {
683 wl12xx_warning("failed to set rx config: %d", ret);
684 goto out;
685 }
686
687out:
688 kfree(bb);
689 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300690}
691
692int wl12xx_acx_aid(struct wl12xx *wl, u16 aid)
693{
Kalle Valoff258392009-06-12 14:14:19 +0300694 struct acx_aid *acx_aid;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300695 int ret;
696
697 wl12xx_debug(DEBUG_ACX, "acx aid");
698
Kalle Valoff258392009-06-12 14:14:19 +0300699 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
700 if (!acx_aid) {
701 ret = -ENOMEM;
702 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300703 }
704
Kalle Valoff258392009-06-12 14:14:19 +0300705 acx_aid->aid = aid;
706
707 ret = wl12xx_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
708 if (ret < 0) {
709 wl12xx_warning("failed to set aid: %d", ret);
710 goto out;
711 }
712
713out:
714 kfree(acx_aid);
715 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300716}
717
718int wl12xx_acx_event_mbox_mask(struct wl12xx *wl, u32 event_mask)
719{
Kalle Valoff258392009-06-12 14:14:19 +0300720 struct acx_event_mask *mask;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300721 int ret;
722
723 wl12xx_debug(DEBUG_ACX, "acx event mbox mask");
724
Kalle Valoff258392009-06-12 14:14:19 +0300725 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
726 if (!mask) {
727 ret = -ENOMEM;
728 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300729 }
730
Kalle Valoff258392009-06-12 14:14:19 +0300731 /* high event mask is unused */
732 mask->high_event_mask = 0xffffffff;
733
734 mask->event_mask = event_mask;
735
736 ret = wl12xx_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
737 mask, sizeof(*mask));
738 if (ret < 0) {
Ari Kauppic518a732009-06-12 14:16:07 +0300739 wl12xx_warning("failed to set acx_event_mbox_mask: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300740 goto out;
741 }
742
743out:
744 kfree(mask);
745 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300746}
747
748int wl12xx_acx_set_preamble(struct wl12xx *wl, enum acx_preamble_type preamble)
749{
Kalle Valoff258392009-06-12 14:14:19 +0300750 struct acx_preamble *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300751 int ret;
752
753 wl12xx_debug(DEBUG_ACX, "acx_set_preamble");
754
Kalle Valoff258392009-06-12 14:14:19 +0300755 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
756 if (!acx) {
757 ret = -ENOMEM;
758 goto out;
759 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300760
Kalle Valoff258392009-06-12 14:14:19 +0300761 acx->preamble = preamble;
762
763 ret = wl12xx_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300764 if (ret < 0) {
765 wl12xx_warning("Setting of preamble failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300766 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300767 }
Kalle Valoff258392009-06-12 14:14:19 +0300768
769out:
770 kfree(acx);
771 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300772}
773
774int wl12xx_acx_cts_protect(struct wl12xx *wl,
775 enum acx_ctsprotect_type ctsprotect)
776{
Kalle Valoff258392009-06-12 14:14:19 +0300777 struct acx_ctsprotect *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300778 int ret;
779
780 wl12xx_debug(DEBUG_ACX, "acx_set_ctsprotect");
781
Kalle Valoff258392009-06-12 14:14:19 +0300782 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
783 if (!acx) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300784 ret = -ENOMEM;
785 goto out;
786 }
787
Kalle Valoff258392009-06-12 14:14:19 +0300788 acx->ctsprotect = ctsprotect;
789
790 ret = wl12xx_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300791 if (ret < 0) {
Kalle Valoff258392009-06-12 14:14:19 +0300792 wl12xx_warning("Setting of ctsprotect failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300793 goto out;
794 }
795
Kalle Valoff258392009-06-12 14:14:19 +0300796out:
797 kfree(acx);
798 return ret;
799}
800
801int wl12xx_acx_tsf_info(struct wl12xx *wl, u64 *mactime)
802{
803 struct acx_tsf_info *tsf_info;
804 int ret;
805
806 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
807 if (!tsf_info) {
808 ret = -ENOMEM;
809 goto out;
810 }
811
812 ret = wl12xx_cmd_interrogate(wl, ACX_TSF_INFO,
813 tsf_info, sizeof(*tsf_info));
814 if (ret < 0) {
815 wl12xx_warning("ACX_FW_REV interrogate failed");
816 goto out;
817 }
818
819 *mactime = tsf_info->current_tsf_lsb |
820 (tsf_info->current_tsf_msb << 31);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300821
822out:
Kalle Valoff258392009-06-12 14:14:19 +0300823 kfree(tsf_info);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300824 return ret;
825}
Kalle Valoff258392009-06-12 14:14:19 +0300826
827int wl12xx_acx_statistics(struct wl12xx *wl, struct acx_statistics *stats)
828{
829 int ret;
830
831 wl12xx_debug(DEBUG_ACX, "acx statistics");
832
833 ret = wl12xx_cmd_interrogate(wl, ACX_STATISTICS, stats,
834 sizeof(*stats));
835 if (ret < 0) {
836 wl12xx_warning("acx statistics failed: %d", ret);
837 return -ENOMEM;
838 }
839
840 return 0;
841}