]> Pileus Git - ~andy/linux/blob - drivers/net/wireless/wl12xx/tx.h
wl12xx: 1281/1283 support - Improve Tx & Rx path
[~andy/linux] / drivers / net / wireless / wl12xx / tx.h
1 /*
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
25 #ifndef __TX_H__
26 #define __TX_H__
27
28 #define TX_HW_BLOCK_SPARE                2
29 #define TX_HW_BLOCK_SIZE                 252
30
31 #define TX_HW_MGMT_PKT_LIFETIME_TU       2000
32 #define TX_HW_AP_MODE_PKT_LIFETIME_TU    8000
33 /* The chipset reference driver states, that the "aid" value 1
34  * is for infra-BSS, but is still always used */
35 #define TX_HW_DEFAULT_AID                1
36
37 #define TX_HW_ATTR_SAVE_RETRIES          BIT(0)
38 #define TX_HW_ATTR_HEADER_PAD            BIT(1)
39 #define TX_HW_ATTR_SESSION_COUNTER       (BIT(2) | BIT(3) | BIT(4))
40 #define TX_HW_ATTR_RATE_POLICY           (BIT(5) | BIT(6) | BIT(7) | \
41                                           BIT(8) | BIT(9))
42 #define TX_HW_ATTR_LAST_WORD_PAD         (BIT(10) | BIT(11))
43 #define TX_HW_ATTR_TX_CMPLT_REQ          BIT(12)
44
45 #define TX_HW_ATTR_OFST_SAVE_RETRIES     0
46 #define TX_HW_ATTR_OFST_HEADER_PAD       1
47 #define TX_HW_ATTR_OFST_SESSION_COUNTER  2
48 #define TX_HW_ATTR_OFST_RATE_POLICY      5
49 #define TX_HW_ATTR_OFST_LAST_WORD_PAD    10
50 #define TX_HW_ATTR_OFST_TX_CMPLT_REQ     12
51
52 #define TX_HW_RESULT_QUEUE_LEN           16
53 #define TX_HW_RESULT_QUEUE_LEN_MASK      0xf
54
55 #define WL1271_TX_ALIGN_TO 4
56 #define WL1271_TKIP_IV_SPACE 4
57
58 struct wl127x_tx_mem {
59         /*
60          * Number of extra memory blocks to allocate for this packet
61          * in addition to the number of blocks derived from the packet
62          * length.
63          */
64         u8 extra_blocks;
65         /*
66          * Total number of memory blocks allocated by the host for
67          * this packet. Must be equal or greater than the actual
68          * blocks number allocated by HW.
69          */
70         u8 total_mem_blocks;
71 } __packed;
72
73 struct wl128x_tx_mem {
74         /*
75          * Total number of memory blocks allocated by the host for
76          * this packet.
77          */
78         u8 total_mem_blocks;
79         /*
80          * Number of extra bytes, at the end of the frame. the host
81          * uses this padding to complete each frame to integer number
82          * of SDIO blocks.
83          */
84         u8 extra_bytes;
85 } __packed;
86
87 struct wl1271_tx_hw_descr {
88         /* Length of packet in words, including descriptor+header+data */
89         __le16 length;
90         union {
91                 struct wl127x_tx_mem wl127x_mem;
92                 struct wl128x_tx_mem wl128x_mem;
93         } __packed;
94         /* Device time (in us) when the packet arrived to the driver */
95         __le32 start_time;
96         /*
97          * Max delay in TUs until transmission. The last device time the
98          * packet can be transmitted is: start_time + (1024 * life_time)
99          */
100         __le16 life_time;
101         /* Bitwise fields - see TX_ATTR... definitions above. */
102         __le16 tx_attr;
103         /* Packet identifier used also in the Tx-Result. */
104         u8 id;
105         /* The packet TID value (as User-Priority) */
106         u8 tid;
107         union {
108                 /* STA - Identifier of the remote STA in IBSS, 1 in infra-BSS */
109                 u8 aid;
110                 /* AP - host link ID (HLID) */
111                 u8 hlid;
112         } __packed;
113         u8 reserved;
114 } __packed;
115
116 enum wl1271_tx_hw_res_status {
117         TX_SUCCESS          = 0,
118         TX_HW_ERROR         = 1,
119         TX_DISABLED         = 2,
120         TX_RETRY_EXCEEDED   = 3,
121         TX_TIMEOUT          = 4,
122         TX_KEY_NOT_FOUND    = 5,
123         TX_PEER_NOT_FOUND   = 6,
124         TX_SESSION_MISMATCH = 7
125 };
126
127 struct wl1271_tx_hw_res_descr {
128         /* Packet Identifier - same value used in the Tx descriptor.*/
129         u8 id;
130         /* The status of the transmission, indicating success or one of
131            several possible reasons for failure. */
132         u8 status;
133         /* Total air access duration including all retrys and overheads.*/
134         __le16 medium_usage;
135         /* The time passed from host xfer to Tx-complete.*/
136         __le32 fw_handling_time;
137         /* Total media delay
138            (from 1st EDCA AIFS counter until TX Complete). */
139         __le32 medium_delay;
140         /* LS-byte of last TKIP seq-num (saved per AC for recovery). */
141         u8 lsb_security_sequence_number;
142         /* Retry count - number of transmissions without successful ACK.*/
143         u8 ack_failures;
144         /* The rate that succeeded getting ACK
145            (Valid only if status=SUCCESS). */
146         u8 rate_class_index;
147         /* for 4-byte alignment. */
148         u8 spare;
149 } __packed;
150
151 struct wl1271_tx_hw_res_if {
152         __le32 tx_result_fw_counter;
153         __le32 tx_result_host_counter;
154         struct wl1271_tx_hw_res_descr tx_results_queue[TX_HW_RESULT_QUEUE_LEN];
155 } __packed;
156
157 static inline int wl1271_tx_get_queue(int queue)
158 {
159         switch (queue) {
160         case 0:
161                 return CONF_TX_AC_VO;
162         case 1:
163                 return CONF_TX_AC_VI;
164         case 2:
165                 return CONF_TX_AC_BE;
166         case 3:
167                 return CONF_TX_AC_BK;
168         default:
169                 return CONF_TX_AC_BE;
170         }
171 }
172
173 void wl1271_tx_work(struct work_struct *work);
174 void wl1271_tx_work_locked(struct wl1271 *wl);
175 void wl1271_tx_complete(struct wl1271 *wl);
176 void wl1271_tx_reset(struct wl1271 *wl);
177 void wl1271_tx_flush(struct wl1271 *wl);
178 u8 wl1271_rate_to_idx(int rate, enum ieee80211_band band);
179 u32 wl1271_tx_enabled_rates_get(struct wl1271 *wl, u32 rate_set);
180 u32 wl1271_tx_min_rate_get(struct wl1271 *wl);
181 u8 wl1271_tx_get_hlid(struct sk_buff *skb);
182 void wl1271_tx_reset_link_queues(struct wl1271 *wl, u8 hlid);
183 void wl1271_handle_tx_low_watermark(struct wl1271 *wl);
184
185 #endif