p54common.c 56.6 KB
Newer Older
1 2 3 4 5
/*
 * Common code for mac80211 Prism54 drivers
 *
 * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
 * Copyright (c) 2007, Christian Lamparter <chunkeey@web.de>
J
Johannes Berg 已提交
6
 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
7
 *
8 9 10 11
 * Based on:
 * - the islsm (softmac prism54) driver, which is:
 *   Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
 * - stlc45xx driver
C
Chr 已提交
12
 *   Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/firmware.h>
#include <linux/etherdevice.h>

#include <net/mac80211.h>

#include "p54.h"
#include "p54common.h"

28 29 30
static int modparam_nohwcrypt;
module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
31 32 33 34 35
MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>");
MODULE_DESCRIPTION("Softmac Prism54 common code");
MODULE_LICENSE("GPL");
MODULE_ALIAS("prism54common");

36
static struct ieee80211_rate p54_bgrates[] = {
37 38 39 40 41 42 43 44 45 46 47 48 49 50
	{ .bitrate = 10, .hw_value = 0, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
	{ .bitrate = 20, .hw_value = 1, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
	{ .bitrate = 55, .hw_value = 2, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
	{ .bitrate = 110, .hw_value = 3, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
	{ .bitrate = 60, .hw_value = 4, },
	{ .bitrate = 90, .hw_value = 5, },
	{ .bitrate = 120, .hw_value = 6, },
	{ .bitrate = 180, .hw_value = 7, },
	{ .bitrate = 240, .hw_value = 8, },
	{ .bitrate = 360, .hw_value = 9, },
	{ .bitrate = 480, .hw_value = 10, },
	{ .bitrate = 540, .hw_value = 11, },
};

51
static struct ieee80211_channel p54_bgchannels[] = {
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
	{ .center_freq = 2412, .hw_value = 1, },
	{ .center_freq = 2417, .hw_value = 2, },
	{ .center_freq = 2422, .hw_value = 3, },
	{ .center_freq = 2427, .hw_value = 4, },
	{ .center_freq = 2432, .hw_value = 5, },
	{ .center_freq = 2437, .hw_value = 6, },
	{ .center_freq = 2442, .hw_value = 7, },
	{ .center_freq = 2447, .hw_value = 8, },
	{ .center_freq = 2452, .hw_value = 9, },
	{ .center_freq = 2457, .hw_value = 10, },
	{ .center_freq = 2462, .hw_value = 11, },
	{ .center_freq = 2467, .hw_value = 12, },
	{ .center_freq = 2472, .hw_value = 13, },
	{ .center_freq = 2484, .hw_value = 14, },
};

J
Johannes Berg 已提交
68
static struct ieee80211_supported_band band_2GHz = {
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
	.channels = p54_bgchannels,
	.n_channels = ARRAY_SIZE(p54_bgchannels),
	.bitrates = p54_bgrates,
	.n_bitrates = ARRAY_SIZE(p54_bgrates),
};

static struct ieee80211_rate p54_arates[] = {
	{ .bitrate = 60, .hw_value = 4, },
	{ .bitrate = 90, .hw_value = 5, },
	{ .bitrate = 120, .hw_value = 6, },
	{ .bitrate = 180, .hw_value = 7, },
	{ .bitrate = 240, .hw_value = 8, },
	{ .bitrate = 360, .hw_value = 9, },
	{ .bitrate = 480, .hw_value = 10, },
	{ .bitrate = 540, .hw_value = 11, },
};

static struct ieee80211_channel p54_achannels[] = {
	{ .center_freq = 4920 },
	{ .center_freq = 4940 },
	{ .center_freq = 4960 },
	{ .center_freq = 4980 },
	{ .center_freq = 5040 },
	{ .center_freq = 5060 },
	{ .center_freq = 5080 },
	{ .center_freq = 5170 },
	{ .center_freq = 5180 },
	{ .center_freq = 5190 },
	{ .center_freq = 5200 },
	{ .center_freq = 5210 },
	{ .center_freq = 5220 },
	{ .center_freq = 5230 },
	{ .center_freq = 5240 },
	{ .center_freq = 5260 },
	{ .center_freq = 5280 },
	{ .center_freq = 5300 },
	{ .center_freq = 5320 },
	{ .center_freq = 5500 },
	{ .center_freq = 5520 },
	{ .center_freq = 5540 },
	{ .center_freq = 5560 },
	{ .center_freq = 5580 },
	{ .center_freq = 5600 },
	{ .center_freq = 5620 },
	{ .center_freq = 5640 },
	{ .center_freq = 5660 },
	{ .center_freq = 5680 },
	{ .center_freq = 5700 },
	{ .center_freq = 5745 },
	{ .center_freq = 5765 },
	{ .center_freq = 5785 },
	{ .center_freq = 5805 },
	{ .center_freq = 5825 },
};

static struct ieee80211_supported_band band_5GHz = {
	.channels = p54_achannels,
	.n_channels = ARRAY_SIZE(p54_achannels),
	.bitrates = p54_arates,
	.n_bitrates = ARRAY_SIZE(p54_arates),
129 130
};

131
int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw)
132 133 134 135 136 137 138 139 140 141 142
{
	struct p54_common *priv = dev->priv;
	struct bootrec_exp_if *exp_if;
	struct bootrec *bootrec;
	u32 *data = (u32 *)fw->data;
	u32 *end_data = (u32 *)fw->data + (fw->size >> 2);
	u8 *fw_version = NULL;
	size_t len;
	int i;

	if (priv->rx_start)
143
		return 0;
144 145 146 147 148 149 150 151 152 153 154 155 156 157

	while (data < end_data && *data)
		data++;

	while (data < end_data && !*data)
		data++;

	bootrec = (struct bootrec *) data;

	while (bootrec->data <= end_data &&
	       (bootrec->data + (len = le32_to_cpu(bootrec->len))) <= end_data) {
		u32 code = le32_to_cpu(bootrec->code);
		switch (code) {
		case BR_CODE_COMPONENT_ID:
L
Larry Finger 已提交
158 159
			priv->fw_interface = be32_to_cpup((__be32 *)
					     bootrec->data);
160
			switch (priv->fw_interface) {
161
			case FW_LM86:
C
Christian Lamparter 已提交
162 163 164 165 166 167 168
			case FW_LM20:
			case FW_LM87: {
				char *iftype = (char *)bootrec->data;
				printk(KERN_INFO "%s: p54 detected a LM%c%c "
						 "firmware\n",
					wiphy_name(dev->wiphy),
					iftype[2], iftype[3]);
169
				break;
C
Christian Lamparter 已提交
170 171
				}
			case FW_FMAC:
172
			default:
C
Christian Lamparter 已提交
173 174 175
				printk(KERN_ERR "%s: unsupported firmware\n",
					wiphy_name(dev->wiphy));
				return -ENODEV;
176 177 178 179 180 181 182
			}
			break;
		case BR_CODE_COMPONENT_VERSION:
			/* 24 bytes should be enough for all firmwares */
			if (strnlen((unsigned char*)bootrec->data, 24) < 24)
				fw_version = (unsigned char*)bootrec->data;
			break;
183 184 185 186
		case BR_CODE_DESCR: {
			struct bootrec_desc *desc =
				(struct bootrec_desc *)bootrec->data;
			priv->rx_start = le32_to_cpu(desc->rx_start);
187
			/* FIXME add sanity checking */
188 189 190
			priv->rx_end = le32_to_cpu(desc->rx_end) - 0x3500;
			priv->headroom = desc->headroom;
			priv->tailroom = desc->tailroom;
191 192
			priv->privacy_caps = desc->privacy_caps;
			priv->rx_keycache_size = desc->rx_keycache_size;
L
Larry Finger 已提交
193
			if (le32_to_cpu(bootrec->len) == 11)
194
				priv->rx_mtu = le16_to_cpu(desc->rx_mtu);
195 196 197
			else
				priv->rx_mtu = (size_t)
					0x620 - priv->tx_hdr_len;
198
			break;
199
			}
200 201 202
		case BR_CODE_EXPOSED_IF:
			exp_if = (struct bootrec_exp_if *) bootrec->data;
			for (i = 0; i < (len * sizeof(*exp_if) / 4); i++)
A
Al Viro 已提交
203
				if (exp_if[i].if_id == cpu_to_le16(0x1a))
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
					priv->fw_var = le16_to_cpu(exp_if[i].variant);
			break;
		case BR_CODE_DEPENDENT_IF:
			break;
		case BR_CODE_END_OF_BRA:
		case LEGACY_BR_CODE_END_OF_BRA:
			end_data = NULL;
			break;
		default:
			break;
		}
		bootrec = (struct bootrec *)&bootrec->data[len];
	}

	if (fw_version)
C
Christian Lamparter 已提交
219 220 221
		printk(KERN_INFO "%s: FW rev %s - Softmac protocol %x.%x\n",
			wiphy_name(dev->wiphy), fw_version,
			priv->fw_var >> 8, priv->fw_var & 0xff);
222

223
	if (priv->fw_var < 0x500)
C
Christian Lamparter 已提交
224
		printk(KERN_INFO "%s: you are using an obsolete firmware. "
225
		       "visit http://wireless.kernel.org/en/users/Drivers/p54 "
C
Christian Lamparter 已提交
226 227
		       "and grab one for \"kernel >= 2.6.28\"!\n",
			wiphy_name(dev->wiphy));
228

229 230
	if (priv->fw_var >= 0x300) {
		/* Firmware supports QoS, use it! */
231 232 233 234
		priv->tx_stats[4].limit = 3;		/* AC_VO */
		priv->tx_stats[5].limit = 4;		/* AC_VI */
		priv->tx_stats[6].limit = 3;		/* AC_BE */
		priv->tx_stats[7].limit = 2;		/* AC_BK */
235 236
		dev->queues = 4;
	}
237

238 239 240 241 242 243 244 245 246 247
	if (!modparam_nohwcrypt)
		printk(KERN_INFO "%s: cryptographic accelerator "
				 "WEP:%s, TKIP:%s, CCMP:%s\n",
			wiphy_name(dev->wiphy),
			(priv->privacy_caps & BR_DESC_PRIV_CAP_WEP) ? "YES" :
			"no", (priv->privacy_caps & (BR_DESC_PRIV_CAP_TKIP |
			 BR_DESC_PRIV_CAP_MICHAEL)) ? "YES" : "no",
			(priv->privacy_caps & BR_DESC_PRIV_CAP_AESCCMP) ?
			"YES" : "no");

248
	return 0;
249 250 251
}
EXPORT_SYMBOL_GPL(p54_parse_firmware);

252 253
static int p54_convert_rev0(struct ieee80211_hw *dev,
			    struct pda_pa_curve_data *curve_data)
254 255
{
	struct p54_common *priv = dev->priv;
256 257
	struct p54_pa_curve_data_sample *dst;
	struct pda_pa_curve_data_sample_rev0 *src;
258
	size_t cd_len = sizeof(*curve_data) +
259
		(curve_data->points_per_channel*sizeof(*dst) + 2) *
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
		 curve_data->channels;
	unsigned int i, j;
	void *source, *target;

	priv->curve_data = kmalloc(cd_len, GFP_KERNEL);
	if (!priv->curve_data)
		return -ENOMEM;

	memcpy(priv->curve_data, curve_data, sizeof(*curve_data));
	source = curve_data->data;
	target = priv->curve_data->data;
	for (i = 0; i < curve_data->channels; i++) {
		__le16 *freq = source;
		source += sizeof(__le16);
		*((__le16 *)target) = *freq;
		target += sizeof(__le16);
		for (j = 0; j < curve_data->points_per_channel; j++) {
277 278
			dst = target;
			src = source;
279

280 281 282
			dst->rf_power = src->rf_power;
			dst->pa_detector = src->pa_detector;
			dst->data_64qam = src->pcv;
283 284
			/* "invent" the points for the other modulations */
#define SUB(x,y) (u8)((x) - (y)) > (x) ? 0 : (x) - (y)
285 286 287 288
			dst->data_16qam = SUB(src->pcv, 12);
			dst->data_qpsk = SUB(dst->data_16qam, 12);
			dst->data_bpsk = SUB(dst->data_qpsk, 12);
			dst->data_barker = SUB(dst->data_bpsk, 14);
289
#undef SUB
290 291
			target += sizeof(*dst);
			source += sizeof(*src);
292 293 294 295 296 297
		}
	}

	return 0;
}

298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
static int p54_convert_rev1(struct ieee80211_hw *dev,
			    struct pda_pa_curve_data *curve_data)
{
	struct p54_common *priv = dev->priv;
	struct p54_pa_curve_data_sample *dst;
	struct pda_pa_curve_data_sample_rev1 *src;
	size_t cd_len = sizeof(*curve_data) +
		(curve_data->points_per_channel*sizeof(*dst) + 2) *
		 curve_data->channels;
	unsigned int i, j;
	void *source, *target;

	priv->curve_data = kmalloc(cd_len, GFP_KERNEL);
	if (!priv->curve_data)
		return -ENOMEM;

	memcpy(priv->curve_data, curve_data, sizeof(*curve_data));
	source = curve_data->data;
	target = priv->curve_data->data;
	for (i = 0; i < curve_data->channels; i++) {
		__le16 *freq = source;
		source += sizeof(__le16);
		*((__le16 *)target) = *freq;
		target += sizeof(__le16);
		for (j = 0; j < curve_data->points_per_channel; j++) {
			memcpy(target, source, sizeof(*src));

			target += sizeof(*dst);
			source += sizeof(*src);
		}
		source++;
	}

	return 0;
}

334 335
static const char *p54_rf_chips[] = { "NULL", "Duette3", "Duette2",
                              "Frisbee", "Xbow", "Longbow", "NULL", "NULL" };
336
static int p54_init_xbow_synth(struct ieee80211_hw *dev);
337

L
Larry Finger 已提交
338
static int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len)
339 340 341 342 343 344 345
{
	struct p54_common *priv = dev->priv;
	struct eeprom_pda_wrap *wrap = NULL;
	struct pda_entry *entry;
	unsigned int data_len, entry_len;
	void *tmp;
	int err;
346
	u8 *end = (u8 *)eeprom + len;
C
Christian Lamparter 已提交
347
	u16 synth = 0;
348 349

	wrap = (struct eeprom_pda_wrap *) eeprom;
350
	entry = (void *)wrap->data + le16_to_cpu(wrap->len);
351 352 353

	/* verify that at least the entry length/code fits */
	while ((u8 *)entry <= end - sizeof(*entry)) {
354 355
		entry_len = le16_to_cpu(entry->len);
		data_len = ((entry_len - 1) << 1);
356 357 358 359 360

		/* abort if entry exceeds whole structure */
		if ((u8 *)entry + sizeof(*entry) + data_len > end)
			break;

361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
		switch (le16_to_cpu(entry->code)) {
		case PDR_MAC_ADDRESS:
			SET_IEEE80211_PERM_ADDR(dev, entry->data);
			break;
		case PDR_PRISM_PA_CAL_OUTPUT_POWER_LIMITS:
			if (data_len < 2) {
				err = -EINVAL;
				goto err;
			}

			if (2 + entry->data[1]*sizeof(*priv->output_limit) > data_len) {
				err = -EINVAL;
				goto err;
			}

			priv->output_limit = kmalloc(entry->data[1] *
				sizeof(*priv->output_limit), GFP_KERNEL);

			if (!priv->output_limit) {
				err = -ENOMEM;
				goto err;
			}

			memcpy(priv->output_limit, &entry->data[2],
			       entry->data[1]*sizeof(*priv->output_limit));
			priv->output_limit_len = entry->data[1];
			break;
388 389 390 391
		case PDR_PRISM_PA_CAL_CURVE_DATA: {
			struct pda_pa_curve_data *curve_data =
				(struct pda_pa_curve_data *)entry->data;
			if (data_len < sizeof(*curve_data)) {
392 393 394 395
				err = -EINVAL;
				goto err;
			}

396 397 398 399 400 401 402 403
			switch (curve_data->cal_method_rev) {
			case 0:
				err = p54_convert_rev0(dev, curve_data);
				break;
			case 1:
				err = p54_convert_rev1(dev, curve_data);
				break;
			default:
C
Christian Lamparter 已提交
404
				printk(KERN_ERR "%s: unknown curve data "
405
						"revision %d\n",
C
Christian Lamparter 已提交
406
						wiphy_name(dev->wiphy),
407 408 409
						curve_data->cal_method_rev);
				err = -ENODEV;
				break;
410
			}
411 412
			if (err)
				goto err;
413

414
		}
415 416 417 418 419 420 421 422 423 424 425 426 427 428
		case PDR_PRISM_ZIF_TX_IQ_CALIBRATION:
			priv->iq_autocal = kmalloc(data_len, GFP_KERNEL);
			if (!priv->iq_autocal) {
				err = -ENOMEM;
				goto err;
			}

			memcpy(priv->iq_autocal, entry->data, data_len);
			priv->iq_autocal_len = data_len / sizeof(struct pda_iq_autocal_entry);
			break;
		case PDR_INTERFACE_LIST:
			tmp = entry->data;
			while ((u8 *)tmp < entry->data + data_len) {
				struct bootrec_exp_if *exp_if = tmp;
429 430
				if (le16_to_cpu(exp_if->if_id) == 0xf)
					synth = le16_to_cpu(exp_if->variant);
431 432 433 434 435 436 437
				tmp += sizeof(struct bootrec_exp_if);
			}
			break;
		case PDR_HARDWARE_PLATFORM_COMPONENT_ID:
			priv->version = *(u8 *)(entry->data + 1);
			break;
		case PDR_END:
438 439
			/* make it overrun */
			entry_len = len;
440
			break;
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
		case PDR_MANUFACTURING_PART_NUMBER:
		case PDR_PDA_VERSION:
		case PDR_NIC_SERIAL_NUMBER:
		case PDR_REGULATORY_DOMAIN_LIST:
		case PDR_TEMPERATURE_TYPE:
		case PDR_PRISM_PCI_IDENTIFIER:
		case PDR_COUNTRY_INFORMATION:
		case PDR_OEM_NAME:
		case PDR_PRODUCT_NAME:
		case PDR_UTF8_OEM_NAME:
		case PDR_UTF8_PRODUCT_NAME:
		case PDR_COUNTRY_LIST:
		case PDR_DEFAULT_COUNTRY:
		case PDR_ANTENNA_GAIN:
		case PDR_PRISM_INDIGO_PA_CALIBRATION_DATA:
		case PDR_RSSI_LINEAR_APPROXIMATION:
		case PDR_RSSI_LINEAR_APPROXIMATION_DUAL_BAND:
		case PDR_REGULATORY_POWER_LIMITS:
		case PDR_RSSI_LINEAR_APPROXIMATION_EXTENDED:
		case PDR_RADIATED_TRANSMISSION_CORRECTION:
		case PDR_PRISM_TX_IQ_CALIBRATION:
		case PDR_BASEBAND_REGISTERS:
		case PDR_PER_CHANNEL_BASEBAND_REGISTERS:
			break;
465
		default:
C
Christian Lamparter 已提交
466 467
			printk(KERN_INFO "%s: unknown eeprom code : 0x%x\n",
				wiphy_name(dev->wiphy),
468 469
				le16_to_cpu(entry->code));
			break;
470 471 472 473 474
		}

		entry = (void *)entry + (entry_len + 1)*2;
	}

C
Christian Lamparter 已提交
475 476
	if (!synth || !priv->iq_autocal || !priv->output_limit ||
	    !priv->curve_data) {
C
Christian Lamparter 已提交
477 478
		printk(KERN_ERR "%s: not all required entries found in eeprom!\n",
			wiphy_name(dev->wiphy));
479 480 481 482
		err = -EINVAL;
		goto err;
	}

483
	priv->rxhw = synth & PDR_SYNTH_FRONTEND_MASK;
484
	if (priv->rxhw == 4)
485
		p54_init_xbow_synth(dev);
486
	if (!(synth & PDR_SYNTH_24_GHZ_DISABLED))
487
		dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &band_2GHz;
488
	if (!(synth & PDR_SYNTH_5_GHZ_DISABLED))
489
		dev->wiphy->bands[IEEE80211_BAND_5GHZ] = &band_5GHz;
490 491 492 493 494 495 496 497 498 499

	if (!is_valid_ether_addr(dev->wiphy->perm_addr)) {
		u8 perm_addr[ETH_ALEN];

		printk(KERN_WARNING "%s: Invalid hwaddr! Using randomly generated MAC addr\n",
			wiphy_name(dev->wiphy));
		random_ether_addr(perm_addr);
		SET_IEEE80211_PERM_ADDR(dev, perm_addr);
	}

J
Johannes Berg 已提交
500
	printk(KERN_INFO "%s: hwaddr %pM, MAC:isl38%02x RF:%s\n",
501
		wiphy_name(dev->wiphy),
J
Johannes Berg 已提交
502
		dev->wiphy->perm_addr,
503 504
		priv->version, p54_rf_chips[priv->rxhw]);

505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
	return 0;

  err:
	if (priv->iq_autocal) {
		kfree(priv->iq_autocal);
		priv->iq_autocal = NULL;
	}

	if (priv->output_limit) {
		kfree(priv->output_limit);
		priv->output_limit = NULL;
	}

	if (priv->curve_data) {
		kfree(priv->curve_data);
		priv->curve_data = NULL;
	}

C
Christian Lamparter 已提交
523 524
	printk(KERN_ERR "%s: eeprom parse failed!\n",
		wiphy_name(dev->wiphy));
525 526 527
	return err;
}

528 529 530 531 532 533
static int p54_rssi_to_dbm(struct ieee80211_hw *dev, int rssi)
{
	/* TODO: get the rssi_add & rssi_mul data from the eeprom */
	return ((rssi * 0x83) / 64 - 400) / 4;
}

534
static int p54_rx_data(struct ieee80211_hw *dev, struct sk_buff *skb)
535
{
C
Christian Lamparter 已提交
536
	struct p54_common *priv = dev->priv;
537
	struct p54_rx_data *hdr = (struct p54_rx_data *) skb->data;
538 539
	struct ieee80211_rx_status rx_status = {0};
	u16 freq = le16_to_cpu(hdr->freq);
540
	size_t header_len = sizeof(*hdr);
C
Christian Lamparter 已提交
541
	u32 tsf32;
542

543 544 545 546 547 548 549 550
	/*
	 * If the device is in a unspecified state we have to
	 * ignore all data frames. Else we could end up with a
	 * nasty crash.
	 */
	if (unlikely(priv->mode == NL80211_IFTYPE_UNSPECIFIED))
		return 0;

551
	if (!(hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_IN_FCS_GOOD))) {
C
Christian Lamparter 已提交
552 553 554 555 556 557
		if (priv->filter_flags & FIF_FCSFAIL)
			rx_status.flag |= RX_FLAG_FAILED_FCS_CRC;
		else
			return 0;
	}

558 559 560 561 562 563
	if (hdr->decrypt_status == P54_DECRYPT_OK)
		rx_status.flag |= RX_FLAG_DECRYPTED;
	if ((hdr->decrypt_status == P54_DECRYPT_FAIL_MICHAEL) ||
	    (hdr->decrypt_status == P54_DECRYPT_FAIL_TKIP))
		rx_status.flag |= RX_FLAG_MMIC_ERROR;

564 565
	rx_status.signal = p54_rssi_to_dbm(dev, hdr->rssi);
	rx_status.noise = priv->noise;
566
	/* XX correct? */
567
	rx_status.qual = (100 * hdr->rssi) / 127;
C
Christian Lamparter 已提交
568 569
	if (hdr->rate & 0x10)
		rx_status.flag |= RX_FLAG_SHORTPRE;
570 571
	rx_status.rate_idx = (dev->conf.channel->band == IEEE80211_BAND_2GHZ ?
			hdr->rate : (hdr->rate - 4)) & 0xf;
572
	rx_status.freq = freq;
573
	rx_status.band =  dev->conf.channel->band;
574
	rx_status.antenna = hdr->antenna;
C
Christian Lamparter 已提交
575 576 577 578 579 580 581

	tsf32 = le32_to_cpu(hdr->tsf32);
	if (tsf32 < priv->tsf_low32)
		priv->tsf_high32++;
	rx_status.mactime = ((u64)priv->tsf_high32) << 32 | tsf32;
	priv->tsf_low32 = tsf32;

582
	rx_status.flag |= RX_FLAG_TSFT;
583

584
	if (hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN))
585 586 587
		header_len += hdr->align[0];

	skb_pull(skb, header_len);
588 589 590
	skb_trim(skb, le16_to_cpu(hdr->len));

	ieee80211_rx_irqsafe(dev, skb, &rx_status);
591 592

	return -1;
593 594 595 596 597 598 599
}

static void inline p54_wake_free_queues(struct ieee80211_hw *dev)
{
	struct p54_common *priv = dev->priv;
	int i;

C
Christian Lamparter 已提交
600 601 602
	if (priv->mode == NL80211_IFTYPE_UNSPECIFIED)
		return ;

603
	for (i = 0; i < dev->queues; i++)
C
Chr 已提交
604
		if (priv->tx_stats[i + 4].len < priv->tx_stats[i + 4].limit)
605 606 607
			ieee80211_wake_queue(dev, i);
}

C
Christian Lamparter 已提交
608 609 610 611 612 613 614 615
void p54_free_skb(struct ieee80211_hw *dev, struct sk_buff *skb)
{
	struct p54_common *priv = dev->priv;
	struct ieee80211_tx_info *info;
	struct memrecord *range;
	unsigned long flags;
	u32 freed = 0, last_addr = priv->rx_start;

C
Christian Lamparter 已提交
616
	if (unlikely(!skb || !dev || !skb_queue_len(&priv->tx_queue)))
C
Christian Lamparter 已提交
617 618
		return;

619 620 621 622 623 624
	/*
	 * don't try to free an already unlinked skb
	 */
	if (unlikely((!skb->next) || (!skb->prev)))
		return;

C
Christian Lamparter 已提交
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
	spin_lock_irqsave(&priv->tx_queue.lock, flags);
	info = IEEE80211_SKB_CB(skb);
	range = (void *)info->rate_driver_data;
	if (skb->prev != (struct sk_buff *)&priv->tx_queue) {
		struct ieee80211_tx_info *ni;
		struct memrecord *mr;

		ni = IEEE80211_SKB_CB(skb->prev);
		mr = (struct memrecord *)ni->rate_driver_data;
		last_addr = mr->end_addr;
	}
	if (skb->next != (struct sk_buff *)&priv->tx_queue) {
		struct ieee80211_tx_info *ni;
		struct memrecord *mr;

		ni = IEEE80211_SKB_CB(skb->next);
		mr = (struct memrecord *)ni->rate_driver_data;
		freed = mr->start_addr - last_addr;
	} else
		freed = priv->rx_end - last_addr;
	__skb_unlink(skb, &priv->tx_queue);
	spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
	kfree_skb(skb);

649
	if (freed >= priv->headroom + sizeof(struct p54_hdr) + 48 +
C
Christian Lamparter 已提交
650 651 652 653 654
		     IEEE80211_MAX_RTS_THRESHOLD + priv->tailroom)
		p54_wake_free_queues(dev);
}
EXPORT_SYMBOL_GPL(p54_free_skb);

655 656 657
static void p54_rx_frame_sent(struct ieee80211_hw *dev, struct sk_buff *skb)
{
	struct p54_common *priv = dev->priv;
658 659
	struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
	struct p54_frame_sent *payload = (struct p54_frame_sent *) hdr->data;
660
	struct sk_buff *entry = (struct sk_buff *) priv->tx_queue.next;
661
	u32 addr = le32_to_cpu(hdr->req_id) - priv->headroom;
662 663 664
	struct memrecord *range = NULL;
	u32 freed = 0;
	u32 last_addr = priv->rx_start;
C
Chr 已提交
665
	unsigned long flags;
J
Johannes Berg 已提交
666
	int count, idx;
667

C
Chr 已提交
668
	spin_lock_irqsave(&priv->tx_queue.lock, flags);
669
	while (entry != (struct sk_buff *)&priv->tx_queue) {
670
		struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry);
671 672
		struct p54_hdr *entry_hdr;
		struct p54_tx_data *entry_data;
673
		int pad = 0;
674

675 676 677 678 679 680
		range = (void *)info->rate_driver_data;
		if (range->start_addr != addr) {
			last_addr = range->end_addr;
			entry = entry->next;
			continue;
		}
681

682 683 684
		if (entry->next != (struct sk_buff *)&priv->tx_queue) {
			struct ieee80211_tx_info *ni;
			struct memrecord *mr;
685

686 687 688 689 690 691 692 693 694 695
			ni = IEEE80211_SKB_CB(entry->next);
			mr = (struct memrecord *)ni->rate_driver_data;
			freed = mr->start_addr - last_addr;
		} else
			freed = priv->rx_end - last_addr;

		last_addr = range->end_addr;
		__skb_unlink(entry, &priv->tx_queue);
		spin_unlock_irqrestore(&priv->tx_queue.lock, flags);

696 697 698 699
		entry_hdr = (struct p54_hdr *) entry->data;
		entry_data = (struct p54_tx_data *) entry_hdr->data;
		priv->tx_stats[entry_data->hw_queue].len--;

C
Christian Lamparter 已提交
700 701 702 703 704 705
		if (unlikely(entry == priv->cached_beacon)) {
			kfree_skb(entry);
			priv->cached_beacon = NULL;
			goto out;
		}

706 707 708 709 710 711 712 713 714 715
		/*
		 * Clear manually, ieee80211_tx_info_clear_status would
		 * clear the counts too and we need them.
		 */
		memset(&info->status.ampdu_ack_len, 0,
		       sizeof(struct ieee80211_tx_info) -
		       offsetof(struct ieee80211_tx_info, status.ampdu_ack_len));
		BUILD_BUG_ON(offsetof(struct ieee80211_tx_info,
				      status.ampdu_ack_len) != 23);

716
		if (entry_hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN))
717 718 719
			pad = entry_data->align[0];

		/* walk through the rates array and adjust the counts */
720
		count = payload->tries;
721 722 723 724 725 726 727 728 729
		for (idx = 0; idx < 4; idx++) {
			if (count >= info->status.rates[idx].count) {
				count -= info->status.rates[idx].count;
			} else if (count > 0) {
				info->status.rates[idx].count = count;
				count = 0;
			} else {
				info->status.rates[idx].idx = -1;
				info->status.rates[idx].count = 0;
730
			}
731
		}
J
Johannes Berg 已提交
732

733 734 735
		if (!(info->flags & IEEE80211_TX_CTL_NO_ACK) &&
		     (!payload->status))
			info->flags |= IEEE80211_TX_STAT_ACK;
736
		if (payload->status & P54_TX_PSM_CANCELLED)
737 738
			info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
		info->status.ack_signal = p54_rssi_to_dbm(dev,
739
				(int)payload->ack_rssi);
740 741 742
		skb_pull(entry, sizeof(*hdr) + pad + sizeof(*entry_data));
		ieee80211_tx_status_irqsafe(dev, entry);
		goto out;
743
	}
C
Chr 已提交
744
	spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
745

C
Chr 已提交
746
out:
747
	if (freed >= priv->headroom + sizeof(struct p54_hdr) + 48 +
748
		     IEEE80211_MAX_RTS_THRESHOLD + priv->tailroom)
749 750 751
		p54_wake_free_queues(dev);
}

752 753 754
static void p54_rx_eeprom_readback(struct ieee80211_hw *dev,
				   struct sk_buff *skb)
{
755
	struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
756 757 758 759 760 761
	struct p54_eeprom_lm86 *eeprom = (struct p54_eeprom_lm86 *) hdr->data;
	struct p54_common *priv = dev->priv;

	if (!priv->eeprom)
		return ;

762 763 764 765 766 767 768
	if (priv->fw_var >= 0x509) {
		memcpy(priv->eeprom, eeprom->v2.data,
		       le16_to_cpu(eeprom->v2.len));
	} else {
		memcpy(priv->eeprom, eeprom->v1.data,
		       le16_to_cpu(eeprom->v1.len));
	}
769 770 771 772

	complete(&priv->eeprom_comp);
}

773 774 775
static void p54_rx_stats(struct ieee80211_hw *dev, struct sk_buff *skb)
{
	struct p54_common *priv = dev->priv;
776
	struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
	struct p54_statistics *stats = (struct p54_statistics *) hdr->data;
	u32 tsf32 = le32_to_cpu(stats->tsf32);

	if (tsf32 < priv->tsf_low32)
		priv->tsf_high32++;
	priv->tsf_low32 = tsf32;

	priv->stats.dot11RTSFailureCount = le32_to_cpu(stats->rts_fail);
	priv->stats.dot11RTSSuccessCount = le32_to_cpu(stats->rts_success);
	priv->stats.dot11FCSErrorCount = le32_to_cpu(stats->rx_bad_fcs);

	priv->noise = p54_rssi_to_dbm(dev, le32_to_cpu(stats->noise));
	complete(&priv->stats_comp);

	mod_timer(&priv->stats_timer, jiffies + 5 * HZ);
}

C
Christian Lamparter 已提交
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
static void p54_rx_trap(struct ieee80211_hw *dev, struct sk_buff *skb)
{
	struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
	struct p54_trap *trap = (struct p54_trap *) hdr->data;
	u16 event = le16_to_cpu(trap->event);
	u16 freq = le16_to_cpu(trap->frequency);

	switch (event) {
	case P54_TRAP_BEACON_TX:
		break;
	case P54_TRAP_RADAR:
		printk(KERN_INFO "%s: radar (freq:%d MHz)\n",
			wiphy_name(dev->wiphy), freq);
		break;
	case P54_TRAP_NO_BEACON:
		break;
	case P54_TRAP_SCAN:
		break;
	case P54_TRAP_TBTT:
		break;
	case P54_TRAP_TIMER:
		break;
	default:
		printk(KERN_INFO "%s: received event:%x freq:%d\n",
		       wiphy_name(dev->wiphy), event, freq);
		break;
	}
}

823
static int p54_rx_control(struct ieee80211_hw *dev, struct sk_buff *skb)
824
{
825
	struct p54_hdr *hdr = (struct p54_hdr *) skb->data;
826 827 828 829 830

	switch (le16_to_cpu(hdr->type)) {
	case P54_CONTROL_TYPE_TXDONE:
		p54_rx_frame_sent(dev, skb);
		break;
C
Christian Lamparter 已提交
831 832 833
	case P54_CONTROL_TYPE_TRAP:
		p54_rx_trap(dev, skb);
		break;
834 835
	case P54_CONTROL_TYPE_BBP:
		break;
836 837 838
	case P54_CONTROL_TYPE_STAT_READBACK:
		p54_rx_stats(dev, skb);
		break;
839 840 841
	case P54_CONTROL_TYPE_EEPROM_READBACK:
		p54_rx_eeprom_readback(dev, skb);
		break;
842 843 844 845 846
	default:
		printk(KERN_DEBUG "%s: not handling 0x%02x type control frame\n",
		       wiphy_name(dev->wiphy), le16_to_cpu(hdr->type));
		break;
	}
847 848

	return 0;
849 850 851 852 853
}

/* returns zero if skb can be reused */
int p54_rx(struct ieee80211_hw *dev, struct sk_buff *skb)
{
854
	u16 type = le16_to_cpu(*((__le16 *)skb->data));
855

856
	if (type & P54_HDR_FLAG_CONTROL)
857 858 859
		return p54_rx_control(dev, skb);
	else
		return p54_rx_data(dev, skb);
860 861 862 863 864 865 866 867 868 869 870 871
}
EXPORT_SYMBOL_GPL(p54_rx);

/*
 * So, the firmware is somewhat stupid and doesn't know what places in its
 * memory incoming data should go to. By poking around in the firmware, we
 * can find some unused memory to upload our packets to. However, data that we
 * want the card to TX needs to stay intact until the card has told us that
 * it is done with it. This function finds empty places we can upload to and
 * marks allocated areas as reserved if necessary. p54_rx_frame_sent frees
 * allocated areas.
 */
C
Christian Lamparter 已提交
872
static int p54_assign_address(struct ieee80211_hw *dev, struct sk_buff *skb,
873
			       struct p54_hdr *data, u32 len)
874 875 876 877
{
	struct p54_common *priv = dev->priv;
	struct sk_buff *entry = priv->tx_queue.next;
	struct sk_buff *target_skb = NULL;
C
Christian Lamparter 已提交
878 879
	struct ieee80211_tx_info *info;
	struct memrecord *range;
880 881 882 883 884
	u32 last_addr = priv->rx_start;
	u32 largest_hole = 0;
	u32 target_addr = priv->rx_start;
	unsigned long flags;
	unsigned int left;
885
	len = (len + priv->headroom + priv->tailroom + 3) & ~0x3;
886

C
Christian Lamparter 已提交
887 888 889
	if (!skb)
		return -EINVAL;

890
	spin_lock_irqsave(&priv->tx_queue.lock, flags);
891

892
	left = skb_queue_len(&priv->tx_queue);
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
	if (unlikely(left >= 28)) {
		/*
		 * The tx_queue is nearly full!
		 * We have throttle normal data traffic, because we must
		 * have a few spare slots for control frames left.
		 */
		ieee80211_stop_queues(dev);

		if (unlikely(left == 32)) {
			/*
			 * The tx_queue is now really full.
			 *
			 * TODO: check if the device has crashed and reset it.
			 */
			spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
			return -ENOSPC;
		}
	}

912 913
	while (left--) {
		u32 hole_size;
C
Christian Lamparter 已提交
914 915
		info = IEEE80211_SKB_CB(entry);
		range = (void *)info->rate_driver_data;
916 917 918 919 920 921 922 923 924 925 926 927 928 929
		hole_size = range->start_addr - last_addr;
		if (!target_skb && hole_size >= len) {
			target_skb = entry->prev;
			hole_size -= len;
			target_addr = last_addr;
		}
		largest_hole = max(largest_hole, hole_size);
		last_addr = range->end_addr;
		entry = entry->next;
	}
	if (!target_skb && priv->rx_end - last_addr >= len) {
		target_skb = priv->tx_queue.prev;
		largest_hole = max(largest_hole, priv->rx_end - last_addr - len);
		if (!skb_queue_empty(&priv->tx_queue)) {
C
Christian Lamparter 已提交
930 931
			info = IEEE80211_SKB_CB(target_skb);
			range = (void *)info->rate_driver_data;
932 933 934 935 936
			target_addr = range->end_addr;
		}
	} else
		largest_hole = max(largest_hole, priv->rx_end - last_addr);

C
Christian Lamparter 已提交
937 938 939
	if (!target_skb) {
		spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
		ieee80211_stop_queues(dev);
940
		return -ENOSPC;
941
	}
C
Christian Lamparter 已提交
942 943 944 945 946 947

	info = IEEE80211_SKB_CB(skb);
	range = (void *)info->rate_driver_data;
	range->start_addr = target_addr;
	range->end_addr = target_addr + len;
	__skb_queue_after(&priv->tx_queue, target_skb, skb);
948 949
	spin_unlock_irqrestore(&priv->tx_queue.lock, flags);

950
	if (largest_hole < priv->headroom + sizeof(struct p54_hdr) +
C
Christian Lamparter 已提交
951 952 953
			   48 + IEEE80211_MAX_RTS_THRESHOLD + priv->tailroom)
		ieee80211_stop_queues(dev);

954
	data->req_id = cpu_to_le32(target_addr + priv->headroom);
C
Christian Lamparter 已提交
955 956 957 958 959 960 961
	return 0;
}

static struct sk_buff *p54_alloc_skb(struct ieee80211_hw *dev,
		u16 hdr_flags, u16 len, u16 type, gfp_t memflags)
{
	struct p54_common *priv = dev->priv;
962
	struct p54_hdr *hdr;
C
Christian Lamparter 已提交
963 964 965 966 967 968 969
	struct sk_buff *skb;

	skb = __dev_alloc_skb(len + priv->tx_hdr_len, memflags);
	if (!skb)
		return NULL;
	skb_reserve(skb, priv->tx_hdr_len);

970 971
	hdr = (struct p54_hdr *) skb_put(skb, sizeof(*hdr));
	hdr->flags = cpu_to_le16(hdr_flags);
C
Christian Lamparter 已提交
972 973
	hdr->len = cpu_to_le16(len - sizeof(*hdr));
	hdr->type = cpu_to_le16(type);
974
	hdr->tries = hdr->rts_tries = 0;
C
Christian Lamparter 已提交
975 976 977 978 979 980

	if (unlikely(p54_assign_address(dev, skb, hdr, len))) {
		kfree_skb(skb);
		return NULL;
	}
	return skb;
981 982
}

983 984 985
int p54_read_eeprom(struct ieee80211_hw *dev)
{
	struct p54_common *priv = dev->priv;
986
	struct p54_hdr *hdr = NULL;
987
	struct p54_eeprom_lm86 *eeprom_hdr;
C
Christian Lamparter 已提交
988
	struct sk_buff *skb;
989
	size_t eeprom_size = 0x2020, offset = 0, blocksize, maxblocksize;
990 991 992
	int ret = -ENOMEM;
	void *eeprom = NULL;

993 994 995 996 997 998 999 1000
	maxblocksize = EEPROM_READBACK_LEN;
	if (priv->fw_var >= 0x509)
		maxblocksize -= 0xc;
	else
		maxblocksize -= 0x4;

	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL, sizeof(*hdr) +
			    sizeof(*eeprom_hdr) + maxblocksize,
C
Christian Lamparter 已提交
1001 1002
			    P54_CONTROL_TYPE_EEPROM_READBACK, GFP_KERNEL);
	if (!skb)
1003 1004 1005 1006 1007 1008 1009 1010
		goto free;
	priv->eeprom = kzalloc(EEPROM_READBACK_LEN, GFP_KERNEL);
	if (!priv->eeprom)
		goto free;
	eeprom = kzalloc(eeprom_size, GFP_KERNEL);
	if (!eeprom)
		goto free;

C
Christian Lamparter 已提交
1011
	eeprom_hdr = (struct p54_eeprom_lm86 *) skb_put(skb,
1012
		     sizeof(*eeprom_hdr) + maxblocksize);
1013 1014

	while (eeprom_size) {
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
		blocksize = min(eeprom_size, maxblocksize);
		if (priv->fw_var < 0x509) {
			eeprom_hdr->v1.offset = cpu_to_le16(offset);
			eeprom_hdr->v1.len = cpu_to_le16(blocksize);
		} else {
			eeprom_hdr->v2.offset = cpu_to_le32(offset);
			eeprom_hdr->v2.len = cpu_to_le16(blocksize);
			eeprom_hdr->v2.magic2 = 0xf;
			memcpy(eeprom_hdr->v2.magic, (const char *)"LOCK", 4);
		}
C
Christian Lamparter 已提交
1025
		priv->tx(dev, skb, 0);
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042

		if (!wait_for_completion_interruptible_timeout(&priv->eeprom_comp, HZ)) {
			printk(KERN_ERR "%s: device does not respond!\n",
				wiphy_name(dev->wiphy));
			ret = -EBUSY;
			goto free;
	        }

		memcpy(eeprom + offset, priv->eeprom, blocksize);
		offset += blocksize;
		eeprom_size -= blocksize;
	}

	ret = p54_parse_eeprom(dev, eeprom, offset);
free:
	kfree(priv->eeprom);
	priv->eeprom = NULL;
C
Christian Lamparter 已提交
1043
	p54_free_skb(dev, skb);
1044 1045 1046 1047 1048 1049
	kfree(eeprom);

	return ret;
}
EXPORT_SYMBOL_GPL(p54_read_eeprom);

C
Christian Lamparter 已提交
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
static int p54_set_tim(struct ieee80211_hw *dev, struct ieee80211_sta *sta,
		bool set)
{
	struct p54_common *priv = dev->priv;
	struct sk_buff *skb;
	struct p54_tim *tim;

	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET,
		      sizeof(struct p54_hdr) + sizeof(*tim),
		      P54_CONTROL_TYPE_TIM, GFP_KERNEL);
	if (!skb)
		return -ENOMEM;

	tim = (struct p54_tim *) skb_put(skb, sizeof(*tim));
	tim->count = 1;
	tim->entry[0] = cpu_to_le16(set ? (sta->aid | 0x8000) : sta->aid);
	priv->tx(dev, skb, 1);
	return 0;
}

static int p54_sta_unlock(struct ieee80211_hw *dev, u8 *addr)
{
	struct p54_common *priv = dev->priv;
	struct sk_buff *skb;
	struct p54_sta_unlock *sta;

	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET,
		sizeof(struct p54_hdr) + sizeof(*sta),
		P54_CONTROL_TYPE_PSM_STA_UNLOCK, GFP_ATOMIC);
	if (!skb)
		return -ENOMEM;

	sta = (struct p54_sta_unlock *)skb_put(skb, sizeof(*sta));
	memcpy(sta->addr, addr, ETH_ALEN);
	priv->tx(dev, skb, 1);
	return 0;
}

1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
static void p54_sta_notify(struct ieee80211_hw *dev, struct ieee80211_vif *vif,
			      enum sta_notify_cmd notify_cmd,
			      struct ieee80211_sta *sta)
{
	switch (notify_cmd) {
	case STA_NOTIFY_ADD:
	case STA_NOTIFY_REMOVE:
		/*
		 * Notify the firmware that we don't want or we don't
		 * need to buffer frames for this station anymore.
		 */

1100 1101 1102 1103
		p54_sta_unlock(dev, sta->addr);
		break;
	case STA_NOTIFY_AWAKE:
		/* update the firmware's filter table */
1104 1105 1106 1107 1108 1109 1110
		p54_sta_unlock(dev, sta->addr);
		break;
	default:
		break;
	}
}

C
Christian Lamparter 已提交
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
static int p54_tx_cancel(struct ieee80211_hw *dev, struct sk_buff *entry)
{
	struct p54_common *priv = dev->priv;
	struct sk_buff *skb;
	struct p54_hdr *hdr;
	struct p54_txcancel *cancel;

	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET,
		sizeof(struct p54_hdr) + sizeof(*cancel),
		P54_CONTROL_TYPE_TXCANCEL, GFP_ATOMIC);
	if (!skb)
		return -ENOMEM;

	hdr = (void *)entry->data;
	cancel = (struct p54_txcancel *)skb_put(skb, sizeof(*cancel));
	cancel->req_id = hdr->req_id;
	priv->tx(dev, skb, 1);
	return 0;
}

1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
static int p54_tx_fill(struct ieee80211_hw *dev, struct sk_buff *skb,
		struct ieee80211_tx_info *info, u8 *queue, size_t *extra_len,
		u16 *flags, u16 *aid)
{
	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
	struct p54_common *priv = dev->priv;
	int ret = 0;

	if (unlikely(ieee80211_is_mgmt(hdr->frame_control))) {
		if (ieee80211_is_beacon(hdr->frame_control)) {
			*aid = 0;
			*queue = 0;
			*extra_len = IEEE80211_MAX_TIM_LEN;
			*flags = P54_HDR_FLAG_DATA_OUT_TIMESTAMP;
			return 0;
		} else if (ieee80211_is_probe_resp(hdr->frame_control)) {
			*aid = 0;
			*queue = 2;
			*flags = P54_HDR_FLAG_DATA_OUT_TIMESTAMP |
				 P54_HDR_FLAG_DATA_OUT_NOCANCEL;
			return 0;
		} else {
			*queue = 2;
			ret = 0;
		}
	} else {
		*queue += 4;
		ret = 1;
	}

	switch (priv->mode) {
	case NL80211_IFTYPE_STATION:
		*aid = 1;
		break;
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_ADHOC:
1167
	case NL80211_IFTYPE_MESH_POINT:
1168 1169 1170 1171 1172 1173 1174 1175
		if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
			*aid = 0;
			*queue = 3;
			return 0;
		}
		if (info->control.sta)
			*aid = info->control.sta->aid;
		else
1176
			*flags |= P54_HDR_FLAG_DATA_OUT_NOCANCEL;
1177 1178 1179 1180
	}
	return ret;
}

1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194
static u8 p54_convert_algo(enum ieee80211_key_alg alg)
{
	switch (alg) {
	case ALG_WEP:
		return P54_CRYPTO_WEP;
	case ALG_TKIP:
		return P54_CRYPTO_TKIPMICHAEL;
	case ALG_CCMP:
		return P54_CRYPTO_AESCCMP;
	default:
		return 0;
	}
}

1195
static int p54_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
1196
{
1197
	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1198
	struct ieee80211_tx_queue_stats *current_queue = NULL;
1199
	struct p54_common *priv = dev->priv;
1200 1201
	struct p54_hdr *hdr;
	struct p54_tx_data *txhdr;
1202
	size_t padding, len, tim_len = 0;
1203
	int i, j, ridx, ret;
1204
	u16 hdr_flags = 0, aid = 0;
1205
	u8 rate, queue, crypt_offset = 0;
1206
	u8 cts_rate = 0x20;
1207
	u8 rc_flags;
J
Johannes Berg 已提交
1208 1209
	u8 calculated_tries[4];
	u8 nrates = 0, nremaining = 8;
1210

1211 1212
	queue = skb_get_queue_mapping(skb);

1213 1214 1215 1216 1217 1218 1219 1220
	ret = p54_tx_fill(dev, skb, info, &queue, &tim_len, &hdr_flags, &aid);
	current_queue = &priv->tx_stats[queue];
	if (unlikely((current_queue->len > current_queue->limit) && ret))
		return NETDEV_TX_BUSY;
	current_queue->len++;
	current_queue->count++;
	if ((current_queue->len == current_queue->limit) && ret)
		ieee80211_stop_queue(dev, skb_get_queue_mapping(skb));
1221 1222 1223 1224

	padding = (unsigned long)(skb->data - (sizeof(*hdr) + sizeof(*txhdr))) & 3;
	len = skb->len;

1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
	if (info->control.hw_key) {
		crypt_offset = ieee80211_get_hdrlen_from_skb(skb);
		if (info->control.hw_key->alg == ALG_TKIP) {
			u8 *iv = (u8 *)(skb->data + crypt_offset);
			/*
			 * The firmware excepts that the IV has to have
			 * this special format
			 */
			iv[1] = iv[0];
			iv[0] = iv[2];
			iv[2] = 0;
		}
	}

1239 1240
	txhdr = (struct p54_tx_data *) skb_push(skb, sizeof(*txhdr) + padding);
	hdr = (struct p54_hdr *) skb_push(skb, sizeof(*hdr));
1241 1242

	if (padding)
1243
		hdr_flags |= P54_HDR_FLAG_DATA_ALIGN;
1244
	hdr->type = cpu_to_le16(aid);
1245
	hdr->rts_tries = info->control.rates[0].count;
J
Johannes Berg 已提交
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271

	/*
	 * we register the rates in perfect order, and
	 * RTS/CTS won't happen on 5 GHz
	 */
	cts_rate = info->control.rts_cts_rate_idx;

	memset(&txhdr->rateset, 0, sizeof(txhdr->rateset));

	/* see how many rates got used */
	for (i = 0; i < 4; i++) {
		if (info->control.rates[i].idx < 0)
			break;
		nrates++;
	}

	/* limit tries to 8/nrates per rate */
	for (i = 0; i < nrates; i++) {
		/*
		 * The magic expression here is equivalent to 8/nrates for
		 * all values that matter, but avoids division and jumps.
		 * Note that nrates can only take the values 1 through 4.
		 */
		calculated_tries[i] = min_t(int, ((15 >> nrates) | 1) + 1,
						 info->control.rates[i].count);
		nremaining -= calculated_tries[i];
1272
	}
J
Johannes Berg 已提交
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284

	/* if there are tries left, distribute from back to front */
	for (i = nrates - 1; nremaining > 0 && i >= 0; i--) {
		int tmp = info->control.rates[i].count - calculated_tries[i];

		if (tmp <= 0)
			continue;
		/* RC requested more tries at this rate */

		tmp = min_t(int, tmp, nremaining);
		calculated_tries[i] += tmp;
		nremaining -= tmp;
1285
	}
J
Johannes Berg 已提交
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310

	ridx = 0;
	for (i = 0; i < nrates && ridx < 8; i++) {
		/* we register the rates in perfect order */
		rate = info->control.rates[i].idx;
		if (info->band == IEEE80211_BAND_5GHZ)
			rate += 4;

		/* store the count we actually calculated for TX status */
		info->control.rates[i].count = calculated_tries[i];

		rc_flags = info->control.rates[i].flags;
		if (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) {
			rate |= 0x10;
			cts_rate |= 0x10;
		}
		if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS)
			rate |= 0x40;
		else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
			rate |= 0x20;
		for (j = 0; j < calculated_tries[i] && ridx < 8; j++) {
			txhdr->rateset[ridx] = rate;
			ridx++;
		}
	}
1311 1312 1313 1314 1315 1316

	if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
		hdr_flags |= P54_HDR_FLAG_DATA_OUT_SEQNR;

	/* TODO: enable bursting */
	hdr->flags = cpu_to_le16(hdr_flags);
1317 1318
	hdr->tries = ridx;
	txhdr->rts_rate_idx = 0;
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
	if (info->control.hw_key) {
		crypt_offset += info->control.hw_key->iv_len;
		txhdr->key_type = p54_convert_algo(info->control.hw_key->alg);
		txhdr->key_len = min((u8)16, info->control.hw_key->keylen);
		memcpy(txhdr->key, info->control.hw_key->key, txhdr->key_len);
		if (info->control.hw_key->alg == ALG_TKIP) {
			if (unlikely(skb_tailroom(skb) < 12))
				goto err;
			/* reserve space for the MIC key */
			len += 8;
			memcpy(skb_put(skb, 8), &(info->control.hw_key->key
				[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY]), 8);
		}
		/* reserve some space for ICV */
		len += info->control.hw_key->icv_len;
	} else {
		txhdr->key_type = 0;
		txhdr->key_len = 0;
	}
	txhdr->crypt_offset = crypt_offset;
1339
	txhdr->hw_queue = queue;
C
Christian Lamparter 已提交
1340 1341 1342 1343
	if (current_queue)
		txhdr->backlog = current_queue->len;
	else
		txhdr->backlog = 0;
1344
	memset(txhdr->durations, 0, sizeof(txhdr->durations));
1345
	txhdr->tx_antenna = (info->antenna_sel_tx == 0) ?
1346
		2 : info->antenna_sel_tx - 1;
1347
	txhdr->output_power = priv->output_power;
1348
	txhdr->cts_rate = cts_rate;
1349 1350 1351
	if (padding)
		txhdr->align[0] = padding;

1352
	hdr->len = cpu_to_le16(len);
1353
	/* modifies skb->cb and with it info, so must be last! */
1354 1355
	if (unlikely(p54_assign_address(dev, skb, hdr, skb->len + tim_len)))
		goto err;
C
Christian Lamparter 已提交
1356
	priv->tx(dev, skb, 0);
1357
	return 0;
1358 1359 1360 1361 1362 1363 1364 1365

 err:
	skb_pull(skb, sizeof(*hdr) + sizeof(*txhdr) + padding);
	if (current_queue) {
		current_queue->len--;
		current_queue->count--;
	}
	return NETDEV_TX_BUSY;
1366 1367
}

C
Christian Lamparter 已提交
1368
static int p54_setup_mac(struct ieee80211_hw *dev)
1369 1370
{
	struct p54_common *priv = dev->priv;
C
Christian Lamparter 已提交
1371
	struct sk_buff *skb;
1372
	struct p54_setup_mac *setup;
C
Christian Lamparter 已提交
1373
	u16 mode;
1374

1375 1376
	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*setup) +
			    sizeof(struct p54_hdr), P54_CONTROL_TYPE_SETUP,
C
Christian Lamparter 已提交
1377 1378 1379
			    GFP_ATOMIC);
	if (!skb)
		return -ENOMEM;
1380

1381
	setup = (struct p54_setup_mac *) skb_put(skb, sizeof(*setup));
C
Christian Lamparter 已提交
1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
	if (dev->conf.radio_enabled) {
		switch (priv->mode) {
		case NL80211_IFTYPE_STATION:
			mode = P54_FILTER_TYPE_STATION;
			break;
		case NL80211_IFTYPE_AP:
			mode = P54_FILTER_TYPE_AP;
			break;
		case NL80211_IFTYPE_ADHOC:
		case NL80211_IFTYPE_MESH_POINT:
			mode = P54_FILTER_TYPE_IBSS;
			break;
		default:
			mode = P54_FILTER_TYPE_NONE;
			break;
		}
		if (priv->filter_flags & FIF_PROMISC_IN_BSS)
			mode |= P54_FILTER_TYPE_TRANSPARENT;
	} else
		mode = P54_FILTER_TYPE_RX_DISABLED;

1403 1404
	setup->mac_mode = cpu_to_le16(mode);
	memcpy(setup->mac_addr, priv->mac_addr, ETH_ALEN);
C
Christian Lamparter 已提交
1405 1406
	memcpy(setup->bssid, priv->bssid, ETH_ALEN);
	setup->rx_antenna = 2; /* automatic */
C
Chr 已提交
1407
	setup->rx_align = 0;
1408
	if (priv->fw_var < 0x500) {
1409
		setup->v1.basic_rate_mask = cpu_to_le32(priv->basic_rate_mask);
C
Chr 已提交
1410
		memset(setup->v1.rts_rates, 0, 8);
1411 1412 1413
		setup->v1.rx_addr = cpu_to_le32(priv->rx_end);
		setup->v1.max_rx = cpu_to_le16(priv->rx_mtu);
		setup->v1.rxhw = cpu_to_le16(priv->rxhw);
1414
		setup->v1.wakeup_timer = cpu_to_le16(priv->wakeup_timer);
1415
		setup->v1.unalloc0 = cpu_to_le16(0);
1416
	} else {
1417 1418 1419
		setup->v2.rx_addr = cpu_to_le32(priv->rx_end);
		setup->v2.max_rx = cpu_to_le16(priv->rx_mtu);
		setup->v2.rxhw = cpu_to_le16(priv->rxhw);
1420
		setup->v2.timer = cpu_to_le16(priv->wakeup_timer);
1421
		setup->v2.truncate = cpu_to_le16(48896);
1422
		setup->v2.basic_rate_mask = cpu_to_le32(priv->basic_rate_mask);
1423 1424 1425 1426 1427 1428 1429
		setup->v2.sbss_offset = 0;
		setup->v2.mcast_window = 0;
		setup->v2.rx_rssi_threshold = 0;
		setup->v2.rx_ed_threshold = 0;
		setup->v2.ref_clock = cpu_to_le32(644245094);
		setup->v2.lpf_bandwidth = cpu_to_le16(65535);
		setup->v2.osc_start_delay = cpu_to_le16(65535);
1430
	}
C
Christian Lamparter 已提交
1431
	priv->tx(dev, skb, 1);
1432 1433 1434
	return 0;
}

C
Christian Lamparter 已提交
1435 1436
static int p54_scan(struct ieee80211_hw *dev, u16 mode, u16 dwell,
		    u16 frequency)
1437 1438
{
	struct p54_common *priv = dev->priv;
C
Christian Lamparter 已提交
1439
	struct sk_buff *skb;
1440
	struct p54_scan *chan;
1441 1442
	unsigned int i;
	void *entry;
1443
	__le16 freq = cpu_to_le16(frequency);
1444

1445 1446 1447
	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*chan) +
			    sizeof(struct p54_hdr), P54_CONTROL_TYPE_SCAN,
			    GFP_ATOMIC);
C
Christian Lamparter 已提交
1448
	if (!skb)
1449 1450
		return -ENOMEM;

1451
	chan = (struct p54_scan *) skb_put(skb, sizeof(*chan));
C
Christian Lamparter 已提交
1452
	memset(chan->padding1, 0, sizeof(chan->padding1));
C
Christian Lamparter 已提交
1453 1454
	chan->mode = cpu_to_le16(mode);
	chan->dwell = cpu_to_le16(dwell);
1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471

	for (i = 0; i < priv->iq_autocal_len; i++) {
		if (priv->iq_autocal[i].freq != freq)
			continue;

		memcpy(&chan->iq_autocal, &priv->iq_autocal[i],
		       sizeof(*priv->iq_autocal));
		break;
	}
	if (i == priv->iq_autocal_len)
		goto err;

	for (i = 0; i < priv->output_limit_len; i++) {
		if (priv->output_limit[i].freq != freq)
			continue;

		chan->val_barker = 0x38;
1472 1473 1474 1475 1476 1477 1478 1479
		chan->val_bpsk = chan->dup_bpsk =
			priv->output_limit[i].val_bpsk;
		chan->val_qpsk = chan->dup_qpsk =
			priv->output_limit[i].val_qpsk;
		chan->val_16qam = chan->dup_16qam =
			priv->output_limit[i].val_16qam;
		chan->val_64qam = chan->dup_64qam =
			priv->output_limit[i].val_64qam;
1480 1481 1482 1483 1484 1485 1486 1487 1488
		break;
	}
	if (i == priv->output_limit_len)
		goto err;

	entry = priv->curve_data->data;
	for (i = 0; i < priv->curve_data->channels; i++) {
		if (*((__le16 *)entry) != freq) {
			entry += sizeof(__le16);
1489 1490
			entry += sizeof(struct p54_pa_curve_data_sample) *
				 priv->curve_data->points_per_channel;
1491 1492 1493 1494
			continue;
		}

		entry += sizeof(__le16);
C
Chr 已提交
1495 1496 1497 1498 1499
		chan->pa_points_per_curve = 8;
		memset(chan->curve_data, 0, sizeof(*chan->curve_data));
		memcpy(chan->curve_data, entry,
		       sizeof(struct p54_pa_curve_data_sample) *
		       min((u8)8, priv->curve_data->points_per_channel));
1500 1501 1502
		break;
	}

1503 1504 1505 1506 1507 1508
	if (priv->fw_var < 0x500) {
		chan->v1.rssical_mul = cpu_to_le16(130);
		chan->v1.rssical_add = cpu_to_le16(0xfe70);
	} else {
		chan->v2.rssical_mul = cpu_to_le16(130);
		chan->v2.rssical_add = cpu_to_le16(0xfe70);
1509
		chan->v2.basic_rate_mask = cpu_to_le32(priv->basic_rate_mask);
1510
		memset(chan->v2.rts_rates, 0, 8);
1511
	}
C
Christian Lamparter 已提交
1512
	priv->tx(dev, skb, 1);
1513 1514 1515 1516
	return 0;

 err:
	printk(KERN_ERR "%s: frequency change failed\n", wiphy_name(dev->wiphy));
C
Christian Lamparter 已提交
1517
	kfree_skb(skb);
1518 1519 1520 1521 1522 1523
	return -EINVAL;
}

static int p54_set_leds(struct ieee80211_hw *dev, int mode, int link, int act)
{
	struct p54_common *priv = dev->priv;
C
Christian Lamparter 已提交
1524
	struct sk_buff *skb;
1525
	struct p54_led *led;
1526

1527 1528 1529
	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*led) +
			sizeof(struct p54_hdr),	P54_CONTROL_TYPE_LED,
			GFP_ATOMIC);
C
Christian Lamparter 已提交
1530
	if (!skb)
1531 1532
		return -ENOMEM;

1533
	led = (struct p54_led *)skb_put(skb, sizeof(*led));
1534 1535 1536 1537
	led->mode = cpu_to_le16(mode);
	led->led_permanent = cpu_to_le16(link);
	led->led_temporary = cpu_to_le16(act);
	led->duration = cpu_to_le16(1000);
C
Christian Lamparter 已提交
1538
	priv->tx(dev, skb, 1);
1539 1540 1541
	return 0;
}

1542
#define P54_SET_QUEUE(queue, ai_fs, cw_min, cw_max, _txop)	\
1543 1544 1545 1546
do {	 							\
	queue.aifs = cpu_to_le16(ai_fs);			\
	queue.cwmin = cpu_to_le16(cw_min);			\
	queue.cwmax = cpu_to_le16(cw_max);			\
1547
	queue.txop = cpu_to_le16(_txop);			\
1548 1549
} while(0)

C
Christian Lamparter 已提交
1550
static int p54_set_edcf(struct ieee80211_hw *dev)
1551 1552
{
	struct p54_common *priv = dev->priv;
C
Christian Lamparter 已提交
1553
	struct sk_buff *skb;
C
Christian Lamparter 已提交
1554
	struct p54_edcf *edcf;
1555

1556 1557 1558
	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*edcf) +
			sizeof(struct p54_hdr), P54_CONTROL_TYPE_DCFINIT,
			GFP_ATOMIC);
C
Christian Lamparter 已提交
1559
	if (!skb)
C
Christian Lamparter 已提交
1560 1561
		return -ENOMEM;

C
Christian Lamparter 已提交
1562
	edcf = (struct p54_edcf *)skb_put(skb, sizeof(*edcf));
1563
	if (priv->use_short_slot) {
C
Christian Lamparter 已提交
1564 1565 1566
		edcf->slottime = 9;
		edcf->sifs = 0x10;
		edcf->eofpad = 0x00;
1567
	} else {
C
Christian Lamparter 已提交
1568 1569 1570
		edcf->slottime = 20;
		edcf->sifs = 0x0a;
		edcf->eofpad = 0x06;
1571 1572
	}
	/* (see prism54/isl_oid.h for further details) */
C
Christian Lamparter 已提交
1573 1574
	edcf->frameburst = cpu_to_le16(0);
	edcf->round_trip_delay = cpu_to_le16(0);
C
Chr 已提交
1575
	edcf->flags = 0;
C
Christian Lamparter 已提交
1576 1577
	memset(edcf->mapping, 0, sizeof(edcf->mapping));
	memcpy(edcf->queue, priv->qos_params, sizeof(edcf->queue));
C
Christian Lamparter 已提交
1578
	priv->tx(dev, skb, 1);
C
Christian Lamparter 已提交
1579
	return 0;
1580 1581
}

1582
static int p54_init_stats(struct ieee80211_hw *dev)
1583 1584
{
	struct p54_common *priv = dev->priv;
1585

1586 1587 1588
	priv->cached_stats = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL,
			sizeof(struct p54_hdr) + sizeof(struct p54_statistics),
			P54_CONTROL_TYPE_STAT_READBACK, GFP_KERNEL);
1589
	if (!priv->cached_stats)
1590
			return -ENOMEM;
1591 1592 1593 1594 1595

	mod_timer(&priv->stats_timer, jiffies + HZ);
	return 0;
}

C
Christian Lamparter 已提交
1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606
static int p54_beacon_tim(struct sk_buff *skb)
{
	/*
	 * the good excuse for this mess is ... the firmware.
	 * The dummy TIM MUST be at the end of the beacon frame,
	 * because it'll be overwritten!
	 */

	struct ieee80211_mgmt *mgmt = (void *)skb->data;
	u8 *pos, *end;

C
Christian Lamparter 已提交
1607
	if (skb->len <= sizeof(mgmt))
C
Christian Lamparter 已提交
1608 1609 1610 1611 1612
		return -EINVAL;

	pos = (u8 *)mgmt->u.beacon.variable;
	end = skb->data + skb->len;
	while (pos < end) {
C
Christian Lamparter 已提交
1613
		if (pos + 2 + pos[1] > end)
C
Christian Lamparter 已提交
1614 1615 1616 1617 1618 1619 1620
			return -EINVAL;

		if (pos[0] == WLAN_EID_TIM) {
			u8 dtim_len = pos[1];
			u8 dtim_period = pos[3];
			u8 *next = pos + 2 + dtim_len;

C
Christian Lamparter 已提交
1621
			if (dtim_len < 3)
C
Christian Lamparter 已提交
1622
				return -EINVAL;
C
Christian Lamparter 已提交
1623

C
Christian Lamparter 已提交
1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
			memmove(pos, next, end - next);

			if (dtim_len > 3)
				skb_trim(skb, skb->len - (dtim_len - 3));

			pos = end - (dtim_len + 2);

			/* add the dummy at the end */
			pos[0] = WLAN_EID_TIM;
			pos[1] = 3;
			pos[2] = 0;
			pos[3] = dtim_period;
			pos[4] = 0;
			return 0;
		}
		pos += 2 + pos[1];
	}
	return 0;
}

static int p54_beacon_update(struct ieee80211_hw *dev,
			struct ieee80211_vif *vif)
{
	struct p54_common *priv = dev->priv;
	struct sk_buff *beacon;
	int ret;

	if (priv->cached_beacon) {
		p54_tx_cancel(dev, priv->cached_beacon);
		/* wait for the last beacon the be freed */
		msleep(10);
	}

	beacon = ieee80211_beacon_get(dev, vif);
	if (!beacon)
		return -ENOMEM;
	ret = p54_beacon_tim(beacon);
	if (ret)
		return ret;
	ret = p54_tx(dev, beacon);
	if (ret)
		return ret;
	priv->cached_beacon = beacon;
	priv->tsf_high32 = 0;
	priv->tsf_low32 = 0;

	return 0;
}

1673 1674 1675 1676
static int p54_start(struct ieee80211_hw *dev)
{
	struct p54_common *priv = dev->priv;
	int err;
1677

1678
	mutex_lock(&priv->conf_mutex);
1679
	err = priv->open(dev);
1680 1681
	if (err)
		goto out;
C
Christian Lamparter 已提交
1682 1683 1684 1685 1686
	P54_SET_QUEUE(priv->qos_params[0], 0x0002, 0x0003, 0x0007, 47);
	P54_SET_QUEUE(priv->qos_params[1], 0x0002, 0x0007, 0x000f, 94);
	P54_SET_QUEUE(priv->qos_params[2], 0x0003, 0x000f, 0x03ff, 0);
	P54_SET_QUEUE(priv->qos_params[3], 0x0007, 0x000f, 0x03ff, 0);
	err = p54_set_edcf(dev);
1687 1688 1689 1690 1691
	if (err)
		goto out;
	err = p54_init_stats(dev);
	if (err)
		goto out;
C
Christian Lamparter 已提交
1692 1693

	memset(priv->bssid, ~0, ETH_ALEN);
1694
	priv->mode = NL80211_IFTYPE_MONITOR;
C
Christian Lamparter 已提交
1695 1696 1697 1698 1699
	err = p54_setup_mac(dev);
	if (err) {
		priv->mode = NL80211_IFTYPE_UNSPECIFIED;
		goto out;
	}
1700

1701
out:
1702
	mutex_unlock(&priv->conf_mutex);
1703 1704 1705 1706 1707 1708 1709
	return err;
}

static void p54_stop(struct ieee80211_hw *dev)
{
	struct p54_common *priv = dev->priv;
	struct sk_buff *skb;
1710

1711
	mutex_lock(&priv->conf_mutex);
1712
	priv->mode = NL80211_IFTYPE_UNSPECIFIED;
1713
	del_timer(&priv->stats_timer);
C
Christian Lamparter 已提交
1714
	p54_free_skb(dev, priv->cached_stats);
1715
	priv->cached_stats = NULL;
C
Christian Lamparter 已提交
1716 1717 1718
	if (priv->cached_beacon)
		p54_tx_cancel(dev, priv->cached_beacon);

1719
	priv->stop(dev);
1720
	while ((skb = skb_dequeue(&priv->tx_queue)))
1721
		kfree_skb(skb);
C
Christian Lamparter 已提交
1722
	priv->cached_beacon = NULL;
C
Christian Lamparter 已提交
1723
	priv->tsf_high32 = priv->tsf_low32 = 0;
1724
	mutex_unlock(&priv->conf_mutex);
1725 1726
}

1727 1728 1729 1730 1731
static int p54_add_interface(struct ieee80211_hw *dev,
			     struct ieee80211_if_init_conf *conf)
{
	struct p54_common *priv = dev->priv;

1732 1733 1734
	mutex_lock(&priv->conf_mutex);
	if (priv->mode != NL80211_IFTYPE_MONITOR) {
		mutex_unlock(&priv->conf_mutex);
1735
		return -EOPNOTSUPP;
1736
	}
1737 1738

	switch (conf->type) {
1739
	case NL80211_IFTYPE_STATION:
C
Christian Lamparter 已提交
1740 1741
	case NL80211_IFTYPE_ADHOC:
	case NL80211_IFTYPE_AP:
1742
	case NL80211_IFTYPE_MESH_POINT:
1743 1744 1745
		priv->mode = conf->type;
		break;
	default:
1746
		mutex_unlock(&priv->conf_mutex);
1747 1748 1749
		return -EOPNOTSUPP;
	}

1750
	memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
C
Christian Lamparter 已提交
1751
	p54_setup_mac(dev);
1752
	p54_set_leds(dev, 1, 0, 0);
1753
	mutex_unlock(&priv->conf_mutex);
1754 1755 1756 1757 1758 1759 1760
	return 0;
}

static void p54_remove_interface(struct ieee80211_hw *dev,
				 struct ieee80211_if_init_conf *conf)
{
	struct p54_common *priv = dev->priv;
1761 1762

	mutex_lock(&priv->conf_mutex);
C
Christian Lamparter 已提交
1763 1764
	if (priv->cached_beacon)
		p54_tx_cancel(dev, priv->cached_beacon);
1765
	priv->mode = NL80211_IFTYPE_MONITOR;
1766
	memset(priv->mac_addr, 0, ETH_ALEN);
C
Christian Lamparter 已提交
1767 1768
	memset(priv->bssid, 0, ETH_ALEN);
	p54_setup_mac(dev);
1769
	mutex_unlock(&priv->conf_mutex);
1770 1771
}

1772
static int p54_config(struct ieee80211_hw *dev, u32 changed)
1773 1774
{
	int ret;
1775
	struct p54_common *priv = dev->priv;
1776
	struct ieee80211_conf *conf = &dev->conf;
1777

1778
	mutex_lock(&priv->conf_mutex);
C
Christian Lamparter 已提交
1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
	if (changed & IEEE80211_CONF_CHANGE_POWER)
		priv->output_power = conf->power_level << 2;
	if (changed & IEEE80211_CONF_CHANGE_RADIO_ENABLED) {
		ret = p54_setup_mac(dev);
		if (ret)
			goto out;
	}
	if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
		ret = p54_scan(dev, P54_SCAN_EXIT, 0,
			       conf->channel->center_freq);
		if (ret)
			goto out;
	}

out:
1794
	mutex_unlock(&priv->conf_mutex);
1795 1796 1797
	return ret;
}

1798 1799
static int p54_config_interface(struct ieee80211_hw *dev,
				struct ieee80211_vif *vif,
1800 1801 1802
				struct ieee80211_if_conf *conf)
{
	struct p54_common *priv = dev->priv;
C
Christian Lamparter 已提交
1803
	int ret = 0;
1804

1805
	mutex_lock(&priv->conf_mutex);
C
Christian Lamparter 已提交
1806 1807 1808
	if (conf->changed & IEEE80211_IFCC_BSSID) {
		memcpy(priv->bssid, conf->bssid, ETH_ALEN);
		ret = p54_setup_mac(dev);
C
Christian Lamparter 已提交
1809 1810
		if (ret)
			goto out;
C
Christian Lamparter 已提交
1811 1812 1813 1814 1815
	}

	if (conf->changed & IEEE80211_IFCC_BEACON) {
		ret = p54_scan(dev, P54_SCAN_EXIT, 0,
			       dev->conf.channel->center_freq);
C
Christian Lamparter 已提交
1816 1817
		if (ret)
			goto out;
C
Christian Lamparter 已提交
1818
		ret = p54_setup_mac(dev);
C
Christian Lamparter 已提交
1819 1820
		if (ret)
			goto out;
C
Christian Lamparter 已提交
1821 1822 1823 1824
		ret = p54_beacon_update(dev, vif);
		if (ret)
			goto out;
		ret = p54_set_edcf(dev);
C
Christian Lamparter 已提交
1825 1826 1827
		if (ret)
			goto out;
	}
C
Christian Lamparter 已提交
1828 1829 1830

	ret = p54_set_leds(dev, 1, !is_multicast_ether_addr(priv->bssid), 0);

C
Christian Lamparter 已提交
1831
out:
1832
	mutex_unlock(&priv->conf_mutex);
C
Christian Lamparter 已提交
1833
	return ret;
1834 1835
}

1836 1837 1838 1839 1840 1841 1842
static void p54_configure_filter(struct ieee80211_hw *dev,
				 unsigned int changed_flags,
				 unsigned int *total_flags,
				 int mc_count, struct dev_mc_list *mclist)
{
	struct p54_common *priv = dev->priv;

C
Christian Lamparter 已提交
1843 1844 1845
	*total_flags &= FIF_PROMISC_IN_BSS |
			(*total_flags & FIF_PROMISC_IN_BSS) ?
				FIF_FCSFAIL : 0;
C
Christian Lamparter 已提交
1846 1847

	priv->filter_flags = *total_flags;
1848

C
Christian Lamparter 已提交
1849 1850
	if (changed_flags & FIF_PROMISC_IN_BSS)
		p54_setup_mac(dev);
1851 1852
}

J
Johannes Berg 已提交
1853
static int p54_conf_tx(struct ieee80211_hw *dev, u16 queue,
1854 1855 1856
		       const struct ieee80211_tx_queue_params *params)
{
	struct p54_common *priv = dev->priv;
1857
	int ret;
1858

1859
	mutex_lock(&priv->conf_mutex);
1860
	if ((params) && !(queue > 4)) {
C
Christian Lamparter 已提交
1861
		P54_SET_QUEUE(priv->qos_params[queue], params->aifs,
1862
			params->cw_min, params->cw_max, params->txop);
C
Christian Lamparter 已提交
1863
		ret = p54_set_edcf(dev);
1864
	} else
1865 1866 1867
		ret = -EINVAL;
	mutex_unlock(&priv->conf_mutex);
	return ret;
1868 1869
}

1870 1871 1872
static int p54_init_xbow_synth(struct ieee80211_hw *dev)
{
	struct p54_common *priv = dev->priv;
C
Christian Lamparter 已提交
1873
	struct sk_buff *skb;
1874
	struct p54_xbow_synth *xbow;
1875

1876 1877 1878
	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*xbow) +
			    sizeof(struct p54_hdr),
			    P54_CONTROL_TYPE_XBOW_SYNTH_CFG,
C
Christian Lamparter 已提交
1879 1880
			    GFP_KERNEL);
	if (!skb)
1881 1882
		return -ENOMEM;

1883
	xbow = (struct p54_xbow_synth *)skb_put(skb, sizeof(*xbow));
1884 1885 1886
	xbow->magic1 = cpu_to_le16(0x1);
	xbow->magic2 = cpu_to_le16(0x2);
	xbow->freq = cpu_to_le16(5390);
C
Christian Lamparter 已提交
1887 1888
	memset(xbow->padding, 0, sizeof(xbow->padding));
	priv->tx(dev, skb, 1);
1889 1890 1891
	return 0;
}

1892 1893 1894 1895 1896 1897 1898
static void p54_statistics_timer(unsigned long data)
{
	struct ieee80211_hw *dev = (struct ieee80211_hw *) data;
	struct p54_common *priv = dev->priv;

	BUG_ON(!priv->cached_stats);

C
Christian Lamparter 已提交
1899
	priv->tx(dev, priv->cached_stats, 0);
1900 1901
}

1902 1903 1904
static int p54_get_stats(struct ieee80211_hw *dev,
			 struct ieee80211_low_level_stats *stats)
{
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917
	struct p54_common *priv = dev->priv;

	del_timer(&priv->stats_timer);
	p54_statistics_timer((unsigned long)dev);

	if (!wait_for_completion_interruptible_timeout(&priv->stats_comp, HZ)) {
		printk(KERN_ERR "%s: device does not respond!\n",
			wiphy_name(dev->wiphy));
		return -EBUSY;
	}

	memcpy(stats, &priv->stats, sizeof(*stats));

1918 1919 1920 1921 1922 1923 1924 1925
	return 0;
}

static int p54_get_tx_stats(struct ieee80211_hw *dev,
			    struct ieee80211_tx_queue_stats *stats)
{
	struct p54_common *priv = dev->priv;

C
Chr 已提交
1926
	memcpy(stats, &priv->tx_stats[4], sizeof(stats[0]) * dev->queues);
1927 1928 1929 1930

	return 0;
}

1931 1932 1933 1934 1935 1936 1937 1938 1939
static void p54_bss_info_changed(struct ieee80211_hw *dev,
				 struct ieee80211_vif *vif,
				 struct ieee80211_bss_conf *info,
				 u32 changed)
{
	struct p54_common *priv = dev->priv;

	if (changed & BSS_CHANGED_ERP_SLOT) {
		priv->use_short_slot = info->use_short_slot;
C
Christian Lamparter 已提交
1940
		p54_set_edcf(dev);
1941
	}
1942 1943 1944 1945 1946
	if (changed & BSS_CHANGED_BASIC_RATES) {
		if (dev->conf.channel->band == IEEE80211_BAND_5GHZ)
			priv->basic_rate_mask = (info->basic_rates << 4);
		else
			priv->basic_rate_mask = info->basic_rates;
C
Christian Lamparter 已提交
1947
		p54_setup_mac(dev);
1948
		if (priv->fw_var >= 0x500)
C
Christian Lamparter 已提交
1949 1950
			p54_scan(dev, P54_SCAN_EXIT, 0,
				 dev->conf.channel->center_freq);
1951 1952 1953 1954 1955 1956
	}
	if (changed & BSS_CHANGED_ASSOC) {
		if (info->assoc) {
			priv->aid = info->aid;
			priv->wakeup_timer = info->beacon_int *
					     info->dtim_period * 5;
C
Christian Lamparter 已提交
1957
			p54_setup_mac(dev);
1958 1959 1960
		}
	}

1961 1962
}

1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
static int p54_set_key(struct ieee80211_hw *dev, enum set_key_cmd cmd,
		       const u8 *local_address, const u8 *address,
		       struct ieee80211_key_conf *key)
{
	struct p54_common *priv = dev->priv;
	struct sk_buff *skb;
	struct p54_keycache *rxkey;
	u8 algo = 0;

	if (modparam_nohwcrypt)
		return -EOPNOTSUPP;

	if (cmd == DISABLE_KEY)
		algo = 0;
	else {
		switch (key->alg) {
		case ALG_TKIP:
			if (!(priv->privacy_caps & (BR_DESC_PRIV_CAP_MICHAEL |
			      BR_DESC_PRIV_CAP_TKIP)))
				return -EOPNOTSUPP;
			key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
			algo = P54_CRYPTO_TKIPMICHAEL;
			break;
		case ALG_WEP:
			if (!(priv->privacy_caps & BR_DESC_PRIV_CAP_WEP))
				return -EOPNOTSUPP;
			key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
			algo = P54_CRYPTO_WEP;
			break;
		case ALG_CCMP:
			if (!(priv->privacy_caps & BR_DESC_PRIV_CAP_AESCCMP))
				return -EOPNOTSUPP;
			key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
			algo = P54_CRYPTO_AESCCMP;
			break;
		default:
			return -EINVAL;
		}
	}

	if (key->keyidx > priv->rx_keycache_size) {
		/*
		 * The device supports the choosen algorithm, but the firmware
		 * does not provide enough key slots to store all of them.
		 * So, incoming frames have to be decoded by the mac80211 stack,
		 * but we can still offload encryption for outgoing frames.
		 */

		return 0;
	}

	mutex_lock(&priv->conf_mutex);
	skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*rxkey) +
			sizeof(struct p54_hdr),	P54_CONTROL_TYPE_RX_KEYCACHE,
			GFP_ATOMIC);
	if (!skb) {
		mutex_unlock(&priv->conf_mutex);
		return -ENOMEM;
	}

	/* TODO: some devices have 4 more free slots for rx keys */
	rxkey = (struct p54_keycache *)skb_put(skb, sizeof(*rxkey));
	rxkey->entry = key->keyidx;
	rxkey->key_id = key->keyidx;
	rxkey->key_type = algo;
	if (address)
		memcpy(rxkey->mac, address, ETH_ALEN);
	else
		memset(rxkey->mac, ~0, ETH_ALEN);
	if (key->alg != ALG_TKIP) {
		rxkey->key_len = min((u8)16, key->keylen);
		memcpy(rxkey->key, key->key, rxkey->key_len);
	} else {
		rxkey->key_len = 24;
		memcpy(rxkey->key, key->key, 16);
		memcpy(&(rxkey->key[16]), &(key->key
			[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY]), 8);
	}

	priv->tx(dev, skb, 1);
	mutex_unlock(&priv->conf_mutex);
	return 0;
}

2047 2048
static const struct ieee80211_ops p54_ops = {
	.tx			= p54_tx,
2049 2050
	.start			= p54_start,
	.stop			= p54_stop,
2051 2052
	.add_interface		= p54_add_interface,
	.remove_interface	= p54_remove_interface,
C
Christian Lamparter 已提交
2053
	.set_tim		= p54_set_tim,
2054
	.sta_notify		= p54_sta_notify,
2055
	.set_key		= p54_set_key,
2056 2057
	.config			= p54_config,
	.config_interface	= p54_config_interface,
2058
	.bss_info_changed	= p54_bss_info_changed,
2059
	.configure_filter	= p54_configure_filter,
2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074
	.conf_tx		= p54_conf_tx,
	.get_stats		= p54_get_stats,
	.get_tx_stats		= p54_get_tx_stats
};

struct ieee80211_hw *p54_init_common(size_t priv_data_len)
{
	struct ieee80211_hw *dev;
	struct p54_common *priv;

	dev = ieee80211_alloc_hw(priv_data_len, &p54_ops);
	if (!dev)
		return NULL;

	priv = dev->priv;
2075
	priv->mode = NL80211_IFTYPE_UNSPECIFIED;
2076
	priv->basic_rate_mask = 0x15f;
2077
	skb_queue_head_init(&priv->tx_queue);
2078
	dev->flags = IEEE80211_HW_RX_INCLUDES_FCS |
2079 2080
		     IEEE80211_HW_SIGNAL_DBM |
		     IEEE80211_HW_NOISE_DBM;
2081

2082 2083 2084 2085
	dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
				      BIT(NL80211_IFTYPE_ADHOC) |
				      BIT(NL80211_IFTYPE_AP) |
				      BIT(NL80211_IFTYPE_MESH_POINT);
2086

2087
	dev->channel_change_time = 1000;	/* TODO: find actual value */
2088 2089 2090 2091 2092
	priv->tx_stats[0].limit = 1;		/* Beacon queue */
	priv->tx_stats[1].limit = 1;		/* Probe queue for HW scan */
	priv->tx_stats[2].limit = 3;		/* queue for MLMEs */
	priv->tx_stats[3].limit = 3;		/* Broadcast / MC queue */
	priv->tx_stats[4].limit = 5;		/* Data */
2093
	dev->queues = 1;
2094
	priv->noise = -94;
J
Johannes Berg 已提交
2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
	/*
	 * We support at most 8 tries no matter which rate they're at,
	 * we cannot support max_rates * max_rate_tries as we set it
	 * here, but setting it correctly to 4/2 or so would limit us
	 * artificially if the RC algorithm wants just two rates, so
	 * let's say 4/7, we'll redistribute it at TX time, see the
	 * comments there.
	 */
	dev->max_rates = 4;
	dev->max_rate_tries = 7;
2105 2106
	dev->extra_tx_headroom = sizeof(struct p54_hdr) + 4 +
				 sizeof(struct p54_tx_data);
2107

2108
	mutex_init(&priv->conf_mutex);
2109
	init_completion(&priv->eeprom_comp);
2110 2111 2112
	init_completion(&priv->stats_comp);
	setup_timer(&priv->stats_timer, p54_statistics_timer,
		(unsigned long)dev);
2113 2114 2115 2116 2117 2118 2119 2120

	return dev;
}
EXPORT_SYMBOL_GPL(p54_init_common);

void p54_free_common(struct ieee80211_hw *dev)
{
	struct p54_common *priv = dev->priv;
C
Christian Lamparter 已提交
2121 2122
	del_timer(&priv->stats_timer);
	kfree_skb(priv->cached_stats);
2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139
	kfree(priv->iq_autocal);
	kfree(priv->output_limit);
	kfree(priv->curve_data);
}
EXPORT_SYMBOL_GPL(p54_free_common);

static int __init p54_init(void)
{
	return 0;
}

static void __exit p54_exit(void)
{
}

module_init(p54_init);
module_exit(p54_exit);