blob: b409c75499dd347ce45ad951f55a12929e208678 [file] [log] [blame]
Kalle Valoef2f8d42009-06-12 14:17:19 +03001#include "wl1251_acx.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +03002
3#include <linux/module.h>
4#include <linux/crc7.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +03005
Kalle Valo13674112009-06-12 14:17:25 +03006#include "wl1251.h"
Kalle Valo29d904c2009-08-07 13:35:11 +03007#include "wl1251_reg.h"
Bob Copeland0764de62009-08-07 13:32:56 +03008#include "wl1251_cmd.h"
Kalle Valoef2f8d42009-06-12 14:17:19 +03009#include "wl1251_ps.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +030010
Kalle Valo80301cd2009-06-12 14:17:39 +030011int wl1251_acx_frame_rates(struct wl1251 *wl, u8 ctrl_rate, u8 ctrl_mod,
Kalle Valo2f01a1f2009-04-29 23:33:31 +030012 u8 mgt_rate, u8 mgt_mod)
13{
Kalle Valoff258392009-06-12 14:14:19 +030014 struct acx_fw_gen_frame_rates *rates;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030015 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030016
Kalle Valo80301cd2009-06-12 14:17:39 +030017 wl1251_debug(DEBUG_ACX, "acx frame rates");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030018
Kalle Valoff258392009-06-12 14:14:19 +030019 rates = kzalloc(sizeof(*rates), GFP_KERNEL);
20 if (!rates) {
21 ret = -ENOMEM;
22 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030023 }
24
Kalle Valoff258392009-06-12 14:14:19 +030025 rates->tx_ctrl_frame_rate = ctrl_rate;
26 rates->tx_ctrl_frame_mod = ctrl_mod;
27 rates->tx_mgt_frame_rate = mgt_rate;
28 rates->tx_mgt_frame_mod = mgt_mod;
29
Kalle Valo80301cd2009-06-12 14:17:39 +030030 ret = wl1251_cmd_configure(wl, ACX_FW_GEN_FRAME_RATES,
Kalle Valoff258392009-06-12 14:14:19 +030031 rates, sizeof(*rates));
32 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +030033 wl1251_error("Failed to set FW rates and modulation");
Kalle Valoff258392009-06-12 14:14:19 +030034 goto out;
35 }
36
37out:
38 kfree(rates);
39 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030040}
41
42
Kalle Valo80301cd2009-06-12 14:17:39 +030043int wl1251_acx_station_id(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030044{
Kalle Valoff258392009-06-12 14:14:19 +030045 struct acx_dot11_station_id *mac;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030046 int ret, i;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030047
Kalle Valo80301cd2009-06-12 14:17:39 +030048 wl1251_debug(DEBUG_ACX, "acx dot11_station_id");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030049
Kalle Valoff258392009-06-12 14:14:19 +030050 mac = kzalloc(sizeof(*mac), GFP_KERNEL);
51 if (!mac) {
52 ret = -ENOMEM;
53 goto out;
54 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +030055
56 for (i = 0; i < ETH_ALEN; i++)
Kalle Valoff258392009-06-12 14:14:19 +030057 mac->mac[i] = wl->mac_addr[ETH_ALEN - 1 - i];
Kalle Valo2f01a1f2009-04-29 23:33:31 +030058
Kalle Valo80301cd2009-06-12 14:17:39 +030059 ret = wl1251_cmd_configure(wl, DOT11_STATION_ID, mac, sizeof(*mac));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030060 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +030061 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030062
Kalle Valoff258392009-06-12 14:14:19 +030063out:
64 kfree(mac);
65 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030066}
67
Kalle Valo80301cd2009-06-12 14:17:39 +030068int wl1251_acx_default_key(struct wl1251 *wl, u8 key_id)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030069{
Kalle Valoff258392009-06-12 14:14:19 +030070 struct acx_dot11_default_key *default_key;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030071 int ret;
72
Kalle Valo80301cd2009-06-12 14:17:39 +030073 wl1251_debug(DEBUG_ACX, "acx dot11_default_key (%d)", key_id);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030074
Kalle Valoff258392009-06-12 14:14:19 +030075 default_key = kzalloc(sizeof(*default_key), GFP_KERNEL);
76 if (!default_key) {
77 ret = -ENOMEM;
78 goto out;
79 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +030080
Kalle Valoff258392009-06-12 14:14:19 +030081 default_key->id = key_id;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030082
Kalle Valo80301cd2009-06-12 14:17:39 +030083 ret = wl1251_cmd_configure(wl, DOT11_DEFAULT_KEY,
Kalle Valoff258392009-06-12 14:14:19 +030084 default_key, sizeof(*default_key));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030085 if (ret < 0) {
Stefan Weilda3c8212009-07-19 15:00:39 +020086 wl1251_error("Couldn't set default key");
Kalle Valoff258392009-06-12 14:14:19 +030087 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030088 }
89
90 wl->default_key = key_id;
91
Kalle Valoff258392009-06-12 14:14:19 +030092out:
93 kfree(default_key);
94 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030095}
96
Kalle Valo80301cd2009-06-12 14:17:39 +030097int wl1251_acx_wake_up_conditions(struct wl1251 *wl, u8 wake_up_event,
Luciano Coelho9f483dc2009-06-12 14:15:46 +030098 u8 listen_interval)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030099{
Kalle Valoff258392009-06-12 14:14:19 +0300100 struct acx_wake_up_condition *wake_up;
101 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300102
Kalle Valo80301cd2009-06-12 14:17:39 +0300103 wl1251_debug(DEBUG_ACX, "acx wake up conditions");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300104
Kalle Valoff258392009-06-12 14:14:19 +0300105 wake_up = kzalloc(sizeof(*wake_up), GFP_KERNEL);
106 if (!wake_up) {
107 ret = -ENOMEM;
108 goto out;
109 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300110
Luciano Coelho9f483dc2009-06-12 14:15:46 +0300111 wake_up->wake_up_event = wake_up_event;
Kalle Valoff258392009-06-12 14:14:19 +0300112 wake_up->listen_interval = listen_interval;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300113
Kalle Valo80301cd2009-06-12 14:17:39 +0300114 ret = wl1251_cmd_configure(wl, ACX_WAKE_UP_CONDITIONS,
Kalle Valoff258392009-06-12 14:14:19 +0300115 wake_up, sizeof(*wake_up));
116 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300117 wl1251_warning("could not set wake up conditions: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300118 goto out;
119 }
120
121out:
122 kfree(wake_up);
123 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300124}
125
Kalle Valo80301cd2009-06-12 14:17:39 +0300126int wl1251_acx_sleep_auth(struct wl1251 *wl, u8 sleep_auth)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300127{
Kalle Valoff258392009-06-12 14:14:19 +0300128 struct acx_sleep_auth *auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300129 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300130
Kalle Valo80301cd2009-06-12 14:17:39 +0300131 wl1251_debug(DEBUG_ACX, "acx sleep auth");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300132
Kalle Valoff258392009-06-12 14:14:19 +0300133 auth = kzalloc(sizeof(*auth), GFP_KERNEL);
134 if (!auth) {
135 ret = -ENOMEM;
136 goto out;
137 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300138
Kalle Valoff258392009-06-12 14:14:19 +0300139 auth->sleep_auth = sleep_auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300140
Kalle Valo80301cd2009-06-12 14:17:39 +0300141 ret = wl1251_cmd_configure(wl, ACX_SLEEP_AUTH, auth, sizeof(*auth));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300142 if (ret < 0)
143 return ret;
144
Kalle Valoff258392009-06-12 14:14:19 +0300145out:
146 kfree(auth);
147 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300148}
149
Kalle Valo80301cd2009-06-12 14:17:39 +0300150int wl1251_acx_fw_version(struct wl1251 *wl, char *buf, size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300151{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300152 struct acx_revision *rev;
153 int ret;
154
Kalle Valo80301cd2009-06-12 14:17:39 +0300155 wl1251_debug(DEBUG_ACX, "acx fw rev");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300156
Kalle Valoff258392009-06-12 14:14:19 +0300157 rev = kzalloc(sizeof(*rev), GFP_KERNEL);
158 if (!rev) {
159 ret = -ENOMEM;
160 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300161 }
162
Kalle Valo80301cd2009-06-12 14:17:39 +0300163 ret = wl1251_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
Kalle Valoff258392009-06-12 14:14:19 +0300164 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300165 wl1251_warning("ACX_FW_REV interrogate failed");
Kalle Valoff258392009-06-12 14:14:19 +0300166 goto out;
167 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300168
169 /* be careful with the buffer sizes */
170 strncpy(buf, rev->fw_version, min(len, sizeof(rev->fw_version)));
171
172 /*
173 * if the firmware version string is exactly
174 * sizeof(rev->fw_version) long or fw_len is less than
175 * sizeof(rev->fw_version) it won't be null terminated
176 */
177 buf[min(len, sizeof(rev->fw_version)) - 1] = '\0';
178
Kalle Valoff258392009-06-12 14:14:19 +0300179out:
180 kfree(rev);
181 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300182}
183
Kalle Valo80301cd2009-06-12 14:17:39 +0300184int wl1251_acx_tx_power(struct wl1251 *wl, int power)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300185{
Kalle Valoff258392009-06-12 14:14:19 +0300186 struct acx_current_tx_power *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300187 int ret;
188
Kalle Valo80301cd2009-06-12 14:17:39 +0300189 wl1251_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300190
191 if (power < 0 || power > 25)
192 return -EINVAL;
193
Kalle Valoff258392009-06-12 14:14:19 +0300194 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
195 if (!acx) {
196 ret = -ENOMEM;
197 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300198 }
199
Kalle Valoff258392009-06-12 14:14:19 +0300200 acx->current_tx_power = power * 10;
201
Kalle Valo80301cd2009-06-12 14:17:39 +0300202 ret = wl1251_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
Kalle Valoff258392009-06-12 14:14:19 +0300203 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300204 wl1251_warning("configure of tx power failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300205 goto out;
206 }
207
208out:
209 kfree(acx);
210 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300211}
212
Kalle Valo80301cd2009-06-12 14:17:39 +0300213int wl1251_acx_feature_cfg(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300214{
Kalle Valoff258392009-06-12 14:14:19 +0300215 struct acx_feature_config *feature;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300216 int ret;
217
Kalle Valo80301cd2009-06-12 14:17:39 +0300218 wl1251_debug(DEBUG_ACX, "acx feature cfg");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300219
Kalle Valoff258392009-06-12 14:14:19 +0300220 feature = kzalloc(sizeof(*feature), GFP_KERNEL);
221 if (!feature) {
222 ret = -ENOMEM;
223 goto out;
224 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300225
226 /* DF_ENCRYPTION_DISABLE and DF_SNIFF_MODE_ENABLE are disabled */
Kalle Valoff258392009-06-12 14:14:19 +0300227 feature->data_flow_options = 0;
228 feature->options = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300229
Kalle Valo80301cd2009-06-12 14:17:39 +0300230 ret = wl1251_cmd_configure(wl, ACX_FEATURE_CFG,
Kalle Valoff258392009-06-12 14:14:19 +0300231 feature, sizeof(*feature));
232 if (ret < 0) {
Stefan Weilda3c8212009-07-19 15:00:39 +0200233 wl1251_error("Couldn't set HW encryption");
Kalle Valoff258392009-06-12 14:14:19 +0300234 goto out;
235 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300236
Kalle Valoff258392009-06-12 14:14:19 +0300237out:
238 kfree(feature);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300239 return ret;
240}
241
Kalle Valo80301cd2009-06-12 14:17:39 +0300242int wl1251_acx_mem_map(struct wl1251 *wl, struct acx_header *mem_map,
Kalle Valoff258392009-06-12 14:14:19 +0300243 size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300244{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300245 int ret;
246
Kalle Valo80301cd2009-06-12 14:17:39 +0300247 wl1251_debug(DEBUG_ACX, "acx mem map");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300248
Kalle Valo80301cd2009-06-12 14:17:39 +0300249 ret = wl1251_cmd_interrogate(wl, ACX_MEM_MAP, mem_map, len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300250 if (ret < 0)
251 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300252
253 return 0;
254}
255
Kalle Valo80301cd2009-06-12 14:17:39 +0300256int wl1251_acx_data_path_params(struct wl1251 *wl,
Kalle Valoff258392009-06-12 14:14:19 +0300257 struct acx_data_path_params_resp *resp)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300258{
Kalle Valoff258392009-06-12 14:14:19 +0300259 struct acx_data_path_params *params;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300260 int ret;
261
Kalle Valo80301cd2009-06-12 14:17:39 +0300262 wl1251_debug(DEBUG_ACX, "acx data path params");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300263
Kalle Valoff258392009-06-12 14:14:19 +0300264 params = kzalloc(sizeof(*params), GFP_KERNEL);
265 if (!params) {
266 ret = -ENOMEM;
267 goto out;
268 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300269
Kalle Valoff258392009-06-12 14:14:19 +0300270 params->rx_packet_ring_chunk_size = DP_RX_PACKET_RING_CHUNK_SIZE;
271 params->tx_packet_ring_chunk_size = DP_TX_PACKET_RING_CHUNK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300272
Kalle Valoff258392009-06-12 14:14:19 +0300273 params->rx_packet_ring_chunk_num = DP_RX_PACKET_RING_CHUNK_NUM;
274 params->tx_packet_ring_chunk_num = DP_TX_PACKET_RING_CHUNK_NUM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300275
Kalle Valoff258392009-06-12 14:14:19 +0300276 params->tx_complete_threshold = 1;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300277
Kalle Valoff258392009-06-12 14:14:19 +0300278 params->tx_complete_ring_depth = FW_TX_CMPLT_BLOCK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300279
Kalle Valoff258392009-06-12 14:14:19 +0300280 params->tx_complete_timeout = DP_TX_COMPLETE_TIME_OUT;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300281
Kalle Valo80301cd2009-06-12 14:17:39 +0300282 ret = wl1251_cmd_configure(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300283 params, sizeof(*params));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300284 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +0300285 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300286
Kalle Valoff258392009-06-12 14:14:19 +0300287 /* FIXME: shouldn't this be ACX_DATA_PATH_RESP_PARAMS? */
Kalle Valo80301cd2009-06-12 14:17:39 +0300288 ret = wl1251_cmd_interrogate(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300289 resp, sizeof(*resp));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300290
291 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300292 wl1251_warning("failed to read data path parameters: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300293 goto out;
294 } else if (resp->header.cmd.status != CMD_STATUS_SUCCESS) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300295 wl1251_warning("data path parameter acx status failed");
Kalle Valoff258392009-06-12 14:14:19 +0300296 ret = -EIO;
297 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300298 }
299
Kalle Valoff258392009-06-12 14:14:19 +0300300out:
301 kfree(params);
302 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300303}
304
Kalle Valo80301cd2009-06-12 14:17:39 +0300305int wl1251_acx_rx_msdu_life_time(struct wl1251 *wl, u32 life_time)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300306{
Kalle Valoff258392009-06-12 14:14:19 +0300307 struct acx_rx_msdu_lifetime *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300308 int ret;
309
Kalle Valo80301cd2009-06-12 14:17:39 +0300310 wl1251_debug(DEBUG_ACX, "acx rx msdu life time");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300311
Kalle Valoff258392009-06-12 14:14:19 +0300312 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
313 if (!acx) {
314 ret = -ENOMEM;
315 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300316 }
317
Vidhya Govindance650b52009-06-12 14:16:45 +0300318 acx->lifetime = life_time;
Kalle Valo80301cd2009-06-12 14:17:39 +0300319 ret = wl1251_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
Kalle Valoff258392009-06-12 14:14:19 +0300320 acx, sizeof(*acx));
321 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300322 wl1251_warning("failed to set rx msdu life time: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300323 goto out;
324 }
325
326out:
327 kfree(acx);
328 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300329}
330
Kalle Valo80301cd2009-06-12 14:17:39 +0300331int wl1251_acx_rx_config(struct wl1251 *wl, u32 config, u32 filter)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300332{
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300336 wl1251_debug(DEBUG_ACX, "acx rx config");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300337
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300347 ret = wl1251_cmd_configure(wl, ACX_RX_CFG,
Kalle Valoff258392009-06-12 14:14:19 +0300348 rx_config, sizeof(*rx_config));
349 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300350 wl1251_warning("failed to set rx config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300351 goto out;
352 }
353
354out:
355 kfree(rx_config);
356 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300357}
358
Kalle Valo80301cd2009-06-12 14:17:39 +0300359int wl1251_acx_pd_threshold(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300360{
Kalle Valoff258392009-06-12 14:14:19 +0300361 struct acx_packet_detection *pd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300362 int ret;
363
Kalle Valo80301cd2009-06-12 14:17:39 +0300364 wl1251_debug(DEBUG_ACX, "acx data pd threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300365
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300374 ret = wl1251_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
Kalle Valoff258392009-06-12 14:14:19 +0300375 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300376 wl1251_warning("failed to set pd threshold: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300377 goto out;
378 }
379
380out:
381 kfree(pd);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300382 return 0;
383}
384
Kalle Valo80301cd2009-06-12 14:17:39 +0300385int wl1251_acx_slot(struct wl1251 *wl, enum acx_slot_type slot_time)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300386{
Kalle Valoff258392009-06-12 14:14:19 +0300387 struct acx_slot *slot;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300388 int ret;
389
Kalle Valo80301cd2009-06-12 14:17:39 +0300390 wl1251_debug(DEBUG_ACX, "acx slot");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300391
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300401 ret = wl1251_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
Kalle Valoff258392009-06-12 14:14:19 +0300402 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300403 wl1251_warning("failed to set slot time: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300404 goto out;
405 }
406
407out:
408 kfree(slot);
409 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300410}
411
Kalle Valo80301cd2009-06-12 14:17:39 +0300412int wl1251_acx_group_address_tbl(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300413{
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300417 wl1251_debug(DEBUG_ACX, "acx group address tbl");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300418
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300430 ret = wl1251_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
Kalle Valoff258392009-06-12 14:14:19 +0300431 acx, sizeof(*acx));
432 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300433 wl1251_warning("failed to set group addr table: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300434 goto out;
435 }
436
437out:
438 kfree(acx);
439 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300440}
441
Kalle Valo80301cd2009-06-12 14:17:39 +0300442int wl1251_acx_service_period_timeout(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300443{
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 Valo80301cd2009-06-12 14:17:39 +0300453 wl1251_debug(DEBUG_ACX, "acx service period timeout");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300454
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 Valo80301cd2009-06-12 14:17:39 +0300458 ret = wl1251_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
Kalle Valoff258392009-06-12 14:14:19 +0300459 rx_timeout, sizeof(*rx_timeout));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300460 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300461 wl1251_warning("failed to set service period timeout: %d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300462 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
Kalle Valo80301cd2009-06-12 14:17:39 +0300471int wl1251_acx_rts_threshold(struct wl1251 *wl, u16 rts_threshold)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300472{
Kalle Valoff258392009-06-12 14:14:19 +0300473 struct acx_rts_threshold *rts;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300474 int ret;
475
Kalle Valo80301cd2009-06-12 14:17:39 +0300476 wl1251_debug(DEBUG_ACX, "acx rts threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300477
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300486 ret = wl1251_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
Kalle Valoff258392009-06-12 14:14:19 +0300487 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300488 wl1251_warning("failed to set rts threshold: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300489 goto out;
490 }
491
492out:
493 kfree(rts);
494 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300495}
496
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200497int wl1251_acx_beacon_filter_opt(struct wl1251 *wl, bool enable_filter)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300498{
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300502 wl1251_debug(DEBUG_ACX, "acx beacon filter opt");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300503
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
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200510 beacon_filter->enable = enable_filter;
Kalle Valoff258392009-06-12 14:14:19 +0300511 beacon_filter->max_num_beacons = 0;
512
Kalle Valo80301cd2009-06-12 14:17:39 +0300513 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
Kalle Valoff258392009-06-12 14:14:19 +0300514 beacon_filter, sizeof(*beacon_filter));
515 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300516 wl1251_warning("failed to set beacon filter opt: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300517 goto out;
518 }
519
520out:
521 kfree(beacon_filter);
522 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300523}
524
Kalle Valo80301cd2009-06-12 14:17:39 +0300525int wl1251_acx_beacon_filter_table(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300526{
Kalle Valoff258392009-06-12 14:14:19 +0300527 struct acx_beacon_filter_ie_table *ie_table;
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200528 int idx = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300529 int ret;
530
Kalle Valo80301cd2009-06-12 14:17:39 +0300531 wl1251_debug(DEBUG_ACX, "acx beacon filter table");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300532
Kalle Valoff258392009-06-12 14:14:19 +0300533 ie_table = kzalloc(sizeof(*ie_table), GFP_KERNEL);
534 if (!ie_table) {
535 ret = -ENOMEM;
536 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300537 }
538
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200539 /* configure default beacon pass-through rules */
540 ie_table->num_ie = 1;
541 ie_table->table[idx++] = BEACON_FILTER_IE_ID_CHANNEL_SWITCH_ANN;
542 ie_table->table[idx++] = BEACON_RULE_PASS_ON_APPEARANCE;
Kalle Valoff258392009-06-12 14:14:19 +0300543
Kalle Valo80301cd2009-06-12 14:17:39 +0300544 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
Kalle Valoff258392009-06-12 14:14:19 +0300545 ie_table, sizeof(*ie_table));
546 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300547 wl1251_warning("failed to set beacon filter table: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300548 goto out;
549 }
550
551out:
552 kfree(ie_table);
553 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300554}
555
Juuso Oikarinen474c48c2009-11-17 18:48:14 +0200556int wl1251_acx_conn_monit_params(struct wl1251 *wl)
557{
558 struct acx_conn_monit_params *acx;
559 int ret;
560
561 wl1251_debug(DEBUG_ACX, "acx connection monitor parameters");
562
563 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
564 if (!acx) {
565 ret = -ENOMEM;
566 goto out;
567 }
568
569 acx->synch_fail_thold = SYNCH_FAIL_DEFAULT_THRESHOLD;
570 acx->bss_lose_timeout = NO_BEACON_DEFAULT_TIMEOUT;
571
572 ret = wl1251_cmd_configure(wl, ACX_CONN_MONIT_PARAMS,
573 acx, sizeof(*acx));
574 if (ret < 0) {
575 wl1251_warning("failed to set connection monitor "
576 "parameters: %d", ret);
577 goto out;
578 }
579
580out:
581 kfree(acx);
582 return ret;
583}
584
Kalle Valo80301cd2009-06-12 14:17:39 +0300585int wl1251_acx_sg_enable(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300586{
Kalle Valoff258392009-06-12 14:14:19 +0300587 struct acx_bt_wlan_coex *pta;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300588 int ret;
589
Kalle Valo80301cd2009-06-12 14:17:39 +0300590 wl1251_debug(DEBUG_ACX, "acx sg enable");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300591
Kalle Valoff258392009-06-12 14:14:19 +0300592 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
593 if (!pta) {
594 ret = -ENOMEM;
595 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300596 }
597
Kalle Valoff258392009-06-12 14:14:19 +0300598 pta->enable = SG_ENABLE;
599
Kalle Valo80301cd2009-06-12 14:17:39 +0300600 ret = wl1251_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
Kalle Valoff258392009-06-12 14:14:19 +0300601 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300602 wl1251_warning("failed to set softgemini enable: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300603 goto out;
604 }
605
606out:
607 kfree(pta);
608 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300609}
610
Kalle Valo80301cd2009-06-12 14:17:39 +0300611int wl1251_acx_sg_cfg(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300612{
Kalle Valoff258392009-06-12 14:14:19 +0300613 struct acx_bt_wlan_coex_param *param;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300614 int ret;
615
Kalle Valo80301cd2009-06-12 14:17:39 +0300616 wl1251_debug(DEBUG_ACX, "acx sg cfg");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300617
Kalle Valoff258392009-06-12 14:14:19 +0300618 param = kzalloc(sizeof(*param), GFP_KERNEL);
619 if (!param) {
620 ret = -ENOMEM;
621 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300622 }
623
Kalle Valoff258392009-06-12 14:14:19 +0300624 /* BT-WLAN coext parameters */
625 param->min_rate = RATE_INDEX_24MBPS;
626 param->bt_hp_max_time = PTA_BT_HP_MAXTIME_DEF;
627 param->wlan_hp_max_time = PTA_WLAN_HP_MAX_TIME_DEF;
628 param->sense_disable_timer = PTA_SENSE_DISABLE_TIMER_DEF;
629 param->rx_time_bt_hp = PTA_PROTECTIVE_RX_TIME_DEF;
630 param->tx_time_bt_hp = PTA_PROTECTIVE_TX_TIME_DEF;
631 param->rx_time_bt_hp_fast = PTA_PROTECTIVE_RX_TIME_FAST_DEF;
632 param->tx_time_bt_hp_fast = PTA_PROTECTIVE_TX_TIME_FAST_DEF;
633 param->wlan_cycle_fast = PTA_CYCLE_TIME_FAST_DEF;
634 param->bt_anti_starvation_period = PTA_ANTI_STARVE_PERIOD_DEF;
635 param->next_bt_lp_packet = PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF;
636 param->wake_up_beacon = PTA_TIME_BEFORE_BEACON_DEF;
637 param->hp_dm_max_guard_time = PTA_HPDM_MAX_TIME_DEF;
638 param->next_wlan_packet = PTA_TIME_OUT_NEXT_WLAN_DEF;
639 param->antenna_type = PTA_ANTENNA_TYPE_DEF;
640 param->signal_type = PTA_SIGNALING_TYPE_DEF;
641 param->afh_leverage_on = PTA_AFH_LEVERAGE_ON_DEF;
642 param->quiet_cycle_num = PTA_NUMBER_QUIET_CYCLE_DEF;
643 param->max_cts = PTA_MAX_NUM_CTS_DEF;
644 param->wlan_packets_num = PTA_NUMBER_OF_WLAN_PACKETS_DEF;
645 param->bt_packets_num = PTA_NUMBER_OF_BT_PACKETS_DEF;
646 param->missed_rx_avalanche = PTA_RX_FOR_AVALANCHE_DEF;
647 param->wlan_elp_hp = PTA_ELP_HP_DEF;
648 param->bt_anti_starvation_cycles = PTA_ANTI_STARVE_NUM_CYCLE_DEF;
649 param->ack_mode_dual_ant = PTA_ACK_MODE_DEF;
650 param->pa_sd_enable = PTA_ALLOW_PA_SD_DEF;
651 param->pta_auto_mode_enable = PTA_AUTO_MODE_NO_CTS_DEF;
652 param->bt_hp_respected_num = PTA_BT_HP_RESPECTED_DEF;
653
Kalle Valo80301cd2009-06-12 14:17:39 +0300654 ret = wl1251_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
Kalle Valoff258392009-06-12 14:14:19 +0300655 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300656 wl1251_warning("failed to set sg config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300657 goto out;
658 }
659
660out:
661 kfree(param);
662 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300663}
664
Kalle Valo80301cd2009-06-12 14:17:39 +0300665int wl1251_acx_cca_threshold(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300666{
Kalle Valoff258392009-06-12 14:14:19 +0300667 struct acx_energy_detection *detection;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300668 int ret;
669
Kalle Valo80301cd2009-06-12 14:17:39 +0300670 wl1251_debug(DEBUG_ACX, "acx cca threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300671
Kalle Valoff258392009-06-12 14:14:19 +0300672 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
673 if (!detection) {
674 ret = -ENOMEM;
675 goto out;
676 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300677
Kalle Valoff258392009-06-12 14:14:19 +0300678 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
679 detection->tx_energy_detection = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300680
Kalle Valo80301cd2009-06-12 14:17:39 +0300681 ret = wl1251_cmd_configure(wl, ACX_CCA_THRESHOLD,
Kalle Valoff258392009-06-12 14:14:19 +0300682 detection, sizeof(*detection));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300683 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300684 wl1251_warning("failed to set cca threshold: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300685 return ret;
686 }
687
Kalle Valoff258392009-06-12 14:14:19 +0300688out:
689 kfree(detection);
690 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300691}
692
Kalle Valo80301cd2009-06-12 14:17:39 +0300693int wl1251_acx_bcn_dtim_options(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300694{
Kalle Valoff258392009-06-12 14:14:19 +0300695 struct acx_beacon_broadcast *bb;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300696 int ret;
697
Kalle Valo80301cd2009-06-12 14:17:39 +0300698 wl1251_debug(DEBUG_ACX, "acx bcn dtim options");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300699
Kalle Valoff258392009-06-12 14:14:19 +0300700 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
701 if (!bb) {
702 ret = -ENOMEM;
703 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300704 }
705
Kalle Valoff258392009-06-12 14:14:19 +0300706 bb->beacon_rx_timeout = BCN_RX_TIMEOUT_DEF_VALUE;
707 bb->broadcast_timeout = BROADCAST_RX_TIMEOUT_DEF_VALUE;
708 bb->rx_broadcast_in_ps = RX_BROADCAST_IN_PS_DEF_VALUE;
709 bb->ps_poll_threshold = CONSECUTIVE_PS_POLL_FAILURE_DEF;
710
Kalle Valo80301cd2009-06-12 14:17:39 +0300711 ret = wl1251_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
Kalle Valoff258392009-06-12 14:14:19 +0300712 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300713 wl1251_warning("failed to set rx config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300714 goto out;
715 }
716
717out:
718 kfree(bb);
719 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300720}
721
Kalle Valo80301cd2009-06-12 14:17:39 +0300722int wl1251_acx_aid(struct wl1251 *wl, u16 aid)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300723{
Kalle Valoff258392009-06-12 14:14:19 +0300724 struct acx_aid *acx_aid;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300725 int ret;
726
Kalle Valo80301cd2009-06-12 14:17:39 +0300727 wl1251_debug(DEBUG_ACX, "acx aid");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300728
Kalle Valoff258392009-06-12 14:14:19 +0300729 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
730 if (!acx_aid) {
731 ret = -ENOMEM;
732 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300733 }
734
Kalle Valoff258392009-06-12 14:14:19 +0300735 acx_aid->aid = aid;
736
Kalle Valo80301cd2009-06-12 14:17:39 +0300737 ret = wl1251_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
Kalle Valoff258392009-06-12 14:14:19 +0300738 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300739 wl1251_warning("failed to set aid: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300740 goto out;
741 }
742
743out:
744 kfree(acx_aid);
745 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300746}
747
Kalle Valo80301cd2009-06-12 14:17:39 +0300748int wl1251_acx_event_mbox_mask(struct wl1251 *wl, u32 event_mask)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300749{
Kalle Valoff258392009-06-12 14:14:19 +0300750 struct acx_event_mask *mask;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300751 int ret;
752
Kalle Valo80301cd2009-06-12 14:17:39 +0300753 wl1251_debug(DEBUG_ACX, "acx event mbox mask");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300754
Kalle Valoff258392009-06-12 14:14:19 +0300755 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
756 if (!mask) {
757 ret = -ENOMEM;
758 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300759 }
760
Kalle Valoff258392009-06-12 14:14:19 +0300761 /* high event mask is unused */
762 mask->high_event_mask = 0xffffffff;
763
764 mask->event_mask = event_mask;
765
Kalle Valo80301cd2009-06-12 14:17:39 +0300766 ret = wl1251_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
Kalle Valoff258392009-06-12 14:14:19 +0300767 mask, sizeof(*mask));
768 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300769 wl1251_warning("failed to set acx_event_mbox_mask: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300770 goto out;
771 }
772
773out:
774 kfree(mask);
775 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300776}
777
Kalle Valo80301cd2009-06-12 14:17:39 +0300778int wl1251_acx_set_preamble(struct wl1251 *wl, enum acx_preamble_type preamble)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300779{
Kalle Valoff258392009-06-12 14:14:19 +0300780 struct acx_preamble *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300781 int ret;
782
Kalle Valo80301cd2009-06-12 14:17:39 +0300783 wl1251_debug(DEBUG_ACX, "acx_set_preamble");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300784
Kalle Valoff258392009-06-12 14:14:19 +0300785 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
786 if (!acx) {
787 ret = -ENOMEM;
788 goto out;
789 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300790
Kalle Valoff258392009-06-12 14:14:19 +0300791 acx->preamble = preamble;
792
Kalle Valo80301cd2009-06-12 14:17:39 +0300793 ret = wl1251_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300794 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300795 wl1251_warning("Setting of preamble failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300796 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300797 }
Kalle Valoff258392009-06-12 14:14:19 +0300798
799out:
800 kfree(acx);
801 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300802}
803
Kalle Valo80301cd2009-06-12 14:17:39 +0300804int wl1251_acx_cts_protect(struct wl1251 *wl,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300805 enum acx_ctsprotect_type ctsprotect)
806{
Kalle Valoff258392009-06-12 14:14:19 +0300807 struct acx_ctsprotect *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300808 int ret;
809
Kalle Valo80301cd2009-06-12 14:17:39 +0300810 wl1251_debug(DEBUG_ACX, "acx_set_ctsprotect");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300811
Kalle Valoff258392009-06-12 14:14:19 +0300812 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
813 if (!acx) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300814 ret = -ENOMEM;
815 goto out;
816 }
817
Kalle Valoff258392009-06-12 14:14:19 +0300818 acx->ctsprotect = ctsprotect;
819
Kalle Valo80301cd2009-06-12 14:17:39 +0300820 ret = wl1251_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300821 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300822 wl1251_warning("Setting of ctsprotect failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300823 goto out;
824 }
825
Kalle Valoff258392009-06-12 14:14:19 +0300826out:
827 kfree(acx);
828 return ret;
829}
830
Kalle Valo80301cd2009-06-12 14:17:39 +0300831int wl1251_acx_tsf_info(struct wl1251 *wl, u64 *mactime)
Kalle Valoff258392009-06-12 14:14:19 +0300832{
833 struct acx_tsf_info *tsf_info;
834 int ret;
835
836 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
837 if (!tsf_info) {
838 ret = -ENOMEM;
839 goto out;
840 }
841
Kalle Valo80301cd2009-06-12 14:17:39 +0300842 ret = wl1251_cmd_interrogate(wl, ACX_TSF_INFO,
Kalle Valoff258392009-06-12 14:14:19 +0300843 tsf_info, sizeof(*tsf_info));
844 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300845 wl1251_warning("ACX_FW_REV interrogate failed");
Kalle Valoff258392009-06-12 14:14:19 +0300846 goto out;
847 }
848
849 *mactime = tsf_info->current_tsf_lsb |
850 (tsf_info->current_tsf_msb << 31);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300851
852out:
Kalle Valoff258392009-06-12 14:14:19 +0300853 kfree(tsf_info);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300854 return ret;
855}
Kalle Valoff258392009-06-12 14:14:19 +0300856
Kalle Valo80301cd2009-06-12 14:17:39 +0300857int wl1251_acx_statistics(struct wl1251 *wl, struct acx_statistics *stats)
Kalle Valoff258392009-06-12 14:14:19 +0300858{
859 int ret;
860
Kalle Valo80301cd2009-06-12 14:17:39 +0300861 wl1251_debug(DEBUG_ACX, "acx statistics");
Kalle Valoff258392009-06-12 14:14:19 +0300862
Kalle Valo80301cd2009-06-12 14:17:39 +0300863 ret = wl1251_cmd_interrogate(wl, ACX_STATISTICS, stats,
Kalle Valoff258392009-06-12 14:14:19 +0300864 sizeof(*stats));
865 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300866 wl1251_warning("acx statistics failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300867 return -ENOMEM;
868 }
869
870 return 0;
871}
Kalle Valo0e71bb02009-08-07 13:33:57 +0300872
873int wl1251_acx_rate_policies(struct wl1251 *wl)
874{
875 struct acx_rate_policy *acx;
876 int ret = 0;
877
878 wl1251_debug(DEBUG_ACX, "acx rate policies");
879
880 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
881
882 if (!acx) {
883 ret = -ENOMEM;
884 goto out;
885 }
886
887 /* configure one default (one-size-fits-all) rate class */
888 acx->rate_class_cnt = 1;
889 acx->rate_class[0].enabled_rates = ACX_RATE_MASK_UNSPECIFIED;
890 acx->rate_class[0].short_retry_limit = ACX_RATE_RETRY_LIMIT;
891 acx->rate_class[0].long_retry_limit = ACX_RATE_RETRY_LIMIT;
892 acx->rate_class[0].aflags = 0;
893
894 ret = wl1251_cmd_configure(wl, ACX_RATE_POLICY, acx, sizeof(*acx));
895 if (ret < 0) {
896 wl1251_warning("Setting of rate policies failed: %d", ret);
897 goto out;
898 }
899
900out:
901 kfree(acx);
902 return ret;
903}
904
905int wl1251_acx_mem_cfg(struct wl1251 *wl)
906{
907 struct wl1251_acx_config_memory *mem_conf;
908 int ret, i;
909
910 wl1251_debug(DEBUG_ACX, "acx mem cfg");
911
912 mem_conf = kzalloc(sizeof(*mem_conf), GFP_KERNEL);
913 if (!mem_conf) {
914 ret = -ENOMEM;
915 goto out;
916 }
917
918 /* memory config */
919 mem_conf->mem_config.num_stations = cpu_to_le16(DEFAULT_NUM_STATIONS);
920 mem_conf->mem_config.rx_mem_block_num = 35;
921 mem_conf->mem_config.tx_min_mem_block_num = 64;
922 mem_conf->mem_config.num_tx_queues = MAX_TX_QUEUES;
923 mem_conf->mem_config.host_if_options = HOSTIF_PKT_RING;
924 mem_conf->mem_config.num_ssid_profiles = 1;
925 mem_conf->mem_config.debug_buffer_size =
926 cpu_to_le16(TRACE_BUFFER_MAX_SIZE);
927
928 /* RX queue config */
929 mem_conf->rx_queue_config.dma_address = 0;
930 mem_conf->rx_queue_config.num_descs = ACX_RX_DESC_DEF;
931 mem_conf->rx_queue_config.priority = DEFAULT_RXQ_PRIORITY;
932 mem_conf->rx_queue_config.type = DEFAULT_RXQ_TYPE;
933
934 /* TX queue config */
935 for (i = 0; i < MAX_TX_QUEUES; i++) {
936 mem_conf->tx_queue_config[i].num_descs = ACX_TX_DESC_DEF;
937 mem_conf->tx_queue_config[i].attributes = i;
938 }
939
940 ret = wl1251_cmd_configure(wl, ACX_MEM_CFG, mem_conf,
941 sizeof(*mem_conf));
942 if (ret < 0) {
943 wl1251_warning("wl1251 mem config failed: %d", ret);
944 goto out;
945 }
946
947out:
948 kfree(mem_conf);
949 return ret;
950}
Vidhya Govindand531cf32009-11-17 18:49:08 +0200951
952int wl1251_acx_wr_tbtt_and_dtim(struct wl1251 *wl, u16 tbtt, u8 dtim)
953{
954 struct wl1251_acx_wr_tbtt_and_dtim *acx;
955 int ret;
956
957 wl1251_debug(DEBUG_ACX, "acx tbtt and dtim");
958
959 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
960 if (!acx) {
961 ret = -ENOMEM;
962 goto out;
963 }
964
965 acx->tbtt = tbtt;
966 acx->dtim = dtim;
967
968 ret = wl1251_cmd_configure(wl, ACX_WR_TBTT_AND_DTIM,
969 acx, sizeof(*acx));
970 if (ret < 0) {
971 wl1251_warning("failed to set tbtt and dtim: %d", ret);
972 goto out;
973 }
974
975out:
976 kfree(acx);
977 return ret;
978}
Kalle Valo86dff7a2009-11-30 10:18:19 +0200979
980int wl1251_acx_ac_cfg(struct wl1251 *wl, u8 ac, u8 cw_min, u16 cw_max,
981 u8 aifs, u16 txop)
982{
983 struct wl1251_acx_ac_cfg *acx;
984 int ret = 0;
985
986 wl1251_debug(DEBUG_ACX, "acx ac cfg %d cw_ming %d cw_max %d "
987 "aifs %d txop %d", ac, cw_min, cw_max, aifs, txop);
988
989 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
990
991 if (!acx) {
992 ret = -ENOMEM;
993 goto out;
994 }
995
996 acx->ac = ac;
997 acx->cw_min = cw_min;
998 acx->cw_max = cw_max;
999 acx->aifsn = aifs;
1000 acx->txop_limit = txop;
1001
1002 ret = wl1251_cmd_configure(wl, ACX_AC_CFG, acx, sizeof(*acx));
1003 if (ret < 0) {
1004 wl1251_warning("acx ac cfg failed: %d", ret);
1005 goto out;
1006 }
1007
1008out:
1009 kfree(acx);
1010 return ret;
1011}