blob: ce503ddd5a41e8504d894cd5516973d078af8769 [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
32#include "wl1271.h"
33#include "wl1271_reg.h"
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020034#include "wl1271_io.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030035#include "wl1271_acx.h"
36#include "wl12xx_80211.h"
37#include "wl1271_cmd.h"
Luciano Coelho99d84c12010-03-26 12:53:20 +020038#include "wl1271_event.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030039
Juuso Oikarinen16092b52010-04-28 09:49:59 +030040#define WL1271_CMD_FAST_POLL_COUNT 50
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030041
42/*
43 * send command to firmware
44 *
45 * @wl: wl struct
46 * @id: command id
47 * @buf: buffer containing the command, must work with dma
48 * @len: length of the buffer
49 */
Juuso Oikarinenfa867e72009-11-02 20:22:13 +020050int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len,
51 size_t res_len)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030052{
53 struct wl1271_cmd_header *cmd;
54 unsigned long timeout;
55 u32 intr;
56 int ret = 0;
Juuso Oikarinenad150e92009-11-02 20:22:12 +020057 u16 status;
Saravanan Dhanabalbc0f03e2010-03-26 12:53:33 +020058 u16 poll_count = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030059
60 cmd = buf;
Luciano Coelhod0f63b22009-10-15 10:33:29 +030061 cmd->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030062 cmd->status = 0;
63
64 WARN_ON(len % 4 != 0);
65
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020066 wl1271_write(wl, wl->cmd_box_addr, buf, len, false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030067
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020068 wl1271_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_CMD);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030069
70 timeout = jiffies + msecs_to_jiffies(WL1271_COMMAND_TIMEOUT);
71
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020072 intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030073 while (!(intr & WL1271_ACX_INTR_CMD_COMPLETE)) {
74 if (time_after(jiffies, timeout)) {
75 wl1271_error("command complete timeout");
76 ret = -ETIMEDOUT;
77 goto out;
78 }
79
Saravanan Dhanabalbc0f03e2010-03-26 12:53:33 +020080 poll_count++;
Juuso Oikarinen16092b52010-04-28 09:49:59 +030081 if (poll_count < WL1271_CMD_FAST_POLL_COUNT)
82 udelay(10);
83 else
84 msleep(1);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030085
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020086 intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030087 }
88
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020089 /* read back the status code of the command */
Juuso Oikarinenfa867e72009-11-02 20:22:13 +020090 if (res_len == 0)
91 res_len = sizeof(struct wl1271_cmd_header);
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020092 wl1271_read(wl, wl->cmd_box_addr, cmd, res_len, false);
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020093
Juuso Oikarinenad150e92009-11-02 20:22:12 +020094 status = le16_to_cpu(cmd->status);
95 if (status != CMD_STATUS_SUCCESS) {
96 wl1271_error("command execute failure %d", status);
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020097 ret = -EIO;
98 }
99
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200100 wl1271_write32(wl, ACX_REG_INTERRUPT_ACK,
101 WL1271_ACX_INTR_CMD_COMPLETE);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300102
103out:
104 return ret;
105}
106
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200107int wl1271_cmd_general_parms(struct wl1271 *wl)
108{
109 struct wl1271_general_parms_cmd *gen_parms;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200110 int ret;
111
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200112 if (!wl->nvs)
113 return -ENODEV;
114
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200115 gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL);
116 if (!gen_parms)
117 return -ENOMEM;
118
119 gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM;
120
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300121 memcpy(&gen_parms->general_params, &wl->nvs->general_params,
122 sizeof(struct wl1271_ini_general_params));
Luciano Coelho76c0f8d2009-12-11 15:40:41 +0200123
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200124 ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), 0);
125 if (ret < 0)
126 wl1271_warning("CMD_INI_FILE_GENERAL_PARAM failed");
127
128 kfree(gen_parms);
129 return ret;
130}
131
132int wl1271_cmd_radio_parms(struct wl1271 *wl)
133{
134 struct wl1271_radio_parms_cmd *radio_parms;
Luciano Coelhoe6b190f2010-07-08 17:50:01 +0300135 struct wl1271_ini_general_params *gp = &wl->nvs->general_params;
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200136 int ret;
137
138 if (!wl->nvs)
139 return -ENODEV;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200140
141 radio_parms = kzalloc(sizeof(*radio_parms), GFP_KERNEL);
142 if (!radio_parms)
143 return -ENOMEM;
144
145 radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM;
146
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300147 /* 2.4GHz parameters */
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300148 memcpy(&radio_parms->static_params_2, &wl->nvs->stat_radio_params_2,
149 sizeof(struct wl1271_ini_band_params_2));
150 memcpy(&radio_parms->dyn_params_2,
Luciano Coelhoe6b190f2010-07-08 17:50:01 +0300151 &wl->nvs->dyn_radio_params_2[gp->tx_bip_fem_manufacturer].params,
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300152 sizeof(struct wl1271_ini_fem_params_2));
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200153
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300154 /* 5GHz parameters */
155 memcpy(&radio_parms->static_params_5,
156 &wl->nvs->stat_radio_params_5,
157 sizeof(struct wl1271_ini_band_params_5));
158 memcpy(&radio_parms->dyn_params_5,
Luciano Coelhoe6b190f2010-07-08 17:50:01 +0300159 &wl->nvs->dyn_radio_params_5[gp->tx_bip_fem_manufacturer].params,
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300160 sizeof(struct wl1271_ini_fem_params_5));
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200161
162 wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ",
163 radio_parms, sizeof(*radio_parms));
164
165 ret = wl1271_cmd_test(wl, radio_parms, sizeof(*radio_parms), 0);
166 if (ret < 0)
167 wl1271_warning("CMD_INI_FILE_RADIO_PARAM failed");
168
169 kfree(radio_parms);
170 return ret;
171}
172
Luciano Coelho99d84c12010-03-26 12:53:20 +0200173/*
174 * Poll the mailbox event field until any of the bits in the mask is set or a
175 * timeout occurs (WL1271_EVENT_TIMEOUT in msecs)
176 */
177static int wl1271_cmd_wait_for_event(struct wl1271 *wl, u32 mask)
178{
179 u32 events_vector, event;
180 unsigned long timeout;
181
182 timeout = jiffies + msecs_to_jiffies(WL1271_EVENT_TIMEOUT);
183
184 do {
185 if (time_after(jiffies, timeout))
186 return -ETIMEDOUT;
187
188 msleep(1);
189
190 /* read from both event fields */
191 wl1271_read(wl, wl->mbox_ptr[0], &events_vector,
192 sizeof(events_vector), false);
193 event = events_vector & mask;
194 wl1271_read(wl, wl->mbox_ptr[1], &events_vector,
195 sizeof(events_vector), false);
196 event |= events_vector & mask;
197 } while (!event);
198
199 return 0;
200}
201
Juuso Oikarinen15305492010-02-22 08:38:32 +0200202int wl1271_cmd_join(struct wl1271 *wl, u8 bss_type)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300203{
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300204 struct wl1271_cmd_join *join;
205 int ret, i;
206 u8 *bssid;
207
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300208 join = kzalloc(sizeof(*join), GFP_KERNEL);
209 if (!join) {
210 ret = -ENOMEM;
211 goto out;
212 }
213
214 wl1271_debug(DEBUG_CMD, "cmd join");
215
216 /* Reverse order BSSID */
217 bssid = (u8 *) &join->bssid_lsb;
218 for (i = 0; i < ETH_ALEN; i++)
219 bssid[i] = wl->bssid[ETH_ALEN - i - 1];
220
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300221 join->rx_config_options = cpu_to_le32(wl->rx_config);
222 join->rx_filter_options = cpu_to_le32(wl->rx_filter);
Juuso Oikarinen15305492010-02-22 08:38:32 +0200223 join->bss_type = bss_type;
Luciano Coelho23a7a512010-04-28 09:50:02 +0300224 join->basic_rate_set = cpu_to_le32(wl->basic_rate_set);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300225
Juuso Oikarinenebba60c2010-04-01 11:38:20 +0300226 if (wl->band == IEEE80211_BAND_5GHZ)
Teemu Paasikivia4102642009-10-13 12:47:51 +0300227 join->bss_type |= WL1271_JOIN_CMD_BSS_TYPE_5GHZ;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300228
Juuso Oikarinen60e84c22010-03-26 12:53:25 +0200229 join->beacon_interval = cpu_to_le16(wl->beacon_int);
Luciano Coelhoae751ba2009-10-12 15:08:57 +0300230 join->dtim_interval = WL1271_DEFAULT_DTIM_PERIOD;
Teemu Paasikivia4102642009-10-13 12:47:51 +0300231
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300232 join->channel = wl->channel;
233 join->ssid_len = wl->ssid_len;
234 memcpy(join->ssid, wl->ssid, wl->ssid_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300235
236 join->ctrl |= wl->session_counter << WL1271_JOIN_CMD_TX_SESSION_OFFSET;
237
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300238 /* reset TX security counters */
239 wl->tx_security_last_seq = 0;
Juuso Oikarinen04e36fc2010-02-22 08:38:40 +0200240 wl->tx_security_seq = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300241
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200242 ret = wl1271_cmd_send(wl, CMD_START_JOIN, join, sizeof(*join), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300243 if (ret < 0) {
244 wl1271_error("failed to initiate cmd join");
245 goto out_free;
246 }
247
Luciano Coelho99d84c12010-03-26 12:53:20 +0200248 ret = wl1271_cmd_wait_for_event(wl, JOIN_EVENT_COMPLETE_ID);
249 if (ret < 0)
250 wl1271_error("cmd join event completion error");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300251
252out_free:
253 kfree(join);
254
255out:
256 return ret;
257}
258
259/**
260 * send test command to firmware
261 *
262 * @wl: wl struct
263 * @buf: buffer containing the command, with all headers, must work with dma
264 * @len: length of the buffer
265 * @answer: is answer needed
266 */
267int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer)
268{
269 int ret;
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200270 size_t res_len = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300271
272 wl1271_debug(DEBUG_CMD, "cmd test");
273
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200274 if (answer)
275 res_len = buf_len;
276
277 ret = wl1271_cmd_send(wl, CMD_TEST, buf, buf_len, res_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300278
279 if (ret < 0) {
280 wl1271_warning("TEST command failed");
281 return ret;
282 }
283
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200284 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300285}
286
287/**
288 * read acx from firmware
289 *
290 * @wl: wl struct
291 * @id: acx id
292 * @buf: buffer for the response, including all headers, must work with dma
293 * @len: lenght of buf
294 */
295int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len)
296{
297 struct acx_header *acx = buf;
298 int ret;
299
300 wl1271_debug(DEBUG_CMD, "cmd interrogate");
301
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300302 acx->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300303
304 /* payload length, does not include any headers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300305 acx->len = cpu_to_le16(len - sizeof(*acx));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300306
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200307 ret = wl1271_cmd_send(wl, CMD_INTERROGATE, acx, sizeof(*acx), len);
308 if (ret < 0)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300309 wl1271_error("INTERROGATE command failed");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300310
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300311 return ret;
312}
313
314/**
315 * write acx value to firmware
316 *
317 * @wl: wl struct
318 * @id: acx id
319 * @buf: buffer containing acx, including all headers, must work with dma
320 * @len: length of buf
321 */
322int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len)
323{
324 struct acx_header *acx = buf;
325 int ret;
326
327 wl1271_debug(DEBUG_CMD, "cmd configure");
328
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300329 acx->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300330
331 /* payload length, does not include any headers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300332 acx->len = cpu_to_le16(len - sizeof(*acx));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300333
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200334 ret = wl1271_cmd_send(wl, CMD_CONFIGURE, acx, len, 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300335 if (ret < 0) {
336 wl1271_warning("CONFIGURE command NOK");
337 return ret;
338 }
339
340 return 0;
341}
342
Luciano Coelho94210892009-12-11 15:40:55 +0200343int wl1271_cmd_data_path(struct wl1271 *wl, bool enable)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300344{
345 struct cmd_enabledisable_path *cmd;
346 int ret;
347 u16 cmd_rx, cmd_tx;
348
349 wl1271_debug(DEBUG_CMD, "cmd data path");
350
351 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
352 if (!cmd) {
353 ret = -ENOMEM;
354 goto out;
355 }
356
Luciano Coelho94210892009-12-11 15:40:55 +0200357 /* the channel here is only used for calibration, so hardcoded to 1 */
358 cmd->channel = 1;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300359
360 if (enable) {
361 cmd_rx = CMD_ENABLE_RX;
362 cmd_tx = CMD_ENABLE_TX;
363 } else {
364 cmd_rx = CMD_DISABLE_RX;
365 cmd_tx = CMD_DISABLE_TX;
366 }
367
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200368 ret = wl1271_cmd_send(wl, cmd_rx, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300369 if (ret < 0) {
370 wl1271_error("rx %s cmd for channel %d failed",
Luciano Coelho94210892009-12-11 15:40:55 +0200371 enable ? "start" : "stop", cmd->channel);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300372 goto out;
373 }
374
375 wl1271_debug(DEBUG_BOOT, "rx %s cmd channel %d",
Luciano Coelho94210892009-12-11 15:40:55 +0200376 enable ? "start" : "stop", cmd->channel);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300377
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200378 ret = wl1271_cmd_send(wl, cmd_tx, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300379 if (ret < 0) {
380 wl1271_error("tx %s cmd for channel %d failed",
Luciano Coelho94210892009-12-11 15:40:55 +0200381 enable ? "start" : "stop", cmd->channel);
Juuso Oikarinen1b00f2b2010-03-26 12:53:17 +0200382 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300383 }
384
385 wl1271_debug(DEBUG_BOOT, "tx %s cmd channel %d",
Luciano Coelho94210892009-12-11 15:40:55 +0200386 enable ? "start" : "stop", cmd->channel);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300387
388out:
389 kfree(cmd);
390 return ret;
391}
392
Juuso Oikarinend8c42c02010-02-18 13:25:36 +0200393int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode, bool send)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300394{
395 struct wl1271_cmd_ps_params *ps_params = NULL;
396 int ret = 0;
397
398 /* FIXME: this should be in ps.c */
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300399 ret = wl1271_acx_wake_up_conditions(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300400 if (ret < 0) {
401 wl1271_error("couldn't set wake up conditions");
402 goto out;
403 }
404
405 wl1271_debug(DEBUG_CMD, "cmd set ps mode");
406
407 ps_params = kzalloc(sizeof(*ps_params), GFP_KERNEL);
408 if (!ps_params) {
409 ret = -ENOMEM;
410 goto out;
411 }
412
413 ps_params->ps_mode = ps_mode;
Juuso Oikarinend8c42c02010-02-18 13:25:36 +0200414 ps_params->send_null_data = send;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300415 ps_params->retries = 5;
Juuso Oikarinencbd1ea82010-05-07 11:39:02 +0300416 ps_params->hang_over_period = 1;
Juuso Oikarinen5da54f92010-05-24 11:18:19 +0300417 ps_params->null_data_rate = cpu_to_le32(wl->basic_rate_set);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300418
419 ret = wl1271_cmd_send(wl, CMD_SET_PS_MODE, ps_params,
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200420 sizeof(*ps_params), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300421 if (ret < 0) {
422 wl1271_error("cmd set_ps_mode failed");
423 goto out;
424 }
425
426out:
427 kfree(ps_params);
428 return ret;
429}
430
431int wl1271_cmd_read_memory(struct wl1271 *wl, u32 addr, void *answer,
432 size_t len)
433{
434 struct cmd_read_write_memory *cmd;
435 int ret = 0;
436
437 wl1271_debug(DEBUG_CMD, "cmd read memory");
438
439 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
440 if (!cmd) {
441 ret = -ENOMEM;
442 goto out;
443 }
444
445 WARN_ON(len > MAX_READ_SIZE);
446 len = min_t(size_t, len, MAX_READ_SIZE);
447
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300448 cmd->addr = cpu_to_le32(addr);
449 cmd->size = cpu_to_le32(len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300450
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200451 ret = wl1271_cmd_send(wl, CMD_READ_MEMORY, cmd, sizeof(*cmd),
452 sizeof(*cmd));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300453 if (ret < 0) {
454 wl1271_error("read memory command failed: %d", ret);
455 goto out;
456 }
457
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200458 /* the read command got in */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300459 memcpy(answer, cmd->value, len);
460
461out:
462 kfree(cmd);
463 return ret;
464}
465
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300466int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300467 void *buf, size_t buf_len, int index, u32 rates)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300468{
469 struct wl1271_cmd_template_set *cmd;
470 int ret = 0;
471
472 wl1271_debug(DEBUG_CMD, "cmd template_set %d", template_id);
473
474 WARN_ON(buf_len > WL1271_CMD_TEMPL_MAX_SIZE);
475 buf_len = min_t(size_t, buf_len, WL1271_CMD_TEMPL_MAX_SIZE);
476
477 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
478 if (!cmd) {
479 ret = -ENOMEM;
480 goto out;
481 }
482
483 cmd->len = cpu_to_le16(buf_len);
484 cmd->template_type = template_id;
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300485 cmd->enabled_rates = cpu_to_le32(rates);
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300486 cmd->short_retry_limit = wl->conf.tx.rc_conf.short_retry_limit;
487 cmd->long_retry_limit = wl->conf.tx.rc_conf.long_retry_limit;
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +0200488 cmd->index = index;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300489
490 if (buf)
491 memcpy(cmd->template_data, buf, buf_len);
492
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200493 ret = wl1271_cmd_send(wl, CMD_SET_TEMPLATE, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300494 if (ret < 0) {
495 wl1271_warning("cmd set_template failed: %d", ret);
496 goto out_free;
497 }
498
499out_free:
500 kfree(cmd);
501
502out:
503 return ret;
504}
505
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300506int wl1271_cmd_build_null_data(struct wl1271 *wl)
507{
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +0200508 struct sk_buff *skb = NULL;
509 int size;
510 void *ptr;
511 int ret = -ENOMEM;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300512
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300513
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +0200514 if (wl->bss_type == BSS_TYPE_IBSS) {
515 size = sizeof(struct wl12xx_null_data_template);
516 ptr = NULL;
517 } else {
518 skb = ieee80211_nullfunc_get(wl->hw, wl->vif);
519 if (!skb)
520 goto out;
521 size = skb->len;
522 ptr = skb->data;
523 }
524
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300525 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_NULL_DATA, ptr, size, 0,
526 WL1271_RATE_AUTOMATIC);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300527
Kalle Valo899e6e62010-03-18 12:26:34 +0200528out:
529 dev_kfree_skb(skb);
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +0200530 if (ret)
531 wl1271_warning("cmd buld null data failed %d", ret);
532
Kalle Valo899e6e62010-03-18 12:26:34 +0200533 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300534
535}
536
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +0200537int wl1271_cmd_build_klv_null_data(struct wl1271 *wl)
538{
539 struct sk_buff *skb = NULL;
540 int ret = -ENOMEM;
541
542 skb = ieee80211_nullfunc_get(wl->hw, wl->vif);
543 if (!skb)
544 goto out;
545
546 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_KLV,
547 skb->data, skb->len,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300548 CMD_TEMPL_KLV_IDX_NULL_DATA,
549 WL1271_RATE_AUTOMATIC);
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +0200550
551out:
552 dev_kfree_skb(skb);
553 if (ret)
554 wl1271_warning("cmd build klv null data failed %d", ret);
555
556 return ret;
557
558}
559
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300560int wl1271_cmd_build_ps_poll(struct wl1271 *wl, u16 aid)
561{
Kalle Valo899e6e62010-03-18 12:26:34 +0200562 struct sk_buff *skb;
563 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300564
Kalle Valo899e6e62010-03-18 12:26:34 +0200565 skb = ieee80211_pspoll_get(wl->hw, wl->vif);
566 if (!skb)
567 goto out;
Juuso Oikarinenc3fea192009-10-08 21:56:22 +0300568
Kalle Valo899e6e62010-03-18 12:26:34 +0200569 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_PS_POLL, skb->data,
Juuso Oikarinen849923f2010-07-08 17:49:59 +0300570 skb->len, 0, wl->basic_rate_set);
Juuso Oikarinenc3fea192009-10-08 21:56:22 +0300571
Kalle Valo899e6e62010-03-18 12:26:34 +0200572out:
573 dev_kfree_skb(skb);
574 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300575}
576
Kalle Valo818e3062010-03-18 12:26:35 +0200577int wl1271_cmd_build_probe_req(struct wl1271 *wl,
578 const u8 *ssid, size_t ssid_len,
579 const u8 *ie, size_t ie_len, u8 band)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300580{
Kalle Valo818e3062010-03-18 12:26:35 +0200581 struct sk_buff *skb;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300582 int ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300583
Kalle Valo818e3062010-03-18 12:26:35 +0200584 skb = ieee80211_probereq_get(wl->hw, wl->vif, ssid, ssid_len,
585 ie, ie_len);
586 if (!skb) {
587 ret = -ENOMEM;
588 goto out;
589 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300590
Kalle Valo818e3062010-03-18 12:26:35 +0200591 wl1271_dump(DEBUG_SCAN, "PROBE REQ: ", skb->data, skb->len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300592
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300593 if (band == IEEE80211_BAND_2GHZ)
594 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300595 skb->data, skb->len, 0,
596 wl->conf.tx.basic_rate);
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300597 else
598 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300599 skb->data, skb->len, 0,
600 wl->conf.tx.basic_rate_5);
Kalle Valo818e3062010-03-18 12:26:35 +0200601
602out:
603 dev_kfree_skb(skb);
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +0300604 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300605}
606
Kalle Valo023e0822010-03-18 12:26:36 +0200607int wl1271_build_qos_null_data(struct wl1271 *wl)
608{
609 struct ieee80211_qos_hdr template;
610
611 memset(&template, 0, sizeof(template));
612
613 memcpy(template.addr1, wl->bssid, ETH_ALEN);
614 memcpy(template.addr2, wl->mac_addr, ETH_ALEN);
615 memcpy(template.addr3, wl->bssid, ETH_ALEN);
616
617 template.frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
618 IEEE80211_STYPE_QOS_NULLFUNC |
619 IEEE80211_FCTL_TODS);
620
621 /* FIXME: not sure what priority to use here */
622 template.qos_ctrl = cpu_to_le16(0);
623
624 return wl1271_cmd_template_set(wl, CMD_TEMPL_QOS_NULL_DATA, &template,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300625 sizeof(template), 0,
626 WL1271_RATE_AUTOMATIC);
Kalle Valo023e0822010-03-18 12:26:36 +0200627}
628
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300629int wl1271_cmd_set_default_wep_key(struct wl1271 *wl, u8 id)
630{
631 struct wl1271_cmd_set_keys *cmd;
632 int ret = 0;
633
634 wl1271_debug(DEBUG_CMD, "cmd set_default_wep_key %d", id);
635
636 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
637 if (!cmd) {
638 ret = -ENOMEM;
639 goto out;
640 }
641
642 cmd->id = id;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300643 cmd->key_action = cpu_to_le16(KEY_SET_ID);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300644 cmd->key_type = KEY_WEP;
645
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200646 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300647 if (ret < 0) {
648 wl1271_warning("cmd set_default_wep_key failed: %d", ret);
649 goto out;
650 }
651
652out:
653 kfree(cmd);
654
655 return ret;
656}
657
658int wl1271_cmd_set_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300659 u8 key_size, const u8 *key, const u8 *addr,
660 u32 tx_seq_32, u16 tx_seq_16)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300661{
662 struct wl1271_cmd_set_keys *cmd;
663 int ret = 0;
664
665 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
666 if (!cmd) {
667 ret = -ENOMEM;
668 goto out;
669 }
670
671 if (key_type != KEY_WEP)
672 memcpy(cmd->addr, addr, ETH_ALEN);
673
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300674 cmd->key_action = cpu_to_le16(action);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300675 cmd->key_size = key_size;
676 cmd->key_type = key_type;
677
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300678 cmd->ac_seq_num16[0] = cpu_to_le16(tx_seq_16);
679 cmd->ac_seq_num32[0] = cpu_to_le32(tx_seq_32);
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +0300680
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300681 /* we have only one SSID profile */
682 cmd->ssid_profile = 0;
683
684 cmd->id = id;
685
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300686 if (key_type == KEY_TKIP) {
687 /*
688 * We get the key in the following form:
689 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
690 * but the target is expecting:
691 * TKIP - RX MIC - TX MIC
692 */
693 memcpy(cmd->key, key, 16);
694 memcpy(cmd->key + 16, key + 24, 8);
695 memcpy(cmd->key + 24, key + 16, 8);
696
697 } else {
698 memcpy(cmd->key, key, key_size);
699 }
700
701 wl1271_dump(DEBUG_CRYPT, "TARGET KEY: ", cmd, sizeof(*cmd));
702
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200703 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300704 if (ret < 0) {
705 wl1271_warning("could not set keys");
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200706 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300707 }
708
709out:
710 kfree(cmd);
711
712 return ret;
713}
Luciano Coelho25a7dc62009-10-12 15:08:42 +0300714
715int wl1271_cmd_disconnect(struct wl1271 *wl)
716{
717 struct wl1271_cmd_disconnect *cmd;
718 int ret = 0;
719
720 wl1271_debug(DEBUG_CMD, "cmd disconnect");
721
722 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
723 if (!cmd) {
724 ret = -ENOMEM;
725 goto out;
726 }
727
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300728 cmd->rx_config_options = cpu_to_le32(wl->rx_config);
729 cmd->rx_filter_options = cpu_to_le32(wl->rx_filter);
Luciano Coelho25a7dc62009-10-12 15:08:42 +0300730 /* disconnect reason is not used in immediate disconnections */
731 cmd->type = DISCONNECT_IMMEDIATE;
732
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200733 ret = wl1271_cmd_send(wl, CMD_DISCONNECT, cmd, sizeof(*cmd), 0);
Luciano Coelho25a7dc62009-10-12 15:08:42 +0300734 if (ret < 0) {
735 wl1271_error("failed to send disconnect command");
736 goto out_free;
737 }
738
Luciano Coelho2f826f52010-03-26 12:53:21 +0200739 ret = wl1271_cmd_wait_for_event(wl, DISCONNECT_EVENT_COMPLETE_ID);
740 if (ret < 0)
741 wl1271_error("cmd disconnect event completion error");
742
Luciano Coelho25a7dc62009-10-12 15:08:42 +0300743out_free:
744 kfree(cmd);
745
746out:
747 return ret;
748}