blob: 5695628757ee17db6c4da9ba40d81000f9fa57b5 [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
Kalle Valo13674112009-06-12 14:17:25 +03006#include "wl1251.h"
Kalle Valo9bc67722010-10-10 11:28:32 +03007#include "reg.h"
8#include "cmd.h"
9#include "ps.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +030010
Kalle Valo80301cd2009-06-12 14:17:39 +030011int wl1251_acx_frame_rates(struct wl1251 *wl, u8 ctrl_rate, u8 ctrl_mod,
Kalle Valo2f01a1f2009-04-29 23:33:31 +030012 u8 mgt_rate, u8 mgt_mod)
13{
Kalle Valoff258392009-06-12 14:14:19 +030014 struct acx_fw_gen_frame_rates *rates;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030015 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030016
Kalle Valo80301cd2009-06-12 14:17:39 +030017 wl1251_debug(DEBUG_ACX, "acx frame rates");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030018
Kalle Valoff258392009-06-12 14:14:19 +030019 rates = kzalloc(sizeof(*rates), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +080020 if (!rates)
21 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030022
Kalle Valoff258392009-06-12 14:14:19 +030023 rates->tx_ctrl_frame_rate = ctrl_rate;
24 rates->tx_ctrl_frame_mod = ctrl_mod;
25 rates->tx_mgt_frame_rate = mgt_rate;
26 rates->tx_mgt_frame_mod = mgt_mod;
27
Kalle Valo80301cd2009-06-12 14:17:39 +030028 ret = wl1251_cmd_configure(wl, ACX_FW_GEN_FRAME_RATES,
Kalle Valoff258392009-06-12 14:14:19 +030029 rates, sizeof(*rates));
30 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +030031 wl1251_error("Failed to set FW rates and modulation");
Kalle Valoff258392009-06-12 14:14:19 +030032 goto out;
33 }
34
35out:
36 kfree(rates);
37 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030038}
39
40
Kalle Valo80301cd2009-06-12 14:17:39 +030041int wl1251_acx_station_id(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030042{
Kalle Valoff258392009-06-12 14:14:19 +030043 struct acx_dot11_station_id *mac;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030044 int ret, i;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030045
Kalle Valo80301cd2009-06-12 14:17:39 +030046 wl1251_debug(DEBUG_ACX, "acx dot11_station_id");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030047
Kalle Valoff258392009-06-12 14:14:19 +030048 mac = kzalloc(sizeof(*mac), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +080049 if (!mac)
50 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030051
52 for (i = 0; i < ETH_ALEN; i++)
Kalle Valoff258392009-06-12 14:14:19 +030053 mac->mac[i] = wl->mac_addr[ETH_ALEN - 1 - i];
Kalle Valo2f01a1f2009-04-29 23:33:31 +030054
Kalle Valo80301cd2009-06-12 14:17:39 +030055 ret = wl1251_cmd_configure(wl, DOT11_STATION_ID, mac, sizeof(*mac));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030056 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +030057 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030058
Kalle Valoff258392009-06-12 14:14:19 +030059out:
60 kfree(mac);
61 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030062}
63
Kalle Valo80301cd2009-06-12 14:17:39 +030064int wl1251_acx_default_key(struct wl1251 *wl, u8 key_id)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030065{
Kalle Valoff258392009-06-12 14:14:19 +030066 struct acx_dot11_default_key *default_key;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030067 int ret;
68
Kalle Valo80301cd2009-06-12 14:17:39 +030069 wl1251_debug(DEBUG_ACX, "acx dot11_default_key (%d)", key_id);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030070
Kalle Valoff258392009-06-12 14:14:19 +030071 default_key = kzalloc(sizeof(*default_key), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +080072 if (!default_key)
73 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030074
Kalle Valoff258392009-06-12 14:14:19 +030075 default_key->id = key_id;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030076
Kalle Valo80301cd2009-06-12 14:17:39 +030077 ret = wl1251_cmd_configure(wl, DOT11_DEFAULT_KEY,
Kalle Valoff258392009-06-12 14:14:19 +030078 default_key, sizeof(*default_key));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030079 if (ret < 0) {
Stefan Weilda3c8212009-07-19 15:00:39 +020080 wl1251_error("Couldn't set default key");
Kalle Valoff258392009-06-12 14:14:19 +030081 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030082 }
83
84 wl->default_key = key_id;
85
Kalle Valoff258392009-06-12 14:14:19 +030086out:
87 kfree(default_key);
88 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030089}
90
Kalle Valo80301cd2009-06-12 14:17:39 +030091int wl1251_acx_wake_up_conditions(struct wl1251 *wl, u8 wake_up_event,
Luciano Coelho9f483dc2009-06-12 14:15:46 +030092 u8 listen_interval)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030093{
Kalle Valoff258392009-06-12 14:14:19 +030094 struct acx_wake_up_condition *wake_up;
95 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030096
Kalle Valo80301cd2009-06-12 14:17:39 +030097 wl1251_debug(DEBUG_ACX, "acx wake up conditions");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030098
Kalle Valoff258392009-06-12 14:14:19 +030099 wake_up = kzalloc(sizeof(*wake_up), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800100 if (!wake_up)
101 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300102
Luciano Coelho9f483dc2009-06-12 14:15:46 +0300103 wake_up->wake_up_event = wake_up_event;
Kalle Valoff258392009-06-12 14:14:19 +0300104 wake_up->listen_interval = listen_interval;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300105
Kalle Valo80301cd2009-06-12 14:17:39 +0300106 ret = wl1251_cmd_configure(wl, ACX_WAKE_UP_CONDITIONS,
Kalle Valoff258392009-06-12 14:14:19 +0300107 wake_up, sizeof(*wake_up));
108 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300109 wl1251_warning("could not set wake up conditions: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300110 goto out;
111 }
112
113out:
114 kfree(wake_up);
115 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300116}
117
Kalle Valo80301cd2009-06-12 14:17:39 +0300118int wl1251_acx_sleep_auth(struct wl1251 *wl, u8 sleep_auth)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300119{
Kalle Valoff258392009-06-12 14:14:19 +0300120 struct acx_sleep_auth *auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300121 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300122
Kalle Valo80301cd2009-06-12 14:17:39 +0300123 wl1251_debug(DEBUG_ACX, "acx sleep auth");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300124
Kalle Valoff258392009-06-12 14:14:19 +0300125 auth = kzalloc(sizeof(*auth), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800126 if (!auth)
127 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300128
Kalle Valoff258392009-06-12 14:14:19 +0300129 auth->sleep_auth = sleep_auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300130
Kalle Valo80301cd2009-06-12 14:17:39 +0300131 ret = wl1251_cmd_configure(wl, ACX_SLEEP_AUTH, auth, sizeof(*auth));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300132
Kalle Valoff258392009-06-12 14:14:19 +0300133 kfree(auth);
134 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300135}
136
Kalle Valo80301cd2009-06-12 14:17:39 +0300137int wl1251_acx_fw_version(struct wl1251 *wl, char *buf, size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300138{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300139 struct acx_revision *rev;
140 int ret;
141
Kalle Valo80301cd2009-06-12 14:17:39 +0300142 wl1251_debug(DEBUG_ACX, "acx fw rev");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300143
Kalle Valoff258392009-06-12 14:14:19 +0300144 rev = kzalloc(sizeof(*rev), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800145 if (!rev)
146 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300147
Kalle Valo80301cd2009-06-12 14:17:39 +0300148 ret = wl1251_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
Kalle Valoff258392009-06-12 14:14:19 +0300149 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300150 wl1251_warning("ACX_FW_REV interrogate failed");
Kalle Valoff258392009-06-12 14:14:19 +0300151 goto out;
152 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300153
154 /* be careful with the buffer sizes */
155 strncpy(buf, rev->fw_version, min(len, sizeof(rev->fw_version)));
156
157 /*
158 * if the firmware version string is exactly
159 * sizeof(rev->fw_version) long or fw_len is less than
160 * sizeof(rev->fw_version) it won't be null terminated
161 */
162 buf[min(len, sizeof(rev->fw_version)) - 1] = '\0';
163
Kalle Valoff258392009-06-12 14:14:19 +0300164out:
165 kfree(rev);
166 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300167}
168
Kalle Valo80301cd2009-06-12 14:17:39 +0300169int wl1251_acx_tx_power(struct wl1251 *wl, int power)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300170{
Kalle Valoff258392009-06-12 14:14:19 +0300171 struct acx_current_tx_power *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300172 int ret;
173
Kalle Valo80301cd2009-06-12 14:17:39 +0300174 wl1251_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300175
176 if (power < 0 || power > 25)
177 return -EINVAL;
178
Kalle Valoff258392009-06-12 14:14:19 +0300179 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800180 if (!acx)
181 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300182
Kalle Valoff258392009-06-12 14:14:19 +0300183 acx->current_tx_power = power * 10;
184
Kalle Valo80301cd2009-06-12 14:17:39 +0300185 ret = wl1251_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
Kalle Valoff258392009-06-12 14:14:19 +0300186 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300187 wl1251_warning("configure of tx power failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300188 goto out;
189 }
190
191out:
192 kfree(acx);
193 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300194}
195
David Gnedt4d09b532014-01-07 13:07:52 +0100196int wl1251_acx_feature_cfg(struct wl1251 *wl, u32 data_flow_options)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300197{
Kalle Valoff258392009-06-12 14:14:19 +0300198 struct acx_feature_config *feature;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300199 int ret;
200
Kalle Valo80301cd2009-06-12 14:17:39 +0300201 wl1251_debug(DEBUG_ACX, "acx feature cfg");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300202
Kalle Valoff258392009-06-12 14:14:19 +0300203 feature = kzalloc(sizeof(*feature), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800204 if (!feature)
205 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300206
David Gnedt4d09b532014-01-07 13:07:52 +0100207 /* DF_ENCRYPTION_DISABLE and DF_SNIFF_MODE_ENABLE can be set */
208 feature->data_flow_options = data_flow_options;
Kalle Valoff258392009-06-12 14:14:19 +0300209 feature->options = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300210
Kalle Valo80301cd2009-06-12 14:17:39 +0300211 ret = wl1251_cmd_configure(wl, ACX_FEATURE_CFG,
Kalle Valoff258392009-06-12 14:14:19 +0300212 feature, sizeof(*feature));
213 if (ret < 0) {
Stefan Weilda3c8212009-07-19 15:00:39 +0200214 wl1251_error("Couldn't set HW encryption");
Kalle Valoff258392009-06-12 14:14:19 +0300215 goto out;
216 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300217
Kalle Valoff258392009-06-12 14:14:19 +0300218out:
219 kfree(feature);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300220 return ret;
221}
222
Kalle Valo80301cd2009-06-12 14:17:39 +0300223int wl1251_acx_mem_map(struct wl1251 *wl, struct acx_header *mem_map,
Kalle Valoff258392009-06-12 14:14:19 +0300224 size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300225{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300226 int ret;
227
Kalle Valo80301cd2009-06-12 14:17:39 +0300228 wl1251_debug(DEBUG_ACX, "acx mem map");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300229
Kalle Valo80301cd2009-06-12 14:17:39 +0300230 ret = wl1251_cmd_interrogate(wl, ACX_MEM_MAP, mem_map, len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300231 if (ret < 0)
232 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300233
234 return 0;
235}
236
Kalle Valo80301cd2009-06-12 14:17:39 +0300237int wl1251_acx_data_path_params(struct wl1251 *wl,
Kalle Valoff258392009-06-12 14:14:19 +0300238 struct acx_data_path_params_resp *resp)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300239{
Kalle Valoff258392009-06-12 14:14:19 +0300240 struct acx_data_path_params *params;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300241 int ret;
242
Kalle Valo80301cd2009-06-12 14:17:39 +0300243 wl1251_debug(DEBUG_ACX, "acx data path params");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300244
Kalle Valoff258392009-06-12 14:14:19 +0300245 params = kzalloc(sizeof(*params), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800246 if (!params)
247 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300248
Kalle Valoff258392009-06-12 14:14:19 +0300249 params->rx_packet_ring_chunk_size = DP_RX_PACKET_RING_CHUNK_SIZE;
250 params->tx_packet_ring_chunk_size = DP_TX_PACKET_RING_CHUNK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300251
Kalle Valoff258392009-06-12 14:14:19 +0300252 params->rx_packet_ring_chunk_num = DP_RX_PACKET_RING_CHUNK_NUM;
253 params->tx_packet_ring_chunk_num = DP_TX_PACKET_RING_CHUNK_NUM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300254
Kalle Valoff258392009-06-12 14:14:19 +0300255 params->tx_complete_threshold = 1;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300256
Kalle Valoff258392009-06-12 14:14:19 +0300257 params->tx_complete_ring_depth = FW_TX_CMPLT_BLOCK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300258
Kalle Valoff258392009-06-12 14:14:19 +0300259 params->tx_complete_timeout = DP_TX_COMPLETE_TIME_OUT;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300260
Kalle Valo80301cd2009-06-12 14:17:39 +0300261 ret = wl1251_cmd_configure(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300262 params, sizeof(*params));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300263 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +0300264 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300265
Kalle Valoff258392009-06-12 14:14:19 +0300266 /* FIXME: shouldn't this be ACX_DATA_PATH_RESP_PARAMS? */
Kalle Valo80301cd2009-06-12 14:17:39 +0300267 ret = wl1251_cmd_interrogate(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300268 resp, sizeof(*resp));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300269
270 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300271 wl1251_warning("failed to read data path parameters: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300272 goto out;
273 } else if (resp->header.cmd.status != CMD_STATUS_SUCCESS) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300274 wl1251_warning("data path parameter acx status failed");
Kalle Valoff258392009-06-12 14:14:19 +0300275 ret = -EIO;
276 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300277 }
278
Kalle Valoff258392009-06-12 14:14:19 +0300279out:
280 kfree(params);
281 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300282}
283
Kalle Valo80301cd2009-06-12 14:17:39 +0300284int wl1251_acx_rx_msdu_life_time(struct wl1251 *wl, u32 life_time)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300285{
Kalle Valoff258392009-06-12 14:14:19 +0300286 struct acx_rx_msdu_lifetime *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300287 int ret;
288
Kalle Valo80301cd2009-06-12 14:17:39 +0300289 wl1251_debug(DEBUG_ACX, "acx rx msdu life time");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300290
Kalle Valoff258392009-06-12 14:14:19 +0300291 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800292 if (!acx)
293 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300294
Vidhya Govindance650b52009-06-12 14:16:45 +0300295 acx->lifetime = life_time;
Kalle Valo80301cd2009-06-12 14:17:39 +0300296 ret = wl1251_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
Kalle Valoff258392009-06-12 14:14:19 +0300297 acx, sizeof(*acx));
298 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300299 wl1251_warning("failed to set rx msdu life time: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300300 goto out;
301 }
302
303out:
304 kfree(acx);
305 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300306}
307
Kalle Valo80301cd2009-06-12 14:17:39 +0300308int wl1251_acx_rx_config(struct wl1251 *wl, u32 config, u32 filter)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300309{
Kalle Valoff258392009-06-12 14:14:19 +0300310 struct acx_rx_config *rx_config;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300311 int ret;
312
Kalle Valo80301cd2009-06-12 14:17:39 +0300313 wl1251_debug(DEBUG_ACX, "acx rx config");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300314
Kalle Valoff258392009-06-12 14:14:19 +0300315 rx_config = kzalloc(sizeof(*rx_config), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800316 if (!rx_config)
317 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300318
Kalle Valoff258392009-06-12 14:14:19 +0300319 rx_config->config_options = config;
320 rx_config->filter_options = filter;
321
Kalle Valo80301cd2009-06-12 14:17:39 +0300322 ret = wl1251_cmd_configure(wl, ACX_RX_CFG,
Kalle Valoff258392009-06-12 14:14:19 +0300323 rx_config, sizeof(*rx_config));
324 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300325 wl1251_warning("failed to set rx config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300326 goto out;
327 }
328
329out:
330 kfree(rx_config);
331 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300332}
333
Kalle Valo80301cd2009-06-12 14:17:39 +0300334int wl1251_acx_pd_threshold(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300335{
Kalle Valoff258392009-06-12 14:14:19 +0300336 struct acx_packet_detection *pd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300337 int ret;
338
Kalle Valo80301cd2009-06-12 14:17:39 +0300339 wl1251_debug(DEBUG_ACX, "acx data pd threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300340
Kalle Valoff258392009-06-12 14:14:19 +0300341 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800342 if (!pd)
343 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300344
Kalle Valoff258392009-06-12 14:14:19 +0300345 /* FIXME: threshold value not set */
346
Kalle Valo80301cd2009-06-12 14:17:39 +0300347 ret = wl1251_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
Kalle Valoff258392009-06-12 14:14:19 +0300348 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300349 wl1251_warning("failed to set pd threshold: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300350 goto out;
351 }
352
353out:
354 kfree(pd);
Julia Lawall9f19fa62010-08-16 18:25:21 +0200355 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300356}
357
Kalle Valo80301cd2009-06-12 14:17:39 +0300358int wl1251_acx_slot(struct wl1251 *wl, enum acx_slot_type slot_time)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300359{
Kalle Valoff258392009-06-12 14:14:19 +0300360 struct acx_slot *slot;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300361 int ret;
362
Kalle Valo80301cd2009-06-12 14:17:39 +0300363 wl1251_debug(DEBUG_ACX, "acx slot");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300364
Kalle Valoff258392009-06-12 14:14:19 +0300365 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800366 if (!slot)
367 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300368
Kalle Valoff258392009-06-12 14:14:19 +0300369 slot->wone_index = STATION_WONE_INDEX;
370 slot->slot_time = slot_time;
371
Kalle Valo80301cd2009-06-12 14:17:39 +0300372 ret = wl1251_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
Kalle Valoff258392009-06-12 14:14:19 +0300373 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300374 wl1251_warning("failed to set slot time: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300375 goto out;
376 }
377
378out:
379 kfree(slot);
380 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300381}
382
David Gnedt9ed74ba2014-01-07 13:08:30 +0100383int wl1251_acx_group_address_tbl(struct wl1251 *wl, bool enable,
384 void *mc_list, u32 mc_list_len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300385{
Kalle Valoff258392009-06-12 14:14:19 +0300386 struct acx_dot11_grp_addr_tbl *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300387 int ret;
388
Kalle Valo80301cd2009-06-12 14:17:39 +0300389 wl1251_debug(DEBUG_ACX, "acx group address tbl");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300390
Kalle Valoff258392009-06-12 14:14:19 +0300391 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800392 if (!acx)
393 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300394
Kalle Valoff258392009-06-12 14:14:19 +0300395 /* MAC filtering */
David Gnedt9ed74ba2014-01-07 13:08:30 +0100396 acx->enabled = enable;
397 acx->num_groups = mc_list_len;
398 memcpy(acx->mac_table, mc_list, mc_list_len * ETH_ALEN);
Kalle Valoff258392009-06-12 14:14:19 +0300399
Kalle Valo80301cd2009-06-12 14:17:39 +0300400 ret = wl1251_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
Kalle Valoff258392009-06-12 14:14:19 +0300401 acx, sizeof(*acx));
402 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300403 wl1251_warning("failed to set group addr table: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300404 goto out;
405 }
406
407out:
408 kfree(acx);
409 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300410}
411
Kalle Valo80301cd2009-06-12 14:17:39 +0300412int wl1251_acx_service_period_timeout(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300413{
Kalle Valoff258392009-06-12 14:14:19 +0300414 struct acx_rx_timeout *rx_timeout;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300415 int ret;
416
Kalle Valoff258392009-06-12 14:14:19 +0300417 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800418 if (!rx_timeout)
419 return -ENOMEM;
Kalle Valoff258392009-06-12 14:14:19 +0300420
Kalle Valo80301cd2009-06-12 14:17:39 +0300421 wl1251_debug(DEBUG_ACX, "acx service period timeout");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300422
Kalle Valoff258392009-06-12 14:14:19 +0300423 rx_timeout->ps_poll_timeout = RX_TIMEOUT_PS_POLL_DEF;
424 rx_timeout->upsd_timeout = RX_TIMEOUT_UPSD_DEF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300425
Kalle Valo80301cd2009-06-12 14:17:39 +0300426 ret = wl1251_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
Kalle Valoff258392009-06-12 14:14:19 +0300427 rx_timeout, sizeof(*rx_timeout));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300428 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300429 wl1251_warning("failed to set service period timeout: %d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300430 ret);
Kalle Valoff258392009-06-12 14:14:19 +0300431 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300432 }
433
Kalle Valoff258392009-06-12 14:14:19 +0300434out:
435 kfree(rx_timeout);
436 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300437}
438
Kalle Valo80301cd2009-06-12 14:17:39 +0300439int wl1251_acx_rts_threshold(struct wl1251 *wl, u16 rts_threshold)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300440{
Kalle Valoff258392009-06-12 14:14:19 +0300441 struct acx_rts_threshold *rts;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300442 int ret;
443
Kalle Valo80301cd2009-06-12 14:17:39 +0300444 wl1251_debug(DEBUG_ACX, "acx rts threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300445
Kalle Valoff258392009-06-12 14:14:19 +0300446 rts = kzalloc(sizeof(*rts), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800447 if (!rts)
448 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300449
Kalle Valoff258392009-06-12 14:14:19 +0300450 rts->threshold = rts_threshold;
451
Kalle Valo80301cd2009-06-12 14:17:39 +0300452 ret = wl1251_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
Kalle Valoff258392009-06-12 14:14:19 +0300453 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300454 wl1251_warning("failed to set rts threshold: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300455 goto out;
456 }
457
458out:
459 kfree(rts);
460 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300461}
462
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200463int wl1251_acx_beacon_filter_opt(struct wl1251 *wl, bool enable_filter)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300464{
Kalle Valoff258392009-06-12 14:14:19 +0300465 struct acx_beacon_filter_option *beacon_filter;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300466 int ret;
467
Kalle Valo80301cd2009-06-12 14:17:39 +0300468 wl1251_debug(DEBUG_ACX, "acx beacon filter opt");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300469
Kalle Valoff258392009-06-12 14:14:19 +0300470 beacon_filter = kzalloc(sizeof(*beacon_filter), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800471 if (!beacon_filter)
472 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300473
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200474 beacon_filter->enable = enable_filter;
Kalle Valoff258392009-06-12 14:14:19 +0300475 beacon_filter->max_num_beacons = 0;
476
Kalle Valo80301cd2009-06-12 14:17:39 +0300477 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
Kalle Valoff258392009-06-12 14:14:19 +0300478 beacon_filter, sizeof(*beacon_filter));
479 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300480 wl1251_warning("failed to set beacon filter opt: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300481 goto out;
482 }
483
484out:
485 kfree(beacon_filter);
486 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300487}
488
Kalle Valo80301cd2009-06-12 14:17:39 +0300489int wl1251_acx_beacon_filter_table(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300490{
Kalle Valoff258392009-06-12 14:14:19 +0300491 struct acx_beacon_filter_ie_table *ie_table;
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200492 int idx = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300493 int ret;
494
Kalle Valo80301cd2009-06-12 14:17:39 +0300495 wl1251_debug(DEBUG_ACX, "acx beacon filter table");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300496
Kalle Valoff258392009-06-12 14:14:19 +0300497 ie_table = kzalloc(sizeof(*ie_table), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800498 if (!ie_table)
499 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300500
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200501 /* configure default beacon pass-through rules */
502 ie_table->num_ie = 1;
503 ie_table->table[idx++] = BEACON_FILTER_IE_ID_CHANNEL_SWITCH_ANN;
504 ie_table->table[idx++] = BEACON_RULE_PASS_ON_APPEARANCE;
Kalle Valoff258392009-06-12 14:14:19 +0300505
Kalle Valo80301cd2009-06-12 14:17:39 +0300506 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
Kalle Valoff258392009-06-12 14:14:19 +0300507 ie_table, sizeof(*ie_table));
508 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300509 wl1251_warning("failed to set beacon filter table: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300510 goto out;
511 }
512
513out:
514 kfree(ie_table);
515 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300516}
517
Juuso Oikarinen474c48c2009-11-17 18:48:14 +0200518int wl1251_acx_conn_monit_params(struct wl1251 *wl)
519{
520 struct acx_conn_monit_params *acx;
521 int ret;
522
523 wl1251_debug(DEBUG_ACX, "acx connection monitor parameters");
524
525 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800526 if (!acx)
527 return -ENOMEM;
Juuso Oikarinen474c48c2009-11-17 18:48:14 +0200528
529 acx->synch_fail_thold = SYNCH_FAIL_DEFAULT_THRESHOLD;
530 acx->bss_lose_timeout = NO_BEACON_DEFAULT_TIMEOUT;
531
532 ret = wl1251_cmd_configure(wl, ACX_CONN_MONIT_PARAMS,
533 acx, sizeof(*acx));
534 if (ret < 0) {
535 wl1251_warning("failed to set connection monitor "
536 "parameters: %d", ret);
537 goto out;
538 }
539
540out:
541 kfree(acx);
542 return ret;
543}
544
Kalle Valo80301cd2009-06-12 14:17:39 +0300545int wl1251_acx_sg_enable(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300546{
Kalle Valoff258392009-06-12 14:14:19 +0300547 struct acx_bt_wlan_coex *pta;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300548 int ret;
549
Kalle Valo80301cd2009-06-12 14:17:39 +0300550 wl1251_debug(DEBUG_ACX, "acx sg enable");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300551
Kalle Valoff258392009-06-12 14:14:19 +0300552 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800553 if (!pta)
554 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300555
Kalle Valoff258392009-06-12 14:14:19 +0300556 pta->enable = SG_ENABLE;
557
Kalle Valo80301cd2009-06-12 14:17:39 +0300558 ret = wl1251_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
Kalle Valoff258392009-06-12 14:14:19 +0300559 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300560 wl1251_warning("failed to set softgemini enable: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300561 goto out;
562 }
563
564out:
565 kfree(pta);
566 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300567}
568
Kalle Valo80301cd2009-06-12 14:17:39 +0300569int wl1251_acx_sg_cfg(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300570{
Kalle Valoff258392009-06-12 14:14:19 +0300571 struct acx_bt_wlan_coex_param *param;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300572 int ret;
573
Kalle Valo80301cd2009-06-12 14:17:39 +0300574 wl1251_debug(DEBUG_ACX, "acx sg cfg");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300575
Kalle Valoff258392009-06-12 14:14:19 +0300576 param = kzalloc(sizeof(*param), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800577 if (!param)
578 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300579
Kalle Valoff258392009-06-12 14:14:19 +0300580 /* BT-WLAN coext parameters */
581 param->min_rate = RATE_INDEX_24MBPS;
582 param->bt_hp_max_time = PTA_BT_HP_MAXTIME_DEF;
583 param->wlan_hp_max_time = PTA_WLAN_HP_MAX_TIME_DEF;
584 param->sense_disable_timer = PTA_SENSE_DISABLE_TIMER_DEF;
585 param->rx_time_bt_hp = PTA_PROTECTIVE_RX_TIME_DEF;
586 param->tx_time_bt_hp = PTA_PROTECTIVE_TX_TIME_DEF;
587 param->rx_time_bt_hp_fast = PTA_PROTECTIVE_RX_TIME_FAST_DEF;
588 param->tx_time_bt_hp_fast = PTA_PROTECTIVE_TX_TIME_FAST_DEF;
589 param->wlan_cycle_fast = PTA_CYCLE_TIME_FAST_DEF;
590 param->bt_anti_starvation_period = PTA_ANTI_STARVE_PERIOD_DEF;
591 param->next_bt_lp_packet = PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF;
592 param->wake_up_beacon = PTA_TIME_BEFORE_BEACON_DEF;
593 param->hp_dm_max_guard_time = PTA_HPDM_MAX_TIME_DEF;
594 param->next_wlan_packet = PTA_TIME_OUT_NEXT_WLAN_DEF;
595 param->antenna_type = PTA_ANTENNA_TYPE_DEF;
596 param->signal_type = PTA_SIGNALING_TYPE_DEF;
597 param->afh_leverage_on = PTA_AFH_LEVERAGE_ON_DEF;
598 param->quiet_cycle_num = PTA_NUMBER_QUIET_CYCLE_DEF;
599 param->max_cts = PTA_MAX_NUM_CTS_DEF;
600 param->wlan_packets_num = PTA_NUMBER_OF_WLAN_PACKETS_DEF;
601 param->bt_packets_num = PTA_NUMBER_OF_BT_PACKETS_DEF;
602 param->missed_rx_avalanche = PTA_RX_FOR_AVALANCHE_DEF;
603 param->wlan_elp_hp = PTA_ELP_HP_DEF;
604 param->bt_anti_starvation_cycles = PTA_ANTI_STARVE_NUM_CYCLE_DEF;
605 param->ack_mode_dual_ant = PTA_ACK_MODE_DEF;
606 param->pa_sd_enable = PTA_ALLOW_PA_SD_DEF;
607 param->pta_auto_mode_enable = PTA_AUTO_MODE_NO_CTS_DEF;
608 param->bt_hp_respected_num = PTA_BT_HP_RESPECTED_DEF;
609
Kalle Valo80301cd2009-06-12 14:17:39 +0300610 ret = wl1251_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
Kalle Valoff258392009-06-12 14:14:19 +0300611 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300612 wl1251_warning("failed to set sg config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300613 goto out;
614 }
615
616out:
617 kfree(param);
618 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300619}
620
Kalle Valo80301cd2009-06-12 14:17:39 +0300621int wl1251_acx_cca_threshold(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300622{
Kalle Valoff258392009-06-12 14:14:19 +0300623 struct acx_energy_detection *detection;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300624 int ret;
625
Kalle Valo80301cd2009-06-12 14:17:39 +0300626 wl1251_debug(DEBUG_ACX, "acx cca threshold");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300627
Kalle Valoff258392009-06-12 14:14:19 +0300628 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800629 if (!detection)
630 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300631
Kalle Valoff258392009-06-12 14:14:19 +0300632 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
633 detection->tx_energy_detection = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300634
Kalle Valo80301cd2009-06-12 14:17:39 +0300635 ret = wl1251_cmd_configure(wl, ACX_CCA_THRESHOLD,
Kalle Valoff258392009-06-12 14:14:19 +0300636 detection, sizeof(*detection));
Julia Lawall059c4382011-08-08 13:18:03 +0200637 if (ret < 0)
Kalle Valo80301cd2009-06-12 14:17:39 +0300638 wl1251_warning("failed to set cca threshold: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300639
Kalle Valoff258392009-06-12 14:14:19 +0300640 kfree(detection);
641 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300642}
643
Kalle Valo80301cd2009-06-12 14:17:39 +0300644int wl1251_acx_bcn_dtim_options(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300645{
Kalle Valoff258392009-06-12 14:14:19 +0300646 struct acx_beacon_broadcast *bb;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300647 int ret;
648
Kalle Valo80301cd2009-06-12 14:17:39 +0300649 wl1251_debug(DEBUG_ACX, "acx bcn dtim options");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300650
Kalle Valoff258392009-06-12 14:14:19 +0300651 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800652 if (!bb)
653 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300654
Kalle Valoff258392009-06-12 14:14:19 +0300655 bb->beacon_rx_timeout = BCN_RX_TIMEOUT_DEF_VALUE;
656 bb->broadcast_timeout = BROADCAST_RX_TIMEOUT_DEF_VALUE;
657 bb->rx_broadcast_in_ps = RX_BROADCAST_IN_PS_DEF_VALUE;
658 bb->ps_poll_threshold = CONSECUTIVE_PS_POLL_FAILURE_DEF;
659
Kalle Valo80301cd2009-06-12 14:17:39 +0300660 ret = wl1251_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
Kalle Valoff258392009-06-12 14:14:19 +0300661 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300662 wl1251_warning("failed to set rx config: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300663 goto out;
664 }
665
666out:
667 kfree(bb);
668 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300669}
670
Kalle Valo80301cd2009-06-12 14:17:39 +0300671int wl1251_acx_aid(struct wl1251 *wl, u16 aid)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300672{
Kalle Valoff258392009-06-12 14:14:19 +0300673 struct acx_aid *acx_aid;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300674 int ret;
675
Kalle Valo80301cd2009-06-12 14:17:39 +0300676 wl1251_debug(DEBUG_ACX, "acx aid");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300677
Kalle Valoff258392009-06-12 14:14:19 +0300678 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800679 if (!acx_aid)
680 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300681
Kalle Valoff258392009-06-12 14:14:19 +0300682 acx_aid->aid = aid;
683
Kalle Valo80301cd2009-06-12 14:17:39 +0300684 ret = wl1251_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
Kalle Valoff258392009-06-12 14:14:19 +0300685 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300686 wl1251_warning("failed to set aid: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300687 goto out;
688 }
689
690out:
691 kfree(acx_aid);
692 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300693}
694
Kalle Valo80301cd2009-06-12 14:17:39 +0300695int wl1251_acx_event_mbox_mask(struct wl1251 *wl, u32 event_mask)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300696{
Kalle Valoff258392009-06-12 14:14:19 +0300697 struct acx_event_mask *mask;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300698 int ret;
699
Kalle Valo80301cd2009-06-12 14:17:39 +0300700 wl1251_debug(DEBUG_ACX, "acx event mbox mask");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300701
Kalle Valoff258392009-06-12 14:14:19 +0300702 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800703 if (!mask)
704 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300705
Kalle Valoff258392009-06-12 14:14:19 +0300706 /* high event mask is unused */
707 mask->high_event_mask = 0xffffffff;
708
709 mask->event_mask = event_mask;
710
Kalle Valo80301cd2009-06-12 14:17:39 +0300711 ret = wl1251_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
Kalle Valoff258392009-06-12 14:14:19 +0300712 mask, sizeof(*mask));
713 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300714 wl1251_warning("failed to set acx_event_mbox_mask: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300715 goto out;
716 }
717
718out:
719 kfree(mask);
720 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300721}
722
David Gnedt8964e492011-01-30 20:11:00 +0100723int wl1251_acx_low_rssi(struct wl1251 *wl, s8 threshold, u8 weight,
724 u8 depth, enum wl1251_acx_low_rssi_type type)
725{
726 struct acx_low_rssi *rssi;
727 int ret;
728
729 wl1251_debug(DEBUG_ACX, "acx low rssi");
730
731 rssi = kzalloc(sizeof(*rssi), GFP_KERNEL);
732 if (!rssi)
733 return -ENOMEM;
734
735 rssi->threshold = threshold;
736 rssi->weight = weight;
737 rssi->depth = depth;
738 rssi->type = type;
739
740 ret = wl1251_cmd_configure(wl, ACX_LOW_RSSI, rssi, sizeof(*rssi));
741 if (ret < 0)
742 wl1251_warning("failed to set low rssi threshold: %d", ret);
743
744 kfree(rssi);
745 return ret;
746}
747
Kalle Valo80301cd2009-06-12 14:17:39 +0300748int wl1251_acx_set_preamble(struct wl1251 *wl, enum acx_preamble_type preamble)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300749{
Kalle Valoff258392009-06-12 14:14:19 +0300750 struct acx_preamble *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300751 int ret;
752
Kalle Valo80301cd2009-06-12 14:17:39 +0300753 wl1251_debug(DEBUG_ACX, "acx_set_preamble");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300754
Kalle Valoff258392009-06-12 14:14:19 +0300755 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800756 if (!acx)
757 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300758
Kalle Valoff258392009-06-12 14:14:19 +0300759 acx->preamble = preamble;
760
Kalle Valo80301cd2009-06-12 14:17:39 +0300761 ret = wl1251_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300762 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300763 wl1251_warning("Setting of preamble failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300764 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300765 }
Kalle Valoff258392009-06-12 14:14:19 +0300766
767out:
768 kfree(acx);
769 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300770}
771
Kalle Valo80301cd2009-06-12 14:17:39 +0300772int wl1251_acx_cts_protect(struct wl1251 *wl,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300773 enum acx_ctsprotect_type ctsprotect)
774{
Kalle Valoff258392009-06-12 14:14:19 +0300775 struct acx_ctsprotect *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300776 int ret;
777
Kalle Valo80301cd2009-06-12 14:17:39 +0300778 wl1251_debug(DEBUG_ACX, "acx_set_ctsprotect");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300779
Kalle Valoff258392009-06-12 14:14:19 +0300780 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800781 if (!acx)
782 return -ENOMEM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300783
Kalle Valoff258392009-06-12 14:14:19 +0300784 acx->ctsprotect = ctsprotect;
785
Kalle Valo80301cd2009-06-12 14:17:39 +0300786 ret = wl1251_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300787 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300788 wl1251_warning("Setting of ctsprotect failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300789 goto out;
790 }
791
Kalle Valoff258392009-06-12 14:14:19 +0300792out:
793 kfree(acx);
794 return ret;
795}
796
Kalle Valo80301cd2009-06-12 14:17:39 +0300797int wl1251_acx_tsf_info(struct wl1251 *wl, u64 *mactime)
Kalle Valoff258392009-06-12 14:14:19 +0300798{
799 struct acx_tsf_info *tsf_info;
800 int ret;
801
802 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800803 if (!tsf_info)
804 return -ENOMEM;
Kalle Valoff258392009-06-12 14:14:19 +0300805
Kalle Valo80301cd2009-06-12 14:17:39 +0300806 ret = wl1251_cmd_interrogate(wl, ACX_TSF_INFO,
Kalle Valoff258392009-06-12 14:14:19 +0300807 tsf_info, sizeof(*tsf_info));
808 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300809 wl1251_warning("ACX_FW_REV interrogate failed");
Kalle Valoff258392009-06-12 14:14:19 +0300810 goto out;
811 }
812
813 *mactime = tsf_info->current_tsf_lsb |
Grazvydas Ignotascae62472012-06-16 22:26:46 +0300814 ((u64)tsf_info->current_tsf_msb << 32);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300815
816out:
Kalle Valoff258392009-06-12 14:14:19 +0300817 kfree(tsf_info);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300818 return ret;
819}
Kalle Valoff258392009-06-12 14:14:19 +0300820
Kalle Valo80301cd2009-06-12 14:17:39 +0300821int wl1251_acx_statistics(struct wl1251 *wl, struct acx_statistics *stats)
Kalle Valoff258392009-06-12 14:14:19 +0300822{
823 int ret;
824
Kalle Valo80301cd2009-06-12 14:17:39 +0300825 wl1251_debug(DEBUG_ACX, "acx statistics");
Kalle Valoff258392009-06-12 14:14:19 +0300826
Kalle Valo80301cd2009-06-12 14:17:39 +0300827 ret = wl1251_cmd_interrogate(wl, ACX_STATISTICS, stats,
Kalle Valoff258392009-06-12 14:14:19 +0300828 sizeof(*stats));
829 if (ret < 0) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300830 wl1251_warning("acx statistics failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300831 return -ENOMEM;
832 }
833
834 return 0;
835}
Kalle Valo0e71bb02009-08-07 13:33:57 +0300836
837int wl1251_acx_rate_policies(struct wl1251 *wl)
838{
839 struct acx_rate_policy *acx;
840 int ret = 0;
841
842 wl1251_debug(DEBUG_ACX, "acx rate policies");
843
844 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800845 if (!acx)
846 return -ENOMEM;
Kalle Valo0e71bb02009-08-07 13:33:57 +0300847
848 /* configure one default (one-size-fits-all) rate class */
David Gnedt3d49da72014-01-07 13:10:51 +0100849 acx->rate_class_cnt = 2;
Kalle Valo0e71bb02009-08-07 13:33:57 +0300850 acx->rate_class[0].enabled_rates = ACX_RATE_MASK_UNSPECIFIED;
851 acx->rate_class[0].short_retry_limit = ACX_RATE_RETRY_LIMIT;
852 acx->rate_class[0].long_retry_limit = ACX_RATE_RETRY_LIMIT;
853 acx->rate_class[0].aflags = 0;
854
David Gnedt3d49da72014-01-07 13:10:51 +0100855 /* no-retry rate class */
856 acx->rate_class[1].enabled_rates = ACX_RATE_MASK_UNSPECIFIED;
857 acx->rate_class[1].short_retry_limit = 0;
858 acx->rate_class[1].long_retry_limit = 0;
859 acx->rate_class[1].aflags = 0;
860
Kalle Valo0e71bb02009-08-07 13:33:57 +0300861 ret = wl1251_cmd_configure(wl, ACX_RATE_POLICY, acx, sizeof(*acx));
862 if (ret < 0) {
863 wl1251_warning("Setting of rate policies failed: %d", ret);
864 goto out;
865 }
866
867out:
868 kfree(acx);
869 return ret;
870}
871
872int wl1251_acx_mem_cfg(struct wl1251 *wl)
873{
874 struct wl1251_acx_config_memory *mem_conf;
875 int ret, i;
876
877 wl1251_debug(DEBUG_ACX, "acx mem cfg");
878
879 mem_conf = kzalloc(sizeof(*mem_conf), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800880 if (!mem_conf)
881 return -ENOMEM;
Kalle Valo0e71bb02009-08-07 13:33:57 +0300882
883 /* memory config */
884 mem_conf->mem_config.num_stations = cpu_to_le16(DEFAULT_NUM_STATIONS);
885 mem_conf->mem_config.rx_mem_block_num = 35;
886 mem_conf->mem_config.tx_min_mem_block_num = 64;
887 mem_conf->mem_config.num_tx_queues = MAX_TX_QUEUES;
888 mem_conf->mem_config.host_if_options = HOSTIF_PKT_RING;
889 mem_conf->mem_config.num_ssid_profiles = 1;
890 mem_conf->mem_config.debug_buffer_size =
891 cpu_to_le16(TRACE_BUFFER_MAX_SIZE);
892
893 /* RX queue config */
894 mem_conf->rx_queue_config.dma_address = 0;
895 mem_conf->rx_queue_config.num_descs = ACX_RX_DESC_DEF;
896 mem_conf->rx_queue_config.priority = DEFAULT_RXQ_PRIORITY;
897 mem_conf->rx_queue_config.type = DEFAULT_RXQ_TYPE;
898
899 /* TX queue config */
900 for (i = 0; i < MAX_TX_QUEUES; i++) {
901 mem_conf->tx_queue_config[i].num_descs = ACX_TX_DESC_DEF;
902 mem_conf->tx_queue_config[i].attributes = i;
903 }
904
905 ret = wl1251_cmd_configure(wl, ACX_MEM_CFG, mem_conf,
906 sizeof(*mem_conf));
907 if (ret < 0) {
908 wl1251_warning("wl1251 mem config failed: %d", ret);
909 goto out;
910 }
911
912out:
913 kfree(mem_conf);
914 return ret;
915}
Vidhya Govindand531cf32009-11-17 18:49:08 +0200916
917int wl1251_acx_wr_tbtt_and_dtim(struct wl1251 *wl, u16 tbtt, u8 dtim)
918{
919 struct wl1251_acx_wr_tbtt_and_dtim *acx;
920 int ret;
921
922 wl1251_debug(DEBUG_ACX, "acx tbtt and dtim");
923
924 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800925 if (!acx)
926 return -ENOMEM;
Vidhya Govindand531cf32009-11-17 18:49:08 +0200927
928 acx->tbtt = tbtt;
929 acx->dtim = dtim;
930
931 ret = wl1251_cmd_configure(wl, ACX_WR_TBTT_AND_DTIM,
932 acx, sizeof(*acx));
933 if (ret < 0) {
934 wl1251_warning("failed to set tbtt and dtim: %d", ret);
935 goto out;
936 }
937
938out:
939 kfree(acx);
940 return ret;
941}
Kalle Valo86dff7a2009-11-30 10:18:19 +0200942
David Gnedtc3e334d2011-01-30 20:10:57 +0100943int wl1251_acx_bet_enable(struct wl1251 *wl, enum wl1251_acx_bet_mode mode,
944 u8 max_consecutive)
945{
946 struct wl1251_acx_bet_enable *acx;
947 int ret;
948
949 wl1251_debug(DEBUG_ACX, "acx bet enable");
950
951 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +0800952 if (!acx)
953 return -ENOMEM;
David Gnedtc3e334d2011-01-30 20:10:57 +0100954
955 acx->enable = mode;
956 acx->max_consecutive = max_consecutive;
957
958 ret = wl1251_cmd_configure(wl, ACX_BET_ENABLE, acx, sizeof(*acx));
959 if (ret < 0) {
960 wl1251_warning("wl1251 acx bet enable failed: %d", ret);
961 goto out;
962 }
963
964out:
965 kfree(acx);
966 return ret;
967}
968
David Gnedt204cc5c2014-01-07 13:06:24 +0100969int wl1251_acx_arp_ip_filter(struct wl1251 *wl, bool enable, __be32 address)
970{
971 struct wl1251_acx_arp_filter *acx;
972 int ret;
973
974 wl1251_debug(DEBUG_ACX, "acx arp ip filter, enable: %d", enable);
975
976 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
977 if (!acx)
978 return -ENOMEM;
979
980 acx->version = ACX_IPV4_VERSION;
981 acx->enable = enable;
982
983 if (enable)
984 memcpy(acx->address, &address, ACX_IPV4_ADDR_SIZE);
985
986 ret = wl1251_cmd_configure(wl, ACX_ARP_IP_FILTER,
987 acx, sizeof(*acx));
988 if (ret < 0)
989 wl1251_warning("failed to set arp ip filter: %d", ret);
990
991 kfree(acx);
992 return ret;
993}
994
Kalle Valo86dff7a2009-11-30 10:18:19 +0200995int wl1251_acx_ac_cfg(struct wl1251 *wl, u8 ac, u8 cw_min, u16 cw_max,
996 u8 aifs, u16 txop)
997{
998 struct wl1251_acx_ac_cfg *acx;
999 int ret = 0;
1000
1001 wl1251_debug(DEBUG_ACX, "acx ac cfg %d cw_ming %d cw_max %d "
1002 "aifs %d txop %d", ac, cw_min, cw_max, aifs, txop);
1003
1004 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +08001005 if (!acx)
1006 return -ENOMEM;
Kalle Valo86dff7a2009-11-30 10:18:19 +02001007
1008 acx->ac = ac;
1009 acx->cw_min = cw_min;
1010 acx->cw_max = cw_max;
1011 acx->aifsn = aifs;
1012 acx->txop_limit = txop;
1013
1014 ret = wl1251_cmd_configure(wl, ACX_AC_CFG, acx, sizeof(*acx));
1015 if (ret < 0) {
1016 wl1251_warning("acx ac cfg failed: %d", ret);
1017 goto out;
1018 }
1019
1020out:
1021 kfree(acx);
1022 return ret;
1023}
Kalle Valo27336f12009-11-30 10:18:27 +02001024
1025int wl1251_acx_tid_cfg(struct wl1251 *wl, u8 queue,
1026 enum wl1251_acx_channel_type type,
1027 u8 tsid, enum wl1251_acx_ps_scheme ps_scheme,
1028 enum wl1251_acx_ack_policy ack_policy)
1029{
1030 struct wl1251_acx_tid_cfg *acx;
1031 int ret = 0;
1032
1033 wl1251_debug(DEBUG_ACX, "acx tid cfg %d type %d tsid %d "
1034 "ps_scheme %d ack_policy %d", queue, type, tsid,
1035 ps_scheme, ack_policy);
1036
1037 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
Jing Wang60ce4732013-10-24 16:14:11 +08001038 if (!acx)
1039 return -ENOMEM;
Kalle Valo27336f12009-11-30 10:18:27 +02001040
1041 acx->queue = queue;
1042 acx->type = type;
1043 acx->tsid = tsid;
1044 acx->ps_scheme = ps_scheme;
1045 acx->ack_policy = ack_policy;
1046
1047 ret = wl1251_cmd_configure(wl, ACX_TID_CFG, acx, sizeof(*acx));
1048 if (ret < 0) {
1049 wl1251_warning("acx tid cfg failed: %d", ret);
1050 goto out;
1051 }
1052
1053out:
1054 kfree(acx);
1055 return ret;
1056}