blob: ceb1ca63c43a7caa980f273b1c448804dcc115f1 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 2009 Nokia Corporation
5 *
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
24#include <linux/module.h>
25#include <linux/platform_device.h>
26#include <linux/crc7.h>
27#include <linux/spi/spi.h>
28#include <linux/etherdevice.h>
29
30#include "wl1271.h"
31#include "wl1271_reg.h"
32#include "wl1271_spi.h"
33#include "wl1271_acx.h"
34#include "wl12xx_80211.h"
35#include "wl1271_cmd.h"
36
37/*
38 * send command to firmware
39 *
40 * @wl: wl struct
41 * @id: command id
42 * @buf: buffer containing the command, must work with dma
43 * @len: length of the buffer
44 */
Juuso Oikarinenfa867e72009-11-02 20:22:13 +020045int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len,
46 size_t res_len)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030047{
48 struct wl1271_cmd_header *cmd;
49 unsigned long timeout;
50 u32 intr;
51 int ret = 0;
Juuso Oikarinenad150e92009-11-02 20:22:12 +020052 u16 status;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030053
54 cmd = buf;
Luciano Coelhod0f63b22009-10-15 10:33:29 +030055 cmd->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030056 cmd->status = 0;
57
58 WARN_ON(len % 4 != 0);
59
Juuso Oikarinen74621412009-10-12 15:08:54 +030060 wl1271_spi_write(wl, wl->cmd_box_addr, buf, len, false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030061
Juuso Oikarinen74621412009-10-12 15:08:54 +030062 wl1271_spi_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_CMD);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030063
64 timeout = jiffies + msecs_to_jiffies(WL1271_COMMAND_TIMEOUT);
65
Juuso Oikarinen74621412009-10-12 15:08:54 +030066 intr = wl1271_spi_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030067 while (!(intr & WL1271_ACX_INTR_CMD_COMPLETE)) {
68 if (time_after(jiffies, timeout)) {
69 wl1271_error("command complete timeout");
70 ret = -ETIMEDOUT;
71 goto out;
72 }
73
74 msleep(1);
75
Juuso Oikarinen74621412009-10-12 15:08:54 +030076 intr = wl1271_spi_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030077 }
78
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020079 /* read back the status code of the command */
Juuso Oikarinenfa867e72009-11-02 20:22:13 +020080 if (res_len == 0)
81 res_len = sizeof(struct wl1271_cmd_header);
82 wl1271_spi_read(wl, wl->cmd_box_addr, cmd, res_len, false);
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020083
Juuso Oikarinenad150e92009-11-02 20:22:12 +020084 status = le16_to_cpu(cmd->status);
85 if (status != CMD_STATUS_SUCCESS) {
86 wl1271_error("command execute failure %d", status);
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020087 ret = -EIO;
88 }
89
Juuso Oikarinen74621412009-10-12 15:08:54 +030090 wl1271_spi_write32(wl, ACX_REG_INTERRUPT_ACK,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030091 WL1271_ACX_INTR_CMD_COMPLETE);
92
93out:
94 return ret;
95}
96
Luciano Coelho938e30c2009-10-15 10:33:27 +030097static int wl1271_cmd_cal_channel_tune(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030098{
99 struct wl1271_cmd_cal_channel_tune *cmd;
100 int ret = 0;
101
102 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
103 if (!cmd)
104 return -ENOMEM;
105
106 cmd->test.id = TEST_CMD_CHANNEL_TUNE;
107
108 cmd->band = WL1271_CHANNEL_TUNE_BAND_2_4;
109 /* set up any channel, 7 is in the middle of the range */
110 cmd->channel = 7;
111
112 ret = wl1271_cmd_test(wl, cmd, sizeof(*cmd), 0);
113 if (ret < 0)
114 wl1271_warning("TEST_CMD_CHANNEL_TUNE failed");
115
116 kfree(cmd);
117 return ret;
118}
119
Luciano Coelho938e30c2009-10-15 10:33:27 +0300120static int wl1271_cmd_cal_update_ref_point(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300121{
122 struct wl1271_cmd_cal_update_ref_point *cmd;
123 int ret = 0;
124
125 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
126 if (!cmd)
127 return -ENOMEM;
128
129 cmd->test.id = TEST_CMD_UPDATE_PD_REFERENCE_POINT;
130
131 /* FIXME: still waiting for the correct values */
132 cmd->ref_power = 0;
133 cmd->ref_detector = 0;
134
135 cmd->sub_band = WL1271_PD_REFERENCE_POINT_BAND_B_G;
136
137 ret = wl1271_cmd_test(wl, cmd, sizeof(*cmd), 0);
138 if (ret < 0)
139 wl1271_warning("TEST_CMD_UPDATE_PD_REFERENCE_POINT failed");
140
141 kfree(cmd);
142 return ret;
143}
144
Luciano Coelho938e30c2009-10-15 10:33:27 +0300145static int wl1271_cmd_cal_p2g(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300146{
147 struct wl1271_cmd_cal_p2g *cmd;
148 int ret = 0;
149
150 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
151 if (!cmd)
152 return -ENOMEM;
153
154 cmd->test.id = TEST_CMD_P2G_CAL;
155
156 cmd->sub_band_mask = WL1271_CAL_P2G_BAND_B_G;
157
158 ret = wl1271_cmd_test(wl, cmd, sizeof(*cmd), 0);
159 if (ret < 0)
160 wl1271_warning("TEST_CMD_P2G_CAL failed");
161
162 kfree(cmd);
163 return ret;
164}
165
Luciano Coelho938e30c2009-10-15 10:33:27 +0300166static int wl1271_cmd_cal(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300167{
168 /*
169 * FIXME: we must make sure that we're not sleeping when calibration
170 * is done
171 */
172 int ret;
173
174 wl1271_notice("performing tx calibration");
175
176 ret = wl1271_cmd_cal_channel_tune(wl);
177 if (ret < 0)
178 return ret;
179
180 ret = wl1271_cmd_cal_update_ref_point(wl);
181 if (ret < 0)
182 return ret;
183
184 ret = wl1271_cmd_cal_p2g(wl);
185 if (ret < 0)
186 return ret;
187
188 return ret;
189}
190
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200191int wl1271_cmd_general_parms(struct wl1271 *wl)
192{
193 struct wl1271_general_parms_cmd *gen_parms;
194 struct conf_general_parms *g = &wl->conf.init.genparam;
195 int ret;
196
197 gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL);
198 if (!gen_parms)
199 return -ENOMEM;
200
201 gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM;
202
203 gen_parms->ref_clk = g->ref_clk;
204 gen_parms->settling_time = g->settling_time;
205 gen_parms->clk_valid_on_wakeup = g->clk_valid_on_wakeup;
206 gen_parms->dc2dcmode = g->dc2dcmode;
207 gen_parms->single_dual_band = g->single_dual_band;
208 gen_parms->tx_bip_fem_autodetect = g->tx_bip_fem_autodetect;
209 gen_parms->tx_bip_fem_manufacturer = g->tx_bip_fem_manufacturer;
210 gen_parms->settings = g->settings;
211
Luciano Coelho76c0f8d2009-12-11 15:40:41 +0200212 gen_parms->sr_state = g->sr_state;
213
214 memcpy(gen_parms->srf1,
215 g->srf1,
216 CONF_MAX_SMART_REFLEX_PARAMS);
217 memcpy(gen_parms->srf2,
218 g->srf2,
219 CONF_MAX_SMART_REFLEX_PARAMS);
220 memcpy(gen_parms->srf3,
221 g->srf3,
222 CONF_MAX_SMART_REFLEX_PARAMS);
223 memcpy(gen_parms->sr_debug_table,
224 g->sr_debug_table,
225 CONF_MAX_SMART_REFLEX_PARAMS);
226
227 gen_parms->sr_sen_n_p = g->sr_sen_n_p;
228 gen_parms->sr_sen_n_p_gain = g->sr_sen_n_p_gain;
229 gen_parms->sr_sen_nrn = g->sr_sen_nrn;
230 gen_parms->sr_sen_prn = g->sr_sen_prn;
231
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200232 ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), 0);
233 if (ret < 0)
234 wl1271_warning("CMD_INI_FILE_GENERAL_PARAM failed");
235
236 kfree(gen_parms);
237 return ret;
238}
239
240int wl1271_cmd_radio_parms(struct wl1271 *wl)
241{
242 struct wl1271_radio_parms_cmd *radio_parms;
243 struct conf_radio_parms *r = &wl->conf.init.radioparam;
244 int i, ret;
245
246 radio_parms = kzalloc(sizeof(*radio_parms), GFP_KERNEL);
247 if (!radio_parms)
248 return -ENOMEM;
249
250 radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM;
251
252 /* Static radio parameters */
253 radio_parms->rx_trace_loss = r->rx_trace_loss;
254 radio_parms->tx_trace_loss = r->tx_trace_loss;
255 memcpy(radio_parms->rx_rssi_and_proc_compens,
256 r->rx_rssi_and_proc_compens,
257 CONF_RSSI_AND_PROCESS_COMPENSATION_SIZE);
258
259 memcpy(radio_parms->rx_trace_loss_5, r->rx_trace_loss_5,
260 CONF_NUMBER_OF_SUB_BANDS_5);
261 memcpy(radio_parms->tx_trace_loss_5, r->tx_trace_loss_5,
262 CONF_NUMBER_OF_SUB_BANDS_5);
263 memcpy(radio_parms->rx_rssi_and_proc_compens_5,
264 r->rx_rssi_and_proc_compens_5,
265 CONF_RSSI_AND_PROCESS_COMPENSATION_SIZE);
266
267 /* Dynamic radio parameters */
268 radio_parms->tx_ref_pd_voltage = cpu_to_le16(r->tx_ref_pd_voltage);
269 radio_parms->tx_ref_power = r->tx_ref_power;
270 radio_parms->tx_offset_db = r->tx_offset_db;
271
272 memcpy(radio_parms->tx_rate_limits_normal, r->tx_rate_limits_normal,
273 CONF_NUMBER_OF_RATE_GROUPS);
274 memcpy(radio_parms->tx_rate_limits_degraded, r->tx_rate_limits_degraded,
275 CONF_NUMBER_OF_RATE_GROUPS);
Luciano Coelhocf18be42009-12-11 15:40:43 +0200276 memcpy(radio_parms->tx_rate_limits_extreme, r->tx_rate_limits_extreme,
277 CONF_NUMBER_OF_RATE_GROUPS);
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200278
279 memcpy(radio_parms->tx_channel_limits_11b, r->tx_channel_limits_11b,
280 CONF_NUMBER_OF_CHANNELS_2_4);
281 memcpy(radio_parms->tx_channel_limits_ofdm, r->tx_channel_limits_ofdm,
282 CONF_NUMBER_OF_CHANNELS_2_4);
283 memcpy(radio_parms->tx_pdv_rate_offsets, r->tx_pdv_rate_offsets,
284 CONF_NUMBER_OF_RATE_GROUPS);
285 memcpy(radio_parms->tx_ibias, r->tx_ibias, CONF_NUMBER_OF_RATE_GROUPS);
286
287 radio_parms->rx_fem_insertion_loss = r->rx_fem_insertion_loss;
Luciano Coelhocf18be42009-12-11 15:40:43 +0200288 radio_parms->degraded_low_to_normal_threshold =
289 r->degraded_low_to_normal_threshold;
290 radio_parms->degraded_normal_to_high_threshold =
291 r->degraded_normal_to_high_threshold;
292
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200293
294 for (i = 0; i < CONF_NUMBER_OF_SUB_BANDS_5; i++)
295 radio_parms->tx_ref_pd_voltage_5[i] =
296 cpu_to_le16(r->tx_ref_pd_voltage_5[i]);
297 memcpy(radio_parms->tx_ref_power_5, r->tx_ref_power_5,
298 CONF_NUMBER_OF_SUB_BANDS_5);
299 memcpy(radio_parms->tx_offset_db_5, r->tx_offset_db_5,
300 CONF_NUMBER_OF_SUB_BANDS_5);
301 memcpy(radio_parms->tx_rate_limits_normal_5,
302 r->tx_rate_limits_normal_5, CONF_NUMBER_OF_RATE_GROUPS);
303 memcpy(radio_parms->tx_rate_limits_degraded_5,
304 r->tx_rate_limits_degraded_5, CONF_NUMBER_OF_RATE_GROUPS);
Luciano Coelhocf18be42009-12-11 15:40:43 +0200305 memcpy(radio_parms->tx_rate_limits_extreme_5,
306 r->tx_rate_limits_extreme_5, CONF_NUMBER_OF_RATE_GROUPS);
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200307 memcpy(radio_parms->tx_channel_limits_ofdm_5,
308 r->tx_channel_limits_ofdm_5, CONF_NUMBER_OF_CHANNELS_5);
309 memcpy(radio_parms->tx_pdv_rate_offsets_5, r->tx_pdv_rate_offsets_5,
310 CONF_NUMBER_OF_RATE_GROUPS);
311 memcpy(radio_parms->tx_ibias_5, r->tx_ibias_5,
312 CONF_NUMBER_OF_RATE_GROUPS);
313 memcpy(radio_parms->rx_fem_insertion_loss_5,
314 r->rx_fem_insertion_loss_5, CONF_NUMBER_OF_SUB_BANDS_5);
Luciano Coelhocf18be42009-12-11 15:40:43 +0200315 radio_parms->degraded_low_to_normal_threshold_5 =
316 r->degraded_low_to_normal_threshold_5;
317 radio_parms->degraded_normal_to_high_threshold_5 =
318 r->degraded_normal_to_high_threshold_5;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200319
320 wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ",
321 radio_parms, sizeof(*radio_parms));
322
323 ret = wl1271_cmd_test(wl, radio_parms, sizeof(*radio_parms), 0);
324 if (ret < 0)
325 wl1271_warning("CMD_INI_FILE_RADIO_PARAM failed");
326
327 kfree(radio_parms);
328 return ret;
329}
330
Juuso Oikarinend94cd292009-10-08 21:56:25 +0300331int wl1271_cmd_join(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300332{
333 static bool do_cal = true;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300334 struct wl1271_cmd_join *join;
335 int ret, i;
336 u8 *bssid;
337
338 /* FIXME: remove when we get calibration from the factory */
339 if (do_cal) {
340 ret = wl1271_cmd_cal(wl);
341 if (ret < 0)
342 wl1271_warning("couldn't calibrate");
343 else
344 do_cal = false;
345 }
346
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300347 join = kzalloc(sizeof(*join), GFP_KERNEL);
348 if (!join) {
349 ret = -ENOMEM;
350 goto out;
351 }
352
353 wl1271_debug(DEBUG_CMD, "cmd join");
354
355 /* Reverse order BSSID */
356 bssid = (u8 *) &join->bssid_lsb;
357 for (i = 0; i < ETH_ALEN; i++)
358 bssid[i] = wl->bssid[ETH_ALEN - i - 1];
359
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300360 join->rx_config_options = cpu_to_le32(wl->rx_config);
361 join->rx_filter_options = cpu_to_le32(wl->rx_filter);
Teemu Paasikivia4102642009-10-13 12:47:51 +0300362 join->bss_type = wl->bss_type;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300363
Luciano Coelho64a7f672009-10-08 21:56:28 +0300364 /*
365 * FIXME: disable temporarily all filters because after commit
366 * 9cef8737 "mac80211: fix managed mode BSSID handling" broke
367 * association. The filter logic needs to be implemented properly
368 * and once that is done, this hack can be removed.
369 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300370 join->rx_config_options = cpu_to_le32(0);
371 join->rx_filter_options = cpu_to_le32(WL1271_DEFAULT_RX_FILTER);
Luciano Coelho64a7f672009-10-08 21:56:28 +0300372
Teemu Paasikivia4102642009-10-13 12:47:51 +0300373 if (wl->band == IEEE80211_BAND_2GHZ)
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300374 join->basic_rate_set = cpu_to_le32(CONF_HW_BIT_RATE_1MBPS |
375 CONF_HW_BIT_RATE_2MBPS |
376 CONF_HW_BIT_RATE_5_5MBPS |
377 CONF_HW_BIT_RATE_11MBPS);
Teemu Paasikivia4102642009-10-13 12:47:51 +0300378 else {
379 join->bss_type |= WL1271_JOIN_CMD_BSS_TYPE_5GHZ;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300380 join->basic_rate_set = cpu_to_le32(CONF_HW_BIT_RATE_6MBPS |
381 CONF_HW_BIT_RATE_12MBPS |
382 CONF_HW_BIT_RATE_24MBPS);
Teemu Paasikivia4102642009-10-13 12:47:51 +0300383 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300384
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300385 join->beacon_interval = cpu_to_le16(WL1271_DEFAULT_BEACON_INT);
Luciano Coelhoae751ba2009-10-12 15:08:57 +0300386 join->dtim_interval = WL1271_DEFAULT_DTIM_PERIOD;
Teemu Paasikivia4102642009-10-13 12:47:51 +0300387
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300388 join->channel = wl->channel;
389 join->ssid_len = wl->ssid_len;
390 memcpy(join->ssid, wl->ssid, wl->ssid_len);
391 join->ctrl = WL1271_JOIN_CMD_CTRL_TX_FLUSH;
392
393 /* increment the session counter */
394 wl->session_counter++;
395 if (wl->session_counter >= SESSION_COUNTER_MAX)
396 wl->session_counter = 0;
397
398 join->ctrl |= wl->session_counter << WL1271_JOIN_CMD_TX_SESSION_OFFSET;
399
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300400 /* reset TX security counters */
401 wl->tx_security_last_seq = 0;
402 wl->tx_security_seq_16 = 0;
403 wl->tx_security_seq_32 = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300404
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200405 ret = wl1271_cmd_send(wl, CMD_START_JOIN, join, sizeof(*join), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300406 if (ret < 0) {
407 wl1271_error("failed to initiate cmd join");
408 goto out_free;
409 }
410
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300411 /*
412 * ugly hack: we should wait for JOIN_EVENT_COMPLETE_ID but to
413 * simplify locking we just sleep instead, for now
414 */
Juuso Oikarinend94cd292009-10-08 21:56:25 +0300415 msleep(10);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300416
417out_free:
418 kfree(join);
419
420out:
421 return ret;
422}
423
424/**
425 * send test command to firmware
426 *
427 * @wl: wl struct
428 * @buf: buffer containing the command, with all headers, must work with dma
429 * @len: length of the buffer
430 * @answer: is answer needed
431 */
432int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer)
433{
434 int ret;
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200435 size_t res_len = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300436
437 wl1271_debug(DEBUG_CMD, "cmd test");
438
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200439 if (answer)
440 res_len = buf_len;
441
442 ret = wl1271_cmd_send(wl, CMD_TEST, buf, buf_len, res_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300443
444 if (ret < 0) {
445 wl1271_warning("TEST command failed");
446 return ret;
447 }
448
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200449 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300450}
451
452/**
453 * read acx from firmware
454 *
455 * @wl: wl struct
456 * @id: acx id
457 * @buf: buffer for the response, including all headers, must work with dma
458 * @len: lenght of buf
459 */
460int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len)
461{
462 struct acx_header *acx = buf;
463 int ret;
464
465 wl1271_debug(DEBUG_CMD, "cmd interrogate");
466
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300467 acx->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300468
469 /* payload length, does not include any headers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300470 acx->len = cpu_to_le16(len - sizeof(*acx));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300471
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200472 ret = wl1271_cmd_send(wl, CMD_INTERROGATE, acx, sizeof(*acx), len);
473 if (ret < 0)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300474 wl1271_error("INTERROGATE command failed");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300475
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300476 return ret;
477}
478
479/**
480 * write acx value to firmware
481 *
482 * @wl: wl struct
483 * @id: acx id
484 * @buf: buffer containing acx, including all headers, must work with dma
485 * @len: length of buf
486 */
487int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len)
488{
489 struct acx_header *acx = buf;
490 int ret;
491
492 wl1271_debug(DEBUG_CMD, "cmd configure");
493
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300494 acx->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300495
496 /* payload length, does not include any headers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300497 acx->len = cpu_to_le16(len - sizeof(*acx));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300498
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200499 ret = wl1271_cmd_send(wl, CMD_CONFIGURE, acx, len, 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300500 if (ret < 0) {
501 wl1271_warning("CONFIGURE command NOK");
502 return ret;
503 }
504
505 return 0;
506}
507
508int wl1271_cmd_data_path(struct wl1271 *wl, u8 channel, bool enable)
509{
510 struct cmd_enabledisable_path *cmd;
511 int ret;
512 u16 cmd_rx, cmd_tx;
513
514 wl1271_debug(DEBUG_CMD, "cmd data path");
515
516 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
517 if (!cmd) {
518 ret = -ENOMEM;
519 goto out;
520 }
521
522 cmd->channel = channel;
523
524 if (enable) {
525 cmd_rx = CMD_ENABLE_RX;
526 cmd_tx = CMD_ENABLE_TX;
527 } else {
528 cmd_rx = CMD_DISABLE_RX;
529 cmd_tx = CMD_DISABLE_TX;
530 }
531
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200532 ret = wl1271_cmd_send(wl, cmd_rx, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300533 if (ret < 0) {
534 wl1271_error("rx %s cmd for channel %d failed",
535 enable ? "start" : "stop", channel);
536 goto out;
537 }
538
539 wl1271_debug(DEBUG_BOOT, "rx %s cmd channel %d",
540 enable ? "start" : "stop", channel);
541
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200542 ret = wl1271_cmd_send(wl, cmd_tx, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300543 if (ret < 0) {
544 wl1271_error("tx %s cmd for channel %d failed",
545 enable ? "start" : "stop", channel);
546 return ret;
547 }
548
549 wl1271_debug(DEBUG_BOOT, "tx %s cmd channel %d",
550 enable ? "start" : "stop", channel);
551
552out:
553 kfree(cmd);
554 return ret;
555}
556
557int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode)
558{
559 struct wl1271_cmd_ps_params *ps_params = NULL;
560 int ret = 0;
561
562 /* FIXME: this should be in ps.c */
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300563 ret = wl1271_acx_wake_up_conditions(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300564 if (ret < 0) {
565 wl1271_error("couldn't set wake up conditions");
566 goto out;
567 }
568
569 wl1271_debug(DEBUG_CMD, "cmd set ps mode");
570
571 ps_params = kzalloc(sizeof(*ps_params), GFP_KERNEL);
572 if (!ps_params) {
573 ret = -ENOMEM;
574 goto out;
575 }
576
577 ps_params->ps_mode = ps_mode;
578 ps_params->send_null_data = 1;
579 ps_params->retries = 5;
580 ps_params->hang_over_period = 128;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300581 ps_params->null_data_rate = cpu_to_le32(1); /* 1 Mbps */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300582
583 ret = wl1271_cmd_send(wl, CMD_SET_PS_MODE, ps_params,
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200584 sizeof(*ps_params), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300585 if (ret < 0) {
586 wl1271_error("cmd set_ps_mode failed");
587 goto out;
588 }
589
590out:
591 kfree(ps_params);
592 return ret;
593}
594
595int wl1271_cmd_read_memory(struct wl1271 *wl, u32 addr, void *answer,
596 size_t len)
597{
598 struct cmd_read_write_memory *cmd;
599 int ret = 0;
600
601 wl1271_debug(DEBUG_CMD, "cmd read memory");
602
603 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
604 if (!cmd) {
605 ret = -ENOMEM;
606 goto out;
607 }
608
609 WARN_ON(len > MAX_READ_SIZE);
610 len = min_t(size_t, len, MAX_READ_SIZE);
611
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300612 cmd->addr = cpu_to_le32(addr);
613 cmd->size = cpu_to_le32(len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300614
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200615 ret = wl1271_cmd_send(wl, CMD_READ_MEMORY, cmd, sizeof(*cmd),
616 sizeof(*cmd));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300617 if (ret < 0) {
618 wl1271_error("read memory command failed: %d", ret);
619 goto out;
620 }
621
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200622 /* the read command got in */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300623 memcpy(answer, cmd->value, len);
624
625out:
626 kfree(cmd);
627 return ret;
628}
629
630int wl1271_cmd_scan(struct wl1271 *wl, u8 *ssid, size_t len,
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300631 u8 active_scan, u8 high_prio, u8 band,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300632 u8 probe_requests)
633{
634
635 struct wl1271_cmd_trigger_scan_to *trigger = NULL;
636 struct wl1271_cmd_scan *params = NULL;
Teemu Paasikivi311494c2009-10-13 12:47:49 +0300637 struct ieee80211_channel *channels;
638 int i, j, n_ch, ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300639 u16 scan_options = 0;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300640 u8 ieee_band;
641
642 if (band == WL1271_SCAN_BAND_2_4_GHZ)
643 ieee_band = IEEE80211_BAND_2GHZ;
644 else if (band == WL1271_SCAN_BAND_DUAL && wl1271_11a_enabled())
645 ieee_band = IEEE80211_BAND_2GHZ;
646 else if (band == WL1271_SCAN_BAND_5_GHZ && wl1271_11a_enabled())
647 ieee_band = IEEE80211_BAND_5GHZ;
648 else
649 return -EINVAL;
650
651 if (wl->hw->wiphy->bands[ieee_band]->channels == NULL)
652 return -EINVAL;
653
654 channels = wl->hw->wiphy->bands[ieee_band]->channels;
655 n_ch = wl->hw->wiphy->bands[ieee_band]->n_channels;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300656
657 if (wl->scanning)
658 return -EINVAL;
659
660 params = kzalloc(sizeof(*params), GFP_KERNEL);
661 if (!params)
662 return -ENOMEM;
663
664 params->params.rx_config_options = cpu_to_le32(CFG_RX_ALL_GOOD);
665 params->params.rx_filter_options =
666 cpu_to_le32(CFG_RX_PRSP_EN | CFG_RX_MGMT_EN | CFG_RX_BCN_EN);
667
668 if (!active_scan)
669 scan_options |= WL1271_SCAN_OPT_PASSIVE;
670 if (high_prio)
671 scan_options |= WL1271_SCAN_OPT_PRIORITY_HIGH;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300672 params->params.scan_options = cpu_to_le16(scan_options);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300673
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300674 params->params.num_probe_requests = probe_requests;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300675 /* Let the fw autodetect suitable tx_rate for probes */
676 params->params.tx_rate = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300677 params->params.tid_trigger = 0;
678 params->params.scan_tag = WL1271_SCAN_DEFAULT_TAG;
679
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300680 if (band == WL1271_SCAN_BAND_DUAL)
681 params->params.band = WL1271_SCAN_BAND_2_4_GHZ;
682 else
683 params->params.band = band;
684
Teemu Paasikivi311494c2009-10-13 12:47:49 +0300685 for (i = 0, j = 0; i < n_ch && i < WL1271_SCAN_MAX_CHANNELS; i++) {
686 if (!(channels[i].flags & IEEE80211_CHAN_DISABLED)) {
687 params->channels[j].min_duration =
688 cpu_to_le32(WL1271_SCAN_CHAN_MIN_DURATION);
689 params->channels[j].max_duration =
690 cpu_to_le32(WL1271_SCAN_CHAN_MAX_DURATION);
691 memset(&params->channels[j].bssid_lsb, 0xff, 4);
692 memset(&params->channels[j].bssid_msb, 0xff, 2);
693 params->channels[j].early_termination = 0;
694 params->channels[j].tx_power_att =
695 WL1271_SCAN_CURRENT_TX_PWR;
696 params->channels[j].channel = channels[i].hw_value;
697 j++;
698 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300699 }
700
Teemu Paasikivi311494c2009-10-13 12:47:49 +0300701 params->params.num_channels = j;
702
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300703 if (len && ssid) {
704 params->params.ssid_len = len;
705 memcpy(params->params.ssid, ssid, len);
706 }
707
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300708 ret = wl1271_cmd_build_probe_req(wl, ssid, len, ieee_band);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300709 if (ret < 0) {
710 wl1271_error("PROBE request template failed");
711 goto out;
712 }
713
714 trigger = kzalloc(sizeof(*trigger), GFP_KERNEL);
715 if (!trigger) {
716 ret = -ENOMEM;
717 goto out;
718 }
719
720 /* disable the timeout */
721 trigger->timeout = 0;
722
723 ret = wl1271_cmd_send(wl, CMD_TRIGGER_SCAN_TO, trigger,
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200724 sizeof(*trigger), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300725 if (ret < 0) {
726 wl1271_error("trigger scan to failed for hw scan");
727 goto out;
728 }
729
730 wl1271_dump(DEBUG_SCAN, "SCAN: ", params, sizeof(*params));
731
732 wl->scanning = true;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300733 if (wl1271_11a_enabled()) {
734 wl->scan.state = band;
735 if (band == WL1271_SCAN_BAND_DUAL) {
736 wl->scan.active = active_scan;
737 wl->scan.high_prio = high_prio;
738 wl->scan.probe_requests = probe_requests;
739 if (len && ssid) {
740 wl->scan.ssid_len = len;
741 memcpy(wl->scan.ssid, ssid, len);
742 } else
743 wl->scan.ssid_len = 0;
744 }
745 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300746
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200747 ret = wl1271_cmd_send(wl, CMD_SCAN, params, sizeof(*params), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300748 if (ret < 0) {
749 wl1271_error("SCAN failed");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300750 wl->scanning = false;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300751 goto out;
752 }
753
754out:
755 kfree(params);
756 return ret;
757}
758
759int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id,
760 void *buf, size_t buf_len)
761{
762 struct wl1271_cmd_template_set *cmd;
763 int ret = 0;
764
765 wl1271_debug(DEBUG_CMD, "cmd template_set %d", template_id);
766
767 WARN_ON(buf_len > WL1271_CMD_TEMPL_MAX_SIZE);
768 buf_len = min_t(size_t, buf_len, WL1271_CMD_TEMPL_MAX_SIZE);
769
770 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
771 if (!cmd) {
772 ret = -ENOMEM;
773 goto out;
774 }
775
776 cmd->len = cpu_to_le16(buf_len);
777 cmd->template_type = template_id;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300778 cmd->enabled_rates = cpu_to_le32(wl->conf.tx.rc_conf.enabled_rates);
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300779 cmd->short_retry_limit = wl->conf.tx.rc_conf.short_retry_limit;
780 cmd->long_retry_limit = wl->conf.tx.rc_conf.long_retry_limit;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300781
782 if (buf)
783 memcpy(cmd->template_data, buf, buf_len);
784
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200785 ret = wl1271_cmd_send(wl, CMD_SET_TEMPLATE, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300786 if (ret < 0) {
787 wl1271_warning("cmd set_template failed: %d", ret);
788 goto out_free;
789 }
790
791out_free:
792 kfree(cmd);
793
794out:
795 return ret;
796}
797
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300798static int wl1271_build_basic_rates(char *rates, u8 band)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300799{
800 u8 index = 0;
801
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300802 if (band == IEEE80211_BAND_2GHZ) {
803 rates[index++] =
804 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_1MB;
805 rates[index++] =
806 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_2MB;
807 rates[index++] =
808 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_5MB;
809 rates[index++] =
810 IEEE80211_BASIC_RATE_MASK | IEEE80211_CCK_RATE_11MB;
811 } else if (band == IEEE80211_BAND_5GHZ) {
812 rates[index++] =
813 IEEE80211_BASIC_RATE_MASK | IEEE80211_OFDM_RATE_6MB;
814 rates[index++] =
815 IEEE80211_BASIC_RATE_MASK | IEEE80211_OFDM_RATE_12MB;
816 rates[index++] =
817 IEEE80211_BASIC_RATE_MASK | IEEE80211_OFDM_RATE_24MB;
818 } else {
819 wl1271_error("build_basic_rates invalid band: %d", band);
820 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300821
822 return index;
823}
824
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300825static int wl1271_build_extended_rates(char *rates, u8 band)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300826{
827 u8 index = 0;
828
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300829 if (band == IEEE80211_BAND_2GHZ) {
830 rates[index++] = IEEE80211_OFDM_RATE_6MB;
831 rates[index++] = IEEE80211_OFDM_RATE_9MB;
832 rates[index++] = IEEE80211_OFDM_RATE_12MB;
833 rates[index++] = IEEE80211_OFDM_RATE_18MB;
834 rates[index++] = IEEE80211_OFDM_RATE_24MB;
835 rates[index++] = IEEE80211_OFDM_RATE_36MB;
836 rates[index++] = IEEE80211_OFDM_RATE_48MB;
837 rates[index++] = IEEE80211_OFDM_RATE_54MB;
838 } else if (band == IEEE80211_BAND_5GHZ) {
839 rates[index++] =
840 IEEE80211_BASIC_RATE_MASK | IEEE80211_OFDM_RATE_9MB;
841 rates[index++] =
842 IEEE80211_BASIC_RATE_MASK | IEEE80211_OFDM_RATE_18MB;
843 rates[index++] =
844 IEEE80211_BASIC_RATE_MASK | IEEE80211_OFDM_RATE_24MB;
845 rates[index++] =
846 IEEE80211_BASIC_RATE_MASK | IEEE80211_OFDM_RATE_36MB;
847 rates[index++] =
848 IEEE80211_BASIC_RATE_MASK | IEEE80211_OFDM_RATE_48MB;
849 rates[index++] =
850 IEEE80211_BASIC_RATE_MASK | IEEE80211_OFDM_RATE_54MB;
851 } else {
852 wl1271_error("build_basic_rates invalid band: %d", band);
853 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300854
855 return index;
856}
857
858int wl1271_cmd_build_null_data(struct wl1271 *wl)
859{
860 struct wl12xx_null_data_template template;
861
862 if (!is_zero_ether_addr(wl->bssid)) {
863 memcpy(template.header.da, wl->bssid, ETH_ALEN);
864 memcpy(template.header.bssid, wl->bssid, ETH_ALEN);
865 } else {
866 memset(template.header.da, 0xff, ETH_ALEN);
867 memset(template.header.bssid, 0xff, ETH_ALEN);
868 }
869
870 memcpy(template.header.sa, wl->mac_addr, ETH_ALEN);
871 template.header.frame_ctl = cpu_to_le16(IEEE80211_FTYPE_DATA |
Juuso Oikarinen7a380792009-10-15 10:33:26 +0300872 IEEE80211_STYPE_NULLFUNC |
873 IEEE80211_FCTL_TODS);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300874
875 return wl1271_cmd_template_set(wl, CMD_TEMPL_NULL_DATA, &template,
876 sizeof(template));
877
878}
879
880int wl1271_cmd_build_ps_poll(struct wl1271 *wl, u16 aid)
881{
882 struct wl12xx_ps_poll_template template;
883
884 memcpy(template.bssid, wl->bssid, ETH_ALEN);
885 memcpy(template.ta, wl->mac_addr, ETH_ALEN);
Juuso Oikarinenc3fea192009-10-08 21:56:22 +0300886
887 /* aid in PS-Poll has its two MSBs each set to 1 */
888 template.aid = cpu_to_le16(1 << 15 | 1 << 14 | aid);
889
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300890 template.fc = cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL);
891
892 return wl1271_cmd_template_set(wl, CMD_TEMPL_PS_POLL, &template,
893 sizeof(template));
894
895}
896
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300897int wl1271_cmd_build_probe_req(struct wl1271 *wl, u8 *ssid, size_t ssid_len,
898 u8 band)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300899{
900 struct wl12xx_probe_req_template template;
901 struct wl12xx_ie_rates *rates;
902 char *ptr;
903 u16 size;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300904 int ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300905
906 ptr = (char *)&template;
907 size = sizeof(struct ieee80211_header);
908
909 memset(template.header.da, 0xff, ETH_ALEN);
910 memset(template.header.bssid, 0xff, ETH_ALEN);
911 memcpy(template.header.sa, wl->mac_addr, ETH_ALEN);
912 template.header.frame_ctl = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
913
914 /* IEs */
915 /* SSID */
916 template.ssid.header.id = WLAN_EID_SSID;
917 template.ssid.header.len = ssid_len;
918 if (ssid_len && ssid)
919 memcpy(template.ssid.ssid, ssid, ssid_len);
920 size += sizeof(struct wl12xx_ie_header) + ssid_len;
921 ptr += size;
922
923 /* Basic Rates */
924 rates = (struct wl12xx_ie_rates *)ptr;
925 rates->header.id = WLAN_EID_SUPP_RATES;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300926 rates->header.len = wl1271_build_basic_rates(rates->rates, band);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300927 size += sizeof(struct wl12xx_ie_header) + rates->header.len;
928 ptr += sizeof(struct wl12xx_ie_header) + rates->header.len;
929
930 /* Extended rates */
931 rates = (struct wl12xx_ie_rates *)ptr;
932 rates->header.id = WLAN_EID_EXT_SUPP_RATES;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300933 rates->header.len = wl1271_build_extended_rates(rates->rates, band);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300934 size += sizeof(struct wl12xx_ie_header) + rates->header.len;
935
936 wl1271_dump(DEBUG_SCAN, "PROBE REQ: ", &template, size);
937
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300938 if (band == IEEE80211_BAND_2GHZ)
939 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4,
940 &template, size);
941 else
942 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5,
943 &template, size);
944 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300945}
946
947int wl1271_cmd_set_default_wep_key(struct wl1271 *wl, u8 id)
948{
949 struct wl1271_cmd_set_keys *cmd;
950 int ret = 0;
951
952 wl1271_debug(DEBUG_CMD, "cmd set_default_wep_key %d", id);
953
954 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
955 if (!cmd) {
956 ret = -ENOMEM;
957 goto out;
958 }
959
960 cmd->id = id;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300961 cmd->key_action = cpu_to_le16(KEY_SET_ID);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300962 cmd->key_type = KEY_WEP;
963
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200964 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300965 if (ret < 0) {
966 wl1271_warning("cmd set_default_wep_key failed: %d", ret);
967 goto out;
968 }
969
970out:
971 kfree(cmd);
972
973 return ret;
974}
975
976int wl1271_cmd_set_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300977 u8 key_size, const u8 *key, const u8 *addr,
978 u32 tx_seq_32, u16 tx_seq_16)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300979{
980 struct wl1271_cmd_set_keys *cmd;
981 int ret = 0;
982
983 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
984 if (!cmd) {
985 ret = -ENOMEM;
986 goto out;
987 }
988
989 if (key_type != KEY_WEP)
990 memcpy(cmd->addr, addr, ETH_ALEN);
991
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300992 cmd->key_action = cpu_to_le16(action);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300993 cmd->key_size = key_size;
994 cmd->key_type = key_type;
995
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300996 cmd->ac_seq_num16[0] = cpu_to_le16(tx_seq_16);
997 cmd->ac_seq_num32[0] = cpu_to_le32(tx_seq_32);
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300998
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300999 /* we have only one SSID profile */
1000 cmd->ssid_profile = 0;
1001
1002 cmd->id = id;
1003
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001004 if (key_type == KEY_TKIP) {
1005 /*
1006 * We get the key in the following form:
1007 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
1008 * but the target is expecting:
1009 * TKIP - RX MIC - TX MIC
1010 */
1011 memcpy(cmd->key, key, 16);
1012 memcpy(cmd->key + 16, key + 24, 8);
1013 memcpy(cmd->key + 24, key + 16, 8);
1014
1015 } else {
1016 memcpy(cmd->key, key, key_size);
1017 }
1018
1019 wl1271_dump(DEBUG_CRYPT, "TARGET KEY: ", cmd, sizeof(*cmd));
1020
Juuso Oikarinenfa867e72009-11-02 20:22:13 +02001021 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001022 if (ret < 0) {
1023 wl1271_warning("could not set keys");
1024 goto out;
1025 }
1026
1027out:
1028 kfree(cmd);
1029
1030 return ret;
1031}
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001032
1033int wl1271_cmd_disconnect(struct wl1271 *wl)
1034{
1035 struct wl1271_cmd_disconnect *cmd;
1036 int ret = 0;
1037
1038 wl1271_debug(DEBUG_CMD, "cmd disconnect");
1039
1040 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1041 if (!cmd) {
1042 ret = -ENOMEM;
1043 goto out;
1044 }
1045
Luciano Coelhod0f63b22009-10-15 10:33:29 +03001046 cmd->rx_config_options = cpu_to_le32(wl->rx_config);
1047 cmd->rx_filter_options = cpu_to_le32(wl->rx_filter);
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001048 /* disconnect reason is not used in immediate disconnections */
1049 cmd->type = DISCONNECT_IMMEDIATE;
1050
Juuso Oikarinenfa867e72009-11-02 20:22:13 +02001051 ret = wl1271_cmd_send(wl, CMD_DISCONNECT, cmd, sizeof(*cmd), 0);
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001052 if (ret < 0) {
1053 wl1271_error("failed to send disconnect command");
1054 goto out_free;
1055 }
1056
1057out_free:
1058 kfree(cmd);
1059
1060out:
1061 return ret;
1062}