if_athioctl.h revision 238507
11573Srgrimes/*-
21573Srgrimes * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
31573Srgrimes * All rights reserved.
41573Srgrimes *
51573Srgrimes * Redistribution and use in source and binary forms, with or without
61573Srgrimes * modification, are permitted provided that the following conditions
71573Srgrimes * are met:
81573Srgrimes * 1. Redistributions of source code must retain the above copyright
91573Srgrimes *    notice, this list of conditions and the following disclaimer,
101573Srgrimes *    without modification.
111573Srgrimes * 2. Redistributions in binary form must reproduce at minimum a disclaimer
121573Srgrimes *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
131573Srgrimes *    redistribution must be conditioned upon including a substantially
141573Srgrimes *    similar Disclaimer requirement for further binary redistribution.
151573Srgrimes *
161573Srgrimes * NO WARRANTY
171573Srgrimes * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
181573Srgrimes * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
191573Srgrimes * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
201573Srgrimes * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
211573Srgrimes * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
221573Srgrimes * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
231573Srgrimes * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
241573Srgrimes * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
251573Srgrimes * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
261573Srgrimes * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
271573Srgrimes * THE POSSIBILITY OF SUCH DAMAGES.
281573Srgrimes *
291573Srgrimes * $FreeBSD: head/sys/dev/ath/if_athioctl.h 238507 2012-07-15 20:51:41Z adrian $
3084225Sdillon */
3184225Sdillon
3284225Sdillon/*
331573Srgrimes * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
3428179Ssteve */
351573Srgrimes#ifndef _DEV_ATH_ATHIOCTL_H
3628179Ssteve#define _DEV_ATH_ATHIOCTL_H
371573Srgrimes
381573Srgrimesstruct ath_tx_aggr_stats {
391573Srgrimes	u_int32_t	aggr_pkts[64];
401573Srgrimes	u_int32_t	aggr_single_pkt;
41116344Smarkm	u_int32_t	aggr_nonbaw_pkt;
42116344Smarkm	u_int32_t	aggr_aggr_pkt;
43191882Sed	u_int32_t	aggr_baw_closed_single_pkt;
4413137Speter	u_int32_t	aggr_low_hwq_single_pkt;
4513137Speter	u_int32_t	aggr_sched_nopkt;
4613137Speter	u_int32_t	aggr_rts_aggr_limited;
47121193Smarkm};
481573Srgrimes
49191882Sedstruct ath_intr_stats {
50191882Sed	u_int32_t	sync_intr[32];
51191882Sed};
52191882Sed
53202500Sedstruct ath_stats {
54191882Sed	u_int32_t	ast_watchdog;	/* device reset by watchdog */
55191882Sed	u_int32_t	ast_hardware;	/* fatal hardware error interrupts */
561573Srgrimes	u_int32_t	ast_bmiss;	/* beacon miss interrupts */
571573Srgrimes	u_int32_t	ast_bmiss_phantom;/* beacon miss interrupts */
581573Srgrimes	u_int32_t	ast_bstuck;	/* beacon stuck interrupts */
591573Srgrimes	u_int32_t	ast_rxorn;	/* rx overrun interrupts */
601573Srgrimes	u_int32_t	ast_rxeol;	/* rx eol interrupts */
611573Srgrimes	u_int32_t	ast_txurn;	/* tx underrun interrupts */
621573Srgrimes	u_int32_t	ast_mib;	/* mib interrupts */
63	u_int32_t	ast_intrcoal;	/* interrupts coalesced */
64	u_int32_t	ast_tx_packets;	/* packet sent on the interface */
65	u_int32_t	ast_tx_mgmt;	/* management frames transmitted */
66	u_int32_t	ast_tx_discard;	/* frames discarded prior to assoc */
67	u_int32_t	ast_tx_qstop;	/* output stopped 'cuz no buffer */
68	u_int32_t	ast_tx_encap;	/* tx encapsulation failed */
69	u_int32_t	ast_tx_nonode;	/* tx failed 'cuz no node */
70	u_int32_t	ast_tx_nombuf;	/* tx failed 'cuz no mbuf */
71	u_int32_t	ast_tx_nomcl;	/* tx failed 'cuz no cluster */
72	u_int32_t	ast_tx_linear;	/* tx linearized to cluster */
73	u_int32_t	ast_tx_nodata;	/* tx discarded empty frame */
74	u_int32_t	ast_tx_busdma;	/* tx failed for dma resrcs */
75	u_int32_t	ast_tx_xretries;/* tx failed 'cuz too many retries */
76	u_int32_t	ast_tx_fifoerr;	/* tx failed 'cuz FIFO underrun */
77	u_int32_t	ast_tx_filtered;/* tx failed 'cuz xmit filtered */
78	u_int32_t	ast_tx_shortretry;/* tx on-chip retries (short) */
79	u_int32_t	ast_tx_longretry;/* tx on-chip retries (long) */
80	u_int32_t	ast_tx_badrate;	/* tx failed 'cuz bogus xmit rate */
81	u_int32_t	ast_tx_noack;	/* tx frames with no ack marked */
82	u_int32_t	ast_tx_rts;	/* tx frames with rts enabled */
83	u_int32_t	ast_tx_cts;	/* tx frames with cts enabled */
84	u_int32_t	ast_tx_shortpre;/* tx frames with short preamble */
85	u_int32_t	ast_tx_altrate;	/* tx frames with alternate rate */
86	u_int32_t	ast_tx_protect;	/* tx frames with protection */
87	u_int32_t	ast_tx_ctsburst;/* tx frames with cts and bursting */
88	u_int32_t	ast_tx_ctsext;	/* tx frames with cts extension */
89	u_int32_t	ast_rx_nombuf;	/* rx setup failed 'cuz no mbuf */
90	u_int32_t	ast_rx_busdma;	/* rx setup failed for dma resrcs */
91	u_int32_t	ast_rx_orn;	/* rx failed 'cuz of desc overrun */
92	u_int32_t	ast_rx_crcerr;	/* rx failed 'cuz of bad CRC */
93	u_int32_t	ast_rx_fifoerr;	/* rx failed 'cuz of FIFO overrun */
94	u_int32_t	ast_rx_badcrypt;/* rx failed 'cuz decryption */
95	u_int32_t	ast_rx_badmic;	/* rx failed 'cuz MIC failure */
96	u_int32_t	ast_rx_phyerr;	/* rx failed 'cuz of PHY err */
97	u_int32_t	ast_rx_phy[64];	/* rx PHY error per-code counts */
98	u_int32_t	ast_rx_tooshort;/* rx discarded 'cuz frame too short */
99	u_int32_t	ast_rx_toobig;	/* rx discarded 'cuz frame too large */
100	u_int32_t	ast_rx_packets;	/* packet recv on the interface */
101	u_int32_t	ast_rx_mgt;	/* management frames received */
102	u_int32_t	ast_rx_ctl;	/* rx discarded 'cuz ctl frame */
103	int8_t		ast_tx_rssi;	/* tx rssi of last ack */
104	int8_t		ast_rx_rssi;	/* rx rssi from histogram */
105	u_int8_t	ast_tx_rate;	/* IEEE rate of last unicast tx */
106	u_int32_t	ast_be_xmit;	/* beacons transmitted */
107	u_int32_t	ast_be_nombuf;	/* beacon setup failed 'cuz no mbuf */
108	u_int32_t	ast_per_cal;	/* periodic calibration calls */
109	u_int32_t	ast_per_calfail;/* periodic calibration failed */
110	u_int32_t	ast_per_rfgain;	/* periodic calibration rfgain reset */
111	u_int32_t	ast_rate_calls;	/* rate control checks */
112	u_int32_t	ast_rate_raise;	/* rate control raised xmit rate */
113	u_int32_t	ast_rate_drop;	/* rate control dropped xmit rate */
114	u_int32_t	ast_ant_defswitch;/* rx/default antenna switches */
115	u_int32_t	ast_ant_txswitch;/* tx antenna switches */
116	u_int32_t	ast_ant_rx[8];	/* rx frames with antenna */
117	u_int32_t	ast_ant_tx[8];	/* tx frames with antenna */
118	u_int32_t	ast_cabq_xmit;	/* cabq frames transmitted */
119	u_int32_t	ast_cabq_busy;	/* cabq found busy */
120	u_int32_t	ast_tx_raw;	/* tx frames through raw api */
121	u_int32_t	ast_ff_txok;	/* fast frames tx'd successfully */
122	u_int32_t	ast_ff_txerr;	/* fast frames tx'd w/ error */
123	u_int32_t	ast_ff_rx;	/* fast frames rx'd */
124	u_int32_t	ast_ff_flush;	/* fast frames flushed from staging q */
125	u_int32_t	ast_tx_qfull;	/* tx dropped 'cuz of queue limit */
126	int8_t		ast_rx_noise;	/* rx noise floor */
127	u_int32_t	ast_tx_nobuf;	/* tx dropped 'cuz no ath buffer */
128	u_int32_t	ast_tdma_update;/* TDMA slot timing updates */
129	u_int32_t	ast_tdma_timers;/* TDMA slot update set beacon timers */
130	u_int32_t	ast_tdma_tsf;	/* TDMA slot update set TSF */
131	u_int16_t	ast_tdma_tsfadjp;/* TDMA slot adjust+ (usec, smoothed)*/
132	u_int16_t	ast_tdma_tsfadjm;/* TDMA slot adjust- (usec, smoothed)*/
133	u_int32_t	ast_tdma_ack;	/* TDMA tx failed 'cuz ACK required */
134	u_int32_t	ast_tx_raw_fail;/* raw tx failed 'cuz h/w down */
135	u_int32_t	ast_tx_nofrag;	/* tx dropped 'cuz no ath frag buffer */
136	u_int32_t	ast_be_missed;	/* missed beacons */
137	u_int32_t	ast_ani_cal;	/* ANI calibrations performed */
138	u_int32_t	ast_rx_agg;	/* number of aggregate frames RX'ed */
139	u_int32_t	ast_rx_halfgi;	/* RX half-GI */
140	u_int32_t	ast_rx_2040;	/* RX 40mhz frame */
141	u_int32_t	ast_rx_pre_crc_err;	/* RX pre-delimiter CRC error */
142	u_int32_t	ast_rx_post_crc_err;	/* RX post-delimiter CRC error */
143	u_int32_t	ast_rx_decrypt_busy_err;	/* RX decrypt engine busy error */
144	u_int32_t	ast_rx_hi_rx_chain;
145	u_int32_t	ast_tx_htprotect;	/* HT tx frames with protection */
146	u_int32_t	ast_rx_hitqueueend;	/* RX hit descr queue end */
147	u_int32_t	ast_tx_timeout;		/* Global TX timeout */
148	u_int32_t	ast_tx_cst;		/* Carrier sense timeout */
149	u_int32_t	ast_tx_xtxop;	/* tx exceeded TXOP */
150	u_int32_t	ast_tx_timerexpired;	/* tx exceeded TX_TIMER */
151	u_int32_t	ast_tx_desccfgerr;	/* tx desc cfg error */
152	u_int32_t	ast_tx_swretries;	/* software TX retries */
153	u_int32_t	ast_tx_swretrymax;	/* software TX retry max limit reach */
154	u_int32_t	ast_tx_data_underrun;
155	u_int32_t	ast_tx_delim_underrun;
156	u_int32_t	ast_tx_aggr_failall;	/* aggregate TX failed in its entirety */
157	u_int32_t	ast_tx_getnobuf;
158	u_int32_t	ast_tx_getbusybuf;
159	u_int32_t	ast_tx_intr;
160	u_int32_t	ast_rx_intr;
161	u_int32_t	ast_tx_aggr_ok;		/* aggregate TX ok */
162	u_int32_t	ast_tx_aggr_fail;	/* aggregate TX failed */
163	u_int32_t	ast_tx_mcastq_overflow;	/* multicast queue overflow */
164	u_int32_t	ast_rx_keymiss;
165
166	u_int32_t	ast_pad[16];
167};
168
169#define	SIOCGATHSTATS	_IOWR('i', 137, struct ifreq)
170#define	SIOCZATHSTATS	_IOWR('i', 139, struct ifreq)
171#define	SIOCGATHAGSTATS	_IOWR('i', 141, struct ifreq)
172
173struct ath_diag {
174	char	ad_name[IFNAMSIZ];	/* if name, e.g. "ath0" */
175	u_int16_t ad_id;
176#define	ATH_DIAG_DYN	0x8000		/* allocate buffer in caller */
177#define	ATH_DIAG_IN	0x4000		/* copy in parameters */
178#define	ATH_DIAG_OUT	0x0000		/* copy out results (always) */
179#define	ATH_DIAG_ID	0x0fff
180	u_int16_t ad_in_size;		/* pack to fit, yech */
181	caddr_t	ad_in_data;
182	caddr_t	ad_out_data;
183	u_int	ad_out_size;
184
185};
186#define	SIOCGATHDIAG	_IOWR('i', 138, struct ath_diag)
187#define	SIOCGATHPHYERR	_IOWR('i', 140, struct ath_diag)
188
189/*
190 * Radio capture format.
191 */
192#define ATH_RX_RADIOTAP_PRESENT_BASE (		\
193	(1 << IEEE80211_RADIOTAP_TSFT)		| \
194	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
195	(1 << IEEE80211_RADIOTAP_RATE)		| \
196	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
197	(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL)	| \
198	(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE)	| \
199	(1 << IEEE80211_RADIOTAP_XCHANNEL)	| \
200	0)
201
202#ifdef	ATH_ENABLE_RADIOTAP_VENDOR_EXT
203#define	ATH_RX_RADIOTAP_PRESENT \
204	(ATH_RX_RADIOTAP_PRESENT_BASE		| \
205	(1 << IEEE80211_RADIOTAP_VENDOREXT)	| \
206	(1 << IEEE80211_RADIOTAP_EXT)		| \
207	0)
208#else
209#define	ATH_RX_RADIOTAP_PRESENT	ATH_RX_RADIOTAP_PRESENT_BASE
210#endif	/* ATH_ENABLE_RADIOTAP_PRESENT */
211
212#ifdef	ATH_ENABLE_RADIOTAP_VENDOR_EXT
213/*
214 * This is higher than the vendor bitmap used inside
215 * the Atheros reference codebase.
216 */
217
218/* Bit 8 */
219#define	ATH_RADIOTAP_VENDOR_HEADER	8
220
221/*
222 * Using four chains makes all the fields in the
223 * per-chain info header be 4-byte aligned.
224 */
225#define	ATH_RADIOTAP_MAX_CHAINS		4
226
227/*
228 * The vendor radiotap header data needs to be:
229 *
230 * + Aligned to a 4 byte address
231 * + .. so all internal fields are 4 bytes aligned;
232 * + .. and no 64 bit fields are allowed.
233 *
234 * So padding is required to ensure this is the case.
235 *
236 * Note that because of the lack of alignment with the
237 * vendor header (6 bytes), the first field must be
238 * two bytes so it can be accessed by alignment-strict
239 * platform (eg MIPS.)
240 */
241struct ath_radiotap_vendor_hdr {		/* 30 bytes */
242	uint8_t		vh_version;		/* 1 */
243	uint8_t		vh_rx_chainmask;	/* 1 */
244
245	/* At this point it should be 4 byte aligned */
246	uint32_t	evm[ATH_RADIOTAP_MAX_CHAINS];	/* 4 * 4 = 16 */
247
248	uint8_t		rssi_ctl[ATH_RADIOTAP_MAX_CHAINS];	/* 4 */
249	uint8_t		rssi_ext[ATH_RADIOTAP_MAX_CHAINS];	/* 4 */
250
251	uint8_t		vh_phyerr_code;	/* Phy error code, or 0xff */
252	uint8_t		vh_rs_status;	/* RX status */
253	uint8_t		vh_rssi;	/* Raw RSSI */
254	uint8_t		vh_pad1[1];	/* Pad to 4 byte boundary */
255} __packed;
256#endif	/* ATH_ENABLE_RADIOTAP_VENDOR_EXT */
257
258struct ath_rx_radiotap_header {
259	struct ieee80211_radiotap_header wr_ihdr;
260
261#ifdef	ATH_ENABLE_RADIOTAP_VENDOR_EXT
262	/* Vendor extension header bitmap */
263	uint32_t	wr_ext_bitmap;          /* 4 */
264
265	/*
266	 * This padding is needed because:
267	 * + the radiotap header is 8 bytes;
268	 * + the extension bitmap is 4 bytes;
269	 * + the tsf is 8 bytes, so it must start on an 8 byte
270	 *   boundary.
271	 */
272	uint32_t	wr_pad1;
273#endif	/* ATH_ENABLE_RADIOTAP_VENDOR_EXT */
274
275	/* Normal radiotap fields */
276	u_int64_t	wr_tsf;
277	u_int8_t	wr_flags;
278	u_int8_t	wr_rate;
279	int8_t		wr_antsignal;
280	int8_t		wr_antnoise;
281	u_int8_t	wr_antenna;
282	u_int8_t	wr_pad[3];
283	u_int32_t	wr_chan_flags;
284	u_int16_t	wr_chan_freq;
285	u_int8_t	wr_chan_ieee;
286	int8_t		wr_chan_maxpow;
287
288#ifdef	ATH_ENABLE_RADIOTAP_VENDOR_EXT
289	/*
290	 * Vendor header section, as required by the
291	 * presence of the vendor extension bit and bitmap
292	 * entry.
293	 *
294	 * XXX This must be aligned to a 4 byte address?
295	 * XXX or 8 byte address?
296	 */
297	struct ieee80211_radiotap_vendor_header wr_vh;  /* 6 bytes */
298
299	/*
300	 * Because of the lack of alignment enforced by the above
301	 * header, this vendor section won't be aligned in any
302	 * useful way.  So, this will include a two-byte version
303	 * value which will force the structure to be 4-byte aligned.
304	 */
305	struct ath_radiotap_vendor_hdr wr_v;
306#endif	/* ATH_ENABLE_RADIOTAP_VENDOR_EXT */
307} __packed;
308
309#define ATH_TX_RADIOTAP_PRESENT (		\
310	(1 << IEEE80211_RADIOTAP_TSFT)		| \
311	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
312	(1 << IEEE80211_RADIOTAP_RATE)		| \
313	(1 << IEEE80211_RADIOTAP_DBM_TX_POWER)	| \
314	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
315	(1 << IEEE80211_RADIOTAP_XCHANNEL)	| \
316	0)
317
318struct ath_tx_radiotap_header {
319	struct ieee80211_radiotap_header wt_ihdr;
320	u_int64_t	wt_tsf;
321	u_int8_t	wt_flags;
322	u_int8_t	wt_rate;
323	u_int8_t	wt_txpower;
324	u_int8_t	wt_antenna;
325	u_int32_t	wt_chan_flags;
326	u_int16_t	wt_chan_freq;
327	u_int8_t	wt_chan_ieee;
328	int8_t		wt_chan_maxpow;
329} __packed;
330
331/*
332 * DFS ioctl commands
333 */
334
335#define	DFS_SET_THRESH		2
336#define	DFS_GET_THRESH		3
337#define	DFS_RADARDETECTS	6
338
339/*
340 * DFS ioctl parameter types
341 */
342#define DFS_PARAM_FIRPWR	1
343#define DFS_PARAM_RRSSI		2
344#define DFS_PARAM_HEIGHT	3
345#define DFS_PARAM_PRSSI		4
346#define DFS_PARAM_INBAND	5
347#define DFS_PARAM_NOL		6	/* XXX not used in FreeBSD */
348#define DFS_PARAM_RELSTEP_EN	7
349#define DFS_PARAM_RELSTEP	8
350#define DFS_PARAM_RELPWR_EN	9
351#define DFS_PARAM_RELPWR	10
352#define DFS_PARAM_MAXLEN	11
353#define DFS_PARAM_USEFIR128	12
354#define DFS_PARAM_BLOCKRADAR	13
355#define DFS_PARAM_MAXRSSI_EN	14
356
357/* FreeBSD-specific start at 32 */
358#define	DFS_PARAM_ENABLE	32
359#define	DFS_PARAM_EN_EXTCH	33
360
361#endif /* _DEV_ATH_ATHIOCTL_H */
362