blob: ad87a1ac6462aab40befe12db72eef99fcc52f5b [file] [log] [blame]
Kalle Valo9bc67722010-10-10 11:28:32 +03001#include "acx.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +03002
3#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09004#include <linux/slab.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +03005#include <linux/crc7.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +03006
Kalle Valo13674112009-06-12 14:17:25 +03007#include "wl1251.h"
Kalle Valo9bc67722010-10-10 11:28:32 +03008#include "reg.h"
9#include "cmd.h"
10#include "ps.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +030011
Kalle Valo80301cd2009-06-12 14:17:39 +030012int wl1251_acx_frame_rates(struct wl1251 *wl, u8 ctrl_rate, u8 ctrl_mod,
Kalle Valo2f01a1f2009-04-29 23:33:31 +030013 u8 mgt_rate, u8 mgt_mod)
14{
Kalle Valoff258392009-06-12 14:14:19 +030015 struct acx_fw_gen_frame_rates *rates;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030016 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030017
Kalle Valo80301cd2009-06-12 14:17:39 +030018 wl1251_debug(DEBUG_ACX, "acx frame rates");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030019
Kalle Valoff258392009-06-12 14:14:19 +030020 rates = kzalloc(sizeof(*rates), GFP_KERNEL);
21 if (!rates) {
22 ret = -ENOMEM;
23 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030024 }
25
Kalle Valoff258392009-06-12 14:14:19 +030026 rates->tx_ctrl_frame_rate = ctrl_rate;
27 rates->tx_ctrl_frame_mod = ctrl_mod;
28 rates->tx_mgt_frame_rate = mgt_rate;
29 rates->tx_mgt_frame_mod = mgt_mod;
30
Kalle Valo80301cd2009-06-12 14:17:39 +030031 ret = wl1251_cmd_configure(wl, ACX_FW_GEN_FRAME_RATES,
Kalle Valoff258392009-06-12 14:14:19 +030032 rates, sizeof(*rates));
33 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +030034 wl1251_error("Failed to set FW rates and modulation");
Kalle Valoff258392009-06-12 14:14:19 +030035 goto out;
36 }
37
38out:
39 kfree(rates);
40 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030041}
42
43
Kalle Valo80301cd2009-06-12 14:17:39 +030044int wl1251_acx_station_id(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030045{
Kalle Valoff258392009-06-12 14:14:19 +030046 struct acx_dot11_station_id *mac;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030047 int ret, i;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030048
Kalle Valo80301cd2009-06-12 14:17:39 +030049 wl1251_debug(DEBUG_ACX, "acx dot11_station_id");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030050
Kalle Valoff258392009-06-12 14:14:19 +030051 mac = kzalloc(sizeof(*mac), GFP_KERNEL);
52 if (!mac) {
53 ret = -ENOMEM;
54 goto out;
55 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +030056
57 for (i = 0; i < ETH_ALEN; i++)
Kalle Valoff258392009-06-12 14:14:19 +030058 mac->mac[i] = wl->mac_addr[ETH_ALEN - 1 - i];
Kalle Valo2f01a1f2009-04-29 23:33:31 +030059
Kalle Valo80301cd2009-06-12 14:17:39 +030060 ret = wl1251_cmd_configure(wl, DOT11_STATION_ID, mac, sizeof(*mac));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030061 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +030062 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030063
Kalle Valoff258392009-06-12 14:14:19 +030064out:
65 kfree(mac);
66 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030067}
68
Kalle Valo80301cd2009-06-12 14:17:39 +030069int wl1251_acx_default_key(struct wl1251 *wl, u8 key_id)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030070{
Kalle Valoff258392009-06-12 14:14:19 +030071 struct acx_dot11_default_key *default_key;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030072 int ret;
73
Kalle Valo80301cd2009-06-12 14:17:39 +030074 wl1251_debug(DEBUG_ACX, "acx dot11_default_key (%d)", key_id);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030075
Kalle Valoff258392009-06-12 14:14:19 +030076 default_key = kzalloc(sizeof(*default_key), GFP_KERNEL);
77 if (!default_key) {
78 ret = -ENOMEM;
79 goto out;
80 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +030081
Kalle Valoff258392009-06-12 14:14:19 +030082 default_key->id = key_id;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030083
Kalle Valo80301cd2009-06-12 14:17:39 +030084 ret = wl1251_cmd_configure(wl, DOT11_DEFAULT_KEY,
Kalle Valoff258392009-06-12 14:14:19 +030085 default_key, sizeof(*default_key));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030086 if (ret < 0) {
Stefan Weilda3c8212009-07-19 15:00:39 +020087 wl1251_error("Couldn't set default key");
Kalle Valoff258392009-06-12 14:14:19 +030088 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030089 }
90
91 wl->default_key = key_id;
92
Kalle Valoff258392009-06-12 14:14:19 +030093out:
94 kfree(default_key);
95 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030096}
97
Kalle Valo80301cd2009-06-12 14:17:39 +030098int wl1251_acx_wake_up_conditions(struct wl1251 *wl, u8 wake_up_event,
Luciano Coelho9f483dc2009-06-12 14:15:46 +030099 u8 listen_interval)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300100{
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300104 wl1251_debug(DEBUG_ACX, "acx wake up conditions");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300105
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
Luciano Coelho9f483dc2009-06-12 14:15:46 +0300112 wake_up->wake_up_event = wake_up_event;
Kalle Valoff258392009-06-12 14:14:19 +0300113 wake_up->listen_interval = listen_interval;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300114
Kalle Valo80301cd2009-06-12 14:17:39 +0300115 ret = wl1251_cmd_configure(wl, ACX_WAKE_UP_CONDITIONS,
Kalle Valoff258392009-06-12 14:14:19 +0300116 wake_up, sizeof(*wake_up));
117 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300118 wl1251_warning("could not set wake up conditions: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300119 goto out;
120 }
121
122out:
123 kfree(wake_up);
124 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300125}
126
Kalle Valo80301cd2009-06-12 14:17:39 +0300127int wl1251_acx_sleep_auth(struct wl1251 *wl, u8 sleep_auth)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300128{
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300132 wl1251_debug(DEBUG_ACX, "acx sleep auth");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300133
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 Valo80301cd2009-06-12 14:17:39 +0300142 ret = wl1251_cmd_configure(wl, ACX_SLEEP_AUTH, auth, sizeof(*auth));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300143
Kalle Valoff258392009-06-12 14:14:19 +0300144out:
145 kfree(auth);
146 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300147}
148
Kalle Valo80301cd2009-06-12 14:17:39 +0300149int wl1251_acx_fw_version(struct wl1251 *wl, char *buf, size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300150{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300151 struct acx_revision *rev;
152 int ret;
153
Kalle Valo80301cd2009-06-12 14:17:39 +0300154 wl1251_debug(DEBUG_ACX, "acx fw rev");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300155
Kalle Valoff258392009-06-12 14:14:19 +0300156 rev = kzalloc(sizeof(*rev), GFP_KERNEL);
157 if (!rev) {
158 ret = -ENOMEM;
159 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300160 }
161
Kalle Valo80301cd2009-06-12 14:17:39 +0300162 ret = wl1251_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
Kalle Valoff258392009-06-12 14:14:19 +0300163 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300164 wl1251_warning("ACX_FW_REV interrogate failed");
Kalle Valoff258392009-06-12 14:14:19 +0300165 goto out;
166 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300167
168 /* be careful with the buffer sizes */
169 strncpy(buf, rev->fw_version, min(len, sizeof(rev->fw_version)));
170
171 /*
172 * if the firmware version string is exactly
173 * sizeof(rev->fw_version) long or fw_len is less than
174 * sizeof(rev->fw_version) it won't be null terminated
175 */
176 buf[min(len, sizeof(rev->fw_version)) - 1] = '\0';
177
Kalle Valoff258392009-06-12 14:14:19 +0300178out:
179 kfree(rev);
180 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300181}
182
Kalle Valo80301cd2009-06-12 14:17:39 +0300183int wl1251_acx_tx_power(struct wl1251 *wl, int power)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300184{
Kalle Valoff258392009-06-12 14:14:19 +0300185 struct acx_current_tx_power *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300186 int ret;
187
Kalle Valo80301cd2009-06-12 14:17:39 +0300188 wl1251_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300189
190 if (power < 0 || power > 25)
191 return -EINVAL;
192
Kalle Valoff258392009-06-12 14:14:19 +0300193 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
194 if (!acx) {
195 ret = -ENOMEM;
196 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300197 }
198
Kalle Valoff258392009-06-12 14:14:19 +0300199 acx->current_tx_power = power * 10;
200
Kalle Valo80301cd2009-06-12 14:17:39 +0300201 ret = wl1251_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
Kalle Valoff258392009-06-12 14:14:19 +0300202 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300203 wl1251_warning("configure of tx power failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300204 goto out;
205 }
206
207out:
208 kfree(acx);
209 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300210}
211
Kalle Valo80301cd2009-06-12 14:17:39 +0300212int wl1251_acx_feature_cfg(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300213{
Kalle Valoff258392009-06-12 14:14:19 +0300214 struct acx_feature_config *feature;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300215 int ret;
216
Kalle Valo80301cd2009-06-12 14:17:39 +0300217 wl1251_debug(DEBUG_ACX, "acx feature cfg");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300218
Kalle Valoff258392009-06-12 14:14:19 +0300219 feature = kzalloc(sizeof(*feature), GFP_KERNEL);
220 if (!feature) {
221 ret = -ENOMEM;
222 goto out;
223 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300224
225 /* DF_ENCRYPTION_DISABLE and DF_SNIFF_MODE_ENABLE are disabled */
Kalle Valoff258392009-06-12 14:14:19 +0300226 feature->data_flow_options = 0;
227 feature->options = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300228
Kalle Valo80301cd2009-06-12 14:17:39 +0300229 ret = wl1251_cmd_configure(wl, ACX_FEATURE_CFG,
Kalle Valoff258392009-06-12 14:14:19 +0300230 feature, sizeof(*feature));
231 if (ret < 0) {
Stefan Weilda3c8212009-07-19 15:00:39 +0200232 wl1251_error("Couldn't set HW encryption");
Kalle Valoff258392009-06-12 14:14:19 +0300233 goto out;
234 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300235
Kalle Valoff258392009-06-12 14:14:19 +0300236out:
237 kfree(feature);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300238 return ret;
239}
240
Kalle Valo80301cd2009-06-12 14:17:39 +0300241int wl1251_acx_mem_map(struct wl1251 *wl, struct acx_header *mem_map,
Kalle Valoff258392009-06-12 14:14:19 +0300242 size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300243{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300244 int ret;
245
Kalle Valo80301cd2009-06-12 14:17:39 +0300246 wl1251_debug(DEBUG_ACX, "acx mem map");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300247
Kalle Valo80301cd2009-06-12 14:17:39 +0300248 ret = wl1251_cmd_interrogate(wl, ACX_MEM_MAP, mem_map, len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300249 if (ret < 0)
250 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300251
252 return 0;
253}
254
Kalle Valo80301cd2009-06-12 14:17:39 +0300255int wl1251_acx_data_path_params(struct wl1251 *wl,
Kalle Valoff258392009-06-12 14:14:19 +0300256 struct acx_data_path_params_resp *resp)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300257{
Kalle Valoff258392009-06-12 14:14:19 +0300258 struct acx_data_path_params *params;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300259 int ret;
260
Kalle Valo80301cd2009-06-12 14:17:39 +0300261 wl1251_debug(DEBUG_ACX, "acx data path params");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300262
Kalle Valoff258392009-06-12 14:14:19 +0300263 params = kzalloc(sizeof(*params), GFP_KERNEL);
264 if (!params) {
265 ret = -ENOMEM;
266 goto out;
267 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300268
Kalle Valoff258392009-06-12 14:14:19 +0300269 params->rx_packet_ring_chunk_size = DP_RX_PACKET_RING_CHUNK_SIZE;
270 params->tx_packet_ring_chunk_size = DP_TX_PACKET_RING_CHUNK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300271
Kalle Valoff258392009-06-12 14:14:19 +0300272 params->rx_packet_ring_chunk_num = DP_RX_PACKET_RING_CHUNK_NUM;
273 params->tx_packet_ring_chunk_num = DP_TX_PACKET_RING_CHUNK_NUM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300274
Kalle Valoff258392009-06-12 14:14:19 +0300275 params->tx_complete_threshold = 1;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300276
Kalle Valoff258392009-06-12 14:14:19 +0300277 params->tx_complete_ring_depth = FW_TX_CMPLT_BLOCK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300278
Kalle Valoff258392009-06-12 14:14:19 +0300279 params->tx_complete_timeout = DP_TX_COMPLETE_TIME_OUT;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300280
Kalle Valo80301cd2009-06-12 14:17:39 +0300281 ret = wl1251_cmd_configure(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300282 params, sizeof(*params));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300283 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +0300284 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300285
Kalle Valoff258392009-06-12 14:14:19 +0300286 /* FIXME: shouldn't this be ACX_DATA_PATH_RESP_PARAMS? */
Kalle Valo80301cd2009-06-12 14:17:39 +0300287 ret = wl1251_cmd_interrogate(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300288 resp, sizeof(*resp));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300289
290 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300291 wl1251_warning("failed to read data path parameters: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300292 goto out;
293 } else if (resp->header.cmd.status != CMD_STATUS_SUCCESS) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300294 wl1251_warning("data path parameter acx status failed");
Kalle Valoff258392009-06-12 14:14:19 +0300295 ret = -EIO;
296 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300297 }
298
Kalle Valoff258392009-06-12 14:14:19 +0300299out:
300 kfree(params);
301 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300302}
303
Kalle Valo80301cd2009-06-12 14:17:39 +0300304int wl1251_acx_rx_msdu_life_time(struct wl1251 *wl, u32 life_time)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300305{
Kalle Valoff258392009-06-12 14:14:19 +0300306 struct acx_rx_msdu_lifetime *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300307 int ret;
308
Kalle Valo80301cd2009-06-12 14:17:39 +0300309 wl1251_debug(DEBUG_ACX, "acx rx msdu life time");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300310
Kalle Valoff258392009-06-12 14:14:19 +0300311 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
312 if (!acx) {
313 ret = -ENOMEM;
314 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300315 }
316
Vidhya Govindance650b52009-06-12 14:16:45 +0300317 acx->lifetime = life_time;
Kalle Valo80301cd2009-06-12 14:17:39 +0300318 ret = wl1251_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
Kalle Valoff258392009-06-12 14:14:19 +0300319 acx, sizeof(*acx));
320 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300321 wl1251_warning("failed to set rx msdu life time: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300322 goto out;
323 }
324
325out:
326 kfree(acx);
327 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300328}
329
Kalle Valo80301cd2009-06-12 14:17:39 +0300330int wl1251_acx_rx_config(struct wl1251 *wl, u32 config, u32 filter)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300331{
Kalle Valoff258392009-06-12 14:14:19 +0300332 struct acx_rx_config *rx_config;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300333 int ret;
334
Kalle Valo80301cd2009-06-12 14:17:39 +0300335 wl1251_debug(DEBUG_ACX, "acx rx config");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300336
Kalle Valoff258392009-06-12 14:14:19 +0300337 rx_config = kzalloc(sizeof(*rx_config), GFP_KERNEL);
338 if (!rx_config) {
339 ret = -ENOMEM;
340 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300341 }
342
Kalle Valoff258392009-06-12 14:14:19 +0300343 rx_config->config_options = config;
344 rx_config->filter_options = filter;
345
Kalle Valo80301cd2009-06-12 14:17:39 +0300346 ret = wl1251_cmd_configure(wl, ACX_RX_CFG,
Kalle Valoff258392009-06-12 14:14:19 +0300347 rx_config, sizeof(*rx_config));
348 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300349 wl1251_warning("failed to set rx config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300350 goto out;
351 }
352
353out:
354 kfree(rx_config);
355 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300356}
357
Kalle Valo80301cd2009-06-12 14:17:39 +0300358int wl1251_acx_pd_threshold(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300359{
Kalle Valoff258392009-06-12 14:14:19 +0300360 struct acx_packet_detection *pd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300361 int ret;
362
Kalle Valo80301cd2009-06-12 14:17:39 +0300363 wl1251_debug(DEBUG_ACX, "acx data pd threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300364
Kalle Valoff258392009-06-12 14:14:19 +0300365 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
366 if (!pd) {
367 ret = -ENOMEM;
368 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300369 }
370
Kalle Valoff258392009-06-12 14:14:19 +0300371 /* FIXME: threshold value not set */
372
Kalle Valo80301cd2009-06-12 14:17:39 +0300373 ret = wl1251_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
Kalle Valoff258392009-06-12 14:14:19 +0300374 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300375 wl1251_warning("failed to set pd threshold: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300376 goto out;
377 }
378
379out:
380 kfree(pd);
Julia Lawall9f19fa62010-08-16 18:25:21 +0200381 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300382}
383
Kalle Valo80301cd2009-06-12 14:17:39 +0300384int wl1251_acx_slot(struct wl1251 *wl, enum acx_slot_type slot_time)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300385{
Kalle Valoff258392009-06-12 14:14:19 +0300386 struct acx_slot *slot;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300387 int ret;
388
Kalle Valo80301cd2009-06-12 14:17:39 +0300389 wl1251_debug(DEBUG_ACX, "acx slot");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300390
Kalle Valoff258392009-06-12 14:14:19 +0300391 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
392 if (!slot) {
393 ret = -ENOMEM;
394 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300395 }
396
Kalle Valoff258392009-06-12 14:14:19 +0300397 slot->wone_index = STATION_WONE_INDEX;
398 slot->slot_time = slot_time;
399
Kalle Valo80301cd2009-06-12 14:17:39 +0300400 ret = wl1251_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
Kalle Valoff258392009-06-12 14:14:19 +0300401 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300402 wl1251_warning("failed to set slot time: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300403 goto out;
404 }
405
406out:
407 kfree(slot);
408 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300409}
410
Kalle Valo80301cd2009-06-12 14:17:39 +0300411int wl1251_acx_group_address_tbl(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300412{
Kalle Valoff258392009-06-12 14:14:19 +0300413 struct acx_dot11_grp_addr_tbl *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300414 int ret;
415
Kalle Valo80301cd2009-06-12 14:17:39 +0300416 wl1251_debug(DEBUG_ACX, "acx group address tbl");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300417
Kalle Valoff258392009-06-12 14:14:19 +0300418 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
419 if (!acx) {
420 ret = -ENOMEM;
421 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300422 }
423
Kalle Valoff258392009-06-12 14:14:19 +0300424 /* MAC filtering */
425 acx->enabled = 0;
426 acx->num_groups = 0;
427 memset(acx->mac_table, 0, ADDRESS_GROUP_MAX_LEN);
428
Kalle Valo80301cd2009-06-12 14:17:39 +0300429 ret = wl1251_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
Kalle Valoff258392009-06-12 14:14:19 +0300430 acx, sizeof(*acx));
431 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300432 wl1251_warning("failed to set group addr table: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300433 goto out;
434 }
435
436out:
437 kfree(acx);
438 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300439}
440
Kalle Valo80301cd2009-06-12 14:17:39 +0300441int wl1251_acx_service_period_timeout(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300442{
Kalle Valoff258392009-06-12 14:14:19 +0300443 struct acx_rx_timeout *rx_timeout;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300444 int ret;
445
Kalle Valoff258392009-06-12 14:14:19 +0300446 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL);
447 if (!rx_timeout) {
448 ret = -ENOMEM;
449 goto out;
450 }
451
Kalle Valo80301cd2009-06-12 14:17:39 +0300452 wl1251_debug(DEBUG_ACX, "acx service period timeout");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300453
Kalle Valoff258392009-06-12 14:14:19 +0300454 rx_timeout->ps_poll_timeout = RX_TIMEOUT_PS_POLL_DEF;
455 rx_timeout->upsd_timeout = RX_TIMEOUT_UPSD_DEF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300456
Kalle Valo80301cd2009-06-12 14:17:39 +0300457 ret = wl1251_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
Kalle Valoff258392009-06-12 14:14:19 +0300458 rx_timeout, sizeof(*rx_timeout));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300459 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300460 wl1251_warning("failed to set service period timeout: %d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300461 ret);
Kalle Valoff258392009-06-12 14:14:19 +0300462 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300463 }
464
Kalle Valoff258392009-06-12 14:14:19 +0300465out:
466 kfree(rx_timeout);
467 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300468}
469
Kalle Valo80301cd2009-06-12 14:17:39 +0300470int wl1251_acx_rts_threshold(struct wl1251 *wl, u16 rts_threshold)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300471{
Kalle Valoff258392009-06-12 14:14:19 +0300472 struct acx_rts_threshold *rts;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300473 int ret;
474
Kalle Valo80301cd2009-06-12 14:17:39 +0300475 wl1251_debug(DEBUG_ACX, "acx rts threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300476
Kalle Valoff258392009-06-12 14:14:19 +0300477 rts = kzalloc(sizeof(*rts), GFP_KERNEL);
478 if (!rts) {
479 ret = -ENOMEM;
480 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300481 }
482
Kalle Valoff258392009-06-12 14:14:19 +0300483 rts->threshold = rts_threshold;
484
Kalle Valo80301cd2009-06-12 14:17:39 +0300485 ret = wl1251_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
Kalle Valoff258392009-06-12 14:14:19 +0300486 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300487 wl1251_warning("failed to set rts threshold: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300488 goto out;
489 }
490
491out:
492 kfree(rts);
493 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300494}
495
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200496int wl1251_acx_beacon_filter_opt(struct wl1251 *wl, bool enable_filter)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300497{
Kalle Valoff258392009-06-12 14:14:19 +0300498 struct acx_beacon_filter_option *beacon_filter;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300499 int ret;
500
Kalle Valo80301cd2009-06-12 14:17:39 +0300501 wl1251_debug(DEBUG_ACX, "acx beacon filter opt");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300502
Kalle Valoff258392009-06-12 14:14:19 +0300503 beacon_filter = kzalloc(sizeof(*beacon_filter), GFP_KERNEL);
504 if (!beacon_filter) {
505 ret = -ENOMEM;
506 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300507 }
508
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200509 beacon_filter->enable = enable_filter;
Kalle Valoff258392009-06-12 14:14:19 +0300510 beacon_filter->max_num_beacons = 0;
511
Kalle Valo80301cd2009-06-12 14:17:39 +0300512 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
Kalle Valoff258392009-06-12 14:14:19 +0300513 beacon_filter, sizeof(*beacon_filter));
514 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300515 wl1251_warning("failed to set beacon filter opt: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300516 goto out;
517 }
518
519out:
520 kfree(beacon_filter);
521 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300522}
523
Kalle Valo80301cd2009-06-12 14:17:39 +0300524int wl1251_acx_beacon_filter_table(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300525{
Kalle Valoff258392009-06-12 14:14:19 +0300526 struct acx_beacon_filter_ie_table *ie_table;
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200527 int idx = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300528 int ret;
529
Kalle Valo80301cd2009-06-12 14:17:39 +0300530 wl1251_debug(DEBUG_ACX, "acx beacon filter table");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300531
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
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200538 /* configure default beacon pass-through rules */
539 ie_table->num_ie = 1;
540 ie_table->table[idx++] = BEACON_FILTER_IE_ID_CHANNEL_SWITCH_ANN;
541 ie_table->table[idx++] = BEACON_RULE_PASS_ON_APPEARANCE;
Kalle Valoff258392009-06-12 14:14:19 +0300542
Kalle Valo80301cd2009-06-12 14:17:39 +0300543 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
Kalle Valoff258392009-06-12 14:14:19 +0300544 ie_table, sizeof(*ie_table));
545 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300546 wl1251_warning("failed to set beacon filter table: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300547 goto out;
548 }
549
550out:
551 kfree(ie_table);
552 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300553}
554
Juuso Oikarinen474c48c2009-11-17 18:48:14 +0200555int wl1251_acx_conn_monit_params(struct wl1251 *wl)
556{
557 struct acx_conn_monit_params *acx;
558 int ret;
559
560 wl1251_debug(DEBUG_ACX, "acx connection monitor parameters");
561
562 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
563 if (!acx) {
564 ret = -ENOMEM;
565 goto out;
566 }
567
568 acx->synch_fail_thold = SYNCH_FAIL_DEFAULT_THRESHOLD;
569 acx->bss_lose_timeout = NO_BEACON_DEFAULT_TIMEOUT;
570
571 ret = wl1251_cmd_configure(wl, ACX_CONN_MONIT_PARAMS,
572 acx, sizeof(*acx));
573 if (ret < 0) {
574 wl1251_warning("failed to set connection monitor "
575 "parameters: %d", ret);
576 goto out;
577 }
578
579out:
580 kfree(acx);
581 return ret;
582}
583
Kalle Valo80301cd2009-06-12 14:17:39 +0300584int wl1251_acx_sg_enable(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300585{
Kalle Valoff258392009-06-12 14:14:19 +0300586 struct acx_bt_wlan_coex *pta;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300587 int ret;
588
Kalle Valo80301cd2009-06-12 14:17:39 +0300589 wl1251_debug(DEBUG_ACX, "acx sg enable");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300590
Kalle Valoff258392009-06-12 14:14:19 +0300591 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
592 if (!pta) {
593 ret = -ENOMEM;
594 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300595 }
596
Kalle Valoff258392009-06-12 14:14:19 +0300597 pta->enable = SG_ENABLE;
598
Kalle Valo80301cd2009-06-12 14:17:39 +0300599 ret = wl1251_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
Kalle Valoff258392009-06-12 14:14:19 +0300600 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300601 wl1251_warning("failed to set softgemini enable: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300602 goto out;
603 }
604
605out:
606 kfree(pta);
607 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300608}
609
Kalle Valo80301cd2009-06-12 14:17:39 +0300610int wl1251_acx_sg_cfg(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300611{
Kalle Valoff258392009-06-12 14:14:19 +0300612 struct acx_bt_wlan_coex_param *param;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300613 int ret;
614
Kalle Valo80301cd2009-06-12 14:17:39 +0300615 wl1251_debug(DEBUG_ACX, "acx sg cfg");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300616
Kalle Valoff258392009-06-12 14:14:19 +0300617 param = kzalloc(sizeof(*param), GFP_KERNEL);
618 if (!param) {
619 ret = -ENOMEM;
620 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300621 }
622
Kalle Valoff258392009-06-12 14:14:19 +0300623 /* BT-WLAN coext parameters */
624 param->min_rate = RATE_INDEX_24MBPS;
625 param->bt_hp_max_time = PTA_BT_HP_MAXTIME_DEF;
626 param->wlan_hp_max_time = PTA_WLAN_HP_MAX_TIME_DEF;
627 param->sense_disable_timer = PTA_SENSE_DISABLE_TIMER_DEF;
628 param->rx_time_bt_hp = PTA_PROTECTIVE_RX_TIME_DEF;
629 param->tx_time_bt_hp = PTA_PROTECTIVE_TX_TIME_DEF;
630 param->rx_time_bt_hp_fast = PTA_PROTECTIVE_RX_TIME_FAST_DEF;
631 param->tx_time_bt_hp_fast = PTA_PROTECTIVE_TX_TIME_FAST_DEF;
632 param->wlan_cycle_fast = PTA_CYCLE_TIME_FAST_DEF;
633 param->bt_anti_starvation_period = PTA_ANTI_STARVE_PERIOD_DEF;
634 param->next_bt_lp_packet = PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF;
635 param->wake_up_beacon = PTA_TIME_BEFORE_BEACON_DEF;
636 param->hp_dm_max_guard_time = PTA_HPDM_MAX_TIME_DEF;
637 param->next_wlan_packet = PTA_TIME_OUT_NEXT_WLAN_DEF;
638 param->antenna_type = PTA_ANTENNA_TYPE_DEF;
639 param->signal_type = PTA_SIGNALING_TYPE_DEF;
640 param->afh_leverage_on = PTA_AFH_LEVERAGE_ON_DEF;
641 param->quiet_cycle_num = PTA_NUMBER_QUIET_CYCLE_DEF;
642 param->max_cts = PTA_MAX_NUM_CTS_DEF;
643 param->wlan_packets_num = PTA_NUMBER_OF_WLAN_PACKETS_DEF;
644 param->bt_packets_num = PTA_NUMBER_OF_BT_PACKETS_DEF;
645 param->missed_rx_avalanche = PTA_RX_FOR_AVALANCHE_DEF;
646 param->wlan_elp_hp = PTA_ELP_HP_DEF;
647 param->bt_anti_starvation_cycles = PTA_ANTI_STARVE_NUM_CYCLE_DEF;
648 param->ack_mode_dual_ant = PTA_ACK_MODE_DEF;
649 param->pa_sd_enable = PTA_ALLOW_PA_SD_DEF;
650 param->pta_auto_mode_enable = PTA_AUTO_MODE_NO_CTS_DEF;
651 param->bt_hp_respected_num = PTA_BT_HP_RESPECTED_DEF;
652
Kalle Valo80301cd2009-06-12 14:17:39 +0300653 ret = wl1251_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
Kalle Valoff258392009-06-12 14:14:19 +0300654 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300655 wl1251_warning("failed to set sg config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300656 goto out;
657 }
658
659out:
660 kfree(param);
661 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300662}
663
Kalle Valo80301cd2009-06-12 14:17:39 +0300664int wl1251_acx_cca_threshold(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300665{
Kalle Valoff258392009-06-12 14:14:19 +0300666 struct acx_energy_detection *detection;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300667 int ret;
668
Kalle Valo80301cd2009-06-12 14:17:39 +0300669 wl1251_debug(DEBUG_ACX, "acx cca threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300670
Kalle Valoff258392009-06-12 14:14:19 +0300671 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
672 if (!detection) {
673 ret = -ENOMEM;
674 goto out;
675 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300676
Kalle Valoff258392009-06-12 14:14:19 +0300677 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
678 detection->tx_energy_detection = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300679
Kalle Valo80301cd2009-06-12 14:17:39 +0300680 ret = wl1251_cmd_configure(wl, ACX_CCA_THRESHOLD,
Kalle Valoff258392009-06-12 14:14:19 +0300681 detection, sizeof(*detection));
Julia Lawall059c4382011-08-08 13:18:03 +0200682 if (ret < 0)
Kalle Valo80301cd2009-06-12 14:17:39 +0300683 wl1251_warning("failed to set cca threshold: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300684
Kalle Valoff258392009-06-12 14:14:19 +0300685out:
686 kfree(detection);
687 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300688}
689
Kalle Valo80301cd2009-06-12 14:17:39 +0300690int wl1251_acx_bcn_dtim_options(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300691{
Kalle Valoff258392009-06-12 14:14:19 +0300692 struct acx_beacon_broadcast *bb;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300693 int ret;
694
Kalle Valo80301cd2009-06-12 14:17:39 +0300695 wl1251_debug(DEBUG_ACX, "acx bcn dtim options");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300696
Kalle Valoff258392009-06-12 14:14:19 +0300697 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
698 if (!bb) {
699 ret = -ENOMEM;
700 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300701 }
702
Kalle Valoff258392009-06-12 14:14:19 +0300703 bb->beacon_rx_timeout = BCN_RX_TIMEOUT_DEF_VALUE;
704 bb->broadcast_timeout = BROADCAST_RX_TIMEOUT_DEF_VALUE;
705 bb->rx_broadcast_in_ps = RX_BROADCAST_IN_PS_DEF_VALUE;
706 bb->ps_poll_threshold = CONSECUTIVE_PS_POLL_FAILURE_DEF;
707
Kalle Valo80301cd2009-06-12 14:17:39 +0300708 ret = wl1251_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
Kalle Valoff258392009-06-12 14:14:19 +0300709 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300710 wl1251_warning("failed to set rx config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300711 goto out;
712 }
713
714out:
715 kfree(bb);
716 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300717}
718
Kalle Valo80301cd2009-06-12 14:17:39 +0300719int wl1251_acx_aid(struct wl1251 *wl, u16 aid)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300720{
Kalle Valoff258392009-06-12 14:14:19 +0300721 struct acx_aid *acx_aid;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300722 int ret;
723
Kalle Valo80301cd2009-06-12 14:17:39 +0300724 wl1251_debug(DEBUG_ACX, "acx aid");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300725
Kalle Valoff258392009-06-12 14:14:19 +0300726 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
727 if (!acx_aid) {
728 ret = -ENOMEM;
729 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300730 }
731
Kalle Valoff258392009-06-12 14:14:19 +0300732 acx_aid->aid = aid;
733
Kalle Valo80301cd2009-06-12 14:17:39 +0300734 ret = wl1251_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
Kalle Valoff258392009-06-12 14:14:19 +0300735 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300736 wl1251_warning("failed to set aid: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300737 goto out;
738 }
739
740out:
741 kfree(acx_aid);
742 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300743}
744
Kalle Valo80301cd2009-06-12 14:17:39 +0300745int wl1251_acx_event_mbox_mask(struct wl1251 *wl, u32 event_mask)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300746{
Kalle Valoff258392009-06-12 14:14:19 +0300747 struct acx_event_mask *mask;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300748 int ret;
749
Kalle Valo80301cd2009-06-12 14:17:39 +0300750 wl1251_debug(DEBUG_ACX, "acx event mbox mask");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300751
Kalle Valoff258392009-06-12 14:14:19 +0300752 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
753 if (!mask) {
754 ret = -ENOMEM;
755 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300756 }
757
Kalle Valoff258392009-06-12 14:14:19 +0300758 /* high event mask is unused */
759 mask->high_event_mask = 0xffffffff;
760
761 mask->event_mask = event_mask;
762
Kalle Valo80301cd2009-06-12 14:17:39 +0300763 ret = wl1251_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
Kalle Valoff258392009-06-12 14:14:19 +0300764 mask, sizeof(*mask));
765 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300766 wl1251_warning("failed to set acx_event_mbox_mask: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300767 goto out;
768 }
769
770out:
771 kfree(mask);
772 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300773}
774
David Gnedt8964e492011-01-30 20:11:00 +0100775int wl1251_acx_low_rssi(struct wl1251 *wl, s8 threshold, u8 weight,
776 u8 depth, enum wl1251_acx_low_rssi_type type)
777{
778 struct acx_low_rssi *rssi;
779 int ret;
780
781 wl1251_debug(DEBUG_ACX, "acx low rssi");
782
783 rssi = kzalloc(sizeof(*rssi), GFP_KERNEL);
784 if (!rssi)
785 return -ENOMEM;
786
787 rssi->threshold = threshold;
788 rssi->weight = weight;
789 rssi->depth = depth;
790 rssi->type = type;
791
792 ret = wl1251_cmd_configure(wl, ACX_LOW_RSSI, rssi, sizeof(*rssi));
793 if (ret < 0)
794 wl1251_warning("failed to set low rssi threshold: %d", ret);
795
796 kfree(rssi);
797 return ret;
798}
799
Kalle Valo80301cd2009-06-12 14:17:39 +0300800int wl1251_acx_set_preamble(struct wl1251 *wl, enum acx_preamble_type preamble)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300801{
Kalle Valoff258392009-06-12 14:14:19 +0300802 struct acx_preamble *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300803 int ret;
804
Kalle Valo80301cd2009-06-12 14:17:39 +0300805 wl1251_debug(DEBUG_ACX, "acx_set_preamble");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300806
Kalle Valoff258392009-06-12 14:14:19 +0300807 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
808 if (!acx) {
809 ret = -ENOMEM;
810 goto out;
811 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300812
Kalle Valoff258392009-06-12 14:14:19 +0300813 acx->preamble = preamble;
814
Kalle Valo80301cd2009-06-12 14:17:39 +0300815 ret = wl1251_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300816 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300817 wl1251_warning("Setting of preamble failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300818 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300819 }
Kalle Valoff258392009-06-12 14:14:19 +0300820
821out:
822 kfree(acx);
823 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300824}
825
Kalle Valo80301cd2009-06-12 14:17:39 +0300826int wl1251_acx_cts_protect(struct wl1251 *wl,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300827 enum acx_ctsprotect_type ctsprotect)
828{
Kalle Valoff258392009-06-12 14:14:19 +0300829 struct acx_ctsprotect *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300830 int ret;
831
Kalle Valo80301cd2009-06-12 14:17:39 +0300832 wl1251_debug(DEBUG_ACX, "acx_set_ctsprotect");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300833
Kalle Valoff258392009-06-12 14:14:19 +0300834 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
835 if (!acx) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300836 ret = -ENOMEM;
837 goto out;
838 }
839
Kalle Valoff258392009-06-12 14:14:19 +0300840 acx->ctsprotect = ctsprotect;
841
Kalle Valo80301cd2009-06-12 14:17:39 +0300842 ret = wl1251_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300843 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300844 wl1251_warning("Setting of ctsprotect failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300845 goto out;
846 }
847
Kalle Valoff258392009-06-12 14:14:19 +0300848out:
849 kfree(acx);
850 return ret;
851}
852
Kalle Valo80301cd2009-06-12 14:17:39 +0300853int wl1251_acx_tsf_info(struct wl1251 *wl, u64 *mactime)
Kalle Valoff258392009-06-12 14:14:19 +0300854{
855 struct acx_tsf_info *tsf_info;
856 int ret;
857
858 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
859 if (!tsf_info) {
860 ret = -ENOMEM;
861 goto out;
862 }
863
Kalle Valo80301cd2009-06-12 14:17:39 +0300864 ret = wl1251_cmd_interrogate(wl, ACX_TSF_INFO,
Kalle Valoff258392009-06-12 14:14:19 +0300865 tsf_info, sizeof(*tsf_info));
866 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300867 wl1251_warning("ACX_FW_REV interrogate failed");
Kalle Valoff258392009-06-12 14:14:19 +0300868 goto out;
869 }
870
871 *mactime = tsf_info->current_tsf_lsb |
872 (tsf_info->current_tsf_msb << 31);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300873
874out:
Kalle Valoff258392009-06-12 14:14:19 +0300875 kfree(tsf_info);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300876 return ret;
877}
Kalle Valoff258392009-06-12 14:14:19 +0300878
Kalle Valo80301cd2009-06-12 14:17:39 +0300879int wl1251_acx_statistics(struct wl1251 *wl, struct acx_statistics *stats)
Kalle Valoff258392009-06-12 14:14:19 +0300880{
881 int ret;
882
Kalle Valo80301cd2009-06-12 14:17:39 +0300883 wl1251_debug(DEBUG_ACX, "acx statistics");
Kalle Valoff258392009-06-12 14:14:19 +0300884
Kalle Valo80301cd2009-06-12 14:17:39 +0300885 ret = wl1251_cmd_interrogate(wl, ACX_STATISTICS, stats,
Kalle Valoff258392009-06-12 14:14:19 +0300886 sizeof(*stats));
887 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300888 wl1251_warning("acx statistics failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300889 return -ENOMEM;
890 }
891
892 return 0;
893}
Kalle Valo0e71bb02009-08-07 13:33:57 +0300894
895int wl1251_acx_rate_policies(struct wl1251 *wl)
896{
897 struct acx_rate_policy *acx;
898 int ret = 0;
899
900 wl1251_debug(DEBUG_ACX, "acx rate policies");
901
902 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
903
904 if (!acx) {
905 ret = -ENOMEM;
906 goto out;
907 }
908
909 /* configure one default (one-size-fits-all) rate class */
910 acx->rate_class_cnt = 1;
911 acx->rate_class[0].enabled_rates = ACX_RATE_MASK_UNSPECIFIED;
912 acx->rate_class[0].short_retry_limit = ACX_RATE_RETRY_LIMIT;
913 acx->rate_class[0].long_retry_limit = ACX_RATE_RETRY_LIMIT;
914 acx->rate_class[0].aflags = 0;
915
916 ret = wl1251_cmd_configure(wl, ACX_RATE_POLICY, acx, sizeof(*acx));
917 if (ret < 0) {
918 wl1251_warning("Setting of rate policies failed: %d", ret);
919 goto out;
920 }
921
922out:
923 kfree(acx);
924 return ret;
925}
926
927int wl1251_acx_mem_cfg(struct wl1251 *wl)
928{
929 struct wl1251_acx_config_memory *mem_conf;
930 int ret, i;
931
932 wl1251_debug(DEBUG_ACX, "acx mem cfg");
933
934 mem_conf = kzalloc(sizeof(*mem_conf), GFP_KERNEL);
935 if (!mem_conf) {
936 ret = -ENOMEM;
937 goto out;
938 }
939
940 /* memory config */
941 mem_conf->mem_config.num_stations = cpu_to_le16(DEFAULT_NUM_STATIONS);
942 mem_conf->mem_config.rx_mem_block_num = 35;
943 mem_conf->mem_config.tx_min_mem_block_num = 64;
944 mem_conf->mem_config.num_tx_queues = MAX_TX_QUEUES;
945 mem_conf->mem_config.host_if_options = HOSTIF_PKT_RING;
946 mem_conf->mem_config.num_ssid_profiles = 1;
947 mem_conf->mem_config.debug_buffer_size =
948 cpu_to_le16(TRACE_BUFFER_MAX_SIZE);
949
950 /* RX queue config */
951 mem_conf->rx_queue_config.dma_address = 0;
952 mem_conf->rx_queue_config.num_descs = ACX_RX_DESC_DEF;
953 mem_conf->rx_queue_config.priority = DEFAULT_RXQ_PRIORITY;
954 mem_conf->rx_queue_config.type = DEFAULT_RXQ_TYPE;
955
956 /* TX queue config */
957 for (i = 0; i < MAX_TX_QUEUES; i++) {
958 mem_conf->tx_queue_config[i].num_descs = ACX_TX_DESC_DEF;
959 mem_conf->tx_queue_config[i].attributes = i;
960 }
961
962 ret = wl1251_cmd_configure(wl, ACX_MEM_CFG, mem_conf,
963 sizeof(*mem_conf));
964 if (ret < 0) {
965 wl1251_warning("wl1251 mem config failed: %d", ret);
966 goto out;
967 }
968
969out:
970 kfree(mem_conf);
971 return ret;
972}
Vidhya Govindand531cf32009-11-17 18:49:08 +0200973
974int wl1251_acx_wr_tbtt_and_dtim(struct wl1251 *wl, u16 tbtt, u8 dtim)
975{
976 struct wl1251_acx_wr_tbtt_and_dtim *acx;
977 int ret;
978
979 wl1251_debug(DEBUG_ACX, "acx tbtt and dtim");
980
981 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
982 if (!acx) {
983 ret = -ENOMEM;
984 goto out;
985 }
986
987 acx->tbtt = tbtt;
988 acx->dtim = dtim;
989
990 ret = wl1251_cmd_configure(wl, ACX_WR_TBTT_AND_DTIM,
991 acx, sizeof(*acx));
992 if (ret < 0) {
993 wl1251_warning("failed to set tbtt and dtim: %d", ret);
994 goto out;
995 }
996
997out:
998 kfree(acx);
999 return ret;
1000}
Kalle Valo86dff7a2009-11-30 10:18:19 +02001001
David Gnedtc3e334d2011-01-30 20:10:57 +01001002int wl1251_acx_bet_enable(struct wl1251 *wl, enum wl1251_acx_bet_mode mode,
1003 u8 max_consecutive)
1004{
1005 struct wl1251_acx_bet_enable *acx;
1006 int ret;
1007
1008 wl1251_debug(DEBUG_ACX, "acx bet enable");
1009
1010 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1011 if (!acx) {
1012 ret = -ENOMEM;
1013 goto out;
1014 }
1015
1016 acx->enable = mode;
1017 acx->max_consecutive = max_consecutive;
1018
1019 ret = wl1251_cmd_configure(wl, ACX_BET_ENABLE, acx, sizeof(*acx));
1020 if (ret < 0) {
1021 wl1251_warning("wl1251 acx bet enable failed: %d", ret);
1022 goto out;
1023 }
1024
1025out:
1026 kfree(acx);
1027 return ret;
1028}
1029
Kalle Valo86dff7a2009-11-30 10:18:19 +02001030int wl1251_acx_ac_cfg(struct wl1251 *wl, u8 ac, u8 cw_min, u16 cw_max,
1031 u8 aifs, u16 txop)
1032{
1033 struct wl1251_acx_ac_cfg *acx;
1034 int ret = 0;
1035
1036 wl1251_debug(DEBUG_ACX, "acx ac cfg %d cw_ming %d cw_max %d "
1037 "aifs %d txop %d", ac, cw_min, cw_max, aifs, txop);
1038
1039 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1040
1041 if (!acx) {
1042 ret = -ENOMEM;
1043 goto out;
1044 }
1045
1046 acx->ac = ac;
1047 acx->cw_min = cw_min;
1048 acx->cw_max = cw_max;
1049 acx->aifsn = aifs;
1050 acx->txop_limit = txop;
1051
1052 ret = wl1251_cmd_configure(wl, ACX_AC_CFG, acx, sizeof(*acx));
1053 if (ret < 0) {
1054 wl1251_warning("acx ac cfg failed: %d", ret);
1055 goto out;
1056 }
1057
1058out:
1059 kfree(acx);
1060 return ret;
1061}
Kalle Valo27336f12009-11-30 10:18:27 +02001062
1063int wl1251_acx_tid_cfg(struct wl1251 *wl, u8 queue,
1064 enum wl1251_acx_channel_type type,
1065 u8 tsid, enum wl1251_acx_ps_scheme ps_scheme,
1066 enum wl1251_acx_ack_policy ack_policy)
1067{
1068 struct wl1251_acx_tid_cfg *acx;
1069 int ret = 0;
1070
1071 wl1251_debug(DEBUG_ACX, "acx tid cfg %d type %d tsid %d "
1072 "ps_scheme %d ack_policy %d", queue, type, tsid,
1073 ps_scheme, ack_policy);
1074
1075 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1076
1077 if (!acx) {
1078 ret = -ENOMEM;
1079 goto out;
1080 }
1081
1082 acx->queue = queue;
1083 acx->type = type;
1084 acx->tsid = tsid;
1085 acx->ps_scheme = ps_scheme;
1086 acx->ack_policy = ack_policy;
1087
1088 ret = wl1251_cmd_configure(wl, ACX_TID_CFG, acx, sizeof(*acx));
1089 if (ret < 0) {
1090 wl1251_warning("acx tid cfg failed: %d", ret);
1091 goto out;
1092 }
1093
1094out:
1095 kfree(acx);
1096 return ret;
1097}