blob: 2e3171a61b77110c0cb2f17b8db04af72f0e0ce7 [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>
5#include <linux/spi/spi.h>
6
Kalle Valo13674112009-06-12 14:17:25 +03007#include "wl1251.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +03008#include "reg.h"
Bob Copeland0764de62009-08-07 13:32:56 +03009#include "wl1251_cmd.h"
Kalle Valoef2f8d42009-06-12 14:17:19 +030010#include "wl1251_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);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300383 return 0;
384}
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
Kalle Valo80301cd2009-06-12 14:17:39 +0300498int wl1251_acx_beacon_filter_opt(struct wl1251 *wl)
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
Kalle Valoff258392009-06-12 14:14:19 +0300511 beacon_filter->enable = 0;
512 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;
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
Kalle Valoff258392009-06-12 14:14:19 +0300539 ie_table->num_ie = 0;
540 memset(ie_table->table, 0, BEACON_FILTER_TABLE_MAX_SIZE);
541
Kalle Valo80301cd2009-06-12 14:17:39 +0300542 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
Kalle Valoff258392009-06-12 14:14:19 +0300543 ie_table, sizeof(*ie_table));
544 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300545 wl1251_warning("failed to set beacon filter table: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300546 goto out;
547 }
548
549out:
550 kfree(ie_table);
551 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300552}
553
Kalle Valo80301cd2009-06-12 14:17:39 +0300554int wl1251_acx_sg_enable(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300555{
Kalle Valoff258392009-06-12 14:14:19 +0300556 struct acx_bt_wlan_coex *pta;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300557 int ret;
558
Kalle Valo80301cd2009-06-12 14:17:39 +0300559 wl1251_debug(DEBUG_ACX, "acx sg enable");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300560
Kalle Valoff258392009-06-12 14:14:19 +0300561 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
562 if (!pta) {
563 ret = -ENOMEM;
564 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300565 }
566
Kalle Valoff258392009-06-12 14:14:19 +0300567 pta->enable = SG_ENABLE;
568
Kalle Valo80301cd2009-06-12 14:17:39 +0300569 ret = wl1251_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
Kalle Valoff258392009-06-12 14:14:19 +0300570 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300571 wl1251_warning("failed to set softgemini enable: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300572 goto out;
573 }
574
575out:
576 kfree(pta);
577 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300578}
579
Kalle Valo80301cd2009-06-12 14:17:39 +0300580int wl1251_acx_sg_cfg(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300581{
Kalle Valoff258392009-06-12 14:14:19 +0300582 struct acx_bt_wlan_coex_param *param;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300583 int ret;
584
Kalle Valo80301cd2009-06-12 14:17:39 +0300585 wl1251_debug(DEBUG_ACX, "acx sg cfg");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300586
Kalle Valoff258392009-06-12 14:14:19 +0300587 param = kzalloc(sizeof(*param), GFP_KERNEL);
588 if (!param) {
589 ret = -ENOMEM;
590 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300591 }
592
Kalle Valoff258392009-06-12 14:14:19 +0300593 /* BT-WLAN coext parameters */
594 param->min_rate = RATE_INDEX_24MBPS;
595 param->bt_hp_max_time = PTA_BT_HP_MAXTIME_DEF;
596 param->wlan_hp_max_time = PTA_WLAN_HP_MAX_TIME_DEF;
597 param->sense_disable_timer = PTA_SENSE_DISABLE_TIMER_DEF;
598 param->rx_time_bt_hp = PTA_PROTECTIVE_RX_TIME_DEF;
599 param->tx_time_bt_hp = PTA_PROTECTIVE_TX_TIME_DEF;
600 param->rx_time_bt_hp_fast = PTA_PROTECTIVE_RX_TIME_FAST_DEF;
601 param->tx_time_bt_hp_fast = PTA_PROTECTIVE_TX_TIME_FAST_DEF;
602 param->wlan_cycle_fast = PTA_CYCLE_TIME_FAST_DEF;
603 param->bt_anti_starvation_period = PTA_ANTI_STARVE_PERIOD_DEF;
604 param->next_bt_lp_packet = PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF;
605 param->wake_up_beacon = PTA_TIME_BEFORE_BEACON_DEF;
606 param->hp_dm_max_guard_time = PTA_HPDM_MAX_TIME_DEF;
607 param->next_wlan_packet = PTA_TIME_OUT_NEXT_WLAN_DEF;
608 param->antenna_type = PTA_ANTENNA_TYPE_DEF;
609 param->signal_type = PTA_SIGNALING_TYPE_DEF;
610 param->afh_leverage_on = PTA_AFH_LEVERAGE_ON_DEF;
611 param->quiet_cycle_num = PTA_NUMBER_QUIET_CYCLE_DEF;
612 param->max_cts = PTA_MAX_NUM_CTS_DEF;
613 param->wlan_packets_num = PTA_NUMBER_OF_WLAN_PACKETS_DEF;
614 param->bt_packets_num = PTA_NUMBER_OF_BT_PACKETS_DEF;
615 param->missed_rx_avalanche = PTA_RX_FOR_AVALANCHE_DEF;
616 param->wlan_elp_hp = PTA_ELP_HP_DEF;
617 param->bt_anti_starvation_cycles = PTA_ANTI_STARVE_NUM_CYCLE_DEF;
618 param->ack_mode_dual_ant = PTA_ACK_MODE_DEF;
619 param->pa_sd_enable = PTA_ALLOW_PA_SD_DEF;
620 param->pta_auto_mode_enable = PTA_AUTO_MODE_NO_CTS_DEF;
621 param->bt_hp_respected_num = PTA_BT_HP_RESPECTED_DEF;
622
Kalle Valo80301cd2009-06-12 14:17:39 +0300623 ret = wl1251_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
Kalle Valoff258392009-06-12 14:14:19 +0300624 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300625 wl1251_warning("failed to set sg config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300626 goto out;
627 }
628
629out:
630 kfree(param);
631 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300632}
633
Kalle Valo80301cd2009-06-12 14:17:39 +0300634int wl1251_acx_cca_threshold(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300635{
Kalle Valoff258392009-06-12 14:14:19 +0300636 struct acx_energy_detection *detection;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300637 int ret;
638
Kalle Valo80301cd2009-06-12 14:17:39 +0300639 wl1251_debug(DEBUG_ACX, "acx cca threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300640
Kalle Valoff258392009-06-12 14:14:19 +0300641 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
642 if (!detection) {
643 ret = -ENOMEM;
644 goto out;
645 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300646
Kalle Valoff258392009-06-12 14:14:19 +0300647 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
648 detection->tx_energy_detection = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300649
Kalle Valo80301cd2009-06-12 14:17:39 +0300650 ret = wl1251_cmd_configure(wl, ACX_CCA_THRESHOLD,
Kalle Valoff258392009-06-12 14:14:19 +0300651 detection, sizeof(*detection));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300652 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300653 wl1251_warning("failed to set cca threshold: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300654 return ret;
655 }
656
Kalle Valoff258392009-06-12 14:14:19 +0300657out:
658 kfree(detection);
659 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300660}
661
Kalle Valo80301cd2009-06-12 14:17:39 +0300662int wl1251_acx_bcn_dtim_options(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300663{
Kalle Valoff258392009-06-12 14:14:19 +0300664 struct acx_beacon_broadcast *bb;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300665 int ret;
666
Kalle Valo80301cd2009-06-12 14:17:39 +0300667 wl1251_debug(DEBUG_ACX, "acx bcn dtim options");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300668
Kalle Valoff258392009-06-12 14:14:19 +0300669 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
670 if (!bb) {
671 ret = -ENOMEM;
672 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300673 }
674
Kalle Valoff258392009-06-12 14:14:19 +0300675 bb->beacon_rx_timeout = BCN_RX_TIMEOUT_DEF_VALUE;
676 bb->broadcast_timeout = BROADCAST_RX_TIMEOUT_DEF_VALUE;
677 bb->rx_broadcast_in_ps = RX_BROADCAST_IN_PS_DEF_VALUE;
678 bb->ps_poll_threshold = CONSECUTIVE_PS_POLL_FAILURE_DEF;
679
Kalle Valo80301cd2009-06-12 14:17:39 +0300680 ret = wl1251_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
Kalle Valoff258392009-06-12 14:14:19 +0300681 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300682 wl1251_warning("failed to set rx config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300683 goto out;
684 }
685
686out:
687 kfree(bb);
688 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300689}
690
Kalle Valo80301cd2009-06-12 14:17:39 +0300691int wl1251_acx_aid(struct wl1251 *wl, u16 aid)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300692{
Kalle Valoff258392009-06-12 14:14:19 +0300693 struct acx_aid *acx_aid;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300694 int ret;
695
Kalle Valo80301cd2009-06-12 14:17:39 +0300696 wl1251_debug(DEBUG_ACX, "acx aid");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300697
Kalle Valoff258392009-06-12 14:14:19 +0300698 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
699 if (!acx_aid) {
700 ret = -ENOMEM;
701 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300702 }
703
Kalle Valoff258392009-06-12 14:14:19 +0300704 acx_aid->aid = aid;
705
Kalle Valo80301cd2009-06-12 14:17:39 +0300706 ret = wl1251_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
Kalle Valoff258392009-06-12 14:14:19 +0300707 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300708 wl1251_warning("failed to set aid: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300709 goto out;
710 }
711
712out:
713 kfree(acx_aid);
714 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300715}
716
Kalle Valo80301cd2009-06-12 14:17:39 +0300717int wl1251_acx_event_mbox_mask(struct wl1251 *wl, u32 event_mask)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300718{
Kalle Valoff258392009-06-12 14:14:19 +0300719 struct acx_event_mask *mask;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300720 int ret;
721
Kalle Valo80301cd2009-06-12 14:17:39 +0300722 wl1251_debug(DEBUG_ACX, "acx event mbox mask");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300723
Kalle Valoff258392009-06-12 14:14:19 +0300724 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
725 if (!mask) {
726 ret = -ENOMEM;
727 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300728 }
729
Kalle Valoff258392009-06-12 14:14:19 +0300730 /* high event mask is unused */
731 mask->high_event_mask = 0xffffffff;
732
733 mask->event_mask = event_mask;
734
Kalle Valo80301cd2009-06-12 14:17:39 +0300735 ret = wl1251_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
Kalle Valoff258392009-06-12 14:14:19 +0300736 mask, sizeof(*mask));
737 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300738 wl1251_warning("failed to set acx_event_mbox_mask: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300739 goto out;
740 }
741
742out:
743 kfree(mask);
744 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300745}
746
Kalle Valo80301cd2009-06-12 14:17:39 +0300747int wl1251_acx_set_preamble(struct wl1251 *wl, enum acx_preamble_type preamble)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300748{
Kalle Valoff258392009-06-12 14:14:19 +0300749 struct acx_preamble *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300750 int ret;
751
Kalle Valo80301cd2009-06-12 14:17:39 +0300752 wl1251_debug(DEBUG_ACX, "acx_set_preamble");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300753
Kalle Valoff258392009-06-12 14:14:19 +0300754 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
755 if (!acx) {
756 ret = -ENOMEM;
757 goto out;
758 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300759
Kalle Valoff258392009-06-12 14:14:19 +0300760 acx->preamble = preamble;
761
Kalle Valo80301cd2009-06-12 14:17:39 +0300762 ret = wl1251_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300763 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300764 wl1251_warning("Setting of preamble failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300765 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300766 }
Kalle Valoff258392009-06-12 14:14:19 +0300767
768out:
769 kfree(acx);
770 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300771}
772
Kalle Valo80301cd2009-06-12 14:17:39 +0300773int wl1251_acx_cts_protect(struct wl1251 *wl,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300774 enum acx_ctsprotect_type ctsprotect)
775{
Kalle Valoff258392009-06-12 14:14:19 +0300776 struct acx_ctsprotect *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300777 int ret;
778
Kalle Valo80301cd2009-06-12 14:17:39 +0300779 wl1251_debug(DEBUG_ACX, "acx_set_ctsprotect");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300780
Kalle Valoff258392009-06-12 14:14:19 +0300781 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
782 if (!acx) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300783 ret = -ENOMEM;
784 goto out;
785 }
786
Kalle Valoff258392009-06-12 14:14:19 +0300787 acx->ctsprotect = ctsprotect;
788
Kalle Valo80301cd2009-06-12 14:17:39 +0300789 ret = wl1251_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300790 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300791 wl1251_warning("Setting of ctsprotect failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300792 goto out;
793 }
794
Kalle Valoff258392009-06-12 14:14:19 +0300795out:
796 kfree(acx);
797 return ret;
798}
799
Kalle Valo80301cd2009-06-12 14:17:39 +0300800int wl1251_acx_tsf_info(struct wl1251 *wl, u64 *mactime)
Kalle Valoff258392009-06-12 14:14:19 +0300801{
802 struct acx_tsf_info *tsf_info;
803 int ret;
804
805 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
806 if (!tsf_info) {
807 ret = -ENOMEM;
808 goto out;
809 }
810
Kalle Valo80301cd2009-06-12 14:17:39 +0300811 ret = wl1251_cmd_interrogate(wl, ACX_TSF_INFO,
Kalle Valoff258392009-06-12 14:14:19 +0300812 tsf_info, sizeof(*tsf_info));
813 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300814 wl1251_warning("ACX_FW_REV interrogate failed");
Kalle Valoff258392009-06-12 14:14:19 +0300815 goto out;
816 }
817
818 *mactime = tsf_info->current_tsf_lsb |
819 (tsf_info->current_tsf_msb << 31);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300820
821out:
Kalle Valoff258392009-06-12 14:14:19 +0300822 kfree(tsf_info);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300823 return ret;
824}
Kalle Valoff258392009-06-12 14:14:19 +0300825
Kalle Valo80301cd2009-06-12 14:17:39 +0300826int wl1251_acx_statistics(struct wl1251 *wl, struct acx_statistics *stats)
Kalle Valoff258392009-06-12 14:14:19 +0300827{
828 int ret;
829
Kalle Valo80301cd2009-06-12 14:17:39 +0300830 wl1251_debug(DEBUG_ACX, "acx statistics");
Kalle Valoff258392009-06-12 14:14:19 +0300831
Kalle Valo80301cd2009-06-12 14:17:39 +0300832 ret = wl1251_cmd_interrogate(wl, ACX_STATISTICS, stats,
Kalle Valoff258392009-06-12 14:14:19 +0300833 sizeof(*stats));
834 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300835 wl1251_warning("acx statistics failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300836 return -ENOMEM;
837 }
838
839 return 0;
840}