blob: d6b05d980626d8ea40cdffee8c687754771deb36 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 1998-2009 Texas Instruments. All rights reserved.
5 * Copyright (C) 2009 Nokia Corporation
6 *
7 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 */
24
Shahar Levi00d20102010-11-08 11:20:10 +000025#ifndef __TX_H__
26#define __TX_H__
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030027
Juuso Oikarinen5c9417f2010-02-22 08:38:39 +020028#define TX_HW_BLOCK_SIZE 252
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030029
30#define TX_HW_MGMT_PKT_LIFETIME_TU 2000
Arik Nemtsovbeb6c882010-10-16 18:53:48 +020031#define TX_HW_AP_MODE_PKT_LIFETIME_TU 8000
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030032/* The chipset reference driver states, that the "aid" value 1
33 * is for infra-BSS, but is still always used */
34#define TX_HW_DEFAULT_AID 1
35
36#define TX_HW_ATTR_SAVE_RETRIES BIT(0)
37#define TX_HW_ATTR_HEADER_PAD BIT(1)
38#define TX_HW_ATTR_SESSION_COUNTER (BIT(2) | BIT(3) | BIT(4))
39#define TX_HW_ATTR_RATE_POLICY (BIT(5) | BIT(6) | BIT(7) | \
40 BIT(8) | BIT(9))
41#define TX_HW_ATTR_LAST_WORD_PAD (BIT(10) | BIT(11))
42#define TX_HW_ATTR_TX_CMPLT_REQ BIT(12)
Shahar Leviae47c452011-03-06 16:32:14 +020043#define TX_HW_ATTR_TX_DUMMY_REQ BIT(13)
44
45#define TX_PKT_TYPE_DUMMY_REQ 5
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030046
47#define TX_HW_ATTR_OFST_SAVE_RETRIES 0
48#define TX_HW_ATTR_OFST_HEADER_PAD 1
49#define TX_HW_ATTR_OFST_SESSION_COUNTER 2
50#define TX_HW_ATTR_OFST_RATE_POLICY 5
51#define TX_HW_ATTR_OFST_LAST_WORD_PAD 10
52#define TX_HW_ATTR_OFST_TX_CMPLT_REQ 12
53
54#define TX_HW_RESULT_QUEUE_LEN 16
55#define TX_HW_RESULT_QUEUE_LEN_MASK 0xf
56
57#define WL1271_TX_ALIGN_TO 4
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030058#define WL1271_TKIP_IV_SPACE 4
59
Shahar Leviae47c452011-03-06 16:32:14 +020060/* Used for management frames and dummy packets */
61#define WL1271_TID_MGMT 7
62
Shahar Levi48a61472011-03-06 16:32:08 +020063struct wl127x_tx_mem {
64 /*
65 * Number of extra memory blocks to allocate for this packet
66 * in addition to the number of blocks derived from the packet
67 * length.
68 */
69 u8 extra_blocks;
70 /*
71 * Total number of memory blocks allocated by the host for
72 * this packet. Must be equal or greater than the actual
73 * blocks number allocated by HW.
74 */
75 u8 total_mem_blocks;
76} __packed;
77
78struct wl128x_tx_mem {
79 /*
80 * Total number of memory blocks allocated by the host for
81 * this packet.
82 */
83 u8 total_mem_blocks;
84 /*
85 * Number of extra bytes, at the end of the frame. the host
86 * uses this padding to complete each frame to integer number
87 * of SDIO blocks.
88 */
89 u8 extra_bytes;
90} __packed;
91
Ido Yariv0da13da2011-03-31 10:06:58 +020092/*
93 * On wl128x based devices, when TX packets are aggregated, each packet
94 * size must be aligned to the SDIO block size. The maximum block size
95 * is bounded by the type of the padded bytes field that is sent to the
96 * FW. Currently the type is u8, so the maximum block size is 256 bytes.
97 */
98#define WL12XX_BUS_BLOCK_SIZE min(512u, \
99 (1u << (8 * sizeof(((struct wl128x_tx_mem *) 0)->extra_bytes))))
100
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300101struct wl1271_tx_hw_descr {
102 /* Length of packet in words, including descriptor+header+data */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300103 __le16 length;
Shahar Levi48a61472011-03-06 16:32:08 +0200104 union {
105 struct wl127x_tx_mem wl127x_mem;
106 struct wl128x_tx_mem wl128x_mem;
107 } __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300108 /* Device time (in us) when the packet arrived to the driver */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300109 __le32 start_time;
Shahar Levi48a61472011-03-06 16:32:08 +0200110 /*
111 * Max delay in TUs until transmission. The last device time the
112 * packet can be transmitted is: start_time + (1024 * life_time)
113 */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300114 __le16 life_time;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300115 /* Bitwise fields - see TX_ATTR... definitions above. */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300116 __le16 tx_attr;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300117 /* Packet identifier used also in the Tx-Result. */
118 u8 id;
119 /* The packet TID value (as User-Priority) */
120 u8 tid;
Arik Nemtsovbeb6c882010-10-16 18:53:48 +0200121 union {
122 /* STA - Identifier of the remote STA in IBSS, 1 in infra-BSS */
123 u8 aid;
124 /* AP - host link ID (HLID) */
125 u8 hlid;
126 } __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300127 u8 reserved;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000128} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300129
130enum wl1271_tx_hw_res_status {
131 TX_SUCCESS = 0,
132 TX_HW_ERROR = 1,
133 TX_DISABLED = 2,
134 TX_RETRY_EXCEEDED = 3,
135 TX_TIMEOUT = 4,
136 TX_KEY_NOT_FOUND = 5,
137 TX_PEER_NOT_FOUND = 6,
138 TX_SESSION_MISMATCH = 7
139};
140
141struct wl1271_tx_hw_res_descr {
142 /* Packet Identifier - same value used in the Tx descriptor.*/
143 u8 id;
144 /* The status of the transmission, indicating success or one of
145 several possible reasons for failure. */
146 u8 status;
147 /* Total air access duration including all retrys and overheads.*/
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300148 __le16 medium_usage;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300149 /* The time passed from host xfer to Tx-complete.*/
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300150 __le32 fw_handling_time;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300151 /* Total media delay
152 (from 1st EDCA AIFS counter until TX Complete). */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300153 __le32 medium_delay;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300154 /* LS-byte of last TKIP seq-num (saved per AC for recovery). */
155 u8 lsb_security_sequence_number;
156 /* Retry count - number of transmissions without successful ACK.*/
157 u8 ack_failures;
158 /* The rate that succeeded getting ACK
159 (Valid only if status=SUCCESS). */
160 u8 rate_class_index;
161 /* for 4-byte alignment. */
162 u8 spare;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000163} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300164
165struct wl1271_tx_hw_res_if {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300166 __le32 tx_result_fw_counter;
167 __le32 tx_result_host_counter;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300168 struct wl1271_tx_hw_res_descr tx_results_queue[TX_HW_RESULT_QUEUE_LEN];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000169} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300170
Kalle Valoc6999d82010-02-18 13:25:41 +0200171static inline int wl1271_tx_get_queue(int queue)
172{
Kalle Valoc6999d82010-02-18 13:25:41 +0200173 switch (queue) {
174 case 0:
175 return CONF_TX_AC_VO;
176 case 1:
177 return CONF_TX_AC_VI;
178 case 2:
179 return CONF_TX_AC_BE;
180 case 3:
181 return CONF_TX_AC_BK;
182 default:
183 return CONF_TX_AC_BE;
184 }
185}
186
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300187void wl1271_tx_work(struct work_struct *work);
Ido Yariva5225502010-10-12 14:49:10 +0200188void wl1271_tx_work_locked(struct wl1271 *wl);
Juuso Oikarinenffb591c2010-02-22 08:38:31 +0200189void wl1271_tx_complete(struct wl1271 *wl);
Juuso Oikarinen781608c2010-05-24 11:18:17 +0300190void wl1271_tx_reset(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300191void wl1271_tx_flush(struct wl1271 *wl);
Teemu Paasikivi6a2de932010-10-14 11:00:04 +0200192u8 wl1271_rate_to_idx(int rate, enum ieee80211_band band);
Juuso Oikarinenebba60c2010-04-01 11:38:20 +0300193u32 wl1271_tx_enabled_rates_get(struct wl1271 *wl, u32 rate_set);
Arik Nemtsove0fe3712010-10-16 18:19:53 +0200194u32 wl1271_tx_min_rate_get(struct wl1271 *wl);
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +0200195u8 wl1271_tx_get_hlid(struct sk_buff *skb);
196void wl1271_tx_reset_link_queues(struct wl1271 *wl, u8 hlid);
197void wl1271_handle_tx_low_watermark(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300198
199#endif