blob: 1994aa199d3726375c9b19346cea7e1babaab0d0 [file] [log] [blame]
Michael Wueff1a592007-09-25 18:11:01 -07001
2/*
3 * Common code for mac80211 Prism54 drivers
4 *
5 * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
6 * Copyright (c) 2007, Christian Lamparter <chunkeey@web.de>
7 *
8 * Based on the islsm (softmac prism54) driver, which is:
9 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/init.h>
17#include <linux/firmware.h>
18#include <linux/etherdevice.h>
19
20#include <net/mac80211.h>
21
22#include "p54.h"
23#include "p54common.h"
24
25MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>");
26MODULE_DESCRIPTION("Softmac Prism54 common code");
27MODULE_LICENSE("GPL");
28MODULE_ALIAS("prism54common");
29
Christian Lamparter1b997532008-09-06 14:25:58 +020030static struct ieee80211_rate p54_bgrates[] = {
Johannes Berg8318d782008-01-24 19:38:38 +010031 { .bitrate = 10, .hw_value = 0, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
32 { .bitrate = 20, .hw_value = 1, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
33 { .bitrate = 55, .hw_value = 2, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
34 { .bitrate = 110, .hw_value = 3, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
35 { .bitrate = 60, .hw_value = 4, },
36 { .bitrate = 90, .hw_value = 5, },
37 { .bitrate = 120, .hw_value = 6, },
38 { .bitrate = 180, .hw_value = 7, },
39 { .bitrate = 240, .hw_value = 8, },
40 { .bitrate = 360, .hw_value = 9, },
41 { .bitrate = 480, .hw_value = 10, },
42 { .bitrate = 540, .hw_value = 11, },
43};
44
Christian Lamparter1b997532008-09-06 14:25:58 +020045static struct ieee80211_channel p54_bgchannels[] = {
Johannes Berg8318d782008-01-24 19:38:38 +010046 { .center_freq = 2412, .hw_value = 1, },
47 { .center_freq = 2417, .hw_value = 2, },
48 { .center_freq = 2422, .hw_value = 3, },
49 { .center_freq = 2427, .hw_value = 4, },
50 { .center_freq = 2432, .hw_value = 5, },
51 { .center_freq = 2437, .hw_value = 6, },
52 { .center_freq = 2442, .hw_value = 7, },
53 { .center_freq = 2447, .hw_value = 8, },
54 { .center_freq = 2452, .hw_value = 9, },
55 { .center_freq = 2457, .hw_value = 10, },
56 { .center_freq = 2462, .hw_value = 11, },
57 { .center_freq = 2467, .hw_value = 12, },
58 { .center_freq = 2472, .hw_value = 13, },
59 { .center_freq = 2484, .hw_value = 14, },
60};
61
Johannes Bergc2976ab2008-02-20 12:08:12 +010062static struct ieee80211_supported_band band_2GHz = {
Christian Lamparter1b997532008-09-06 14:25:58 +020063 .channels = p54_bgchannels,
64 .n_channels = ARRAY_SIZE(p54_bgchannels),
65 .bitrates = p54_bgrates,
66 .n_bitrates = ARRAY_SIZE(p54_bgrates),
67};
68
69static struct ieee80211_rate p54_arates[] = {
70 { .bitrate = 60, .hw_value = 4, },
71 { .bitrate = 90, .hw_value = 5, },
72 { .bitrate = 120, .hw_value = 6, },
73 { .bitrate = 180, .hw_value = 7, },
74 { .bitrate = 240, .hw_value = 8, },
75 { .bitrate = 360, .hw_value = 9, },
76 { .bitrate = 480, .hw_value = 10, },
77 { .bitrate = 540, .hw_value = 11, },
78};
79
80static struct ieee80211_channel p54_achannels[] = {
81 { .center_freq = 4920 },
82 { .center_freq = 4940 },
83 { .center_freq = 4960 },
84 { .center_freq = 4980 },
85 { .center_freq = 5040 },
86 { .center_freq = 5060 },
87 { .center_freq = 5080 },
88 { .center_freq = 5170 },
89 { .center_freq = 5180 },
90 { .center_freq = 5190 },
91 { .center_freq = 5200 },
92 { .center_freq = 5210 },
93 { .center_freq = 5220 },
94 { .center_freq = 5230 },
95 { .center_freq = 5240 },
96 { .center_freq = 5260 },
97 { .center_freq = 5280 },
98 { .center_freq = 5300 },
99 { .center_freq = 5320 },
100 { .center_freq = 5500 },
101 { .center_freq = 5520 },
102 { .center_freq = 5540 },
103 { .center_freq = 5560 },
104 { .center_freq = 5580 },
105 { .center_freq = 5600 },
106 { .center_freq = 5620 },
107 { .center_freq = 5640 },
108 { .center_freq = 5660 },
109 { .center_freq = 5680 },
110 { .center_freq = 5700 },
111 { .center_freq = 5745 },
112 { .center_freq = 5765 },
113 { .center_freq = 5785 },
114 { .center_freq = 5805 },
115 { .center_freq = 5825 },
116};
117
118static struct ieee80211_supported_band band_5GHz = {
119 .channels = p54_achannels,
120 .n_channels = ARRAY_SIZE(p54_achannels),
121 .bitrates = p54_arates,
122 .n_bitrates = ARRAY_SIZE(p54_arates),
Johannes Berg8318d782008-01-24 19:38:38 +0100123};
124
Christian Lamparter4e416a62008-09-01 22:48:41 +0200125int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw)
Michael Wueff1a592007-09-25 18:11:01 -0700126{
127 struct p54_common *priv = dev->priv;
128 struct bootrec_exp_if *exp_if;
129 struct bootrec *bootrec;
130 u32 *data = (u32 *)fw->data;
131 u32 *end_data = (u32 *)fw->data + (fw->size >> 2);
132 u8 *fw_version = NULL;
133 size_t len;
134 int i;
135
136 if (priv->rx_start)
Christian Lamparter4e416a62008-09-01 22:48:41 +0200137 return 0;
Michael Wueff1a592007-09-25 18:11:01 -0700138
139 while (data < end_data && *data)
140 data++;
141
142 while (data < end_data && !*data)
143 data++;
144
145 bootrec = (struct bootrec *) data;
146
147 while (bootrec->data <= end_data &&
148 (bootrec->data + (len = le32_to_cpu(bootrec->len))) <= end_data) {
149 u32 code = le32_to_cpu(bootrec->code);
150 switch (code) {
151 case BR_CODE_COMPONENT_ID:
Larry Finger1f1c0e32008-09-25 14:54:28 -0500152 priv->fw_interface = be32_to_cpup((__be32 *)
153 bootrec->data);
Christian Lamparter2b808482008-09-04 12:29:38 +0200154 switch (priv->fw_interface) {
Michael Wueff1a592007-09-25 18:11:01 -0700155 case FW_FMAC:
156 printk(KERN_INFO "p54: FreeMAC firmware\n");
157 break;
158 case FW_LM20:
159 printk(KERN_INFO "p54: LM20 firmware\n");
160 break;
161 case FW_LM86:
162 printk(KERN_INFO "p54: LM86 firmware\n");
163 break;
164 case FW_LM87:
Christian Lamparter2b808482008-09-04 12:29:38 +0200165 printk(KERN_INFO "p54: LM87 firmware\n");
Michael Wueff1a592007-09-25 18:11:01 -0700166 break;
167 default:
168 printk(KERN_INFO "p54: unknown firmware\n");
169 break;
170 }
171 break;
172 case BR_CODE_COMPONENT_VERSION:
173 /* 24 bytes should be enough for all firmwares */
174 if (strnlen((unsigned char*)bootrec->data, 24) < 24)
175 fw_version = (unsigned char*)bootrec->data;
176 break;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200177 case BR_CODE_DESCR: {
178 struct bootrec_desc *desc =
179 (struct bootrec_desc *)bootrec->data;
180 priv->rx_start = le32_to_cpu(desc->rx_start);
Michael Wueff1a592007-09-25 18:11:01 -0700181 /* FIXME add sanity checking */
Christian Lamparter4e416a62008-09-01 22:48:41 +0200182 priv->rx_end = le32_to_cpu(desc->rx_end) - 0x3500;
183 priv->headroom = desc->headroom;
184 priv->tailroom = desc->tailroom;
Larry Finger1f1c0e32008-09-25 14:54:28 -0500185 if (le32_to_cpu(bootrec->len) == 11)
186 priv->rx_mtu = le16_to_cpu(bootrec->rx_mtu);
Christian Lamparter4e416a62008-09-01 22:48:41 +0200187 else
188 priv->rx_mtu = (size_t)
189 0x620 - priv->tx_hdr_len;
Michael Wueff1a592007-09-25 18:11:01 -0700190 break;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200191 }
Michael Wueff1a592007-09-25 18:11:01 -0700192 case BR_CODE_EXPOSED_IF:
193 exp_if = (struct bootrec_exp_if *) bootrec->data;
194 for (i = 0; i < (len * sizeof(*exp_if) / 4); i++)
Al Virodc73c622007-12-21 23:49:02 -0500195 if (exp_if[i].if_id == cpu_to_le16(0x1a))
Michael Wueff1a592007-09-25 18:11:01 -0700196 priv->fw_var = le16_to_cpu(exp_if[i].variant);
197 break;
198 case BR_CODE_DEPENDENT_IF:
199 break;
200 case BR_CODE_END_OF_BRA:
201 case LEGACY_BR_CODE_END_OF_BRA:
202 end_data = NULL;
203 break;
204 default:
205 break;
206 }
207 bootrec = (struct bootrec *)&bootrec->data[len];
208 }
209
210 if (fw_version)
211 printk(KERN_INFO "p54: FW rev %s - Softmac protocol %x.%x\n",
212 fw_version, priv->fw_var >> 8, priv->fw_var & 0xff);
213
214 if (priv->fw_var >= 0x300) {
215 /* Firmware supports QoS, use it! */
Chr84df3ed2008-08-24 03:15:16 +0200216 priv->tx_stats[4].limit = 3;
217 priv->tx_stats[5].limit = 4;
218 priv->tx_stats[6].limit = 3;
219 priv->tx_stats[7].limit = 1;
Michael Wueff1a592007-09-25 18:11:01 -0700220 dev->queues = 4;
221 }
Christian Lamparter4e416a62008-09-01 22:48:41 +0200222
223 return 0;
Michael Wueff1a592007-09-25 18:11:01 -0700224}
225EXPORT_SYMBOL_GPL(p54_parse_firmware);
226
Christian Lamparter154e3af2008-08-23 22:15:25 +0200227static int p54_convert_rev0(struct ieee80211_hw *dev,
228 struct pda_pa_curve_data *curve_data)
Michael Wueff1a592007-09-25 18:11:01 -0700229{
230 struct p54_common *priv = dev->priv;
Christian Lamparter154e3af2008-08-23 22:15:25 +0200231 struct p54_pa_curve_data_sample *dst;
232 struct pda_pa_curve_data_sample_rev0 *src;
Michael Wueff1a592007-09-25 18:11:01 -0700233 size_t cd_len = sizeof(*curve_data) +
Christian Lamparter154e3af2008-08-23 22:15:25 +0200234 (curve_data->points_per_channel*sizeof(*dst) + 2) *
Michael Wueff1a592007-09-25 18:11:01 -0700235 curve_data->channels;
236 unsigned int i, j;
237 void *source, *target;
238
239 priv->curve_data = kmalloc(cd_len, GFP_KERNEL);
240 if (!priv->curve_data)
241 return -ENOMEM;
242
243 memcpy(priv->curve_data, curve_data, sizeof(*curve_data));
244 source = curve_data->data;
245 target = priv->curve_data->data;
246 for (i = 0; i < curve_data->channels; i++) {
247 __le16 *freq = source;
248 source += sizeof(__le16);
249 *((__le16 *)target) = *freq;
250 target += sizeof(__le16);
251 for (j = 0; j < curve_data->points_per_channel; j++) {
Christian Lamparter154e3af2008-08-23 22:15:25 +0200252 dst = target;
253 src = source;
Michael Wueff1a592007-09-25 18:11:01 -0700254
Christian Lamparter154e3af2008-08-23 22:15:25 +0200255 dst->rf_power = src->rf_power;
256 dst->pa_detector = src->pa_detector;
257 dst->data_64qam = src->pcv;
Michael Wueff1a592007-09-25 18:11:01 -0700258 /* "invent" the points for the other modulations */
259#define SUB(x,y) (u8)((x) - (y)) > (x) ? 0 : (x) - (y)
Christian Lamparter154e3af2008-08-23 22:15:25 +0200260 dst->data_16qam = SUB(src->pcv, 12);
261 dst->data_qpsk = SUB(dst->data_16qam, 12);
262 dst->data_bpsk = SUB(dst->data_qpsk, 12);
263 dst->data_barker = SUB(dst->data_bpsk, 14);
Michael Wueff1a592007-09-25 18:11:01 -0700264#undef SUB
Christian Lamparter154e3af2008-08-23 22:15:25 +0200265 target += sizeof(*dst);
266 source += sizeof(*src);
Michael Wueff1a592007-09-25 18:11:01 -0700267 }
268 }
269
270 return 0;
271}
272
Christian Lamparter154e3af2008-08-23 22:15:25 +0200273static int p54_convert_rev1(struct ieee80211_hw *dev,
274 struct pda_pa_curve_data *curve_data)
275{
276 struct p54_common *priv = dev->priv;
277 struct p54_pa_curve_data_sample *dst;
278 struct pda_pa_curve_data_sample_rev1 *src;
279 size_t cd_len = sizeof(*curve_data) +
280 (curve_data->points_per_channel*sizeof(*dst) + 2) *
281 curve_data->channels;
282 unsigned int i, j;
283 void *source, *target;
284
285 priv->curve_data = kmalloc(cd_len, GFP_KERNEL);
286 if (!priv->curve_data)
287 return -ENOMEM;
288
289 memcpy(priv->curve_data, curve_data, sizeof(*curve_data));
290 source = curve_data->data;
291 target = priv->curve_data->data;
292 for (i = 0; i < curve_data->channels; i++) {
293 __le16 *freq = source;
294 source += sizeof(__le16);
295 *((__le16 *)target) = *freq;
296 target += sizeof(__le16);
297 for (j = 0; j < curve_data->points_per_channel; j++) {
298 memcpy(target, source, sizeof(*src));
299
300 target += sizeof(*dst);
301 source += sizeof(*src);
302 }
303 source++;
304 }
305
306 return 0;
307}
308
Larry Finger1f1c0e32008-09-25 14:54:28 -0500309static const char *p54_rf_chips[] = { "NULL", "Indigo?", "Duette",
Christian Lamparter7cb77072008-09-01 22:48:51 +0200310 "Frisbee", "Xbow", "Longbow" };
Christian Lamparter1b997532008-09-06 14:25:58 +0200311static int p54_init_xbow_synth(struct ieee80211_hw *dev);
Christian Lamparter7cb77072008-09-01 22:48:51 +0200312
Larry Finger1f1c0e32008-09-25 14:54:28 -0500313static int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len)
Michael Wueff1a592007-09-25 18:11:01 -0700314{
315 struct p54_common *priv = dev->priv;
316 struct eeprom_pda_wrap *wrap = NULL;
317 struct pda_entry *entry;
Michael Wueff1a592007-09-25 18:11:01 -0700318 unsigned int data_len, entry_len;
319 void *tmp;
320 int err;
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100321 u8 *end = (u8 *)eeprom + len;
Christian Lamparter7cb77072008-09-01 22:48:51 +0200322 DECLARE_MAC_BUF(mac);
Michael Wueff1a592007-09-25 18:11:01 -0700323
324 wrap = (struct eeprom_pda_wrap *) eeprom;
Johannes Berg8c282932008-02-29 13:56:33 +0100325 entry = (void *)wrap->data + le16_to_cpu(wrap->len);
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100326
327 /* verify that at least the entry length/code fits */
328 while ((u8 *)entry <= end - sizeof(*entry)) {
Michael Wueff1a592007-09-25 18:11:01 -0700329 entry_len = le16_to_cpu(entry->len);
330 data_len = ((entry_len - 1) << 1);
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100331
332 /* abort if entry exceeds whole structure */
333 if ((u8 *)entry + sizeof(*entry) + data_len > end)
334 break;
335
Michael Wueff1a592007-09-25 18:11:01 -0700336 switch (le16_to_cpu(entry->code)) {
337 case PDR_MAC_ADDRESS:
338 SET_IEEE80211_PERM_ADDR(dev, entry->data);
339 break;
340 case PDR_PRISM_PA_CAL_OUTPUT_POWER_LIMITS:
341 if (data_len < 2) {
342 err = -EINVAL;
343 goto err;
344 }
345
346 if (2 + entry->data[1]*sizeof(*priv->output_limit) > data_len) {
347 err = -EINVAL;
348 goto err;
349 }
350
351 priv->output_limit = kmalloc(entry->data[1] *
352 sizeof(*priv->output_limit), GFP_KERNEL);
353
354 if (!priv->output_limit) {
355 err = -ENOMEM;
356 goto err;
357 }
358
359 memcpy(priv->output_limit, &entry->data[2],
360 entry->data[1]*sizeof(*priv->output_limit));
361 priv->output_limit_len = entry->data[1];
362 break;
Christian Lamparter154e3af2008-08-23 22:15:25 +0200363 case PDR_PRISM_PA_CAL_CURVE_DATA: {
364 struct pda_pa_curve_data *curve_data =
365 (struct pda_pa_curve_data *)entry->data;
366 if (data_len < sizeof(*curve_data)) {
Michael Wueff1a592007-09-25 18:11:01 -0700367 err = -EINVAL;
368 goto err;
369 }
370
Christian Lamparter154e3af2008-08-23 22:15:25 +0200371 switch (curve_data->cal_method_rev) {
372 case 0:
373 err = p54_convert_rev0(dev, curve_data);
374 break;
375 case 1:
376 err = p54_convert_rev1(dev, curve_data);
377 break;
378 default:
379 printk(KERN_ERR "p54: unknown curve data "
380 "revision %d\n",
381 curve_data->cal_method_rev);
382 err = -ENODEV;
383 break;
Michael Wueff1a592007-09-25 18:11:01 -0700384 }
Christian Lamparter154e3af2008-08-23 22:15:25 +0200385 if (err)
386 goto err;
Michael Wueff1a592007-09-25 18:11:01 -0700387
Christian Lamparter154e3af2008-08-23 22:15:25 +0200388 }
Michael Wueff1a592007-09-25 18:11:01 -0700389 case PDR_PRISM_ZIF_TX_IQ_CALIBRATION:
390 priv->iq_autocal = kmalloc(data_len, GFP_KERNEL);
391 if (!priv->iq_autocal) {
392 err = -ENOMEM;
393 goto err;
394 }
395
396 memcpy(priv->iq_autocal, entry->data, data_len);
397 priv->iq_autocal_len = data_len / sizeof(struct pda_iq_autocal_entry);
398 break;
399 case PDR_INTERFACE_LIST:
400 tmp = entry->data;
401 while ((u8 *)tmp < entry->data + data_len) {
402 struct bootrec_exp_if *exp_if = tmp;
403 if (le16_to_cpu(exp_if->if_id) == 0xF)
Christian Lamparter7cb77072008-09-01 22:48:51 +0200404 priv->rxhw = le16_to_cpu(exp_if->variant) & 0x07;
Michael Wueff1a592007-09-25 18:11:01 -0700405 tmp += sizeof(struct bootrec_exp_if);
406 }
407 break;
408 case PDR_HARDWARE_PLATFORM_COMPONENT_ID:
409 priv->version = *(u8 *)(entry->data + 1);
410 break;
411 case PDR_END:
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100412 /* make it overrun */
413 entry_len = len;
Michael Wueff1a592007-09-25 18:11:01 -0700414 break;
Florian Fainelli58e30732008-02-25 17:51:53 +0100415 default:
416 printk(KERN_INFO "p54: unknown eeprom code : 0x%x\n",
417 le16_to_cpu(entry->code));
418 break;
Michael Wueff1a592007-09-25 18:11:01 -0700419 }
420
421 entry = (void *)entry + (entry_len + 1)*2;
Michael Wueff1a592007-09-25 18:11:01 -0700422 }
423
424 if (!priv->iq_autocal || !priv->output_limit || !priv->curve_data) {
425 printk(KERN_ERR "p54: not all required entries found in eeprom!\n");
426 err = -EINVAL;
427 goto err;
428 }
429
Christian Lamparter7cb77072008-09-01 22:48:51 +0200430 switch (priv->rxhw) {
Christian Lamparter1b997532008-09-06 14:25:58 +0200431 case 4: /* XBow */
432 p54_init_xbow_synth(dev);
433 case 1: /* Indigo? */
434 case 2: /* Duette */
435 dev->wiphy->bands[IEEE80211_BAND_5GHZ] = &band_5GHz;
436 case 3: /* Frisbee */
437 case 5: /* Longbow */
438 dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &band_2GHz;
439 break;
440 default:
441 printk(KERN_ERR "%s: unsupported RF-Chip\n",
442 wiphy_name(dev->wiphy));
443 err = -EINVAL;
444 goto err;
Christian Lamparter7cb77072008-09-01 22:48:51 +0200445 }
446
447 if (!is_valid_ether_addr(dev->wiphy->perm_addr)) {
448 u8 perm_addr[ETH_ALEN];
449
450 printk(KERN_WARNING "%s: Invalid hwaddr! Using randomly generated MAC addr\n",
451 wiphy_name(dev->wiphy));
452 random_ether_addr(perm_addr);
453 SET_IEEE80211_PERM_ADDR(dev, perm_addr);
454 }
455
456 printk(KERN_INFO "%s: hwaddr %s, MAC:isl38%02x RF:%s\n",
457 wiphy_name(dev->wiphy),
458 print_mac(mac, dev->wiphy->perm_addr),
459 priv->version, p54_rf_chips[priv->rxhw]);
460
Michael Wueff1a592007-09-25 18:11:01 -0700461 return 0;
462
463 err:
464 if (priv->iq_autocal) {
465 kfree(priv->iq_autocal);
466 priv->iq_autocal = NULL;
467 }
468
469 if (priv->output_limit) {
470 kfree(priv->output_limit);
471 priv->output_limit = NULL;
472 }
473
474 if (priv->curve_data) {
475 kfree(priv->curve_data);
476 priv->curve_data = NULL;
477 }
478
479 printk(KERN_ERR "p54: eeprom parse failed!\n");
480 return err;
481}
482EXPORT_SYMBOL_GPL(p54_parse_eeprom);
483
Christian Lampartercc6de662008-09-06 02:56:23 +0200484static int p54_rssi_to_dbm(struct ieee80211_hw *dev, int rssi)
485{
486 /* TODO: get the rssi_add & rssi_mul data from the eeprom */
487 return ((rssi * 0x83) / 64 - 400) / 4;
488}
489
Christian Lamparter19c19d52008-09-03 22:25:25 +0200490static int p54_rx_data(struct ieee80211_hw *dev, struct sk_buff *skb)
Michael Wueff1a592007-09-25 18:11:01 -0700491{
Christian Lampartera0db6632008-09-06 02:56:04 +0200492 struct p54_common *priv = dev->priv;
Michael Wueff1a592007-09-25 18:11:01 -0700493 struct p54_rx_hdr *hdr = (struct p54_rx_hdr *) skb->data;
494 struct ieee80211_rx_status rx_status = {0};
495 u16 freq = le16_to_cpu(hdr->freq);
Christian Lamparter19c19d52008-09-03 22:25:25 +0200496 size_t header_len = sizeof(*hdr);
Christian Lampartera0db6632008-09-06 02:56:04 +0200497 u32 tsf32;
Michael Wueff1a592007-09-25 18:11:01 -0700498
Christian Lamparter78d57eb2008-09-06 02:56:12 +0200499 if (!(hdr->magic & cpu_to_le16(0x0001))) {
500 if (priv->filter_flags & FIF_FCSFAIL)
501 rx_status.flag |= RX_FLAG_FAILED_FCS_CRC;
502 else
503 return 0;
504 }
505
Christian Lampartercc6de662008-09-06 02:56:23 +0200506 rx_status.signal = p54_rssi_to_dbm(dev, hdr->rssi);
507 rx_status.noise = priv->noise;
Johannes Berg8318d782008-01-24 19:38:38 +0100508 /* XX correct? */
Larry.Finger@lwfinger.net18d72602008-06-30 10:39:49 -0500509 rx_status.qual = (100 * hdr->rssi) / 127;
Christian Lampartercf3e74c2008-09-30 23:36:00 +0200510 rx_status.rate_idx = (dev->conf.channel->band == IEEE80211_BAND_2GHZ ?
511 hdr->rate : (hdr->rate - 4)) & 0xf;
Michael Wueff1a592007-09-25 18:11:01 -0700512 rx_status.freq = freq;
Christian Lampartercf3e74c2008-09-30 23:36:00 +0200513 rx_status.band = dev->conf.channel->band;
Michael Wueff1a592007-09-25 18:11:01 -0700514 rx_status.antenna = hdr->antenna;
Christian Lampartera0db6632008-09-06 02:56:04 +0200515
516 tsf32 = le32_to_cpu(hdr->tsf32);
517 if (tsf32 < priv->tsf_low32)
518 priv->tsf_high32++;
519 rx_status.mactime = ((u64)priv->tsf_high32) << 32 | tsf32;
520 priv->tsf_low32 = tsf32;
521
Johannes Berg03bffc12007-12-04 20:33:40 +0100522 rx_status.flag |= RX_FLAG_TSFT;
Michael Wueff1a592007-09-25 18:11:01 -0700523
Christian Lamparter19c19d52008-09-03 22:25:25 +0200524 if (hdr->magic & cpu_to_le16(0x4000))
525 header_len += hdr->align[0];
526
527 skb_pull(skb, header_len);
Michael Wueff1a592007-09-25 18:11:01 -0700528 skb_trim(skb, le16_to_cpu(hdr->len));
529
530 ieee80211_rx_irqsafe(dev, skb, &rx_status);
Christian Lamparter19c19d52008-09-03 22:25:25 +0200531
532 return -1;
Michael Wueff1a592007-09-25 18:11:01 -0700533}
534
535static void inline p54_wake_free_queues(struct ieee80211_hw *dev)
536{
537 struct p54_common *priv = dev->priv;
538 int i;
539
Michael Wueff1a592007-09-25 18:11:01 -0700540 for (i = 0; i < dev->queues; i++)
Chr84df3ed2008-08-24 03:15:16 +0200541 if (priv->tx_stats[i + 4].len < priv->tx_stats[i + 4].limit)
Michael Wueff1a592007-09-25 18:11:01 -0700542 ieee80211_wake_queue(dev, i);
543}
544
545static void p54_rx_frame_sent(struct ieee80211_hw *dev, struct sk_buff *skb)
546{
547 struct p54_common *priv = dev->priv;
548 struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data;
549 struct p54_frame_sent_hdr *payload = (struct p54_frame_sent_hdr *) hdr->data;
550 struct sk_buff *entry = (struct sk_buff *) priv->tx_queue.next;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200551 u32 addr = le32_to_cpu(hdr->req_id) - priv->headroom;
Michael Wueff1a592007-09-25 18:11:01 -0700552 struct memrecord *range = NULL;
553 u32 freed = 0;
554 u32 last_addr = priv->rx_start;
Chr031d10e2008-08-24 03:15:06 +0200555 unsigned long flags;
Michael Wueff1a592007-09-25 18:11:01 -0700556
Chr031d10e2008-08-24 03:15:06 +0200557 spin_lock_irqsave(&priv->tx_queue.lock, flags);
Michael Wueff1a592007-09-25 18:11:01 -0700558 while (entry != (struct sk_buff *)&priv->tx_queue) {
Johannes Berg552fe532008-05-30 21:07:15 +0200559 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry);
560 range = (void *)info->driver_data;
Michael Wueff1a592007-09-25 18:11:01 -0700561 if (range->start_addr == addr) {
Michael Wueff1a592007-09-25 18:11:01 -0700562 struct p54_control_hdr *entry_hdr;
563 struct p54_tx_control_allocdata *entry_data;
564 int pad = 0;
565
Johannes Berg552fe532008-05-30 21:07:15 +0200566 if (entry->next != (struct sk_buff *)&priv->tx_queue) {
567 struct ieee80211_tx_info *ni;
568 struct memrecord *mr;
569
570 ni = IEEE80211_SKB_CB(entry->next);
571 mr = (struct memrecord *)ni->driver_data;
572 freed = mr->start_addr - last_addr;
573 } else
Michael Wueff1a592007-09-25 18:11:01 -0700574 freed = priv->rx_end - last_addr;
575
576 last_addr = range->end_addr;
577 __skb_unlink(entry, &priv->tx_queue);
Chr031d10e2008-08-24 03:15:06 +0200578 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
579
Johannes Berge039fa42008-05-15 12:55:29 +0200580 memset(&info->status, 0, sizeof(info->status));
Michael Wueff1a592007-09-25 18:11:01 -0700581 entry_hdr = (struct p54_control_hdr *) entry->data;
582 entry_data = (struct p54_tx_control_allocdata *) entry_hdr->data;
583 if ((entry_hdr->magic1 & cpu_to_le16(0x4000)) != 0)
584 pad = entry_data->align[0];
585
Chr84df3ed2008-08-24 03:15:16 +0200586 priv->tx_stats[entry_data->hw_queue].len--;
Johannes Berge039fa42008-05-15 12:55:29 +0200587 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Michael Wueff1a592007-09-25 18:11:01 -0700588 if (!(payload->status & 0x01))
Johannes Berge039fa42008-05-15 12:55:29 +0200589 info->flags |= IEEE80211_TX_STAT_ACK;
Michael Wueff1a592007-09-25 18:11:01 -0700590 else
Johannes Berge039fa42008-05-15 12:55:29 +0200591 info->status.excessive_retries = 1;
Michael Wueff1a592007-09-25 18:11:01 -0700592 }
Johannes Berge039fa42008-05-15 12:55:29 +0200593 info->status.retry_count = payload->retries - 1;
Christian Lampartercc6de662008-09-06 02:56:23 +0200594 info->status.ack_signal = p54_rssi_to_dbm(dev,
595 le16_to_cpu(payload->ack_rssi));
Michael Wueff1a592007-09-25 18:11:01 -0700596 skb_pull(entry, sizeof(*hdr) + pad + sizeof(*entry_data));
Johannes Berge039fa42008-05-15 12:55:29 +0200597 ieee80211_tx_status_irqsafe(dev, entry);
Chr031d10e2008-08-24 03:15:06 +0200598 goto out;
Michael Wueff1a592007-09-25 18:11:01 -0700599 } else
600 last_addr = range->end_addr;
601 entry = entry->next;
602 }
Chr031d10e2008-08-24 03:15:06 +0200603 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
Michael Wueff1a592007-09-25 18:11:01 -0700604
Chr031d10e2008-08-24 03:15:06 +0200605out:
Michael Wueff1a592007-09-25 18:11:01 -0700606 if (freed >= IEEE80211_MAX_RTS_THRESHOLD + 0x170 +
607 sizeof(struct p54_control_hdr))
608 p54_wake_free_queues(dev);
609}
610
Christian Lamparter7cb77072008-09-01 22:48:51 +0200611static void p54_rx_eeprom_readback(struct ieee80211_hw *dev,
612 struct sk_buff *skb)
613{
614 struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data;
615 struct p54_eeprom_lm86 *eeprom = (struct p54_eeprom_lm86 *) hdr->data;
616 struct p54_common *priv = dev->priv;
617
618 if (!priv->eeprom)
619 return ;
620
Larry Finger1f1c0e32008-09-25 14:54:28 -0500621 memcpy(priv->eeprom, eeprom->data, le16_to_cpu(eeprom->len));
Christian Lamparter7cb77072008-09-01 22:48:51 +0200622
623 complete(&priv->eeprom_comp);
624}
625
Christian Lampartercc6de662008-09-06 02:56:23 +0200626static void p54_rx_stats(struct ieee80211_hw *dev, struct sk_buff *skb)
627{
628 struct p54_common *priv = dev->priv;
629 struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data;
630 struct p54_statistics *stats = (struct p54_statistics *) hdr->data;
631 u32 tsf32 = le32_to_cpu(stats->tsf32);
632
633 if (tsf32 < priv->tsf_low32)
634 priv->tsf_high32++;
635 priv->tsf_low32 = tsf32;
636
637 priv->stats.dot11RTSFailureCount = le32_to_cpu(stats->rts_fail);
638 priv->stats.dot11RTSSuccessCount = le32_to_cpu(stats->rts_success);
639 priv->stats.dot11FCSErrorCount = le32_to_cpu(stats->rx_bad_fcs);
640
641 priv->noise = p54_rssi_to_dbm(dev, le32_to_cpu(stats->noise));
642 complete(&priv->stats_comp);
643
644 mod_timer(&priv->stats_timer, jiffies + 5 * HZ);
645}
646
Christian Lamparter19c19d52008-09-03 22:25:25 +0200647static int p54_rx_control(struct ieee80211_hw *dev, struct sk_buff *skb)
Michael Wueff1a592007-09-25 18:11:01 -0700648{
649 struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data;
650
651 switch (le16_to_cpu(hdr->type)) {
652 case P54_CONTROL_TYPE_TXDONE:
653 p54_rx_frame_sent(dev, skb);
654 break;
655 case P54_CONTROL_TYPE_BBP:
656 break;
Christian Lampartercc6de662008-09-06 02:56:23 +0200657 case P54_CONTROL_TYPE_STAT_READBACK:
658 p54_rx_stats(dev, skb);
659 break;
Christian Lamparter7cb77072008-09-01 22:48:51 +0200660 case P54_CONTROL_TYPE_EEPROM_READBACK:
661 p54_rx_eeprom_readback(dev, skb);
662 break;
Michael Wueff1a592007-09-25 18:11:01 -0700663 default:
664 printk(KERN_DEBUG "%s: not handling 0x%02x type control frame\n",
665 wiphy_name(dev->wiphy), le16_to_cpu(hdr->type));
666 break;
667 }
Christian Lamparter19c19d52008-09-03 22:25:25 +0200668
669 return 0;
Michael Wueff1a592007-09-25 18:11:01 -0700670}
671
672/* returns zero if skb can be reused */
673int p54_rx(struct ieee80211_hw *dev, struct sk_buff *skb)
674{
675 u8 type = le16_to_cpu(*((__le16 *)skb->data)) >> 8;
Christian Lamparter19c19d52008-09-03 22:25:25 +0200676
677 if (type == 0x80)
678 return p54_rx_control(dev, skb);
679 else
680 return p54_rx_data(dev, skb);
Michael Wueff1a592007-09-25 18:11:01 -0700681}
682EXPORT_SYMBOL_GPL(p54_rx);
683
684/*
685 * So, the firmware is somewhat stupid and doesn't know what places in its
686 * memory incoming data should go to. By poking around in the firmware, we
687 * can find some unused memory to upload our packets to. However, data that we
688 * want the card to TX needs to stay intact until the card has told us that
689 * it is done with it. This function finds empty places we can upload to and
690 * marks allocated areas as reserved if necessary. p54_rx_frame_sent frees
691 * allocated areas.
692 */
693static void p54_assign_address(struct ieee80211_hw *dev, struct sk_buff *skb,
Johannes Berge039fa42008-05-15 12:55:29 +0200694 struct p54_control_hdr *data, u32 len)
Michael Wueff1a592007-09-25 18:11:01 -0700695{
696 struct p54_common *priv = dev->priv;
697 struct sk_buff *entry = priv->tx_queue.next;
698 struct sk_buff *target_skb = NULL;
Michael Wueff1a592007-09-25 18:11:01 -0700699 u32 last_addr = priv->rx_start;
700 u32 largest_hole = 0;
701 u32 target_addr = priv->rx_start;
702 unsigned long flags;
703 unsigned int left;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200704 len = (len + priv->headroom + priv->tailroom + 3) & ~0x3;
Michael Wueff1a592007-09-25 18:11:01 -0700705
706 spin_lock_irqsave(&priv->tx_queue.lock, flags);
707 left = skb_queue_len(&priv->tx_queue);
708 while (left--) {
709 u32 hole_size;
Johannes Berge039fa42008-05-15 12:55:29 +0200710 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry);
711 struct memrecord *range = (void *)info->driver_data;
Michael Wueff1a592007-09-25 18:11:01 -0700712 hole_size = range->start_addr - last_addr;
713 if (!target_skb && hole_size >= len) {
714 target_skb = entry->prev;
715 hole_size -= len;
716 target_addr = last_addr;
717 }
718 largest_hole = max(largest_hole, hole_size);
719 last_addr = range->end_addr;
720 entry = entry->next;
721 }
722 if (!target_skb && priv->rx_end - last_addr >= len) {
723 target_skb = priv->tx_queue.prev;
724 largest_hole = max(largest_hole, priv->rx_end - last_addr - len);
725 if (!skb_queue_empty(&priv->tx_queue)) {
Johannes Berge039fa42008-05-15 12:55:29 +0200726 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(target_skb);
727 struct memrecord *range = (void *)info->driver_data;
Michael Wueff1a592007-09-25 18:11:01 -0700728 target_addr = range->end_addr;
729 }
730 } else
731 largest_hole = max(largest_hole, priv->rx_end - last_addr);
732
733 if (skb) {
Johannes Berge039fa42008-05-15 12:55:29 +0200734 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
735 struct memrecord *range = (void *)info->driver_data;
Michael Wueff1a592007-09-25 18:11:01 -0700736 range->start_addr = target_addr;
737 range->end_addr = target_addr + len;
Michael Wueff1a592007-09-25 18:11:01 -0700738 __skb_queue_after(&priv->tx_queue, target_skb, skb);
Christian Lamparter4e416a62008-09-01 22:48:41 +0200739 if (largest_hole < priv->rx_mtu + priv->headroom +
740 priv->tailroom +
Michael Wueff1a592007-09-25 18:11:01 -0700741 sizeof(struct p54_control_hdr))
742 ieee80211_stop_queues(dev);
743 }
744 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
745
Christian Lamparter4e416a62008-09-01 22:48:41 +0200746 data->req_id = cpu_to_le32(target_addr + priv->headroom);
Michael Wueff1a592007-09-25 18:11:01 -0700747}
748
Christian Lamparter7cb77072008-09-01 22:48:51 +0200749int p54_read_eeprom(struct ieee80211_hw *dev)
750{
751 struct p54_common *priv = dev->priv;
752 struct p54_control_hdr *hdr = NULL;
753 struct p54_eeprom_lm86 *eeprom_hdr;
754 size_t eeprom_size = 0x2020, offset = 0, blocksize;
755 int ret = -ENOMEM;
756 void *eeprom = NULL;
757
758 hdr = (struct p54_control_hdr *)kzalloc(sizeof(*hdr) +
759 sizeof(*eeprom_hdr) + EEPROM_READBACK_LEN, GFP_KERNEL);
760 if (!hdr)
761 goto free;
762
763 priv->eeprom = kzalloc(EEPROM_READBACK_LEN, GFP_KERNEL);
764 if (!priv->eeprom)
765 goto free;
766
767 eeprom = kzalloc(eeprom_size, GFP_KERNEL);
768 if (!eeprom)
769 goto free;
770
771 hdr->magic1 = cpu_to_le16(0x8000);
772 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_EEPROM_READBACK);
773 hdr->retry1 = hdr->retry2 = 0;
774 eeprom_hdr = (struct p54_eeprom_lm86 *) hdr->data;
775
776 while (eeprom_size) {
777 blocksize = min(eeprom_size, (size_t)EEPROM_READBACK_LEN);
778 hdr->len = cpu_to_le16(blocksize + sizeof(*eeprom_hdr));
779 eeprom_hdr->offset = cpu_to_le16(offset);
780 eeprom_hdr->len = cpu_to_le16(blocksize);
Larry Finger1f1c0e32008-09-25 14:54:28 -0500781 p54_assign_address(dev, NULL, hdr, le16_to_cpu(hdr->len) +
782 sizeof(*hdr));
783 priv->tx(dev, hdr, le16_to_cpu(hdr->len) + sizeof(*hdr), 0);
Christian Lamparter7cb77072008-09-01 22:48:51 +0200784
785 if (!wait_for_completion_interruptible_timeout(&priv->eeprom_comp, HZ)) {
786 printk(KERN_ERR "%s: device does not respond!\n",
787 wiphy_name(dev->wiphy));
788 ret = -EBUSY;
789 goto free;
790 }
791
792 memcpy(eeprom + offset, priv->eeprom, blocksize);
793 offset += blocksize;
794 eeprom_size -= blocksize;
795 }
796
797 ret = p54_parse_eeprom(dev, eeprom, offset);
798free:
799 kfree(priv->eeprom);
800 priv->eeprom = NULL;
801 kfree(hdr);
802 kfree(eeprom);
803
804 return ret;
805}
806EXPORT_SYMBOL_GPL(p54_read_eeprom);
807
Johannes Berge039fa42008-05-15 12:55:29 +0200808static int p54_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
Michael Wueff1a592007-09-25 18:11:01 -0700809{
Johannes Berge039fa42008-05-15 12:55:29 +0200810 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg57ffc582008-04-29 17:18:59 +0200811 struct ieee80211_tx_queue_stats *current_queue;
Michael Wueff1a592007-09-25 18:11:01 -0700812 struct p54_common *priv = dev->priv;
813 struct p54_control_hdr *hdr;
Larry Fingereda0c002008-08-05 11:23:16 -0500814 struct ieee80211_hdr *ieee80211hdr = (struct ieee80211_hdr *)skb->data;
Michael Wueff1a592007-09-25 18:11:01 -0700815 struct p54_tx_control_allocdata *txhdr;
Michael Wueff1a592007-09-25 18:11:01 -0700816 size_t padding, len;
817 u8 rate;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500818 u8 cts_rate = 0x20;
Michael Wueff1a592007-09-25 18:11:01 -0700819
Chr84df3ed2008-08-24 03:15:16 +0200820 current_queue = &priv->tx_stats[skb_get_queue_mapping(skb) + 4];
Michael Wueff1a592007-09-25 18:11:01 -0700821 if (unlikely(current_queue->len > current_queue->limit))
822 return NETDEV_TX_BUSY;
823 current_queue->len++;
824 current_queue->count++;
825 if (current_queue->len == current_queue->limit)
Johannes Berge2530082008-05-17 00:57:14 +0200826 ieee80211_stop_queue(dev, skb_get_queue_mapping(skb));
Michael Wueff1a592007-09-25 18:11:01 -0700827
828 padding = (unsigned long)(skb->data - (sizeof(*hdr) + sizeof(*txhdr))) & 3;
829 len = skb->len;
830
Michael Wueff1a592007-09-25 18:11:01 -0700831 txhdr = (struct p54_tx_control_allocdata *)
832 skb_push(skb, sizeof(*txhdr) + padding);
833 hdr = (struct p54_control_hdr *) skb_push(skb, sizeof(*hdr));
834
835 if (padding)
836 hdr->magic1 = cpu_to_le16(0x4010);
837 else
838 hdr->magic1 = cpu_to_le16(0x0010);
839 hdr->len = cpu_to_le16(len);
Johannes Berge039fa42008-05-15 12:55:29 +0200840 hdr->type = (info->flags & IEEE80211_TX_CTL_NO_ACK) ? 0 : cpu_to_le16(1);
841 hdr->retry1 = hdr->retry2 = info->control.retry_limit;
Michael Wueff1a592007-09-25 18:11:01 -0700842
Michael Wueff1a592007-09-25 18:11:01 -0700843 /* TODO: add support for alternate retry TX rates */
Johannes Berge039fa42008-05-15 12:55:29 +0200844 rate = ieee80211_get_tx_rate(dev, info)->hw_value;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500845 if (info->flags & IEEE80211_TX_CTL_SHORT_PREAMBLE) {
Johannes Berg8318d782008-01-24 19:38:38 +0100846 rate |= 0x10;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500847 cts_rate |= 0x10;
848 }
849 if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) {
Michael Wueff1a592007-09-25 18:11:01 -0700850 rate |= 0x40;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500851 cts_rate |= ieee80211_get_rts_cts_rate(dev, info)->hw_value;
852 } else if (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT) {
Michael Wueff1a592007-09-25 18:11:01 -0700853 rate |= 0x20;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500854 cts_rate |= ieee80211_get_rts_cts_rate(dev, info)->hw_value;
855 }
Michael Wueff1a592007-09-25 18:11:01 -0700856 memset(txhdr->rateset, rate, 8);
Christian Lamparteraaa15532008-08-09 19:20:47 -0500857 txhdr->key_type = 0;
858 txhdr->key_len = 0;
859 txhdr->hw_queue = skb_get_queue_mapping(skb) + 4;
860 txhdr->tx_antenna = (info->antenna_sel_tx == 0) ?
Johannes Berge039fa42008-05-15 12:55:29 +0200861 2 : info->antenna_sel_tx - 1;
Christian Lamparter09adf282008-09-06 14:25:53 +0200862 txhdr->output_power = priv->output_power;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500863 txhdr->cts_rate = (info->flags & IEEE80211_TX_CTL_NO_ACK) ?
864 0 : cts_rate;
Michael Wueff1a592007-09-25 18:11:01 -0700865 if (padding)
866 txhdr->align[0] = padding;
867
Larry Fingereda0c002008-08-05 11:23:16 -0500868 /* FIXME: The sequence that follows is needed for this driver to
869 * work with mac80211 since "mac80211: fix TX sequence numbers".
870 * As with the temporary code in rt2x00, changes will be needed
871 * to get proper sequence numbers on beacons. In addition, this
872 * patch places the sequence number in the hardware state, which
873 * limits us to a single virtual state.
874 */
875 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
876 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
877 priv->seqno += 0x10;
878 ieee80211hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
879 ieee80211hdr->seq_ctrl |= cpu_to_le16(priv->seqno);
880 }
Johannes Berge039fa42008-05-15 12:55:29 +0200881 /* modifies skb->cb and with it info, so must be last! */
882 p54_assign_address(dev, skb, hdr, skb->len);
883
Michael Wueff1a592007-09-25 18:11:01 -0700884 priv->tx(dev, hdr, skb->len, 0);
885 return 0;
886}
887
888static int p54_set_filter(struct ieee80211_hw *dev, u16 filter_type,
Christian Lampartere0a58ea2008-09-03 22:25:20 +0200889 const u8 *bssid)
Michael Wueff1a592007-09-25 18:11:01 -0700890{
891 struct p54_common *priv = dev->priv;
892 struct p54_control_hdr *hdr;
893 struct p54_tx_control_filter *filter;
Christian Lamparter19c19d52008-09-03 22:25:25 +0200894 size_t data_len;
Michael Wueff1a592007-09-25 18:11:01 -0700895
896 hdr = kzalloc(sizeof(*hdr) + sizeof(*filter) +
Michael Wuba8007c2007-10-13 20:35:05 -0400897 priv->tx_hdr_len, GFP_ATOMIC);
Michael Wueff1a592007-09-25 18:11:01 -0700898 if (!hdr)
899 return -ENOMEM;
900
901 hdr = (void *)hdr + priv->tx_hdr_len;
902
903 filter = (struct p54_tx_control_filter *) hdr->data;
904 hdr->magic1 = cpu_to_le16(0x8001);
Michael Wueff1a592007-09-25 18:11:01 -0700905 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_FILTER_SET);
906
Christian Lampartere0a58ea2008-09-03 22:25:20 +0200907 priv->filter_type = filter->filter_type = cpu_to_le16(filter_type);
908 memcpy(filter->mac_addr, priv->mac_addr, ETH_ALEN);
909 if (!bssid)
910 memset(filter->bssid, ~0, ETH_ALEN);
Michael Wueff1a592007-09-25 18:11:01 -0700911 else
Christian Lampartere0a58ea2008-09-03 22:25:20 +0200912 memcpy(filter->bssid, bssid, ETH_ALEN);
913
914 filter->rx_antenna = priv->rx_antenna;
Michael Wueff1a592007-09-25 18:11:01 -0700915
Christian Lamparter19c19d52008-09-03 22:25:25 +0200916 if (priv->fw_var < 0x500) {
917 data_len = P54_TX_CONTROL_FILTER_V1_LEN;
918 filter->v1.basic_rate_mask = cpu_to_le32(0x15F);
919 filter->v1.rx_addr = cpu_to_le32(priv->rx_end);
920 filter->v1.max_rx = cpu_to_le16(priv->rx_mtu);
921 filter->v1.rxhw = cpu_to_le16(priv->rxhw);
922 filter->v1.wakeup_timer = cpu_to_le16(500);
923 } else {
924 data_len = P54_TX_CONTROL_FILTER_V2_LEN;
925 filter->v2.rx_addr = cpu_to_le32(priv->rx_end);
926 filter->v2.max_rx = cpu_to_le16(priv->rx_mtu);
927 filter->v2.rxhw = cpu_to_le16(priv->rxhw);
928 filter->v2.timer = cpu_to_le16(1000);
929 }
930
931 hdr->len = cpu_to_le16(data_len);
932 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + data_len);
933 priv->tx(dev, hdr, sizeof(*hdr) + data_len, 1);
Michael Wueff1a592007-09-25 18:11:01 -0700934 return 0;
935}
936
937static int p54_set_freq(struct ieee80211_hw *dev, __le16 freq)
938{
939 struct p54_common *priv = dev->priv;
940 struct p54_control_hdr *hdr;
941 struct p54_tx_control_channel *chan;
942 unsigned int i;
Christian Lamparter19c19d52008-09-03 22:25:25 +0200943 size_t data_len;
Michael Wueff1a592007-09-25 18:11:01 -0700944 void *entry;
945
Christian Lamparter154e3af2008-08-23 22:15:25 +0200946 hdr = kzalloc(sizeof(*hdr) + sizeof(*chan) +
Michael Wueff1a592007-09-25 18:11:01 -0700947 priv->tx_hdr_len, GFP_KERNEL);
948 if (!hdr)
949 return -ENOMEM;
950
951 hdr = (void *)hdr + priv->tx_hdr_len;
952
953 chan = (struct p54_tx_control_channel *) hdr->data;
954
955 hdr->magic1 = cpu_to_le16(0x8001);
Christian Lamparter19c19d52008-09-03 22:25:25 +0200956
Michael Wueff1a592007-09-25 18:11:01 -0700957 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_CHANNEL_CHANGE);
Michael Wueff1a592007-09-25 18:11:01 -0700958
Christian Lamparter154e3af2008-08-23 22:15:25 +0200959 chan->flags = cpu_to_le16(0x1);
960 chan->dwell = cpu_to_le16(0x0);
Michael Wueff1a592007-09-25 18:11:01 -0700961
962 for (i = 0; i < priv->iq_autocal_len; i++) {
963 if (priv->iq_autocal[i].freq != freq)
964 continue;
965
966 memcpy(&chan->iq_autocal, &priv->iq_autocal[i],
967 sizeof(*priv->iq_autocal));
968 break;
969 }
970 if (i == priv->iq_autocal_len)
971 goto err;
972
973 for (i = 0; i < priv->output_limit_len; i++) {
974 if (priv->output_limit[i].freq != freq)
975 continue;
976
977 chan->val_barker = 0x38;
Christian Lamparter154e3af2008-08-23 22:15:25 +0200978 chan->val_bpsk = chan->dup_bpsk =
979 priv->output_limit[i].val_bpsk;
980 chan->val_qpsk = chan->dup_qpsk =
981 priv->output_limit[i].val_qpsk;
982 chan->val_16qam = chan->dup_16qam =
983 priv->output_limit[i].val_16qam;
984 chan->val_64qam = chan->dup_64qam =
985 priv->output_limit[i].val_64qam;
Michael Wueff1a592007-09-25 18:11:01 -0700986 break;
987 }
988 if (i == priv->output_limit_len)
989 goto err;
990
Michael Wueff1a592007-09-25 18:11:01 -0700991 entry = priv->curve_data->data;
992 for (i = 0; i < priv->curve_data->channels; i++) {
993 if (*((__le16 *)entry) != freq) {
994 entry += sizeof(__le16);
Christian Lamparter154e3af2008-08-23 22:15:25 +0200995 entry += sizeof(struct p54_pa_curve_data_sample) *
996 priv->curve_data->points_per_channel;
Michael Wueff1a592007-09-25 18:11:01 -0700997 continue;
998 }
999
1000 entry += sizeof(__le16);
Christian Lamparter154e3af2008-08-23 22:15:25 +02001001 chan->pa_points_per_curve =
1002 min(priv->curve_data->points_per_channel, (u8) 8);
1003
Michael Wueff1a592007-09-25 18:11:01 -07001004 memcpy(chan->curve_data, entry, sizeof(*chan->curve_data) *
1005 chan->pa_points_per_curve);
1006 break;
1007 }
1008
Christian Lamparter19c19d52008-09-03 22:25:25 +02001009 if (priv->fw_var < 0x500) {
1010 data_len = P54_TX_CONTROL_CHANNEL_V1_LEN;
1011 chan->v1.rssical_mul = cpu_to_le16(130);
1012 chan->v1.rssical_add = cpu_to_le16(0xfe70);
1013 } else {
1014 data_len = P54_TX_CONTROL_CHANNEL_V2_LEN;
1015 chan->v2.rssical_mul = cpu_to_le16(130);
1016 chan->v2.rssical_add = cpu_to_le16(0xfe70);
1017 chan->v2.basic_rate_mask = cpu_to_le32(0x15f);
1018 }
Michael Wueff1a592007-09-25 18:11:01 -07001019
Christian Lamparter19c19d52008-09-03 22:25:25 +02001020 hdr->len = cpu_to_le16(data_len);
1021 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + data_len);
1022 priv->tx(dev, hdr, sizeof(*hdr) + data_len, 1);
Michael Wueff1a592007-09-25 18:11:01 -07001023 return 0;
1024
1025 err:
1026 printk(KERN_ERR "%s: frequency change failed\n", wiphy_name(dev->wiphy));
1027 kfree(hdr);
1028 return -EINVAL;
1029}
1030
1031static int p54_set_leds(struct ieee80211_hw *dev, int mode, int link, int act)
1032{
1033 struct p54_common *priv = dev->priv;
1034 struct p54_control_hdr *hdr;
1035 struct p54_tx_control_led *led;
1036
1037 hdr = kzalloc(sizeof(*hdr) + sizeof(*led) +
1038 priv->tx_hdr_len, GFP_KERNEL);
1039 if (!hdr)
1040 return -ENOMEM;
1041
1042 hdr = (void *)hdr + priv->tx_hdr_len;
1043 hdr->magic1 = cpu_to_le16(0x8001);
1044 hdr->len = cpu_to_le16(sizeof(*led));
1045 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_LED);
Johannes Berge039fa42008-05-15 12:55:29 +02001046 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*led));
Michael Wueff1a592007-09-25 18:11:01 -07001047
1048 led = (struct p54_tx_control_led *) hdr->data;
1049 led->mode = cpu_to_le16(mode);
1050 led->led_permanent = cpu_to_le16(link);
1051 led->led_temporary = cpu_to_le16(act);
1052 led->duration = cpu_to_le16(1000);
1053
1054 priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*led), 1);
1055
1056 return 0;
1057}
1058
Johannes Berg3330d7b2008-02-10 16:49:38 +01001059#define P54_SET_QUEUE(queue, ai_fs, cw_min, cw_max, _txop) \
Michael Wueff1a592007-09-25 18:11:01 -07001060do { \
1061 queue.aifs = cpu_to_le16(ai_fs); \
1062 queue.cwmin = cpu_to_le16(cw_min); \
1063 queue.cwmax = cpu_to_le16(cw_max); \
Johannes Berg3330d7b2008-02-10 16:49:38 +01001064 queue.txop = cpu_to_le16(_txop); \
Michael Wueff1a592007-09-25 18:11:01 -07001065} while(0)
1066
1067static void p54_init_vdcf(struct ieee80211_hw *dev)
1068{
1069 struct p54_common *priv = dev->priv;
1070 struct p54_control_hdr *hdr;
1071 struct p54_tx_control_vdcf *vdcf;
1072
1073 /* all USB V1 adapters need a extra headroom */
1074 hdr = (void *)priv->cached_vdcf + priv->tx_hdr_len;
1075 hdr->magic1 = cpu_to_le16(0x8001);
1076 hdr->len = cpu_to_le16(sizeof(*vdcf));
1077 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_DCFINIT);
1078 hdr->req_id = cpu_to_le32(priv->rx_start);
1079
1080 vdcf = (struct p54_tx_control_vdcf *) hdr->data;
1081
Johannes Berg3330d7b2008-02-10 16:49:38 +01001082 P54_SET_QUEUE(vdcf->queue[0], 0x0002, 0x0003, 0x0007, 47);
1083 P54_SET_QUEUE(vdcf->queue[1], 0x0002, 0x0007, 0x000f, 94);
Christian Lamparter5200e8c2008-02-12 14:02:06 +01001084 P54_SET_QUEUE(vdcf->queue[2], 0x0003, 0x000f, 0x03ff, 0);
Johannes Berg3330d7b2008-02-10 16:49:38 +01001085 P54_SET_QUEUE(vdcf->queue[3], 0x0007, 0x000f, 0x03ff, 0);
Michael Wueff1a592007-09-25 18:11:01 -07001086}
1087
1088static void p54_set_vdcf(struct ieee80211_hw *dev)
1089{
1090 struct p54_common *priv = dev->priv;
1091 struct p54_control_hdr *hdr;
1092 struct p54_tx_control_vdcf *vdcf;
1093
1094 hdr = (void *)priv->cached_vdcf + priv->tx_hdr_len;
1095
Johannes Berge039fa42008-05-15 12:55:29 +02001096 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*vdcf));
Michael Wueff1a592007-09-25 18:11:01 -07001097
1098 vdcf = (struct p54_tx_control_vdcf *) hdr->data;
1099
1100 if (dev->conf.flags & IEEE80211_CONF_SHORT_SLOT_TIME) {
1101 vdcf->slottime = 9;
Christian Lamparter5423b2e2008-08-07 10:22:28 +02001102 vdcf->magic1 = 0x10;
1103 vdcf->magic2 = 0x00;
Michael Wueff1a592007-09-25 18:11:01 -07001104 } else {
1105 vdcf->slottime = 20;
1106 vdcf->magic1 = 0x0a;
1107 vdcf->magic2 = 0x06;
1108 }
1109
1110 /* (see prism54/isl_oid.h for further details) */
1111 vdcf->frameburst = cpu_to_le16(0);
1112
1113 priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*vdcf), 0);
1114}
1115
Johannes Berg4150c572007-09-17 01:29:23 -04001116static int p54_start(struct ieee80211_hw *dev)
Michael Wueff1a592007-09-25 18:11:01 -07001117{
1118 struct p54_common *priv = dev->priv;
1119 int err;
1120
Christian Lamparter69bbc7d2008-08-13 23:41:45 +02001121 if (!priv->cached_vdcf) {
1122 priv->cached_vdcf = kzalloc(sizeof(struct p54_tx_control_vdcf)+
1123 priv->tx_hdr_len + sizeof(struct p54_control_hdr),
1124 GFP_KERNEL);
1125
1126 if (!priv->cached_vdcf)
1127 return -ENOMEM;
1128 }
1129
Christian Lampartercc6de662008-09-06 02:56:23 +02001130 if (!priv->cached_stats) {
1131 priv->cached_stats = kzalloc(sizeof(struct p54_statistics) +
1132 priv->tx_hdr_len + sizeof(struct p54_control_hdr),
1133 GFP_KERNEL);
1134
1135 if (!priv->cached_stats) {
1136 kfree(priv->cached_vdcf);
1137 priv->cached_vdcf = NULL;
1138 return -ENOMEM;
1139 }
1140 }
1141
Johannes Berg4150c572007-09-17 01:29:23 -04001142 err = priv->open(dev);
1143 if (!err)
Johannes Berg05c914f2008-09-11 00:01:58 +02001144 priv->mode = NL80211_IFTYPE_MONITOR;
Johannes Berg4150c572007-09-17 01:29:23 -04001145
Christian Lamparter69bbc7d2008-08-13 23:41:45 +02001146 p54_init_vdcf(dev);
1147
Christian Lampartercc6de662008-09-06 02:56:23 +02001148 mod_timer(&priv->stats_timer, jiffies + HZ);
Johannes Berg4150c572007-09-17 01:29:23 -04001149 return err;
1150}
1151
1152static void p54_stop(struct ieee80211_hw *dev)
1153{
1154 struct p54_common *priv = dev->priv;
1155 struct sk_buff *skb;
Christian Lampartercc6de662008-09-06 02:56:23 +02001156
1157 del_timer(&priv->stats_timer);
Johannes Berge039fa42008-05-15 12:55:29 +02001158 while ((skb = skb_dequeue(&priv->tx_queue)))
Johannes Berg4150c572007-09-17 01:29:23 -04001159 kfree_skb(skb);
Johannes Berg4150c572007-09-17 01:29:23 -04001160 priv->stop(dev);
Christian Lampartera0db6632008-09-06 02:56:04 +02001161 priv->tsf_high32 = priv->tsf_low32 = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02001162 priv->mode = NL80211_IFTYPE_UNSPECIFIED;
Johannes Berg4150c572007-09-17 01:29:23 -04001163}
1164
1165static int p54_add_interface(struct ieee80211_hw *dev,
1166 struct ieee80211_if_init_conf *conf)
1167{
1168 struct p54_common *priv = dev->priv;
1169
Johannes Berg05c914f2008-09-11 00:01:58 +02001170 if (priv->mode != NL80211_IFTYPE_MONITOR)
Johannes Berg4150c572007-09-17 01:29:23 -04001171 return -EOPNOTSUPP;
Michael Wueff1a592007-09-25 18:11:01 -07001172
1173 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001174 case NL80211_IFTYPE_STATION:
Michael Wueff1a592007-09-25 18:11:01 -07001175 priv->mode = conf->type;
1176 break;
1177 default:
1178 return -EOPNOTSUPP;
1179 }
1180
Johannes Berg4150c572007-09-17 01:29:23 -04001181 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
Michael Wueff1a592007-09-25 18:11:01 -07001182
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001183 p54_set_filter(dev, 0, NULL);
Michael Wueff1a592007-09-25 18:11:01 -07001184
1185 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001186 case NL80211_IFTYPE_STATION:
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001187 p54_set_filter(dev, 1, NULL);
Michael Wueff1a592007-09-25 18:11:01 -07001188 break;
Johannes Berg4150c572007-09-17 01:29:23 -04001189 default:
1190 BUG(); /* impossible */
1191 break;
Michael Wueff1a592007-09-25 18:11:01 -07001192 }
1193
1194 p54_set_leds(dev, 1, 0, 0);
1195
1196 return 0;
1197}
1198
1199static void p54_remove_interface(struct ieee80211_hw *dev,
1200 struct ieee80211_if_init_conf *conf)
1201{
1202 struct p54_common *priv = dev->priv;
Johannes Berg05c914f2008-09-11 00:01:58 +02001203 priv->mode = NL80211_IFTYPE_MONITOR;
Johannes Berg4150c572007-09-17 01:29:23 -04001204 memset(priv->mac_addr, 0, ETH_ALEN);
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001205 p54_set_filter(dev, 0, NULL);
Michael Wueff1a592007-09-25 18:11:01 -07001206}
1207
1208static int p54_config(struct ieee80211_hw *dev, struct ieee80211_conf *conf)
1209{
1210 int ret;
Larry Finger6041e2a2008-08-03 17:58:36 -05001211 struct p54_common *priv = dev->priv;
Michael Wueff1a592007-09-25 18:11:01 -07001212
Larry Finger6041e2a2008-08-03 17:58:36 -05001213 mutex_lock(&priv->conf_mutex);
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001214 priv->rx_antenna = (conf->antenna_sel_rx == 0) ?
1215 2 : conf->antenna_sel_tx - 1;
Christian Lamparter09adf282008-09-06 14:25:53 +02001216 priv->output_power = conf->power_level << 2;
Johannes Berg8318d782008-01-24 19:38:38 +01001217 ret = p54_set_freq(dev, cpu_to_le16(conf->channel->center_freq));
Michael Wueff1a592007-09-25 18:11:01 -07001218 p54_set_vdcf(dev);
Larry Finger6041e2a2008-08-03 17:58:36 -05001219 mutex_unlock(&priv->conf_mutex);
Michael Wueff1a592007-09-25 18:11:01 -07001220 return ret;
1221}
1222
Johannes Berg32bfd352007-12-19 01:31:26 +01001223static int p54_config_interface(struct ieee80211_hw *dev,
1224 struct ieee80211_vif *vif,
Michael Wueff1a592007-09-25 18:11:01 -07001225 struct ieee80211_if_conf *conf)
1226{
1227 struct p54_common *priv = dev->priv;
1228
Larry Finger6041e2a2008-08-03 17:58:36 -05001229 mutex_lock(&priv->conf_mutex);
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001230 p54_set_filter(dev, 0, conf->bssid);
Michael Wueff1a592007-09-25 18:11:01 -07001231 p54_set_leds(dev, 1, !is_multicast_ether_addr(conf->bssid), 0);
Johannes Berg4150c572007-09-17 01:29:23 -04001232 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
Larry Finger6041e2a2008-08-03 17:58:36 -05001233 mutex_unlock(&priv->conf_mutex);
Michael Wueff1a592007-09-25 18:11:01 -07001234 return 0;
1235}
1236
Johannes Berg4150c572007-09-17 01:29:23 -04001237static void p54_configure_filter(struct ieee80211_hw *dev,
1238 unsigned int changed_flags,
1239 unsigned int *total_flags,
1240 int mc_count, struct dev_mc_list *mclist)
1241{
1242 struct p54_common *priv = dev->priv;
1243
Christian Lamparter78d57eb2008-09-06 02:56:12 +02001244 *total_flags &= FIF_BCN_PRBRESP_PROMISC |
1245 FIF_PROMISC_IN_BSS |
1246 FIF_FCSFAIL;
1247
1248 priv->filter_flags = *total_flags;
Johannes Berg4150c572007-09-17 01:29:23 -04001249
1250 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
1251 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Larry Finger1f1c0e32008-09-25 14:54:28 -05001252 p54_set_filter(dev, le16_to_cpu(priv->filter_type),
1253 NULL);
Johannes Berg4150c572007-09-17 01:29:23 -04001254 else
Larry Finger1f1c0e32008-09-25 14:54:28 -05001255 p54_set_filter(dev, le16_to_cpu(priv->filter_type),
1256 priv->bssid);
Christian Lamparter78d57eb2008-09-06 02:56:12 +02001257 }
1258
1259 if (changed_flags & FIF_PROMISC_IN_BSS) {
1260 if (*total_flags & FIF_PROMISC_IN_BSS)
Larry Finger1f1c0e32008-09-25 14:54:28 -05001261 p54_set_filter(dev, le16_to_cpu(priv->filter_type) |
1262 0x8, NULL);
Christian Lamparter78d57eb2008-09-06 02:56:12 +02001263 else
Larry Finger1f1c0e32008-09-25 14:54:28 -05001264 p54_set_filter(dev, le16_to_cpu(priv->filter_type) &
1265 ~0x8, priv->bssid);
Johannes Berg4150c572007-09-17 01:29:23 -04001266 }
1267}
1268
Johannes Berge100bb62008-04-30 18:51:21 +02001269static int p54_conf_tx(struct ieee80211_hw *dev, u16 queue,
Michael Wueff1a592007-09-25 18:11:01 -07001270 const struct ieee80211_tx_queue_params *params)
1271{
1272 struct p54_common *priv = dev->priv;
1273 struct p54_tx_control_vdcf *vdcf;
1274
1275 vdcf = (struct p54_tx_control_vdcf *)(((struct p54_control_hdr *)
1276 ((void *)priv->cached_vdcf + priv->tx_hdr_len))->data);
1277
John W. Linville3df5ee62008-05-01 17:07:32 -04001278 if ((params) && !(queue > 4)) {
Michael Wueff1a592007-09-25 18:11:01 -07001279 P54_SET_QUEUE(vdcf->queue[queue], params->aifs,
Johannes Berg3330d7b2008-02-10 16:49:38 +01001280 params->cw_min, params->cw_max, params->txop);
Michael Wueff1a592007-09-25 18:11:01 -07001281 } else
1282 return -EINVAL;
1283
1284 p54_set_vdcf(dev);
1285
1286 return 0;
1287}
1288
Christian Lamparter1b997532008-09-06 14:25:58 +02001289static int p54_init_xbow_synth(struct ieee80211_hw *dev)
1290{
1291 struct p54_common *priv = dev->priv;
1292 struct p54_control_hdr *hdr;
1293 struct p54_tx_control_xbow_synth *xbow;
1294
1295 hdr = kzalloc(sizeof(*hdr) + sizeof(*xbow) +
1296 priv->tx_hdr_len, GFP_KERNEL);
1297 if (!hdr)
1298 return -ENOMEM;
1299
1300 hdr = (void *)hdr + priv->tx_hdr_len;
1301 hdr->magic1 = cpu_to_le16(0x8001);
1302 hdr->len = cpu_to_le16(sizeof(*xbow));
1303 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_XBOW_SYNTH_CFG);
1304 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*xbow));
1305
1306 xbow = (struct p54_tx_control_xbow_synth *) hdr->data;
1307 xbow->magic1 = cpu_to_le16(0x1);
1308 xbow->magic2 = cpu_to_le16(0x2);
1309 xbow->freq = cpu_to_le16(5390);
1310
1311 priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*xbow), 1);
1312
1313 return 0;
1314}
1315
Christian Lampartercc6de662008-09-06 02:56:23 +02001316static void p54_statistics_timer(unsigned long data)
1317{
1318 struct ieee80211_hw *dev = (struct ieee80211_hw *) data;
1319 struct p54_common *priv = dev->priv;
1320 struct p54_control_hdr *hdr;
1321 struct p54_statistics *stats;
1322
1323 BUG_ON(!priv->cached_stats);
1324
1325 hdr = (void *)priv->cached_stats + priv->tx_hdr_len;
1326 hdr->magic1 = cpu_to_le16(0x8000);
1327 hdr->len = cpu_to_le16(sizeof(*stats));
1328 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_STAT_READBACK);
1329 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*stats));
1330
1331 priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*stats), 0);
1332}
1333
Michael Wueff1a592007-09-25 18:11:01 -07001334static int p54_get_stats(struct ieee80211_hw *dev,
1335 struct ieee80211_low_level_stats *stats)
1336{
Christian Lampartercc6de662008-09-06 02:56:23 +02001337 struct p54_common *priv = dev->priv;
1338
1339 del_timer(&priv->stats_timer);
1340 p54_statistics_timer((unsigned long)dev);
1341
1342 if (!wait_for_completion_interruptible_timeout(&priv->stats_comp, HZ)) {
1343 printk(KERN_ERR "%s: device does not respond!\n",
1344 wiphy_name(dev->wiphy));
1345 return -EBUSY;
1346 }
1347
1348 memcpy(stats, &priv->stats, sizeof(*stats));
1349
Michael Wueff1a592007-09-25 18:11:01 -07001350 return 0;
1351}
1352
1353static int p54_get_tx_stats(struct ieee80211_hw *dev,
1354 struct ieee80211_tx_queue_stats *stats)
1355{
1356 struct p54_common *priv = dev->priv;
Michael Wueff1a592007-09-25 18:11:01 -07001357
Chr84df3ed2008-08-24 03:15:16 +02001358 memcpy(stats, &priv->tx_stats[4], sizeof(stats[0]) * dev->queues);
Michael Wueff1a592007-09-25 18:11:01 -07001359
1360 return 0;
1361}
1362
1363static const struct ieee80211_ops p54_ops = {
1364 .tx = p54_tx,
Johannes Berg4150c572007-09-17 01:29:23 -04001365 .start = p54_start,
1366 .stop = p54_stop,
Michael Wueff1a592007-09-25 18:11:01 -07001367 .add_interface = p54_add_interface,
1368 .remove_interface = p54_remove_interface,
1369 .config = p54_config,
1370 .config_interface = p54_config_interface,
Johannes Berg4150c572007-09-17 01:29:23 -04001371 .configure_filter = p54_configure_filter,
Michael Wueff1a592007-09-25 18:11:01 -07001372 .conf_tx = p54_conf_tx,
1373 .get_stats = p54_get_stats,
1374 .get_tx_stats = p54_get_tx_stats
1375};
1376
1377struct ieee80211_hw *p54_init_common(size_t priv_data_len)
1378{
1379 struct ieee80211_hw *dev;
1380 struct p54_common *priv;
Michael Wueff1a592007-09-25 18:11:01 -07001381
1382 dev = ieee80211_alloc_hw(priv_data_len, &p54_ops);
1383 if (!dev)
1384 return NULL;
1385
1386 priv = dev->priv;
Johannes Berg05c914f2008-09-11 00:01:58 +02001387 priv->mode = NL80211_IFTYPE_UNSPECIFIED;
Michael Wueff1a592007-09-25 18:11:01 -07001388 skb_queue_head_init(&priv->tx_queue);
Michael Wueff1a592007-09-25 18:11:01 -07001389 dev->flags = IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | /* not sure */
Bruno Randolf566bfe52008-05-08 19:15:40 +02001390 IEEE80211_HW_RX_INCLUDES_FCS |
Christian Lampartercc6de662008-09-06 02:56:23 +02001391 IEEE80211_HW_SIGNAL_DBM |
1392 IEEE80211_HW_NOISE_DBM;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001393
1394 dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
1395
Michael Wueff1a592007-09-25 18:11:01 -07001396 dev->channel_change_time = 1000; /* TODO: find actual value */
Michael Wueff1a592007-09-25 18:11:01 -07001397
Chr84df3ed2008-08-24 03:15:16 +02001398 priv->tx_stats[0].limit = 1;
1399 priv->tx_stats[1].limit = 1;
1400 priv->tx_stats[2].limit = 1;
1401 priv->tx_stats[3].limit = 1;
1402 priv->tx_stats[4].limit = 5;
Michael Wueff1a592007-09-25 18:11:01 -07001403 dev->queues = 1;
Christian Lampartercc6de662008-09-06 02:56:23 +02001404 priv->noise = -94;
Michael Wueff1a592007-09-25 18:11:01 -07001405 dev->extra_tx_headroom = sizeof(struct p54_control_hdr) + 4 +
1406 sizeof(struct p54_tx_control_allocdata);
1407
Larry Finger6041e2a2008-08-03 17:58:36 -05001408 mutex_init(&priv->conf_mutex);
Christian Lamparter7cb77072008-09-01 22:48:51 +02001409 init_completion(&priv->eeprom_comp);
Christian Lampartercc6de662008-09-06 02:56:23 +02001410 init_completion(&priv->stats_comp);
1411 setup_timer(&priv->stats_timer, p54_statistics_timer,
1412 (unsigned long)dev);
Michael Wueff1a592007-09-25 18:11:01 -07001413
Michael Wueff1a592007-09-25 18:11:01 -07001414 return dev;
1415}
1416EXPORT_SYMBOL_GPL(p54_init_common);
1417
1418void p54_free_common(struct ieee80211_hw *dev)
1419{
1420 struct p54_common *priv = dev->priv;
Christian Lampartercc6de662008-09-06 02:56:23 +02001421 kfree(priv->cached_stats);
Michael Wueff1a592007-09-25 18:11:01 -07001422 kfree(priv->iq_autocal);
1423 kfree(priv->output_limit);
1424 kfree(priv->curve_data);
1425 kfree(priv->cached_vdcf);
1426}
1427EXPORT_SYMBOL_GPL(p54_free_common);
1428
1429static int __init p54_init(void)
1430{
1431 return 0;
1432}
1433
1434static void __exit p54_exit(void)
1435{
1436}
1437
1438module_init(p54_init);
1439module_exit(p54_exit);