blob: a9ffdd86f9b8a6d02c56667d1b2006f47e6f2402 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
Luciano Coelho2f826f52010-03-26 12:53:21 +02004 * Copyright (C) 2009-2010 Nokia Corporation
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03005 *
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>
Kalle Valo023e0822010-03-18 12:26:36 +020029#include <linux/ieee80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030031
Shahar Levi00d20102010-11-08 11:20:10 +000032#include "wl12xx.h"
33#include "reg.h"
34#include "io.h"
35#include "acx.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030036#include "wl12xx_80211.h"
Shahar Levi00d20102010-11-08 11:20:10 +000037#include "cmd.h"
38#include "event.h"
Arik Nemtsov98bdaab2010-10-16 18:08:58 +020039#include "tx.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030040
Juuso Oikarinen16092b52010-04-28 09:49:59 +030041#define WL1271_CMD_FAST_POLL_COUNT 50
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030042
43/*
44 * send command to firmware
45 *
46 * @wl: wl struct
47 * @id: command id
48 * @buf: buffer containing the command, must work with dma
49 * @len: length of the buffer
50 */
Juuso Oikarinenfa867e72009-11-02 20:22:13 +020051int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len,
52 size_t res_len)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030053{
54 struct wl1271_cmd_header *cmd;
55 unsigned long timeout;
56 u32 intr;
57 int ret = 0;
Juuso Oikarinenad150e92009-11-02 20:22:12 +020058 u16 status;
Saravanan Dhanabalbc0f03e2010-03-26 12:53:33 +020059 u16 poll_count = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030060
61 cmd = buf;
Luciano Coelhod0f63b22009-10-15 10:33:29 +030062 cmd->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030063 cmd->status = 0;
64
65 WARN_ON(len % 4 != 0);
Arik Nemtsov24225b32011-03-01 12:27:26 +020066 WARN_ON(test_bit(WL1271_FLAG_IN_ELP, &wl->flags));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030067
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020068 wl1271_write(wl, wl->cmd_box_addr, buf, len, false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030069
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020070 wl1271_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_CMD);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030071
72 timeout = jiffies + msecs_to_jiffies(WL1271_COMMAND_TIMEOUT);
73
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020074 intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030075 while (!(intr & WL1271_ACX_INTR_CMD_COMPLETE)) {
76 if (time_after(jiffies, timeout)) {
77 wl1271_error("command complete timeout");
78 ret = -ETIMEDOUT;
79 goto out;
80 }
81
Saravanan Dhanabalbc0f03e2010-03-26 12:53:33 +020082 poll_count++;
Juuso Oikarinen16092b52010-04-28 09:49:59 +030083 if (poll_count < WL1271_CMD_FAST_POLL_COUNT)
84 udelay(10);
85 else
86 msleep(1);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030087
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020088 intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030089 }
90
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020091 /* read back the status code of the command */
Juuso Oikarinenfa867e72009-11-02 20:22:13 +020092 if (res_len == 0)
93 res_len = sizeof(struct wl1271_cmd_header);
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020094 wl1271_read(wl, wl->cmd_box_addr, cmd, res_len, false);
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020095
Juuso Oikarinenad150e92009-11-02 20:22:12 +020096 status = le16_to_cpu(cmd->status);
97 if (status != CMD_STATUS_SUCCESS) {
98 wl1271_error("command execute failure %d", status);
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +020099 ieee80211_queue_work(wl->hw, &wl->recovery_work);
Juuso Oikarinen3b775b42009-11-02 20:22:10 +0200100 ret = -EIO;
101 }
102
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200103 wl1271_write32(wl, ACX_REG_INTERRUPT_ACK,
104 WL1271_ACX_INTR_CMD_COMPLETE);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300105
106out:
107 return ret;
108}
109
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200110int wl1271_cmd_general_parms(struct wl1271 *wl)
111{
112 struct wl1271_general_parms_cmd *gen_parms;
Shahar Levi49d750ca2011-03-06 16:32:09 +0200113 struct wl1271_ini_general_params *gp =
114 &((struct wl1271_nvs_file *)wl->nvs)->general_params;
115 bool answer = false;
116 int ret;
117
118 if (!wl->nvs)
119 return -ENODEV;
120
121 gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL);
122 if (!gen_parms)
123 return -ENOMEM;
124
125 gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM;
126
127 memcpy(&gen_parms->general_params, gp, sizeof(*gp));
128
129 if (gp->tx_bip_fem_auto_detect)
130 answer = true;
131
Shahar Levib03acad2011-04-03 13:54:54 +0300132 /* Override the REF CLK from the NVS with the one from platform data */
133 gen_parms->general_params.ref_clock = wl->ref_clock;
134
Shahar Levi49d750ca2011-03-06 16:32:09 +0200135 ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), answer);
136 if (ret < 0) {
137 wl1271_warning("CMD_INI_FILE_GENERAL_PARAM failed");
138 goto out;
139 }
140
141 gp->tx_bip_fem_manufacturer =
142 gen_parms->general_params.tx_bip_fem_manufacturer;
143
144 wl1271_debug(DEBUG_CMD, "FEM autodetect: %s, manufacturer: %d\n",
145 answer ? "auto" : "manual", gp->tx_bip_fem_manufacturer);
146
147out:
148 kfree(gen_parms);
149 return ret;
150}
151
152int wl128x_cmd_general_parms(struct wl1271 *wl)
153{
154 struct wl128x_general_parms_cmd *gen_parms;
155 struct wl128x_ini_general_params *gp =
156 &((struct wl128x_nvs_file *)wl->nvs)->general_params;
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300157 bool answer = false;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200158 int ret;
159
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200160 if (!wl->nvs)
161 return -ENODEV;
162
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200163 gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL);
164 if (!gen_parms)
165 return -ENOMEM;
166
167 gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM;
168
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300169 memcpy(&gen_parms->general_params, gp, sizeof(*gp));
Luciano Coelho76c0f8d2009-12-11 15:40:41 +0200170
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300171 if (gp->tx_bip_fem_auto_detect)
172 answer = true;
173
Shahar Levib03acad2011-04-03 13:54:54 +0300174 /* Replace REF and TCXO CLKs with the ones from platform data */
175 gen_parms->general_params.ref_clock = wl->ref_clock;
176 gen_parms->general_params.tcxo_ref_clock = wl->tcxo_clock;
177
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300178 ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), answer);
179 if (ret < 0) {
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200180 wl1271_warning("CMD_INI_FILE_GENERAL_PARAM failed");
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300181 goto out;
182 }
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200183
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300184 gp->tx_bip_fem_manufacturer =
185 gen_parms->general_params.tx_bip_fem_manufacturer;
186
187 wl1271_debug(DEBUG_CMD, "FEM autodetect: %s, manufacturer: %d\n",
188 answer ? "auto" : "manual", gp->tx_bip_fem_manufacturer);
189
190out:
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200191 kfree(gen_parms);
192 return ret;
193}
194
195int wl1271_cmd_radio_parms(struct wl1271 *wl)
196{
Shahar Levibc765bf2011-03-06 16:32:10 +0200197 struct wl1271_nvs_file *nvs = (struct wl1271_nvs_file *)wl->nvs;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200198 struct wl1271_radio_parms_cmd *radio_parms;
Shahar Levibc765bf2011-03-06 16:32:10 +0200199 struct wl1271_ini_general_params *gp = &nvs->general_params;
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200200 int ret;
201
202 if (!wl->nvs)
203 return -ENODEV;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200204
205 radio_parms = kzalloc(sizeof(*radio_parms), GFP_KERNEL);
206 if (!radio_parms)
207 return -ENOMEM;
208
209 radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM;
210
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300211 /* 2.4GHz parameters */
Shahar Levibc765bf2011-03-06 16:32:10 +0200212 memcpy(&radio_parms->static_params_2, &nvs->stat_radio_params_2,
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300213 sizeof(struct wl1271_ini_band_params_2));
214 memcpy(&radio_parms->dyn_params_2,
Shahar Levibc765bf2011-03-06 16:32:10 +0200215 &nvs->dyn_radio_params_2[gp->tx_bip_fem_manufacturer].params,
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300216 sizeof(struct wl1271_ini_fem_params_2));
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200217
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300218 /* 5GHz parameters */
219 memcpy(&radio_parms->static_params_5,
Shahar Levibc765bf2011-03-06 16:32:10 +0200220 &nvs->stat_radio_params_5,
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300221 sizeof(struct wl1271_ini_band_params_5));
222 memcpy(&radio_parms->dyn_params_5,
Shahar Levibc765bf2011-03-06 16:32:10 +0200223 &nvs->dyn_radio_params_5[gp->tx_bip_fem_manufacturer].params,
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300224 sizeof(struct wl1271_ini_fem_params_5));
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200225
226 wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ",
227 radio_parms, sizeof(*radio_parms));
228
229 ret = wl1271_cmd_test(wl, radio_parms, sizeof(*radio_parms), 0);
230 if (ret < 0)
231 wl1271_warning("CMD_INI_FILE_RADIO_PARAM failed");
232
233 kfree(radio_parms);
234 return ret;
235}
236
Shahar Levi49d750ca2011-03-06 16:32:09 +0200237int wl128x_cmd_radio_parms(struct wl1271 *wl)
238{
239 struct wl128x_nvs_file *nvs = (struct wl128x_nvs_file *)wl->nvs;
240 struct wl128x_radio_parms_cmd *radio_parms;
241 struct wl128x_ini_general_params *gp = &nvs->general_params;
242 int ret;
243
244 if (!wl->nvs)
245 return -ENODEV;
246
247 radio_parms = kzalloc(sizeof(*radio_parms), GFP_KERNEL);
248 if (!radio_parms)
249 return -ENOMEM;
250
251 radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM;
252
253 /* 2.4GHz parameters */
254 memcpy(&radio_parms->static_params_2, &nvs->stat_radio_params_2,
255 sizeof(struct wl128x_ini_band_params_2));
256 memcpy(&radio_parms->dyn_params_2,
257 &nvs->dyn_radio_params_2[gp->tx_bip_fem_manufacturer].params,
258 sizeof(struct wl128x_ini_fem_params_2));
259
260 /* 5GHz parameters */
261 memcpy(&radio_parms->static_params_5,
262 &nvs->stat_radio_params_5,
263 sizeof(struct wl128x_ini_band_params_5));
264 memcpy(&radio_parms->dyn_params_5,
265 &nvs->dyn_radio_params_5[gp->tx_bip_fem_manufacturer].params,
266 sizeof(struct wl128x_ini_fem_params_5));
267
268 radio_parms->fem_vendor_and_options = nvs->fem_vendor_and_options;
269
270 wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ",
271 radio_parms, sizeof(*radio_parms));
272
273 ret = wl1271_cmd_test(wl, radio_parms, sizeof(*radio_parms), 0);
274 if (ret < 0)
275 wl1271_warning("CMD_INI_FILE_RADIO_PARAM failed");
276
277 kfree(radio_parms);
278 return ret;
279}
280
Juuso Oikarinen644a4862010-10-05 13:11:56 +0200281int wl1271_cmd_ext_radio_parms(struct wl1271 *wl)
282{
283 struct wl1271_ext_radio_parms_cmd *ext_radio_parms;
284 struct conf_rf_settings *rf = &wl->conf.rf;
285 int ret;
286
287 if (!wl->nvs)
288 return -ENODEV;
289
290 ext_radio_parms = kzalloc(sizeof(*ext_radio_parms), GFP_KERNEL);
291 if (!ext_radio_parms)
292 return -ENOMEM;
293
294 ext_radio_parms->test.id = TEST_CMD_INI_FILE_RF_EXTENDED_PARAM;
295
296 memcpy(ext_radio_parms->tx_per_channel_power_compensation_2,
297 rf->tx_per_channel_power_compensation_2,
298 CONF_TX_PWR_COMPENSATION_LEN_2);
299 memcpy(ext_radio_parms->tx_per_channel_power_compensation_5,
300 rf->tx_per_channel_power_compensation_5,
301 CONF_TX_PWR_COMPENSATION_LEN_5);
302
303 wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_EXT_RADIO_PARAM: ",
304 ext_radio_parms, sizeof(*ext_radio_parms));
305
306 ret = wl1271_cmd_test(wl, ext_radio_parms, sizeof(*ext_radio_parms), 0);
307 if (ret < 0)
308 wl1271_warning("TEST_CMD_INI_FILE_RF_EXTENDED_PARAM failed");
309
310 kfree(ext_radio_parms);
311 return ret;
312}
313
Luciano Coelho99d84c12010-03-26 12:53:20 +0200314/*
315 * Poll the mailbox event field until any of the bits in the mask is set or a
316 * timeout occurs (WL1271_EVENT_TIMEOUT in msecs)
317 */
Arik Nemtsov05285cf2010-11-12 17:15:03 +0200318static int wl1271_cmd_wait_for_event_or_timeout(struct wl1271 *wl, u32 mask)
Luciano Coelho99d84c12010-03-26 12:53:20 +0200319{
320 u32 events_vector, event;
321 unsigned long timeout;
322
323 timeout = jiffies + msecs_to_jiffies(WL1271_EVENT_TIMEOUT);
324
325 do {
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +0200326 if (time_after(jiffies, timeout)) {
Arik Nemtsov05285cf2010-11-12 17:15:03 +0200327 wl1271_debug(DEBUG_CMD, "timeout waiting for event %d",
328 (int)mask);
Luciano Coelho99d84c12010-03-26 12:53:20 +0200329 return -ETIMEDOUT;
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +0200330 }
Luciano Coelho99d84c12010-03-26 12:53:20 +0200331
332 msleep(1);
333
334 /* read from both event fields */
335 wl1271_read(wl, wl->mbox_ptr[0], &events_vector,
336 sizeof(events_vector), false);
337 event = events_vector & mask;
338 wl1271_read(wl, wl->mbox_ptr[1], &events_vector,
339 sizeof(events_vector), false);
340 event |= events_vector & mask;
341 } while (!event);
342
343 return 0;
344}
345
Arik Nemtsov05285cf2010-11-12 17:15:03 +0200346static int wl1271_cmd_wait_for_event(struct wl1271 *wl, u32 mask)
347{
348 int ret;
349
350 ret = wl1271_cmd_wait_for_event_or_timeout(wl, mask);
351 if (ret != 0) {
352 ieee80211_queue_work(wl->hw, &wl->recovery_work);
353 return ret;
354 }
355
356 return 0;
357}
358
Juuso Oikarinen15305492010-02-22 08:38:32 +0200359int wl1271_cmd_join(struct wl1271 *wl, u8 bss_type)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300360{
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300361 struct wl1271_cmd_join *join;
362 int ret, i;
363 u8 *bssid;
364
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300365 join = kzalloc(sizeof(*join), GFP_KERNEL);
366 if (!join) {
367 ret = -ENOMEM;
368 goto out;
369 }
370
371 wl1271_debug(DEBUG_CMD, "cmd join");
372
373 /* Reverse order BSSID */
374 bssid = (u8 *) &join->bssid_lsb;
375 for (i = 0; i < ETH_ALEN; i++)
376 bssid[i] = wl->bssid[ETH_ALEN - i - 1];
377
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300378 join->rx_config_options = cpu_to_le32(wl->rx_config);
379 join->rx_filter_options = cpu_to_le32(wl->rx_filter);
Juuso Oikarinen15305492010-02-22 08:38:32 +0200380 join->bss_type = bss_type;
Luciano Coelho23a7a512010-04-28 09:50:02 +0300381 join->basic_rate_set = cpu_to_le32(wl->basic_rate_set);
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200382 join->supported_rate_set = cpu_to_le32(wl->rate_set);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300383
Juuso Oikarinenebba60c2010-04-01 11:38:20 +0300384 if (wl->band == IEEE80211_BAND_5GHZ)
Teemu Paasikivia4102642009-10-13 12:47:51 +0300385 join->bss_type |= WL1271_JOIN_CMD_BSS_TYPE_5GHZ;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300386
Juuso Oikarinen60e84c22010-03-26 12:53:25 +0200387 join->beacon_interval = cpu_to_le16(wl->beacon_int);
Luciano Coelhoae751ba2009-10-12 15:08:57 +0300388 join->dtim_interval = WL1271_DEFAULT_DTIM_PERIOD;
Teemu Paasikivia4102642009-10-13 12:47:51 +0300389
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300390 join->channel = wl->channel;
391 join->ssid_len = wl->ssid_len;
392 memcpy(join->ssid, wl->ssid, wl->ssid_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300393
394 join->ctrl |= wl->session_counter << WL1271_JOIN_CMD_TX_SESSION_OFFSET;
395
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300396 /* reset TX security counters */
397 wl->tx_security_last_seq = 0;
Juuso Oikarinen04e36fc2010-02-22 08:38:40 +0200398 wl->tx_security_seq = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300399
Eliad Peller72c2d9e2011-02-02 09:59:37 +0200400 wl1271_debug(DEBUG_CMD, "cmd join: basic_rate_set=0x%x, rate_set=0x%x",
401 join->basic_rate_set, join->supported_rate_set);
402
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200403 ret = wl1271_cmd_send(wl, CMD_START_JOIN, join, sizeof(*join), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300404 if (ret < 0) {
405 wl1271_error("failed to initiate cmd join");
406 goto out_free;
407 }
408
Luciano Coelho99d84c12010-03-26 12:53:20 +0200409 ret = wl1271_cmd_wait_for_event(wl, JOIN_EVENT_COMPLETE_ID);
410 if (ret < 0)
411 wl1271_error("cmd join event completion error");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300412
413out_free:
414 kfree(join);
415
416out:
417 return ret;
418}
419
420/**
421 * send test command to firmware
422 *
423 * @wl: wl struct
424 * @buf: buffer containing the command, with all headers, must work with dma
425 * @len: length of the buffer
426 * @answer: is answer needed
427 */
428int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer)
429{
430 int ret;
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200431 size_t res_len = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300432
433 wl1271_debug(DEBUG_CMD, "cmd test");
434
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200435 if (answer)
436 res_len = buf_len;
437
438 ret = wl1271_cmd_send(wl, CMD_TEST, buf, buf_len, res_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300439
440 if (ret < 0) {
441 wl1271_warning("TEST command failed");
442 return ret;
443 }
444
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200445 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300446}
447
448/**
449 * read acx from firmware
450 *
451 * @wl: wl struct
452 * @id: acx id
453 * @buf: buffer for the response, including all headers, must work with dma
454 * @len: lenght of buf
455 */
456int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len)
457{
458 struct acx_header *acx = buf;
459 int ret;
460
461 wl1271_debug(DEBUG_CMD, "cmd interrogate");
462
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300463 acx->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300464
465 /* payload length, does not include any headers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300466 acx->len = cpu_to_le16(len - sizeof(*acx));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300467
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200468 ret = wl1271_cmd_send(wl, CMD_INTERROGATE, acx, sizeof(*acx), len);
469 if (ret < 0)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300470 wl1271_error("INTERROGATE command failed");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300471
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300472 return ret;
473}
474
475/**
476 * write acx value to firmware
477 *
478 * @wl: wl struct
479 * @id: acx id
480 * @buf: buffer containing acx, including all headers, must work with dma
481 * @len: length of buf
482 */
483int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len)
484{
485 struct acx_header *acx = buf;
486 int ret;
487
488 wl1271_debug(DEBUG_CMD, "cmd configure");
489
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300490 acx->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300491
492 /* payload length, does not include any headers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300493 acx->len = cpu_to_le16(len - sizeof(*acx));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300494
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200495 ret = wl1271_cmd_send(wl, CMD_CONFIGURE, acx, len, 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300496 if (ret < 0) {
497 wl1271_warning("CONFIGURE command NOK");
498 return ret;
499 }
500
501 return 0;
502}
503
Luciano Coelho94210892009-12-11 15:40:55 +0200504int wl1271_cmd_data_path(struct wl1271 *wl, bool enable)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300505{
506 struct cmd_enabledisable_path *cmd;
507 int ret;
508 u16 cmd_rx, cmd_tx;
509
510 wl1271_debug(DEBUG_CMD, "cmd data path");
511
512 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
513 if (!cmd) {
514 ret = -ENOMEM;
515 goto out;
516 }
517
Luciano Coelho94210892009-12-11 15:40:55 +0200518 /* the channel here is only used for calibration, so hardcoded to 1 */
519 cmd->channel = 1;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300520
521 if (enable) {
522 cmd_rx = CMD_ENABLE_RX;
523 cmd_tx = CMD_ENABLE_TX;
524 } else {
525 cmd_rx = CMD_DISABLE_RX;
526 cmd_tx = CMD_DISABLE_TX;
527 }
528
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200529 ret = wl1271_cmd_send(wl, cmd_rx, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300530 if (ret < 0) {
531 wl1271_error("rx %s cmd for channel %d failed",
Luciano Coelho94210892009-12-11 15:40:55 +0200532 enable ? "start" : "stop", cmd->channel);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300533 goto out;
534 }
535
536 wl1271_debug(DEBUG_BOOT, "rx %s cmd channel %d",
Luciano Coelho94210892009-12-11 15:40:55 +0200537 enable ? "start" : "stop", cmd->channel);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300538
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200539 ret = wl1271_cmd_send(wl, cmd_tx, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300540 if (ret < 0) {
541 wl1271_error("tx %s cmd for channel %d failed",
Luciano Coelho94210892009-12-11 15:40:55 +0200542 enable ? "start" : "stop", cmd->channel);
Juuso Oikarinen1b00f2b2010-03-26 12:53:17 +0200543 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300544 }
545
546 wl1271_debug(DEBUG_BOOT, "tx %s cmd channel %d",
Luciano Coelho94210892009-12-11 15:40:55 +0200547 enable ? "start" : "stop", cmd->channel);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300548
549out:
550 kfree(cmd);
551 return ret;
552}
553
Eliad Pellerc8bde242011-02-02 09:59:35 +0200554int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300555{
556 struct wl1271_cmd_ps_params *ps_params = NULL;
557 int ret = 0;
558
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300559 wl1271_debug(DEBUG_CMD, "cmd set ps mode");
560
561 ps_params = kzalloc(sizeof(*ps_params), GFP_KERNEL);
562 if (!ps_params) {
563 ret = -ENOMEM;
564 goto out;
565 }
566
567 ps_params->ps_mode = ps_mode;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300568
569 ret = wl1271_cmd_send(wl, CMD_SET_PS_MODE, ps_params,
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200570 sizeof(*ps_params), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300571 if (ret < 0) {
572 wl1271_error("cmd set_ps_mode failed");
573 goto out;
574 }
575
576out:
577 kfree(ps_params);
578 return ret;
579}
580
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300581int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300582 void *buf, size_t buf_len, int index, u32 rates)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300583{
584 struct wl1271_cmd_template_set *cmd;
585 int ret = 0;
586
587 wl1271_debug(DEBUG_CMD, "cmd template_set %d", template_id);
588
589 WARN_ON(buf_len > WL1271_CMD_TEMPL_MAX_SIZE);
590 buf_len = min_t(size_t, buf_len, WL1271_CMD_TEMPL_MAX_SIZE);
591
592 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
593 if (!cmd) {
594 ret = -ENOMEM;
595 goto out;
596 }
597
598 cmd->len = cpu_to_le16(buf_len);
599 cmd->template_type = template_id;
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300600 cmd->enabled_rates = cpu_to_le32(rates);
Arik Nemtsov1e05a812010-10-16 17:44:51 +0200601 cmd->short_retry_limit = wl->conf.tx.tmpl_short_retry_limit;
602 cmd->long_retry_limit = wl->conf.tx.tmpl_long_retry_limit;
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +0200603 cmd->index = index;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300604
605 if (buf)
606 memcpy(cmd->template_data, buf, buf_len);
607
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200608 ret = wl1271_cmd_send(wl, CMD_SET_TEMPLATE, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300609 if (ret < 0) {
610 wl1271_warning("cmd set_template failed: %d", ret);
611 goto out_free;
612 }
613
614out_free:
615 kfree(cmd);
616
617out:
618 return ret;
619}
620
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300621int wl1271_cmd_build_null_data(struct wl1271 *wl)
622{
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +0200623 struct sk_buff *skb = NULL;
624 int size;
625 void *ptr;
626 int ret = -ENOMEM;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300627
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300628
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +0200629 if (wl->bss_type == BSS_TYPE_IBSS) {
630 size = sizeof(struct wl12xx_null_data_template);
631 ptr = NULL;
632 } else {
633 skb = ieee80211_nullfunc_get(wl->hw, wl->vif);
634 if (!skb)
635 goto out;
636 size = skb->len;
637 ptr = skb->data;
638 }
639
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300640 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_NULL_DATA, ptr, size, 0,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +0200641 wl->basic_rate);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300642
Kalle Valo899e6e62010-03-18 12:26:34 +0200643out:
644 dev_kfree_skb(skb);
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +0200645 if (ret)
646 wl1271_warning("cmd buld null data failed %d", ret);
647
Kalle Valo899e6e62010-03-18 12:26:34 +0200648 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300649
650}
651
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +0200652int wl1271_cmd_build_klv_null_data(struct wl1271 *wl)
653{
654 struct sk_buff *skb = NULL;
655 int ret = -ENOMEM;
656
657 skb = ieee80211_nullfunc_get(wl->hw, wl->vif);
658 if (!skb)
659 goto out;
660
661 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_KLV,
662 skb->data, skb->len,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300663 CMD_TEMPL_KLV_IDX_NULL_DATA,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +0200664 wl->basic_rate);
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +0200665
666out:
667 dev_kfree_skb(skb);
668 if (ret)
669 wl1271_warning("cmd build klv null data failed %d", ret);
670
671 return ret;
672
673}
674
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300675int wl1271_cmd_build_ps_poll(struct wl1271 *wl, u16 aid)
676{
Kalle Valo899e6e62010-03-18 12:26:34 +0200677 struct sk_buff *skb;
678 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300679
Kalle Valo899e6e62010-03-18 12:26:34 +0200680 skb = ieee80211_pspoll_get(wl->hw, wl->vif);
681 if (!skb)
682 goto out;
Juuso Oikarinenc3fea192009-10-08 21:56:22 +0300683
Kalle Valo899e6e62010-03-18 12:26:34 +0200684 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_PS_POLL, skb->data,
Juuso Oikarinen849923f2010-07-08 17:49:59 +0300685 skb->len, 0, wl->basic_rate_set);
Juuso Oikarinenc3fea192009-10-08 21:56:22 +0300686
Kalle Valo899e6e62010-03-18 12:26:34 +0200687out:
688 dev_kfree_skb(skb);
689 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300690}
691
Kalle Valo818e3062010-03-18 12:26:35 +0200692int wl1271_cmd_build_probe_req(struct wl1271 *wl,
693 const u8 *ssid, size_t ssid_len,
694 const u8 *ie, size_t ie_len, u8 band)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300695{
Kalle Valo818e3062010-03-18 12:26:35 +0200696 struct sk_buff *skb;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300697 int ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300698
Kalle Valo818e3062010-03-18 12:26:35 +0200699 skb = ieee80211_probereq_get(wl->hw, wl->vif, ssid, ssid_len,
700 ie, ie_len);
701 if (!skb) {
702 ret = -ENOMEM;
703 goto out;
704 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300705
Kalle Valo818e3062010-03-18 12:26:35 +0200706 wl1271_dump(DEBUG_SCAN, "PROBE REQ: ", skb->data, skb->len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300707
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300708 if (band == IEEE80211_BAND_2GHZ)
709 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300710 skb->data, skb->len, 0,
711 wl->conf.tx.basic_rate);
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300712 else
713 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300714 skb->data, skb->len, 0,
715 wl->conf.tx.basic_rate_5);
Kalle Valo818e3062010-03-18 12:26:35 +0200716
717out:
718 dev_kfree_skb(skb);
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300719 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300720}
721
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +0200722struct sk_buff *wl1271_cmd_build_ap_probe_req(struct wl1271 *wl,
723 struct sk_buff *skb)
724{
725 int ret;
726
727 if (!skb)
728 skb = ieee80211_ap_probereq_get(wl->hw, wl->vif);
729 if (!skb)
730 goto out;
731
732 wl1271_dump(DEBUG_SCAN, "AP PROBE REQ: ", skb->data, skb->len);
733
734 if (wl->band == IEEE80211_BAND_2GHZ)
735 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4,
736 skb->data, skb->len, 0,
737 wl->conf.tx.basic_rate);
738 else
739 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5,
740 skb->data, skb->len, 0,
741 wl->conf.tx.basic_rate_5);
742
743 if (ret < 0)
744 wl1271_error("Unable to set ap probe request template.");
745
746out:
747 return skb;
748}
749
Eliad Pellerc5312772010-12-09 11:31:27 +0200750int wl1271_cmd_build_arp_rsp(struct wl1271 *wl, __be32 ip_addr)
751{
752 int ret;
753 struct wl12xx_arp_rsp_template tmpl;
754 struct ieee80211_hdr_3addr *hdr;
755 struct arphdr *arp_hdr;
756
757 memset(&tmpl, 0, sizeof(tmpl));
758
759 /* mac80211 header */
760 hdr = &tmpl.hdr;
761 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
762 IEEE80211_STYPE_DATA |
763 IEEE80211_FCTL_TODS);
764 memcpy(hdr->addr1, wl->vif->bss_conf.bssid, ETH_ALEN);
765 memcpy(hdr->addr2, wl->vif->addr, ETH_ALEN);
766 memset(hdr->addr3, 0xff, ETH_ALEN);
767
768 /* llc layer */
769 memcpy(tmpl.llc_hdr, rfc1042_header, sizeof(rfc1042_header));
Eliad Peller6177eae2010-12-22 12:38:52 +0100770 tmpl.llc_type = cpu_to_be16(ETH_P_ARP);
Eliad Pellerc5312772010-12-09 11:31:27 +0200771
772 /* arp header */
773 arp_hdr = &tmpl.arp_hdr;
Eliad Peller6177eae2010-12-22 12:38:52 +0100774 arp_hdr->ar_hrd = cpu_to_be16(ARPHRD_ETHER);
775 arp_hdr->ar_pro = cpu_to_be16(ETH_P_IP);
Eliad Pellerc5312772010-12-09 11:31:27 +0200776 arp_hdr->ar_hln = ETH_ALEN;
777 arp_hdr->ar_pln = 4;
Eliad Peller6177eae2010-12-22 12:38:52 +0100778 arp_hdr->ar_op = cpu_to_be16(ARPOP_REPLY);
Eliad Pellerc5312772010-12-09 11:31:27 +0200779
780 /* arp payload */
781 memcpy(tmpl.sender_hw, wl->vif->addr, ETH_ALEN);
782 tmpl.sender_ip = ip_addr;
783
784 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_ARP_RSP,
785 &tmpl, sizeof(tmpl), 0,
786 wl->basic_rate);
787
788 return ret;
789}
790
Kalle Valo023e0822010-03-18 12:26:36 +0200791int wl1271_build_qos_null_data(struct wl1271 *wl)
792{
793 struct ieee80211_qos_hdr template;
794
795 memset(&template, 0, sizeof(template));
796
797 memcpy(template.addr1, wl->bssid, ETH_ALEN);
798 memcpy(template.addr2, wl->mac_addr, ETH_ALEN);
799 memcpy(template.addr3, wl->bssid, ETH_ALEN);
800
801 template.frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
802 IEEE80211_STYPE_QOS_NULLFUNC |
803 IEEE80211_FCTL_TODS);
804
805 /* FIXME: not sure what priority to use here */
806 template.qos_ctrl = cpu_to_le16(0);
807
808 return wl1271_cmd_template_set(wl, CMD_TEMPL_QOS_NULL_DATA, &template,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300809 sizeof(template), 0,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +0200810 wl->basic_rate);
Kalle Valo023e0822010-03-18 12:26:36 +0200811}
812
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200813int wl1271_cmd_set_sta_default_wep_key(struct wl1271 *wl, u8 id)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300814{
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200815 struct wl1271_cmd_set_sta_keys *cmd;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300816 int ret = 0;
817
818 wl1271_debug(DEBUG_CMD, "cmd set_default_wep_key %d", id);
819
820 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
821 if (!cmd) {
822 ret = -ENOMEM;
823 goto out;
824 }
825
826 cmd->id = id;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300827 cmd->key_action = cpu_to_le16(KEY_SET_ID);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300828 cmd->key_type = KEY_WEP;
829
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200830 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300831 if (ret < 0) {
832 wl1271_warning("cmd set_default_wep_key failed: %d", ret);
833 goto out;
834 }
835
836out:
837 kfree(cmd);
838
839 return ret;
840}
841
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200842int wl1271_cmd_set_ap_default_wep_key(struct wl1271 *wl, u8 id)
843{
844 struct wl1271_cmd_set_ap_keys *cmd;
845 int ret = 0;
846
847 wl1271_debug(DEBUG_CMD, "cmd set_ap_default_wep_key %d", id);
848
849 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
850 if (!cmd) {
851 ret = -ENOMEM;
852 goto out;
853 }
854
855 cmd->hlid = WL1271_AP_BROADCAST_HLID;
856 cmd->key_id = id;
857 cmd->lid_key_type = WEP_DEFAULT_LID_TYPE;
858 cmd->key_action = cpu_to_le16(KEY_SET_ID);
859 cmd->key_type = KEY_WEP;
860
861 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
862 if (ret < 0) {
863 wl1271_warning("cmd set_ap_default_wep_key failed: %d", ret);
864 goto out;
865 }
866
867out:
868 kfree(cmd);
869
870 return ret;
871}
872
873int wl1271_cmd_set_sta_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300874 u8 key_size, const u8 *key, const u8 *addr,
875 u32 tx_seq_32, u16 tx_seq_16)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300876{
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200877 struct wl1271_cmd_set_sta_keys *cmd;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300878 int ret = 0;
879
880 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
881 if (!cmd) {
882 ret = -ENOMEM;
883 goto out;
884 }
885
886 if (key_type != KEY_WEP)
887 memcpy(cmd->addr, addr, ETH_ALEN);
888
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300889 cmd->key_action = cpu_to_le16(action);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300890 cmd->key_size = key_size;
891 cmd->key_type = key_type;
892
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300893 cmd->ac_seq_num16[0] = cpu_to_le16(tx_seq_16);
894 cmd->ac_seq_num32[0] = cpu_to_le32(tx_seq_32);
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300895
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300896 /* we have only one SSID profile */
897 cmd->ssid_profile = 0;
898
899 cmd->id = id;
900
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300901 if (key_type == KEY_TKIP) {
902 /*
903 * We get the key in the following form:
904 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
905 * but the target is expecting:
906 * TKIP - RX MIC - TX MIC
907 */
908 memcpy(cmd->key, key, 16);
909 memcpy(cmd->key + 16, key + 24, 8);
910 memcpy(cmd->key + 24, key + 16, 8);
911
912 } else {
913 memcpy(cmd->key, key, key_size);
914 }
915
916 wl1271_dump(DEBUG_CRYPT, "TARGET KEY: ", cmd, sizeof(*cmd));
917
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200918 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300919 if (ret < 0) {
920 wl1271_warning("could not set keys");
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200921 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300922 }
923
924out:
925 kfree(cmd);
926
927 return ret;
928}
Luciano Coelho25a7dc62009-10-12 15:08:42 +0300929
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200930int wl1271_cmd_set_ap_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
931 u8 key_size, const u8 *key, u8 hlid, u32 tx_seq_32,
932 u16 tx_seq_16)
933{
934 struct wl1271_cmd_set_ap_keys *cmd;
935 int ret = 0;
936 u8 lid_type;
937
938 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
939 if (!cmd)
940 return -ENOMEM;
941
942 if (hlid == WL1271_AP_BROADCAST_HLID) {
943 if (key_type == KEY_WEP)
944 lid_type = WEP_DEFAULT_LID_TYPE;
945 else
946 lid_type = BROADCAST_LID_TYPE;
947 } else {
948 lid_type = UNICAST_LID_TYPE;
949 }
950
951 wl1271_debug(DEBUG_CRYPT, "ap key action: %d id: %d lid: %d type: %d"
952 " hlid: %d", (int)action, (int)id, (int)lid_type,
953 (int)key_type, (int)hlid);
954
955 cmd->lid_key_type = lid_type;
956 cmd->hlid = hlid;
957 cmd->key_action = cpu_to_le16(action);
958 cmd->key_size = key_size;
959 cmd->key_type = key_type;
960 cmd->key_id = id;
961 cmd->ac_seq_num16[0] = cpu_to_le16(tx_seq_16);
962 cmd->ac_seq_num32[0] = cpu_to_le32(tx_seq_32);
963
964 if (key_type == KEY_TKIP) {
965 /*
966 * We get the key in the following form:
967 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
968 * but the target is expecting:
969 * TKIP - RX MIC - TX MIC
970 */
971 memcpy(cmd->key, key, 16);
972 memcpy(cmd->key + 16, key + 24, 8);
973 memcpy(cmd->key + 24, key + 16, 8);
974 } else {
975 memcpy(cmd->key, key, key_size);
976 }
977
978 wl1271_dump(DEBUG_CRYPT, "TARGET AP KEY: ", cmd, sizeof(*cmd));
979
980 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
981 if (ret < 0) {
982 wl1271_warning("could not set ap keys");
983 goto out;
984 }
985
986out:
987 kfree(cmd);
988 return ret;
989}
990
Luciano Coelho25a7dc62009-10-12 15:08:42 +0300991int wl1271_cmd_disconnect(struct wl1271 *wl)
992{
993 struct wl1271_cmd_disconnect *cmd;
994 int ret = 0;
995
996 wl1271_debug(DEBUG_CMD, "cmd disconnect");
997
998 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
999 if (!cmd) {
1000 ret = -ENOMEM;
1001 goto out;
1002 }
1003
Luciano Coelhod0f63b22009-10-15 10:33:29 +03001004 cmd->rx_config_options = cpu_to_le32(wl->rx_config);
1005 cmd->rx_filter_options = cpu_to_le32(wl->rx_filter);
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001006 /* disconnect reason is not used in immediate disconnections */
1007 cmd->type = DISCONNECT_IMMEDIATE;
1008
Juuso Oikarinenfa867e72009-11-02 20:22:13 +02001009 ret = wl1271_cmd_send(wl, CMD_DISCONNECT, cmd, sizeof(*cmd), 0);
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001010 if (ret < 0) {
1011 wl1271_error("failed to send disconnect command");
1012 goto out_free;
1013 }
1014
Luciano Coelho2f826f52010-03-26 12:53:21 +02001015 ret = wl1271_cmd_wait_for_event(wl, DISCONNECT_EVENT_COMPLETE_ID);
1016 if (ret < 0)
1017 wl1271_error("cmd disconnect event completion error");
1018
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001019out_free:
1020 kfree(cmd);
1021
1022out:
1023 return ret;
1024}
Juuso Oikarinenbe86cbe2010-05-27 12:53:01 +03001025
1026int wl1271_cmd_set_sta_state(struct wl1271 *wl)
1027{
1028 struct wl1271_cmd_set_sta_state *cmd;
1029 int ret = 0;
1030
1031 wl1271_debug(DEBUG_CMD, "cmd set sta state");
1032
1033 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1034 if (!cmd) {
1035 ret = -ENOMEM;
1036 goto out;
1037 }
1038
1039 cmd->state = WL1271_CMD_STA_STATE_CONNECTED;
1040
1041 ret = wl1271_cmd_send(wl, CMD_SET_STA_STATE, cmd, sizeof(*cmd), 0);
1042 if (ret < 0) {
1043 wl1271_error("failed to send set STA state command");
1044 goto out_free;
1045 }
1046
1047out_free:
1048 kfree(cmd);
1049
1050out:
1051 return ret;
1052}
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001053
1054int wl1271_cmd_start_bss(struct wl1271 *wl)
1055{
1056 struct wl1271_cmd_bss_start *cmd;
1057 struct ieee80211_bss_conf *bss_conf = &wl->vif->bss_conf;
1058 int ret;
1059
1060 wl1271_debug(DEBUG_CMD, "cmd start bss");
1061
1062 /*
1063 * FIXME: We currently do not support hidden SSID. The real SSID
1064 * should be fetched from mac80211 first.
1065 */
1066 if (wl->ssid_len == 0) {
1067 wl1271_warning("Hidden SSID currently not supported for AP");
1068 ret = -EINVAL;
1069 goto out;
1070 }
1071
1072 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1073 if (!cmd) {
1074 ret = -ENOMEM;
1075 goto out;
1076 }
1077
1078 memcpy(cmd->bssid, bss_conf->bssid, ETH_ALEN);
1079
Arik Nemtsov47684802011-04-26 23:21:51 +03001080 cmd->aging_period = cpu_to_le16(wl->conf.tx.ap_aging_period);
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001081 cmd->bss_index = WL1271_AP_BSS_INDEX;
1082 cmd->global_hlid = WL1271_AP_GLOBAL_HLID;
1083 cmd->broadcast_hlid = WL1271_AP_BROADCAST_HLID;
1084 cmd->basic_rate_set = cpu_to_le32(wl->basic_rate_set);
1085 cmd->beacon_interval = cpu_to_le16(wl->beacon_int);
1086 cmd->dtim_interval = bss_conf->dtim_period;
1087 cmd->beacon_expiry = WL1271_AP_DEF_BEACON_EXP;
1088 cmd->channel = wl->channel;
1089 cmd->ssid_len = wl->ssid_len;
1090 cmd->ssid_type = SSID_TYPE_PUBLIC;
1091 memcpy(cmd->ssid, wl->ssid, wl->ssid_len);
1092
1093 switch (wl->band) {
1094 case IEEE80211_BAND_2GHZ:
1095 cmd->band = RADIO_BAND_2_4GHZ;
1096 break;
1097 case IEEE80211_BAND_5GHZ:
1098 cmd->band = RADIO_BAND_5GHZ;
1099 break;
1100 default:
1101 wl1271_warning("bss start - unknown band: %d", (int)wl->band);
1102 cmd->band = RADIO_BAND_2_4GHZ;
1103 break;
1104 }
1105
1106 ret = wl1271_cmd_send(wl, CMD_BSS_START, cmd, sizeof(*cmd), 0);
1107 if (ret < 0) {
1108 wl1271_error("failed to initiate cmd start bss");
1109 goto out_free;
1110 }
1111
1112out_free:
1113 kfree(cmd);
1114
1115out:
1116 return ret;
1117}
1118
1119int wl1271_cmd_stop_bss(struct wl1271 *wl)
1120{
1121 struct wl1271_cmd_bss_start *cmd;
1122 int ret;
1123
1124 wl1271_debug(DEBUG_CMD, "cmd stop bss");
1125
1126 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1127 if (!cmd) {
1128 ret = -ENOMEM;
1129 goto out;
1130 }
1131
1132 cmd->bss_index = WL1271_AP_BSS_INDEX;
1133
1134 ret = wl1271_cmd_send(wl, CMD_BSS_STOP, cmd, sizeof(*cmd), 0);
1135 if (ret < 0) {
1136 wl1271_error("failed to initiate cmd stop bss");
1137 goto out_free;
1138 }
1139
1140out_free:
1141 kfree(cmd);
1142
1143out:
1144 return ret;
1145}
1146
1147int wl1271_cmd_add_sta(struct wl1271 *wl, struct ieee80211_sta *sta, u8 hlid)
1148{
1149 struct wl1271_cmd_add_sta *cmd;
1150 int ret;
1151
1152 wl1271_debug(DEBUG_CMD, "cmd add sta %d", (int)hlid);
1153
1154 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1155 if (!cmd) {
1156 ret = -ENOMEM;
1157 goto out;
1158 }
1159
1160 /* currently we don't support UAPSD */
1161 cmd->sp_len = 0;
1162
1163 memcpy(cmd->addr, sta->addr, ETH_ALEN);
1164 cmd->bss_index = WL1271_AP_BSS_INDEX;
1165 cmd->aid = sta->aid;
1166 cmd->hlid = hlid;
1167
1168 /*
1169 * FIXME: Does STA support QOS? We need to propagate this info from
1170 * hostapd. Currently not that important since this is only used for
1171 * sending the correct flavor of null-data packet in response to a
1172 * trigger.
1173 */
1174 cmd->wmm = 0;
1175
1176 cmd->supported_rates = cpu_to_le32(wl1271_tx_enabled_rates_get(wl,
1177 sta->supp_rates[wl->band]));
1178
1179 wl1271_debug(DEBUG_CMD, "new sta rates: 0x%x", cmd->supported_rates);
1180
1181 ret = wl1271_cmd_send(wl, CMD_ADD_STA, cmd, sizeof(*cmd), 0);
1182 if (ret < 0) {
1183 wl1271_error("failed to initiate cmd add sta");
1184 goto out_free;
1185 }
1186
1187out_free:
1188 kfree(cmd);
1189
1190out:
1191 return ret;
1192}
1193
1194int wl1271_cmd_remove_sta(struct wl1271 *wl, u8 hlid)
1195{
1196 struct wl1271_cmd_remove_sta *cmd;
1197 int ret;
1198
1199 wl1271_debug(DEBUG_CMD, "cmd remove sta %d", (int)hlid);
1200
1201 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1202 if (!cmd) {
1203 ret = -ENOMEM;
1204 goto out;
1205 }
1206
1207 cmd->hlid = hlid;
1208 /* We never send a deauth, mac80211 is in charge of this */
1209 cmd->reason_opcode = 0;
1210 cmd->send_deauth_flag = 0;
1211
1212 ret = wl1271_cmd_send(wl, CMD_REMOVE_STA, cmd, sizeof(*cmd), 0);
1213 if (ret < 0) {
1214 wl1271_error("failed to initiate cmd remove sta");
1215 goto out_free;
1216 }
1217
Arik Nemtsov05285cf2010-11-12 17:15:03 +02001218 /*
1219 * We are ok with a timeout here. The event is sometimes not sent
1220 * due to a firmware bug.
1221 */
1222 wl1271_cmd_wait_for_event_or_timeout(wl, STA_REMOVE_COMPLETE_EVENT_ID);
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001223
1224out_free:
1225 kfree(cmd);
1226
1227out:
1228 return ret;
1229}