blob: bee44c7d67fd78ece232e1db51d4e747e0c5f70d [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>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030026#include <linux/spi/spi.h>
27#include <linux/etherdevice.h>
Kalle Valo023e0822010-03-18 12:26:36 +020028#include <linux/ieee80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030030
Shahar Levi00d20102010-11-08 11:20:10 +000031#include "wl12xx.h"
32#include "reg.h"
33#include "io.h"
34#include "acx.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030035#include "wl12xx_80211.h"
Shahar Levi00d20102010-11-08 11:20:10 +000036#include "cmd.h"
37#include "event.h"
Arik Nemtsov98bdaab2010-10-16 18:08:58 +020038#include "tx.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);
Arik Nemtsov24225b32011-03-01 12:27:26 +020065 WARN_ON(test_bit(WL1271_FLAG_IN_ELP, &wl->flags));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030066
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020067 wl1271_write(wl, wl->cmd_box_addr, buf, len, false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030068
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020069 wl1271_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_CMD);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030070
71 timeout = jiffies + msecs_to_jiffies(WL1271_COMMAND_TIMEOUT);
72
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020073 intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030074 while (!(intr & WL1271_ACX_INTR_CMD_COMPLETE)) {
75 if (time_after(jiffies, timeout)) {
76 wl1271_error("command complete timeout");
77 ret = -ETIMEDOUT;
Arik Nemtsovf482b762011-04-18 14:15:23 +030078 goto fail;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030079 }
80
Saravanan Dhanabalbc0f03e2010-03-26 12:53:33 +020081 poll_count++;
Juuso Oikarinen16092b52010-04-28 09:49:59 +030082 if (poll_count < WL1271_CMD_FAST_POLL_COUNT)
83 udelay(10);
84 else
85 msleep(1);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030086
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020087 intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030088 }
89
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020090 /* read back the status code of the command */
Juuso Oikarinenfa867e72009-11-02 20:22:13 +020091 if (res_len == 0)
92 res_len = sizeof(struct wl1271_cmd_header);
Teemu Paasikivi7b048c52010-02-18 13:25:55 +020093 wl1271_read(wl, wl->cmd_box_addr, cmd, res_len, false);
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020094
Juuso Oikarinenad150e92009-11-02 20:22:12 +020095 status = le16_to_cpu(cmd->status);
96 if (status != CMD_STATUS_SUCCESS) {
97 wl1271_error("command execute failure %d", status);
Juuso Oikarinen3b775b42009-11-02 20:22:10 +020098 ret = -EIO;
Arik Nemtsovf482b762011-04-18 14:15:23 +030099 goto fail;
Juuso Oikarinen3b775b42009-11-02 20:22:10 +0200100 }
101
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200102 wl1271_write32(wl, ACX_REG_INTERRUPT_ACK,
103 WL1271_ACX_INTR_CMD_COMPLETE);
Arik Nemtsovf482b762011-04-18 14:15:23 +0300104 return 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300105
Arik Nemtsovf482b762011-04-18 14:15:23 +0300106fail:
107 WARN_ON(1);
Ido Yarivbaacb9a2011-06-06 14:57:05 +0300108 wl12xx_queue_recovery_work(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300109 return ret;
110}
111
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200112int wl1271_cmd_general_parms(struct wl1271 *wl)
113{
114 struct wl1271_general_parms_cmd *gen_parms;
Shahar Levi49d750ca2011-03-06 16:32:09 +0200115 struct wl1271_ini_general_params *gp =
116 &((struct wl1271_nvs_file *)wl->nvs)->general_params;
117 bool answer = false;
118 int ret;
119
120 if (!wl->nvs)
121 return -ENODEV;
122
123 gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL);
124 if (!gen_parms)
125 return -ENOMEM;
126
127 gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM;
128
129 memcpy(&gen_parms->general_params, gp, sizeof(*gp));
130
131 if (gp->tx_bip_fem_auto_detect)
132 answer = true;
133
Shahar Levib03acad2011-04-03 13:54:54 +0300134 /* Override the REF CLK from the NVS with the one from platform data */
135 gen_parms->general_params.ref_clock = wl->ref_clock;
136
Shahar Levi49d750ca2011-03-06 16:32:09 +0200137 ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), answer);
138 if (ret < 0) {
139 wl1271_warning("CMD_INI_FILE_GENERAL_PARAM failed");
140 goto out;
141 }
142
143 gp->tx_bip_fem_manufacturer =
144 gen_parms->general_params.tx_bip_fem_manufacturer;
145
146 wl1271_debug(DEBUG_CMD, "FEM autodetect: %s, manufacturer: %d\n",
147 answer ? "auto" : "manual", gp->tx_bip_fem_manufacturer);
148
149out:
150 kfree(gen_parms);
151 return ret;
152}
153
154int wl128x_cmd_general_parms(struct wl1271 *wl)
155{
156 struct wl128x_general_parms_cmd *gen_parms;
157 struct wl128x_ini_general_params *gp =
158 &((struct wl128x_nvs_file *)wl->nvs)->general_params;
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300159 bool answer = false;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200160 int ret;
161
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200162 if (!wl->nvs)
163 return -ENODEV;
164
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200165 gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL);
166 if (!gen_parms)
167 return -ENOMEM;
168
169 gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM;
170
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300171 memcpy(&gen_parms->general_params, gp, sizeof(*gp));
Luciano Coelho76c0f8d2009-12-11 15:40:41 +0200172
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300173 if (gp->tx_bip_fem_auto_detect)
174 answer = true;
175
Shahar Levib03acad2011-04-03 13:54:54 +0300176 /* Replace REF and TCXO CLKs with the ones from platform data */
177 gen_parms->general_params.ref_clock = wl->ref_clock;
178 gen_parms->general_params.tcxo_ref_clock = wl->tcxo_clock;
179
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300180 ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), answer);
181 if (ret < 0) {
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200182 wl1271_warning("CMD_INI_FILE_GENERAL_PARAM failed");
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300183 goto out;
184 }
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200185
Juuso Oikarinen4b34d432010-10-07 10:16:42 +0300186 gp->tx_bip_fem_manufacturer =
187 gen_parms->general_params.tx_bip_fem_manufacturer;
188
189 wl1271_debug(DEBUG_CMD, "FEM autodetect: %s, manufacturer: %d\n",
190 answer ? "auto" : "manual", gp->tx_bip_fem_manufacturer);
191
192out:
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200193 kfree(gen_parms);
194 return ret;
195}
196
197int wl1271_cmd_radio_parms(struct wl1271 *wl)
198{
Shahar Levibc765bf2011-03-06 16:32:10 +0200199 struct wl1271_nvs_file *nvs = (struct wl1271_nvs_file *)wl->nvs;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200200 struct wl1271_radio_parms_cmd *radio_parms;
Shahar Levibc765bf2011-03-06 16:32:10 +0200201 struct wl1271_ini_general_params *gp = &nvs->general_params;
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200202 int ret;
203
204 if (!wl->nvs)
205 return -ENODEV;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200206
207 radio_parms = kzalloc(sizeof(*radio_parms), GFP_KERNEL);
208 if (!radio_parms)
209 return -ENOMEM;
210
211 radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM;
212
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300213 /* 2.4GHz parameters */
Shahar Levibc765bf2011-03-06 16:32:10 +0200214 memcpy(&radio_parms->static_params_2, &nvs->stat_radio_params_2,
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300215 sizeof(struct wl1271_ini_band_params_2));
216 memcpy(&radio_parms->dyn_params_2,
Shahar Levibc765bf2011-03-06 16:32:10 +0200217 &nvs->dyn_radio_params_2[gp->tx_bip_fem_manufacturer].params,
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300218 sizeof(struct wl1271_ini_fem_params_2));
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200219
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300220 /* 5GHz parameters */
221 memcpy(&radio_parms->static_params_5,
Shahar Levibc765bf2011-03-06 16:32:10 +0200222 &nvs->stat_radio_params_5,
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300223 sizeof(struct wl1271_ini_band_params_5));
224 memcpy(&radio_parms->dyn_params_5,
Shahar Levibc765bf2011-03-06 16:32:10 +0200225 &nvs->dyn_radio_params_5[gp->tx_bip_fem_manufacturer].params,
Juuso Oikarinena7da74f2010-05-14 10:46:23 +0300226 sizeof(struct wl1271_ini_fem_params_5));
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200227
228 wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ",
229 radio_parms, sizeof(*radio_parms));
230
231 ret = wl1271_cmd_test(wl, radio_parms, sizeof(*radio_parms), 0);
232 if (ret < 0)
233 wl1271_warning("CMD_INI_FILE_RADIO_PARAM failed");
234
235 kfree(radio_parms);
236 return ret;
237}
238
Shahar Levi49d750ca2011-03-06 16:32:09 +0200239int wl128x_cmd_radio_parms(struct wl1271 *wl)
240{
241 struct wl128x_nvs_file *nvs = (struct wl128x_nvs_file *)wl->nvs;
242 struct wl128x_radio_parms_cmd *radio_parms;
243 struct wl128x_ini_general_params *gp = &nvs->general_params;
244 int ret;
245
246 if (!wl->nvs)
247 return -ENODEV;
248
249 radio_parms = kzalloc(sizeof(*radio_parms), GFP_KERNEL);
250 if (!radio_parms)
251 return -ENOMEM;
252
253 radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM;
254
255 /* 2.4GHz parameters */
256 memcpy(&radio_parms->static_params_2, &nvs->stat_radio_params_2,
257 sizeof(struct wl128x_ini_band_params_2));
258 memcpy(&radio_parms->dyn_params_2,
259 &nvs->dyn_radio_params_2[gp->tx_bip_fem_manufacturer].params,
260 sizeof(struct wl128x_ini_fem_params_2));
261
262 /* 5GHz parameters */
263 memcpy(&radio_parms->static_params_5,
264 &nvs->stat_radio_params_5,
265 sizeof(struct wl128x_ini_band_params_5));
266 memcpy(&radio_parms->dyn_params_5,
267 &nvs->dyn_radio_params_5[gp->tx_bip_fem_manufacturer].params,
268 sizeof(struct wl128x_ini_fem_params_5));
269
270 radio_parms->fem_vendor_and_options = nvs->fem_vendor_and_options;
271
272 wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ",
273 radio_parms, sizeof(*radio_parms));
274
275 ret = wl1271_cmd_test(wl, radio_parms, sizeof(*radio_parms), 0);
276 if (ret < 0)
277 wl1271_warning("CMD_INI_FILE_RADIO_PARAM failed");
278
279 kfree(radio_parms);
280 return ret;
281}
282
Juuso Oikarinen644a4862010-10-05 13:11:56 +0200283int wl1271_cmd_ext_radio_parms(struct wl1271 *wl)
284{
285 struct wl1271_ext_radio_parms_cmd *ext_radio_parms;
286 struct conf_rf_settings *rf = &wl->conf.rf;
287 int ret;
288
289 if (!wl->nvs)
290 return -ENODEV;
291
292 ext_radio_parms = kzalloc(sizeof(*ext_radio_parms), GFP_KERNEL);
293 if (!ext_radio_parms)
294 return -ENOMEM;
295
296 ext_radio_parms->test.id = TEST_CMD_INI_FILE_RF_EXTENDED_PARAM;
297
298 memcpy(ext_radio_parms->tx_per_channel_power_compensation_2,
299 rf->tx_per_channel_power_compensation_2,
300 CONF_TX_PWR_COMPENSATION_LEN_2);
301 memcpy(ext_radio_parms->tx_per_channel_power_compensation_5,
302 rf->tx_per_channel_power_compensation_5,
303 CONF_TX_PWR_COMPENSATION_LEN_5);
304
305 wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_EXT_RADIO_PARAM: ",
306 ext_radio_parms, sizeof(*ext_radio_parms));
307
308 ret = wl1271_cmd_test(wl, ext_radio_parms, sizeof(*ext_radio_parms), 0);
309 if (ret < 0)
310 wl1271_warning("TEST_CMD_INI_FILE_RF_EXTENDED_PARAM failed");
311
312 kfree(ext_radio_parms);
313 return ret;
314}
315
Luciano Coelho99d84c12010-03-26 12:53:20 +0200316/*
317 * Poll the mailbox event field until any of the bits in the mask is set or a
318 * timeout occurs (WL1271_EVENT_TIMEOUT in msecs)
319 */
Arik Nemtsov05285cf2010-11-12 17:15:03 +0200320static int wl1271_cmd_wait_for_event_or_timeout(struct wl1271 *wl, u32 mask)
Luciano Coelho99d84c12010-03-26 12:53:20 +0200321{
322 u32 events_vector, event;
323 unsigned long timeout;
324
325 timeout = jiffies + msecs_to_jiffies(WL1271_EVENT_TIMEOUT);
326
327 do {
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +0200328 if (time_after(jiffies, timeout)) {
Arik Nemtsov05285cf2010-11-12 17:15:03 +0200329 wl1271_debug(DEBUG_CMD, "timeout waiting for event %d",
330 (int)mask);
Luciano Coelho99d84c12010-03-26 12:53:20 +0200331 return -ETIMEDOUT;
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +0200332 }
Luciano Coelho99d84c12010-03-26 12:53:20 +0200333
334 msleep(1);
335
336 /* read from both event fields */
337 wl1271_read(wl, wl->mbox_ptr[0], &events_vector,
338 sizeof(events_vector), false);
339 event = events_vector & mask;
340 wl1271_read(wl, wl->mbox_ptr[1], &events_vector,
341 sizeof(events_vector), false);
342 event |= events_vector & mask;
343 } while (!event);
344
345 return 0;
346}
347
Arik Nemtsov05285cf2010-11-12 17:15:03 +0200348static int wl1271_cmd_wait_for_event(struct wl1271 *wl, u32 mask)
349{
350 int ret;
351
352 ret = wl1271_cmd_wait_for_event_or_timeout(wl, mask);
353 if (ret != 0) {
Ido Yarivbaacb9a2011-06-06 14:57:05 +0300354 wl12xx_queue_recovery_work(wl);
Arik Nemtsov05285cf2010-11-12 17:15:03 +0200355 return ret;
356 }
357
358 return 0;
359}
360
Eliad Peller784f6942011-10-05 11:55:39 +0200361int wl12xx_cmd_role_enable(struct wl1271 *wl, u8 *addr, u8 role_type,
362 u8 *role_id)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300363{
Eliad Pellerc690ec82011-08-14 13:17:07 +0300364 struct wl12xx_cmd_role_enable *cmd;
365 int ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300366
Eliad Pellerc690ec82011-08-14 13:17:07 +0300367 wl1271_debug(DEBUG_CMD, "cmd role enable");
368
369 if (WARN_ON(*role_id != WL12XX_INVALID_ROLE_ID))
370 return -EBUSY;
371
372 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
373 if (!cmd) {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300374 ret = -ENOMEM;
375 goto out;
376 }
377
Eliad Pellerc690ec82011-08-14 13:17:07 +0300378 /* get role id */
379 cmd->role_id = find_first_zero_bit(wl->roles_map, WL12XX_MAX_ROLES);
380 if (cmd->role_id >= WL12XX_MAX_ROLES) {
381 ret = -EBUSY;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300382 goto out_free;
383 }
384
Eliad Peller784f6942011-10-05 11:55:39 +0200385 memcpy(cmd->mac_address, addr, ETH_ALEN);
Eliad Pellerc690ec82011-08-14 13:17:07 +0300386 cmd->role_type = role_type;
387
388 ret = wl1271_cmd_send(wl, CMD_ROLE_ENABLE, cmd, sizeof(*cmd), 0);
389 if (ret < 0) {
390 wl1271_error("failed to initiate cmd role enable");
391 goto out_free;
392 }
393
394 __set_bit(cmd->role_id, wl->roles_map);
395 *role_id = cmd->role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300396
397out_free:
Eliad Pellerc690ec82011-08-14 13:17:07 +0300398 kfree(cmd);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300399
400out:
401 return ret;
402}
403
Eliad Pellerc690ec82011-08-14 13:17:07 +0300404int wl12xx_cmd_role_disable(struct wl1271 *wl, u8 *role_id)
405{
406 struct wl12xx_cmd_role_disable *cmd;
407 int ret;
408
409 wl1271_debug(DEBUG_CMD, "cmd role disable");
410
411 if (WARN_ON(*role_id == WL12XX_INVALID_ROLE_ID))
412 return -ENOENT;
413
414 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
415 if (!cmd) {
416 ret = -ENOMEM;
417 goto out;
418 }
419 cmd->role_id = *role_id;
420
421 ret = wl1271_cmd_send(wl, CMD_ROLE_DISABLE, cmd, sizeof(*cmd), 0);
422 if (ret < 0) {
423 wl1271_error("failed to initiate cmd role disable");
424 goto out_free;
425 }
426
427 __clear_bit(*role_id, wl->roles_map);
428 *role_id = WL12XX_INVALID_ROLE_ID;
429
430out_free:
431 kfree(cmd);
432
433out:
434 return ret;
435}
436
437static int wl12xx_allocate_link(struct wl1271 *wl, u8 *hlid)
438{
439 u8 link = find_first_zero_bit(wl->links_map, WL12XX_MAX_LINKS);
440 if (link >= WL12XX_MAX_LINKS)
441 return -EBUSY;
442
443 __set_bit(link, wl->links_map);
444 *hlid = link;
445 return 0;
446}
447
448static void wl12xx_free_link(struct wl1271 *wl, u8 *hlid)
449{
450 if (*hlid == WL12XX_INVALID_LINK_ID)
451 return;
452
453 __clear_bit(*hlid, wl->links_map);
454 *hlid = WL12XX_INVALID_LINK_ID;
455}
456
Arik Nemtsov712e9bf2011-08-14 13:17:20 +0300457static int wl12xx_get_new_session_id(struct wl1271 *wl)
458{
459 if (wl->session_counter >= SESSION_COUNTER_MAX)
460 wl->session_counter = 0;
461
462 wl->session_counter++;
463
464 return wl->session_counter;
465}
466
Eliad Peller04e80792011-08-14 13:17:09 +0300467int wl12xx_cmd_role_start_dev(struct wl1271 *wl)
468{
469 struct wl12xx_cmd_role_start *cmd;
470 int ret;
471
472 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
473 if (!cmd) {
474 ret = -ENOMEM;
475 goto out;
476 }
477
478 wl1271_debug(DEBUG_CMD, "cmd role start dev %d", wl->dev_role_id);
479
480 cmd->role_id = wl->dev_role_id;
481 if (wl->band == IEEE80211_BAND_5GHZ)
482 cmd->band = WL12XX_BAND_5GHZ;
483 cmd->channel = wl->channel;
484
485 if (wl->dev_hlid == WL12XX_INVALID_LINK_ID) {
486 ret = wl12xx_allocate_link(wl, &wl->dev_hlid);
487 if (ret)
488 goto out_free;
489 }
490 cmd->device.hlid = wl->dev_hlid;
491 cmd->device.session = wl->session_counter;
492
493 wl1271_debug(DEBUG_CMD, "role start: roleid=%d, hlid=%d, session=%d",
494 cmd->role_id, cmd->device.hlid, cmd->device.session);
495
496 ret = wl1271_cmd_send(wl, CMD_ROLE_START, cmd, sizeof(*cmd), 0);
497 if (ret < 0) {
498 wl1271_error("failed to initiate cmd role enable");
499 goto err_hlid;
500 }
501
502 goto out_free;
503
504err_hlid:
505 /* clear links on error */
506 __clear_bit(wl->dev_hlid, wl->links_map);
507 wl->dev_hlid = WL12XX_INVALID_LINK_ID;
508
509
510out_free:
511 kfree(cmd);
512
513out:
514 return ret;
515}
516
517int wl12xx_cmd_role_stop_dev(struct wl1271 *wl)
518{
519 struct wl12xx_cmd_role_stop *cmd;
520 int ret;
521
522 if (WARN_ON(wl->dev_hlid == WL12XX_INVALID_LINK_ID))
523 return -EINVAL;
524
525 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
526 if (!cmd) {
527 ret = -ENOMEM;
528 goto out;
529 }
530
531 wl1271_debug(DEBUG_CMD, "cmd role stop dev");
532
533 cmd->role_id = wl->dev_role_id;
534 cmd->disc_type = DISCONNECT_IMMEDIATE;
535 cmd->reason = cpu_to_le16(WLAN_REASON_UNSPECIFIED);
536
537 ret = wl1271_cmd_send(wl, CMD_ROLE_STOP, cmd, sizeof(*cmd), 0);
538 if (ret < 0) {
539 wl1271_error("failed to initiate cmd role stop");
540 goto out_free;
541 }
542
543 ret = wl1271_cmd_wait_for_event(wl, DISCONNECT_EVENT_COMPLETE_ID);
544 if (ret < 0) {
545 wl1271_error("cmd role stop dev event completion error");
546 goto out_free;
547 }
548
549 wl12xx_free_link(wl, &wl->dev_hlid);
550
551out_free:
552 kfree(cmd);
553
554out:
555 return ret;
556}
557
Eliad Pellerc690ec82011-08-14 13:17:07 +0300558int wl12xx_cmd_role_start_sta(struct wl1271 *wl)
559{
560 struct wl12xx_cmd_role_start *cmd;
561 int ret;
562
563 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
564 if (!cmd) {
565 ret = -ENOMEM;
566 goto out;
567 }
568
569 wl1271_debug(DEBUG_CMD, "cmd role start sta %d", wl->role_id);
570
571 cmd->role_id = wl->role_id;
572 if (wl->band == IEEE80211_BAND_5GHZ)
573 cmd->band = WL12XX_BAND_5GHZ;
574 cmd->channel = wl->channel;
575 cmd->sta.basic_rate_set = cpu_to_le32(wl->basic_rate_set);
576 cmd->sta.beacon_interval = cpu_to_le16(wl->beacon_int);
577 cmd->sta.ssid_type = WL12XX_SSID_TYPE_ANY;
578 cmd->sta.ssid_len = wl->ssid_len;
579 memcpy(cmd->sta.ssid, wl->ssid, wl->ssid_len);
580 memcpy(cmd->sta.bssid, wl->bssid, ETH_ALEN);
581 cmd->sta.local_rates = cpu_to_le32(wl->rate_set);
582
583 if (wl->sta_hlid == WL12XX_INVALID_LINK_ID) {
584 ret = wl12xx_allocate_link(wl, &wl->sta_hlid);
585 if (ret)
586 goto out_free;
587 }
588 cmd->sta.hlid = wl->sta_hlid;
Arik Nemtsov712e9bf2011-08-14 13:17:20 +0300589 cmd->sta.session = wl12xx_get_new_session_id(wl);
Eliad Pellerc690ec82011-08-14 13:17:07 +0300590 cmd->sta.remote_rates = cpu_to_le32(wl->rate_set);
591
592 wl1271_debug(DEBUG_CMD, "role start: roleid=%d, hlid=%d, session=%d "
593 "basic_rate_set: 0x%x, remote_rates: 0x%x",
594 wl->role_id, cmd->sta.hlid, cmd->sta.session,
595 wl->basic_rate_set, wl->rate_set);
596
597 ret = wl1271_cmd_send(wl, CMD_ROLE_START, cmd, sizeof(*cmd), 0);
598 if (ret < 0) {
599 wl1271_error("failed to initiate cmd role start sta");
600 goto err_hlid;
601 }
602
603 goto out_free;
604
605err_hlid:
606 /* clear links on error. */
607 wl12xx_free_link(wl, &wl->sta_hlid);
608
609out_free:
610 kfree(cmd);
611
612out:
613 return ret;
614}
615
Eliad Peller31cd3ae2011-08-14 13:17:25 +0300616/* use this function to stop ibss as well */
Eliad Pellerc690ec82011-08-14 13:17:07 +0300617int wl12xx_cmd_role_stop_sta(struct wl1271 *wl)
618{
619 struct wl12xx_cmd_role_stop *cmd;
620 int ret;
621
622 if (WARN_ON(wl->sta_hlid == WL12XX_INVALID_LINK_ID))
623 return -EINVAL;
624
625 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
626 if (!cmd) {
627 ret = -ENOMEM;
628 goto out;
629 }
630
631 wl1271_debug(DEBUG_CMD, "cmd role stop sta %d", wl->role_id);
632
633 cmd->role_id = wl->role_id;
634 cmd->disc_type = DISCONNECT_IMMEDIATE;
635 cmd->reason = cpu_to_le16(WLAN_REASON_UNSPECIFIED);
636
637 ret = wl1271_cmd_send(wl, CMD_ROLE_STOP, cmd, sizeof(*cmd), 0);
638 if (ret < 0) {
639 wl1271_error("failed to initiate cmd role stop sta");
640 goto out_free;
641 }
642
Eliad Pellerc690ec82011-08-14 13:17:07 +0300643 wl12xx_free_link(wl, &wl->sta_hlid);
644
645out_free:
646 kfree(cmd);
647
648out:
649 return ret;
650}
651
652int wl12xx_cmd_role_start_ap(struct wl1271 *wl)
653{
654 struct wl12xx_cmd_role_start *cmd;
655 struct ieee80211_bss_conf *bss_conf = &wl->vif->bss_conf;
656 int ret;
657
658 wl1271_debug(DEBUG_CMD, "cmd role start ap %d", wl->role_id);
659
Arik Nemtsov68eaaf62011-09-03 20:22:03 +0300660 /* trying to use hidden SSID with an old hostapd version */
661 if (wl->ssid_len == 0 && !bss_conf->hidden_ssid) {
662 wl1271_error("got a null SSID from beacon/bss");
Eliad Pellerc690ec82011-08-14 13:17:07 +0300663 ret = -EINVAL;
664 goto out;
665 }
666
667 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
668 if (!cmd) {
669 ret = -ENOMEM;
670 goto out;
671 }
672
Arik Nemtsove51ae9b2011-08-14 13:17:21 +0300673 ret = wl12xx_allocate_link(wl, &wl->ap_global_hlid);
674 if (ret < 0)
675 goto out_free;
676
677 ret = wl12xx_allocate_link(wl, &wl->ap_bcast_hlid);
678 if (ret < 0)
679 goto out_free_global;
680
Eliad Pellerc690ec82011-08-14 13:17:07 +0300681 cmd->role_id = wl->role_id;
682 cmd->ap.aging_period = cpu_to_le16(wl->conf.tx.ap_aging_period);
683 cmd->ap.bss_index = WL1271_AP_BSS_INDEX;
Arik Nemtsove51ae9b2011-08-14 13:17:21 +0300684 cmd->ap.global_hlid = wl->ap_global_hlid;
685 cmd->ap.broadcast_hlid = wl->ap_bcast_hlid;
Eliad Pellerc690ec82011-08-14 13:17:07 +0300686 cmd->ap.basic_rate_set = cpu_to_le32(wl->basic_rate_set);
687 cmd->ap.beacon_interval = cpu_to_le16(wl->beacon_int);
688 cmd->ap.dtim_interval = bss_conf->dtim_period;
689 cmd->ap.beacon_expiry = WL1271_AP_DEF_BEACON_EXP;
690 cmd->channel = wl->channel;
Arik Nemtsov68eaaf62011-09-03 20:22:03 +0300691
692 if (!bss_conf->hidden_ssid) {
693 /* take the SSID from the beacon for backward compatibility */
694 cmd->ap.ssid_type = WL12XX_SSID_TYPE_PUBLIC;
695 cmd->ap.ssid_len = wl->ssid_len;
696 memcpy(cmd->ap.ssid, wl->ssid, wl->ssid_len);
697 } else {
698 cmd->ap.ssid_type = WL12XX_SSID_TYPE_HIDDEN;
699 cmd->ap.ssid_len = bss_conf->ssid_len;
700 memcpy(cmd->ap.ssid, bss_conf->ssid, bss_conf->ssid_len);
701 }
702
Eliad Pellerc690ec82011-08-14 13:17:07 +0300703 cmd->ap.local_rates = cpu_to_le32(0xffffffff);
704
705 switch (wl->band) {
706 case IEEE80211_BAND_2GHZ:
707 cmd->band = RADIO_BAND_2_4GHZ;
708 break;
709 case IEEE80211_BAND_5GHZ:
710 cmd->band = RADIO_BAND_5GHZ;
711 break;
712 default:
713 wl1271_warning("ap start - unknown band: %d", (int)wl->band);
714 cmd->band = RADIO_BAND_2_4GHZ;
715 break;
716 }
717
718 ret = wl1271_cmd_send(wl, CMD_ROLE_START, cmd, sizeof(*cmd), 0);
719 if (ret < 0) {
720 wl1271_error("failed to initiate cmd role start ap");
Arik Nemtsove51ae9b2011-08-14 13:17:21 +0300721 goto out_free_bcast;
Eliad Pellerc690ec82011-08-14 13:17:07 +0300722 }
723
Arik Nemtsove51ae9b2011-08-14 13:17:21 +0300724 goto out_free;
725
726out_free_bcast:
727 wl12xx_free_link(wl, &wl->ap_bcast_hlid);
728
729out_free_global:
730 wl12xx_free_link(wl, &wl->ap_global_hlid);
731
Eliad Pellerc690ec82011-08-14 13:17:07 +0300732out_free:
733 kfree(cmd);
734
735out:
736 return ret;
737}
738
739int wl12xx_cmd_role_stop_ap(struct wl1271 *wl)
740{
741 struct wl12xx_cmd_role_stop *cmd;
742 int ret;
743
744 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
745 if (!cmd) {
746 ret = -ENOMEM;
747 goto out;
748 }
749
750 wl1271_debug(DEBUG_CMD, "cmd role stop ap %d", wl->role_id);
751
752 cmd->role_id = wl->role_id;
753
754 ret = wl1271_cmd_send(wl, CMD_ROLE_STOP, cmd, sizeof(*cmd), 0);
755 if (ret < 0) {
756 wl1271_error("failed to initiate cmd role stop ap");
757 goto out_free;
758 }
759
Arik Nemtsove51ae9b2011-08-14 13:17:21 +0300760 wl12xx_free_link(wl, &wl->ap_bcast_hlid);
761 wl12xx_free_link(wl, &wl->ap_global_hlid);
762
Eliad Pellerc690ec82011-08-14 13:17:07 +0300763out_free:
764 kfree(cmd);
765
766out:
767 return ret;
768}
769
Eliad Peller31cd3ae2011-08-14 13:17:25 +0300770int wl12xx_cmd_role_start_ibss(struct wl1271 *wl)
771{
772 struct wl12xx_cmd_role_start *cmd;
773 struct ieee80211_bss_conf *bss_conf = &wl->vif->bss_conf;
774 int ret;
775
776 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
777 if (!cmd) {
778 ret = -ENOMEM;
779 goto out;
780 }
781
782 wl1271_debug(DEBUG_CMD, "cmd role start ibss %d", wl->role_id);
783
784 cmd->role_id = wl->role_id;
785 if (wl->band == IEEE80211_BAND_5GHZ)
786 cmd->band = WL12XX_BAND_5GHZ;
787 cmd->channel = wl->channel;
788 cmd->ibss.basic_rate_set = cpu_to_le32(wl->basic_rate_set);
789 cmd->ibss.beacon_interval = cpu_to_le16(wl->beacon_int);
790 cmd->ibss.dtim_interval = bss_conf->dtim_period;
791 cmd->ibss.ssid_type = WL12XX_SSID_TYPE_ANY;
792 cmd->ibss.ssid_len = wl->ssid_len;
793 memcpy(cmd->ibss.ssid, wl->ssid, wl->ssid_len);
794 memcpy(cmd->ibss.bssid, wl->bssid, ETH_ALEN);
795 cmd->sta.local_rates = cpu_to_le32(wl->rate_set);
796
797 if (wl->sta_hlid == WL12XX_INVALID_LINK_ID) {
798 ret = wl12xx_allocate_link(wl, &wl->sta_hlid);
799 if (ret)
800 goto out_free;
801 }
802 cmd->ibss.hlid = wl->sta_hlid;
803 cmd->ibss.remote_rates = cpu_to_le32(wl->rate_set);
804
805 wl1271_debug(DEBUG_CMD, "role start: roleid=%d, hlid=%d, session=%d "
806 "basic_rate_set: 0x%x, remote_rates: 0x%x",
807 wl->role_id, cmd->sta.hlid, cmd->sta.session,
808 wl->basic_rate_set, wl->rate_set);
809
810 wl1271_debug(DEBUG_CMD, "wl->bssid = %pM", wl->bssid);
811
812 ret = wl1271_cmd_send(wl, CMD_ROLE_START, cmd, sizeof(*cmd), 0);
813 if (ret < 0) {
814 wl1271_error("failed to initiate cmd role enable");
815 goto err_hlid;
816 }
817
818 goto out_free;
819
820err_hlid:
821 /* clear links on error. */
822 wl12xx_free_link(wl, &wl->sta_hlid);
823
824out_free:
825 kfree(cmd);
826
827out:
828 return ret;
829}
830
Eliad Pellerc690ec82011-08-14 13:17:07 +0300831
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300832/**
833 * send test command to firmware
834 *
835 * @wl: wl struct
836 * @buf: buffer containing the command, with all headers, must work with dma
837 * @len: length of the buffer
838 * @answer: is answer needed
839 */
840int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer)
841{
842 int ret;
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200843 size_t res_len = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300844
845 wl1271_debug(DEBUG_CMD, "cmd test");
846
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200847 if (answer)
848 res_len = buf_len;
849
850 ret = wl1271_cmd_send(wl, CMD_TEST, buf, buf_len, res_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300851
852 if (ret < 0) {
853 wl1271_warning("TEST command failed");
854 return ret;
855 }
856
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200857 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300858}
859
860/**
861 * read acx from firmware
862 *
863 * @wl: wl struct
864 * @id: acx id
865 * @buf: buffer for the response, including all headers, must work with dma
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300866 * @len: length of buf
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300867 */
868int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len)
869{
870 struct acx_header *acx = buf;
871 int ret;
872
873 wl1271_debug(DEBUG_CMD, "cmd interrogate");
874
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300875 acx->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300876
877 /* payload length, does not include any headers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300878 acx->len = cpu_to_le16(len - sizeof(*acx));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300879
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200880 ret = wl1271_cmd_send(wl, CMD_INTERROGATE, acx, sizeof(*acx), len);
881 if (ret < 0)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300882 wl1271_error("INTERROGATE command failed");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300883
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300884 return ret;
885}
886
887/**
888 * write acx value to firmware
889 *
890 * @wl: wl struct
891 * @id: acx id
892 * @buf: buffer containing acx, including all headers, must work with dma
893 * @len: length of buf
894 */
895int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len)
896{
897 struct acx_header *acx = buf;
898 int ret;
899
Eliad Pellerc91d0602011-08-25 18:10:57 +0300900 wl1271_debug(DEBUG_CMD, "cmd configure (%d)", id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300901
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300902 acx->id = cpu_to_le16(id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300903
904 /* payload length, does not include any headers */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300905 acx->len = cpu_to_le16(len - sizeof(*acx));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300906
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200907 ret = wl1271_cmd_send(wl, CMD_CONFIGURE, acx, len, 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300908 if (ret < 0) {
909 wl1271_warning("CONFIGURE command NOK");
910 return ret;
911 }
912
913 return 0;
914}
915
Luciano Coelho94210892009-12-11 15:40:55 +0200916int wl1271_cmd_data_path(struct wl1271 *wl, bool enable)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300917{
918 struct cmd_enabledisable_path *cmd;
919 int ret;
920 u16 cmd_rx, cmd_tx;
921
922 wl1271_debug(DEBUG_CMD, "cmd data path");
923
924 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
925 if (!cmd) {
926 ret = -ENOMEM;
927 goto out;
928 }
929
Luciano Coelho94210892009-12-11 15:40:55 +0200930 /* the channel here is only used for calibration, so hardcoded to 1 */
931 cmd->channel = 1;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300932
933 if (enable) {
934 cmd_rx = CMD_ENABLE_RX;
935 cmd_tx = CMD_ENABLE_TX;
936 } else {
937 cmd_rx = CMD_DISABLE_RX;
938 cmd_tx = CMD_DISABLE_TX;
939 }
940
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200941 ret = wl1271_cmd_send(wl, cmd_rx, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300942 if (ret < 0) {
943 wl1271_error("rx %s cmd for channel %d failed",
Luciano Coelho94210892009-12-11 15:40:55 +0200944 enable ? "start" : "stop", cmd->channel);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300945 goto out;
946 }
947
948 wl1271_debug(DEBUG_BOOT, "rx %s cmd channel %d",
Luciano Coelho94210892009-12-11 15:40:55 +0200949 enable ? "start" : "stop", cmd->channel);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300950
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200951 ret = wl1271_cmd_send(wl, cmd_tx, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300952 if (ret < 0) {
953 wl1271_error("tx %s cmd for channel %d failed",
Luciano Coelho94210892009-12-11 15:40:55 +0200954 enable ? "start" : "stop", cmd->channel);
Juuso Oikarinen1b00f2b2010-03-26 12:53:17 +0200955 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300956 }
957
958 wl1271_debug(DEBUG_BOOT, "tx %s cmd channel %d",
Luciano Coelho94210892009-12-11 15:40:55 +0200959 enable ? "start" : "stop", cmd->channel);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300960
961out:
962 kfree(cmd);
963 return ret;
964}
965
Eliad Pellerc8bde242011-02-02 09:59:35 +0200966int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300967{
968 struct wl1271_cmd_ps_params *ps_params = NULL;
969 int ret = 0;
970
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300971 wl1271_debug(DEBUG_CMD, "cmd set ps mode");
972
973 ps_params = kzalloc(sizeof(*ps_params), GFP_KERNEL);
974 if (!ps_params) {
975 ret = -ENOMEM;
976 goto out;
977 }
978
Eliad Pellerc690ec82011-08-14 13:17:07 +0300979 ps_params->role_id = wl->role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300980 ps_params->ps_mode = ps_mode;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300981
982 ret = wl1271_cmd_send(wl, CMD_SET_PS_MODE, ps_params,
Juuso Oikarinenfa867e72009-11-02 20:22:13 +0200983 sizeof(*ps_params), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300984 if (ret < 0) {
985 wl1271_error("cmd set_ps_mode failed");
986 goto out;
987 }
988
989out:
990 kfree(ps_params);
991 return ret;
992}
993
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300994int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300995 void *buf, size_t buf_len, int index, u32 rates)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300996{
997 struct wl1271_cmd_template_set *cmd;
998 int ret = 0;
999
1000 wl1271_debug(DEBUG_CMD, "cmd template_set %d", template_id);
1001
1002 WARN_ON(buf_len > WL1271_CMD_TEMPL_MAX_SIZE);
1003 buf_len = min_t(size_t, buf_len, WL1271_CMD_TEMPL_MAX_SIZE);
1004
1005 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1006 if (!cmd) {
1007 ret = -ENOMEM;
1008 goto out;
1009 }
1010
1011 cmd->len = cpu_to_le16(buf_len);
1012 cmd->template_type = template_id;
Juuso Oikarinen606c1482010-04-01 11:38:21 +03001013 cmd->enabled_rates = cpu_to_le32(rates);
Arik Nemtsov1e05a812010-10-16 17:44:51 +02001014 cmd->short_retry_limit = wl->conf.tx.tmpl_short_retry_limit;
1015 cmd->long_retry_limit = wl->conf.tx.tmpl_long_retry_limit;
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +02001016 cmd->index = index;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001017
1018 if (buf)
1019 memcpy(cmd->template_data, buf, buf_len);
1020
Juuso Oikarinenfa867e72009-11-02 20:22:13 +02001021 ret = wl1271_cmd_send(wl, CMD_SET_TEMPLATE, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001022 if (ret < 0) {
1023 wl1271_warning("cmd set_template failed: %d", ret);
1024 goto out_free;
1025 }
1026
1027out_free:
1028 kfree(cmd);
1029
1030out:
1031 return ret;
1032}
1033
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001034int wl1271_cmd_build_null_data(struct wl1271 *wl)
1035{
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +02001036 struct sk_buff *skb = NULL;
1037 int size;
1038 void *ptr;
1039 int ret = -ENOMEM;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001040
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001041
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +02001042 if (wl->bss_type == BSS_TYPE_IBSS) {
1043 size = sizeof(struct wl12xx_null_data_template);
1044 ptr = NULL;
1045 } else {
1046 skb = ieee80211_nullfunc_get(wl->hw, wl->vif);
1047 if (!skb)
1048 goto out;
1049 size = skb->len;
1050 ptr = skb->data;
1051 }
1052
Juuso Oikarinen606c1482010-04-01 11:38:21 +03001053 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_NULL_DATA, ptr, size, 0,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +02001054 wl->basic_rate);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001055
Kalle Valo899e6e62010-03-18 12:26:34 +02001056out:
1057 dev_kfree_skb(skb);
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +02001058 if (ret)
1059 wl1271_warning("cmd buld null data failed %d", ret);
1060
Kalle Valo899e6e62010-03-18 12:26:34 +02001061 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001062
1063}
1064
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +02001065int wl1271_cmd_build_klv_null_data(struct wl1271 *wl)
1066{
1067 struct sk_buff *skb = NULL;
1068 int ret = -ENOMEM;
1069
1070 skb = ieee80211_nullfunc_get(wl->hw, wl->vif);
1071 if (!skb)
1072 goto out;
1073
1074 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_KLV,
1075 skb->data, skb->len,
Juuso Oikarinen606c1482010-04-01 11:38:21 +03001076 CMD_TEMPL_KLV_IDX_NULL_DATA,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +02001077 wl->basic_rate);
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +02001078
1079out:
1080 dev_kfree_skb(skb);
1081 if (ret)
1082 wl1271_warning("cmd build klv null data failed %d", ret);
1083
1084 return ret;
1085
1086}
1087
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001088int wl1271_cmd_build_ps_poll(struct wl1271 *wl, u16 aid)
1089{
Kalle Valo899e6e62010-03-18 12:26:34 +02001090 struct sk_buff *skb;
1091 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001092
Kalle Valo899e6e62010-03-18 12:26:34 +02001093 skb = ieee80211_pspoll_get(wl->hw, wl->vif);
1094 if (!skb)
1095 goto out;
Juuso Oikarinenc3fea192009-10-08 21:56:22 +03001096
Kalle Valo899e6e62010-03-18 12:26:34 +02001097 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_PS_POLL, skb->data,
Juuso Oikarinen849923f2010-07-08 17:49:59 +03001098 skb->len, 0, wl->basic_rate_set);
Juuso Oikarinenc3fea192009-10-08 21:56:22 +03001099
Kalle Valo899e6e62010-03-18 12:26:34 +02001100out:
1101 dev_kfree_skb(skb);
1102 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001103}
1104
Kalle Valo818e3062010-03-18 12:26:35 +02001105int wl1271_cmd_build_probe_req(struct wl1271 *wl,
1106 const u8 *ssid, size_t ssid_len,
1107 const u8 *ie, size_t ie_len, u8 band)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001108{
Kalle Valo818e3062010-03-18 12:26:35 +02001109 struct sk_buff *skb;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +03001110 int ret;
Eliad Pelleraf7fbb22011-09-19 13:51:42 +03001111 u32 rate;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001112
Kalle Valo818e3062010-03-18 12:26:35 +02001113 skb = ieee80211_probereq_get(wl->hw, wl->vif, ssid, ssid_len,
1114 ie, ie_len);
1115 if (!skb) {
1116 ret = -ENOMEM;
1117 goto out;
1118 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001119
Kalle Valo818e3062010-03-18 12:26:35 +02001120 wl1271_dump(DEBUG_SCAN, "PROBE REQ: ", skb->data, skb->len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001121
Eliad Pelleraf7fbb22011-09-19 13:51:42 +03001122 rate = wl1271_tx_min_rate_get(wl, wl->bitrate_masks[band]);
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +03001123 if (band == IEEE80211_BAND_2GHZ)
1124 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4,
Eliad Pelleraf7fbb22011-09-19 13:51:42 +03001125 skb->data, skb->len, 0, rate);
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +03001126 else
1127 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5,
Eliad Pelleraf7fbb22011-09-19 13:51:42 +03001128 skb->data, skb->len, 0, rate);
Kalle Valo818e3062010-03-18 12:26:35 +02001129
1130out:
1131 dev_kfree_skb(skb);
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +03001132 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001133}
1134
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02001135struct sk_buff *wl1271_cmd_build_ap_probe_req(struct wl1271 *wl,
1136 struct sk_buff *skb)
1137{
1138 int ret;
Eliad Pelleraf7fbb22011-09-19 13:51:42 +03001139 u32 rate;
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02001140
1141 if (!skb)
1142 skb = ieee80211_ap_probereq_get(wl->hw, wl->vif);
1143 if (!skb)
1144 goto out;
1145
1146 wl1271_dump(DEBUG_SCAN, "AP PROBE REQ: ", skb->data, skb->len);
1147
Eliad Pelleraf7fbb22011-09-19 13:51:42 +03001148 rate = wl1271_tx_min_rate_get(wl, wl->bitrate_masks[wl->band]);
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02001149 if (wl->band == IEEE80211_BAND_2GHZ)
1150 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4,
Eliad Pelleraf7fbb22011-09-19 13:51:42 +03001151 skb->data, skb->len, 0, rate);
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02001152 else
1153 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5,
Eliad Pelleraf7fbb22011-09-19 13:51:42 +03001154 skb->data, skb->len, 0, rate);
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02001155
1156 if (ret < 0)
1157 wl1271_error("Unable to set ap probe request template.");
1158
1159out:
1160 return skb;
1161}
1162
Eliad Pellerc5312772010-12-09 11:31:27 +02001163int wl1271_cmd_build_arp_rsp(struct wl1271 *wl, __be32 ip_addr)
1164{
1165 int ret;
1166 struct wl12xx_arp_rsp_template tmpl;
1167 struct ieee80211_hdr_3addr *hdr;
1168 struct arphdr *arp_hdr;
1169
1170 memset(&tmpl, 0, sizeof(tmpl));
1171
1172 /* mac80211 header */
1173 hdr = &tmpl.hdr;
1174 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
1175 IEEE80211_STYPE_DATA |
1176 IEEE80211_FCTL_TODS);
1177 memcpy(hdr->addr1, wl->vif->bss_conf.bssid, ETH_ALEN);
1178 memcpy(hdr->addr2, wl->vif->addr, ETH_ALEN);
1179 memset(hdr->addr3, 0xff, ETH_ALEN);
1180
1181 /* llc layer */
1182 memcpy(tmpl.llc_hdr, rfc1042_header, sizeof(rfc1042_header));
Eliad Peller6177eae2010-12-22 12:38:52 +01001183 tmpl.llc_type = cpu_to_be16(ETH_P_ARP);
Eliad Pellerc5312772010-12-09 11:31:27 +02001184
1185 /* arp header */
1186 arp_hdr = &tmpl.arp_hdr;
Eliad Peller6177eae2010-12-22 12:38:52 +01001187 arp_hdr->ar_hrd = cpu_to_be16(ARPHRD_ETHER);
1188 arp_hdr->ar_pro = cpu_to_be16(ETH_P_IP);
Eliad Pellerc5312772010-12-09 11:31:27 +02001189 arp_hdr->ar_hln = ETH_ALEN;
1190 arp_hdr->ar_pln = 4;
Eliad Peller6177eae2010-12-22 12:38:52 +01001191 arp_hdr->ar_op = cpu_to_be16(ARPOP_REPLY);
Eliad Pellerc5312772010-12-09 11:31:27 +02001192
1193 /* arp payload */
1194 memcpy(tmpl.sender_hw, wl->vif->addr, ETH_ALEN);
1195 tmpl.sender_ip = ip_addr;
1196
1197 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_ARP_RSP,
1198 &tmpl, sizeof(tmpl), 0,
1199 wl->basic_rate);
1200
1201 return ret;
1202}
1203
Eliad Peller784f6942011-10-05 11:55:39 +02001204int wl1271_build_qos_null_data(struct wl1271 *wl, struct ieee80211_vif *vif)
Kalle Valo023e0822010-03-18 12:26:36 +02001205{
1206 struct ieee80211_qos_hdr template;
1207
1208 memset(&template, 0, sizeof(template));
1209
1210 memcpy(template.addr1, wl->bssid, ETH_ALEN);
Eliad Peller784f6942011-10-05 11:55:39 +02001211 memcpy(template.addr2, vif->addr, ETH_ALEN);
Kalle Valo023e0822010-03-18 12:26:36 +02001212 memcpy(template.addr3, wl->bssid, ETH_ALEN);
1213
1214 template.frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
1215 IEEE80211_STYPE_QOS_NULLFUNC |
1216 IEEE80211_FCTL_TODS);
1217
1218 /* FIXME: not sure what priority to use here */
1219 template.qos_ctrl = cpu_to_le16(0);
1220
1221 return wl1271_cmd_template_set(wl, CMD_TEMPL_QOS_NULL_DATA, &template,
Juuso Oikarinen606c1482010-04-01 11:38:21 +03001222 sizeof(template), 0,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +02001223 wl->basic_rate);
Kalle Valo023e0822010-03-18 12:26:36 +02001224}
1225
Eliad Pellerc690ec82011-08-14 13:17:07 +03001226int wl12xx_cmd_set_default_wep_key(struct wl1271 *wl, u8 id, u8 hlid)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001227{
Eliad Pellerc690ec82011-08-14 13:17:07 +03001228 struct wl1271_cmd_set_keys *cmd;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001229 int ret = 0;
1230
1231 wl1271_debug(DEBUG_CMD, "cmd set_default_wep_key %d", id);
1232
1233 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1234 if (!cmd) {
1235 ret = -ENOMEM;
1236 goto out;
1237 }
1238
Eliad Pellerc690ec82011-08-14 13:17:07 +03001239 cmd->hlid = hlid;
1240 cmd->key_id = id;
1241 cmd->lid_key_type = WEP_DEFAULT_LID_TYPE;
Luciano Coelhod0f63b22009-10-15 10:33:29 +03001242 cmd->key_action = cpu_to_le16(KEY_SET_ID);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001243 cmd->key_type = KEY_WEP;
1244
Juuso Oikarinenfa867e72009-11-02 20:22:13 +02001245 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001246 if (ret < 0) {
1247 wl1271_warning("cmd set_default_wep_key failed: %d", ret);
1248 goto out;
1249 }
1250
1251out:
1252 kfree(cmd);
1253
1254 return ret;
1255}
1256
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001257int wl1271_cmd_set_sta_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +03001258 u8 key_size, const u8 *key, const u8 *addr,
1259 u32 tx_seq_32, u16 tx_seq_16)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001260{
Eliad Pellerc690ec82011-08-14 13:17:07 +03001261 struct wl1271_cmd_set_keys *cmd;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001262 int ret = 0;
1263
Eliad Pellerb42f0682011-08-14 13:17:24 +03001264 /* hlid might have already been deleted */
1265 if (wl->sta_hlid == WL12XX_INVALID_LINK_ID)
1266 return 0;
1267
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001268 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1269 if (!cmd) {
1270 ret = -ENOMEM;
1271 goto out;
1272 }
1273
Eliad Pellerc690ec82011-08-14 13:17:07 +03001274 cmd->hlid = wl->sta_hlid;
1275
1276 if (key_type == KEY_WEP)
1277 cmd->lid_key_type = WEP_DEFAULT_LID_TYPE;
1278 else if (is_broadcast_ether_addr(addr))
1279 cmd->lid_key_type = BROADCAST_LID_TYPE;
1280 else
1281 cmd->lid_key_type = UNICAST_LID_TYPE;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001282
Luciano Coelhod0f63b22009-10-15 10:33:29 +03001283 cmd->key_action = cpu_to_le16(action);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001284 cmd->key_size = key_size;
1285 cmd->key_type = key_type;
1286
Luciano Coelhod0f63b22009-10-15 10:33:29 +03001287 cmd->ac_seq_num16[0] = cpu_to_le16(tx_seq_16);
1288 cmd->ac_seq_num32[0] = cpu_to_le32(tx_seq_32);
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +03001289
Eliad Pellerc690ec82011-08-14 13:17:07 +03001290 cmd->key_id = id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001291
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001292 if (key_type == KEY_TKIP) {
1293 /*
1294 * We get the key in the following form:
1295 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
1296 * but the target is expecting:
1297 * TKIP - RX MIC - TX MIC
1298 */
1299 memcpy(cmd->key, key, 16);
1300 memcpy(cmd->key + 16, key + 24, 8);
1301 memcpy(cmd->key + 24, key + 16, 8);
1302
1303 } else {
1304 memcpy(cmd->key, key, key_size);
1305 }
1306
1307 wl1271_dump(DEBUG_CRYPT, "TARGET KEY: ", cmd, sizeof(*cmd));
1308
Juuso Oikarinenfa867e72009-11-02 20:22:13 +02001309 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001310 if (ret < 0) {
1311 wl1271_warning("could not set keys");
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +02001312 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001313 }
1314
1315out:
1316 kfree(cmd);
1317
1318 return ret;
1319}
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001320
Eliad Pellerc690ec82011-08-14 13:17:07 +03001321/*
1322 * TODO: merge with sta/ibss into 1 set_key function.
1323 * note there are slight diffs
1324 */
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001325int wl1271_cmd_set_ap_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
1326 u8 key_size, const u8 *key, u8 hlid, u32 tx_seq_32,
1327 u16 tx_seq_16)
1328{
Eliad Pellerc690ec82011-08-14 13:17:07 +03001329 struct wl1271_cmd_set_keys *cmd;
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001330 int ret = 0;
1331 u8 lid_type;
1332
1333 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1334 if (!cmd)
1335 return -ENOMEM;
1336
Arik Nemtsove51ae9b2011-08-14 13:17:21 +03001337 if (hlid == wl->ap_bcast_hlid) {
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001338 if (key_type == KEY_WEP)
1339 lid_type = WEP_DEFAULT_LID_TYPE;
1340 else
1341 lid_type = BROADCAST_LID_TYPE;
1342 } else {
1343 lid_type = UNICAST_LID_TYPE;
1344 }
1345
1346 wl1271_debug(DEBUG_CRYPT, "ap key action: %d id: %d lid: %d type: %d"
1347 " hlid: %d", (int)action, (int)id, (int)lid_type,
1348 (int)key_type, (int)hlid);
1349
1350 cmd->lid_key_type = lid_type;
1351 cmd->hlid = hlid;
1352 cmd->key_action = cpu_to_le16(action);
1353 cmd->key_size = key_size;
1354 cmd->key_type = key_type;
1355 cmd->key_id = id;
1356 cmd->ac_seq_num16[0] = cpu_to_le16(tx_seq_16);
1357 cmd->ac_seq_num32[0] = cpu_to_le32(tx_seq_32);
1358
1359 if (key_type == KEY_TKIP) {
1360 /*
1361 * We get the key in the following form:
1362 * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes)
1363 * but the target is expecting:
1364 * TKIP - RX MIC - TX MIC
1365 */
1366 memcpy(cmd->key, key, 16);
1367 memcpy(cmd->key + 16, key + 24, 8);
1368 memcpy(cmd->key + 24, key + 16, 8);
1369 } else {
1370 memcpy(cmd->key, key, key_size);
1371 }
1372
1373 wl1271_dump(DEBUG_CRYPT, "TARGET AP KEY: ", cmd, sizeof(*cmd));
1374
1375 ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0);
1376 if (ret < 0) {
1377 wl1271_warning("could not set ap keys");
1378 goto out;
1379 }
1380
1381out:
1382 kfree(cmd);
1383 return ret;
1384}
1385
Eliad Pellerb67476e2011-08-14 13:17:23 +03001386int wl12xx_cmd_set_peer_state(struct wl1271 *wl, u8 hlid)
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001387{
Eliad Pellerc690ec82011-08-14 13:17:07 +03001388 struct wl12xx_cmd_set_peer_state *cmd;
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001389 int ret = 0;
1390
Eliad Pellerb67476e2011-08-14 13:17:23 +03001391 wl1271_debug(DEBUG_CMD, "cmd set peer state (hlid=%d)", hlid);
Luciano Coelho25a7dc62009-10-12 15:08:42 +03001392
1393 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1394 if (!cmd) {
1395 ret = -ENOMEM;
1396 goto out;
1397 }
1398
Eliad Pellerb67476e2011-08-14 13:17:23 +03001399 cmd->hlid = hlid;
Juuso Oikarinenbe86cbe2010-05-27 12:53:01 +03001400 cmd->state = WL1271_CMD_STA_STATE_CONNECTED;
1401
Eliad Pellerc690ec82011-08-14 13:17:07 +03001402 ret = wl1271_cmd_send(wl, CMD_SET_PEER_STATE, cmd, sizeof(*cmd), 0);
Juuso Oikarinenbe86cbe2010-05-27 12:53:01 +03001403 if (ret < 0) {
Eliad Pellerc690ec82011-08-14 13:17:07 +03001404 wl1271_error("failed to send set peer state command");
Juuso Oikarinenbe86cbe2010-05-27 12:53:01 +03001405 goto out_free;
1406 }
1407
1408out_free:
1409 kfree(cmd);
1410
1411out:
1412 return ret;
1413}
Arik Nemtsov99d5ad72011-08-14 13:17:28 +03001414
Eliad Pellerc690ec82011-08-14 13:17:07 +03001415int wl12xx_cmd_add_peer(struct wl1271 *wl, struct ieee80211_sta *sta, u8 hlid)
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001416{
Eliad Pellerc690ec82011-08-14 13:17:07 +03001417 struct wl12xx_cmd_add_peer *cmd;
Eliad Peller1ec23f72011-08-25 14:26:54 +03001418 int i, ret;
Arik Nemtsov99d5ad72011-08-14 13:17:28 +03001419 u32 sta_rates;
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001420
Eliad Pellerc690ec82011-08-14 13:17:07 +03001421 wl1271_debug(DEBUG_CMD, "cmd add peer %d", (int)hlid);
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001422
1423 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1424 if (!cmd) {
1425 ret = -ENOMEM;
1426 goto out;
1427 }
1428
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001429 memcpy(cmd->addr, sta->addr, ETH_ALEN);
1430 cmd->bss_index = WL1271_AP_BSS_INDEX;
1431 cmd->aid = sta->aid;
1432 cmd->hlid = hlid;
Eliad Peller1ec23f72011-08-25 14:26:54 +03001433 cmd->sp_len = sta->max_sp;
Arik Nemtsovb4d38db2011-06-27 23:58:46 +03001434 cmd->wmm = sta->wme ? 1 : 0;
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001435
Eliad Peller1ec23f72011-08-25 14:26:54 +03001436 for (i = 0; i < NUM_ACCESS_CATEGORIES_COPY; i++)
1437 if (sta->wme && (sta->uapsd_queues & BIT(i)))
1438 cmd->psd_type[i] = WL1271_PSD_UPSD_TRIGGER;
1439 else
1440 cmd->psd_type[i] = WL1271_PSD_LEGACY;
1441
Arik Nemtsov99d5ad72011-08-14 13:17:28 +03001442 sta_rates = sta->supp_rates[wl->band];
1443 if (sta->ht_cap.ht_supported)
1444 sta_rates |= sta->ht_cap.mcs.rx_mask[0] << HW_HT_RATES_OFFSET;
1445
1446 cmd->supported_rates =
Eliad Pelleraf7fbb22011-09-19 13:51:42 +03001447 cpu_to_le32(wl1271_tx_enabled_rates_get(wl, sta_rates,
1448 wl->band));
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001449
Eliad Peller1ec23f72011-08-25 14:26:54 +03001450 wl1271_debug(DEBUG_CMD, "new peer rates=0x%x queues=0x%x",
1451 cmd->supported_rates, sta->uapsd_queues);
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001452
Eliad Pellerc690ec82011-08-14 13:17:07 +03001453 ret = wl1271_cmd_send(wl, CMD_ADD_PEER, cmd, sizeof(*cmd), 0);
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001454 if (ret < 0) {
Eliad Pellerc690ec82011-08-14 13:17:07 +03001455 wl1271_error("failed to initiate cmd add peer");
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001456 goto out_free;
1457 }
1458
1459out_free:
1460 kfree(cmd);
1461
1462out:
1463 return ret;
1464}
1465
Eliad Pellerc690ec82011-08-14 13:17:07 +03001466int wl12xx_cmd_remove_peer(struct wl1271 *wl, u8 hlid)
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001467{
Eliad Pellerc690ec82011-08-14 13:17:07 +03001468 struct wl12xx_cmd_remove_peer *cmd;
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001469 int ret;
1470
Eliad Pellerc690ec82011-08-14 13:17:07 +03001471 wl1271_debug(DEBUG_CMD, "cmd remove peer %d", (int)hlid);
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001472
1473 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1474 if (!cmd) {
1475 ret = -ENOMEM;
1476 goto out;
1477 }
1478
1479 cmd->hlid = hlid;
1480 /* We never send a deauth, mac80211 is in charge of this */
1481 cmd->reason_opcode = 0;
1482 cmd->send_deauth_flag = 0;
1483
Eliad Pellerc690ec82011-08-14 13:17:07 +03001484 ret = wl1271_cmd_send(wl, CMD_REMOVE_PEER, cmd, sizeof(*cmd), 0);
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001485 if (ret < 0) {
Eliad Pellerc690ec82011-08-14 13:17:07 +03001486 wl1271_error("failed to initiate cmd remove peer");
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001487 goto out_free;
1488 }
1489
Arik Nemtsov05285cf2010-11-12 17:15:03 +02001490 /*
1491 * We are ok with a timeout here. The event is sometimes not sent
1492 * due to a firmware bug.
1493 */
Eliad Pellerc690ec82011-08-14 13:17:07 +03001494 wl1271_cmd_wait_for_event_or_timeout(wl,
1495 PEER_REMOVE_COMPLETE_EVENT_ID);
Arik Nemtsov98bdaab2010-10-16 18:08:58 +02001496
1497out_free:
1498 kfree(cmd);
1499
1500out:
1501 return ret;
1502}
Ido Yariv95dac04f2011-06-06 14:57:06 +03001503
1504int wl12xx_cmd_config_fwlog(struct wl1271 *wl)
1505{
1506 struct wl12xx_cmd_config_fwlog *cmd;
1507 int ret = 0;
1508
1509 wl1271_debug(DEBUG_CMD, "cmd config firmware logger");
1510
1511 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1512 if (!cmd) {
1513 ret = -ENOMEM;
1514 goto out;
1515 }
1516
1517 cmd->logger_mode = wl->conf.fwlog.mode;
1518 cmd->log_severity = wl->conf.fwlog.severity;
1519 cmd->timestamp = wl->conf.fwlog.timestamp;
1520 cmd->output = wl->conf.fwlog.output;
1521 cmd->threshold = wl->conf.fwlog.threshold;
1522
1523 ret = wl1271_cmd_send(wl, CMD_CONFIG_FWLOGGER, cmd, sizeof(*cmd), 0);
1524 if (ret < 0) {
1525 wl1271_error("failed to send config firmware logger command");
1526 goto out_free;
1527 }
1528
1529out_free:
1530 kfree(cmd);
1531
1532out:
1533 return ret;
1534}
1535
1536int wl12xx_cmd_start_fwlog(struct wl1271 *wl)
1537{
1538 struct wl12xx_cmd_start_fwlog *cmd;
1539 int ret = 0;
1540
1541 wl1271_debug(DEBUG_CMD, "cmd start firmware logger");
1542
1543 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1544 if (!cmd) {
1545 ret = -ENOMEM;
1546 goto out;
1547 }
1548
1549 ret = wl1271_cmd_send(wl, CMD_START_FWLOGGER, cmd, sizeof(*cmd), 0);
1550 if (ret < 0) {
1551 wl1271_error("failed to send start firmware logger command");
1552 goto out_free;
1553 }
1554
1555out_free:
1556 kfree(cmd);
1557
1558out:
1559 return ret;
1560}
1561
1562int wl12xx_cmd_stop_fwlog(struct wl1271 *wl)
1563{
1564 struct wl12xx_cmd_stop_fwlog *cmd;
1565 int ret = 0;
1566
1567 wl1271_debug(DEBUG_CMD, "cmd stop firmware logger");
1568
1569 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1570 if (!cmd) {
1571 ret = -ENOMEM;
1572 goto out;
1573 }
1574
1575 ret = wl1271_cmd_send(wl, CMD_STOP_FWLOGGER, cmd, sizeof(*cmd), 0);
1576 if (ret < 0) {
1577 wl1271_error("failed to send stop firmware logger command");
1578 goto out_free;
1579 }
1580
1581out_free:
1582 kfree(cmd);
1583
1584out:
1585 return ret;
1586}
Eliad Pellera7cba382011-08-14 13:17:16 +03001587
1588static int wl12xx_cmd_roc(struct wl1271 *wl, u8 role_id)
1589{
1590 struct wl12xx_cmd_roc *cmd;
1591 int ret = 0;
1592
1593 wl1271_debug(DEBUG_CMD, "cmd roc %d (%d)", wl->channel, role_id);
1594
1595 if (WARN_ON(role_id == WL12XX_INVALID_ROLE_ID))
1596 return -EINVAL;
1597
1598 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1599 if (!cmd) {
1600 ret = -ENOMEM;
1601 goto out;
1602 }
1603
1604 cmd->role_id = role_id;
1605 cmd->channel = wl->channel;
1606 switch (wl->band) {
1607 case IEEE80211_BAND_2GHZ:
1608 cmd->band = RADIO_BAND_2_4GHZ;
1609 break;
1610 case IEEE80211_BAND_5GHZ:
1611 cmd->band = RADIO_BAND_5GHZ;
1612 break;
1613 default:
1614 wl1271_error("roc - unknown band: %d", (int)wl->band);
1615 ret = -EINVAL;
1616 goto out_free;
1617 }
1618
1619
1620 ret = wl1271_cmd_send(wl, CMD_REMAIN_ON_CHANNEL, cmd, sizeof(*cmd), 0);
1621 if (ret < 0) {
1622 wl1271_error("failed to send ROC command");
1623 goto out_free;
1624 }
1625
1626out_free:
1627 kfree(cmd);
1628
1629out:
1630 return ret;
1631}
1632
1633static int wl12xx_cmd_croc(struct wl1271 *wl, u8 role_id)
1634{
1635 struct wl12xx_cmd_croc *cmd;
1636 int ret = 0;
1637
1638 wl1271_debug(DEBUG_CMD, "cmd croc (%d)", role_id);
1639
1640 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1641 if (!cmd) {
1642 ret = -ENOMEM;
1643 goto out;
1644 }
1645 cmd->role_id = role_id;
1646
1647 ret = wl1271_cmd_send(wl, CMD_CANCEL_REMAIN_ON_CHANNEL, cmd,
1648 sizeof(*cmd), 0);
1649 if (ret < 0) {
1650 wl1271_error("failed to send ROC command");
1651 goto out_free;
1652 }
1653
1654out_free:
1655 kfree(cmd);
1656
1657out:
1658 return ret;
1659}
Eliad Peller251c1772011-08-14 13:17:17 +03001660
1661int wl12xx_roc(struct wl1271 *wl, u8 role_id)
1662{
1663 int ret = 0;
1664
1665 if (WARN_ON(test_bit(role_id, wl->roc_map)))
1666 return 0;
1667
1668 ret = wl12xx_cmd_roc(wl, role_id);
1669 if (ret < 0)
1670 goto out;
1671
1672 ret = wl1271_cmd_wait_for_event(wl,
1673 REMAIN_ON_CHANNEL_COMPLETE_EVENT_ID);
1674 if (ret < 0) {
1675 wl1271_error("cmd roc event completion error");
1676 goto out;
1677 }
1678
1679 __set_bit(role_id, wl->roc_map);
1680out:
1681 return ret;
1682}
1683
1684int wl12xx_croc(struct wl1271 *wl, u8 role_id)
1685{
1686 int ret = 0;
1687
1688 if (WARN_ON(!test_bit(role_id, wl->roc_map)))
1689 return 0;
1690
1691 ret = wl12xx_cmd_croc(wl, role_id);
1692 if (ret < 0)
1693 goto out;
1694
1695 __clear_bit(role_id, wl->roc_map);
1696out:
1697 return ret;
1698}
Shahar Levi6d158ff2011-09-08 13:01:33 +03001699
1700int wl12xx_cmd_channel_switch(struct wl1271 *wl,
1701 struct ieee80211_channel_switch *ch_switch)
1702{
1703 struct wl12xx_cmd_channel_switch *cmd;
1704 int ret;
1705
1706 wl1271_debug(DEBUG_ACX, "cmd channel switch");
1707
1708 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1709 if (!cmd) {
1710 ret = -ENOMEM;
1711 goto out;
1712 }
1713
1714 cmd->channel = ch_switch->channel->hw_value;
1715 cmd->switch_time = ch_switch->count;
1716 cmd->tx_suspend = ch_switch->block_tx;
1717 cmd->flush = 0; /* this value is ignored by the FW */
1718
1719 ret = wl1271_cmd_send(wl, CMD_CHANNEL_SWITCH, cmd, sizeof(*cmd), 0);
1720 if (ret < 0) {
1721 wl1271_error("failed to send channel switch command");
1722 goto out_free;
1723 }
1724
1725out_free:
1726 kfree(cmd);
1727
1728out:
1729 return ret;
1730}
1731
1732int wl12xx_cmd_stop_channel_switch(struct wl1271 *wl)
1733{
1734 struct wl12xx_cmd_stop_channel_switch *cmd;
1735 int ret;
1736
1737 wl1271_debug(DEBUG_ACX, "cmd stop channel switch");
1738
1739 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1740 if (!cmd) {
1741 ret = -ENOMEM;
1742 goto out;
1743 }
1744
1745 ret = wl1271_cmd_send(wl, CMD_STOP_CHANNEL_SWICTH, cmd, sizeof(*cmd), 0);
1746 if (ret < 0) {
1747 wl1271_error("failed to stop channel switch command");
1748 goto out_free;
1749 }
1750
1751out_free:
1752 kfree(cmd);
1753
1754out:
1755 return ret;
1756}