blob: ef8370edace709f8c1fb3437403fe4447f7d7d12 [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 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
Kalle Valo80301cd2009-06-12 14:17:39 +0300151int wl1251_acx_fw_version(struct wl1251 *wl, char *buf, size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300152{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300153 struct acx_revision *rev;
154 int ret;
155
Kalle Valo80301cd2009-06-12 14:17:39 +0300156 wl1251_debug(DEBUG_ACX, "acx fw rev");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300157
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 Valo80301cd2009-06-12 14:17:39 +0300164 ret = wl1251_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
Kalle Valoff258392009-06-12 14:14:19 +0300165 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300166 wl1251_warning("ACX_FW_REV interrogate failed");
Kalle Valoff258392009-06-12 14:14:19 +0300167 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
Kalle Valo80301cd2009-06-12 14:17:39 +0300185int wl1251_acx_tx_power(struct wl1251 *wl, int power)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300186{
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300190 wl1251_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300191
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300203 ret = wl1251_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
Kalle Valoff258392009-06-12 14:14:19 +0300204 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300205 wl1251_warning("configure of tx power failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300206 goto out;
207 }
208
209out:
210 kfree(acx);
211 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300212}
213
Kalle Valo80301cd2009-06-12 14:17:39 +0300214int wl1251_acx_feature_cfg(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300215{
Kalle Valoff258392009-06-12 14:14:19 +0300216 struct acx_feature_config *feature;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300217 int ret;
218
Kalle Valo80301cd2009-06-12 14:17:39 +0300219 wl1251_debug(DEBUG_ACX, "acx feature cfg");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300220
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 Valo80301cd2009-06-12 14:17:39 +0300231 ret = wl1251_cmd_configure(wl, ACX_FEATURE_CFG,
Kalle Valoff258392009-06-12 14:14:19 +0300232 feature, sizeof(*feature));
233 if (ret < 0) {
Stefan Weilda3c8212009-07-19 15:00:39 +0200234 wl1251_error("Couldn't 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 Valo80301cd2009-06-12 14:17:39 +0300243int wl1251_acx_mem_map(struct wl1251 *wl, struct acx_header *mem_map,
Kalle Valoff258392009-06-12 14:14:19 +0300244 size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300245{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300246 int ret;
247
Kalle Valo80301cd2009-06-12 14:17:39 +0300248 wl1251_debug(DEBUG_ACX, "acx mem map");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300249
Kalle Valo80301cd2009-06-12 14:17:39 +0300250 ret = wl1251_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
Kalle Valo80301cd2009-06-12 14:17:39 +0300257int wl1251_acx_data_path_params(struct wl1251 *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
Kalle Valo80301cd2009-06-12 14:17:39 +0300263 wl1251_debug(DEBUG_ACX, "acx data path params");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300264
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 Valo80301cd2009-06-12 14:17:39 +0300283 ret = wl1251_cmd_configure(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300284 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 Valo80301cd2009-06-12 14:17:39 +0300289 ret = wl1251_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) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300293 wl1251_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 Valo80301cd2009-06-12 14:17:39 +0300296 wl1251_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
Kalle Valo80301cd2009-06-12 14:17:39 +0300306int wl1251_acx_rx_msdu_life_time(struct wl1251 *wl, u32 life_time)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300307{
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300311 wl1251_debug(DEBUG_ACX, "acx rx msdu life time");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300312
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
Vidhya Govindance650b52009-06-12 14:16:45 +0300319 acx->lifetime = life_time;
Kalle Valo80301cd2009-06-12 14:17:39 +0300320 ret = wl1251_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
Kalle Valoff258392009-06-12 14:14:19 +0300321 acx, sizeof(*acx));
322 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300323 wl1251_warning("failed to set rx msdu life time: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300324 goto out;
325 }
326
327out:
328 kfree(acx);
329 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300330}
331
Kalle Valo80301cd2009-06-12 14:17:39 +0300332int wl1251_acx_rx_config(struct wl1251 *wl, u32 config, u32 filter)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300333{
Kalle Valoff258392009-06-12 14:14:19 +0300334 struct acx_rx_config *rx_config;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300335 int ret;
336
Kalle Valo80301cd2009-06-12 14:17:39 +0300337 wl1251_debug(DEBUG_ACX, "acx rx config");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300338
Kalle Valoff258392009-06-12 14:14:19 +0300339 rx_config = kzalloc(sizeof(*rx_config), GFP_KERNEL);
340 if (!rx_config) {
341 ret = -ENOMEM;
342 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300343 }
344
Kalle Valoff258392009-06-12 14:14:19 +0300345 rx_config->config_options = config;
346 rx_config->filter_options = filter;
347
Kalle Valo80301cd2009-06-12 14:17:39 +0300348 ret = wl1251_cmd_configure(wl, ACX_RX_CFG,
Kalle Valoff258392009-06-12 14:14:19 +0300349 rx_config, sizeof(*rx_config));
350 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300351 wl1251_warning("failed to set rx config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300352 goto out;
353 }
354
355out:
356 kfree(rx_config);
357 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300358}
359
Kalle Valo80301cd2009-06-12 14:17:39 +0300360int wl1251_acx_pd_threshold(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300361{
Kalle Valoff258392009-06-12 14:14:19 +0300362 struct acx_packet_detection *pd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300363 int ret;
364
Kalle Valo80301cd2009-06-12 14:17:39 +0300365 wl1251_debug(DEBUG_ACX, "acx data pd threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300366
Kalle Valoff258392009-06-12 14:14:19 +0300367 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
368 if (!pd) {
369 ret = -ENOMEM;
370 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300371 }
372
Kalle Valoff258392009-06-12 14:14:19 +0300373 /* FIXME: threshold value not set */
374
Kalle Valo80301cd2009-06-12 14:17:39 +0300375 ret = wl1251_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
Kalle Valoff258392009-06-12 14:14:19 +0300376 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300377 wl1251_warning("failed to set pd threshold: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300378 goto out;
379 }
380
381out:
382 kfree(pd);
Julia Lawall9f19fa62010-08-16 18:25:21 +0200383 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300384}
385
Kalle Valo80301cd2009-06-12 14:17:39 +0300386int wl1251_acx_slot(struct wl1251 *wl, enum acx_slot_type slot_time)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300387{
Kalle Valoff258392009-06-12 14:14:19 +0300388 struct acx_slot *slot;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300389 int ret;
390
Kalle Valo80301cd2009-06-12 14:17:39 +0300391 wl1251_debug(DEBUG_ACX, "acx slot");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300392
Kalle Valoff258392009-06-12 14:14:19 +0300393 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
394 if (!slot) {
395 ret = -ENOMEM;
396 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300397 }
398
Kalle Valoff258392009-06-12 14:14:19 +0300399 slot->wone_index = STATION_WONE_INDEX;
400 slot->slot_time = slot_time;
401
Kalle Valo80301cd2009-06-12 14:17:39 +0300402 ret = wl1251_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
Kalle Valoff258392009-06-12 14:14:19 +0300403 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300404 wl1251_warning("failed to set slot time: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300405 goto out;
406 }
407
408out:
409 kfree(slot);
410 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300411}
412
Kalle Valo80301cd2009-06-12 14:17:39 +0300413int wl1251_acx_group_address_tbl(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300414{
Kalle Valoff258392009-06-12 14:14:19 +0300415 struct acx_dot11_grp_addr_tbl *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300416 int ret;
417
Kalle Valo80301cd2009-06-12 14:17:39 +0300418 wl1251_debug(DEBUG_ACX, "acx group address tbl");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300419
Kalle Valoff258392009-06-12 14:14:19 +0300420 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
421 if (!acx) {
422 ret = -ENOMEM;
423 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300424 }
425
Kalle Valoff258392009-06-12 14:14:19 +0300426 /* MAC filtering */
427 acx->enabled = 0;
428 acx->num_groups = 0;
429 memset(acx->mac_table, 0, ADDRESS_GROUP_MAX_LEN);
430
Kalle Valo80301cd2009-06-12 14:17:39 +0300431 ret = wl1251_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
Kalle Valoff258392009-06-12 14:14:19 +0300432 acx, sizeof(*acx));
433 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300434 wl1251_warning("failed to set group addr table: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300435 goto out;
436 }
437
438out:
439 kfree(acx);
440 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300441}
442
Kalle Valo80301cd2009-06-12 14:17:39 +0300443int wl1251_acx_service_period_timeout(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300444{
Kalle Valoff258392009-06-12 14:14:19 +0300445 struct acx_rx_timeout *rx_timeout;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300446 int ret;
447
Kalle Valoff258392009-06-12 14:14:19 +0300448 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL);
449 if (!rx_timeout) {
450 ret = -ENOMEM;
451 goto out;
452 }
453
Kalle Valo80301cd2009-06-12 14:17:39 +0300454 wl1251_debug(DEBUG_ACX, "acx service period timeout");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300455
Kalle Valoff258392009-06-12 14:14:19 +0300456 rx_timeout->ps_poll_timeout = RX_TIMEOUT_PS_POLL_DEF;
457 rx_timeout->upsd_timeout = RX_TIMEOUT_UPSD_DEF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300458
Kalle Valo80301cd2009-06-12 14:17:39 +0300459 ret = wl1251_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
Kalle Valoff258392009-06-12 14:14:19 +0300460 rx_timeout, sizeof(*rx_timeout));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300461 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300462 wl1251_warning("failed to set service period timeout: %d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300463 ret);
Kalle Valoff258392009-06-12 14:14:19 +0300464 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300465 }
466
Kalle Valoff258392009-06-12 14:14:19 +0300467out:
468 kfree(rx_timeout);
469 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300470}
471
Kalle Valo80301cd2009-06-12 14:17:39 +0300472int wl1251_acx_rts_threshold(struct wl1251 *wl, u16 rts_threshold)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300473{
Kalle Valoff258392009-06-12 14:14:19 +0300474 struct acx_rts_threshold *rts;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300475 int ret;
476
Kalle Valo80301cd2009-06-12 14:17:39 +0300477 wl1251_debug(DEBUG_ACX, "acx rts threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300478
Kalle Valoff258392009-06-12 14:14:19 +0300479 rts = kzalloc(sizeof(*rts), GFP_KERNEL);
480 if (!rts) {
481 ret = -ENOMEM;
482 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300483 }
484
Kalle Valoff258392009-06-12 14:14:19 +0300485 rts->threshold = rts_threshold;
486
Kalle Valo80301cd2009-06-12 14:17:39 +0300487 ret = wl1251_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
Kalle Valoff258392009-06-12 14:14:19 +0300488 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300489 wl1251_warning("failed to set rts threshold: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300490 goto out;
491 }
492
493out:
494 kfree(rts);
495 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300496}
497
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200498int wl1251_acx_beacon_filter_opt(struct wl1251 *wl, bool enable_filter)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300499{
Kalle Valoff258392009-06-12 14:14:19 +0300500 struct acx_beacon_filter_option *beacon_filter;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300501 int ret;
502
Kalle Valo80301cd2009-06-12 14:17:39 +0300503 wl1251_debug(DEBUG_ACX, "acx beacon filter opt");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300504
Kalle Valoff258392009-06-12 14:14:19 +0300505 beacon_filter = kzalloc(sizeof(*beacon_filter), GFP_KERNEL);
506 if (!beacon_filter) {
507 ret = -ENOMEM;
508 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300509 }
510
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200511 beacon_filter->enable = enable_filter;
Kalle Valoff258392009-06-12 14:14:19 +0300512 beacon_filter->max_num_beacons = 0;
513
Kalle Valo80301cd2009-06-12 14:17:39 +0300514 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
Kalle Valoff258392009-06-12 14:14:19 +0300515 beacon_filter, sizeof(*beacon_filter));
516 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300517 wl1251_warning("failed to set beacon filter opt: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300518 goto out;
519 }
520
521out:
522 kfree(beacon_filter);
523 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300524}
525
Kalle Valo80301cd2009-06-12 14:17:39 +0300526int wl1251_acx_beacon_filter_table(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300527{
Kalle Valoff258392009-06-12 14:14:19 +0300528 struct acx_beacon_filter_ie_table *ie_table;
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200529 int idx = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300530 int ret;
531
Kalle Valo80301cd2009-06-12 14:17:39 +0300532 wl1251_debug(DEBUG_ACX, "acx beacon filter table");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300533
Kalle Valoff258392009-06-12 14:14:19 +0300534 ie_table = kzalloc(sizeof(*ie_table), GFP_KERNEL);
535 if (!ie_table) {
536 ret = -ENOMEM;
537 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300538 }
539
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200540 /* configure default beacon pass-through rules */
541 ie_table->num_ie = 1;
542 ie_table->table[idx++] = BEACON_FILTER_IE_ID_CHANNEL_SWITCH_ANN;
543 ie_table->table[idx++] = BEACON_RULE_PASS_ON_APPEARANCE;
Kalle Valoff258392009-06-12 14:14:19 +0300544
Kalle Valo80301cd2009-06-12 14:17:39 +0300545 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
Kalle Valoff258392009-06-12 14:14:19 +0300546 ie_table, sizeof(*ie_table));
547 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300548 wl1251_warning("failed to set beacon filter table: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300549 goto out;
550 }
551
552out:
553 kfree(ie_table);
554 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300555}
556
Juuso Oikarinen474c48c2009-11-17 18:48:14 +0200557int wl1251_acx_conn_monit_params(struct wl1251 *wl)
558{
559 struct acx_conn_monit_params *acx;
560 int ret;
561
562 wl1251_debug(DEBUG_ACX, "acx connection monitor parameters");
563
564 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
565 if (!acx) {
566 ret = -ENOMEM;
567 goto out;
568 }
569
570 acx->synch_fail_thold = SYNCH_FAIL_DEFAULT_THRESHOLD;
571 acx->bss_lose_timeout = NO_BEACON_DEFAULT_TIMEOUT;
572
573 ret = wl1251_cmd_configure(wl, ACX_CONN_MONIT_PARAMS,
574 acx, sizeof(*acx));
575 if (ret < 0) {
576 wl1251_warning("failed to set connection monitor "
577 "parameters: %d", ret);
578 goto out;
579 }
580
581out:
582 kfree(acx);
583 return ret;
584}
585
Kalle Valo80301cd2009-06-12 14:17:39 +0300586int wl1251_acx_sg_enable(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300587{
Kalle Valoff258392009-06-12 14:14:19 +0300588 struct acx_bt_wlan_coex *pta;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300589 int ret;
590
Kalle Valo80301cd2009-06-12 14:17:39 +0300591 wl1251_debug(DEBUG_ACX, "acx sg enable");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300592
Kalle Valoff258392009-06-12 14:14:19 +0300593 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
594 if (!pta) {
595 ret = -ENOMEM;
596 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300597 }
598
Kalle Valoff258392009-06-12 14:14:19 +0300599 pta->enable = SG_ENABLE;
600
Kalle Valo80301cd2009-06-12 14:17:39 +0300601 ret = wl1251_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
Kalle Valoff258392009-06-12 14:14:19 +0300602 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300603 wl1251_warning("failed to set softgemini enable: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300604 goto out;
605 }
606
607out:
608 kfree(pta);
609 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300610}
611
Kalle Valo80301cd2009-06-12 14:17:39 +0300612int wl1251_acx_sg_cfg(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300613{
Kalle Valoff258392009-06-12 14:14:19 +0300614 struct acx_bt_wlan_coex_param *param;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300615 int ret;
616
Kalle Valo80301cd2009-06-12 14:17:39 +0300617 wl1251_debug(DEBUG_ACX, "acx sg cfg");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300618
Kalle Valoff258392009-06-12 14:14:19 +0300619 param = kzalloc(sizeof(*param), GFP_KERNEL);
620 if (!param) {
621 ret = -ENOMEM;
622 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300623 }
624
Kalle Valoff258392009-06-12 14:14:19 +0300625 /* BT-WLAN coext parameters */
626 param->min_rate = RATE_INDEX_24MBPS;
627 param->bt_hp_max_time = PTA_BT_HP_MAXTIME_DEF;
628 param->wlan_hp_max_time = PTA_WLAN_HP_MAX_TIME_DEF;
629 param->sense_disable_timer = PTA_SENSE_DISABLE_TIMER_DEF;
630 param->rx_time_bt_hp = PTA_PROTECTIVE_RX_TIME_DEF;
631 param->tx_time_bt_hp = PTA_PROTECTIVE_TX_TIME_DEF;
632 param->rx_time_bt_hp_fast = PTA_PROTECTIVE_RX_TIME_FAST_DEF;
633 param->tx_time_bt_hp_fast = PTA_PROTECTIVE_TX_TIME_FAST_DEF;
634 param->wlan_cycle_fast = PTA_CYCLE_TIME_FAST_DEF;
635 param->bt_anti_starvation_period = PTA_ANTI_STARVE_PERIOD_DEF;
636 param->next_bt_lp_packet = PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF;
637 param->wake_up_beacon = PTA_TIME_BEFORE_BEACON_DEF;
638 param->hp_dm_max_guard_time = PTA_HPDM_MAX_TIME_DEF;
639 param->next_wlan_packet = PTA_TIME_OUT_NEXT_WLAN_DEF;
640 param->antenna_type = PTA_ANTENNA_TYPE_DEF;
641 param->signal_type = PTA_SIGNALING_TYPE_DEF;
642 param->afh_leverage_on = PTA_AFH_LEVERAGE_ON_DEF;
643 param->quiet_cycle_num = PTA_NUMBER_QUIET_CYCLE_DEF;
644 param->max_cts = PTA_MAX_NUM_CTS_DEF;
645 param->wlan_packets_num = PTA_NUMBER_OF_WLAN_PACKETS_DEF;
646 param->bt_packets_num = PTA_NUMBER_OF_BT_PACKETS_DEF;
647 param->missed_rx_avalanche = PTA_RX_FOR_AVALANCHE_DEF;
648 param->wlan_elp_hp = PTA_ELP_HP_DEF;
649 param->bt_anti_starvation_cycles = PTA_ANTI_STARVE_NUM_CYCLE_DEF;
650 param->ack_mode_dual_ant = PTA_ACK_MODE_DEF;
651 param->pa_sd_enable = PTA_ALLOW_PA_SD_DEF;
652 param->pta_auto_mode_enable = PTA_AUTO_MODE_NO_CTS_DEF;
653 param->bt_hp_respected_num = PTA_BT_HP_RESPECTED_DEF;
654
Kalle Valo80301cd2009-06-12 14:17:39 +0300655 ret = wl1251_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
Kalle Valoff258392009-06-12 14:14:19 +0300656 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300657 wl1251_warning("failed to set sg config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300658 goto out;
659 }
660
661out:
662 kfree(param);
663 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300664}
665
Kalle Valo80301cd2009-06-12 14:17:39 +0300666int wl1251_acx_cca_threshold(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300667{
Kalle Valoff258392009-06-12 14:14:19 +0300668 struct acx_energy_detection *detection;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300669 int ret;
670
Kalle Valo80301cd2009-06-12 14:17:39 +0300671 wl1251_debug(DEBUG_ACX, "acx cca threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300672
Kalle Valoff258392009-06-12 14:14:19 +0300673 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
674 if (!detection) {
675 ret = -ENOMEM;
676 goto out;
677 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300678
Kalle Valoff258392009-06-12 14:14:19 +0300679 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
680 detection->tx_energy_detection = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300681
Kalle Valo80301cd2009-06-12 14:17:39 +0300682 ret = wl1251_cmd_configure(wl, ACX_CCA_THRESHOLD,
Kalle Valoff258392009-06-12 14:14:19 +0300683 detection, sizeof(*detection));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300684 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300685 wl1251_warning("failed to set cca threshold: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300686 return ret;
687 }
688
Kalle Valoff258392009-06-12 14:14:19 +0300689out:
690 kfree(detection);
691 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300692}
693
Kalle Valo80301cd2009-06-12 14:17:39 +0300694int wl1251_acx_bcn_dtim_options(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300695{
Kalle Valoff258392009-06-12 14:14:19 +0300696 struct acx_beacon_broadcast *bb;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300697 int ret;
698
Kalle Valo80301cd2009-06-12 14:17:39 +0300699 wl1251_debug(DEBUG_ACX, "acx bcn dtim options");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300700
Kalle Valoff258392009-06-12 14:14:19 +0300701 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
702 if (!bb) {
703 ret = -ENOMEM;
704 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300705 }
706
Kalle Valoff258392009-06-12 14:14:19 +0300707 bb->beacon_rx_timeout = BCN_RX_TIMEOUT_DEF_VALUE;
708 bb->broadcast_timeout = BROADCAST_RX_TIMEOUT_DEF_VALUE;
709 bb->rx_broadcast_in_ps = RX_BROADCAST_IN_PS_DEF_VALUE;
710 bb->ps_poll_threshold = CONSECUTIVE_PS_POLL_FAILURE_DEF;
711
Kalle Valo80301cd2009-06-12 14:17:39 +0300712 ret = wl1251_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
Kalle Valoff258392009-06-12 14:14:19 +0300713 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300714 wl1251_warning("failed to set rx config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300715 goto out;
716 }
717
718out:
719 kfree(bb);
720 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300721}
722
Kalle Valo80301cd2009-06-12 14:17:39 +0300723int wl1251_acx_aid(struct wl1251 *wl, u16 aid)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300724{
Kalle Valoff258392009-06-12 14:14:19 +0300725 struct acx_aid *acx_aid;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300726 int ret;
727
Kalle Valo80301cd2009-06-12 14:17:39 +0300728 wl1251_debug(DEBUG_ACX, "acx aid");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300729
Kalle Valoff258392009-06-12 14:14:19 +0300730 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
731 if (!acx_aid) {
732 ret = -ENOMEM;
733 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300734 }
735
Kalle Valoff258392009-06-12 14:14:19 +0300736 acx_aid->aid = aid;
737
Kalle Valo80301cd2009-06-12 14:17:39 +0300738 ret = wl1251_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
Kalle Valoff258392009-06-12 14:14:19 +0300739 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300740 wl1251_warning("failed to set aid: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300741 goto out;
742 }
743
744out:
745 kfree(acx_aid);
746 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300747}
748
Kalle Valo80301cd2009-06-12 14:17:39 +0300749int wl1251_acx_event_mbox_mask(struct wl1251 *wl, u32 event_mask)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300750{
Kalle Valoff258392009-06-12 14:14:19 +0300751 struct acx_event_mask *mask;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300752 int ret;
753
Kalle Valo80301cd2009-06-12 14:17:39 +0300754 wl1251_debug(DEBUG_ACX, "acx event mbox mask");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300755
Kalle Valoff258392009-06-12 14:14:19 +0300756 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
757 if (!mask) {
758 ret = -ENOMEM;
759 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300760 }
761
Kalle Valoff258392009-06-12 14:14:19 +0300762 /* high event mask is unused */
763 mask->high_event_mask = 0xffffffff;
764
765 mask->event_mask = event_mask;
766
Kalle Valo80301cd2009-06-12 14:17:39 +0300767 ret = wl1251_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
Kalle Valoff258392009-06-12 14:14:19 +0300768 mask, sizeof(*mask));
769 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300770 wl1251_warning("failed to set acx_event_mbox_mask: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300771 goto out;
772 }
773
774out:
775 kfree(mask);
776 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300777}
778
David Gnedt8964e492011-01-30 20:11:00 +0100779int wl1251_acx_low_rssi(struct wl1251 *wl, s8 threshold, u8 weight,
780 u8 depth, enum wl1251_acx_low_rssi_type type)
781{
782 struct acx_low_rssi *rssi;
783 int ret;
784
785 wl1251_debug(DEBUG_ACX, "acx low rssi");
786
787 rssi = kzalloc(sizeof(*rssi), GFP_KERNEL);
788 if (!rssi)
789 return -ENOMEM;
790
791 rssi->threshold = threshold;
792 rssi->weight = weight;
793 rssi->depth = depth;
794 rssi->type = type;
795
796 ret = wl1251_cmd_configure(wl, ACX_LOW_RSSI, rssi, sizeof(*rssi));
797 if (ret < 0)
798 wl1251_warning("failed to set low rssi threshold: %d", ret);
799
800 kfree(rssi);
801 return ret;
802}
803
Kalle Valo80301cd2009-06-12 14:17:39 +0300804int wl1251_acx_set_preamble(struct wl1251 *wl, enum acx_preamble_type preamble)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300805{
Kalle Valoff258392009-06-12 14:14:19 +0300806 struct acx_preamble *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300807 int ret;
808
Kalle Valo80301cd2009-06-12 14:17:39 +0300809 wl1251_debug(DEBUG_ACX, "acx_set_preamble");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300810
Kalle Valoff258392009-06-12 14:14:19 +0300811 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
812 if (!acx) {
813 ret = -ENOMEM;
814 goto out;
815 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300816
Kalle Valoff258392009-06-12 14:14:19 +0300817 acx->preamble = preamble;
818
Kalle Valo80301cd2009-06-12 14:17:39 +0300819 ret = wl1251_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300820 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300821 wl1251_warning("Setting of preamble failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300822 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300823 }
Kalle Valoff258392009-06-12 14:14:19 +0300824
825out:
826 kfree(acx);
827 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300828}
829
Kalle Valo80301cd2009-06-12 14:17:39 +0300830int wl1251_acx_cts_protect(struct wl1251 *wl,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300831 enum acx_ctsprotect_type ctsprotect)
832{
Kalle Valoff258392009-06-12 14:14:19 +0300833 struct acx_ctsprotect *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300834 int ret;
835
Kalle Valo80301cd2009-06-12 14:17:39 +0300836 wl1251_debug(DEBUG_ACX, "acx_set_ctsprotect");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300837
Kalle Valoff258392009-06-12 14:14:19 +0300838 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
839 if (!acx) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300840 ret = -ENOMEM;
841 goto out;
842 }
843
Kalle Valoff258392009-06-12 14:14:19 +0300844 acx->ctsprotect = ctsprotect;
845
Kalle Valo80301cd2009-06-12 14:17:39 +0300846 ret = wl1251_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300847 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300848 wl1251_warning("Setting of ctsprotect failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300849 goto out;
850 }
851
Kalle Valoff258392009-06-12 14:14:19 +0300852out:
853 kfree(acx);
854 return ret;
855}
856
Kalle Valo80301cd2009-06-12 14:17:39 +0300857int wl1251_acx_tsf_info(struct wl1251 *wl, u64 *mactime)
Kalle Valoff258392009-06-12 14:14:19 +0300858{
859 struct acx_tsf_info *tsf_info;
860 int ret;
861
862 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
863 if (!tsf_info) {
864 ret = -ENOMEM;
865 goto out;
866 }
867
Kalle Valo80301cd2009-06-12 14:17:39 +0300868 ret = wl1251_cmd_interrogate(wl, ACX_TSF_INFO,
Kalle Valoff258392009-06-12 14:14:19 +0300869 tsf_info, sizeof(*tsf_info));
870 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300871 wl1251_warning("ACX_FW_REV interrogate failed");
Kalle Valoff258392009-06-12 14:14:19 +0300872 goto out;
873 }
874
875 *mactime = tsf_info->current_tsf_lsb |
876 (tsf_info->current_tsf_msb << 31);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300877
878out:
Kalle Valoff258392009-06-12 14:14:19 +0300879 kfree(tsf_info);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300880 return ret;
881}
Kalle Valoff258392009-06-12 14:14:19 +0300882
Kalle Valo80301cd2009-06-12 14:17:39 +0300883int wl1251_acx_statistics(struct wl1251 *wl, struct acx_statistics *stats)
Kalle Valoff258392009-06-12 14:14:19 +0300884{
885 int ret;
886
Kalle Valo80301cd2009-06-12 14:17:39 +0300887 wl1251_debug(DEBUG_ACX, "acx statistics");
Kalle Valoff258392009-06-12 14:14:19 +0300888
Kalle Valo80301cd2009-06-12 14:17:39 +0300889 ret = wl1251_cmd_interrogate(wl, ACX_STATISTICS, stats,
Kalle Valoff258392009-06-12 14:14:19 +0300890 sizeof(*stats));
891 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300892 wl1251_warning("acx statistics failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300893 return -ENOMEM;
894 }
895
896 return 0;
897}
Kalle Valo0e71bb02009-08-07 13:33:57 +0300898
899int wl1251_acx_rate_policies(struct wl1251 *wl)
900{
901 struct acx_rate_policy *acx;
902 int ret = 0;
903
904 wl1251_debug(DEBUG_ACX, "acx rate policies");
905
906 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
907
908 if (!acx) {
909 ret = -ENOMEM;
910 goto out;
911 }
912
913 /* configure one default (one-size-fits-all) rate class */
914 acx->rate_class_cnt = 1;
915 acx->rate_class[0].enabled_rates = ACX_RATE_MASK_UNSPECIFIED;
916 acx->rate_class[0].short_retry_limit = ACX_RATE_RETRY_LIMIT;
917 acx->rate_class[0].long_retry_limit = ACX_RATE_RETRY_LIMIT;
918 acx->rate_class[0].aflags = 0;
919
920 ret = wl1251_cmd_configure(wl, ACX_RATE_POLICY, acx, sizeof(*acx));
921 if (ret < 0) {
922 wl1251_warning("Setting of rate policies failed: %d", ret);
923 goto out;
924 }
925
926out:
927 kfree(acx);
928 return ret;
929}
930
931int wl1251_acx_mem_cfg(struct wl1251 *wl)
932{
933 struct wl1251_acx_config_memory *mem_conf;
934 int ret, i;
935
936 wl1251_debug(DEBUG_ACX, "acx mem cfg");
937
938 mem_conf = kzalloc(sizeof(*mem_conf), GFP_KERNEL);
939 if (!mem_conf) {
940 ret = -ENOMEM;
941 goto out;
942 }
943
944 /* memory config */
945 mem_conf->mem_config.num_stations = cpu_to_le16(DEFAULT_NUM_STATIONS);
946 mem_conf->mem_config.rx_mem_block_num = 35;
947 mem_conf->mem_config.tx_min_mem_block_num = 64;
948 mem_conf->mem_config.num_tx_queues = MAX_TX_QUEUES;
949 mem_conf->mem_config.host_if_options = HOSTIF_PKT_RING;
950 mem_conf->mem_config.num_ssid_profiles = 1;
951 mem_conf->mem_config.debug_buffer_size =
952 cpu_to_le16(TRACE_BUFFER_MAX_SIZE);
953
954 /* RX queue config */
955 mem_conf->rx_queue_config.dma_address = 0;
956 mem_conf->rx_queue_config.num_descs = ACX_RX_DESC_DEF;
957 mem_conf->rx_queue_config.priority = DEFAULT_RXQ_PRIORITY;
958 mem_conf->rx_queue_config.type = DEFAULT_RXQ_TYPE;
959
960 /* TX queue config */
961 for (i = 0; i < MAX_TX_QUEUES; i++) {
962 mem_conf->tx_queue_config[i].num_descs = ACX_TX_DESC_DEF;
963 mem_conf->tx_queue_config[i].attributes = i;
964 }
965
966 ret = wl1251_cmd_configure(wl, ACX_MEM_CFG, mem_conf,
967 sizeof(*mem_conf));
968 if (ret < 0) {
969 wl1251_warning("wl1251 mem config failed: %d", ret);
970 goto out;
971 }
972
973out:
974 kfree(mem_conf);
975 return ret;
976}
Vidhya Govindand531cf32009-11-17 18:49:08 +0200977
978int wl1251_acx_wr_tbtt_and_dtim(struct wl1251 *wl, u16 tbtt, u8 dtim)
979{
980 struct wl1251_acx_wr_tbtt_and_dtim *acx;
981 int ret;
982
983 wl1251_debug(DEBUG_ACX, "acx tbtt and dtim");
984
985 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
986 if (!acx) {
987 ret = -ENOMEM;
988 goto out;
989 }
990
991 acx->tbtt = tbtt;
992 acx->dtim = dtim;
993
994 ret = wl1251_cmd_configure(wl, ACX_WR_TBTT_AND_DTIM,
995 acx, sizeof(*acx));
996 if (ret < 0) {
997 wl1251_warning("failed to set tbtt and dtim: %d", ret);
998 goto out;
999 }
1000
1001out:
1002 kfree(acx);
1003 return ret;
1004}
Kalle Valo86dff7a2009-11-30 10:18:19 +02001005
David Gnedtc3e334d2011-01-30 20:10:57 +01001006int wl1251_acx_bet_enable(struct wl1251 *wl, enum wl1251_acx_bet_mode mode,
1007 u8 max_consecutive)
1008{
1009 struct wl1251_acx_bet_enable *acx;
1010 int ret;
1011
1012 wl1251_debug(DEBUG_ACX, "acx bet enable");
1013
1014 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1015 if (!acx) {
1016 ret = -ENOMEM;
1017 goto out;
1018 }
1019
1020 acx->enable = mode;
1021 acx->max_consecutive = max_consecutive;
1022
1023 ret = wl1251_cmd_configure(wl, ACX_BET_ENABLE, acx, sizeof(*acx));
1024 if (ret < 0) {
1025 wl1251_warning("wl1251 acx bet enable failed: %d", ret);
1026 goto out;
1027 }
1028
1029out:
1030 kfree(acx);
1031 return ret;
1032}
1033
Kalle Valo86dff7a2009-11-30 10:18:19 +02001034int wl1251_acx_ac_cfg(struct wl1251 *wl, u8 ac, u8 cw_min, u16 cw_max,
1035 u8 aifs, u16 txop)
1036{
1037 struct wl1251_acx_ac_cfg *acx;
1038 int ret = 0;
1039
1040 wl1251_debug(DEBUG_ACX, "acx ac cfg %d cw_ming %d cw_max %d "
1041 "aifs %d txop %d", ac, cw_min, cw_max, aifs, txop);
1042
1043 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1044
1045 if (!acx) {
1046 ret = -ENOMEM;
1047 goto out;
1048 }
1049
1050 acx->ac = ac;
1051 acx->cw_min = cw_min;
1052 acx->cw_max = cw_max;
1053 acx->aifsn = aifs;
1054 acx->txop_limit = txop;
1055
1056 ret = wl1251_cmd_configure(wl, ACX_AC_CFG, acx, sizeof(*acx));
1057 if (ret < 0) {
1058 wl1251_warning("acx ac cfg failed: %d", ret);
1059 goto out;
1060 }
1061
1062out:
1063 kfree(acx);
1064 return ret;
1065}
Kalle Valo27336f12009-11-30 10:18:27 +02001066
1067int wl1251_acx_tid_cfg(struct wl1251 *wl, u8 queue,
1068 enum wl1251_acx_channel_type type,
1069 u8 tsid, enum wl1251_acx_ps_scheme ps_scheme,
1070 enum wl1251_acx_ack_policy ack_policy)
1071{
1072 struct wl1251_acx_tid_cfg *acx;
1073 int ret = 0;
1074
1075 wl1251_debug(DEBUG_ACX, "acx tid cfg %d type %d tsid %d "
1076 "ps_scheme %d ack_policy %d", queue, type, tsid,
1077 ps_scheme, ack_policy);
1078
1079 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1080
1081 if (!acx) {
1082 ret = -ENOMEM;
1083 goto out;
1084 }
1085
1086 acx->queue = queue;
1087 acx->type = type;
1088 acx->tsid = tsid;
1089 acx->ps_scheme = ps_scheme;
1090 acx->ack_policy = ack_policy;
1091
1092 ret = wl1251_cmd_configure(wl, ACX_TID_CFG, acx, sizeof(*acx));
1093 if (ret < 0) {
1094 wl1251_warning("acx tid cfg failed: %d", ret);
1095 goto out;
1096 }
1097
1098out:
1099 kfree(acx);
1100 return ret;
1101}