blob: d0daf69558f00a1e453e55b0e58c042a82ec6f3b [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
99int wl12xx_acx_wake_up_conditions(struct wl12xx *wl, u8 listen_interval)
100{
Kalle Valoff258392009-06-12 14:14:19 +0300101 struct acx_wake_up_condition *wake_up;
102 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300103
104 wl12xx_debug(DEBUG_ACX, "acx wake up conditions");
105
Kalle Valoff258392009-06-12 14:14:19 +0300106 wake_up = kzalloc(sizeof(*wake_up), GFP_KERNEL);
107 if (!wake_up) {
108 ret = -ENOMEM;
109 goto out;
110 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300111
Kalle Valoff258392009-06-12 14:14:19 +0300112 wake_up->wake_up_event = WAKE_UP_EVENT_DTIM_BITMAP;
113 wake_up->listen_interval = listen_interval;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300114
Kalle Valoff258392009-06-12 14:14:19 +0300115 ret = wl12xx_cmd_configure(wl, ACX_WAKE_UP_CONDITIONS,
116 wake_up, sizeof(*wake_up));
117 if (ret < 0) {
118 wl12xx_warning("could not set wake up conditions: %d", ret);
119 goto out;
120 }
121
122out:
123 kfree(wake_up);
124 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300125}
126
127int wl12xx_acx_sleep_auth(struct wl12xx *wl, u8 sleep_auth)
128{
Kalle Valoff258392009-06-12 14:14:19 +0300129 struct acx_sleep_auth *auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300130 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300131
132 wl12xx_debug(DEBUG_ACX, "acx sleep auth");
133
Kalle Valoff258392009-06-12 14:14:19 +0300134 auth = kzalloc(sizeof(*auth), GFP_KERNEL);
135 if (!auth) {
136 ret = -ENOMEM;
137 goto out;
138 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300139
Kalle Valoff258392009-06-12 14:14:19 +0300140 auth->sleep_auth = sleep_auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300141
Kalle Valoff258392009-06-12 14:14:19 +0300142 ret = wl12xx_cmd_configure(wl, ACX_SLEEP_AUTH, auth, sizeof(*auth));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300143 if (ret < 0)
144 return ret;
145
Kalle Valoff258392009-06-12 14:14:19 +0300146out:
147 kfree(auth);
148 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300149}
150
151int wl12xx_acx_fw_version(struct wl12xx *wl, char *buf, size_t len)
152{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300153 struct acx_revision *rev;
154 int ret;
155
156 wl12xx_debug(DEBUG_ACX, "acx fw rev");
157
Kalle Valoff258392009-06-12 14:14:19 +0300158 rev = kzalloc(sizeof(*rev), GFP_KERNEL);
159 if (!rev) {
160 ret = -ENOMEM;
161 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300162 }
163
Kalle Valoff258392009-06-12 14:14:19 +0300164 ret = wl12xx_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
165 if (ret < 0) {
166 wl12xx_warning("ACX_FW_REV interrogate failed");
167 goto out;
168 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300169
170 /* be careful with the buffer sizes */
171 strncpy(buf, rev->fw_version, min(len, sizeof(rev->fw_version)));
172
173 /*
174 * if the firmware version string is exactly
175 * sizeof(rev->fw_version) long or fw_len is less than
176 * sizeof(rev->fw_version) it won't be null terminated
177 */
178 buf[min(len, sizeof(rev->fw_version)) - 1] = '\0';
179
Kalle Valoff258392009-06-12 14:14:19 +0300180out:
181 kfree(rev);
182 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300183}
184
185int wl12xx_acx_tx_power(struct wl12xx *wl, int power)
186{
Kalle Valoff258392009-06-12 14:14:19 +0300187 struct acx_current_tx_power *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300188 int ret;
189
190 wl12xx_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
191
192 if (power < 0 || power > 25)
193 return -EINVAL;
194
Kalle Valoff258392009-06-12 14:14:19 +0300195 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
196 if (!acx) {
197 ret = -ENOMEM;
198 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300199 }
200
Kalle Valoff258392009-06-12 14:14:19 +0300201 acx->current_tx_power = power * 10;
202
203 ret = wl12xx_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
204 if (ret < 0) {
205 wl12xx_warning("configure of tx power failed: %d", ret);
206 goto out;
207 }
208
209out:
210 kfree(acx);
211 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300212}
213
214int wl12xx_acx_feature_cfg(struct wl12xx *wl)
215{
Kalle Valoff258392009-06-12 14:14:19 +0300216 struct acx_feature_config *feature;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300217 int ret;
218
219 wl12xx_debug(DEBUG_ACX, "acx feature cfg");
220
Kalle Valoff258392009-06-12 14:14:19 +0300221 feature = kzalloc(sizeof(*feature), GFP_KERNEL);
222 if (!feature) {
223 ret = -ENOMEM;
224 goto out;
225 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300226
227 /* DF_ENCRYPTION_DISABLE and DF_SNIFF_MODE_ENABLE are disabled */
Kalle Valoff258392009-06-12 14:14:19 +0300228 feature->data_flow_options = 0;
229 feature->options = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300230
Kalle Valoff258392009-06-12 14:14:19 +0300231 ret = wl12xx_cmd_configure(wl, ACX_FEATURE_CFG,
232 feature, sizeof(*feature));
233 if (ret < 0) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300234 wl12xx_error("Couldnt set HW encryption");
Kalle Valoff258392009-06-12 14:14:19 +0300235 goto out;
236 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300237
Kalle Valoff258392009-06-12 14:14:19 +0300238out:
239 kfree(feature);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300240 return ret;
241}
242
Kalle Valoff258392009-06-12 14:14:19 +0300243int wl12xx_acx_mem_map(struct wl12xx *wl, struct acx_header *mem_map,
244 size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300245{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300246 int ret;
247
248 wl12xx_debug(DEBUG_ACX, "acx mem map");
249
Kalle Valoff258392009-06-12 14:14:19 +0300250 ret = wl12xx_cmd_interrogate(wl, ACX_MEM_MAP, mem_map, len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300251 if (ret < 0)
252 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300253
254 return 0;
255}
256
257int wl12xx_acx_data_path_params(struct wl12xx *wl,
Kalle Valoff258392009-06-12 14:14:19 +0300258 struct acx_data_path_params_resp *resp)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300259{
Kalle Valoff258392009-06-12 14:14:19 +0300260 struct acx_data_path_params *params;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300261 int ret;
262
263 wl12xx_debug(DEBUG_ACX, "acx data path params");
264
Kalle Valoff258392009-06-12 14:14:19 +0300265 params = kzalloc(sizeof(*params), GFP_KERNEL);
266 if (!params) {
267 ret = -ENOMEM;
268 goto out;
269 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300270
Kalle Valoff258392009-06-12 14:14:19 +0300271 params->rx_packet_ring_chunk_size = DP_RX_PACKET_RING_CHUNK_SIZE;
272 params->tx_packet_ring_chunk_size = DP_TX_PACKET_RING_CHUNK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300273
Kalle Valoff258392009-06-12 14:14:19 +0300274 params->rx_packet_ring_chunk_num = DP_RX_PACKET_RING_CHUNK_NUM;
275 params->tx_packet_ring_chunk_num = DP_TX_PACKET_RING_CHUNK_NUM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300276
Kalle Valoff258392009-06-12 14:14:19 +0300277 params->tx_complete_threshold = 1;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300278
Kalle Valoff258392009-06-12 14:14:19 +0300279 params->tx_complete_ring_depth = FW_TX_CMPLT_BLOCK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300280
Kalle Valoff258392009-06-12 14:14:19 +0300281 params->tx_complete_timeout = DP_TX_COMPLETE_TIME_OUT;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300282
Kalle Valoff258392009-06-12 14:14:19 +0300283 ret = wl12xx_cmd_configure(wl, ACX_DATA_PATH_PARAMS,
284 params, sizeof(*params));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300285 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +0300286 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300287
Kalle Valoff258392009-06-12 14:14:19 +0300288 /* FIXME: shouldn't this be ACX_DATA_PATH_RESP_PARAMS? */
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300289 ret = wl12xx_cmd_interrogate(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300290 resp, sizeof(*resp));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300291
292 if (ret < 0) {
293 wl12xx_warning("failed to read data path parameters: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300294 goto out;
295 } else if (resp->header.cmd.status != CMD_STATUS_SUCCESS) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300296 wl12xx_warning("data path parameter acx status failed");
Kalle Valoff258392009-06-12 14:14:19 +0300297 ret = -EIO;
298 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300299 }
300
Kalle Valoff258392009-06-12 14:14:19 +0300301out:
302 kfree(params);
303 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300304}
305
306int wl12xx_acx_rx_msdu_life_time(struct wl12xx *wl, u32 life_time)
307{
Kalle Valoff258392009-06-12 14:14:19 +0300308 struct acx_rx_msdu_lifetime *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300309 int ret;
310
311 wl12xx_debug(DEBUG_ACX, "acx rx msdu life time");
312
Kalle Valoff258392009-06-12 14:14:19 +0300313 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
314 if (!acx) {
315 ret = -ENOMEM;
316 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300317 }
318
Kalle Valoff258392009-06-12 14:14:19 +0300319 ret = wl12xx_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
320 acx, sizeof(*acx));
321 if (ret < 0) {
322 wl12xx_warning("failed to set rx msdu life time: %d", ret);
323 goto out;
324 }
325
326out:
327 kfree(acx);
328 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300329}
330
331int wl12xx_acx_rx_config(struct wl12xx *wl, u32 config, u32 filter)
332{
Kalle Valoff258392009-06-12 14:14:19 +0300333 struct acx_rx_config *rx_config;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300334 int ret;
335
336 wl12xx_debug(DEBUG_ACX, "acx rx config");
337
Kalle Valoff258392009-06-12 14:14:19 +0300338 rx_config = kzalloc(sizeof(*rx_config), GFP_KERNEL);
339 if (!rx_config) {
340 ret = -ENOMEM;
341 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300342 }
343
Kalle Valoff258392009-06-12 14:14:19 +0300344 rx_config->config_options = config;
345 rx_config->filter_options = filter;
346
347 ret = wl12xx_cmd_configure(wl, ACX_RX_CFG,
348 rx_config, sizeof(*rx_config));
349 if (ret < 0) {
350 wl12xx_warning("failed to set rx config: %d", ret);
351 goto out;
352 }
353
354out:
355 kfree(rx_config);
356 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300357}
358
359int wl12xx_acx_pd_threshold(struct wl12xx *wl)
360{
Kalle Valoff258392009-06-12 14:14:19 +0300361 struct acx_packet_detection *pd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300362 int ret;
363
364 wl12xx_debug(DEBUG_ACX, "acx data pd threshold");
365
Kalle Valoff258392009-06-12 14:14:19 +0300366 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
367 if (!pd) {
368 ret = -ENOMEM;
369 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300370 }
371
Kalle Valoff258392009-06-12 14:14:19 +0300372 /* FIXME: threshold value not set */
373
374 ret = wl12xx_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
375 if (ret < 0) {
376 wl12xx_warning("failed to set pd threshold: %d", ret);
377 goto out;
378 }
379
380out:
381 kfree(pd);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300382 return 0;
383}
384
385int wl12xx_acx_slot(struct wl12xx *wl, enum acx_slot_type slot_time)
386{
Kalle Valoff258392009-06-12 14:14:19 +0300387 struct acx_slot *slot;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300388 int ret;
389
390 wl12xx_debug(DEBUG_ACX, "acx slot");
391
Kalle Valoff258392009-06-12 14:14:19 +0300392 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
393 if (!slot) {
394 ret = -ENOMEM;
395 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300396 }
397
Kalle Valoff258392009-06-12 14:14:19 +0300398 slot->wone_index = STATION_WONE_INDEX;
399 slot->slot_time = slot_time;
400
401 ret = wl12xx_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
402 if (ret < 0) {
403 wl12xx_warning("failed to set slot time: %d", ret);
404 goto out;
405 }
406
407out:
408 kfree(slot);
409 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300410}
411
412int wl12xx_acx_group_address_tbl(struct wl12xx *wl)
413{
Kalle Valoff258392009-06-12 14:14:19 +0300414 struct acx_dot11_grp_addr_tbl *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300415 int ret;
416
417 wl12xx_debug(DEBUG_ACX, "acx group address tbl");
418
Kalle Valoff258392009-06-12 14:14:19 +0300419 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
420 if (!acx) {
421 ret = -ENOMEM;
422 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300423 }
424
Kalle Valoff258392009-06-12 14:14:19 +0300425 /* MAC filtering */
426 acx->enabled = 0;
427 acx->num_groups = 0;
428 memset(acx->mac_table, 0, ADDRESS_GROUP_MAX_LEN);
429
430 ret = wl12xx_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
431 acx, sizeof(*acx));
432 if (ret < 0) {
433 wl12xx_warning("failed to set group addr table: %d", ret);
434 goto out;
435 }
436
437out:
438 kfree(acx);
439 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300440}
441
442int wl12xx_acx_service_period_timeout(struct wl12xx *wl)
443{
Kalle Valoff258392009-06-12 14:14:19 +0300444 struct acx_rx_timeout *rx_timeout;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300445 int ret;
446
Kalle Valoff258392009-06-12 14:14:19 +0300447 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL);
448 if (!rx_timeout) {
449 ret = -ENOMEM;
450 goto out;
451 }
452
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300453 wl12xx_debug(DEBUG_ACX, "acx service period timeout");
454
Kalle Valoff258392009-06-12 14:14:19 +0300455 rx_timeout->ps_poll_timeout = RX_TIMEOUT_PS_POLL_DEF;
456 rx_timeout->upsd_timeout = RX_TIMEOUT_UPSD_DEF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300457
Kalle Valoff258392009-06-12 14:14:19 +0300458 ret = wl12xx_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
459 rx_timeout, sizeof(*rx_timeout));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300460 if (ret < 0) {
461 wl12xx_warning("failed to set service period timeout: %d",
462 ret);
Kalle Valoff258392009-06-12 14:14:19 +0300463 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300464 }
465
Kalle Valoff258392009-06-12 14:14:19 +0300466out:
467 kfree(rx_timeout);
468 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300469}
470
471int wl12xx_acx_rts_threshold(struct wl12xx *wl, u16 rts_threshold)
472{
Kalle Valoff258392009-06-12 14:14:19 +0300473 struct acx_rts_threshold *rts;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300474 int ret;
475
476 wl12xx_debug(DEBUG_ACX, "acx rts threshold");
477
Kalle Valoff258392009-06-12 14:14:19 +0300478 rts = kzalloc(sizeof(*rts), GFP_KERNEL);
479 if (!rts) {
480 ret = -ENOMEM;
481 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300482 }
483
Kalle Valoff258392009-06-12 14:14:19 +0300484 rts->threshold = rts_threshold;
485
486 ret = wl12xx_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
487 if (ret < 0) {
488 wl12xx_warning("failed to set rts threshold: %d", ret);
489 goto out;
490 }
491
492out:
493 kfree(rts);
494 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300495}
496
497int wl12xx_acx_beacon_filter_opt(struct wl12xx *wl)
498{
Kalle Valoff258392009-06-12 14:14:19 +0300499 struct acx_beacon_filter_option *beacon_filter;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300500 int ret;
501
502 wl12xx_debug(DEBUG_ACX, "acx beacon filter opt");
503
Kalle Valoff258392009-06-12 14:14:19 +0300504 beacon_filter = kzalloc(sizeof(*beacon_filter), GFP_KERNEL);
505 if (!beacon_filter) {
506 ret = -ENOMEM;
507 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300508 }
509
Kalle Valoff258392009-06-12 14:14:19 +0300510 beacon_filter->enable = 0;
511 beacon_filter->max_num_beacons = 0;
512
513 ret = wl12xx_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
514 beacon_filter, sizeof(*beacon_filter));
515 if (ret < 0) {
516 wl12xx_warning("failed to set beacon filter opt: %d", ret);
517 goto out;
518 }
519
520out:
521 kfree(beacon_filter);
522 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300523}
524
525int wl12xx_acx_beacon_filter_table(struct wl12xx *wl)
526{
Kalle Valoff258392009-06-12 14:14:19 +0300527 struct acx_beacon_filter_ie_table *ie_table;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300528 int ret;
529
530 wl12xx_debug(DEBUG_ACX, "acx beacon filter table");
531
Kalle Valoff258392009-06-12 14:14:19 +0300532 ie_table = kzalloc(sizeof(*ie_table), GFP_KERNEL);
533 if (!ie_table) {
534 ret = -ENOMEM;
535 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300536 }
537
Kalle Valoff258392009-06-12 14:14:19 +0300538 ie_table->num_ie = 0;
539 memset(ie_table->table, 0, BEACON_FILTER_TABLE_MAX_SIZE);
540
541 ret = wl12xx_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
542 ie_table, sizeof(*ie_table));
543 if (ret < 0) {
544 wl12xx_warning("failed to set beacon filter table: %d", ret);
545 goto out;
546 }
547
548out:
549 kfree(ie_table);
550 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300551}
552
553int wl12xx_acx_sg_enable(struct wl12xx *wl)
554{
Kalle Valoff258392009-06-12 14:14:19 +0300555 struct acx_bt_wlan_coex *pta;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300556 int ret;
557
558 wl12xx_debug(DEBUG_ACX, "acx sg enable");
559
Kalle Valoff258392009-06-12 14:14:19 +0300560 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
561 if (!pta) {
562 ret = -ENOMEM;
563 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300564 }
565
Kalle Valoff258392009-06-12 14:14:19 +0300566 pta->enable = SG_ENABLE;
567
568 ret = wl12xx_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
569 if (ret < 0) {
570 wl12xx_warning("failed to set softgemini enable: %d", ret);
571 goto out;
572 }
573
574out:
575 kfree(pta);
576 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300577}
578
579int wl12xx_acx_sg_cfg(struct wl12xx *wl)
580{
Kalle Valoff258392009-06-12 14:14:19 +0300581 struct acx_bt_wlan_coex_param *param;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300582 int ret;
583
584 wl12xx_debug(DEBUG_ACX, "acx sg cfg");
585
Kalle Valoff258392009-06-12 14:14:19 +0300586 param = kzalloc(sizeof(*param), GFP_KERNEL);
587 if (!param) {
588 ret = -ENOMEM;
589 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300590 }
591
Kalle Valoff258392009-06-12 14:14:19 +0300592 /* BT-WLAN coext parameters */
593 param->min_rate = RATE_INDEX_24MBPS;
594 param->bt_hp_max_time = PTA_BT_HP_MAXTIME_DEF;
595 param->wlan_hp_max_time = PTA_WLAN_HP_MAX_TIME_DEF;
596 param->sense_disable_timer = PTA_SENSE_DISABLE_TIMER_DEF;
597 param->rx_time_bt_hp = PTA_PROTECTIVE_RX_TIME_DEF;
598 param->tx_time_bt_hp = PTA_PROTECTIVE_TX_TIME_DEF;
599 param->rx_time_bt_hp_fast = PTA_PROTECTIVE_RX_TIME_FAST_DEF;
600 param->tx_time_bt_hp_fast = PTA_PROTECTIVE_TX_TIME_FAST_DEF;
601 param->wlan_cycle_fast = PTA_CYCLE_TIME_FAST_DEF;
602 param->bt_anti_starvation_period = PTA_ANTI_STARVE_PERIOD_DEF;
603 param->next_bt_lp_packet = PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF;
604 param->wake_up_beacon = PTA_TIME_BEFORE_BEACON_DEF;
605 param->hp_dm_max_guard_time = PTA_HPDM_MAX_TIME_DEF;
606 param->next_wlan_packet = PTA_TIME_OUT_NEXT_WLAN_DEF;
607 param->antenna_type = PTA_ANTENNA_TYPE_DEF;
608 param->signal_type = PTA_SIGNALING_TYPE_DEF;
609 param->afh_leverage_on = PTA_AFH_LEVERAGE_ON_DEF;
610 param->quiet_cycle_num = PTA_NUMBER_QUIET_CYCLE_DEF;
611 param->max_cts = PTA_MAX_NUM_CTS_DEF;
612 param->wlan_packets_num = PTA_NUMBER_OF_WLAN_PACKETS_DEF;
613 param->bt_packets_num = PTA_NUMBER_OF_BT_PACKETS_DEF;
614 param->missed_rx_avalanche = PTA_RX_FOR_AVALANCHE_DEF;
615 param->wlan_elp_hp = PTA_ELP_HP_DEF;
616 param->bt_anti_starvation_cycles = PTA_ANTI_STARVE_NUM_CYCLE_DEF;
617 param->ack_mode_dual_ant = PTA_ACK_MODE_DEF;
618 param->pa_sd_enable = PTA_ALLOW_PA_SD_DEF;
619 param->pta_auto_mode_enable = PTA_AUTO_MODE_NO_CTS_DEF;
620 param->bt_hp_respected_num = PTA_BT_HP_RESPECTED_DEF;
621
622 ret = wl12xx_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
623 if (ret < 0) {
624 wl12xx_warning("failed to set sg config: %d", ret);
625 goto out;
626 }
627
628out:
629 kfree(param);
630 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300631}
632
633int wl12xx_acx_cca_threshold(struct wl12xx *wl)
634{
Kalle Valoff258392009-06-12 14:14:19 +0300635 struct acx_energy_detection *detection;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300636 int ret;
637
638 wl12xx_debug(DEBUG_ACX, "acx cca threshold");
639
Kalle Valoff258392009-06-12 14:14:19 +0300640 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
641 if (!detection) {
642 ret = -ENOMEM;
643 goto out;
644 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300645
Kalle Valoff258392009-06-12 14:14:19 +0300646 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
647 detection->tx_energy_detection = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300648
Kalle Valoff258392009-06-12 14:14:19 +0300649 ret = wl12xx_cmd_configure(wl, ACX_CCA_THRESHOLD,
650 detection, sizeof(*detection));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300651 if (ret < 0) {
652 wl12xx_warning("failed to set cca threshold: %d", ret);
653 return ret;
654 }
655
Kalle Valoff258392009-06-12 14:14:19 +0300656out:
657 kfree(detection);
658 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300659}
660
661int wl12xx_acx_bcn_dtim_options(struct wl12xx *wl)
662{
Kalle Valoff258392009-06-12 14:14:19 +0300663 struct acx_beacon_broadcast *bb;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300664 int ret;
665
666 wl12xx_debug(DEBUG_ACX, "acx bcn dtim options");
667
Kalle Valoff258392009-06-12 14:14:19 +0300668 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
669 if (!bb) {
670 ret = -ENOMEM;
671 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300672 }
673
Kalle Valoff258392009-06-12 14:14:19 +0300674 bb->beacon_rx_timeout = BCN_RX_TIMEOUT_DEF_VALUE;
675 bb->broadcast_timeout = BROADCAST_RX_TIMEOUT_DEF_VALUE;
676 bb->rx_broadcast_in_ps = RX_BROADCAST_IN_PS_DEF_VALUE;
677 bb->ps_poll_threshold = CONSECUTIVE_PS_POLL_FAILURE_DEF;
678
679 ret = wl12xx_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
680 if (ret < 0) {
681 wl12xx_warning("failed to set rx config: %d", ret);
682 goto out;
683 }
684
685out:
686 kfree(bb);
687 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300688}
689
690int wl12xx_acx_aid(struct wl12xx *wl, u16 aid)
691{
Kalle Valoff258392009-06-12 14:14:19 +0300692 struct acx_aid *acx_aid;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300693 int ret;
694
695 wl12xx_debug(DEBUG_ACX, "acx aid");
696
Kalle Valoff258392009-06-12 14:14:19 +0300697 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
698 if (!acx_aid) {
699 ret = -ENOMEM;
700 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300701 }
702
Kalle Valoff258392009-06-12 14:14:19 +0300703 acx_aid->aid = aid;
704
705 ret = wl12xx_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
706 if (ret < 0) {
707 wl12xx_warning("failed to set aid: %d", ret);
708 goto out;
709 }
710
711out:
712 kfree(acx_aid);
713 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300714}
715
716int wl12xx_acx_event_mbox_mask(struct wl12xx *wl, u32 event_mask)
717{
Kalle Valoff258392009-06-12 14:14:19 +0300718 struct acx_event_mask *mask;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300719 int ret;
720
721 wl12xx_debug(DEBUG_ACX, "acx event mbox mask");
722
Kalle Valoff258392009-06-12 14:14:19 +0300723 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
724 if (!mask) {
725 ret = -ENOMEM;
726 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300727 }
728
Kalle Valoff258392009-06-12 14:14:19 +0300729 /* high event mask is unused */
730 mask->high_event_mask = 0xffffffff;
731
732 mask->event_mask = event_mask;
733
734 ret = wl12xx_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
735 mask, sizeof(*mask));
736 if (ret < 0) {
737 wl12xx_warning("failed to set aid: %d", ret);
738 goto out;
739 }
740
741out:
742 kfree(mask);
743 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300744}
745
746int wl12xx_acx_set_preamble(struct wl12xx *wl, enum acx_preamble_type preamble)
747{
Kalle Valoff258392009-06-12 14:14:19 +0300748 struct acx_preamble *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300749 int ret;
750
751 wl12xx_debug(DEBUG_ACX, "acx_set_preamble");
752
Kalle Valoff258392009-06-12 14:14:19 +0300753 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
754 if (!acx) {
755 ret = -ENOMEM;
756 goto out;
757 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300758
Kalle Valoff258392009-06-12 14:14:19 +0300759 acx->preamble = preamble;
760
761 ret = wl12xx_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300762 if (ret < 0) {
763 wl12xx_warning("Setting of preamble failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300764 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300765 }
Kalle Valoff258392009-06-12 14:14:19 +0300766
767out:
768 kfree(acx);
769 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300770}
771
772int wl12xx_acx_cts_protect(struct wl12xx *wl,
773 enum acx_ctsprotect_type ctsprotect)
774{
Kalle Valoff258392009-06-12 14:14:19 +0300775 struct acx_ctsprotect *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300776 int ret;
777
778 wl12xx_debug(DEBUG_ACX, "acx_set_ctsprotect");
779
Kalle Valoff258392009-06-12 14:14:19 +0300780 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
781 if (!acx) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300782 ret = -ENOMEM;
783 goto out;
784 }
785
Kalle Valoff258392009-06-12 14:14:19 +0300786 acx->ctsprotect = ctsprotect;
787
788 ret = wl12xx_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300789 if (ret < 0) {
Kalle Valoff258392009-06-12 14:14:19 +0300790 wl12xx_warning("Setting of ctsprotect failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300791 goto out;
792 }
793
Kalle Valoff258392009-06-12 14:14:19 +0300794out:
795 kfree(acx);
796 return ret;
797}
798
799int wl12xx_acx_tsf_info(struct wl12xx *wl, u64 *mactime)
800{
801 struct acx_tsf_info *tsf_info;
802 int ret;
803
804 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
805 if (!tsf_info) {
806 ret = -ENOMEM;
807 goto out;
808 }
809
810 ret = wl12xx_cmd_interrogate(wl, ACX_TSF_INFO,
811 tsf_info, sizeof(*tsf_info));
812 if (ret < 0) {
813 wl12xx_warning("ACX_FW_REV interrogate failed");
814 goto out;
815 }
816
817 *mactime = tsf_info->current_tsf_lsb |
818 (tsf_info->current_tsf_msb << 31);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300819
820out:
Kalle Valoff258392009-06-12 14:14:19 +0300821 kfree(tsf_info);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300822 return ret;
823}
Kalle Valoff258392009-06-12 14:14:19 +0300824
825int wl12xx_acx_statistics(struct wl12xx *wl, struct acx_statistics *stats)
826{
827 int ret;
828
829 wl12xx_debug(DEBUG_ACX, "acx statistics");
830
831 ret = wl12xx_cmd_interrogate(wl, ACX_STATISTICS, stats,
832 sizeof(*stats));
833 if (ret < 0) {
834 wl12xx_warning("acx statistics failed: %d", ret);
835 return -ENOMEM;
836 }
837
838 return 0;
839}