tx.h 6.2 KB
Newer Older
L
Luciano Coelho 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * This file is part of wl1271
 *
 * Copyright (C) 1998-2009 Texas Instruments. All rights reserved.
 * Copyright (C) 2009 Nokia Corporation
 *
 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
 *
 * 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.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

S
Shahar Levi 已提交
25 26
#ifndef __TX_H__
#define __TX_H__
L
Luciano Coelho 已提交
27

28
#define TX_HW_BLOCK_SPARE_DEFAULT        1
29
#define TX_HW_BLOCK_SIZE                 252
L
Luciano Coelho 已提交
30 31

#define TX_HW_MGMT_PKT_LIFETIME_TU       2000
32
#define TX_HW_AP_MODE_PKT_LIFETIME_TU    8000
L
Luciano Coelho 已提交
33 34 35 36 37 38 39 40

#define TX_HW_ATTR_SAVE_RETRIES          BIT(0)
#define TX_HW_ATTR_HEADER_PAD            BIT(1)
#define TX_HW_ATTR_SESSION_COUNTER       (BIT(2) | BIT(3) | BIT(4))
#define TX_HW_ATTR_RATE_POLICY           (BIT(5) | BIT(6) | BIT(7) | \
					  BIT(8) | BIT(9))
#define TX_HW_ATTR_LAST_WORD_PAD         (BIT(10) | BIT(11))
#define TX_HW_ATTR_TX_CMPLT_REQ          BIT(12)
41 42
#define TX_HW_ATTR_TX_DUMMY_REQ          BIT(13)

L
Luciano Coelho 已提交
43 44 45 46 47 48 49 50 51 52 53 54 55
#define TX_HW_ATTR_OFST_SAVE_RETRIES     0
#define TX_HW_ATTR_OFST_HEADER_PAD       1
#define TX_HW_ATTR_OFST_SESSION_COUNTER  2
#define TX_HW_ATTR_OFST_RATE_POLICY      5
#define TX_HW_ATTR_OFST_LAST_WORD_PAD    10
#define TX_HW_ATTR_OFST_TX_CMPLT_REQ     12

#define TX_HW_RESULT_QUEUE_LEN           16
#define TX_HW_RESULT_QUEUE_LEN_MASK      0xf

#define WL1271_TX_ALIGN_TO 4
#define WL1271_TKIP_IV_SPACE 4

56 57 58
/* Used for management frames and dummy packets */
#define WL1271_TID_MGMT 7

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
struct wl127x_tx_mem {
	/*
	 * Number of extra memory blocks to allocate for this packet
	 * in addition to the number of blocks derived from the packet
	 * length.
	 */
	u8 extra_blocks;
	/*
	 * Total number of memory blocks allocated by the host for
	 * this packet. Must be equal or greater than the actual
	 * blocks number allocated by HW.
	 */
	u8 total_mem_blocks;
} __packed;

struct wl128x_tx_mem {
	/*
	 * Total number of memory blocks allocated by the host for
	 * this packet.
	 */
	u8 total_mem_blocks;
	/*
	 * Number of extra bytes, at the end of the frame. the host
	 * uses this padding to complete each frame to integer number
	 * of SDIO blocks.
	 */
	u8 extra_bytes;
} __packed;

88 89 90 91 92 93 94 95 96
/*
 * On wl128x based devices, when TX packets are aggregated, each packet
 * size must be aligned to the SDIO block size. The maximum block size
 * is bounded by the type of the padded bytes field that is sent to the
 * FW. Currently the type is u8, so the maximum block size is 256 bytes.
 */
#define WL12XX_BUS_BLOCK_SIZE min(512u,	\
	    (1u << (8 * sizeof(((struct wl128x_tx_mem *) 0)->extra_bytes))))

L
Luciano Coelho 已提交
97 98
struct wl1271_tx_hw_descr {
	/* Length of packet in words, including descriptor+header+data */
L
Luciano Coelho 已提交
99
	__le16 length;
100 101 102 103
	union {
		struct wl127x_tx_mem wl127x_mem;
		struct wl128x_tx_mem wl128x_mem;
	} __packed;
L
Luciano Coelho 已提交
104
	/* Device time (in us) when the packet arrived to the driver */
L
Luciano Coelho 已提交
105
	__le32 start_time;
106 107 108 109
	/*
	 * Max delay in TUs until transmission. The last device time the
	 * packet can be transmitted is: start_time + (1024 * life_time)
	 */
L
Luciano Coelho 已提交
110
	__le16 life_time;
L
Luciano Coelho 已提交
111
	/* Bitwise fields - see TX_ATTR... definitions above. */
L
Luciano Coelho 已提交
112
	__le16 tx_attr;
L
Luciano Coelho 已提交
113 114 115 116
	/* Packet identifier used also in the Tx-Result. */
	u8 id;
	/* The packet TID value (as User-Priority) */
	u8 tid;
E
Eliad Peller 已提交
117 118
	/* host link ID (HLID) */
	u8 hlid;
L
Luciano Coelho 已提交
119
	u8 reserved;
120
} __packed;
L
Luciano Coelho 已提交
121 122 123 124 125 126 127 128 129

enum wl1271_tx_hw_res_status {
	TX_SUCCESS          = 0,
	TX_HW_ERROR         = 1,
	TX_DISABLED         = 2,
	TX_RETRY_EXCEEDED   = 3,
	TX_TIMEOUT          = 4,
	TX_KEY_NOT_FOUND    = 5,
	TX_PEER_NOT_FOUND   = 6,
E
Eliad Peller 已提交
130 131
	TX_SESSION_MISMATCH = 7,
	TX_LINK_NOT_VALID   = 8,
L
Luciano Coelho 已提交
132 133 134 135 136 137 138 139 140
};

struct wl1271_tx_hw_res_descr {
	/* Packet Identifier - same value used in the Tx descriptor.*/
	u8 id;
	/* The status of the transmission, indicating success or one of
	   several possible reasons for failure. */
	u8 status;
	/* Total air access duration including all retrys and overheads.*/
L
Luciano Coelho 已提交
141
	__le16 medium_usage;
L
Luciano Coelho 已提交
142
	/* The time passed from host xfer to Tx-complete.*/
L
Luciano Coelho 已提交
143
	__le32 fw_handling_time;
L
Luciano Coelho 已提交
144 145
	/* Total media delay
	   (from 1st EDCA AIFS counter until TX Complete). */
L
Luciano Coelho 已提交
146
	__le32 medium_delay;
L
Luciano Coelho 已提交
147
	/* LS-byte of last TKIP seq-num (saved per AC for recovery). */
148
	u8 tx_security_sequence_number_lsb;
L
Luciano Coelho 已提交
149 150 151 152 153 154 155
	/* Retry count - number of transmissions without successful ACK.*/
	u8 ack_failures;
	/* The rate that succeeded getting ACK
	   (Valid only if status=SUCCESS). */
	u8 rate_class_index;
	/* for 4-byte alignment. */
	u8 spare;
156
} __packed;
L
Luciano Coelho 已提交
157 158

struct wl1271_tx_hw_res_if {
L
Luciano Coelho 已提交
159 160
	__le32 tx_result_fw_counter;
	__le32 tx_result_host_counter;
L
Luciano Coelho 已提交
161
	struct wl1271_tx_hw_res_descr tx_results_queue[TX_HW_RESULT_QUEUE_LEN];
162
} __packed;
L
Luciano Coelho 已提交
163

K
Kalle Valo 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
static inline int wl1271_tx_get_queue(int queue)
{
	switch (queue) {
	case 0:
		return CONF_TX_AC_VO;
	case 1:
		return CONF_TX_AC_VI;
	case 2:
		return CONF_TX_AC_BE;
	case 3:
		return CONF_TX_AC_BK;
	default:
		return CONF_TX_AC_BE;
	}
}

180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
static inline int wl1271_tx_get_mac80211_queue(int queue)
{
	switch (queue) {
	case CONF_TX_AC_VO:
		return 0;
	case CONF_TX_AC_VI:
		return 1;
	case CONF_TX_AC_BE:
		return 2;
	case CONF_TX_AC_BK:
		return 3;
	default:
		return 2;
	}
}

196 197 198 199 200 201 202 203 204 205
static inline int wl1271_tx_total_queue_count(struct wl1271 *wl)
{
	int i, count = 0;

	for (i = 0; i < NUM_TX_QUEUES; i++)
		count += wl->tx_queue_count[i];

	return count;
}

L
Luciano Coelho 已提交
206
void wl1271_tx_work(struct work_struct *work);
I
Ido Yariv 已提交
207
void wl1271_tx_work_locked(struct wl1271 *wl);
208
void wl1271_tx_complete(struct wl1271 *wl);
209
void wl1271_tx_reset(struct wl1271 *wl, bool reset_tx_queues);
L
Luciano Coelho 已提交
210
void wl1271_tx_flush(struct wl1271 *wl);
211
u8 wl1271_rate_to_idx(int rate, enum ieee80211_band band);
212
u32 wl1271_tx_enabled_rates_get(struct wl1271 *wl, u32 rate_set);
A
Arik Nemtsov 已提交
213
u32 wl1271_tx_min_rate_get(struct wl1271 *wl);
E
Eliad Peller 已提交
214
u8 wl12xx_tx_get_hlid_ap(struct wl1271 *wl, struct sk_buff *skb);
215 216
void wl1271_tx_reset_link_queues(struct wl1271 *wl, u8 hlid);
void wl1271_handle_tx_low_watermark(struct wl1271 *wl);
L
Luciano Coelho 已提交
217 218

#endif