desc.c 17.7 KB
Newer Older
N
Nick Kossifidis 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * Copyright (c) 2004-2008 Reyk Floeter <reyk@openbsd.org>
 * Copyright (c) 2006-2008 Nick Kossifidis <mickflemm@gmail.com>
 * Copyright (c) 2007-2008 Pavel Roskin <proski@gnu.org>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 */

/******************************\
 Hardware Descriptor Functions
\******************************/

#include "ath5k.h"
#include "reg.h"
#include "debug.h"
#include "base.h"

29 30 31 32

/************************\
* TX Control descriptors *
\************************/
N
Nick Kossifidis 已提交
33 34 35 36 37 38

/*
 * Initialize the 2-word tx control descriptor on 5210/5211
 */
static int
ath5k_hw_setup_2word_tx_desc(struct ath5k_hw *ah, struct ath5k_desc *desc,
39 40
	unsigned int pkt_len, unsigned int hdr_len, int padsize,
	enum ath5k_pkt_type type,
N
Nick Kossifidis 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53
	unsigned int tx_power, unsigned int tx_rate0, unsigned int tx_tries0,
	unsigned int key_index, unsigned int antenna_mode, unsigned int flags,
	unsigned int rtscts_rate, unsigned int rtscts_duration)
{
	u32 frame_type;
	struct ath5k_hw_2w_tx_ctl *tx_ctl;
	unsigned int frame_len;

	tx_ctl = &desc->ud.ds_tx5210.tx_ctl;

	/*
	 * Validate input
	 * - Zero retries don't make sense.
L
Lucas De Marchi 已提交
54
	 * - A zero rate will put the HW into a mode where it continuously sends
N
Nick Kossifidis 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
	 *   noise on the channel, so it is important to avoid this.
	 */
	if (unlikely(tx_tries0 == 0)) {
		ATH5K_ERR(ah->ah_sc, "zero retries\n");
		WARN_ON(1);
		return -EINVAL;
	}
	if (unlikely(tx_rate0 == 0)) {
		ATH5K_ERR(ah->ah_sc, "zero rate\n");
		WARN_ON(1);
		return -EINVAL;
	}

	/* Clear descriptor */
	memset(&desc->ud.ds_tx5210, 0, sizeof(struct ath5k_hw_5210_tx_desc));

	/* Setup control descriptor */

	/* Verify and set frame length */

	/* remove padding we might have added before */
76
	frame_len = pkt_len - padsize + FCS_LEN;
N
Nick Kossifidis 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

	if (frame_len & ~AR5K_2W_TX_DESC_CTL0_FRAME_LEN)
		return -EINVAL;

	tx_ctl->tx_control_0 = frame_len & AR5K_2W_TX_DESC_CTL0_FRAME_LEN;

	/* Verify and set buffer length */

	/* NB: beacon's BufLen must be a multiple of 4 bytes */
	if (type == AR5K_PKT_TYPE_BEACON)
		pkt_len = roundup(pkt_len, 4);

	if (pkt_len & ~AR5K_2W_TX_DESC_CTL1_BUF_LEN)
		return -EINVAL;

	tx_ctl->tx_control_1 = pkt_len & AR5K_2W_TX_DESC_CTL1_BUF_LEN;

	/*
95
	 * Verify and set header length (only 5210)
N
Nick Kossifidis 已提交
96 97
	 */
	if (ah->ah_version == AR5K_AR5210) {
98
		if (hdr_len & ~AR5K_2W_TX_DESC_CTL0_HEADER_LEN_5210)
N
Nick Kossifidis 已提交
99 100
			return -EINVAL;
		tx_ctl->tx_control_0 |=
101
			AR5K_REG_SM(hdr_len, AR5K_2W_TX_DESC_CTL0_HEADER_LEN_5210);
N
Nick Kossifidis 已提交
102 103
	}

104
	/*Differences between 5210-5211*/
N
Nick Kossifidis 已提交
105 106 107 108 109 110 111 112
	if (ah->ah_version == AR5K_AR5210) {
		switch (type) {
		case AR5K_PKT_TYPE_BEACON:
		case AR5K_PKT_TYPE_PROBE_RESP:
			frame_type = AR5K_AR5210_TX_DESC_FRAME_TYPE_NO_DELAY;
		case AR5K_PKT_TYPE_PIFS:
			frame_type = AR5K_AR5210_TX_DESC_FRAME_TYPE_PIFS;
		default:
113
			frame_type = type;
N
Nick Kossifidis 已提交
114 115 116
		}

		tx_ctl->tx_control_0 |=
117
		AR5K_REG_SM(frame_type, AR5K_2W_TX_DESC_CTL0_FRAME_TYPE_5210) |
N
Nick Kossifidis 已提交
118 119 120 121 122 123 124 125
		AR5K_REG_SM(tx_rate0, AR5K_2W_TX_DESC_CTL0_XMIT_RATE);

	} else {
		tx_ctl->tx_control_0 |=
			AR5K_REG_SM(tx_rate0, AR5K_2W_TX_DESC_CTL0_XMIT_RATE) |
			AR5K_REG_SM(antenna_mode,
				AR5K_2W_TX_DESC_CTL0_ANT_MODE_XMIT);
		tx_ctl->tx_control_1 |=
126
			AR5K_REG_SM(type, AR5K_2W_TX_DESC_CTL1_FRAME_TYPE_5211);
N
Nick Kossifidis 已提交
127
	}
128

N
Nick Kossifidis 已提交
129 130 131 132 133
#define _TX_FLAGS(_c, _flag)					\
	if (flags & AR5K_TXDESC_##_flag) {			\
		tx_ctl->tx_control_##_c |=			\
			AR5K_2W_TX_DESC_CTL##_c##_##_flag;	\
	}
134 135 136 137 138
#define _TX_FLAGS_5211(_c, _flag)					\
	if (flags & AR5K_TXDESC_##_flag) {				\
		tx_ctl->tx_control_##_c |=				\
			AR5K_2W_TX_DESC_CTL##_c##_##_flag##_5211;	\
	}
N
Nick Kossifidis 已提交
139 140 141
	_TX_FLAGS(0, CLRDMASK);
	_TX_FLAGS(0, INTREQ);
	_TX_FLAGS(0, RTSENA);
142 143 144 145 146

	if (ah->ah_version == AR5K_AR5211) {
		_TX_FLAGS_5211(0, VEOL);
		_TX_FLAGS_5211(1, NOACK);
	}
N
Nick Kossifidis 已提交
147 148

#undef _TX_FLAGS
149
#undef _TX_FLAGS_5211
N
Nick Kossifidis 已提交
150 151 152 153 154 155 156 157 158

	/*
	 * WEP crap
	 */
	if (key_index != AR5K_TXKEYIX_INVALID) {
		tx_ctl->tx_control_0 |=
			AR5K_2W_TX_DESC_CTL0_ENCRYPT_KEY_VALID;
		tx_ctl->tx_control_1 |=
			AR5K_REG_SM(key_index,
159
			AR5K_2W_TX_DESC_CTL1_ENC_KEY_IDX);
N
Nick Kossifidis 已提交
160 161 162 163 164 165 166 167
	}

	/*
	 * RTS/CTS Duration [5210 ?]
	 */
	if ((ah->ah_version == AR5K_AR5210) &&
			(flags & (AR5K_TXDESC_RTSENA | AR5K_TXDESC_CTSENA)))
		tx_ctl->tx_control_1 |= rtscts_duration &
168
				AR5K_2W_TX_DESC_CTL1_RTS_DURATION_5210;
N
Nick Kossifidis 已提交
169 170 171 172 173 174 175 176 177

	return 0;
}

/*
 * Initialize the 4-word tx control descriptor on 5212
 */
static int ath5k_hw_setup_4word_tx_desc(struct ath5k_hw *ah,
	struct ath5k_desc *desc, unsigned int pkt_len, unsigned int hdr_len,
178
	int padsize,
N
Nick Kossifidis 已提交
179 180 181 182 183 184 185 186 187
	enum ath5k_pkt_type type, unsigned int tx_power, unsigned int tx_rate0,
	unsigned int tx_tries0, unsigned int key_index,
	unsigned int antenna_mode, unsigned int flags,
	unsigned int rtscts_rate,
	unsigned int rtscts_duration)
{
	struct ath5k_hw_4w_tx_ctl *tx_ctl;
	unsigned int frame_len;

188 189 190 191
	/*
	 * Use local variables for these to reduce load/store access on
	 * uncached memory
	 */
192
	u32 txctl0 = 0, txctl1 = 0, txctl2 = 0, txctl3 = 0;
N
Nick Kossifidis 已提交
193 194 195 196 197 198

	tx_ctl = &desc->ud.ds_tx5212.tx_ctl;

	/*
	 * Validate input
	 * - Zero retries don't make sense.
L
Lucas De Marchi 已提交
199
	 * - A zero rate will put the HW into a mode where it continuously sends
N
Nick Kossifidis 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212
	 *   noise on the channel, so it is important to avoid this.
	 */
	if (unlikely(tx_tries0 == 0)) {
		ATH5K_ERR(ah->ah_sc, "zero retries\n");
		WARN_ON(1);
		return -EINVAL;
	}
	if (unlikely(tx_rate0 == 0)) {
		ATH5K_ERR(ah->ah_sc, "zero rate\n");
		WARN_ON(1);
		return -EINVAL;
	}

213 214 215 216
	tx_power += ah->ah_txpower.txp_offset;
	if (tx_power > AR5K_TUNE_MAX_TXPOWER)
		tx_power = AR5K_TUNE_MAX_TXPOWER;

217
	/* Clear descriptor status area */
218 219
	memset(&desc->ud.ds_tx5212.tx_stat, 0,
	       sizeof(desc->ud.ds_tx5212.tx_stat));
N
Nick Kossifidis 已提交
220 221 222 223 224 225

	/* Setup control descriptor */

	/* Verify and set frame length */

	/* remove padding we might have added before */
226
	frame_len = pkt_len - padsize + FCS_LEN;
N
Nick Kossifidis 已提交
227 228 229 230

	if (frame_len & ~AR5K_4W_TX_DESC_CTL0_FRAME_LEN)
		return -EINVAL;

231
	txctl0 = frame_len & AR5K_4W_TX_DESC_CTL0_FRAME_LEN;
N
Nick Kossifidis 已提交
232 233 234 235 236 237 238 239 240 241

	/* Verify and set buffer length */

	/* NB: beacon's BufLen must be a multiple of 4 bytes */
	if (type == AR5K_PKT_TYPE_BEACON)
		pkt_len = roundup(pkt_len, 4);

	if (pkt_len & ~AR5K_4W_TX_DESC_CTL1_BUF_LEN)
		return -EINVAL;

242
	txctl1 = pkt_len & AR5K_4W_TX_DESC_CTL1_BUF_LEN;
N
Nick Kossifidis 已提交
243

244 245 246 247 248
	txctl0 |= AR5K_REG_SM(tx_power, AR5K_4W_TX_DESC_CTL0_XMIT_POWER) |
		  AR5K_REG_SM(antenna_mode, AR5K_4W_TX_DESC_CTL0_ANT_MODE_XMIT);
	txctl1 |= AR5K_REG_SM(type, AR5K_4W_TX_DESC_CTL1_FRAME_TYPE);
	txctl2 = AR5K_REG_SM(tx_tries0, AR5K_4W_TX_DESC_CTL2_XMIT_TRIES0);
	txctl3 = tx_rate0 & AR5K_4W_TX_DESC_CTL3_XMIT_RATE0;
N
Nick Kossifidis 已提交
249 250 251

#define _TX_FLAGS(_c, _flag)					\
	if (flags & AR5K_TXDESC_##_flag) {			\
252
		txctl##_c |= AR5K_4W_TX_DESC_CTL##_c##_##_flag;	\
N
Nick Kossifidis 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
	}

	_TX_FLAGS(0, CLRDMASK);
	_TX_FLAGS(0, VEOL);
	_TX_FLAGS(0, INTREQ);
	_TX_FLAGS(0, RTSENA);
	_TX_FLAGS(0, CTSENA);
	_TX_FLAGS(1, NOACK);

#undef _TX_FLAGS

	/*
	 * WEP crap
	 */
	if (key_index != AR5K_TXKEYIX_INVALID) {
268 269
		txctl0 |= AR5K_4W_TX_DESC_CTL0_ENCRYPT_KEY_VALID;
		txctl1 |= AR5K_REG_SM(key_index,
270
				AR5K_4W_TX_DESC_CTL1_ENCRYPT_KEY_IDX);
N
Nick Kossifidis 已提交
271 272 273 274 275 276 277 278 279
	}

	/*
	 * RTS/CTS
	 */
	if (flags & (AR5K_TXDESC_RTSENA | AR5K_TXDESC_CTSENA)) {
		if ((flags & AR5K_TXDESC_RTSENA) &&
				(flags & AR5K_TXDESC_CTSENA))
			return -EINVAL;
280 281
		txctl2 |= rtscts_duration & AR5K_4W_TX_DESC_CTL2_RTS_DURATION;
		txctl3 |= AR5K_REG_SM(rtscts_rate,
N
Nick Kossifidis 已提交
282 283 284
				AR5K_4W_TX_DESC_CTL3_RTS_CTS_RATE);
	}

285 286 287 288 289
	tx_ctl->tx_control_0 = txctl0;
	tx_ctl->tx_control_1 = txctl1;
	tx_ctl->tx_control_2 = txctl2;
	tx_ctl->tx_control_3 = txctl3;

N
Nick Kossifidis 已提交
290 291 292 293 294 295
	return 0;
}

/*
 * Initialize a 4-word multi rate retry tx control descriptor on 5212
 */
296
int
N
Nick Kossifidis 已提交
297 298 299 300 301 302
ath5k_hw_setup_mrr_tx_desc(struct ath5k_hw *ah, struct ath5k_desc *desc,
	unsigned int tx_rate1, u_int tx_tries1, u_int tx_rate2,
	u_int tx_tries2, unsigned int tx_rate3, u_int tx_tries3)
{
	struct ath5k_hw_4w_tx_ctl *tx_ctl;

303 304 305 306
	/* no mrr support for cards older than 5212 */
	if (ah->ah_version < AR5K_AR5212)
		return 0;

N
Nick Kossifidis 已提交
307 308 309
	/*
	 * Rates can be 0 as long as the retry count is 0 too.
	 * A zero rate and nonzero retry count will put the HW into a mode where
L
Lucas De Marchi 已提交
310
	 * it continuously sends noise on the channel, so it is important to
N
Nick Kossifidis 已提交
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
	 * avoid this.
	 */
	if (unlikely((tx_rate1 == 0 && tx_tries1 != 0) ||
		     (tx_rate2 == 0 && tx_tries2 != 0) ||
		     (tx_rate3 == 0 && tx_tries3 != 0))) {
		ATH5K_ERR(ah->ah_sc, "zero rate\n");
		WARN_ON(1);
		return -EINVAL;
	}

	if (ah->ah_version == AR5K_AR5212) {
		tx_ctl = &desc->ud.ds_tx5212.tx_ctl;

#define _XTX_TRIES(_n)							\
	if (tx_tries##_n) {						\
		tx_ctl->tx_control_2 |=					\
		    AR5K_REG_SM(tx_tries##_n,				\
		    AR5K_4W_TX_DESC_CTL2_XMIT_TRIES##_n);		\
		tx_ctl->tx_control_3 |=					\
		    AR5K_REG_SM(tx_rate##_n,				\
		    AR5K_4W_TX_DESC_CTL3_XMIT_RATE##_n);		\
	}

		_XTX_TRIES(1);
		_XTX_TRIES(2);
		_XTX_TRIES(3);

#undef _XTX_TRIES

		return 1;
	}

	return 0;
}

346 347 348 349 350

/***********************\
* TX Status descriptors *
\***********************/

N
Nick Kossifidis 已提交
351
/*
L
Lucas De Marchi 已提交
352
 * Process the tx status descriptor on 5210/5211
N
Nick Kossifidis 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
 */
static int ath5k_hw_proc_2word_tx_status(struct ath5k_hw *ah,
		struct ath5k_desc *desc, struct ath5k_tx_status *ts)
{
	struct ath5k_hw_2w_tx_ctl *tx_ctl;
	struct ath5k_hw_tx_status *tx_status;

	tx_ctl = &desc->ud.ds_tx5210.tx_ctl;
	tx_status = &desc->ud.ds_tx5210.tx_stat;

	/* No frame has been send or error */
	if (unlikely((tx_status->tx_status_1 & AR5K_DESC_TX_STATUS1_DONE) == 0))
		return -EINPROGRESS;

	/*
	 * Get descriptor status
	 */
	ts->ts_tstamp = AR5K_REG_MS(tx_status->tx_status_0,
		AR5K_DESC_TX_STATUS0_SEND_TIMESTAMP);
	ts->ts_shortretry = AR5K_REG_MS(tx_status->tx_status_0,
		AR5K_DESC_TX_STATUS0_SHORT_RETRY_COUNT);
374
	ts->ts_final_retry = AR5K_REG_MS(tx_status->tx_status_0,
N
Nick Kossifidis 已提交
375 376 377 378 379 380 381 382
		AR5K_DESC_TX_STATUS0_LONG_RETRY_COUNT);
	/*TODO: ts->ts_virtcol + test*/
	ts->ts_seqnum = AR5K_REG_MS(tx_status->tx_status_1,
		AR5K_DESC_TX_STATUS1_SEQ_NUM);
	ts->ts_rssi = AR5K_REG_MS(tx_status->tx_status_1,
		AR5K_DESC_TX_STATUS1_ACK_SIG_STRENGTH);
	ts->ts_antenna = 1;
	ts->ts_status = 0;
383
	ts->ts_final_idx = 0;
N
Nick Kossifidis 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400

	if (!(tx_status->tx_status_0 & AR5K_DESC_TX_STATUS0_FRAME_XMIT_OK)) {
		if (tx_status->tx_status_0 &
				AR5K_DESC_TX_STATUS0_EXCESSIVE_RETRIES)
			ts->ts_status |= AR5K_TXERR_XRETRY;

		if (tx_status->tx_status_0 & AR5K_DESC_TX_STATUS0_FIFO_UNDERRUN)
			ts->ts_status |= AR5K_TXERR_FIFO;

		if (tx_status->tx_status_0 & AR5K_DESC_TX_STATUS0_FILTERED)
			ts->ts_status |= AR5K_TXERR_FILT;
	}

	return 0;
}

/*
L
Lucas De Marchi 已提交
401
 * Process a tx status descriptor on 5212
N
Nick Kossifidis 已提交
402 403 404 405 406 407
 */
static int ath5k_hw_proc_4word_tx_status(struct ath5k_hw *ah,
		struct ath5k_desc *desc, struct ath5k_tx_status *ts)
{
	struct ath5k_hw_4w_tx_ctl *tx_ctl;
	struct ath5k_hw_tx_status *tx_status;
408
	u32 txstat0, txstat1;
N
Nick Kossifidis 已提交
409 410 411 412

	tx_ctl = &desc->ud.ds_tx5212.tx_ctl;
	tx_status = &desc->ud.ds_tx5212.tx_stat;

413 414
	txstat1 = ACCESS_ONCE(tx_status->tx_status_1);

N
Nick Kossifidis 已提交
415
	/* No frame has been send or error */
416
	if (unlikely(!(txstat1 & AR5K_DESC_TX_STATUS1_DONE)))
N
Nick Kossifidis 已提交
417 418
		return -EINPROGRESS;

419 420
	txstat0 = ACCESS_ONCE(tx_status->tx_status_0);

N
Nick Kossifidis 已提交
421 422 423
	/*
	 * Get descriptor status
	 */
424
	ts->ts_tstamp = AR5K_REG_MS(txstat0,
N
Nick Kossifidis 已提交
425
		AR5K_DESC_TX_STATUS0_SEND_TIMESTAMP);
426
	ts->ts_shortretry = AR5K_REG_MS(txstat0,
N
Nick Kossifidis 已提交
427
		AR5K_DESC_TX_STATUS0_SHORT_RETRY_COUNT);
428
	ts->ts_final_retry = AR5K_REG_MS(txstat0,
N
Nick Kossifidis 已提交
429
		AR5K_DESC_TX_STATUS0_LONG_RETRY_COUNT);
430
	ts->ts_seqnum = AR5K_REG_MS(txstat1,
N
Nick Kossifidis 已提交
431
		AR5K_DESC_TX_STATUS1_SEQ_NUM);
432
	ts->ts_rssi = AR5K_REG_MS(txstat1,
N
Nick Kossifidis 已提交
433
		AR5K_DESC_TX_STATUS1_ACK_SIG_STRENGTH);
434
	ts->ts_antenna = (txstat1 &
435
		AR5K_DESC_TX_STATUS1_XMIT_ANTENNA_5212) ? 2 : 1;
N
Nick Kossifidis 已提交
436 437
	ts->ts_status = 0;

438
	ts->ts_final_idx = AR5K_REG_MS(txstat1,
439
			AR5K_DESC_TX_STATUS1_FINAL_TS_IX_5212);
440

N
Nick Kossifidis 已提交
441
	/* TX error */
442 443
	if (!(txstat0 & AR5K_DESC_TX_STATUS0_FRAME_XMIT_OK)) {
		if (txstat0 & AR5K_DESC_TX_STATUS0_EXCESSIVE_RETRIES)
N
Nick Kossifidis 已提交
444 445
			ts->ts_status |= AR5K_TXERR_XRETRY;

446
		if (txstat0 & AR5K_DESC_TX_STATUS0_FIFO_UNDERRUN)
N
Nick Kossifidis 已提交
447 448
			ts->ts_status |= AR5K_TXERR_FIFO;

449
		if (txstat0 & AR5K_DESC_TX_STATUS0_FILTERED)
N
Nick Kossifidis 已提交
450 451 452 453 454 455
			ts->ts_status |= AR5K_TXERR_FILT;
	}

	return 0;
}

456 457 458 459

/****************\
* RX Descriptors *
\****************/
N
Nick Kossifidis 已提交
460 461 462 463

/*
 * Initialize an rx control descriptor
 */
464 465
int ath5k_hw_setup_rx_desc(struct ath5k_hw *ah, struct ath5k_desc *desc,
			   u32 size, unsigned int flags)
N
Nick Kossifidis 已提交
466 467 468 469 470 471 472 473 474 475 476 477 478 479
{
	struct ath5k_hw_rx_ctl *rx_ctl;

	rx_ctl = &desc->ud.ds_rx.rx_ctl;

	/*
	 * Clear the descriptor
	 * If we don't clean the status descriptor,
	 * while scanning we get too many results,
	 * most of them virtual, after some secs
	 * of scanning system hangs. M.F.
	*/
	memset(&desc->ud.ds_rx, 0, sizeof(struct ath5k_hw_all_rx_desc));

480 481 482
	if (unlikely(size & ~AR5K_DESC_RX_CTL1_BUF_LEN))
		return -EINVAL;

N
Nick Kossifidis 已提交
483 484 485 486 487 488 489 490 491 492
	/* Setup descriptor */
	rx_ctl->rx_control_1 = size & AR5K_DESC_RX_CTL1_BUF_LEN;

	if (flags & AR5K_RXDESC_INTREQ)
		rx_ctl->rx_control_1 |= AR5K_DESC_RX_CTL1_INTREQ;

	return 0;
}

/*
L
Lucas De Marchi 已提交
493
 * Process the rx status descriptor on 5210/5211
N
Nick Kossifidis 已提交
494 495 496 497 498 499
 */
static int ath5k_hw_proc_5210_rx_status(struct ath5k_hw *ah,
		struct ath5k_desc *desc, struct ath5k_rx_status *rs)
{
	struct ath5k_hw_rx_status *rx_status;

500
	rx_status = &desc->ud.ds_rx.rx_stat;
N
Nick Kossifidis 已提交
501 502 503

	/* No frame received / not ready */
	if (unlikely(!(rx_status->rx_status_1 &
504
			AR5K_5210_RX_DESC_STATUS1_DONE)))
N
Nick Kossifidis 已提交
505 506
		return -EINPROGRESS;

507 508
	memset(rs, 0, sizeof(struct ath5k_rx_status));

N
Nick Kossifidis 已提交
509 510 511 512 513 514 515 516 517
	/*
	 * Frame receive status
	 */
	rs->rs_datalen = rx_status->rx_status_0 &
		AR5K_5210_RX_DESC_STATUS0_DATA_LEN;
	rs->rs_rssi = AR5K_REG_MS(rx_status->rx_status_0,
		AR5K_5210_RX_DESC_STATUS0_RECEIVE_SIGNAL);
	rs->rs_rate = AR5K_REG_MS(rx_status->rx_status_0,
		AR5K_5210_RX_DESC_STATUS0_RECEIVE_RATE);
518 519
	rs->rs_more = !!(rx_status->rx_status_0 &
		AR5K_5210_RX_DESC_STATUS0_MORE);
520 521 522 523 524
	/* TODO: this timestamp is 13 bit, later on we assume 15 bit!
	 * also the HAL code for 5210 says the timestamp is bits [10..22] of the
	 * TSF, and extends the timestamp here to 15 bit.
	 * we need to check on 5210...
	 */
N
Nick Kossifidis 已提交
525 526
	rs->rs_tstamp = AR5K_REG_MS(rx_status->rx_status_1,
		AR5K_5210_RX_DESC_STATUS1_RECEIVE_TIMESTAMP);
527 528 529 530 531 532 533 534 535

	if (ah->ah_version == AR5K_AR5211)
		rs->rs_antenna = AR5K_REG_MS(rx_status->rx_status_0,
				AR5K_5210_RX_DESC_STATUS0_RECEIVE_ANT_5211);
	else
		rs->rs_antenna = (rx_status->rx_status_0 &
				AR5K_5210_RX_DESC_STATUS0_RECEIVE_ANT_5210)
				? 2 : 1;

N
Nick Kossifidis 已提交
536 537 538 539 540 541 542 543 544 545 546 547 548
	/*
	 * Key table status
	 */
	if (rx_status->rx_status_1 & AR5K_5210_RX_DESC_STATUS1_KEY_INDEX_VALID)
		rs->rs_keyix = AR5K_REG_MS(rx_status->rx_status_1,
			AR5K_5210_RX_DESC_STATUS1_KEY_INDEX);
	else
		rs->rs_keyix = AR5K_RXKEYIX_INVALID;

	/*
	 * Receive/descriptor errors
	 */
	if (!(rx_status->rx_status_1 &
549
			AR5K_5210_RX_DESC_STATUS1_FRAME_RECEIVE_OK)) {
N
Nick Kossifidis 已提交
550 551 552 553
		if (rx_status->rx_status_1 &
				AR5K_5210_RX_DESC_STATUS1_CRC_ERROR)
			rs->rs_status |= AR5K_RXERR_CRC;

554 555 556 557
		/* only on 5210 */
		if ((ah->ah_version == AR5K_AR5210) &&
		    (rx_status->rx_status_1 &
				AR5K_5210_RX_DESC_STATUS1_FIFO_OVERRUN_5210))
N
Nick Kossifidis 已提交
558 559 560 561 562
			rs->rs_status |= AR5K_RXERR_FIFO;

		if (rx_status->rx_status_1 &
				AR5K_5210_RX_DESC_STATUS1_PHY_ERROR) {
			rs->rs_status |= AR5K_RXERR_PHY;
563
			rs->rs_phyerr = AR5K_REG_MS(rx_status->rx_status_1,
N
Nick Kossifidis 已提交
564 565 566 567 568 569 570 571 572 573 574 575
				AR5K_5210_RX_DESC_STATUS1_PHY_ERROR);
		}

		if (rx_status->rx_status_1 &
				AR5K_5210_RX_DESC_STATUS1_DECRYPT_CRC_ERROR)
			rs->rs_status |= AR5K_RXERR_DECRYPT;
	}

	return 0;
}

/*
L
Lucas De Marchi 已提交
576
 * Process the rx status descriptor on 5212
N
Nick Kossifidis 已提交
577 578
 */
static int ath5k_hw_proc_5212_rx_status(struct ath5k_hw *ah,
579 580
					struct ath5k_desc *desc,
					struct ath5k_rx_status *rs)
N
Nick Kossifidis 已提交
581 582
{
	struct ath5k_hw_rx_status *rx_status;
583
	u32 rxstat0, rxstat1;
N
Nick Kossifidis 已提交
584

585
	rx_status = &desc->ud.ds_rx.rx_stat;
586
	rxstat1 = ACCESS_ONCE(rx_status->rx_status_1);
N
Nick Kossifidis 已提交
587 588

	/* No frame received / not ready */
589
	if (unlikely(!(rxstat1 & AR5K_5212_RX_DESC_STATUS1_DONE)))
N
Nick Kossifidis 已提交
590 591
		return -EINPROGRESS;

592
	memset(rs, 0, sizeof(struct ath5k_rx_status));
593
	rxstat0 = ACCESS_ONCE(rx_status->rx_status_0);
594

N
Nick Kossifidis 已提交
595 596 597
	/*
	 * Frame receive status
	 */
598 599
	rs->rs_datalen = rxstat0 & AR5K_5212_RX_DESC_STATUS0_DATA_LEN;
	rs->rs_rssi = AR5K_REG_MS(rxstat0,
N
Nick Kossifidis 已提交
600
		AR5K_5212_RX_DESC_STATUS0_RECEIVE_SIGNAL);
601
	rs->rs_rate = AR5K_REG_MS(rxstat0,
N
Nick Kossifidis 已提交
602
		AR5K_5212_RX_DESC_STATUS0_RECEIVE_RATE);
603
	rs->rs_antenna = AR5K_REG_MS(rxstat0,
604
		AR5K_5212_RX_DESC_STATUS0_RECEIVE_ANTENNA);
605 606
	rs->rs_more = !!(rxstat0 & AR5K_5212_RX_DESC_STATUS0_MORE);
	rs->rs_tstamp = AR5K_REG_MS(rxstat1,
N
Nick Kossifidis 已提交
607 608 609 610 611
		AR5K_5212_RX_DESC_STATUS1_RECEIVE_TIMESTAMP);

	/*
	 * Key table status
	 */
612 613
	if (rxstat1 & AR5K_5212_RX_DESC_STATUS1_KEY_INDEX_VALID)
		rs->rs_keyix = AR5K_REG_MS(rxstat1,
614
					   AR5K_5212_RX_DESC_STATUS1_KEY_INDEX);
N
Nick Kossifidis 已提交
615 616 617 618 619 620
	else
		rs->rs_keyix = AR5K_RXKEYIX_INVALID;

	/*
	 * Receive/descriptor errors
	 */
621 622
	if (!(rxstat1 & AR5K_5212_RX_DESC_STATUS1_FRAME_RECEIVE_OK)) {
		if (rxstat1 & AR5K_5212_RX_DESC_STATUS1_CRC_ERROR)
N
Nick Kossifidis 已提交
623 624
			rs->rs_status |= AR5K_RXERR_CRC;

625
		if (rxstat1 & AR5K_5212_RX_DESC_STATUS1_PHY_ERROR) {
N
Nick Kossifidis 已提交
626
			rs->rs_status |= AR5K_RXERR_PHY;
627
			rs->rs_phyerr = AR5K_REG_MS(rxstat1,
628
				AR5K_5212_RX_DESC_STATUS1_PHY_ERROR_CODE);
629 630
			if (!ah->ah_capabilities.cap_has_phyerr_counters)
				ath5k_ani_phy_error_report(ah, rs->rs_phyerr);
N
Nick Kossifidis 已提交
631 632
		}

633
		if (rxstat1 & AR5K_5212_RX_DESC_STATUS1_DECRYPT_CRC_ERROR)
N
Nick Kossifidis 已提交
634 635
			rs->rs_status |= AR5K_RXERR_DECRYPT;

636
		if (rxstat1 & AR5K_5212_RX_DESC_STATUS1_MIC_ERROR)
N
Nick Kossifidis 已提交
637 638 639 640 641
			rs->rs_status |= AR5K_RXERR_MIC;
	}
	return 0;
}

642 643 644 645 646

/********\
* Attach *
\********/

N
Nick Kossifidis 已提交
647 648 649 650 651 652 653 654
/*
 * Init function pointers inside ath5k_hw struct
 */
int ath5k_hw_init_desc_functions(struct ath5k_hw *ah)
{
	if (ah->ah_version == AR5K_AR5212) {
		ah->ah_setup_tx_desc = ath5k_hw_setup_4word_tx_desc;
		ah->ah_proc_tx_desc = ath5k_hw_proc_4word_tx_status;
655 656
		ah->ah_proc_rx_desc = ath5k_hw_proc_5212_rx_status;
	} else if (ah->ah_version <= AR5K_AR5211) {
N
Nick Kossifidis 已提交
657 658 659
		ah->ah_setup_tx_desc = ath5k_hw_setup_2word_tx_desc;
		ah->ah_proc_tx_desc = ath5k_hw_proc_2word_tx_status;
		ah->ah_proc_rx_desc = ath5k_hw_proc_5210_rx_status;
660 661
	} else
		return -ENOTSUPP;
N
Nick Kossifidis 已提交
662 663
	return 0;
}