blob: 7bd4fdf8334937f6ee1acefb990ff600c50f25a7 [file] [log] [blame]
Michael Wueff1a592007-09-25 18:11:01 -07001/*
2 * Common code for mac80211 Prism54 drivers
3 *
4 * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
5 * Copyright (c) 2007, Christian Lamparter <chunkeey@web.de>
Johannes Bergc12abae2008-10-14 16:56:51 +02006 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
Michael Wueff1a592007-09-25 18:11:01 -07007 *
John W. Linville27df6052008-10-22 16:41:55 -04008 * Based on:
9 * - the islsm (softmac prism54) driver, which is:
10 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
11 * - stlc45xx driver
Chr94834072008-10-29 22:39:50 +010012 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
Michael Wueff1a592007-09-25 18:11:01 -070013 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18
19#include <linux/init.h>
20#include <linux/firmware.h>
21#include <linux/etherdevice.h>
22
23#include <net/mac80211.h>
Christian Lamparterd8cd7ef2009-03-23 15:37:45 +010024#ifdef CONFIG_P54_LEDS
Christian Lamparterd0b45ae2009-03-06 01:02:04 +010025#include <linux/leds.h>
Christian Lamparterd8cd7ef2009-03-23 15:37:45 +010026#endif /* CONFIG_P54_LEDS */
Michael Wueff1a592007-09-25 18:11:01 -070027
28#include "p54.h"
29#include "p54common.h"
30
Christian Lamparter25900ef2008-11-29 22:34:37 +010031static int modparam_nohwcrypt;
32module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
33MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
Michael Wueff1a592007-09-25 18:11:01 -070034MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>");
35MODULE_DESCRIPTION("Softmac Prism54 common code");
36MODULE_LICENSE("GPL");
37MODULE_ALIAS("prism54common");
38
Christian Lamparter1b997532008-09-06 14:25:58 +020039static struct ieee80211_rate p54_bgrates[] = {
Johannes Berg8318d782008-01-24 19:38:38 +010040 { .bitrate = 10, .hw_value = 0, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
41 { .bitrate = 20, .hw_value = 1, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
42 { .bitrate = 55, .hw_value = 2, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
43 { .bitrate = 110, .hw_value = 3, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
44 { .bitrate = 60, .hw_value = 4, },
45 { .bitrate = 90, .hw_value = 5, },
46 { .bitrate = 120, .hw_value = 6, },
47 { .bitrate = 180, .hw_value = 7, },
48 { .bitrate = 240, .hw_value = 8, },
49 { .bitrate = 360, .hw_value = 9, },
50 { .bitrate = 480, .hw_value = 10, },
51 { .bitrate = 540, .hw_value = 11, },
52};
53
Christian Lamparter1b997532008-09-06 14:25:58 +020054static struct ieee80211_channel p54_bgchannels[] = {
Johannes Berg8318d782008-01-24 19:38:38 +010055 { .center_freq = 2412, .hw_value = 1, },
56 { .center_freq = 2417, .hw_value = 2, },
57 { .center_freq = 2422, .hw_value = 3, },
58 { .center_freq = 2427, .hw_value = 4, },
59 { .center_freq = 2432, .hw_value = 5, },
60 { .center_freq = 2437, .hw_value = 6, },
61 { .center_freq = 2442, .hw_value = 7, },
62 { .center_freq = 2447, .hw_value = 8, },
63 { .center_freq = 2452, .hw_value = 9, },
64 { .center_freq = 2457, .hw_value = 10, },
65 { .center_freq = 2462, .hw_value = 11, },
66 { .center_freq = 2467, .hw_value = 12, },
67 { .center_freq = 2472, .hw_value = 13, },
68 { .center_freq = 2484, .hw_value = 14, },
69};
70
Johannes Bergc2976ab2008-02-20 12:08:12 +010071static struct ieee80211_supported_band band_2GHz = {
Christian Lamparter1b997532008-09-06 14:25:58 +020072 .channels = p54_bgchannels,
73 .n_channels = ARRAY_SIZE(p54_bgchannels),
74 .bitrates = p54_bgrates,
75 .n_bitrates = ARRAY_SIZE(p54_bgrates),
76};
77
78static struct ieee80211_rate p54_arates[] = {
79 { .bitrate = 60, .hw_value = 4, },
80 { .bitrate = 90, .hw_value = 5, },
81 { .bitrate = 120, .hw_value = 6, },
82 { .bitrate = 180, .hw_value = 7, },
83 { .bitrate = 240, .hw_value = 8, },
84 { .bitrate = 360, .hw_value = 9, },
85 { .bitrate = 480, .hw_value = 10, },
86 { .bitrate = 540, .hw_value = 11, },
87};
88
89static struct ieee80211_channel p54_achannels[] = {
90 { .center_freq = 4920 },
91 { .center_freq = 4940 },
92 { .center_freq = 4960 },
93 { .center_freq = 4980 },
94 { .center_freq = 5040 },
95 { .center_freq = 5060 },
96 { .center_freq = 5080 },
97 { .center_freq = 5170 },
98 { .center_freq = 5180 },
99 { .center_freq = 5190 },
100 { .center_freq = 5200 },
101 { .center_freq = 5210 },
102 { .center_freq = 5220 },
103 { .center_freq = 5230 },
104 { .center_freq = 5240 },
105 { .center_freq = 5260 },
106 { .center_freq = 5280 },
107 { .center_freq = 5300 },
108 { .center_freq = 5320 },
109 { .center_freq = 5500 },
110 { .center_freq = 5520 },
111 { .center_freq = 5540 },
112 { .center_freq = 5560 },
113 { .center_freq = 5580 },
114 { .center_freq = 5600 },
115 { .center_freq = 5620 },
116 { .center_freq = 5640 },
117 { .center_freq = 5660 },
118 { .center_freq = 5680 },
119 { .center_freq = 5700 },
120 { .center_freq = 5745 },
121 { .center_freq = 5765 },
122 { .center_freq = 5785 },
123 { .center_freq = 5805 },
124 { .center_freq = 5825 },
125};
126
127static struct ieee80211_supported_band band_5GHz = {
128 .channels = p54_achannels,
129 .n_channels = ARRAY_SIZE(p54_achannels),
130 .bitrates = p54_arates,
131 .n_bitrates = ARRAY_SIZE(p54_arates),
Johannes Berg8318d782008-01-24 19:38:38 +0100132};
133
Christian Lamparter4e416a62008-09-01 22:48:41 +0200134int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw)
Michael Wueff1a592007-09-25 18:11:01 -0700135{
136 struct p54_common *priv = dev->priv;
137 struct bootrec_exp_if *exp_if;
138 struct bootrec *bootrec;
139 u32 *data = (u32 *)fw->data;
140 u32 *end_data = (u32 *)fw->data + (fw->size >> 2);
141 u8 *fw_version = NULL;
142 size_t len;
143 int i;
Larry Finger51fb80f2009-01-03 12:45:12 -0600144 int maxlen;
Michael Wueff1a592007-09-25 18:11:01 -0700145
146 if (priv->rx_start)
Christian Lamparter4e416a62008-09-01 22:48:41 +0200147 return 0;
Michael Wueff1a592007-09-25 18:11:01 -0700148
149 while (data < end_data && *data)
150 data++;
151
152 while (data < end_data && !*data)
153 data++;
154
155 bootrec = (struct bootrec *) data;
156
157 while (bootrec->data <= end_data &&
158 (bootrec->data + (len = le32_to_cpu(bootrec->len))) <= end_data) {
159 u32 code = le32_to_cpu(bootrec->code);
160 switch (code) {
161 case BR_CODE_COMPONENT_ID:
Larry Finger1f1c0e32008-09-25 14:54:28 -0500162 priv->fw_interface = be32_to_cpup((__be32 *)
163 bootrec->data);
Christian Lamparter2b808482008-09-04 12:29:38 +0200164 switch (priv->fw_interface) {
Michael Wueff1a592007-09-25 18:11:01 -0700165 case FW_LM86:
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100166 case FW_LM20:
167 case FW_LM87: {
168 char *iftype = (char *)bootrec->data;
169 printk(KERN_INFO "%s: p54 detected a LM%c%c "
170 "firmware\n",
171 wiphy_name(dev->wiphy),
172 iftype[2], iftype[3]);
Michael Wueff1a592007-09-25 18:11:01 -0700173 break;
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100174 }
175 case FW_FMAC:
Michael Wueff1a592007-09-25 18:11:01 -0700176 default:
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100177 printk(KERN_ERR "%s: unsupported firmware\n",
178 wiphy_name(dev->wiphy));
179 return -ENODEV;
Michael Wueff1a592007-09-25 18:11:01 -0700180 }
181 break;
182 case BR_CODE_COMPONENT_VERSION:
183 /* 24 bytes should be enough for all firmwares */
184 if (strnlen((unsigned char*)bootrec->data, 24) < 24)
185 fw_version = (unsigned char*)bootrec->data;
186 break;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200187 case BR_CODE_DESCR: {
188 struct bootrec_desc *desc =
189 (struct bootrec_desc *)bootrec->data;
190 priv->rx_start = le32_to_cpu(desc->rx_start);
Michael Wueff1a592007-09-25 18:11:01 -0700191 /* FIXME add sanity checking */
Christian Lamparter4e416a62008-09-01 22:48:41 +0200192 priv->rx_end = le32_to_cpu(desc->rx_end) - 0x3500;
193 priv->headroom = desc->headroom;
194 priv->tailroom = desc->tailroom;
Christian Lamparter25900ef2008-11-29 22:34:37 +0100195 priv->privacy_caps = desc->privacy_caps;
196 priv->rx_keycache_size = desc->rx_keycache_size;
Larry Finger1f1c0e32008-09-25 14:54:28 -0500197 if (le32_to_cpu(bootrec->len) == 11)
Larry Finger2e20cc32008-10-09 17:38:52 -0700198 priv->rx_mtu = le16_to_cpu(desc->rx_mtu);
Christian Lamparter4e416a62008-09-01 22:48:41 +0200199 else
200 priv->rx_mtu = (size_t)
201 0x620 - priv->tx_hdr_len;
Larry Finger51fb80f2009-01-03 12:45:12 -0600202 maxlen = priv->tx_hdr_len + /* USB devices */
203 sizeof(struct p54_rx_data) +
204 4 + /* rx alignment */
205 IEEE80211_MAX_FRAG_THRESHOLD;
206 if (priv->rx_mtu > maxlen && PAGE_SIZE == 4096) {
207 printk(KERN_INFO "p54: rx_mtu reduced from %d "
208 "to %d\n", priv->rx_mtu,
209 maxlen);
210 priv->rx_mtu = maxlen;
211 }
Michael Wueff1a592007-09-25 18:11:01 -0700212 break;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200213 }
Michael Wueff1a592007-09-25 18:11:01 -0700214 case BR_CODE_EXPOSED_IF:
215 exp_if = (struct bootrec_exp_if *) bootrec->data;
216 for (i = 0; i < (len * sizeof(*exp_if) / 4); i++)
Al Virodc73c622007-12-21 23:49:02 -0500217 if (exp_if[i].if_id == cpu_to_le16(0x1a))
Michael Wueff1a592007-09-25 18:11:01 -0700218 priv->fw_var = le16_to_cpu(exp_if[i].variant);
219 break;
220 case BR_CODE_DEPENDENT_IF:
221 break;
222 case BR_CODE_END_OF_BRA:
223 case LEGACY_BR_CODE_END_OF_BRA:
224 end_data = NULL;
225 break;
226 default:
227 break;
228 }
229 bootrec = (struct bootrec *)&bootrec->data[len];
230 }
231
232 if (fw_version)
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100233 printk(KERN_INFO "%s: FW rev %s - Softmac protocol %x.%x\n",
234 wiphy_name(dev->wiphy), fw_version,
235 priv->fw_var >> 8, priv->fw_var & 0xff);
Michael Wueff1a592007-09-25 18:11:01 -0700236
Christian Lamparter9a8675d2008-10-18 23:04:15 +0200237 if (priv->fw_var < 0x500)
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100238 printk(KERN_INFO "%s: you are using an obsolete firmware. "
Christian Lamparter9a8675d2008-10-18 23:04:15 +0200239 "visit http://wireless.kernel.org/en/users/Drivers/p54 "
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100240 "and grab one for \"kernel >= 2.6.28\"!\n",
241 wiphy_name(dev->wiphy));
Christian Lamparter9a8675d2008-10-18 23:04:15 +0200242
Michael Wueff1a592007-09-25 18:11:01 -0700243 if (priv->fw_var >= 0x300) {
244 /* Firmware supports QoS, use it! */
Christian Lampartera15bd002008-12-21 20:54:34 +0100245 priv->tx_stats[P54_QUEUE_AC_VO].limit = 3;
246 priv->tx_stats[P54_QUEUE_AC_VI].limit = 4;
247 priv->tx_stats[P54_QUEUE_AC_BE].limit = 3;
248 priv->tx_stats[P54_QUEUE_AC_BK].limit = 2;
249 dev->queues = P54_QUEUE_AC_NUM;
Michael Wueff1a592007-09-25 18:11:01 -0700250 }
Christian Lamparter4e416a62008-09-01 22:48:41 +0200251
Christian Lamparter6dfe9a82009-04-11 03:58:01 +0200252 if (!modparam_nohwcrypt) {
Christian Lamparter25900ef2008-11-29 22:34:37 +0100253 printk(KERN_INFO "%s: cryptographic accelerator "
254 "WEP:%s, TKIP:%s, CCMP:%s\n",
255 wiphy_name(dev->wiphy),
256 (priv->privacy_caps & BR_DESC_PRIV_CAP_WEP) ? "YES" :
257 "no", (priv->privacy_caps & (BR_DESC_PRIV_CAP_TKIP |
258 BR_DESC_PRIV_CAP_MICHAEL)) ? "YES" : "no",
259 (priv->privacy_caps & BR_DESC_PRIV_CAP_AESCCMP) ?
260 "YES" : "no");
261
Christian Lamparter6dfe9a82009-04-11 03:58:01 +0200262 if (priv->rx_keycache_size) {
263 /*
264 * NOTE:
265 *
266 * The firmware provides at most 255 (0 - 254) slots
267 * for keys which are then used to offload decryption.
268 * As a result the 255 entry (aka 0xff) can be used
269 * safely by the driver to mark keys that didn't fit
270 * into the full cache. This trick saves us from
271 * keeping a extra list for uploaded keys.
272 */
273
274 priv->used_rxkeys = kzalloc(BITS_TO_LONGS(
275 priv->rx_keycache_size), GFP_KERNEL);
276
277 if (!priv->used_rxkeys)
278 return -ENOMEM;
279 }
280 }
281
Christian Lamparter4e416a62008-09-01 22:48:41 +0200282 return 0;
Michael Wueff1a592007-09-25 18:11:01 -0700283}
284EXPORT_SYMBOL_GPL(p54_parse_firmware);
285
Christian Lamparter154e3af2008-08-23 22:15:25 +0200286static int p54_convert_rev0(struct ieee80211_hw *dev,
287 struct pda_pa_curve_data *curve_data)
Michael Wueff1a592007-09-25 18:11:01 -0700288{
289 struct p54_common *priv = dev->priv;
Christian Lamparter154e3af2008-08-23 22:15:25 +0200290 struct p54_pa_curve_data_sample *dst;
291 struct pda_pa_curve_data_sample_rev0 *src;
Michael Wueff1a592007-09-25 18:11:01 -0700292 size_t cd_len = sizeof(*curve_data) +
Christian Lamparter154e3af2008-08-23 22:15:25 +0200293 (curve_data->points_per_channel*sizeof(*dst) + 2) *
Michael Wueff1a592007-09-25 18:11:01 -0700294 curve_data->channels;
295 unsigned int i, j;
296 void *source, *target;
297
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100298 priv->curve_data = kmalloc(sizeof(*priv->curve_data) + cd_len,
299 GFP_KERNEL);
Michael Wueff1a592007-09-25 18:11:01 -0700300 if (!priv->curve_data)
301 return -ENOMEM;
302
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100303 priv->curve_data->entries = curve_data->channels;
304 priv->curve_data->entry_size = sizeof(__le16) +
305 sizeof(*dst) * curve_data->points_per_channel;
306 priv->curve_data->offset = offsetof(struct pda_pa_curve_data, data);
307 priv->curve_data->len = cd_len;
308 memcpy(priv->curve_data->data, curve_data, sizeof(*curve_data));
Michael Wueff1a592007-09-25 18:11:01 -0700309 source = curve_data->data;
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100310 target = ((struct pda_pa_curve_data *) priv->curve_data->data)->data;
Michael Wueff1a592007-09-25 18:11:01 -0700311 for (i = 0; i < curve_data->channels; i++) {
312 __le16 *freq = source;
313 source += sizeof(__le16);
314 *((__le16 *)target) = *freq;
315 target += sizeof(__le16);
316 for (j = 0; j < curve_data->points_per_channel; j++) {
Christian Lamparter154e3af2008-08-23 22:15:25 +0200317 dst = target;
318 src = source;
Michael Wueff1a592007-09-25 18:11:01 -0700319
Christian Lamparter154e3af2008-08-23 22:15:25 +0200320 dst->rf_power = src->rf_power;
321 dst->pa_detector = src->pa_detector;
322 dst->data_64qam = src->pcv;
Michael Wueff1a592007-09-25 18:11:01 -0700323 /* "invent" the points for the other modulations */
324#define SUB(x,y) (u8)((x) - (y)) > (x) ? 0 : (x) - (y)
Christian Lamparter154e3af2008-08-23 22:15:25 +0200325 dst->data_16qam = SUB(src->pcv, 12);
326 dst->data_qpsk = SUB(dst->data_16qam, 12);
327 dst->data_bpsk = SUB(dst->data_qpsk, 12);
328 dst->data_barker = SUB(dst->data_bpsk, 14);
Michael Wueff1a592007-09-25 18:11:01 -0700329#undef SUB
Christian Lamparter154e3af2008-08-23 22:15:25 +0200330 target += sizeof(*dst);
331 source += sizeof(*src);
Michael Wueff1a592007-09-25 18:11:01 -0700332 }
333 }
334
335 return 0;
336}
337
Christian Lamparter154e3af2008-08-23 22:15:25 +0200338static int p54_convert_rev1(struct ieee80211_hw *dev,
339 struct pda_pa_curve_data *curve_data)
340{
341 struct p54_common *priv = dev->priv;
342 struct p54_pa_curve_data_sample *dst;
343 struct pda_pa_curve_data_sample_rev1 *src;
344 size_t cd_len = sizeof(*curve_data) +
345 (curve_data->points_per_channel*sizeof(*dst) + 2) *
346 curve_data->channels;
347 unsigned int i, j;
348 void *source, *target;
349
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100350 priv->curve_data = kzalloc(cd_len + sizeof(*priv->curve_data),
351 GFP_KERNEL);
Christian Lamparter154e3af2008-08-23 22:15:25 +0200352 if (!priv->curve_data)
353 return -ENOMEM;
354
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100355 priv->curve_data->entries = curve_data->channels;
356 priv->curve_data->entry_size = sizeof(__le16) +
357 sizeof(*dst) * curve_data->points_per_channel;
358 priv->curve_data->offset = offsetof(struct pda_pa_curve_data, data);
359 priv->curve_data->len = cd_len;
360 memcpy(priv->curve_data->data, curve_data, sizeof(*curve_data));
Christian Lamparter154e3af2008-08-23 22:15:25 +0200361 source = curve_data->data;
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100362 target = ((struct pda_pa_curve_data *) priv->curve_data->data)->data;
Christian Lamparter154e3af2008-08-23 22:15:25 +0200363 for (i = 0; i < curve_data->channels; i++) {
364 __le16 *freq = source;
365 source += sizeof(__le16);
366 *((__le16 *)target) = *freq;
367 target += sizeof(__le16);
368 for (j = 0; j < curve_data->points_per_channel; j++) {
369 memcpy(target, source, sizeof(*src));
370
371 target += sizeof(*dst);
372 source += sizeof(*src);
373 }
374 source++;
375 }
376
377 return 0;
378}
379
Christian Lamparter4cc683c2008-10-15 03:30:06 +0200380static const char *p54_rf_chips[] = { "NULL", "Duette3", "Duette2",
381 "Frisbee", "Xbow", "Longbow", "NULL", "NULL" };
Christian Lamparter1b997532008-09-06 14:25:58 +0200382static int p54_init_xbow_synth(struct ieee80211_hw *dev);
Christian Lamparter7cb77072008-09-01 22:48:51 +0200383
Christian Lamparter69ba3e52008-12-14 14:45:30 +0100384static void p54_parse_rssical(struct ieee80211_hw *dev, void *data, int len,
385 u16 type)
386{
387 struct p54_common *priv = dev->priv;
388 int offset = (type == PDR_RSSI_LINEAR_APPROXIMATION_EXTENDED) ? 2 : 0;
389 int entry_size = sizeof(struct pda_rssi_cal_entry) + offset;
390 int num_entries = (type == PDR_RSSI_LINEAR_APPROXIMATION) ? 1 : 2;
391 int i;
392
393 if (len != (entry_size * num_entries)) {
394 printk(KERN_ERR "%s: unknown rssi calibration data packing "
395 " type:(%x) len:%d.\n",
396 wiphy_name(dev->wiphy), type, len);
397
398 print_hex_dump_bytes("rssical:", DUMP_PREFIX_NONE,
399 data, len);
400
401 printk(KERN_ERR "%s: please report this issue.\n",
402 wiphy_name(dev->wiphy));
403 return;
404 }
405
406 for (i = 0; i < num_entries; i++) {
407 struct pda_rssi_cal_entry *cal = data +
408 (offset + i * entry_size);
409 priv->rssical_db[i].mul = (s16) le16_to_cpu(cal->mul);
410 priv->rssical_db[i].add = (s16) le16_to_cpu(cal->add);
411 }
412}
413
Christian Lamparter98a8d1a2008-12-26 21:50:33 +0100414static void p54_parse_default_country(struct ieee80211_hw *dev,
415 void *data, int len)
416{
417 struct pda_country *country;
418
419 if (len != sizeof(*country)) {
420 printk(KERN_ERR "%s: found possible invalid default country "
421 "eeprom entry. (entry size: %d)\n",
422 wiphy_name(dev->wiphy), len);
423
424 print_hex_dump_bytes("country:", DUMP_PREFIX_NONE,
425 data, len);
426
427 printk(KERN_ERR "%s: please report this issue.\n",
428 wiphy_name(dev->wiphy));
429 return;
430 }
431
432 country = (struct pda_country *) data;
433 if (country->flags == PDR_COUNTRY_CERT_CODE_PSEUDO)
434 regulatory_hint(dev->wiphy, country->alpha2);
435 else {
436 /* TODO:
437 * write a shared/common function that converts
438 * "Regulatory domain codes" (802.11-2007 14.8.2.2)
439 * into ISO/IEC 3166-1 alpha2 for regulatory_hint.
440 */
441 }
442}
443
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100444static int p54_convert_output_limits(struct ieee80211_hw *dev,
445 u8 *data, size_t len)
446{
447 struct p54_common *priv = dev->priv;
448
449 if (len < 2)
450 return -EINVAL;
451
452 if (data[0] != 0) {
453 printk(KERN_ERR "%s: unknown output power db revision:%x\n",
454 wiphy_name(dev->wiphy), data[0]);
455 return -EINVAL;
456 }
457
458 if (2 + data[1] * sizeof(struct pda_channel_output_limit) > len)
459 return -EINVAL;
460
461 priv->output_limit = kmalloc(data[1] *
462 sizeof(struct pda_channel_output_limit) +
463 sizeof(*priv->output_limit), GFP_KERNEL);
464
465 if (!priv->output_limit)
466 return -ENOMEM;
467
468 priv->output_limit->offset = 0;
469 priv->output_limit->entries = data[1];
470 priv->output_limit->entry_size =
471 sizeof(struct pda_channel_output_limit);
472 priv->output_limit->len = priv->output_limit->entry_size *
473 priv->output_limit->entries +
474 priv->output_limit->offset;
475
476 memcpy(priv->output_limit->data, &data[2],
477 data[1] * sizeof(struct pda_channel_output_limit));
478
479 return 0;
480}
481
482static struct p54_cal_database *p54_convert_db(struct pda_custom_wrapper *src,
483 size_t total_len)
484{
485 struct p54_cal_database *dst;
486 size_t payload_len, entries, entry_size, offset;
487
488 payload_len = le16_to_cpu(src->len);
489 entries = le16_to_cpu(src->entries);
490 entry_size = le16_to_cpu(src->entry_size);
491 offset = le16_to_cpu(src->offset);
492 if (((entries * entry_size + offset) != payload_len) ||
493 (payload_len + sizeof(*src) != total_len))
494 return NULL;
495
496 dst = kmalloc(sizeof(*dst) + payload_len, GFP_KERNEL);
497 if (!dst)
498 return NULL;
499
500 dst->entries = entries;
501 dst->entry_size = entry_size;
502 dst->offset = offset;
503 dst->len = payload_len;
504
505 memcpy(dst->data, src->data, payload_len);
506 return dst;
507}
508
Christian Lampartercd8d3d32009-01-11 01:18:38 +0100509int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len)
Michael Wueff1a592007-09-25 18:11:01 -0700510{
511 struct p54_common *priv = dev->priv;
512 struct eeprom_pda_wrap *wrap = NULL;
513 struct pda_entry *entry;
Michael Wueff1a592007-09-25 18:11:01 -0700514 unsigned int data_len, entry_len;
515 void *tmp;
516 int err;
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100517 u8 *end = (u8 *)eeprom + len;
Christian Lamparterf2c2e252008-10-25 16:14:14 +0200518 u16 synth = 0;
Michael Wueff1a592007-09-25 18:11:01 -0700519
520 wrap = (struct eeprom_pda_wrap *) eeprom;
Johannes Berg8c282932008-02-29 13:56:33 +0100521 entry = (void *)wrap->data + le16_to_cpu(wrap->len);
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100522
523 /* verify that at least the entry length/code fits */
524 while ((u8 *)entry <= end - sizeof(*entry)) {
Michael Wueff1a592007-09-25 18:11:01 -0700525 entry_len = le16_to_cpu(entry->len);
526 data_len = ((entry_len - 1) << 1);
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100527
528 /* abort if entry exceeds whole structure */
529 if ((u8 *)entry + sizeof(*entry) + data_len > end)
530 break;
531
Michael Wueff1a592007-09-25 18:11:01 -0700532 switch (le16_to_cpu(entry->code)) {
533 case PDR_MAC_ADDRESS:
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100534 if (data_len != ETH_ALEN)
535 break;
Michael Wueff1a592007-09-25 18:11:01 -0700536 SET_IEEE80211_PERM_ADDR(dev, entry->data);
537 break;
538 case PDR_PRISM_PA_CAL_OUTPUT_POWER_LIMITS:
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100539 if (priv->output_limit)
540 break;
541 err = p54_convert_output_limits(dev, entry->data,
542 data_len);
543 if (err)
Michael Wueff1a592007-09-25 18:11:01 -0700544 goto err;
Michael Wueff1a592007-09-25 18:11:01 -0700545 break;
Christian Lamparter154e3af2008-08-23 22:15:25 +0200546 case PDR_PRISM_PA_CAL_CURVE_DATA: {
547 struct pda_pa_curve_data *curve_data =
548 (struct pda_pa_curve_data *)entry->data;
549 if (data_len < sizeof(*curve_data)) {
Michael Wueff1a592007-09-25 18:11:01 -0700550 err = -EINVAL;
551 goto err;
552 }
553
Christian Lamparter154e3af2008-08-23 22:15:25 +0200554 switch (curve_data->cal_method_rev) {
555 case 0:
556 err = p54_convert_rev0(dev, curve_data);
557 break;
558 case 1:
559 err = p54_convert_rev1(dev, curve_data);
560 break;
561 default:
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100562 printk(KERN_ERR "%s: unknown curve data "
Christian Lamparter154e3af2008-08-23 22:15:25 +0200563 "revision %d\n",
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100564 wiphy_name(dev->wiphy),
Christian Lamparter154e3af2008-08-23 22:15:25 +0200565 curve_data->cal_method_rev);
566 err = -ENODEV;
567 break;
Michael Wueff1a592007-09-25 18:11:01 -0700568 }
Christian Lamparter154e3af2008-08-23 22:15:25 +0200569 if (err)
570 goto err;
Chr40ab73c2009-01-19 14:30:26 +0100571 }
572 break;
Michael Wueff1a592007-09-25 18:11:01 -0700573 case PDR_PRISM_ZIF_TX_IQ_CALIBRATION:
574 priv->iq_autocal = kmalloc(data_len, GFP_KERNEL);
575 if (!priv->iq_autocal) {
576 err = -ENOMEM;
577 goto err;
578 }
579
580 memcpy(priv->iq_autocal, entry->data, data_len);
581 priv->iq_autocal_len = data_len / sizeof(struct pda_iq_autocal_entry);
582 break;
Christian Lamparter98a8d1a2008-12-26 21:50:33 +0100583 case PDR_DEFAULT_COUNTRY:
584 p54_parse_default_country(dev, entry->data, data_len);
585 break;
Michael Wueff1a592007-09-25 18:11:01 -0700586 case PDR_INTERFACE_LIST:
587 tmp = entry->data;
588 while ((u8 *)tmp < entry->data + data_len) {
589 struct bootrec_exp_if *exp_if = tmp;
Christian Lamparter4cc683c2008-10-15 03:30:06 +0200590 if (le16_to_cpu(exp_if->if_id) == 0xf)
591 synth = le16_to_cpu(exp_if->variant);
Michael Wueff1a592007-09-25 18:11:01 -0700592 tmp += sizeof(struct bootrec_exp_if);
593 }
594 break;
595 case PDR_HARDWARE_PLATFORM_COMPONENT_ID:
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100596 if (data_len < 2)
597 break;
Michael Wueff1a592007-09-25 18:11:01 -0700598 priv->version = *(u8 *)(entry->data + 1);
599 break;
Christian Lamparter69ba3e52008-12-14 14:45:30 +0100600 case PDR_RSSI_LINEAR_APPROXIMATION:
601 case PDR_RSSI_LINEAR_APPROXIMATION_DUAL_BAND:
602 case PDR_RSSI_LINEAR_APPROXIMATION_EXTENDED:
603 p54_parse_rssical(dev, entry->data, data_len,
604 le16_to_cpu(entry->code));
605 break;
Christian Lamparter83cf1b62009-01-11 01:10:33 +0100606 case PDR_RSSI_LINEAR_APPROXIMATION_CUSTOM: {
607 __le16 *src = (void *) entry->data;
608 s16 *dst = (void *) &priv->rssical_db;
609 int i;
610
611 if (data_len != sizeof(priv->rssical_db)) {
612 err = -EINVAL;
613 goto err;
614 }
615 for (i = 0; i < sizeof(priv->rssical_db) /
616 sizeof(*src); i++)
617 *(dst++) = (s16) le16_to_cpu(*(src++));
618 }
619 break;
620 case PDR_PRISM_PA_CAL_OUTPUT_POWER_LIMITS_CUSTOM: {
621 struct pda_custom_wrapper *pda = (void *) entry->data;
622 if (priv->output_limit || data_len < sizeof(*pda))
623 break;
624 priv->output_limit = p54_convert_db(pda, data_len);
625 }
626 break;
627 case PDR_PRISM_PA_CAL_CURVE_DATA_CUSTOM: {
628 struct pda_custom_wrapper *pda = (void *) entry->data;
629 if (priv->curve_data || data_len < sizeof(*pda))
630 break;
631 priv->curve_data = p54_convert_db(pda, data_len);
632 }
633 break;
Michael Wueff1a592007-09-25 18:11:01 -0700634 case PDR_END:
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100635 /* make it overrun */
636 entry_len = len;
Michael Wueff1a592007-09-25 18:11:01 -0700637 break;
Pavel Roskinc8034c42008-10-29 17:31:43 -0400638 case PDR_MANUFACTURING_PART_NUMBER:
639 case PDR_PDA_VERSION:
640 case PDR_NIC_SERIAL_NUMBER:
641 case PDR_REGULATORY_DOMAIN_LIST:
642 case PDR_TEMPERATURE_TYPE:
643 case PDR_PRISM_PCI_IDENTIFIER:
644 case PDR_COUNTRY_INFORMATION:
645 case PDR_OEM_NAME:
646 case PDR_PRODUCT_NAME:
647 case PDR_UTF8_OEM_NAME:
648 case PDR_UTF8_PRODUCT_NAME:
649 case PDR_COUNTRY_LIST:
Pavel Roskinc8034c42008-10-29 17:31:43 -0400650 case PDR_ANTENNA_GAIN:
651 case PDR_PRISM_INDIGO_PA_CALIBRATION_DATA:
Pavel Roskinc8034c42008-10-29 17:31:43 -0400652 case PDR_REGULATORY_POWER_LIMITS:
Pavel Roskinc8034c42008-10-29 17:31:43 -0400653 case PDR_RADIATED_TRANSMISSION_CORRECTION:
654 case PDR_PRISM_TX_IQ_CALIBRATION:
655 case PDR_BASEBAND_REGISTERS:
656 case PDR_PER_CHANNEL_BASEBAND_REGISTERS:
657 break;
Florian Fainelli58e30732008-02-25 17:51:53 +0100658 default:
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100659 printk(KERN_INFO "%s: unknown eeprom code : 0x%x\n",
660 wiphy_name(dev->wiphy),
Florian Fainelli58e30732008-02-25 17:51:53 +0100661 le16_to_cpu(entry->code));
662 break;
Michael Wueff1a592007-09-25 18:11:01 -0700663 }
664
665 entry = (void *)entry + (entry_len + 1)*2;
Michael Wueff1a592007-09-25 18:11:01 -0700666 }
667
Christian Lamparterf2c2e252008-10-25 16:14:14 +0200668 if (!synth || !priv->iq_autocal || !priv->output_limit ||
669 !priv->curve_data) {
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100670 printk(KERN_ERR "%s: not all required entries found in eeprom!\n",
671 wiphy_name(dev->wiphy));
Michael Wueff1a592007-09-25 18:11:01 -0700672 err = -EINVAL;
673 goto err;
674 }
675
Christian Lamparter9e7f3f82008-10-18 23:18:01 +0200676 priv->rxhw = synth & PDR_SYNTH_FRONTEND_MASK;
Christian Lamparter6917f502009-01-11 01:14:18 +0100677 if (priv->rxhw == PDR_SYNTH_FRONTEND_XBOW)
Christian Lamparter1b997532008-09-06 14:25:58 +0200678 p54_init_xbow_synth(dev);
Christian Lamparter9e7f3f82008-10-18 23:18:01 +0200679 if (!(synth & PDR_SYNTH_24_GHZ_DISABLED))
Christian Lamparter1b997532008-09-06 14:25:58 +0200680 dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &band_2GHz;
Christian Lamparter9e7f3f82008-10-18 23:18:01 +0200681 if (!(synth & PDR_SYNTH_5_GHZ_DISABLED))
Christian Lamparter4cc683c2008-10-15 03:30:06 +0200682 dev->wiphy->bands[IEEE80211_BAND_5GHZ] = &band_5GHz;
Christian Lamparter78eb7482008-12-30 13:48:19 +0100683 if ((synth & PDR_SYNTH_RX_DIV_MASK) == PDR_SYNTH_RX_DIV_SUPPORTED)
684 priv->rx_diversity_mask = 3;
685 if ((synth & PDR_SYNTH_TX_DIV_MASK) == PDR_SYNTH_TX_DIV_SUPPORTED)
686 priv->tx_diversity_mask = 3;
Christian Lamparter7cb77072008-09-01 22:48:51 +0200687
688 if (!is_valid_ether_addr(dev->wiphy->perm_addr)) {
689 u8 perm_addr[ETH_ALEN];
690
691 printk(KERN_WARNING "%s: Invalid hwaddr! Using randomly generated MAC addr\n",
692 wiphy_name(dev->wiphy));
693 random_ether_addr(perm_addr);
694 SET_IEEE80211_PERM_ADDR(dev, perm_addr);
695 }
696
Johannes Berge1749612008-10-27 15:59:26 -0700697 printk(KERN_INFO "%s: hwaddr %pM, MAC:isl38%02x RF:%s\n",
Christian Lamparter7cb77072008-09-01 22:48:51 +0200698 wiphy_name(dev->wiphy),
Johannes Berge1749612008-10-27 15:59:26 -0700699 dev->wiphy->perm_addr,
Christian Lamparter7cb77072008-09-01 22:48:51 +0200700 priv->version, p54_rf_chips[priv->rxhw]);
701
Michael Wueff1a592007-09-25 18:11:01 -0700702 return 0;
703
704 err:
705 if (priv->iq_autocal) {
706 kfree(priv->iq_autocal);
707 priv->iq_autocal = NULL;
708 }
709
710 if (priv->output_limit) {
711 kfree(priv->output_limit);
712 priv->output_limit = NULL;
713 }
714
715 if (priv->curve_data) {
716 kfree(priv->curve_data);
717 priv->curve_data = NULL;
718 }
719
Christian Lamparter02e37ba2008-11-29 22:39:08 +0100720 printk(KERN_ERR "%s: eeprom parse failed!\n",
721 wiphy_name(dev->wiphy));
Michael Wueff1a592007-09-25 18:11:01 -0700722 return err;
723}
Christian Lampartercd8d3d32009-01-11 01:18:38 +0100724EXPORT_SYMBOL_GPL(p54_parse_eeprom);
Michael Wueff1a592007-09-25 18:11:01 -0700725
Christian Lampartercc6de662008-09-06 02:56:23 +0200726static int p54_rssi_to_dbm(struct ieee80211_hw *dev, int rssi)
727{
Christian Lamparter69ba3e52008-12-14 14:45:30 +0100728 struct p54_common *priv = dev->priv;
729 int band = dev->conf.channel->band;
730
Christian Lamparter6917f502009-01-11 01:14:18 +0100731 if (priv->rxhw != PDR_SYNTH_FRONTEND_LONGBOW)
732 return ((rssi * priv->rssical_db[band].mul) / 64 +
733 priv->rssical_db[band].add) / 4;
734 else
735 /*
736 * TODO: find the correct formula
737 */
738 return ((rssi * priv->rssical_db[band].mul) / 64 +
Christian Lamparter69ba3e52008-12-14 14:45:30 +0100739 priv->rssical_db[band].add) / 4;
Christian Lampartercc6de662008-09-06 02:56:23 +0200740}
741
Christian Lamparter19c19d52008-09-03 22:25:25 +0200742static int p54_rx_data(struct ieee80211_hw *dev, struct sk_buff *skb)
Michael Wueff1a592007-09-25 18:11:01 -0700743{
Christian Lampartera0db6632008-09-06 02:56:04 +0200744 struct p54_common *priv = dev->priv;
John W. Linville27df6052008-10-22 16:41:55 -0400745 struct p54_rx_data *hdr = (struct p54_rx_data *) skb->data;
Michael Wueff1a592007-09-25 18:11:01 -0700746 struct ieee80211_rx_status rx_status = {0};
747 u16 freq = le16_to_cpu(hdr->freq);
Christian Lamparter19c19d52008-09-03 22:25:25 +0200748 size_t header_len = sizeof(*hdr);
Christian Lampartera0db6632008-09-06 02:56:04 +0200749 u32 tsf32;
Christian Lamparter124b68e2008-12-26 19:09:45 +0100750 u8 rate = hdr->rate & 0xf;
Michael Wueff1a592007-09-25 18:11:01 -0700751
Christian Lamparter59651e82008-12-09 21:07:50 +0100752 /*
753 * If the device is in a unspecified state we have to
754 * ignore all data frames. Else we could end up with a
755 * nasty crash.
756 */
757 if (unlikely(priv->mode == NL80211_IFTYPE_UNSPECIFIED))
758 return 0;
759
John W. Linville27df6052008-10-22 16:41:55 -0400760 if (!(hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_IN_FCS_GOOD))) {
Christian Lamparter346de732009-03-05 21:28:57 +0100761 return 0;
Christian Lamparter78d57eb2008-09-06 02:56:12 +0200762 }
763
Christian Lamparter25900ef2008-11-29 22:34:37 +0100764 if (hdr->decrypt_status == P54_DECRYPT_OK)
765 rx_status.flag |= RX_FLAG_DECRYPTED;
766 if ((hdr->decrypt_status == P54_DECRYPT_FAIL_MICHAEL) ||
767 (hdr->decrypt_status == P54_DECRYPT_FAIL_TKIP))
768 rx_status.flag |= RX_FLAG_MMIC_ERROR;
769
Christian Lampartercc6de662008-09-06 02:56:23 +0200770 rx_status.signal = p54_rssi_to_dbm(dev, hdr->rssi);
771 rx_status.noise = priv->noise;
Johannes Berg8318d782008-01-24 19:38:38 +0100772 /* XX correct? */
Larry.Finger@lwfinger.net18d72602008-06-30 10:39:49 -0500773 rx_status.qual = (100 * hdr->rssi) / 127;
Christian Lamparterffed7852008-11-14 19:41:22 +0100774 if (hdr->rate & 0x10)
775 rx_status.flag |= RX_FLAG_SHORTPRE;
Christian Lamparter124b68e2008-12-26 19:09:45 +0100776 if (dev->conf.channel->band == IEEE80211_BAND_5GHZ)
777 rx_status.rate_idx = (rate < 4) ? 0 : rate - 4;
778 else
779 rx_status.rate_idx = rate;
780
Michael Wueff1a592007-09-25 18:11:01 -0700781 rx_status.freq = freq;
Christian Lampartercf3e74c2008-09-30 23:36:00 +0200782 rx_status.band = dev->conf.channel->band;
Michael Wueff1a592007-09-25 18:11:01 -0700783 rx_status.antenna = hdr->antenna;
Christian Lampartera0db6632008-09-06 02:56:04 +0200784
785 tsf32 = le32_to_cpu(hdr->tsf32);
786 if (tsf32 < priv->tsf_low32)
787 priv->tsf_high32++;
788 rx_status.mactime = ((u64)priv->tsf_high32) << 32 | tsf32;
789 priv->tsf_low32 = tsf32;
790
Johannes Berg03bffc12007-12-04 20:33:40 +0100791 rx_status.flag |= RX_FLAG_TSFT;
Michael Wueff1a592007-09-25 18:11:01 -0700792
John W. Linville27df6052008-10-22 16:41:55 -0400793 if (hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN))
Christian Lamparter19c19d52008-09-03 22:25:25 +0200794 header_len += hdr->align[0];
795
796 skb_pull(skb, header_len);
Michael Wueff1a592007-09-25 18:11:01 -0700797 skb_trim(skb, le16_to_cpu(hdr->len));
798
799 ieee80211_rx_irqsafe(dev, skb, &rx_status);
Christian Lamparter19c19d52008-09-03 22:25:25 +0200800
Christian Lamparter54fdb042008-12-13 14:14:20 +0100801 queue_delayed_work(dev->workqueue, &priv->work,
802 msecs_to_jiffies(P54_STATISTICS_UPDATE));
803
Christian Lamparter19c19d52008-09-03 22:25:25 +0200804 return -1;
Michael Wueff1a592007-09-25 18:11:01 -0700805}
806
807static void inline p54_wake_free_queues(struct ieee80211_hw *dev)
808{
809 struct p54_common *priv = dev->priv;
810 int i;
811
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200812 if (priv->mode == NL80211_IFTYPE_UNSPECIFIED)
813 return ;
814
Michael Wueff1a592007-09-25 18:11:01 -0700815 for (i = 0; i < dev->queues; i++)
Christian Lampartera15bd002008-12-21 20:54:34 +0100816 if (priv->tx_stats[i + P54_QUEUE_DATA].len <
817 priv->tx_stats[i + P54_QUEUE_DATA].limit)
Michael Wueff1a592007-09-25 18:11:01 -0700818 ieee80211_wake_queue(dev, i);
819}
820
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200821void p54_free_skb(struct ieee80211_hw *dev, struct sk_buff *skb)
822{
823 struct p54_common *priv = dev->priv;
824 struct ieee80211_tx_info *info;
Christian Lamparter3cd08b32009-01-09 21:06:06 +0100825 struct p54_tx_info *range;
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200826 unsigned long flags;
827 u32 freed = 0, last_addr = priv->rx_start;
828
Christian Lamparterffed7852008-11-14 19:41:22 +0100829 if (unlikely(!skb || !dev || !skb_queue_len(&priv->tx_queue)))
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200830 return;
831
Christian Lamparter59651e82008-12-09 21:07:50 +0100832 /*
833 * don't try to free an already unlinked skb
834 */
835 if (unlikely((!skb->next) || (!skb->prev)))
836 return;
837
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200838 spin_lock_irqsave(&priv->tx_queue.lock, flags);
839 info = IEEE80211_SKB_CB(skb);
840 range = (void *)info->rate_driver_data;
841 if (skb->prev != (struct sk_buff *)&priv->tx_queue) {
842 struct ieee80211_tx_info *ni;
Christian Lamparter3cd08b32009-01-09 21:06:06 +0100843 struct p54_tx_info *mr;
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200844
845 ni = IEEE80211_SKB_CB(skb->prev);
Christian Lamparter3cd08b32009-01-09 21:06:06 +0100846 mr = (struct p54_tx_info *)ni->rate_driver_data;
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200847 last_addr = mr->end_addr;
848 }
849 if (skb->next != (struct sk_buff *)&priv->tx_queue) {
850 struct ieee80211_tx_info *ni;
Christian Lamparter3cd08b32009-01-09 21:06:06 +0100851 struct p54_tx_info *mr;
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200852
853 ni = IEEE80211_SKB_CB(skb->next);
Christian Lamparter3cd08b32009-01-09 21:06:06 +0100854 mr = (struct p54_tx_info *)ni->rate_driver_data;
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200855 freed = mr->start_addr - last_addr;
856 } else
857 freed = priv->rx_end - last_addr;
858 __skb_unlink(skb, &priv->tx_queue);
859 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
Christian Lamparter0a5ec962008-12-14 15:05:42 +0100860 dev_kfree_skb_any(skb);
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200861
John W. Linville27df6052008-10-22 16:41:55 -0400862 if (freed >= priv->headroom + sizeof(struct p54_hdr) + 48 +
Christian Lamparterb92f30d2008-10-15 04:07:16 +0200863 IEEE80211_MAX_RTS_THRESHOLD + priv->tailroom)
864 p54_wake_free_queues(dev);
865}
866EXPORT_SYMBOL_GPL(p54_free_skb);
867
Christian Lamparter54fdb042008-12-13 14:14:20 +0100868static struct sk_buff *p54_find_tx_entry(struct ieee80211_hw *dev,
869 __le32 req_id)
870{
871 struct p54_common *priv = dev->priv;
Christian Lamparterc0350022009-03-06 00:53:59 +0100872 struct sk_buff *entry;
Christian Lamparter54fdb042008-12-13 14:14:20 +0100873 unsigned long flags;
874
875 spin_lock_irqsave(&priv->tx_queue.lock, flags);
Christian Lamparterc0350022009-03-06 00:53:59 +0100876 entry = priv->tx_queue.next;
Christian Lamparter54fdb042008-12-13 14:14:20 +0100877 while (entry != (struct sk_buff *)&priv->tx_queue) {
878 struct p54_hdr *hdr = (struct p54_hdr *) entry->data;
879
880 if (hdr->req_id == req_id) {
881 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
882 return entry;
883 }
884 entry = entry->next;
885 }
886 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
887 return NULL;
888}
889
Michael Wueff1a592007-09-25 18:11:01 -0700890static void p54_rx_frame_sent(struct ieee80211_hw *dev, struct sk_buff *skb)
891{
892 struct p54_common *priv = dev->priv;
John W. Linville27df6052008-10-22 16:41:55 -0400893 struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
894 struct p54_frame_sent *payload = (struct p54_frame_sent *) hdr->data;
Christian Lamparterc0350022009-03-06 00:53:59 +0100895 struct sk_buff *entry;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200896 u32 addr = le32_to_cpu(hdr->req_id) - priv->headroom;
Christian Lamparter3cd08b32009-01-09 21:06:06 +0100897 struct p54_tx_info *range = NULL;
Michael Wueff1a592007-09-25 18:11:01 -0700898 u32 freed = 0;
899 u32 last_addr = priv->rx_start;
Chr031d10e2008-08-24 03:15:06 +0200900 unsigned long flags;
Johannes Bergc12abae2008-10-14 16:56:51 +0200901 int count, idx;
Michael Wueff1a592007-09-25 18:11:01 -0700902
Chr031d10e2008-08-24 03:15:06 +0200903 spin_lock_irqsave(&priv->tx_queue.lock, flags);
Christian Lamparterc0350022009-03-06 00:53:59 +0100904 entry = (struct sk_buff *) priv->tx_queue.next;
Michael Wueff1a592007-09-25 18:11:01 -0700905 while (entry != (struct sk_buff *)&priv->tx_queue) {
Johannes Berg552fe532008-05-30 21:07:15 +0200906 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry);
John W. Linville27df6052008-10-22 16:41:55 -0400907 struct p54_hdr *entry_hdr;
908 struct p54_tx_data *entry_data;
Christian Lamparter12da4012009-01-19 16:08:48 +0100909 unsigned int pad = 0, frame_len;
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200910
Johannes Berge6a98542008-10-21 12:40:02 +0200911 range = (void *)info->rate_driver_data;
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200912 if (range->start_addr != addr) {
Michael Wueff1a592007-09-25 18:11:01 -0700913 last_addr = range->end_addr;
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200914 entry = entry->next;
915 continue;
916 }
Chr031d10e2008-08-24 03:15:06 +0200917
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200918 if (entry->next != (struct sk_buff *)&priv->tx_queue) {
919 struct ieee80211_tx_info *ni;
Christian Lamparter3cd08b32009-01-09 21:06:06 +0100920 struct p54_tx_info *mr;
Johannes Bergc12abae2008-10-14 16:56:51 +0200921
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200922 ni = IEEE80211_SKB_CB(entry->next);
Christian Lamparter3cd08b32009-01-09 21:06:06 +0100923 mr = (struct p54_tx_info *)ni->rate_driver_data;
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200924 freed = mr->start_addr - last_addr;
Michael Wueff1a592007-09-25 18:11:01 -0700925 } else
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200926 freed = priv->rx_end - last_addr;
927
928 last_addr = range->end_addr;
929 __skb_unlink(entry, &priv->tx_queue);
930 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
931
Christian Lamparter12da4012009-01-19 16:08:48 +0100932 frame_len = entry->len;
Christian Lamparterc772a082008-11-29 22:33:57 +0100933 entry_hdr = (struct p54_hdr *) entry->data;
934 entry_data = (struct p54_tx_data *) entry_hdr->data;
935 priv->tx_stats[entry_data->hw_queue].len--;
Christian Lamparteree370ce2008-12-13 16:45:38 +0100936 priv->stats.dot11ACKFailureCount += payload->tries - 1;
Christian Lamparterc772a082008-11-29 22:33:57 +0100937
Christian Lamparter29701e52008-12-21 22:52:10 +0100938 /*
939 * Frames in P54_QUEUE_FWSCAN and P54_QUEUE_BEACON are
940 * generated by the driver. Therefore tx_status is bogus
941 * and we don't want to confuse the mac80211 stack.
942 */
943 if (unlikely(entry_data->hw_queue < P54_QUEUE_FWSCAN)) {
944 if (entry_data->hw_queue == P54_QUEUE_BEACON)
945 priv->cached_beacon = NULL;
946
Christian Lampartere5ea92a2008-10-18 23:19:00 +0200947 kfree_skb(entry);
Christian Lampartere5ea92a2008-10-18 23:19:00 +0200948 goto out;
949 }
950
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200951 /*
952 * Clear manually, ieee80211_tx_info_clear_status would
953 * clear the counts too and we need them.
954 */
955 memset(&info->status.ampdu_ack_len, 0,
956 sizeof(struct ieee80211_tx_info) -
957 offsetof(struct ieee80211_tx_info, status.ampdu_ack_len));
958 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info,
959 status.ampdu_ack_len) != 23);
960
John W. Linville27df6052008-10-22 16:41:55 -0400961 if (entry_hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN))
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200962 pad = entry_data->align[0];
963
964 /* walk through the rates array and adjust the counts */
John W. Linville27df6052008-10-22 16:41:55 -0400965 count = payload->tries;
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200966 for (idx = 0; idx < 4; idx++) {
967 if (count >= info->status.rates[idx].count) {
968 count -= info->status.rates[idx].count;
969 } else if (count > 0) {
970 info->status.rates[idx].count = count;
971 count = 0;
972 } else {
973 info->status.rates[idx].idx = -1;
974 info->status.rates[idx].count = 0;
975 }
976 }
977
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200978 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK) &&
979 (!payload->status))
980 info->flags |= IEEE80211_TX_STAT_ACK;
Christian Lamparter9e7f3f82008-10-18 23:18:01 +0200981 if (payload->status & P54_TX_PSM_CANCELLED)
Christian Lamparter9de5776f2008-10-15 04:05:51 +0200982 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
983 info->status.ack_signal = p54_rssi_to_dbm(dev,
John W. Linville27df6052008-10-22 16:41:55 -0400984 (int)payload->ack_rssi);
Christian Lamparterc1d34c12008-12-20 02:21:37 +0100985
Christian Lamparter12da4012009-01-19 16:08:48 +0100986 /* Undo all changes to the frame. */
987 switch (entry_data->key_type) {
988 case P54_CRYPTO_TKIPMICHAEL: {
Christian Lamparterc1d34c12008-12-20 02:21:37 +0100989 u8 *iv = (u8 *)(entry_data->align + pad +
Christian Lamparter12da4012009-01-19 16:08:48 +0100990 entry_data->crypt_offset);
Christian Lamparterc1d34c12008-12-20 02:21:37 +0100991
992 /* Restore the original TKIP IV. */
993 iv[2] = iv[0];
994 iv[0] = iv[1];
995 iv[1] = (iv[0] | 0x20) & 0x7f; /* WEPSeed - 8.3.2.2 */
Christian Lamparter12da4012009-01-19 16:08:48 +0100996
997 frame_len -= 12; /* remove TKIP_MMIC + TKIP_ICV */
998 break;
999 }
1000 case P54_CRYPTO_AESCCMP:
1001 frame_len -= 8; /* remove CCMP_MIC */
1002 break;
1003 case P54_CRYPTO_WEP:
1004 frame_len -= 4; /* remove WEP_ICV */
1005 break;
Christian Lamparterc1d34c12008-12-20 02:21:37 +01001006 }
Christian Lamparter12da4012009-01-19 16:08:48 +01001007 skb_trim(entry, frame_len);
Christian Lamparter9de5776f2008-10-15 04:05:51 +02001008 skb_pull(entry, sizeof(*hdr) + pad + sizeof(*entry_data));
1009 ieee80211_tx_status_irqsafe(dev, entry);
1010 goto out;
Michael Wueff1a592007-09-25 18:11:01 -07001011 }
Chr031d10e2008-08-24 03:15:06 +02001012 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
Michael Wueff1a592007-09-25 18:11:01 -07001013
Chr031d10e2008-08-24 03:15:06 +02001014out:
John W. Linville27df6052008-10-22 16:41:55 -04001015 if (freed >= priv->headroom + sizeof(struct p54_hdr) + 48 +
Christian Lamparter9de5776f2008-10-15 04:05:51 +02001016 IEEE80211_MAX_RTS_THRESHOLD + priv->tailroom)
Michael Wueff1a592007-09-25 18:11:01 -07001017 p54_wake_free_queues(dev);
1018}
1019
Christian Lamparter7cb77072008-09-01 22:48:51 +02001020static void p54_rx_eeprom_readback(struct ieee80211_hw *dev,
1021 struct sk_buff *skb)
1022{
John W. Linville27df6052008-10-22 16:41:55 -04001023 struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
Christian Lamparter7cb77072008-09-01 22:48:51 +02001024 struct p54_eeprom_lm86 *eeprom = (struct p54_eeprom_lm86 *) hdr->data;
1025 struct p54_common *priv = dev->priv;
1026
1027 if (!priv->eeprom)
1028 return ;
1029
Christian Lamparter64c354d2008-11-29 22:35:43 +01001030 if (priv->fw_var >= 0x509) {
1031 memcpy(priv->eeprom, eeprom->v2.data,
1032 le16_to_cpu(eeprom->v2.len));
1033 } else {
1034 memcpy(priv->eeprom, eeprom->v1.data,
1035 le16_to_cpu(eeprom->v1.len));
1036 }
Christian Lamparter7cb77072008-09-01 22:48:51 +02001037
1038 complete(&priv->eeprom_comp);
1039}
1040
Christian Lampartercc6de662008-09-06 02:56:23 +02001041static void p54_rx_stats(struct ieee80211_hw *dev, struct sk_buff *skb)
1042{
1043 struct p54_common *priv = dev->priv;
John W. Linville27df6052008-10-22 16:41:55 -04001044 struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
Christian Lampartercc6de662008-09-06 02:56:23 +02001045 struct p54_statistics *stats = (struct p54_statistics *) hdr->data;
Christian Lamparter54fdb042008-12-13 14:14:20 +01001046 u32 tsf32;
Christian Lampartercc6de662008-09-06 02:56:23 +02001047
Christian Lamparter54fdb042008-12-13 14:14:20 +01001048 if (unlikely(priv->mode == NL80211_IFTYPE_UNSPECIFIED))
1049 return ;
1050
1051 tsf32 = le32_to_cpu(stats->tsf32);
Christian Lampartercc6de662008-09-06 02:56:23 +02001052 if (tsf32 < priv->tsf_low32)
1053 priv->tsf_high32++;
1054 priv->tsf_low32 = tsf32;
1055
1056 priv->stats.dot11RTSFailureCount = le32_to_cpu(stats->rts_fail);
1057 priv->stats.dot11RTSSuccessCount = le32_to_cpu(stats->rts_success);
1058 priv->stats.dot11FCSErrorCount = le32_to_cpu(stats->rx_bad_fcs);
1059
1060 priv->noise = p54_rssi_to_dbm(dev, le32_to_cpu(stats->noise));
Christian Lampartercc6de662008-09-06 02:56:23 +02001061
Christian Lamparter54fdb042008-12-13 14:14:20 +01001062 p54_free_skb(dev, p54_find_tx_entry(dev, hdr->req_id));
Christian Lampartercc6de662008-09-06 02:56:23 +02001063}
1064
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001065static void p54_rx_trap(struct ieee80211_hw *dev, struct sk_buff *skb)
1066{
Christian Lamparterf13027a2009-03-25 03:12:49 +01001067 struct p54_common *priv = dev->priv;
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001068 struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
1069 struct p54_trap *trap = (struct p54_trap *) hdr->data;
1070 u16 event = le16_to_cpu(trap->event);
1071 u16 freq = le16_to_cpu(trap->frequency);
1072
1073 switch (event) {
1074 case P54_TRAP_BEACON_TX:
1075 break;
1076 case P54_TRAP_RADAR:
1077 printk(KERN_INFO "%s: radar (freq:%d MHz)\n",
1078 wiphy_name(dev->wiphy), freq);
1079 break;
1080 case P54_TRAP_NO_BEACON:
Christian Lamparterf13027a2009-03-25 03:12:49 +01001081 if (priv->vif)
1082 ieee80211_beacon_loss(priv->vif);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001083 break;
1084 case P54_TRAP_SCAN:
1085 break;
1086 case P54_TRAP_TBTT:
1087 break;
1088 case P54_TRAP_TIMER:
1089 break;
1090 default:
1091 printk(KERN_INFO "%s: received event:%x freq:%d\n",
1092 wiphy_name(dev->wiphy), event, freq);
1093 break;
1094 }
1095}
1096
Christian Lamparter19c19d52008-09-03 22:25:25 +02001097static int p54_rx_control(struct ieee80211_hw *dev, struct sk_buff *skb)
Michael Wueff1a592007-09-25 18:11:01 -07001098{
John W. Linville27df6052008-10-22 16:41:55 -04001099 struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
Michael Wueff1a592007-09-25 18:11:01 -07001100
1101 switch (le16_to_cpu(hdr->type)) {
1102 case P54_CONTROL_TYPE_TXDONE:
1103 p54_rx_frame_sent(dev, skb);
1104 break;
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001105 case P54_CONTROL_TYPE_TRAP:
1106 p54_rx_trap(dev, skb);
1107 break;
Michael Wueff1a592007-09-25 18:11:01 -07001108 case P54_CONTROL_TYPE_BBP:
1109 break;
Christian Lampartercc6de662008-09-06 02:56:23 +02001110 case P54_CONTROL_TYPE_STAT_READBACK:
1111 p54_rx_stats(dev, skb);
1112 break;
Christian Lamparter7cb77072008-09-01 22:48:51 +02001113 case P54_CONTROL_TYPE_EEPROM_READBACK:
1114 p54_rx_eeprom_readback(dev, skb);
1115 break;
Michael Wueff1a592007-09-25 18:11:01 -07001116 default:
1117 printk(KERN_DEBUG "%s: not handling 0x%02x type control frame\n",
1118 wiphy_name(dev->wiphy), le16_to_cpu(hdr->type));
1119 break;
1120 }
Christian Lamparter19c19d52008-09-03 22:25:25 +02001121
1122 return 0;
Michael Wueff1a592007-09-25 18:11:01 -07001123}
1124
1125/* returns zero if skb can be reused */
1126int p54_rx(struct ieee80211_hw *dev, struct sk_buff *skb)
1127{
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02001128 u16 type = le16_to_cpu(*((__le16 *)skb->data));
Christian Lamparter19c19d52008-09-03 22:25:25 +02001129
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02001130 if (type & P54_HDR_FLAG_CONTROL)
Christian Lamparter19c19d52008-09-03 22:25:25 +02001131 return p54_rx_control(dev, skb);
1132 else
1133 return p54_rx_data(dev, skb);
Michael Wueff1a592007-09-25 18:11:01 -07001134}
1135EXPORT_SYMBOL_GPL(p54_rx);
1136
1137/*
1138 * So, the firmware is somewhat stupid and doesn't know what places in its
1139 * memory incoming data should go to. By poking around in the firmware, we
1140 * can find some unused memory to upload our packets to. However, data that we
1141 * want the card to TX needs to stay intact until the card has told us that
1142 * it is done with it. This function finds empty places we can upload to and
Christian Lamparter3cd08b32009-01-09 21:06:06 +01001143 * marks allocated areas as reserved if necessary. p54_rx_frame_sent or
1144 * p54_free_skb frees allocated areas.
Michael Wueff1a592007-09-25 18:11:01 -07001145 */
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001146static int p54_assign_address(struct ieee80211_hw *dev, struct sk_buff *skb,
John W. Linville27df6052008-10-22 16:41:55 -04001147 struct p54_hdr *data, u32 len)
Michael Wueff1a592007-09-25 18:11:01 -07001148{
1149 struct p54_common *priv = dev->priv;
Christian Lamparterc0350022009-03-06 00:53:59 +01001150 struct sk_buff *entry;
Michael Wueff1a592007-09-25 18:11:01 -07001151 struct sk_buff *target_skb = NULL;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001152 struct ieee80211_tx_info *info;
Christian Lamparter3cd08b32009-01-09 21:06:06 +01001153 struct p54_tx_info *range;
Michael Wueff1a592007-09-25 18:11:01 -07001154 u32 last_addr = priv->rx_start;
1155 u32 largest_hole = 0;
1156 u32 target_addr = priv->rx_start;
1157 unsigned long flags;
1158 unsigned int left;
Christian Lamparter4e416a62008-09-01 22:48:41 +02001159 len = (len + priv->headroom + priv->tailroom + 3) & ~0x3;
Michael Wueff1a592007-09-25 18:11:01 -07001160
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001161 if (!skb)
1162 return -EINVAL;
1163
Michael Wueff1a592007-09-25 18:11:01 -07001164 spin_lock_irqsave(&priv->tx_queue.lock, flags);
Christian Lamparter39ca5bb2008-12-09 21:09:00 +01001165
Michael Wueff1a592007-09-25 18:11:01 -07001166 left = skb_queue_len(&priv->tx_queue);
Christian Lamparter39ca5bb2008-12-09 21:09:00 +01001167 if (unlikely(left >= 28)) {
1168 /*
1169 * The tx_queue is nearly full!
1170 * We have throttle normal data traffic, because we must
1171 * have a few spare slots for control frames left.
1172 */
1173 ieee80211_stop_queues(dev);
Christian Lamparter54fdb042008-12-13 14:14:20 +01001174 queue_delayed_work(dev->workqueue, &priv->work,
1175 msecs_to_jiffies(P54_TX_TIMEOUT));
Christian Lamparter39ca5bb2008-12-09 21:09:00 +01001176
1177 if (unlikely(left == 32)) {
1178 /*
1179 * The tx_queue is now really full.
1180 *
1181 * TODO: check if the device has crashed and reset it.
1182 */
1183 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
1184 return -ENOSPC;
1185 }
1186 }
1187
Christian Lamparterc0350022009-03-06 00:53:59 +01001188 entry = priv->tx_queue.next;
Michael Wueff1a592007-09-25 18:11:01 -07001189 while (left--) {
1190 u32 hole_size;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001191 info = IEEE80211_SKB_CB(entry);
1192 range = (void *)info->rate_driver_data;
Michael Wueff1a592007-09-25 18:11:01 -07001193 hole_size = range->start_addr - last_addr;
1194 if (!target_skb && hole_size >= len) {
1195 target_skb = entry->prev;
1196 hole_size -= len;
1197 target_addr = last_addr;
1198 }
1199 largest_hole = max(largest_hole, hole_size);
1200 last_addr = range->end_addr;
1201 entry = entry->next;
1202 }
1203 if (!target_skb && priv->rx_end - last_addr >= len) {
1204 target_skb = priv->tx_queue.prev;
1205 largest_hole = max(largest_hole, priv->rx_end - last_addr - len);
1206 if (!skb_queue_empty(&priv->tx_queue)) {
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001207 info = IEEE80211_SKB_CB(target_skb);
1208 range = (void *)info->rate_driver_data;
Michael Wueff1a592007-09-25 18:11:01 -07001209 target_addr = range->end_addr;
1210 }
1211 } else
1212 largest_hole = max(largest_hole, priv->rx_end - last_addr);
1213
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001214 if (!target_skb) {
1215 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
1216 ieee80211_stop_queues(dev);
Christian Lamparter39ca5bb2008-12-09 21:09:00 +01001217 return -ENOSPC;
Michael Wueff1a592007-09-25 18:11:01 -07001218 }
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001219
1220 info = IEEE80211_SKB_CB(skb);
1221 range = (void *)info->rate_driver_data;
1222 range->start_addr = target_addr;
1223 range->end_addr = target_addr + len;
1224 __skb_queue_after(&priv->tx_queue, target_skb, skb);
Michael Wueff1a592007-09-25 18:11:01 -07001225 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
1226
John W. Linville27df6052008-10-22 16:41:55 -04001227 if (largest_hole < priv->headroom + sizeof(struct p54_hdr) +
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001228 48 + IEEE80211_MAX_RTS_THRESHOLD + priv->tailroom)
1229 ieee80211_stop_queues(dev);
1230
Christian Lamparter4e416a62008-09-01 22:48:41 +02001231 data->req_id = cpu_to_le32(target_addr + priv->headroom);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001232 return 0;
1233}
1234
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001235static struct sk_buff *p54_alloc_skb(struct ieee80211_hw *dev, u16 hdr_flags,
1236 u16 payload_len, u16 type, gfp_t memflags)
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001237{
1238 struct p54_common *priv = dev->priv;
John W. Linville27df6052008-10-22 16:41:55 -04001239 struct p54_hdr *hdr;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001240 struct sk_buff *skb;
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001241 size_t frame_len = sizeof(*hdr) + payload_len;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001242
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001243 if (frame_len > P54_MAX_CTRL_FRAME_LEN)
1244 return NULL;
1245
1246 skb = __dev_alloc_skb(priv->tx_hdr_len + frame_len, memflags);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001247 if (!skb)
1248 return NULL;
1249 skb_reserve(skb, priv->tx_hdr_len);
1250
John W. Linville27df6052008-10-22 16:41:55 -04001251 hdr = (struct p54_hdr *) skb_put(skb, sizeof(*hdr));
1252 hdr->flags = cpu_to_le16(hdr_flags);
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001253 hdr->len = cpu_to_le16(payload_len);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001254 hdr->type = cpu_to_le16(type);
John W. Linville27df6052008-10-22 16:41:55 -04001255 hdr->tries = hdr->rts_tries = 0;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001256
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001257 if (p54_assign_address(dev, skb, hdr, frame_len)) {
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001258 kfree_skb(skb);
1259 return NULL;
1260 }
1261 return skb;
Michael Wueff1a592007-09-25 18:11:01 -07001262}
1263
Christian Lamparter7cb77072008-09-01 22:48:51 +02001264int p54_read_eeprom(struct ieee80211_hw *dev)
1265{
1266 struct p54_common *priv = dev->priv;
Christian Lamparter7cb77072008-09-01 22:48:51 +02001267 struct p54_eeprom_lm86 *eeprom_hdr;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001268 struct sk_buff *skb;
Christian Lamparter64c354d2008-11-29 22:35:43 +01001269 size_t eeprom_size = 0x2020, offset = 0, blocksize, maxblocksize;
Christian Lamparter7cb77072008-09-01 22:48:51 +02001270 int ret = -ENOMEM;
1271 void *eeprom = NULL;
1272
Christian Lamparter64c354d2008-11-29 22:35:43 +01001273 maxblocksize = EEPROM_READBACK_LEN;
1274 if (priv->fw_var >= 0x509)
1275 maxblocksize -= 0xc;
1276 else
1277 maxblocksize -= 0x4;
1278
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001279 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL, sizeof(*eeprom_hdr) +
1280 maxblocksize, P54_CONTROL_TYPE_EEPROM_READBACK,
1281 GFP_KERNEL);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001282 if (!skb)
Christian Lamparter7cb77072008-09-01 22:48:51 +02001283 goto free;
Christian Lamparter7cb77072008-09-01 22:48:51 +02001284 priv->eeprom = kzalloc(EEPROM_READBACK_LEN, GFP_KERNEL);
1285 if (!priv->eeprom)
1286 goto free;
Christian Lamparter7cb77072008-09-01 22:48:51 +02001287 eeprom = kzalloc(eeprom_size, GFP_KERNEL);
1288 if (!eeprom)
1289 goto free;
1290
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001291 eeprom_hdr = (struct p54_eeprom_lm86 *) skb_put(skb,
Christian Lamparter64c354d2008-11-29 22:35:43 +01001292 sizeof(*eeprom_hdr) + maxblocksize);
Christian Lamparter7cb77072008-09-01 22:48:51 +02001293
1294 while (eeprom_size) {
Christian Lamparter64c354d2008-11-29 22:35:43 +01001295 blocksize = min(eeprom_size, maxblocksize);
1296 if (priv->fw_var < 0x509) {
1297 eeprom_hdr->v1.offset = cpu_to_le16(offset);
1298 eeprom_hdr->v1.len = cpu_to_le16(blocksize);
1299 } else {
1300 eeprom_hdr->v2.offset = cpu_to_le32(offset);
1301 eeprom_hdr->v2.len = cpu_to_le16(blocksize);
1302 eeprom_hdr->v2.magic2 = 0xf;
1303 memcpy(eeprom_hdr->v2.magic, (const char *)"LOCK", 4);
1304 }
Christian Lamparter0a5ec962008-12-14 15:05:42 +01001305 priv->tx(dev, skb);
Christian Lamparter7cb77072008-09-01 22:48:51 +02001306
1307 if (!wait_for_completion_interruptible_timeout(&priv->eeprom_comp, HZ)) {
1308 printk(KERN_ERR "%s: device does not respond!\n",
1309 wiphy_name(dev->wiphy));
1310 ret = -EBUSY;
1311 goto free;
1312 }
1313
1314 memcpy(eeprom + offset, priv->eeprom, blocksize);
1315 offset += blocksize;
1316 eeprom_size -= blocksize;
1317 }
1318
1319 ret = p54_parse_eeprom(dev, eeprom, offset);
1320free:
1321 kfree(priv->eeprom);
1322 priv->eeprom = NULL;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001323 p54_free_skb(dev, skb);
Christian Lamparter7cb77072008-09-01 22:48:51 +02001324 kfree(eeprom);
1325
1326 return ret;
1327}
1328EXPORT_SYMBOL_GPL(p54_read_eeprom);
1329
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001330static int p54_set_tim(struct ieee80211_hw *dev, struct ieee80211_sta *sta,
1331 bool set)
1332{
1333 struct p54_common *priv = dev->priv;
1334 struct sk_buff *skb;
1335 struct p54_tim *tim;
1336
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001337 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*tim),
1338 P54_CONTROL_TYPE_TIM, GFP_ATOMIC);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001339 if (!skb)
1340 return -ENOMEM;
1341
1342 tim = (struct p54_tim *) skb_put(skb, sizeof(*tim));
1343 tim->count = 1;
1344 tim->entry[0] = cpu_to_le16(set ? (sta->aid | 0x8000) : sta->aid);
Christian Lamparter0a5ec962008-12-14 15:05:42 +01001345 priv->tx(dev, skb);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001346 return 0;
1347}
1348
1349static int p54_sta_unlock(struct ieee80211_hw *dev, u8 *addr)
1350{
1351 struct p54_common *priv = dev->priv;
1352 struct sk_buff *skb;
1353 struct p54_sta_unlock *sta;
1354
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001355 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*sta),
1356 P54_CONTROL_TYPE_PSM_STA_UNLOCK, GFP_ATOMIC);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001357 if (!skb)
1358 return -ENOMEM;
1359
1360 sta = (struct p54_sta_unlock *)skb_put(skb, sizeof(*sta));
1361 memcpy(sta->addr, addr, ETH_ALEN);
Christian Lamparter0a5ec962008-12-14 15:05:42 +01001362 priv->tx(dev, skb);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001363 return 0;
1364}
1365
Christian Lamparterc772a082008-11-29 22:33:57 +01001366static void p54_sta_notify(struct ieee80211_hw *dev, struct ieee80211_vif *vif,
1367 enum sta_notify_cmd notify_cmd,
1368 struct ieee80211_sta *sta)
1369{
1370 switch (notify_cmd) {
1371 case STA_NOTIFY_ADD:
1372 case STA_NOTIFY_REMOVE:
1373 /*
1374 * Notify the firmware that we don't want or we don't
1375 * need to buffer frames for this station anymore.
1376 */
1377
1378 p54_sta_unlock(dev, sta->addr);
1379 break;
Christian Lamparter89fad572008-12-09 16:28:06 +01001380 case STA_NOTIFY_AWAKE:
1381 /* update the firmware's filter table */
1382 p54_sta_unlock(dev, sta->addr);
1383 break;
Christian Lamparterc772a082008-11-29 22:33:57 +01001384 default:
1385 break;
1386 }
1387}
1388
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001389static int p54_tx_cancel(struct ieee80211_hw *dev, struct sk_buff *entry)
1390{
1391 struct p54_common *priv = dev->priv;
1392 struct sk_buff *skb;
1393 struct p54_hdr *hdr;
1394 struct p54_txcancel *cancel;
1395
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001396 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*cancel),
1397 P54_CONTROL_TYPE_TXCANCEL, GFP_ATOMIC);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001398 if (!skb)
1399 return -ENOMEM;
1400
1401 hdr = (void *)entry->data;
1402 cancel = (struct p54_txcancel *)skb_put(skb, sizeof(*cancel));
1403 cancel->req_id = hdr->req_id;
Christian Lamparter0a5ec962008-12-14 15:05:42 +01001404 priv->tx(dev, skb);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001405 return 0;
1406}
1407
Christian Lamparter94585b02008-10-18 23:18:44 +02001408static int p54_tx_fill(struct ieee80211_hw *dev, struct sk_buff *skb,
1409 struct ieee80211_tx_info *info, u8 *queue, size_t *extra_len,
1410 u16 *flags, u16 *aid)
1411{
1412 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1413 struct p54_common *priv = dev->priv;
Christian Lamparter29701e52008-12-21 22:52:10 +01001414 int ret = 1;
Christian Lamparter94585b02008-10-18 23:18:44 +02001415
1416 switch (priv->mode) {
Christian Lamparter29701e52008-12-21 22:52:10 +01001417 case NL80211_IFTYPE_MONITOR:
1418 /*
1419 * We have to set P54_HDR_FLAG_DATA_OUT_PROMISC for
1420 * every frame in promiscuous/monitor mode.
1421 * see STSW45x0C LMAC API - page 12.
1422 */
1423 *aid = 0;
1424 *flags = P54_HDR_FLAG_DATA_OUT_PROMISC;
1425 *queue += P54_QUEUE_DATA;
1426 break;
Christian Lamparter94585b02008-10-18 23:18:44 +02001427 case NL80211_IFTYPE_STATION:
1428 *aid = 1;
Christian Lamparter29701e52008-12-21 22:52:10 +01001429 if (unlikely(ieee80211_is_mgmt(hdr->frame_control))) {
1430 *queue = P54_QUEUE_MGMT;
1431 ret = 0;
1432 } else
1433 *queue += P54_QUEUE_DATA;
Christian Lamparter94585b02008-10-18 23:18:44 +02001434 break;
1435 case NL80211_IFTYPE_AP:
1436 case NL80211_IFTYPE_ADHOC:
Christian Lamparterd131bb52008-11-15 17:02:31 +01001437 case NL80211_IFTYPE_MESH_POINT:
Christian Lamparter94585b02008-10-18 23:18:44 +02001438 if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
1439 *aid = 0;
Christian Lampartera15bd002008-12-21 20:54:34 +01001440 *queue = P54_QUEUE_CAB;
Christian Lamparter94585b02008-10-18 23:18:44 +02001441 return 0;
1442 }
Christian Lamparter29701e52008-12-21 22:52:10 +01001443
1444 if (unlikely(ieee80211_is_mgmt(hdr->frame_control))) {
1445 if (ieee80211_is_probe_resp(hdr->frame_control)) {
1446 *aid = 0;
1447 *queue = P54_QUEUE_MGMT;
1448 *flags = P54_HDR_FLAG_DATA_OUT_TIMESTAMP |
1449 P54_HDR_FLAG_DATA_OUT_NOCANCEL;
1450 return 0;
1451 } else if (ieee80211_is_beacon(hdr->frame_control)) {
1452 *aid = 0;
1453
1454 if (info->flags & IEEE80211_TX_CTL_INJECTED) {
1455 /*
1456 * Injecting beacons on top of a AP is
1457 * not a good idea... nevertheless,
1458 * it should be doable.
1459 */
1460
1461 *queue += P54_QUEUE_DATA;
1462 return 1;
1463 }
1464
1465 *flags = P54_HDR_FLAG_DATA_OUT_TIMESTAMP;
1466 *queue = P54_QUEUE_BEACON;
1467 *extra_len = IEEE80211_MAX_TIM_LEN;
1468 return 0;
1469 } else {
1470 *queue = P54_QUEUE_MGMT;
1471 ret = 0;
1472 }
1473 } else
1474 *queue += P54_QUEUE_DATA;
1475
Christian Lamparter94585b02008-10-18 23:18:44 +02001476 if (info->control.sta)
1477 *aid = info->control.sta->aid;
1478 else
Christian Lamparterc772a082008-11-29 22:33:57 +01001479 *flags |= P54_HDR_FLAG_DATA_OUT_NOCANCEL;
Christian Lamparter29701e52008-12-21 22:52:10 +01001480 break;
Christian Lamparter94585b02008-10-18 23:18:44 +02001481 }
1482 return ret;
1483}
1484
Christian Lamparter25900ef2008-11-29 22:34:37 +01001485static u8 p54_convert_algo(enum ieee80211_key_alg alg)
1486{
1487 switch (alg) {
1488 case ALG_WEP:
1489 return P54_CRYPTO_WEP;
1490 case ALG_TKIP:
1491 return P54_CRYPTO_TKIPMICHAEL;
1492 case ALG_CCMP:
1493 return P54_CRYPTO_AESCCMP;
1494 default:
1495 return 0;
1496 }
1497}
1498
Johannes Berge039fa42008-05-15 12:55:29 +02001499static int p54_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
Michael Wueff1a592007-09-25 18:11:01 -07001500{
Johannes Berge039fa42008-05-15 12:55:29 +02001501 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Christian Lampartera15bd002008-12-21 20:54:34 +01001502 struct ieee80211_tx_queue_stats *current_queue;
Michael Wueff1a592007-09-25 18:11:01 -07001503 struct p54_common *priv = dev->priv;
John W. Linville27df6052008-10-22 16:41:55 -04001504 struct p54_hdr *hdr;
1505 struct p54_tx_data *txhdr;
John W. Linvilledb4186c2008-10-31 15:53:12 -04001506 size_t padding, len, tim_len = 0;
Christian Lamparterc772a082008-11-29 22:33:57 +01001507 int i, j, ridx, ret;
Christian Lamparter94585b02008-10-18 23:18:44 +02001508 u16 hdr_flags = 0, aid = 0;
Christian Lamparter25900ef2008-11-29 22:34:37 +01001509 u8 rate, queue, crypt_offset = 0;
Christian Lamparteraaa15532008-08-09 19:20:47 -05001510 u8 cts_rate = 0x20;
Johannes Berge6a98542008-10-21 12:40:02 +02001511 u8 rc_flags;
Johannes Bergc12abae2008-10-14 16:56:51 +02001512 u8 calculated_tries[4];
1513 u8 nrates = 0, nremaining = 8;
Michael Wueff1a592007-09-25 18:11:01 -07001514
Christian Lamparter94585b02008-10-18 23:18:44 +02001515 queue = skb_get_queue_mapping(skb);
1516
Christian Lamparterc772a082008-11-29 22:33:57 +01001517 ret = p54_tx_fill(dev, skb, info, &queue, &tim_len, &hdr_flags, &aid);
1518 current_queue = &priv->tx_stats[queue];
1519 if (unlikely((current_queue->len > current_queue->limit) && ret))
1520 return NETDEV_TX_BUSY;
1521 current_queue->len++;
1522 current_queue->count++;
1523 if ((current_queue->len == current_queue->limit) && ret)
1524 ieee80211_stop_queue(dev, skb_get_queue_mapping(skb));
Michael Wueff1a592007-09-25 18:11:01 -07001525
1526 padding = (unsigned long)(skb->data - (sizeof(*hdr) + sizeof(*txhdr))) & 3;
1527 len = skb->len;
1528
Christian Lamparter25900ef2008-11-29 22:34:37 +01001529 if (info->control.hw_key) {
1530 crypt_offset = ieee80211_get_hdrlen_from_skb(skb);
1531 if (info->control.hw_key->alg == ALG_TKIP) {
1532 u8 *iv = (u8 *)(skb->data + crypt_offset);
1533 /*
1534 * The firmware excepts that the IV has to have
1535 * this special format
1536 */
1537 iv[1] = iv[0];
1538 iv[0] = iv[2];
1539 iv[2] = 0;
1540 }
1541 }
1542
John W. Linville27df6052008-10-22 16:41:55 -04001543 txhdr = (struct p54_tx_data *) skb_push(skb, sizeof(*txhdr) + padding);
1544 hdr = (struct p54_hdr *) skb_push(skb, sizeof(*hdr));
Michael Wueff1a592007-09-25 18:11:01 -07001545
1546 if (padding)
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02001547 hdr_flags |= P54_HDR_FLAG_DATA_ALIGN;
Christian Lamparter94585b02008-10-18 23:18:44 +02001548 hdr->type = cpu_to_le16(aid);
John W. Linville27df6052008-10-22 16:41:55 -04001549 hdr->rts_tries = info->control.rates[0].count;
Michael Wueff1a592007-09-25 18:11:01 -07001550
Johannes Bergc12abae2008-10-14 16:56:51 +02001551 /*
1552 * we register the rates in perfect order, and
1553 * RTS/CTS won't happen on 5 GHz
1554 */
1555 cts_rate = info->control.rts_cts_rate_idx;
1556
1557 memset(&txhdr->rateset, 0, sizeof(txhdr->rateset));
1558
1559 /* see how many rates got used */
1560 for (i = 0; i < 4; i++) {
1561 if (info->control.rates[i].idx < 0)
1562 break;
1563 nrates++;
Christian Lamparteraaa15532008-08-09 19:20:47 -05001564 }
Johannes Bergc12abae2008-10-14 16:56:51 +02001565
1566 /* limit tries to 8/nrates per rate */
1567 for (i = 0; i < nrates; i++) {
1568 /*
1569 * The magic expression here is equivalent to 8/nrates for
1570 * all values that matter, but avoids division and jumps.
1571 * Note that nrates can only take the values 1 through 4.
1572 */
1573 calculated_tries[i] = min_t(int, ((15 >> nrates) | 1) + 1,
1574 info->control.rates[i].count);
1575 nremaining -= calculated_tries[i];
Christian Lamparteraaa15532008-08-09 19:20:47 -05001576 }
Johannes Bergc12abae2008-10-14 16:56:51 +02001577
1578 /* if there are tries left, distribute from back to front */
1579 for (i = nrates - 1; nremaining > 0 && i >= 0; i--) {
1580 int tmp = info->control.rates[i].count - calculated_tries[i];
1581
1582 if (tmp <= 0)
1583 continue;
1584 /* RC requested more tries at this rate */
1585
1586 tmp = min_t(int, tmp, nremaining);
1587 calculated_tries[i] += tmp;
1588 nremaining -= tmp;
1589 }
1590
1591 ridx = 0;
1592 for (i = 0; i < nrates && ridx < 8; i++) {
1593 /* we register the rates in perfect order */
1594 rate = info->control.rates[i].idx;
1595 if (info->band == IEEE80211_BAND_5GHZ)
1596 rate += 4;
1597
1598 /* store the count we actually calculated for TX status */
1599 info->control.rates[i].count = calculated_tries[i];
1600
1601 rc_flags = info->control.rates[i].flags;
1602 if (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) {
1603 rate |= 0x10;
1604 cts_rate |= 0x10;
1605 }
1606 if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS)
1607 rate |= 0x40;
1608 else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
1609 rate |= 0x20;
1610 for (j = 0; j < calculated_tries[i] && ridx < 8; j++) {
1611 txhdr->rateset[ridx] = rate;
1612 ridx++;
1613 }
1614 }
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02001615
1616 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
1617 hdr_flags |= P54_HDR_FLAG_DATA_OUT_SEQNR;
1618
1619 /* TODO: enable bursting */
1620 hdr->flags = cpu_to_le16(hdr_flags);
John W. Linville27df6052008-10-22 16:41:55 -04001621 hdr->tries = ridx;
John W. Linville27df6052008-10-22 16:41:55 -04001622 txhdr->rts_rate_idx = 0;
Christian Lamparter25900ef2008-11-29 22:34:37 +01001623 if (info->control.hw_key) {
Christian Lamparter25900ef2008-11-29 22:34:37 +01001624 txhdr->key_type = p54_convert_algo(info->control.hw_key->alg);
1625 txhdr->key_len = min((u8)16, info->control.hw_key->keylen);
1626 memcpy(txhdr->key, info->control.hw_key->key, txhdr->key_len);
1627 if (info->control.hw_key->alg == ALG_TKIP) {
1628 if (unlikely(skb_tailroom(skb) < 12))
1629 goto err;
1630 /* reserve space for the MIC key */
1631 len += 8;
1632 memcpy(skb_put(skb, 8), &(info->control.hw_key->key
1633 [NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY]), 8);
1634 }
1635 /* reserve some space for ICV */
1636 len += info->control.hw_key->icv_len;
Christian Lamparterc1d34c12008-12-20 02:21:37 +01001637 memset(skb_put(skb, info->control.hw_key->icv_len), 0,
1638 info->control.hw_key->icv_len);
Christian Lamparter25900ef2008-11-29 22:34:37 +01001639 } else {
1640 txhdr->key_type = 0;
1641 txhdr->key_len = 0;
1642 }
1643 txhdr->crypt_offset = crypt_offset;
Christian Lamparter94585b02008-10-18 23:18:44 +02001644 txhdr->hw_queue = queue;
Christian Lampartera15bd002008-12-21 20:54:34 +01001645 txhdr->backlog = current_queue->len;
John W. Linville27df6052008-10-22 16:41:55 -04001646 memset(txhdr->durations, 0, sizeof(txhdr->durations));
Christian Lamparter78eb7482008-12-30 13:48:19 +01001647 txhdr->tx_antenna = ((info->antenna_sel_tx == 0) ?
1648 2 : info->antenna_sel_tx - 1) & priv->tx_diversity_mask;
Christian Lamparter6917f502009-01-11 01:14:18 +01001649 if (priv->rxhw == PDR_SYNTH_FRONTEND_LONGBOW) {
1650 txhdr->longbow.cts_rate = cts_rate;
1651 txhdr->longbow.output_power = cpu_to_le16(priv->output_power);
1652 } else {
1653 txhdr->normal.output_power = priv->output_power;
1654 txhdr->normal.cts_rate = cts_rate;
1655 }
Michael Wueff1a592007-09-25 18:11:01 -07001656 if (padding)
1657 txhdr->align[0] = padding;
1658
Christian Lamparter25900ef2008-11-29 22:34:37 +01001659 hdr->len = cpu_to_le16(len);
Johannes Berge039fa42008-05-15 12:55:29 +02001660 /* modifies skb->cb and with it info, so must be last! */
Christian Lamparter25900ef2008-11-29 22:34:37 +01001661 if (unlikely(p54_assign_address(dev, skb, hdr, skb->len + tim_len)))
1662 goto err;
Christian Lamparter0a5ec962008-12-14 15:05:42 +01001663 priv->tx(dev, skb);
Christian Lamparter54fdb042008-12-13 14:14:20 +01001664
1665 queue_delayed_work(dev->workqueue, &priv->work,
1666 msecs_to_jiffies(P54_TX_FRAME_LIFETIME));
1667
Christian Lamparteracbaf322009-01-07 16:40:08 +01001668 return NETDEV_TX_OK;
Christian Lamparter25900ef2008-11-29 22:34:37 +01001669
1670 err:
1671 skb_pull(skb, sizeof(*hdr) + sizeof(*txhdr) + padding);
Christian Lampartera15bd002008-12-21 20:54:34 +01001672 current_queue->len--;
1673 current_queue->count--;
Christian Lamparter25900ef2008-11-29 22:34:37 +01001674 return NETDEV_TX_BUSY;
Michael Wueff1a592007-09-25 18:11:01 -07001675}
1676
Christian Lamparterb2023dd2008-11-29 22:37:31 +01001677static int p54_setup_mac(struct ieee80211_hw *dev)
Michael Wueff1a592007-09-25 18:11:01 -07001678{
1679 struct p54_common *priv = dev->priv;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001680 struct sk_buff *skb;
Christian Lamparter5e734442008-10-15 04:07:56 +02001681 struct p54_setup_mac *setup;
Christian Lamparterb2023dd2008-11-29 22:37:31 +01001682 u16 mode;
Michael Wueff1a592007-09-25 18:11:01 -07001683
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001684 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*setup),
1685 P54_CONTROL_TYPE_SETUP, GFP_ATOMIC);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001686 if (!skb)
Michael Wueff1a592007-09-25 18:11:01 -07001687 return -ENOMEM;
1688
Christian Lamparter5e734442008-10-15 04:07:56 +02001689 setup = (struct p54_setup_mac *) skb_put(skb, sizeof(*setup));
Christian Lamparterb2023dd2008-11-29 22:37:31 +01001690 if (dev->conf.radio_enabled) {
1691 switch (priv->mode) {
1692 case NL80211_IFTYPE_STATION:
1693 mode = P54_FILTER_TYPE_STATION;
1694 break;
1695 case NL80211_IFTYPE_AP:
1696 mode = P54_FILTER_TYPE_AP;
1697 break;
1698 case NL80211_IFTYPE_ADHOC:
1699 case NL80211_IFTYPE_MESH_POINT:
1700 mode = P54_FILTER_TYPE_IBSS;
1701 break;
Christian Lamparter29701e52008-12-21 22:52:10 +01001702 case NL80211_IFTYPE_MONITOR:
1703 mode = P54_FILTER_TYPE_PROMISCUOUS;
1704 break;
Christian Lamparterb2023dd2008-11-29 22:37:31 +01001705 default:
Christian Lamparterefeada22009-03-05 21:31:05 +01001706 mode = P54_FILTER_TYPE_HIBERNATE;
Christian Lamparterb2023dd2008-11-29 22:37:31 +01001707 break;
1708 }
Christian Lamparter29701e52008-12-21 22:52:10 +01001709
1710 /*
1711 * "TRANSPARENT and PROMISCUOUS are mutually exclusive"
1712 * STSW45X0C LMAC API - page 12
1713 */
Christian Lamparter51eed992008-12-30 13:48:29 +01001714 if (((priv->filter_flags & FIF_PROMISC_IN_BSS) ||
1715 (priv->filter_flags & FIF_OTHER_BSS)) &&
Christian Lamparter29701e52008-12-21 22:52:10 +01001716 (mode != P54_FILTER_TYPE_PROMISCUOUS))
Christian Lamparterb2023dd2008-11-29 22:37:31 +01001717 mode |= P54_FILTER_TYPE_TRANSPARENT;
1718 } else
Christian Lamparterefeada22009-03-05 21:31:05 +01001719 mode = P54_FILTER_TYPE_HIBERNATE;
Christian Lamparterb2023dd2008-11-29 22:37:31 +01001720
Christian Lamparter5e734442008-10-15 04:07:56 +02001721 setup->mac_mode = cpu_to_le16(mode);
1722 memcpy(setup->mac_addr, priv->mac_addr, ETH_ALEN);
Christian Lamparterb2023dd2008-11-29 22:37:31 +01001723 memcpy(setup->bssid, priv->bssid, ETH_ALEN);
Christian Lamparter78eb7482008-12-30 13:48:19 +01001724 setup->rx_antenna = 2 & priv->rx_diversity_mask; /* automatic */
Chr94834072008-10-29 22:39:50 +01001725 setup->rx_align = 0;
Christian Lamparter19c19d52008-09-03 22:25:25 +02001726 if (priv->fw_var < 0x500) {
Christian Lamparterced09572008-11-14 19:42:39 +01001727 setup->v1.basic_rate_mask = cpu_to_le32(priv->basic_rate_mask);
Chr94834072008-10-29 22:39:50 +01001728 memset(setup->v1.rts_rates, 0, 8);
Christian Lamparter5e734442008-10-15 04:07:56 +02001729 setup->v1.rx_addr = cpu_to_le32(priv->rx_end);
1730 setup->v1.max_rx = cpu_to_le16(priv->rx_mtu);
1731 setup->v1.rxhw = cpu_to_le16(priv->rxhw);
Christian Lamparterced09572008-11-14 19:42:39 +01001732 setup->v1.wakeup_timer = cpu_to_le16(priv->wakeup_timer);
Christian Lamparter5e734442008-10-15 04:07:56 +02001733 setup->v1.unalloc0 = cpu_to_le16(0);
Christian Lamparter19c19d52008-09-03 22:25:25 +02001734 } else {
Christian Lamparter5e734442008-10-15 04:07:56 +02001735 setup->v2.rx_addr = cpu_to_le32(priv->rx_end);
1736 setup->v2.max_rx = cpu_to_le16(priv->rx_mtu);
1737 setup->v2.rxhw = cpu_to_le16(priv->rxhw);
Christian Lamparterced09572008-11-14 19:42:39 +01001738 setup->v2.timer = cpu_to_le16(priv->wakeup_timer);
Christian Lamparter5e734442008-10-15 04:07:56 +02001739 setup->v2.truncate = cpu_to_le16(48896);
Christian Lamparterced09572008-11-14 19:42:39 +01001740 setup->v2.basic_rate_mask = cpu_to_le32(priv->basic_rate_mask);
Christian Lamparter5e734442008-10-15 04:07:56 +02001741 setup->v2.sbss_offset = 0;
1742 setup->v2.mcast_window = 0;
1743 setup->v2.rx_rssi_threshold = 0;
1744 setup->v2.rx_ed_threshold = 0;
1745 setup->v2.ref_clock = cpu_to_le32(644245094);
1746 setup->v2.lpf_bandwidth = cpu_to_le16(65535);
1747 setup->v2.osc_start_delay = cpu_to_le16(65535);
Christian Lamparter19c19d52008-09-03 22:25:25 +02001748 }
Christian Lamparter0a5ec962008-12-14 15:05:42 +01001749 priv->tx(dev, skb);
Michael Wueff1a592007-09-25 18:11:01 -07001750 return 0;
1751}
1752
Christian Lamparter69ba3e52008-12-14 14:45:30 +01001753static int p54_scan(struct ieee80211_hw *dev, u16 mode, u16 dwell)
Michael Wueff1a592007-09-25 18:11:01 -07001754{
1755 struct p54_common *priv = dev->priv;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001756 struct sk_buff *skb;
Christian Lamparter6917f502009-01-11 01:14:18 +01001757 struct p54_hdr *hdr;
1758 struct p54_scan_head *head;
1759 struct p54_iq_autocal_entry *iq_autocal;
1760 union p54_scan_body_union *body;
1761 struct p54_scan_tail_rate *rate;
1762 struct pda_rssi_cal_entry *rssi;
Michael Wueff1a592007-09-25 18:11:01 -07001763 unsigned int i;
Michael Wueff1a592007-09-25 18:11:01 -07001764 void *entry;
Christian Lamparter69ba3e52008-12-14 14:45:30 +01001765 int band = dev->conf.channel->band;
Christian Lamparter83cf1b62009-01-11 01:10:33 +01001766 __le16 freq = cpu_to_le16(dev->conf.channel->center_freq);
Michael Wueff1a592007-09-25 18:11:01 -07001767
Christian Lamparter6917f502009-01-11 01:14:18 +01001768 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*head) +
1769 2 + sizeof(*iq_autocal) + sizeof(*body) +
1770 sizeof(*rate) + 2 * sizeof(*rssi),
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001771 P54_CONTROL_TYPE_SCAN, GFP_ATOMIC);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001772 if (!skb)
Michael Wueff1a592007-09-25 18:11:01 -07001773 return -ENOMEM;
1774
Christian Lamparter6917f502009-01-11 01:14:18 +01001775 head = (struct p54_scan_head *) skb_put(skb, sizeof(*head));
1776 memset(head->scan_params, 0, sizeof(head->scan_params));
1777 head->mode = cpu_to_le16(mode);
1778 head->dwell = cpu_to_le16(dwell);
1779 head->freq = freq;
Michael Wueff1a592007-09-25 18:11:01 -07001780
Christian Lamparter6917f502009-01-11 01:14:18 +01001781 if (priv->rxhw == PDR_SYNTH_FRONTEND_LONGBOW) {
1782 __le16 *pa_power_points = (__le16 *) skb_put(skb, 2);
1783 *pa_power_points = cpu_to_le16(0x0c);
1784 }
1785
1786 iq_autocal = (void *) skb_put(skb, sizeof(*iq_autocal));
Michael Wueff1a592007-09-25 18:11:01 -07001787 for (i = 0; i < priv->iq_autocal_len; i++) {
1788 if (priv->iq_autocal[i].freq != freq)
1789 continue;
1790
Christian Lamparter6917f502009-01-11 01:14:18 +01001791 memcpy(iq_autocal, &priv->iq_autocal[i].params,
1792 sizeof(struct p54_iq_autocal_entry));
Michael Wueff1a592007-09-25 18:11:01 -07001793 break;
1794 }
1795 if (i == priv->iq_autocal_len)
1796 goto err;
1797
Christian Lamparter6917f502009-01-11 01:14:18 +01001798 if (priv->rxhw == PDR_SYNTH_FRONTEND_LONGBOW)
1799 body = (void *) skb_put(skb, sizeof(body->longbow));
1800 else
1801 body = (void *) skb_put(skb, sizeof(body->normal));
1802
Christian Lamparter83cf1b62009-01-11 01:10:33 +01001803 for (i = 0; i < priv->output_limit->entries; i++) {
Christian Lamparter83cf1b62009-01-11 01:10:33 +01001804 __le16 *entry_freq = (void *) (priv->output_limit->data +
Christian Lamparter6917f502009-01-11 01:14:18 +01001805 priv->output_limit->entry_size * i);
Christian Lamparter83cf1b62009-01-11 01:10:33 +01001806
1807 if (*entry_freq != freq)
Michael Wueff1a592007-09-25 18:11:01 -07001808 continue;
1809
Christian Lamparter6917f502009-01-11 01:14:18 +01001810 if (priv->rxhw == PDR_SYNTH_FRONTEND_LONGBOW) {
1811 memcpy(&body->longbow.power_limits,
1812 (void *) entry_freq + sizeof(__le16),
1813 priv->output_limit->entry_size);
1814 } else {
1815 struct pda_channel_output_limit *limits =
1816 (void *) entry_freq;
1817
1818 body->normal.val_barker = 0x38;
1819 body->normal.val_bpsk = body->normal.dup_bpsk =
1820 limits->val_bpsk;
1821 body->normal.val_qpsk = body->normal.dup_qpsk =
1822 limits->val_qpsk;
1823 body->normal.val_16qam = body->normal.dup_16qam =
1824 limits->val_16qam;
1825 body->normal.val_64qam = body->normal.dup_64qam =
1826 limits->val_64qam;
1827 }
Michael Wueff1a592007-09-25 18:11:01 -07001828 break;
1829 }
Christian Lamparter83cf1b62009-01-11 01:10:33 +01001830 if (i == priv->output_limit->entries)
Michael Wueff1a592007-09-25 18:11:01 -07001831 goto err;
1832
Christian Lamparter83cf1b62009-01-11 01:10:33 +01001833 entry = (void *)(priv->curve_data->data + priv->curve_data->offset);
1834 for (i = 0; i < priv->curve_data->entries; i++) {
Michael Wueff1a592007-09-25 18:11:01 -07001835 if (*((__le16 *)entry) != freq) {
Christian Lamparter83cf1b62009-01-11 01:10:33 +01001836 entry += priv->curve_data->entry_size;
Michael Wueff1a592007-09-25 18:11:01 -07001837 continue;
1838 }
1839
Christian Lamparter6917f502009-01-11 01:14:18 +01001840 if (priv->rxhw == PDR_SYNTH_FRONTEND_LONGBOW) {
1841 memcpy(&body->longbow.curve_data,
1842 (void *) entry + sizeof(__le16),
1843 priv->curve_data->entry_size);
1844 } else {
1845 struct p54_scan_body *chan = &body->normal;
1846 struct pda_pa_curve_data *curve_data =
1847 (void *) priv->curve_data->data;
Christian Lamparter83cf1b62009-01-11 01:10:33 +01001848
Christian Lamparter6917f502009-01-11 01:14:18 +01001849 entry += sizeof(__le16);
1850 chan->pa_points_per_curve = 8;
1851 memset(chan->curve_data, 0, sizeof(*chan->curve_data));
1852 memcpy(chan->curve_data, entry,
1853 sizeof(struct p54_pa_curve_data_sample) *
1854 min((u8)8, curve_data->points_per_channel));
1855 }
Michael Wueff1a592007-09-25 18:11:01 -07001856 break;
1857 }
Christian Lamparter83cf1b62009-01-11 01:10:33 +01001858 if (i == priv->curve_data->entries)
1859 goto err;
Michael Wueff1a592007-09-25 18:11:01 -07001860
Christian Lamparter6917f502009-01-11 01:14:18 +01001861 if ((priv->fw_var >= 0x500) && (priv->fw_var < 0x509)) {
1862 rate = (void *) skb_put(skb, sizeof(*rate));
1863 rate->basic_rate_mask = cpu_to_le32(priv->basic_rate_mask);
1864 for (i = 0; i < sizeof(rate->rts_rates); i++)
1865 rate->rts_rates[i] = i;
Christian Lamparter19c19d52008-09-03 22:25:25 +02001866 }
Christian Lamparter6917f502009-01-11 01:14:18 +01001867
1868 rssi = (struct pda_rssi_cal_entry *) skb_put(skb, sizeof(*rssi));
1869 rssi->mul = cpu_to_le16(priv->rssical_db[band].mul);
1870 rssi->add = cpu_to_le16(priv->rssical_db[band].add);
1871 if (priv->rxhw == PDR_SYNTH_FRONTEND_LONGBOW) {
1872 /* Longbow frontend needs ever more */
1873 rssi = (void *) skb_put(skb, sizeof(*rssi));
1874 rssi->mul = cpu_to_le16(priv->rssical_db[band].longbow_unkn);
1875 rssi->add = cpu_to_le16(priv->rssical_db[band].longbow_unk2);
1876 }
1877
1878 if (priv->fw_var >= 0x509) {
1879 rate = (void *) skb_put(skb, sizeof(*rate));
1880 rate->basic_rate_mask = cpu_to_le32(priv->basic_rate_mask);
1881 for (i = 0; i < sizeof(rate->rts_rates); i++)
1882 rate->rts_rates[i] = i;
1883 }
1884
1885 hdr = (struct p54_hdr *) skb->data;
1886 hdr->len = cpu_to_le16(skb->len - sizeof(*hdr));
1887
Christian Lamparter0a5ec962008-12-14 15:05:42 +01001888 priv->tx(dev, skb);
Michael Wueff1a592007-09-25 18:11:01 -07001889 return 0;
1890
1891 err:
1892 printk(KERN_ERR "%s: frequency change failed\n", wiphy_name(dev->wiphy));
Christian Lamparteref15aa42009-01-09 21:06:30 +01001893 p54_free_skb(dev, skb);
Michael Wueff1a592007-09-25 18:11:01 -07001894 return -EINVAL;
1895}
1896
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01001897static int p54_set_leds(struct ieee80211_hw *dev)
Michael Wueff1a592007-09-25 18:11:01 -07001898{
1899 struct p54_common *priv = dev->priv;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001900 struct sk_buff *skb;
John W. Linville27df6052008-10-22 16:41:55 -04001901 struct p54_led *led;
Michael Wueff1a592007-09-25 18:11:01 -07001902
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001903 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*led),
1904 P54_CONTROL_TYPE_LED, GFP_ATOMIC);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001905 if (!skb)
Michael Wueff1a592007-09-25 18:11:01 -07001906 return -ENOMEM;
1907
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01001908 led = (struct p54_led *) skb_put(skb, sizeof(*led));
1909 led->flags = cpu_to_le16(0x0003);
1910 led->mask[0] = led->mask[1] = cpu_to_le16(priv->softled_state);
1911 led->delay[0] = cpu_to_le16(1);
1912 led->delay[1] = cpu_to_le16(0);
Christian Lamparter0a5ec962008-12-14 15:05:42 +01001913 priv->tx(dev, skb);
Michael Wueff1a592007-09-25 18:11:01 -07001914 return 0;
1915}
1916
Johannes Berg3330d7be2008-02-10 16:49:38 +01001917#define P54_SET_QUEUE(queue, ai_fs, cw_min, cw_max, _txop) \
Michael Wueff1a592007-09-25 18:11:01 -07001918do { \
1919 queue.aifs = cpu_to_le16(ai_fs); \
1920 queue.cwmin = cpu_to_le16(cw_min); \
1921 queue.cwmax = cpu_to_le16(cw_max); \
Johannes Berg3330d7be2008-02-10 16:49:38 +01001922 queue.txop = cpu_to_le16(_txop); \
Michael Wueff1a592007-09-25 18:11:01 -07001923} while(0)
1924
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02001925static int p54_set_edcf(struct ieee80211_hw *dev)
Michael Wueff1a592007-09-25 18:11:01 -07001926{
1927 struct p54_common *priv = dev->priv;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001928 struct sk_buff *skb;
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02001929 struct p54_edcf *edcf;
Michael Wueff1a592007-09-25 18:11:01 -07001930
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001931 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*edcf),
1932 P54_CONTROL_TYPE_DCFINIT, GFP_ATOMIC);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001933 if (!skb)
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02001934 return -ENOMEM;
1935
Christian Lamparterb92f30d2008-10-15 04:07:16 +02001936 edcf = (struct p54_edcf *)skb_put(skb, sizeof(*edcf));
Christian Lamparter40333e42008-10-08 20:52:22 +02001937 if (priv->use_short_slot) {
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02001938 edcf->slottime = 9;
1939 edcf->sifs = 0x10;
1940 edcf->eofpad = 0x00;
Michael Wueff1a592007-09-25 18:11:01 -07001941 } else {
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02001942 edcf->slottime = 20;
1943 edcf->sifs = 0x0a;
1944 edcf->eofpad = 0x06;
Michael Wueff1a592007-09-25 18:11:01 -07001945 }
Michael Wueff1a592007-09-25 18:11:01 -07001946 /* (see prism54/isl_oid.h for further details) */
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02001947 edcf->frameburst = cpu_to_le16(0);
1948 edcf->round_trip_delay = cpu_to_le16(0);
Chr94834072008-10-29 22:39:50 +01001949 edcf->flags = 0;
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02001950 memset(edcf->mapping, 0, sizeof(edcf->mapping));
1951 memcpy(edcf->queue, priv->qos_params, sizeof(edcf->queue));
Christian Lamparter0a5ec962008-12-14 15:05:42 +01001952 priv->tx(dev, skb);
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02001953 return 0;
Michael Wueff1a592007-09-25 18:11:01 -07001954}
1955
Christian Lamparter2b8d4e22008-12-30 13:48:41 +01001956static int p54_set_ps(struct ieee80211_hw *dev)
1957{
1958 struct p54_common *priv = dev->priv;
1959 struct sk_buff *skb;
1960 struct p54_psm *psm;
1961 u16 mode;
1962 int i;
1963
1964 if (dev->conf.flags & IEEE80211_CONF_PS)
Christian Lamparterf13027a2009-03-25 03:12:49 +01001965 mode = P54_PSM | P54_PSM_BEACON_TIMEOUT | P54_PSM_DTIM |
1966 P54_PSM_CHECKSUM | P54_PSM_MCBC;
Christian Lamparter2b8d4e22008-12-30 13:48:41 +01001967 else
1968 mode = P54_PSM_CAM;
1969
Christian Lamparter63f2dc92009-01-09 21:05:31 +01001970 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*psm),
1971 P54_CONTROL_TYPE_PSM, GFP_ATOMIC);
Christian Lamparter2b8d4e22008-12-30 13:48:41 +01001972 if (!skb)
1973 return -ENOMEM;
1974
1975 psm = (struct p54_psm *)skb_put(skb, sizeof(*psm));
1976 psm->mode = cpu_to_le16(mode);
1977 psm->aid = cpu_to_le16(priv->aid);
1978 for (i = 0; i < ARRAY_SIZE(psm->intervals); i++) {
1979 psm->intervals[i].interval =
1980 cpu_to_le16(dev->conf.listen_interval);
Christian Lamparteracbaf322009-01-07 16:40:08 +01001981 psm->intervals[i].periods = cpu_to_le16(1);
Christian Lamparter2b8d4e22008-12-30 13:48:41 +01001982 }
1983
Christian Lamparterf13027a2009-03-25 03:12:49 +01001984 psm->beacon_rssi_skip_max = 200;
Christian Lamparter2b8d4e22008-12-30 13:48:41 +01001985 psm->rssi_delta_threshold = 0;
Christian Lamparterf13027a2009-03-25 03:12:49 +01001986 psm->nr = 10;
1987 psm->exclude[0] = 0;
Christian Lamparter2b8d4e22008-12-30 13:48:41 +01001988
1989 priv->tx(dev, skb);
1990
1991 return 0;
1992}
1993
Christian Lampartere5ea92a2008-10-18 23:19:00 +02001994static int p54_beacon_tim(struct sk_buff *skb)
1995{
1996 /*
1997 * the good excuse for this mess is ... the firmware.
1998 * The dummy TIM MUST be at the end of the beacon frame,
1999 * because it'll be overwritten!
2000 */
2001
2002 struct ieee80211_mgmt *mgmt = (void *)skb->data;
2003 u8 *pos, *end;
2004
Christian Lamparter02e37ba2008-11-29 22:39:08 +01002005 if (skb->len <= sizeof(mgmt))
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002006 return -EINVAL;
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002007
2008 pos = (u8 *)mgmt->u.beacon.variable;
2009 end = skb->data + skb->len;
2010 while (pos < end) {
Christian Lamparter02e37ba2008-11-29 22:39:08 +01002011 if (pos + 2 + pos[1] > end)
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002012 return -EINVAL;
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002013
2014 if (pos[0] == WLAN_EID_TIM) {
2015 u8 dtim_len = pos[1];
2016 u8 dtim_period = pos[3];
2017 u8 *next = pos + 2 + dtim_len;
2018
Christian Lamparter02e37ba2008-11-29 22:39:08 +01002019 if (dtim_len < 3)
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002020 return -EINVAL;
Christian Lamparter02e37ba2008-11-29 22:39:08 +01002021
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002022 memmove(pos, next, end - next);
2023
2024 if (dtim_len > 3)
2025 skb_trim(skb, skb->len - (dtim_len - 3));
2026
2027 pos = end - (dtim_len + 2);
2028
2029 /* add the dummy at the end */
2030 pos[0] = WLAN_EID_TIM;
2031 pos[1] = 3;
2032 pos[2] = 0;
2033 pos[3] = dtim_period;
2034 pos[4] = 0;
2035 return 0;
2036 }
2037 pos += 2 + pos[1];
2038 }
2039 return 0;
2040}
2041
2042static int p54_beacon_update(struct ieee80211_hw *dev,
2043 struct ieee80211_vif *vif)
2044{
2045 struct p54_common *priv = dev->priv;
2046 struct sk_buff *beacon;
2047 int ret;
2048
2049 if (priv->cached_beacon) {
2050 p54_tx_cancel(dev, priv->cached_beacon);
2051 /* wait for the last beacon the be freed */
2052 msleep(10);
2053 }
2054
2055 beacon = ieee80211_beacon_get(dev, vif);
2056 if (!beacon)
2057 return -ENOMEM;
2058 ret = p54_beacon_tim(beacon);
2059 if (ret)
2060 return ret;
2061 ret = p54_tx(dev, beacon);
2062 if (ret)
2063 return ret;
2064 priv->cached_beacon = beacon;
2065 priv->tsf_high32 = 0;
2066 priv->tsf_low32 = 0;
2067
2068 return 0;
2069}
2070
Johannes Berg4150c572007-09-17 01:29:23 -04002071static int p54_start(struct ieee80211_hw *dev)
Michael Wueff1a592007-09-25 18:11:01 -07002072{
2073 struct p54_common *priv = dev->priv;
2074 int err;
2075
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002076 mutex_lock(&priv->conf_mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04002077 err = priv->open(dev);
Christian Lamparter40db0b22008-11-16 12:20:32 +01002078 if (err)
2079 goto out;
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02002080 P54_SET_QUEUE(priv->qos_params[0], 0x0002, 0x0003, 0x0007, 47);
2081 P54_SET_QUEUE(priv->qos_params[1], 0x0002, 0x0007, 0x000f, 94);
2082 P54_SET_QUEUE(priv->qos_params[2], 0x0003, 0x000f, 0x03ff, 0);
2083 P54_SET_QUEUE(priv->qos_params[3], 0x0007, 0x000f, 0x03ff, 0);
2084 err = p54_set_edcf(dev);
Christian Lamparter40db0b22008-11-16 12:20:32 +01002085 if (err)
2086 goto out;
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002087
2088 memset(priv->bssid, ~0, ETH_ALEN);
Christian Lamparter40db0b22008-11-16 12:20:32 +01002089 priv->mode = NL80211_IFTYPE_MONITOR;
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002090 err = p54_setup_mac(dev);
2091 if (err) {
2092 priv->mode = NL80211_IFTYPE_UNSPECIFIED;
2093 goto out;
2094 }
Johannes Berg4150c572007-09-17 01:29:23 -04002095
Christian Lamparter54fdb042008-12-13 14:14:20 +01002096 queue_delayed_work(dev->workqueue, &priv->work, 0);
2097
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002098 priv->softled_state = 0;
2099 err = p54_set_leds(dev);
2100
Christian Lamparter40db0b22008-11-16 12:20:32 +01002101out:
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002102 mutex_unlock(&priv->conf_mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04002103 return err;
2104}
2105
2106static void p54_stop(struct ieee80211_hw *dev)
2107{
2108 struct p54_common *priv = dev->priv;
2109 struct sk_buff *skb;
Christian Lampartercc6de662008-09-06 02:56:23 +02002110
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002111 mutex_lock(&priv->conf_mutex);
Christian Lamparter59651e82008-12-09 21:07:50 +01002112 priv->mode = NL80211_IFTYPE_UNSPECIFIED;
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002113 priv->softled_state = 0;
2114 p54_set_leds(dev);
2115
Christian Lamparterdce07252009-03-25 03:12:18 +01002116#ifdef CONFIG_P54_LEDS
2117 cancel_delayed_work_sync(&priv->led_work);
2118#endif /* CONFIG_P54_LEDS */
Christian Lamparter54fdb042008-12-13 14:14:20 +01002119 cancel_delayed_work_sync(&priv->work);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002120 if (priv->cached_beacon)
2121 p54_tx_cancel(dev, priv->cached_beacon);
2122
Christian Lamparter59651e82008-12-09 21:07:50 +01002123 priv->stop(dev);
Johannes Berge039fa42008-05-15 12:55:29 +02002124 while ((skb = skb_dequeue(&priv->tx_queue)))
Johannes Berg4150c572007-09-17 01:29:23 -04002125 kfree_skb(skb);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002126 priv->cached_beacon = NULL;
Christian Lampartera0db6632008-09-06 02:56:04 +02002127 priv->tsf_high32 = priv->tsf_low32 = 0;
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002128 mutex_unlock(&priv->conf_mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04002129}
2130
2131static int p54_add_interface(struct ieee80211_hw *dev,
2132 struct ieee80211_if_init_conf *conf)
2133{
2134 struct p54_common *priv = dev->priv;
2135
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002136 mutex_lock(&priv->conf_mutex);
2137 if (priv->mode != NL80211_IFTYPE_MONITOR) {
2138 mutex_unlock(&priv->conf_mutex);
Johannes Berg4150c572007-09-17 01:29:23 -04002139 return -EOPNOTSUPP;
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002140 }
Michael Wueff1a592007-09-25 18:11:01 -07002141
Christian Lamparterf13027a2009-03-25 03:12:49 +01002142 priv->vif = conf->vif;
2143
Michael Wueff1a592007-09-25 18:11:01 -07002144 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002145 case NL80211_IFTYPE_STATION:
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002146 case NL80211_IFTYPE_ADHOC:
2147 case NL80211_IFTYPE_AP:
Christian Lamparterd131bb52008-11-15 17:02:31 +01002148 case NL80211_IFTYPE_MESH_POINT:
Michael Wueff1a592007-09-25 18:11:01 -07002149 priv->mode = conf->type;
2150 break;
2151 default:
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002152 mutex_unlock(&priv->conf_mutex);
Michael Wueff1a592007-09-25 18:11:01 -07002153 return -EOPNOTSUPP;
2154 }
2155
Johannes Berg4150c572007-09-17 01:29:23 -04002156 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002157 p54_setup_mac(dev);
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002158 mutex_unlock(&priv->conf_mutex);
Michael Wueff1a592007-09-25 18:11:01 -07002159 return 0;
2160}
2161
2162static void p54_remove_interface(struct ieee80211_hw *dev,
2163 struct ieee80211_if_init_conf *conf)
2164{
2165 struct p54_common *priv = dev->priv;
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002166
2167 mutex_lock(&priv->conf_mutex);
Christian Lamparterf13027a2009-03-25 03:12:49 +01002168 priv->vif = NULL;
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002169 if (priv->cached_beacon)
2170 p54_tx_cancel(dev, priv->cached_beacon);
Johannes Berg05c914f2008-09-11 00:01:58 +02002171 priv->mode = NL80211_IFTYPE_MONITOR;
Johannes Berg4150c572007-09-17 01:29:23 -04002172 memset(priv->mac_addr, 0, ETH_ALEN);
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002173 memset(priv->bssid, 0, ETH_ALEN);
2174 p54_setup_mac(dev);
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002175 mutex_unlock(&priv->conf_mutex);
Michael Wueff1a592007-09-25 18:11:01 -07002176}
2177
Johannes Berge8975582008-10-09 12:18:51 +02002178static int p54_config(struct ieee80211_hw *dev, u32 changed)
Michael Wueff1a592007-09-25 18:11:01 -07002179{
John W. Linville26d15972009-01-12 14:46:39 -05002180 int ret = 0;
Larry Finger6041e2a2008-08-03 17:58:36 -05002181 struct p54_common *priv = dev->priv;
Johannes Berge8975582008-10-09 12:18:51 +02002182 struct ieee80211_conf *conf = &dev->conf;
Michael Wueff1a592007-09-25 18:11:01 -07002183
Larry Finger6041e2a2008-08-03 17:58:36 -05002184 mutex_lock(&priv->conf_mutex);
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002185 if (changed & IEEE80211_CONF_CHANGE_POWER)
2186 priv->output_power = conf->power_level << 2;
2187 if (changed & IEEE80211_CONF_CHANGE_RADIO_ENABLED) {
2188 ret = p54_setup_mac(dev);
2189 if (ret)
2190 goto out;
2191 }
2192 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
Christian Lamparter69ba3e52008-12-14 14:45:30 +01002193 ret = p54_scan(dev, P54_SCAN_EXIT, 0);
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002194 if (ret)
2195 goto out;
2196 }
Christian Lamparter2b8d4e22008-12-30 13:48:41 +01002197 if (changed & IEEE80211_CONF_CHANGE_PS) {
2198 ret = p54_set_ps(dev);
2199 if (ret)
2200 goto out;
2201 }
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002202
2203out:
Larry Finger6041e2a2008-08-03 17:58:36 -05002204 mutex_unlock(&priv->conf_mutex);
Michael Wueff1a592007-09-25 18:11:01 -07002205 return ret;
2206}
2207
Johannes Berg32bfd352007-12-19 01:31:26 +01002208static int p54_config_interface(struct ieee80211_hw *dev,
2209 struct ieee80211_vif *vif,
Michael Wueff1a592007-09-25 18:11:01 -07002210 struct ieee80211_if_conf *conf)
2211{
2212 struct p54_common *priv = dev->priv;
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002213 int ret = 0;
Michael Wueff1a592007-09-25 18:11:01 -07002214
Larry Finger6041e2a2008-08-03 17:58:36 -05002215 mutex_lock(&priv->conf_mutex);
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002216 if (conf->changed & IEEE80211_IFCC_BSSID) {
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002217 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002218 ret = p54_setup_mac(dev);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002219 if (ret)
2220 goto out;
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002221 }
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002222
2223 if (conf->changed & IEEE80211_IFCC_BEACON) {
Christian Lamparter69ba3e52008-12-14 14:45:30 +01002224 ret = p54_scan(dev, P54_SCAN_EXIT, 0);
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002225 if (ret)
2226 goto out;
2227 ret = p54_setup_mac(dev);
2228 if (ret)
2229 goto out;
2230 ret = p54_beacon_update(dev, vif);
2231 if (ret)
2232 goto out;
2233 ret = p54_set_edcf(dev);
2234 if (ret)
2235 goto out;
2236 }
2237
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002238out:
Larry Finger6041e2a2008-08-03 17:58:36 -05002239 mutex_unlock(&priv->conf_mutex);
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002240 return ret;
Michael Wueff1a592007-09-25 18:11:01 -07002241}
2242
Johannes Berg4150c572007-09-17 01:29:23 -04002243static void p54_configure_filter(struct ieee80211_hw *dev,
2244 unsigned int changed_flags,
2245 unsigned int *total_flags,
2246 int mc_count, struct dev_mc_list *mclist)
2247{
2248 struct p54_common *priv = dev->priv;
2249
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002250 *total_flags &= FIF_PROMISC_IN_BSS |
Christian Lamparter346de732009-03-05 21:28:57 +01002251 FIF_OTHER_BSS;
Christian Lamparter78d57eb2008-09-06 02:56:12 +02002252
2253 priv->filter_flags = *total_flags;
Johannes Berg4150c572007-09-17 01:29:23 -04002254
Christian Lamparter51eed992008-12-30 13:48:29 +01002255 if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS))
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002256 p54_setup_mac(dev);
Johannes Berg4150c572007-09-17 01:29:23 -04002257}
2258
Johannes Berge100bb62008-04-30 18:51:21 +02002259static int p54_conf_tx(struct ieee80211_hw *dev, u16 queue,
Michael Wueff1a592007-09-25 18:11:01 -07002260 const struct ieee80211_tx_queue_params *params)
2261{
2262 struct p54_common *priv = dev->priv;
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002263 int ret;
Michael Wueff1a592007-09-25 18:11:01 -07002264
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002265 mutex_lock(&priv->conf_mutex);
John W. Linville3df5ee62008-05-01 17:07:32 -04002266 if ((params) && !(queue > 4)) {
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02002267 P54_SET_QUEUE(priv->qos_params[queue], params->aifs,
Johannes Berg3330d7be2008-02-10 16:49:38 +01002268 params->cw_min, params->cw_max, params->txop);
Christian Lamparterb50563a2008-11-24 14:52:51 +01002269 ret = p54_set_edcf(dev);
Michael Wueff1a592007-09-25 18:11:01 -07002270 } else
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002271 ret = -EINVAL;
Christian Lamparter9e7f3f82008-10-18 23:18:01 +02002272 mutex_unlock(&priv->conf_mutex);
2273 return ret;
Michael Wueff1a592007-09-25 18:11:01 -07002274}
2275
Christian Lamparter1b997532008-09-06 14:25:58 +02002276static int p54_init_xbow_synth(struct ieee80211_hw *dev)
2277{
2278 struct p54_common *priv = dev->priv;
Christian Lamparterb92f30d2008-10-15 04:07:16 +02002279 struct sk_buff *skb;
John W. Linville27df6052008-10-22 16:41:55 -04002280 struct p54_xbow_synth *xbow;
Christian Lamparter1b997532008-09-06 14:25:58 +02002281
Christian Lamparter63f2dc92009-01-09 21:05:31 +01002282 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*xbow),
2283 P54_CONTROL_TYPE_XBOW_SYNTH_CFG, GFP_KERNEL);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02002284 if (!skb)
Christian Lamparter1b997532008-09-06 14:25:58 +02002285 return -ENOMEM;
2286
John W. Linville27df6052008-10-22 16:41:55 -04002287 xbow = (struct p54_xbow_synth *)skb_put(skb, sizeof(*xbow));
Christian Lamparter1b997532008-09-06 14:25:58 +02002288 xbow->magic1 = cpu_to_le16(0x1);
2289 xbow->magic2 = cpu_to_le16(0x2);
2290 xbow->freq = cpu_to_le16(5390);
Christian Lamparterb92f30d2008-10-15 04:07:16 +02002291 memset(xbow->padding, 0, sizeof(xbow->padding));
Christian Lamparter0a5ec962008-12-14 15:05:42 +01002292 priv->tx(dev, skb);
Christian Lamparter1b997532008-09-06 14:25:58 +02002293 return 0;
2294}
2295
Christian Lamparter54fdb042008-12-13 14:14:20 +01002296static void p54_work(struct work_struct *work)
Christian Lampartercc6de662008-09-06 02:56:23 +02002297{
Christian Lamparter54fdb042008-12-13 14:14:20 +01002298 struct p54_common *priv = container_of(work, struct p54_common,
2299 work.work);
2300 struct ieee80211_hw *dev = priv->hw;
2301 struct sk_buff *skb;
Christian Lampartercc6de662008-09-06 02:56:23 +02002302
Christian Lamparter54fdb042008-12-13 14:14:20 +01002303 if (unlikely(priv->mode == NL80211_IFTYPE_UNSPECIFIED))
2304 return ;
Christian Lampartercc6de662008-09-06 02:56:23 +02002305
Christian Lamparter54fdb042008-12-13 14:14:20 +01002306 /*
2307 * TODO: walk through tx_queue and do the following tasks
2308 * 1. initiate bursts.
2309 * 2. cancel stuck frames / reset the device if necessary.
2310 */
2311
Christian Lamparter63f2dc92009-01-09 21:05:31 +01002312 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL,
Christian Lamparter54fdb042008-12-13 14:14:20 +01002313 sizeof(struct p54_statistics),
2314 P54_CONTROL_TYPE_STAT_READBACK, GFP_KERNEL);
2315 if (!skb)
2316 return ;
2317
Christian Lamparter0a5ec962008-12-14 15:05:42 +01002318 priv->tx(dev, skb);
Christian Lampartercc6de662008-09-06 02:56:23 +02002319}
2320
Michael Wueff1a592007-09-25 18:11:01 -07002321static int p54_get_stats(struct ieee80211_hw *dev,
2322 struct ieee80211_low_level_stats *stats)
2323{
Christian Lampartercc6de662008-09-06 02:56:23 +02002324 struct p54_common *priv = dev->priv;
2325
Christian Lampartercc6de662008-09-06 02:56:23 +02002326 memcpy(stats, &priv->stats, sizeof(*stats));
Michael Wueff1a592007-09-25 18:11:01 -07002327 return 0;
2328}
2329
2330static int p54_get_tx_stats(struct ieee80211_hw *dev,
2331 struct ieee80211_tx_queue_stats *stats)
2332{
2333 struct p54_common *priv = dev->priv;
Michael Wueff1a592007-09-25 18:11:01 -07002334
Christian Lampartera15bd002008-12-21 20:54:34 +01002335 memcpy(stats, &priv->tx_stats[P54_QUEUE_DATA],
2336 sizeof(stats[0]) * dev->queues);
Michael Wueff1a592007-09-25 18:11:01 -07002337 return 0;
2338}
2339
Christian Lamparter40333e42008-10-08 20:52:22 +02002340static void p54_bss_info_changed(struct ieee80211_hw *dev,
2341 struct ieee80211_vif *vif,
2342 struct ieee80211_bss_conf *info,
2343 u32 changed)
2344{
2345 struct p54_common *priv = dev->priv;
2346
2347 if (changed & BSS_CHANGED_ERP_SLOT) {
2348 priv->use_short_slot = info->use_short_slot;
Christian Lamparter0fdd7c52008-10-15 03:55:37 +02002349 p54_set_edcf(dev);
Christian Lamparter40333e42008-10-08 20:52:22 +02002350 }
Christian Lamparterced09572008-11-14 19:42:39 +01002351 if (changed & BSS_CHANGED_BASIC_RATES) {
2352 if (dev->conf.channel->band == IEEE80211_BAND_5GHZ)
2353 priv->basic_rate_mask = (info->basic_rates << 4);
2354 else
2355 priv->basic_rate_mask = info->basic_rates;
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002356 p54_setup_mac(dev);
Christian Lamparterced09572008-11-14 19:42:39 +01002357 if (priv->fw_var >= 0x500)
Christian Lamparter69ba3e52008-12-14 14:45:30 +01002358 p54_scan(dev, P54_SCAN_EXIT, 0);
Christian Lamparterced09572008-11-14 19:42:39 +01002359 }
2360 if (changed & BSS_CHANGED_ASSOC) {
2361 if (info->assoc) {
2362 priv->aid = info->aid;
2363 priv->wakeup_timer = info->beacon_int *
2364 info->dtim_period * 5;
Christian Lamparterb2023dd2008-11-29 22:37:31 +01002365 p54_setup_mac(dev);
Christian Lamparterced09572008-11-14 19:42:39 +01002366 }
2367 }
2368
Christian Lamparter40333e42008-10-08 20:52:22 +02002369}
2370
Christian Lamparter25900ef2008-11-29 22:34:37 +01002371static int p54_set_key(struct ieee80211_hw *dev, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002372 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
Christian Lamparter25900ef2008-11-29 22:34:37 +01002373 struct ieee80211_key_conf *key)
2374{
2375 struct p54_common *priv = dev->priv;
2376 struct sk_buff *skb;
2377 struct p54_keycache *rxkey;
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002378 int slot, ret = 0;
Christian Lamparter25900ef2008-11-29 22:34:37 +01002379 u8 algo = 0;
2380
2381 if (modparam_nohwcrypt)
2382 return -EOPNOTSUPP;
2383
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002384 mutex_lock(&priv->conf_mutex);
2385 if (cmd == SET_KEY) {
Christian Lamparter25900ef2008-11-29 22:34:37 +01002386 switch (key->alg) {
2387 case ALG_TKIP:
2388 if (!(priv->privacy_caps & (BR_DESC_PRIV_CAP_MICHAEL |
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002389 BR_DESC_PRIV_CAP_TKIP))) {
2390 ret = -EOPNOTSUPP;
2391 goto out_unlock;
2392 }
Christian Lamparter25900ef2008-11-29 22:34:37 +01002393 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2394 algo = P54_CRYPTO_TKIPMICHAEL;
2395 break;
2396 case ALG_WEP:
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002397 if (!(priv->privacy_caps & BR_DESC_PRIV_CAP_WEP)) {
2398 ret = -EOPNOTSUPP;
2399 goto out_unlock;
2400 }
Christian Lamparter25900ef2008-11-29 22:34:37 +01002401 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2402 algo = P54_CRYPTO_WEP;
2403 break;
2404 case ALG_CCMP:
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002405 if (!(priv->privacy_caps & BR_DESC_PRIV_CAP_AESCCMP)) {
2406 ret = -EOPNOTSUPP;
2407 goto out_unlock;
2408 }
Christian Lamparter25900ef2008-11-29 22:34:37 +01002409 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2410 algo = P54_CRYPTO_AESCCMP;
2411 break;
2412 default:
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002413 ret = -EOPNOTSUPP;
2414 goto out_unlock;
Christian Lamparter25900ef2008-11-29 22:34:37 +01002415 }
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002416 slot = bitmap_find_free_region(priv->used_rxkeys,
2417 priv->rx_keycache_size, 0);
2418
2419 if (slot < 0) {
2420 /*
2421 * The device supports the choosen algorithm, but the
2422 * firmware does not provide enough key slots to store
2423 * all of them.
2424 * But encryption offload for outgoing frames is always
2425 * possible, so we just pretend that the upload was
2426 * successful and do the decryption in software.
2427 */
2428
2429 /* mark the key as invalid. */
2430 key->hw_key_idx = 0xff;
2431 goto out_unlock;
2432 }
2433 } else {
2434 slot = key->hw_key_idx;
2435
2436 if (slot == 0xff) {
2437 /* This key was not uploaded into the rx key cache. */
2438
2439 goto out_unlock;
2440 }
2441
2442 bitmap_release_region(priv->used_rxkeys, slot, 0);
2443 algo = 0;
Christian Lamparter25900ef2008-11-29 22:34:37 +01002444 }
2445
Christian Lamparter63f2dc92009-01-09 21:05:31 +01002446 skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*rxkey),
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002447 P54_CONTROL_TYPE_RX_KEYCACHE, GFP_KERNEL);
Christian Lamparter25900ef2008-11-29 22:34:37 +01002448 if (!skb) {
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002449 bitmap_release_region(priv->used_rxkeys, slot, 0);
2450 ret = -ENOSPC;
2451 goto out_unlock;
Christian Lamparter25900ef2008-11-29 22:34:37 +01002452 }
2453
Christian Lamparter25900ef2008-11-29 22:34:37 +01002454 rxkey = (struct p54_keycache *)skb_put(skb, sizeof(*rxkey));
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002455 rxkey->entry = slot;
Christian Lamparter25900ef2008-11-29 22:34:37 +01002456 rxkey->key_id = key->keyidx;
2457 rxkey->key_type = algo;
Johannes Bergdc822b52008-12-29 12:55:09 +01002458 if (sta)
2459 memcpy(rxkey->mac, sta->addr, ETH_ALEN);
Christian Lamparter25900ef2008-11-29 22:34:37 +01002460 else
2461 memset(rxkey->mac, ~0, ETH_ALEN);
2462 if (key->alg != ALG_TKIP) {
2463 rxkey->key_len = min((u8)16, key->keylen);
2464 memcpy(rxkey->key, key->key, rxkey->key_len);
2465 } else {
2466 rxkey->key_len = 24;
2467 memcpy(rxkey->key, key->key, 16);
2468 memcpy(&(rxkey->key[16]), &(key->key
2469 [NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY]), 8);
2470 }
2471
Christian Lamparter0a5ec962008-12-14 15:05:42 +01002472 priv->tx(dev, skb);
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002473 key->hw_key_idx = slot;
2474
2475out_unlock:
Christian Lamparter25900ef2008-11-29 22:34:37 +01002476 mutex_unlock(&priv->conf_mutex);
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002477 return ret;
Christian Lamparter25900ef2008-11-29 22:34:37 +01002478}
2479
Christian Lamparterd8cd7ef2009-03-23 15:37:45 +01002480#ifdef CONFIG_P54_LEDS
Christian Lamparterdce07252009-03-25 03:12:18 +01002481static void p54_update_leds(struct work_struct *work)
2482{
2483 struct p54_common *priv = container_of(work, struct p54_common,
2484 led_work.work);
2485 int err, i, tmp, blink_delay = 400;
2486 bool rerun = false;
2487
2488 /* Don't toggle the LED, when the device is down. */
2489 if (priv->mode == NL80211_IFTYPE_UNSPECIFIED)
2490 return ;
2491
2492 for (i = 0; i < ARRAY_SIZE(priv->leds); i++)
2493 if (priv->leds[i].toggled) {
2494 priv->softled_state |= BIT(i);
2495
2496 tmp = 70 + 200 / (priv->leds[i].toggled);
2497 if (tmp < blink_delay)
2498 blink_delay = tmp;
2499
2500 if (priv->leds[i].led_dev.brightness == LED_OFF)
2501 rerun = true;
2502
2503 priv->leds[i].toggled =
2504 !!priv->leds[i].led_dev.brightness;
2505 } else
2506 priv->softled_state &= ~BIT(i);
2507
2508 err = p54_set_leds(priv->hw);
2509 if (err && net_ratelimit())
2510 printk(KERN_ERR "%s: failed to update LEDs.\n",
2511 wiphy_name(priv->hw->wiphy));
2512
2513 if (rerun)
2514 queue_delayed_work(priv->hw->workqueue, &priv->led_work,
2515 msecs_to_jiffies(blink_delay));
2516}
2517
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002518static void p54_led_brightness_set(struct led_classdev *led_dev,
2519 enum led_brightness brightness)
2520{
2521 struct p54_led_dev *led = container_of(led_dev, struct p54_led_dev,
2522 led_dev);
2523 struct ieee80211_hw *dev = led->hw_dev;
2524 struct p54_common *priv = dev->priv;
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002525
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002526 if (priv->mode == NL80211_IFTYPE_UNSPECIFIED)
2527 return ;
2528
Christian Lamparterdce07252009-03-25 03:12:18 +01002529 if (brightness) {
2530 led->toggled++;
2531 queue_delayed_work(priv->hw->workqueue, &priv->led_work,
2532 HZ/10);
2533 }
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002534}
2535
2536static int p54_register_led(struct ieee80211_hw *dev,
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002537 unsigned int led_index,
2538 char *name, char *trigger)
2539{
Christian Lamparterdce07252009-03-25 03:12:18 +01002540 struct p54_common *priv = dev->priv;
2541 struct p54_led_dev *led = &priv->leds[led_index];
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002542 int err;
2543
2544 if (led->registered)
2545 return -EEXIST;
2546
2547 snprintf(led->name, sizeof(led->name), "p54-%s::%s",
2548 wiphy_name(dev->wiphy), name);
2549 led->hw_dev = dev;
2550 led->index = led_index;
2551 led->led_dev.name = led->name;
2552 led->led_dev.default_trigger = trigger;
2553 led->led_dev.brightness_set = p54_led_brightness_set;
2554
2555 err = led_classdev_register(wiphy_dev(dev->wiphy), &led->led_dev);
2556 if (err)
2557 printk(KERN_ERR "%s: Failed to register %s LED.\n",
2558 wiphy_name(dev->wiphy), name);
2559 else
2560 led->registered = 1;
2561
2562 return err;
2563}
2564
2565static int p54_init_leds(struct ieee80211_hw *dev)
2566{
2567 struct p54_common *priv = dev->priv;
2568 int err;
2569
2570 /*
2571 * TODO:
2572 * Figure out if the EEPROM contains some hints about the number
2573 * of available/programmable LEDs of the device.
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002574 */
2575
Christian Lamparterdce07252009-03-25 03:12:18 +01002576 INIT_DELAYED_WORK(&priv->led_work, p54_update_leds);
2577
2578 err = p54_register_led(dev, 0, "assoc",
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002579 ieee80211_get_assoc_led_name(dev));
2580 if (err)
2581 return err;
2582
Christian Lamparterdce07252009-03-25 03:12:18 +01002583 err = p54_register_led(dev, 1, "tx",
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002584 ieee80211_get_tx_led_name(dev));
2585 if (err)
2586 return err;
2587
Christian Lamparterdce07252009-03-25 03:12:18 +01002588 err = p54_register_led(dev, 2, "rx",
2589 ieee80211_get_rx_led_name(dev));
2590 if (err)
2591 return err;
2592
2593 err = p54_register_led(dev, 3, "radio",
2594 ieee80211_get_radio_led_name(dev));
2595 if (err)
2596 return err;
2597
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002598 err = p54_set_leds(dev);
2599 return err;
2600}
2601
2602static void p54_unregister_leds(struct ieee80211_hw *dev)
2603{
2604 struct p54_common *priv = dev->priv;
Christian Lamparterdce07252009-03-25 03:12:18 +01002605 int i;
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002606
Christian Lamparterdce07252009-03-25 03:12:18 +01002607 for (i = 0; i < ARRAY_SIZE(priv->leds); i++)
2608 if (priv->leds[i].registered)
2609 led_classdev_unregister(&priv->leds[i].led_dev);
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002610}
Christian Lamparterd8cd7ef2009-03-23 15:37:45 +01002611#endif /* CONFIG_P54_LEDS */
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002612
Michael Wueff1a592007-09-25 18:11:01 -07002613static const struct ieee80211_ops p54_ops = {
2614 .tx = p54_tx,
Johannes Berg4150c572007-09-17 01:29:23 -04002615 .start = p54_start,
2616 .stop = p54_stop,
Michael Wueff1a592007-09-25 18:11:01 -07002617 .add_interface = p54_add_interface,
2618 .remove_interface = p54_remove_interface,
Christian Lampartere5ea92a2008-10-18 23:19:00 +02002619 .set_tim = p54_set_tim,
Christian Lamparterc772a082008-11-29 22:33:57 +01002620 .sta_notify = p54_sta_notify,
Christian Lamparter25900ef2008-11-29 22:34:37 +01002621 .set_key = p54_set_key,
Michael Wueff1a592007-09-25 18:11:01 -07002622 .config = p54_config,
2623 .config_interface = p54_config_interface,
Christian Lamparter40333e42008-10-08 20:52:22 +02002624 .bss_info_changed = p54_bss_info_changed,
Johannes Berg4150c572007-09-17 01:29:23 -04002625 .configure_filter = p54_configure_filter,
Michael Wueff1a592007-09-25 18:11:01 -07002626 .conf_tx = p54_conf_tx,
2627 .get_stats = p54_get_stats,
2628 .get_tx_stats = p54_get_tx_stats
2629};
2630
2631struct ieee80211_hw *p54_init_common(size_t priv_data_len)
2632{
2633 struct ieee80211_hw *dev;
2634 struct p54_common *priv;
Michael Wueff1a592007-09-25 18:11:01 -07002635
2636 dev = ieee80211_alloc_hw(priv_data_len, &p54_ops);
2637 if (!dev)
2638 return NULL;
2639
2640 priv = dev->priv;
Christian Lamparter54fdb042008-12-13 14:14:20 +01002641 priv->hw = dev;
Johannes Berg05c914f2008-09-11 00:01:58 +02002642 priv->mode = NL80211_IFTYPE_UNSPECIFIED;
Christian Lamparterced09572008-11-14 19:42:39 +01002643 priv->basic_rate_mask = 0x15f;
Michael Wueff1a592007-09-25 18:11:01 -07002644 skb_queue_head_init(&priv->tx_queue);
Christian Lamparter94585b02008-10-18 23:18:44 +02002645 dev->flags = IEEE80211_HW_RX_INCLUDES_FCS |
Christian Lampartercc6de662008-09-06 02:56:23 +02002646 IEEE80211_HW_SIGNAL_DBM |
Christian Lamparterf13027a2009-03-25 03:12:49 +01002647 IEEE80211_HW_NOISE_DBM |
2648 IEEE80211_HW_BEACON_FILTER;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07002649
Christian Lamparterd131bb52008-11-15 17:02:31 +01002650 dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
2651 BIT(NL80211_IFTYPE_ADHOC) |
2652 BIT(NL80211_IFTYPE_AP) |
2653 BIT(NL80211_IFTYPE_MESH_POINT);
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07002654
Michael Wueff1a592007-09-25 18:11:01 -07002655 dev->channel_change_time = 1000; /* TODO: find actual value */
Christian Lampartera15bd002008-12-21 20:54:34 +01002656 priv->tx_stats[P54_QUEUE_BEACON].limit = 1;
2657 priv->tx_stats[P54_QUEUE_FWSCAN].limit = 1;
2658 priv->tx_stats[P54_QUEUE_MGMT].limit = 3;
2659 priv->tx_stats[P54_QUEUE_CAB].limit = 3;
2660 priv->tx_stats[P54_QUEUE_DATA].limit = 5;
Michael Wueff1a592007-09-25 18:11:01 -07002661 dev->queues = 1;
Christian Lampartercc6de662008-09-06 02:56:23 +02002662 priv->noise = -94;
Johannes Bergc12abae2008-10-14 16:56:51 +02002663 /*
2664 * We support at most 8 tries no matter which rate they're at,
2665 * we cannot support max_rates * max_rate_tries as we set it
2666 * here, but setting it correctly to 4/2 or so would limit us
2667 * artificially if the RC algorithm wants just two rates, so
2668 * let's say 4/7, we'll redistribute it at TX time, see the
2669 * comments there.
2670 */
2671 dev->max_rates = 4;
2672 dev->max_rate_tries = 7;
John W. Linville27df6052008-10-22 16:41:55 -04002673 dev->extra_tx_headroom = sizeof(struct p54_hdr) + 4 +
2674 sizeof(struct p54_tx_data);
Michael Wueff1a592007-09-25 18:11:01 -07002675
Larry Finger6041e2a2008-08-03 17:58:36 -05002676 mutex_init(&priv->conf_mutex);
Christian Lamparter7cb77072008-09-01 22:48:51 +02002677 init_completion(&priv->eeprom_comp);
Christian Lamparter54fdb042008-12-13 14:14:20 +01002678 INIT_DELAYED_WORK(&priv->work, p54_work);
Michael Wueff1a592007-09-25 18:11:01 -07002679
Michael Wueff1a592007-09-25 18:11:01 -07002680 return dev;
2681}
2682EXPORT_SYMBOL_GPL(p54_init_common);
2683
Christian Lamparter2ac71072009-03-05 21:30:10 +01002684int p54_register_common(struct ieee80211_hw *dev, struct device *pdev)
2685{
2686 int err;
2687
2688 err = ieee80211_register_hw(dev);
2689 if (err) {
2690 dev_err(pdev, "Cannot register device (%d).\n", err);
2691 return err;
2692 }
2693
Christian Lamparterd8cd7ef2009-03-23 15:37:45 +01002694#ifdef CONFIG_P54_LEDS
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002695 err = p54_init_leds(dev);
2696 if (err)
2697 return err;
Christian Lamparterd8cd7ef2009-03-23 15:37:45 +01002698#endif /* CONFIG_P54_LEDS */
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002699
Christian Lamparter2ac71072009-03-05 21:30:10 +01002700 dev_info(pdev, "is registered as '%s'\n", wiphy_name(dev->wiphy));
2701 return 0;
2702}
2703EXPORT_SYMBOL_GPL(p54_register_common);
2704
Michael Wueff1a592007-09-25 18:11:01 -07002705void p54_free_common(struct ieee80211_hw *dev)
2706{
2707 struct p54_common *priv = dev->priv;
Michael Wueff1a592007-09-25 18:11:01 -07002708 kfree(priv->iq_autocal);
2709 kfree(priv->output_limit);
2710 kfree(priv->curve_data);
Christian Lamparter6dfe9a82009-04-11 03:58:01 +02002711 kfree(priv->used_rxkeys);
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002712
Christian Lamparterd8cd7ef2009-03-23 15:37:45 +01002713#ifdef CONFIG_P54_LEDS
Christian Lamparterd0b45ae2009-03-06 01:02:04 +01002714 p54_unregister_leds(dev);
Christian Lamparterd8cd7ef2009-03-23 15:37:45 +01002715#endif /* CONFIG_P54_LEDS */
Michael Wueff1a592007-09-25 18:11:01 -07002716}
2717EXPORT_SYMBOL_GPL(p54_free_common);
2718
2719static int __init p54_init(void)
2720{
2721 return 0;
2722}
2723
2724static void __exit p54_exit(void)
2725{
2726}
2727
2728module_init(p54_init);
2729module_exit(p54_exit);