blob: f742abab759424d8e45378dbaf01e46bc1f1aa28 [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
Johannes Berg8318d782008-01-24 19:38:38 +010030static struct ieee80211_rate p54_rates[] = {
31 { .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
45static struct ieee80211_channel p54_channels[] = {
46 { .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 = {
Johannes Berg8318d782008-01-24 19:38:38 +010063 .channels = p54_channels,
64 .n_channels = ARRAY_SIZE(p54_channels),
65 .bitrates = p54_rates,
66 .n_bitrates = ARRAY_SIZE(p54_rates),
67};
68
Christian Lamparter4e416a62008-09-01 22:48:41 +020069int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw)
Michael Wueff1a592007-09-25 18:11:01 -070070{
71 struct p54_common *priv = dev->priv;
72 struct bootrec_exp_if *exp_if;
73 struct bootrec *bootrec;
74 u32 *data = (u32 *)fw->data;
75 u32 *end_data = (u32 *)fw->data + (fw->size >> 2);
76 u8 *fw_version = NULL;
77 size_t len;
78 int i;
79
80 if (priv->rx_start)
Christian Lamparter4e416a62008-09-01 22:48:41 +020081 return 0;
Michael Wueff1a592007-09-25 18:11:01 -070082
83 while (data < end_data && *data)
84 data++;
85
86 while (data < end_data && !*data)
87 data++;
88
89 bootrec = (struct bootrec *) data;
90
91 while (bootrec->data <= end_data &&
92 (bootrec->data + (len = le32_to_cpu(bootrec->len))) <= end_data) {
93 u32 code = le32_to_cpu(bootrec->code);
94 switch (code) {
95 case BR_CODE_COMPONENT_ID:
Christian Lamparter2b808482008-09-04 12:29:38 +020096 priv->fw_interface = be32_to_cpup(bootrec->data);
97 switch (priv->fw_interface) {
Michael Wueff1a592007-09-25 18:11:01 -070098 case FW_FMAC:
99 printk(KERN_INFO "p54: FreeMAC firmware\n");
100 break;
101 case FW_LM20:
102 printk(KERN_INFO "p54: LM20 firmware\n");
103 break;
104 case FW_LM86:
105 printk(KERN_INFO "p54: LM86 firmware\n");
106 break;
107 case FW_LM87:
Christian Lamparter2b808482008-09-04 12:29:38 +0200108 printk(KERN_INFO "p54: LM87 firmware\n");
Michael Wueff1a592007-09-25 18:11:01 -0700109 break;
110 default:
111 printk(KERN_INFO "p54: unknown firmware\n");
112 break;
113 }
114 break;
115 case BR_CODE_COMPONENT_VERSION:
116 /* 24 bytes should be enough for all firmwares */
117 if (strnlen((unsigned char*)bootrec->data, 24) < 24)
118 fw_version = (unsigned char*)bootrec->data;
119 break;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200120 case BR_CODE_DESCR: {
121 struct bootrec_desc *desc =
122 (struct bootrec_desc *)bootrec->data;
123 priv->rx_start = le32_to_cpu(desc->rx_start);
Michael Wueff1a592007-09-25 18:11:01 -0700124 /* FIXME add sanity checking */
Christian Lamparter4e416a62008-09-01 22:48:41 +0200125 priv->rx_end = le32_to_cpu(desc->rx_end) - 0x3500;
126 priv->headroom = desc->headroom;
127 priv->tailroom = desc->tailroom;
128 if (bootrec->len == 11)
129 priv->rx_mtu = (size_t) le16_to_cpu(
130 (__le16)bootrec->data[10]);
131 else
132 priv->rx_mtu = (size_t)
133 0x620 - priv->tx_hdr_len;
Michael Wueff1a592007-09-25 18:11:01 -0700134 break;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200135 }
Michael Wueff1a592007-09-25 18:11:01 -0700136 case BR_CODE_EXPOSED_IF:
137 exp_if = (struct bootrec_exp_if *) bootrec->data;
138 for (i = 0; i < (len * sizeof(*exp_if) / 4); i++)
Al Virodc73c622007-12-21 23:49:02 -0500139 if (exp_if[i].if_id == cpu_to_le16(0x1a))
Michael Wueff1a592007-09-25 18:11:01 -0700140 priv->fw_var = le16_to_cpu(exp_if[i].variant);
141 break;
142 case BR_CODE_DEPENDENT_IF:
143 break;
144 case BR_CODE_END_OF_BRA:
145 case LEGACY_BR_CODE_END_OF_BRA:
146 end_data = NULL;
147 break;
148 default:
149 break;
150 }
151 bootrec = (struct bootrec *)&bootrec->data[len];
152 }
153
154 if (fw_version)
155 printk(KERN_INFO "p54: FW rev %s - Softmac protocol %x.%x\n",
156 fw_version, priv->fw_var >> 8, priv->fw_var & 0xff);
157
158 if (priv->fw_var >= 0x300) {
159 /* Firmware supports QoS, use it! */
Chr84df3ed2008-08-24 03:15:16 +0200160 priv->tx_stats[4].limit = 3;
161 priv->tx_stats[5].limit = 4;
162 priv->tx_stats[6].limit = 3;
163 priv->tx_stats[7].limit = 1;
Michael Wueff1a592007-09-25 18:11:01 -0700164 dev->queues = 4;
165 }
Christian Lamparter4e416a62008-09-01 22:48:41 +0200166
167 return 0;
Michael Wueff1a592007-09-25 18:11:01 -0700168}
169EXPORT_SYMBOL_GPL(p54_parse_firmware);
170
Christian Lamparter154e3af2008-08-23 22:15:25 +0200171static int p54_convert_rev0(struct ieee80211_hw *dev,
172 struct pda_pa_curve_data *curve_data)
Michael Wueff1a592007-09-25 18:11:01 -0700173{
174 struct p54_common *priv = dev->priv;
Christian Lamparter154e3af2008-08-23 22:15:25 +0200175 struct p54_pa_curve_data_sample *dst;
176 struct pda_pa_curve_data_sample_rev0 *src;
Michael Wueff1a592007-09-25 18:11:01 -0700177 size_t cd_len = sizeof(*curve_data) +
Christian Lamparter154e3af2008-08-23 22:15:25 +0200178 (curve_data->points_per_channel*sizeof(*dst) + 2) *
Michael Wueff1a592007-09-25 18:11:01 -0700179 curve_data->channels;
180 unsigned int i, j;
181 void *source, *target;
182
183 priv->curve_data = kmalloc(cd_len, GFP_KERNEL);
184 if (!priv->curve_data)
185 return -ENOMEM;
186
187 memcpy(priv->curve_data, curve_data, sizeof(*curve_data));
188 source = curve_data->data;
189 target = priv->curve_data->data;
190 for (i = 0; i < curve_data->channels; i++) {
191 __le16 *freq = source;
192 source += sizeof(__le16);
193 *((__le16 *)target) = *freq;
194 target += sizeof(__le16);
195 for (j = 0; j < curve_data->points_per_channel; j++) {
Christian Lamparter154e3af2008-08-23 22:15:25 +0200196 dst = target;
197 src = source;
Michael Wueff1a592007-09-25 18:11:01 -0700198
Christian Lamparter154e3af2008-08-23 22:15:25 +0200199 dst->rf_power = src->rf_power;
200 dst->pa_detector = src->pa_detector;
201 dst->data_64qam = src->pcv;
Michael Wueff1a592007-09-25 18:11:01 -0700202 /* "invent" the points for the other modulations */
203#define SUB(x,y) (u8)((x) - (y)) > (x) ? 0 : (x) - (y)
Christian Lamparter154e3af2008-08-23 22:15:25 +0200204 dst->data_16qam = SUB(src->pcv, 12);
205 dst->data_qpsk = SUB(dst->data_16qam, 12);
206 dst->data_bpsk = SUB(dst->data_qpsk, 12);
207 dst->data_barker = SUB(dst->data_bpsk, 14);
Michael Wueff1a592007-09-25 18:11:01 -0700208#undef SUB
Christian Lamparter154e3af2008-08-23 22:15:25 +0200209 target += sizeof(*dst);
210 source += sizeof(*src);
Michael Wueff1a592007-09-25 18:11:01 -0700211 }
212 }
213
214 return 0;
215}
216
Christian Lamparter154e3af2008-08-23 22:15:25 +0200217static int p54_convert_rev1(struct ieee80211_hw *dev,
218 struct pda_pa_curve_data *curve_data)
219{
220 struct p54_common *priv = dev->priv;
221 struct p54_pa_curve_data_sample *dst;
222 struct pda_pa_curve_data_sample_rev1 *src;
223 size_t cd_len = sizeof(*curve_data) +
224 (curve_data->points_per_channel*sizeof(*dst) + 2) *
225 curve_data->channels;
226 unsigned int i, j;
227 void *source, *target;
228
229 priv->curve_data = kmalloc(cd_len, GFP_KERNEL);
230 if (!priv->curve_data)
231 return -ENOMEM;
232
233 memcpy(priv->curve_data, curve_data, sizeof(*curve_data));
234 source = curve_data->data;
235 target = priv->curve_data->data;
236 for (i = 0; i < curve_data->channels; i++) {
237 __le16 *freq = source;
238 source += sizeof(__le16);
239 *((__le16 *)target) = *freq;
240 target += sizeof(__le16);
241 for (j = 0; j < curve_data->points_per_channel; j++) {
242 memcpy(target, source, sizeof(*src));
243
244 target += sizeof(*dst);
245 source += sizeof(*src);
246 }
247 source++;
248 }
249
250 return 0;
251}
252
Christian Lamparter7cb77072008-09-01 22:48:51 +0200253const char* p54_rf_chips[] = { "NULL", "Indigo?", "Duette",
254 "Frisbee", "Xbow", "Longbow" };
255
Michael Wueff1a592007-09-25 18:11:01 -0700256int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len)
257{
258 struct p54_common *priv = dev->priv;
259 struct eeprom_pda_wrap *wrap = NULL;
260 struct pda_entry *entry;
Michael Wueff1a592007-09-25 18:11:01 -0700261 unsigned int data_len, entry_len;
262 void *tmp;
263 int err;
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100264 u8 *end = (u8 *)eeprom + len;
Christian Lamparter7cb77072008-09-01 22:48:51 +0200265 DECLARE_MAC_BUF(mac);
Michael Wueff1a592007-09-25 18:11:01 -0700266
267 wrap = (struct eeprom_pda_wrap *) eeprom;
Johannes Berg8c282932008-02-29 13:56:33 +0100268 entry = (void *)wrap->data + le16_to_cpu(wrap->len);
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100269
270 /* verify that at least the entry length/code fits */
271 while ((u8 *)entry <= end - sizeof(*entry)) {
Michael Wueff1a592007-09-25 18:11:01 -0700272 entry_len = le16_to_cpu(entry->len);
273 data_len = ((entry_len - 1) << 1);
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100274
275 /* abort if entry exceeds whole structure */
276 if ((u8 *)entry + sizeof(*entry) + data_len > end)
277 break;
278
Michael Wueff1a592007-09-25 18:11:01 -0700279 switch (le16_to_cpu(entry->code)) {
280 case PDR_MAC_ADDRESS:
281 SET_IEEE80211_PERM_ADDR(dev, entry->data);
282 break;
283 case PDR_PRISM_PA_CAL_OUTPUT_POWER_LIMITS:
284 if (data_len < 2) {
285 err = -EINVAL;
286 goto err;
287 }
288
289 if (2 + entry->data[1]*sizeof(*priv->output_limit) > data_len) {
290 err = -EINVAL;
291 goto err;
292 }
293
294 priv->output_limit = kmalloc(entry->data[1] *
295 sizeof(*priv->output_limit), GFP_KERNEL);
296
297 if (!priv->output_limit) {
298 err = -ENOMEM;
299 goto err;
300 }
301
302 memcpy(priv->output_limit, &entry->data[2],
303 entry->data[1]*sizeof(*priv->output_limit));
304 priv->output_limit_len = entry->data[1];
305 break;
Christian Lamparter154e3af2008-08-23 22:15:25 +0200306 case PDR_PRISM_PA_CAL_CURVE_DATA: {
307 struct pda_pa_curve_data *curve_data =
308 (struct pda_pa_curve_data *)entry->data;
309 if (data_len < sizeof(*curve_data)) {
Michael Wueff1a592007-09-25 18:11:01 -0700310 err = -EINVAL;
311 goto err;
312 }
313
Christian Lamparter154e3af2008-08-23 22:15:25 +0200314 switch (curve_data->cal_method_rev) {
315 case 0:
316 err = p54_convert_rev0(dev, curve_data);
317 break;
318 case 1:
319 err = p54_convert_rev1(dev, curve_data);
320 break;
321 default:
322 printk(KERN_ERR "p54: unknown curve data "
323 "revision %d\n",
324 curve_data->cal_method_rev);
325 err = -ENODEV;
326 break;
Michael Wueff1a592007-09-25 18:11:01 -0700327 }
Christian Lamparter154e3af2008-08-23 22:15:25 +0200328 if (err)
329 goto err;
Michael Wueff1a592007-09-25 18:11:01 -0700330
Christian Lamparter154e3af2008-08-23 22:15:25 +0200331 }
Michael Wueff1a592007-09-25 18:11:01 -0700332 case PDR_PRISM_ZIF_TX_IQ_CALIBRATION:
333 priv->iq_autocal = kmalloc(data_len, GFP_KERNEL);
334 if (!priv->iq_autocal) {
335 err = -ENOMEM;
336 goto err;
337 }
338
339 memcpy(priv->iq_autocal, entry->data, data_len);
340 priv->iq_autocal_len = data_len / sizeof(struct pda_iq_autocal_entry);
341 break;
342 case PDR_INTERFACE_LIST:
343 tmp = entry->data;
344 while ((u8 *)tmp < entry->data + data_len) {
345 struct bootrec_exp_if *exp_if = tmp;
346 if (le16_to_cpu(exp_if->if_id) == 0xF)
Christian Lamparter7cb77072008-09-01 22:48:51 +0200347 priv->rxhw = le16_to_cpu(exp_if->variant) & 0x07;
Michael Wueff1a592007-09-25 18:11:01 -0700348 tmp += sizeof(struct bootrec_exp_if);
349 }
350 break;
351 case PDR_HARDWARE_PLATFORM_COMPONENT_ID:
352 priv->version = *(u8 *)(entry->data + 1);
353 break;
354 case PDR_END:
Johannes Bergc2f2d3a2008-02-29 23:28:25 +0100355 /* make it overrun */
356 entry_len = len;
Michael Wueff1a592007-09-25 18:11:01 -0700357 break;
Florian Fainelli58e30732008-02-25 17:51:53 +0100358 default:
359 printk(KERN_INFO "p54: unknown eeprom code : 0x%x\n",
360 le16_to_cpu(entry->code));
361 break;
Michael Wueff1a592007-09-25 18:11:01 -0700362 }
363
364 entry = (void *)entry + (entry_len + 1)*2;
Michael Wueff1a592007-09-25 18:11:01 -0700365 }
366
367 if (!priv->iq_autocal || !priv->output_limit || !priv->curve_data) {
368 printk(KERN_ERR "p54: not all required entries found in eeprom!\n");
369 err = -EINVAL;
370 goto err;
371 }
372
Christian Lamparter7cb77072008-09-01 22:48:51 +0200373 switch (priv->rxhw) {
374 case 4: /* XBow */
375 case 1: /* Indigo? */
376 case 2: /* Duette */
377 /* TODO: 5GHz initialization goes here */
378
379 case 3: /* Frisbee */
380 case 5: /* Longbow */
381 dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &band_2GHz;
382 break;
383 default:
384 printk(KERN_ERR "%s: unsupported RF-Chip\n",
385 wiphy_name(dev->wiphy));
386 err = -EINVAL;
387 goto err;
388 }
389
390 if (!is_valid_ether_addr(dev->wiphy->perm_addr)) {
391 u8 perm_addr[ETH_ALEN];
392
393 printk(KERN_WARNING "%s: Invalid hwaddr! Using randomly generated MAC addr\n",
394 wiphy_name(dev->wiphy));
395 random_ether_addr(perm_addr);
396 SET_IEEE80211_PERM_ADDR(dev, perm_addr);
397 }
398
399 printk(KERN_INFO "%s: hwaddr %s, MAC:isl38%02x RF:%s\n",
400 wiphy_name(dev->wiphy),
401 print_mac(mac, dev->wiphy->perm_addr),
402 priv->version, p54_rf_chips[priv->rxhw]);
403
Michael Wueff1a592007-09-25 18:11:01 -0700404 return 0;
405
406 err:
407 if (priv->iq_autocal) {
408 kfree(priv->iq_autocal);
409 priv->iq_autocal = NULL;
410 }
411
412 if (priv->output_limit) {
413 kfree(priv->output_limit);
414 priv->output_limit = NULL;
415 }
416
417 if (priv->curve_data) {
418 kfree(priv->curve_data);
419 priv->curve_data = NULL;
420 }
421
422 printk(KERN_ERR "p54: eeprom parse failed!\n");
423 return err;
424}
425EXPORT_SYMBOL_GPL(p54_parse_eeprom);
426
Michael Wueff1a592007-09-25 18:11:01 -0700427static void p54_rx_data(struct ieee80211_hw *dev, struct sk_buff *skb)
428{
429 struct p54_rx_hdr *hdr = (struct p54_rx_hdr *) skb->data;
430 struct ieee80211_rx_status rx_status = {0};
431 u16 freq = le16_to_cpu(hdr->freq);
432
Bruno Randolf566bfe52008-05-08 19:15:40 +0200433 rx_status.signal = hdr->rssi;
Johannes Berg8318d782008-01-24 19:38:38 +0100434 /* XX correct? */
Larry.Finger@lwfinger.net18d72602008-06-30 10:39:49 -0500435 rx_status.qual = (100 * hdr->rssi) / 127;
Johannes Berg8318d782008-01-24 19:38:38 +0100436 rx_status.rate_idx = hdr->rate & 0xf;
Michael Wueff1a592007-09-25 18:11:01 -0700437 rx_status.freq = freq;
Johannes Berg8318d782008-01-24 19:38:38 +0100438 rx_status.band = IEEE80211_BAND_2GHZ;
Michael Wueff1a592007-09-25 18:11:01 -0700439 rx_status.antenna = hdr->antenna;
440 rx_status.mactime = le64_to_cpu(hdr->timestamp);
Johannes Berg03bffc12007-12-04 20:33:40 +0100441 rx_status.flag |= RX_FLAG_TSFT;
Michael Wueff1a592007-09-25 18:11:01 -0700442
443 skb_pull(skb, sizeof(*hdr));
444 skb_trim(skb, le16_to_cpu(hdr->len));
445
446 ieee80211_rx_irqsafe(dev, skb, &rx_status);
447}
448
449static void inline p54_wake_free_queues(struct ieee80211_hw *dev)
450{
451 struct p54_common *priv = dev->priv;
452 int i;
453
Michael Wueff1a592007-09-25 18:11:01 -0700454 for (i = 0; i < dev->queues; i++)
Chr84df3ed2008-08-24 03:15:16 +0200455 if (priv->tx_stats[i + 4].len < priv->tx_stats[i + 4].limit)
Michael Wueff1a592007-09-25 18:11:01 -0700456 ieee80211_wake_queue(dev, i);
457}
458
459static void p54_rx_frame_sent(struct ieee80211_hw *dev, struct sk_buff *skb)
460{
461 struct p54_common *priv = dev->priv;
462 struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data;
463 struct p54_frame_sent_hdr *payload = (struct p54_frame_sent_hdr *) hdr->data;
464 struct sk_buff *entry = (struct sk_buff *) priv->tx_queue.next;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200465 u32 addr = le32_to_cpu(hdr->req_id) - priv->headroom;
Michael Wueff1a592007-09-25 18:11:01 -0700466 struct memrecord *range = NULL;
467 u32 freed = 0;
468 u32 last_addr = priv->rx_start;
Chr031d10e2008-08-24 03:15:06 +0200469 unsigned long flags;
Michael Wueff1a592007-09-25 18:11:01 -0700470
Chr031d10e2008-08-24 03:15:06 +0200471 spin_lock_irqsave(&priv->tx_queue.lock, flags);
Michael Wueff1a592007-09-25 18:11:01 -0700472 while (entry != (struct sk_buff *)&priv->tx_queue) {
Johannes Berg552fe532008-05-30 21:07:15 +0200473 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry);
474 range = (void *)info->driver_data;
Michael Wueff1a592007-09-25 18:11:01 -0700475 if (range->start_addr == addr) {
Michael Wueff1a592007-09-25 18:11:01 -0700476 struct p54_control_hdr *entry_hdr;
477 struct p54_tx_control_allocdata *entry_data;
478 int pad = 0;
479
Johannes Berg552fe532008-05-30 21:07:15 +0200480 if (entry->next != (struct sk_buff *)&priv->tx_queue) {
481 struct ieee80211_tx_info *ni;
482 struct memrecord *mr;
483
484 ni = IEEE80211_SKB_CB(entry->next);
485 mr = (struct memrecord *)ni->driver_data;
486 freed = mr->start_addr - last_addr;
487 } else
Michael Wueff1a592007-09-25 18:11:01 -0700488 freed = priv->rx_end - last_addr;
489
490 last_addr = range->end_addr;
491 __skb_unlink(entry, &priv->tx_queue);
Chr031d10e2008-08-24 03:15:06 +0200492 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
493
Johannes Berge039fa42008-05-15 12:55:29 +0200494 memset(&info->status, 0, sizeof(info->status));
Michael Wueff1a592007-09-25 18:11:01 -0700495 entry_hdr = (struct p54_control_hdr *) entry->data;
496 entry_data = (struct p54_tx_control_allocdata *) entry_hdr->data;
497 if ((entry_hdr->magic1 & cpu_to_le16(0x4000)) != 0)
498 pad = entry_data->align[0];
499
Chr84df3ed2008-08-24 03:15:16 +0200500 priv->tx_stats[entry_data->hw_queue].len--;
Johannes Berge039fa42008-05-15 12:55:29 +0200501 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Michael Wueff1a592007-09-25 18:11:01 -0700502 if (!(payload->status & 0x01))
Johannes Berge039fa42008-05-15 12:55:29 +0200503 info->flags |= IEEE80211_TX_STAT_ACK;
Michael Wueff1a592007-09-25 18:11:01 -0700504 else
Johannes Berge039fa42008-05-15 12:55:29 +0200505 info->status.excessive_retries = 1;
Michael Wueff1a592007-09-25 18:11:01 -0700506 }
Johannes Berge039fa42008-05-15 12:55:29 +0200507 info->status.retry_count = payload->retries - 1;
508 info->status.ack_signal = le16_to_cpu(payload->ack_rssi);
Michael Wueff1a592007-09-25 18:11:01 -0700509 skb_pull(entry, sizeof(*hdr) + pad + sizeof(*entry_data));
Johannes Berge039fa42008-05-15 12:55:29 +0200510 ieee80211_tx_status_irqsafe(dev, entry);
Chr031d10e2008-08-24 03:15:06 +0200511 goto out;
Michael Wueff1a592007-09-25 18:11:01 -0700512 } else
513 last_addr = range->end_addr;
514 entry = entry->next;
515 }
Chr031d10e2008-08-24 03:15:06 +0200516 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
Michael Wueff1a592007-09-25 18:11:01 -0700517
Chr031d10e2008-08-24 03:15:06 +0200518out:
Michael Wueff1a592007-09-25 18:11:01 -0700519 if (freed >= IEEE80211_MAX_RTS_THRESHOLD + 0x170 +
520 sizeof(struct p54_control_hdr))
521 p54_wake_free_queues(dev);
522}
523
Christian Lamparter7cb77072008-09-01 22:48:51 +0200524static void p54_rx_eeprom_readback(struct ieee80211_hw *dev,
525 struct sk_buff *skb)
526{
527 struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data;
528 struct p54_eeprom_lm86 *eeprom = (struct p54_eeprom_lm86 *) hdr->data;
529 struct p54_common *priv = dev->priv;
530
531 if (!priv->eeprom)
532 return ;
533
534 memcpy(priv->eeprom, eeprom->data, eeprom->len);
535
536 complete(&priv->eeprom_comp);
537}
538
Michael Wueff1a592007-09-25 18:11:01 -0700539static void p54_rx_control(struct ieee80211_hw *dev, struct sk_buff *skb)
540{
541 struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data;
542
543 switch (le16_to_cpu(hdr->type)) {
544 case P54_CONTROL_TYPE_TXDONE:
545 p54_rx_frame_sent(dev, skb);
546 break;
547 case P54_CONTROL_TYPE_BBP:
548 break;
Christian Lamparter7cb77072008-09-01 22:48:51 +0200549 case P54_CONTROL_TYPE_EEPROM_READBACK:
550 p54_rx_eeprom_readback(dev, skb);
551 break;
Michael Wueff1a592007-09-25 18:11:01 -0700552 default:
553 printk(KERN_DEBUG "%s: not handling 0x%02x type control frame\n",
554 wiphy_name(dev->wiphy), le16_to_cpu(hdr->type));
555 break;
556 }
557}
558
559/* returns zero if skb can be reused */
560int p54_rx(struct ieee80211_hw *dev, struct sk_buff *skb)
561{
562 u8 type = le16_to_cpu(*((__le16 *)skb->data)) >> 8;
563 switch (type) {
564 case 0x00:
565 case 0x01:
566 p54_rx_data(dev, skb);
567 return -1;
568 case 0x4d:
569 /* TODO: do something better... but then again, I've never seen this happen */
570 printk(KERN_ERR "%s: Received fault. Probably need to restart hardware now..\n",
571 wiphy_name(dev->wiphy));
572 break;
573 case 0x80:
574 p54_rx_control(dev, skb);
575 break;
576 default:
577 printk(KERN_ERR "%s: unknown frame RXed (0x%02x)\n",
578 wiphy_name(dev->wiphy), type);
579 break;
580 }
581 return 0;
582}
583EXPORT_SYMBOL_GPL(p54_rx);
584
585/*
586 * So, the firmware is somewhat stupid and doesn't know what places in its
587 * memory incoming data should go to. By poking around in the firmware, we
588 * can find some unused memory to upload our packets to. However, data that we
589 * want the card to TX needs to stay intact until the card has told us that
590 * it is done with it. This function finds empty places we can upload to and
591 * marks allocated areas as reserved if necessary. p54_rx_frame_sent frees
592 * allocated areas.
593 */
594static void p54_assign_address(struct ieee80211_hw *dev, struct sk_buff *skb,
Johannes Berge039fa42008-05-15 12:55:29 +0200595 struct p54_control_hdr *data, u32 len)
Michael Wueff1a592007-09-25 18:11:01 -0700596{
597 struct p54_common *priv = dev->priv;
598 struct sk_buff *entry = priv->tx_queue.next;
599 struct sk_buff *target_skb = NULL;
Michael Wueff1a592007-09-25 18:11:01 -0700600 u32 last_addr = priv->rx_start;
601 u32 largest_hole = 0;
602 u32 target_addr = priv->rx_start;
603 unsigned long flags;
604 unsigned int left;
Christian Lamparter4e416a62008-09-01 22:48:41 +0200605 len = (len + priv->headroom + priv->tailroom + 3) & ~0x3;
Michael Wueff1a592007-09-25 18:11:01 -0700606
607 spin_lock_irqsave(&priv->tx_queue.lock, flags);
608 left = skb_queue_len(&priv->tx_queue);
609 while (left--) {
610 u32 hole_size;
Johannes Berge039fa42008-05-15 12:55:29 +0200611 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry);
612 struct memrecord *range = (void *)info->driver_data;
Michael Wueff1a592007-09-25 18:11:01 -0700613 hole_size = range->start_addr - last_addr;
614 if (!target_skb && hole_size >= len) {
615 target_skb = entry->prev;
616 hole_size -= len;
617 target_addr = last_addr;
618 }
619 largest_hole = max(largest_hole, hole_size);
620 last_addr = range->end_addr;
621 entry = entry->next;
622 }
623 if (!target_skb && priv->rx_end - last_addr >= len) {
624 target_skb = priv->tx_queue.prev;
625 largest_hole = max(largest_hole, priv->rx_end - last_addr - len);
626 if (!skb_queue_empty(&priv->tx_queue)) {
Johannes Berge039fa42008-05-15 12:55:29 +0200627 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(target_skb);
628 struct memrecord *range = (void *)info->driver_data;
Michael Wueff1a592007-09-25 18:11:01 -0700629 target_addr = range->end_addr;
630 }
631 } else
632 largest_hole = max(largest_hole, priv->rx_end - last_addr);
633
634 if (skb) {
Johannes Berge039fa42008-05-15 12:55:29 +0200635 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
636 struct memrecord *range = (void *)info->driver_data;
Michael Wueff1a592007-09-25 18:11:01 -0700637 range->start_addr = target_addr;
638 range->end_addr = target_addr + len;
Michael Wueff1a592007-09-25 18:11:01 -0700639 __skb_queue_after(&priv->tx_queue, target_skb, skb);
Christian Lamparter4e416a62008-09-01 22:48:41 +0200640 if (largest_hole < priv->rx_mtu + priv->headroom +
641 priv->tailroom +
Michael Wueff1a592007-09-25 18:11:01 -0700642 sizeof(struct p54_control_hdr))
643 ieee80211_stop_queues(dev);
644 }
645 spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
646
Christian Lamparter4e416a62008-09-01 22:48:41 +0200647 data->req_id = cpu_to_le32(target_addr + priv->headroom);
Michael Wueff1a592007-09-25 18:11:01 -0700648}
649
Christian Lamparter7cb77072008-09-01 22:48:51 +0200650int p54_read_eeprom(struct ieee80211_hw *dev)
651{
652 struct p54_common *priv = dev->priv;
653 struct p54_control_hdr *hdr = NULL;
654 struct p54_eeprom_lm86 *eeprom_hdr;
655 size_t eeprom_size = 0x2020, offset = 0, blocksize;
656 int ret = -ENOMEM;
657 void *eeprom = NULL;
658
659 hdr = (struct p54_control_hdr *)kzalloc(sizeof(*hdr) +
660 sizeof(*eeprom_hdr) + EEPROM_READBACK_LEN, GFP_KERNEL);
661 if (!hdr)
662 goto free;
663
664 priv->eeprom = kzalloc(EEPROM_READBACK_LEN, GFP_KERNEL);
665 if (!priv->eeprom)
666 goto free;
667
668 eeprom = kzalloc(eeprom_size, GFP_KERNEL);
669 if (!eeprom)
670 goto free;
671
672 hdr->magic1 = cpu_to_le16(0x8000);
673 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_EEPROM_READBACK);
674 hdr->retry1 = hdr->retry2 = 0;
675 eeprom_hdr = (struct p54_eeprom_lm86 *) hdr->data;
676
677 while (eeprom_size) {
678 blocksize = min(eeprom_size, (size_t)EEPROM_READBACK_LEN);
679 hdr->len = cpu_to_le16(blocksize + sizeof(*eeprom_hdr));
680 eeprom_hdr->offset = cpu_to_le16(offset);
681 eeprom_hdr->len = cpu_to_le16(blocksize);
682 p54_assign_address(dev, NULL, hdr, hdr->len + sizeof(*hdr));
683 priv->tx(dev, hdr, hdr->len + sizeof(*hdr), 0);
684
685 if (!wait_for_completion_interruptible_timeout(&priv->eeprom_comp, HZ)) {
686 printk(KERN_ERR "%s: device does not respond!\n",
687 wiphy_name(dev->wiphy));
688 ret = -EBUSY;
689 goto free;
690 }
691
692 memcpy(eeprom + offset, priv->eeprom, blocksize);
693 offset += blocksize;
694 eeprom_size -= blocksize;
695 }
696
697 ret = p54_parse_eeprom(dev, eeprom, offset);
698free:
699 kfree(priv->eeprom);
700 priv->eeprom = NULL;
701 kfree(hdr);
702 kfree(eeprom);
703
704 return ret;
705}
706EXPORT_SYMBOL_GPL(p54_read_eeprom);
707
Johannes Berge039fa42008-05-15 12:55:29 +0200708static int p54_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
Michael Wueff1a592007-09-25 18:11:01 -0700709{
Johannes Berge039fa42008-05-15 12:55:29 +0200710 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg57ffc582008-04-29 17:18:59 +0200711 struct ieee80211_tx_queue_stats *current_queue;
Michael Wueff1a592007-09-25 18:11:01 -0700712 struct p54_common *priv = dev->priv;
713 struct p54_control_hdr *hdr;
Larry Fingereda0c002008-08-05 11:23:16 -0500714 struct ieee80211_hdr *ieee80211hdr = (struct ieee80211_hdr *)skb->data;
Michael Wueff1a592007-09-25 18:11:01 -0700715 struct p54_tx_control_allocdata *txhdr;
Michael Wueff1a592007-09-25 18:11:01 -0700716 size_t padding, len;
717 u8 rate;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500718 u8 cts_rate = 0x20;
Michael Wueff1a592007-09-25 18:11:01 -0700719
Chr84df3ed2008-08-24 03:15:16 +0200720 current_queue = &priv->tx_stats[skb_get_queue_mapping(skb) + 4];
Michael Wueff1a592007-09-25 18:11:01 -0700721 if (unlikely(current_queue->len > current_queue->limit))
722 return NETDEV_TX_BUSY;
723 current_queue->len++;
724 current_queue->count++;
725 if (current_queue->len == current_queue->limit)
Johannes Berge2530082008-05-17 00:57:14 +0200726 ieee80211_stop_queue(dev, skb_get_queue_mapping(skb));
Michael Wueff1a592007-09-25 18:11:01 -0700727
728 padding = (unsigned long)(skb->data - (sizeof(*hdr) + sizeof(*txhdr))) & 3;
729 len = skb->len;
730
Michael Wueff1a592007-09-25 18:11:01 -0700731 txhdr = (struct p54_tx_control_allocdata *)
732 skb_push(skb, sizeof(*txhdr) + padding);
733 hdr = (struct p54_control_hdr *) skb_push(skb, sizeof(*hdr));
734
735 if (padding)
736 hdr->magic1 = cpu_to_le16(0x4010);
737 else
738 hdr->magic1 = cpu_to_le16(0x0010);
739 hdr->len = cpu_to_le16(len);
Johannes Berge039fa42008-05-15 12:55:29 +0200740 hdr->type = (info->flags & IEEE80211_TX_CTL_NO_ACK) ? 0 : cpu_to_le16(1);
741 hdr->retry1 = hdr->retry2 = info->control.retry_limit;
Michael Wueff1a592007-09-25 18:11:01 -0700742
Michael Wueff1a592007-09-25 18:11:01 -0700743 /* TODO: add support for alternate retry TX rates */
Johannes Berge039fa42008-05-15 12:55:29 +0200744 rate = ieee80211_get_tx_rate(dev, info)->hw_value;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500745 if (info->flags & IEEE80211_TX_CTL_SHORT_PREAMBLE) {
Johannes Berg8318d782008-01-24 19:38:38 +0100746 rate |= 0x10;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500747 cts_rate |= 0x10;
748 }
749 if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) {
Michael Wueff1a592007-09-25 18:11:01 -0700750 rate |= 0x40;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500751 cts_rate |= ieee80211_get_rts_cts_rate(dev, info)->hw_value;
752 } else if (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT) {
Michael Wueff1a592007-09-25 18:11:01 -0700753 rate |= 0x20;
Christian Lamparteraaa15532008-08-09 19:20:47 -0500754 cts_rate |= ieee80211_get_rts_cts_rate(dev, info)->hw_value;
755 }
Michael Wueff1a592007-09-25 18:11:01 -0700756 memset(txhdr->rateset, rate, 8);
Christian Lamparteraaa15532008-08-09 19:20:47 -0500757 txhdr->key_type = 0;
758 txhdr->key_len = 0;
759 txhdr->hw_queue = skb_get_queue_mapping(skb) + 4;
760 txhdr->tx_antenna = (info->antenna_sel_tx == 0) ?
Johannes Berge039fa42008-05-15 12:55:29 +0200761 2 : info->antenna_sel_tx - 1;
Michael Wueff1a592007-09-25 18:11:01 -0700762 txhdr->output_power = 0x7f; // HW Maximum
Christian Lamparteraaa15532008-08-09 19:20:47 -0500763 txhdr->cts_rate = (info->flags & IEEE80211_TX_CTL_NO_ACK) ?
764 0 : cts_rate;
Michael Wueff1a592007-09-25 18:11:01 -0700765 if (padding)
766 txhdr->align[0] = padding;
767
Larry Fingereda0c002008-08-05 11:23:16 -0500768 /* FIXME: The sequence that follows is needed for this driver to
769 * work with mac80211 since "mac80211: fix TX sequence numbers".
770 * As with the temporary code in rt2x00, changes will be needed
771 * to get proper sequence numbers on beacons. In addition, this
772 * patch places the sequence number in the hardware state, which
773 * limits us to a single virtual state.
774 */
775 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
776 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
777 priv->seqno += 0x10;
778 ieee80211hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
779 ieee80211hdr->seq_ctrl |= cpu_to_le16(priv->seqno);
780 }
Johannes Berge039fa42008-05-15 12:55:29 +0200781 /* modifies skb->cb and with it info, so must be last! */
782 p54_assign_address(dev, skb, hdr, skb->len);
783
Michael Wueff1a592007-09-25 18:11:01 -0700784 priv->tx(dev, hdr, skb->len, 0);
785 return 0;
786}
787
788static int p54_set_filter(struct ieee80211_hw *dev, u16 filter_type,
Christian Lampartere0a58ea2008-09-03 22:25:20 +0200789 const u8 *bssid)
Michael Wueff1a592007-09-25 18:11:01 -0700790{
791 struct p54_common *priv = dev->priv;
792 struct p54_control_hdr *hdr;
793 struct p54_tx_control_filter *filter;
794
795 hdr = kzalloc(sizeof(*hdr) + sizeof(*filter) +
Michael Wuba8007c2007-10-13 20:35:05 -0400796 priv->tx_hdr_len, GFP_ATOMIC);
Michael Wueff1a592007-09-25 18:11:01 -0700797 if (!hdr)
798 return -ENOMEM;
799
800 hdr = (void *)hdr + priv->tx_hdr_len;
801
802 filter = (struct p54_tx_control_filter *) hdr->data;
803 hdr->magic1 = cpu_to_le16(0x8001);
804 hdr->len = cpu_to_le16(sizeof(*filter));
Johannes Berge039fa42008-05-15 12:55:29 +0200805 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*filter));
Michael Wueff1a592007-09-25 18:11:01 -0700806 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_FILTER_SET);
807
Christian Lampartere0a58ea2008-09-03 22:25:20 +0200808 priv->filter_type = filter->filter_type = cpu_to_le16(filter_type);
809 memcpy(filter->mac_addr, priv->mac_addr, ETH_ALEN);
810 if (!bssid)
811 memset(filter->bssid, ~0, ETH_ALEN);
Michael Wueff1a592007-09-25 18:11:01 -0700812 else
Christian Lampartere0a58ea2008-09-03 22:25:20 +0200813 memcpy(filter->bssid, bssid, ETH_ALEN);
814
815 filter->rx_antenna = priv->rx_antenna;
816 filter->basic_rate_mask = cpu_to_le32(0x15F);
Michael Wueff1a592007-09-25 18:11:01 -0700817 filter->rx_addr = cpu_to_le32(priv->rx_end);
Christian Lamparter4e416a62008-09-01 22:48:41 +0200818 filter->max_rx = cpu_to_le16(priv->rx_mtu);
Christian Lamparter7cb77072008-09-01 22:48:51 +0200819 filter->rxhw = cpu_to_le16(priv->rxhw);
Christian Lampartere0a58ea2008-09-03 22:25:20 +0200820 filter->wakeup_timer = cpu_to_le16(500);
Michael Wueff1a592007-09-25 18:11:01 -0700821
822 priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*filter), 1);
823 return 0;
824}
825
826static int p54_set_freq(struct ieee80211_hw *dev, __le16 freq)
827{
828 struct p54_common *priv = dev->priv;
829 struct p54_control_hdr *hdr;
830 struct p54_tx_control_channel *chan;
831 unsigned int i;
Michael Wueff1a592007-09-25 18:11:01 -0700832 void *entry;
833
Christian Lamparter154e3af2008-08-23 22:15:25 +0200834 hdr = kzalloc(sizeof(*hdr) + sizeof(*chan) +
Michael Wueff1a592007-09-25 18:11:01 -0700835 priv->tx_hdr_len, GFP_KERNEL);
836 if (!hdr)
837 return -ENOMEM;
838
839 hdr = (void *)hdr + priv->tx_hdr_len;
840
841 chan = (struct p54_tx_control_channel *) hdr->data;
842
843 hdr->magic1 = cpu_to_le16(0x8001);
844 hdr->len = cpu_to_le16(sizeof(*chan));
845 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_CHANNEL_CHANGE);
Christian Lamparter154e3af2008-08-23 22:15:25 +0200846 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*chan));
Michael Wueff1a592007-09-25 18:11:01 -0700847
Christian Lamparter154e3af2008-08-23 22:15:25 +0200848 chan->flags = cpu_to_le16(0x1);
849 chan->dwell = cpu_to_le16(0x0);
Michael Wueff1a592007-09-25 18:11:01 -0700850
851 for (i = 0; i < priv->iq_autocal_len; i++) {
852 if (priv->iq_autocal[i].freq != freq)
853 continue;
854
855 memcpy(&chan->iq_autocal, &priv->iq_autocal[i],
856 sizeof(*priv->iq_autocal));
857 break;
858 }
859 if (i == priv->iq_autocal_len)
860 goto err;
861
862 for (i = 0; i < priv->output_limit_len; i++) {
863 if (priv->output_limit[i].freq != freq)
864 continue;
865
866 chan->val_barker = 0x38;
Christian Lamparter154e3af2008-08-23 22:15:25 +0200867 chan->val_bpsk = chan->dup_bpsk =
868 priv->output_limit[i].val_bpsk;
869 chan->val_qpsk = chan->dup_qpsk =
870 priv->output_limit[i].val_qpsk;
871 chan->val_16qam = chan->dup_16qam =
872 priv->output_limit[i].val_16qam;
873 chan->val_64qam = chan->dup_64qam =
874 priv->output_limit[i].val_64qam;
Michael Wueff1a592007-09-25 18:11:01 -0700875 break;
876 }
877 if (i == priv->output_limit_len)
878 goto err;
879
Michael Wueff1a592007-09-25 18:11:01 -0700880 entry = priv->curve_data->data;
881 for (i = 0; i < priv->curve_data->channels; i++) {
882 if (*((__le16 *)entry) != freq) {
883 entry += sizeof(__le16);
Christian Lamparter154e3af2008-08-23 22:15:25 +0200884 entry += sizeof(struct p54_pa_curve_data_sample) *
885 priv->curve_data->points_per_channel;
Michael Wueff1a592007-09-25 18:11:01 -0700886 continue;
887 }
888
889 entry += sizeof(__le16);
Christian Lamparter154e3af2008-08-23 22:15:25 +0200890 chan->pa_points_per_curve =
891 min(priv->curve_data->points_per_channel, (u8) 8);
892
Michael Wueff1a592007-09-25 18:11:01 -0700893 memcpy(chan->curve_data, entry, sizeof(*chan->curve_data) *
894 chan->pa_points_per_curve);
895 break;
896 }
897
Christian Lamparter154e3af2008-08-23 22:15:25 +0200898 chan->rssical_mul = cpu_to_le16(130);
899 chan->rssical_add = cpu_to_le16(0xfe70); /* -400 */
Michael Wueff1a592007-09-25 18:11:01 -0700900
Christian Lamparter154e3af2008-08-23 22:15:25 +0200901 priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*chan), 1);
Michael Wueff1a592007-09-25 18:11:01 -0700902 return 0;
903
904 err:
905 printk(KERN_ERR "%s: frequency change failed\n", wiphy_name(dev->wiphy));
906 kfree(hdr);
907 return -EINVAL;
908}
909
910static int p54_set_leds(struct ieee80211_hw *dev, int mode, int link, int act)
911{
912 struct p54_common *priv = dev->priv;
913 struct p54_control_hdr *hdr;
914 struct p54_tx_control_led *led;
915
916 hdr = kzalloc(sizeof(*hdr) + sizeof(*led) +
917 priv->tx_hdr_len, GFP_KERNEL);
918 if (!hdr)
919 return -ENOMEM;
920
921 hdr = (void *)hdr + priv->tx_hdr_len;
922 hdr->magic1 = cpu_to_le16(0x8001);
923 hdr->len = cpu_to_le16(sizeof(*led));
924 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_LED);
Johannes Berge039fa42008-05-15 12:55:29 +0200925 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*led));
Michael Wueff1a592007-09-25 18:11:01 -0700926
927 led = (struct p54_tx_control_led *) hdr->data;
928 led->mode = cpu_to_le16(mode);
929 led->led_permanent = cpu_to_le16(link);
930 led->led_temporary = cpu_to_le16(act);
931 led->duration = cpu_to_le16(1000);
932
933 priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*led), 1);
934
935 return 0;
936}
937
Johannes Berg3330d7b2008-02-10 16:49:38 +0100938#define P54_SET_QUEUE(queue, ai_fs, cw_min, cw_max, _txop) \
Michael Wueff1a592007-09-25 18:11:01 -0700939do { \
940 queue.aifs = cpu_to_le16(ai_fs); \
941 queue.cwmin = cpu_to_le16(cw_min); \
942 queue.cwmax = cpu_to_le16(cw_max); \
Johannes Berg3330d7b2008-02-10 16:49:38 +0100943 queue.txop = cpu_to_le16(_txop); \
Michael Wueff1a592007-09-25 18:11:01 -0700944} while(0)
945
946static void p54_init_vdcf(struct ieee80211_hw *dev)
947{
948 struct p54_common *priv = dev->priv;
949 struct p54_control_hdr *hdr;
950 struct p54_tx_control_vdcf *vdcf;
951
952 /* all USB V1 adapters need a extra headroom */
953 hdr = (void *)priv->cached_vdcf + priv->tx_hdr_len;
954 hdr->magic1 = cpu_to_le16(0x8001);
955 hdr->len = cpu_to_le16(sizeof(*vdcf));
956 hdr->type = cpu_to_le16(P54_CONTROL_TYPE_DCFINIT);
957 hdr->req_id = cpu_to_le32(priv->rx_start);
958
959 vdcf = (struct p54_tx_control_vdcf *) hdr->data;
960
Johannes Berg3330d7b2008-02-10 16:49:38 +0100961 P54_SET_QUEUE(vdcf->queue[0], 0x0002, 0x0003, 0x0007, 47);
962 P54_SET_QUEUE(vdcf->queue[1], 0x0002, 0x0007, 0x000f, 94);
Christian Lamparter5200e8c2008-02-12 14:02:06 +0100963 P54_SET_QUEUE(vdcf->queue[2], 0x0003, 0x000f, 0x03ff, 0);
Johannes Berg3330d7b2008-02-10 16:49:38 +0100964 P54_SET_QUEUE(vdcf->queue[3], 0x0007, 0x000f, 0x03ff, 0);
Michael Wueff1a592007-09-25 18:11:01 -0700965}
966
967static void p54_set_vdcf(struct ieee80211_hw *dev)
968{
969 struct p54_common *priv = dev->priv;
970 struct p54_control_hdr *hdr;
971 struct p54_tx_control_vdcf *vdcf;
972
973 hdr = (void *)priv->cached_vdcf + priv->tx_hdr_len;
974
Johannes Berge039fa42008-05-15 12:55:29 +0200975 p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*vdcf));
Michael Wueff1a592007-09-25 18:11:01 -0700976
977 vdcf = (struct p54_tx_control_vdcf *) hdr->data;
978
979 if (dev->conf.flags & IEEE80211_CONF_SHORT_SLOT_TIME) {
980 vdcf->slottime = 9;
Christian Lamparter5423b2e2008-08-07 10:22:28 +0200981 vdcf->magic1 = 0x10;
982 vdcf->magic2 = 0x00;
Michael Wueff1a592007-09-25 18:11:01 -0700983 } else {
984 vdcf->slottime = 20;
985 vdcf->magic1 = 0x0a;
986 vdcf->magic2 = 0x06;
987 }
988
989 /* (see prism54/isl_oid.h for further details) */
990 vdcf->frameburst = cpu_to_le16(0);
991
992 priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*vdcf), 0);
993}
994
Johannes Berg4150c572007-09-17 01:29:23 -0400995static int p54_start(struct ieee80211_hw *dev)
Michael Wueff1a592007-09-25 18:11:01 -0700996{
997 struct p54_common *priv = dev->priv;
998 int err;
999
Christian Lamparter69bbc7d2008-08-13 23:41:45 +02001000 if (!priv->cached_vdcf) {
1001 priv->cached_vdcf = kzalloc(sizeof(struct p54_tx_control_vdcf)+
1002 priv->tx_hdr_len + sizeof(struct p54_control_hdr),
1003 GFP_KERNEL);
1004
1005 if (!priv->cached_vdcf)
1006 return -ENOMEM;
1007 }
1008
Johannes Berg4150c572007-09-17 01:29:23 -04001009 err = priv->open(dev);
1010 if (!err)
1011 priv->mode = IEEE80211_IF_TYPE_MNTR;
1012
Christian Lamparter69bbc7d2008-08-13 23:41:45 +02001013 p54_init_vdcf(dev);
1014
Johannes Berg4150c572007-09-17 01:29:23 -04001015 return err;
1016}
1017
1018static void p54_stop(struct ieee80211_hw *dev)
1019{
1020 struct p54_common *priv = dev->priv;
1021 struct sk_buff *skb;
Johannes Berge039fa42008-05-15 12:55:29 +02001022 while ((skb = skb_dequeue(&priv->tx_queue)))
Johannes Berg4150c572007-09-17 01:29:23 -04001023 kfree_skb(skb);
Johannes Berg4150c572007-09-17 01:29:23 -04001024 priv->stop(dev);
Johannes Berga2897552007-09-28 14:01:25 +02001025 priv->mode = IEEE80211_IF_TYPE_INVALID;
Johannes Berg4150c572007-09-17 01:29:23 -04001026}
1027
1028static int p54_add_interface(struct ieee80211_hw *dev,
1029 struct ieee80211_if_init_conf *conf)
1030{
1031 struct p54_common *priv = dev->priv;
1032
1033 if (priv->mode != IEEE80211_IF_TYPE_MNTR)
1034 return -EOPNOTSUPP;
Michael Wueff1a592007-09-25 18:11:01 -07001035
1036 switch (conf->type) {
1037 case IEEE80211_IF_TYPE_STA:
1038 priv->mode = conf->type;
1039 break;
1040 default:
1041 return -EOPNOTSUPP;
1042 }
1043
Johannes Berg4150c572007-09-17 01:29:23 -04001044 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
Michael Wueff1a592007-09-25 18:11:01 -07001045
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001046 p54_set_filter(dev, 0, NULL);
Michael Wueff1a592007-09-25 18:11:01 -07001047
1048 switch (conf->type) {
1049 case IEEE80211_IF_TYPE_STA:
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001050 p54_set_filter(dev, 1, NULL);
Michael Wueff1a592007-09-25 18:11:01 -07001051 break;
Johannes Berg4150c572007-09-17 01:29:23 -04001052 default:
1053 BUG(); /* impossible */
1054 break;
Michael Wueff1a592007-09-25 18:11:01 -07001055 }
1056
1057 p54_set_leds(dev, 1, 0, 0);
1058
1059 return 0;
1060}
1061
1062static void p54_remove_interface(struct ieee80211_hw *dev,
1063 struct ieee80211_if_init_conf *conf)
1064{
1065 struct p54_common *priv = dev->priv;
Johannes Berg4150c572007-09-17 01:29:23 -04001066 priv->mode = IEEE80211_IF_TYPE_MNTR;
1067 memset(priv->mac_addr, 0, ETH_ALEN);
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001068 p54_set_filter(dev, 0, NULL);
Michael Wueff1a592007-09-25 18:11:01 -07001069}
1070
1071static int p54_config(struct ieee80211_hw *dev, struct ieee80211_conf *conf)
1072{
1073 int ret;
Larry Finger6041e2a2008-08-03 17:58:36 -05001074 struct p54_common *priv = dev->priv;
Michael Wueff1a592007-09-25 18:11:01 -07001075
Larry Finger6041e2a2008-08-03 17:58:36 -05001076 mutex_lock(&priv->conf_mutex);
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001077 priv->rx_antenna = (conf->antenna_sel_rx == 0) ?
1078 2 : conf->antenna_sel_tx - 1;
Johannes Berg8318d782008-01-24 19:38:38 +01001079 ret = p54_set_freq(dev, cpu_to_le16(conf->channel->center_freq));
Michael Wueff1a592007-09-25 18:11:01 -07001080 p54_set_vdcf(dev);
Larry Finger6041e2a2008-08-03 17:58:36 -05001081 mutex_unlock(&priv->conf_mutex);
Michael Wueff1a592007-09-25 18:11:01 -07001082 return ret;
1083}
1084
Johannes Berg32bfd352007-12-19 01:31:26 +01001085static int p54_config_interface(struct ieee80211_hw *dev,
1086 struct ieee80211_vif *vif,
Michael Wueff1a592007-09-25 18:11:01 -07001087 struct ieee80211_if_conf *conf)
1088{
1089 struct p54_common *priv = dev->priv;
1090
Larry Finger6041e2a2008-08-03 17:58:36 -05001091 mutex_lock(&priv->conf_mutex);
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001092 p54_set_filter(dev, 0, conf->bssid);
Michael Wueff1a592007-09-25 18:11:01 -07001093 p54_set_leds(dev, 1, !is_multicast_ether_addr(conf->bssid), 0);
Johannes Berg4150c572007-09-17 01:29:23 -04001094 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
Larry Finger6041e2a2008-08-03 17:58:36 -05001095 mutex_unlock(&priv->conf_mutex);
Michael Wueff1a592007-09-25 18:11:01 -07001096 return 0;
1097}
1098
Johannes Berg4150c572007-09-17 01:29:23 -04001099static void p54_configure_filter(struct ieee80211_hw *dev,
1100 unsigned int changed_flags,
1101 unsigned int *total_flags,
1102 int mc_count, struct dev_mc_list *mclist)
1103{
1104 struct p54_common *priv = dev->priv;
1105
1106 *total_flags &= FIF_BCN_PRBRESP_PROMISC;
1107
1108 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
1109 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001110 p54_set_filter(dev, 0, NULL);
Johannes Berg4150c572007-09-17 01:29:23 -04001111 else
Christian Lampartere0a58ea2008-09-03 22:25:20 +02001112 p54_set_filter(dev, 0, priv->bssid);
Johannes Berg4150c572007-09-17 01:29:23 -04001113 }
1114}
1115
Johannes Berge100bb62008-04-30 18:51:21 +02001116static int p54_conf_tx(struct ieee80211_hw *dev, u16 queue,
Michael Wueff1a592007-09-25 18:11:01 -07001117 const struct ieee80211_tx_queue_params *params)
1118{
1119 struct p54_common *priv = dev->priv;
1120 struct p54_tx_control_vdcf *vdcf;
1121
1122 vdcf = (struct p54_tx_control_vdcf *)(((struct p54_control_hdr *)
1123 ((void *)priv->cached_vdcf + priv->tx_hdr_len))->data);
1124
John W. Linville3df5ee62008-05-01 17:07:32 -04001125 if ((params) && !(queue > 4)) {
Michael Wueff1a592007-09-25 18:11:01 -07001126 P54_SET_QUEUE(vdcf->queue[queue], params->aifs,
Johannes Berg3330d7b2008-02-10 16:49:38 +01001127 params->cw_min, params->cw_max, params->txop);
Michael Wueff1a592007-09-25 18:11:01 -07001128 } else
1129 return -EINVAL;
1130
1131 p54_set_vdcf(dev);
1132
1133 return 0;
1134}
1135
1136static int p54_get_stats(struct ieee80211_hw *dev,
1137 struct ieee80211_low_level_stats *stats)
1138{
1139 /* TODO */
1140 return 0;
1141}
1142
1143static int p54_get_tx_stats(struct ieee80211_hw *dev,
1144 struct ieee80211_tx_queue_stats *stats)
1145{
1146 struct p54_common *priv = dev->priv;
Michael Wueff1a592007-09-25 18:11:01 -07001147
Chr84df3ed2008-08-24 03:15:16 +02001148 memcpy(stats, &priv->tx_stats[4], sizeof(stats[0]) * dev->queues);
Michael Wueff1a592007-09-25 18:11:01 -07001149
1150 return 0;
1151}
1152
1153static const struct ieee80211_ops p54_ops = {
1154 .tx = p54_tx,
Johannes Berg4150c572007-09-17 01:29:23 -04001155 .start = p54_start,
1156 .stop = p54_stop,
Michael Wueff1a592007-09-25 18:11:01 -07001157 .add_interface = p54_add_interface,
1158 .remove_interface = p54_remove_interface,
1159 .config = p54_config,
1160 .config_interface = p54_config_interface,
Johannes Berg4150c572007-09-17 01:29:23 -04001161 .configure_filter = p54_configure_filter,
Michael Wueff1a592007-09-25 18:11:01 -07001162 .conf_tx = p54_conf_tx,
1163 .get_stats = p54_get_stats,
1164 .get_tx_stats = p54_get_tx_stats
1165};
1166
1167struct ieee80211_hw *p54_init_common(size_t priv_data_len)
1168{
1169 struct ieee80211_hw *dev;
1170 struct p54_common *priv;
Michael Wueff1a592007-09-25 18:11:01 -07001171
1172 dev = ieee80211_alloc_hw(priv_data_len, &p54_ops);
1173 if (!dev)
1174 return NULL;
1175
1176 priv = dev->priv;
Johannes Berga2897552007-09-28 14:01:25 +02001177 priv->mode = IEEE80211_IF_TYPE_INVALID;
Michael Wueff1a592007-09-25 18:11:01 -07001178 skb_queue_head_init(&priv->tx_queue);
Michael Wueff1a592007-09-25 18:11:01 -07001179 dev->flags = IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | /* not sure */
Bruno Randolf566bfe52008-05-08 19:15:40 +02001180 IEEE80211_HW_RX_INCLUDES_FCS |
1181 IEEE80211_HW_SIGNAL_UNSPEC;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001182
1183 dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
1184
Michael Wueff1a592007-09-25 18:11:01 -07001185 dev->channel_change_time = 1000; /* TODO: find actual value */
Bruno Randolf566bfe52008-05-08 19:15:40 +02001186 dev->max_signal = 127;
Michael Wueff1a592007-09-25 18:11:01 -07001187
Chr84df3ed2008-08-24 03:15:16 +02001188 priv->tx_stats[0].limit = 1;
1189 priv->tx_stats[1].limit = 1;
1190 priv->tx_stats[2].limit = 1;
1191 priv->tx_stats[3].limit = 1;
1192 priv->tx_stats[4].limit = 5;
Michael Wueff1a592007-09-25 18:11:01 -07001193 dev->queues = 1;
Michael Wueff1a592007-09-25 18:11:01 -07001194 dev->extra_tx_headroom = sizeof(struct p54_control_hdr) + 4 +
1195 sizeof(struct p54_tx_control_allocdata);
1196
Larry Finger6041e2a2008-08-03 17:58:36 -05001197 mutex_init(&priv->conf_mutex);
Christian Lamparter7cb77072008-09-01 22:48:51 +02001198 init_completion(&priv->eeprom_comp);
Michael Wueff1a592007-09-25 18:11:01 -07001199
Michael Wueff1a592007-09-25 18:11:01 -07001200 return dev;
1201}
1202EXPORT_SYMBOL_GPL(p54_init_common);
1203
1204void p54_free_common(struct ieee80211_hw *dev)
1205{
1206 struct p54_common *priv = dev->priv;
1207 kfree(priv->iq_autocal);
1208 kfree(priv->output_limit);
1209 kfree(priv->curve_data);
1210 kfree(priv->cached_vdcf);
1211}
1212EXPORT_SYMBOL_GPL(p54_free_common);
1213
1214static int __init p54_init(void)
1215{
1216 return 0;
1217}
1218
1219static void __exit p54_exit(void)
1220{
1221}
1222
1223module_init(p54_init);
1224module_exit(p54_exit);