blob: 23219e17e5a192ad0b6a91ed39da863401142613 [file] [log] [blame]
Larry Finger94a79942011-08-23 19:00:42 -05001/******************************************************************************
2 * Copyright(c) 2008 - 2010 Realtek Corporation. All rights reserved.
3 *
4 * This program is distributed in the hope that it will be useful, but WITHOUT
5 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
7 * more details.
8 *
9 * You should have received a copy of the GNU General Public License along with
10 * this program; if not, write to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
12 *
13 * The full GNU General Public License is included in this distribution in the
14 * file called LICENSE.
15 *
16 * Contact Information:
17 * wlanfae <wlanfae@realtek.com>
18******************************************************************************/
19#ifndef R819XUSB_CMDPKT_H
20#define R819XUSB_CMDPKT_H
Larry Fingerac513a82011-08-25 11:48:11 -050021#define CMPK_RX_TX_FB_SIZE sizeof(struct cmpk_txfb)
22#define CMPK_TX_SET_CONFIG_SIZE sizeof(struct cmpk_set_cfg)
23#define CMPK_BOTH_QUERY_CONFIG_SIZE sizeof(struct cmpk_set_cfg)
24#define CMPK_RX_TX_STS_SIZE sizeof(struct cmpk_tx_status)
25#define CMPK_RX_DBG_MSG_SIZE sizeof(struct cmpk_rx_dbginfo)
26#define CMPK_TX_RAHIS_SIZE sizeof(struct cmpk_tx_rahis)
Larry Finger94a79942011-08-23 19:00:42 -050027
Larry Fingerac513a82011-08-25 11:48:11 -050028#define ISR_TxBcnOk BIT27
29#define ISR_TxBcnErr BIT26
30#define ISR_BcnTimerIntr BIT13
Larry Finger94a79942011-08-23 19:00:42 -050031
32
Larry Fingerd3ab7212011-07-18 22:59:06 -050033struct cmpk_txfb {
Larry Finger94a79942011-08-23 19:00:42 -050034 u8 element_id;
35 u8 length;
36 u8 TID:4; /* */
37 u8 fail_reason:3; /* */
38 u8 tok:1;
39 u8 reserve1:4; /* */
40 u8 pkt_type:2; /* */
41 u8 bandwidth:1; /* */
42 u8 qos_pkt:1; /* */
43
44 u8 reserve2; /* */
45 u8 retry_cnt; /* */
46 u16 pkt_id; /* */
47
48 u16 seq_num; /* */
49 u8 s_rate;
50 u8 f_rate;
51
52 u8 s_rts_rate; /* */
53 u8 f_rts_rate; /* */
54 u16 pkt_length; /* */
55
56 u16 reserve3; /* */
57 u16 duration; /* */
Larry Fingerd3b2c172011-07-19 12:50:41 -050058};
Larry Finger94a79942011-08-23 19:00:42 -050059
Larry Fingera76d9842011-07-18 23:00:34 -050060struct cmpk_intr_sta {
Larry Finger94a79942011-08-23 19:00:42 -050061 u8 element_id;
62 u8 length;
63 u16 reserve;
64 u32 interrupt_status;
Larry Fingerd3b2c172011-07-19 12:50:41 -050065};
Larry Finger94a79942011-08-23 19:00:42 -050066
67
Larry Fingerfb620962011-07-18 23:02:01 -050068struct cmpk_set_cfg {
Larry Finger94a79942011-08-23 19:00:42 -050069 u8 element_id;
70 u8 length;
71 u16 reserve1;
72 u8 cfg_reserve1:3;
73 u8 cfg_size:2;
74 u8 cfg_type:2;
75 u8 cfg_action:1;
76 u8 cfg_reserve2;
77 u8 cfg_page:4;
78 u8 cfg_reserve3:4;
79 u8 cfg_offset;
80 u32 value;
81 u32 mask;
Larry Fingerd3b2c172011-07-19 12:50:41 -050082};
Larry Finger94a79942011-08-23 19:00:42 -050083
Larry Fingerfb620962011-07-18 23:02:01 -050084#define cmpk_query_cfg_t struct cmpk_set_cfg
Larry Finger94a79942011-08-23 19:00:42 -050085
Larry Finger7f6aa062011-07-18 23:03:38 -050086struct cmpk_tx_status {
Larry Finger94a79942011-08-23 19:00:42 -050087 u16 reserve1;
88 u8 length;
89 u8 element_id;
90
91 u16 txfail;
92 u16 txok;
93
94 u16 txmcok;
95 u16 txretry;
96
97 u16 txucok;
98 u16 txbcok;
99
100 u16 txbcfail;
101 u16 txmcfail;
102
103 u16 reserve2;
104 u16 txucfail;
105
106 u32 txmclength;
107 u32 txbclength;
108 u32 txuclength;
109
110 u16 reserve3_23;
111 u8 reserve3_1;
112 u8 rate;
Larry Fingerac513a82011-08-25 11:48:11 -0500113} __packed;
Larry Finger94a79942011-08-23 19:00:42 -0500114
Larry Fingeracf08e12011-07-18 23:05:00 -0500115struct cmpk_rx_dbginfo {
Larry Finger94a79942011-08-23 19:00:42 -0500116 u16 reserve1;
117 u8 length;
118 u8 element_id;
119
120
Larry Fingerd3b2c172011-07-19 12:50:41 -0500121};
Larry Finger94a79942011-08-23 19:00:42 -0500122
Larry Finger1b419252011-07-18 23:06:46 -0500123struct cmpk_tx_rahis {
Larry Finger94a79942011-08-23 19:00:42 -0500124 u8 element_id;
125 u8 length;
126 u16 reserved1;
127
128 u16 cck[4];
129
130 u16 ofdm[8];
131
132
133
134
135
136 u16 ht_mcs[4][16];
137
Larry Finger1b419252011-07-18 23:06:46 -0500138} __packed;
Larry Finger94a79942011-08-23 19:00:42 -0500139
Larry Finger8fa81ed2011-07-19 13:09:50 -0500140enum cmpk_element {
Larry Fingerac513a82011-08-25 11:48:11 -0500141 RX_TX_FEEDBACK = 0,
142 RX_INTERRUPT_STATUS = 1,
143 TX_SET_CONFIG = 2,
144 BOTH_QUERY_CONFIG = 3,
145 RX_TX_STATUS = 4,
146 RX_DBGINFO_FEEDBACK = 5,
147 RX_TX_PER_PKT_FEEDBACK = 6,
148 RX_TX_RATE_HISTORY = 7,
149 RX_CMD_ELE_MAX
Larry Finger8fa81ed2011-07-19 13:09:50 -0500150};
Larry Finger94a79942011-08-23 19:00:42 -0500151
Larry Fingerac513a82011-08-25 11:48:11 -0500152extern u32 cmpk_message_handle_rx(struct net_device *dev,
153 struct rtllib_rx_stats *pstats);
154extern bool cmpk_message_handle_tx(struct net_device *dev,
155 u8 *codevirtualaddress, u32 packettype,
156 u32 buffer_len);
Larry Finger94a79942011-08-23 19:00:42 -0500157
158
159#endif