xref: /freebsd/sys/dev/ath/if_athioctl.h (revision 7ec4e6b83b6459ebc4506d97a5fd5dded50bfedb)
15591b213SSam Leffler /*-
210ad9a77SSam Leffler  * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
35591b213SSam Leffler  * All rights reserved.
45591b213SSam Leffler  *
55591b213SSam Leffler  * Redistribution and use in source and binary forms, with or without
65591b213SSam Leffler  * modification, are permitted provided that the following conditions
75591b213SSam Leffler  * are met:
85591b213SSam Leffler  * 1. Redistributions of source code must retain the above copyright
95591b213SSam Leffler  *    notice, this list of conditions and the following disclaimer,
105591b213SSam Leffler  *    without modification.
115591b213SSam Leffler  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
125591b213SSam Leffler  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
135591b213SSam Leffler  *    redistribution must be conditioned upon including a substantially
145591b213SSam Leffler  *    similar Disclaimer requirement for further binary redistribution.
155591b213SSam Leffler  *
165591b213SSam Leffler  * NO WARRANTY
175591b213SSam Leffler  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185591b213SSam Leffler  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195591b213SSam Leffler  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
205591b213SSam Leffler  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
215591b213SSam Leffler  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
225591b213SSam Leffler  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
235591b213SSam Leffler  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
245591b213SSam Leffler  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
255591b213SSam Leffler  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
265591b213SSam Leffler  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
275591b213SSam Leffler  * THE POSSIBILITY OF SUCH DAMAGES.
285591b213SSam Leffler  *
295591b213SSam Leffler  * $FreeBSD$
305591b213SSam Leffler  */
315591b213SSam Leffler 
325591b213SSam Leffler /*
335591b213SSam Leffler  * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
345591b213SSam Leffler  */
355591b213SSam Leffler #ifndef _DEV_ATH_ATHIOCTL_H
365591b213SSam Leffler #define _DEV_ATH_ATHIOCTL_H
375591b213SSam Leffler 
385591b213SSam Leffler struct ath_stats {
395591b213SSam Leffler 	u_int32_t	ast_watchdog;	/* device reset by watchdog */
405591b213SSam Leffler 	u_int32_t	ast_hardware;	/* fatal hardware error interrupts */
415591b213SSam Leffler 	u_int32_t	ast_bmiss;	/* beacon miss interrupts */
42d7736e13SSam Leffler 	u_int32_t	ast_bmiss_phantom;/* beacon miss interrupts */
43c42a7b7eSSam Leffler 	u_int32_t	ast_bstuck;	/* beacon stuck interrupts */
445591b213SSam Leffler 	u_int32_t	ast_rxorn;	/* rx overrun interrupts */
455591b213SSam Leffler 	u_int32_t	ast_rxeol;	/* rx eol interrupts */
465591b213SSam Leffler 	u_int32_t	ast_txurn;	/* tx underrun interrupts */
47c42a7b7eSSam Leffler 	u_int32_t	ast_mib;	/* mib interrupts */
485591b213SSam Leffler 	u_int32_t	ast_intrcoal;	/* interrupts coalesced */
49c42a7b7eSSam Leffler 	u_int32_t	ast_tx_packets;	/* packet sent on the interface */
505591b213SSam Leffler 	u_int32_t	ast_tx_mgmt;	/* management frames transmitted */
515591b213SSam Leffler 	u_int32_t	ast_tx_discard;	/* frames discarded prior to assoc */
525591b213SSam Leffler 	u_int32_t	ast_tx_qstop;	/* output stopped 'cuz no buffer */
535591b213SSam Leffler 	u_int32_t	ast_tx_encap;	/* tx encapsulation failed */
545591b213SSam Leffler 	u_int32_t	ast_tx_nonode;	/* tx failed 'cuz no node */
555591b213SSam Leffler 	u_int32_t	ast_tx_nombuf;	/* tx failed 'cuz no mbuf */
565591b213SSam Leffler 	u_int32_t	ast_tx_nomcl;	/* tx failed 'cuz no cluster */
575591b213SSam Leffler 	u_int32_t	ast_tx_linear;	/* tx linearized to cluster */
585591b213SSam Leffler 	u_int32_t	ast_tx_nodata;	/* tx discarded empty frame */
595591b213SSam Leffler 	u_int32_t	ast_tx_busdma;	/* tx failed for dma resrcs */
605591b213SSam Leffler 	u_int32_t	ast_tx_xretries;/* tx failed 'cuz too many retries */
615591b213SSam Leffler 	u_int32_t	ast_tx_fifoerr;	/* tx failed 'cuz FIFO underrun */
625591b213SSam Leffler 	u_int32_t	ast_tx_filtered;/* tx failed 'cuz xmit filtered */
635591b213SSam Leffler 	u_int32_t	ast_tx_shortretry;/* tx on-chip retries (short) */
645591b213SSam Leffler 	u_int32_t	ast_tx_longretry;/* tx on-chip retries (long) */
655591b213SSam Leffler 	u_int32_t	ast_tx_badrate;	/* tx failed 'cuz bogus xmit rate */
665591b213SSam Leffler 	u_int32_t	ast_tx_noack;	/* tx frames with no ack marked */
675591b213SSam Leffler 	u_int32_t	ast_tx_rts;	/* tx frames with rts enabled */
685591b213SSam Leffler 	u_int32_t	ast_tx_cts;	/* tx frames with cts enabled */
695591b213SSam Leffler 	u_int32_t	ast_tx_shortpre;/* tx frames with short preamble */
7059f32d6bSSam Leffler 	u_int32_t	ast_tx_altrate;	/* tx frames with alternate rate */
7159f32d6bSSam Leffler 	u_int32_t	ast_tx_protect;	/* tx frames with protection */
7268e8e04eSSam Leffler 	u_int32_t	ast_tx_ctsburst;/* tx frames with cts and bursting */
7368e8e04eSSam Leffler 	u_int32_t	ast_tx_ctsext;	/* tx frames with cts extension */
745591b213SSam Leffler 	u_int32_t	ast_rx_nombuf;	/* rx setup failed 'cuz no mbuf */
755591b213SSam Leffler 	u_int32_t	ast_rx_busdma;	/* rx setup failed for dma resrcs */
765591b213SSam Leffler 	u_int32_t	ast_rx_orn;	/* rx failed 'cuz of desc overrun */
775591b213SSam Leffler 	u_int32_t	ast_rx_crcerr;	/* rx failed 'cuz of bad CRC */
785591b213SSam Leffler 	u_int32_t	ast_rx_fifoerr;	/* rx failed 'cuz of FIFO overrun */
795591b213SSam Leffler 	u_int32_t	ast_rx_badcrypt;/* rx failed 'cuz decryption */
80c42a7b7eSSam Leffler 	u_int32_t	ast_rx_badmic;	/* rx failed 'cuz MIC failure */
815591b213SSam Leffler 	u_int32_t	ast_rx_phyerr;	/* rx failed 'cuz of PHY err */
825591b213SSam Leffler 	u_int32_t	ast_rx_phy[32];	/* rx PHY error per-code counts */
83d1d0cf62SSam Leffler 	u_int32_t	ast_rx_tooshort;/* rx discarded 'cuz frame too short */
8459f32d6bSSam Leffler 	u_int32_t	ast_rx_toobig;	/* rx discarded 'cuz frame too large */
85c42a7b7eSSam Leffler 	u_int32_t	ast_rx_packets;	/* packet recv on the interface */
86c42a7b7eSSam Leffler 	u_int32_t	ast_rx_mgt;	/* management frames received */
87d1d0cf62SSam Leffler 	u_int32_t	ast_rx_ctl;	/* rx discarded 'cuz ctl frame */
88c42a7b7eSSam Leffler 	int8_t		ast_tx_rssi;	/* tx rssi of last ack */
89c42a7b7eSSam Leffler 	int8_t		ast_rx_rssi;	/* rx rssi from histogram */
906bf62dd1SSam Leffler 	u_int8_t	ast_tx_rate;	/* IEEE rate of last unicast tx */
91c42a7b7eSSam Leffler 	u_int32_t	ast_be_xmit;	/* beacons transmitted */
925591b213SSam Leffler 	u_int32_t	ast_be_nombuf;	/* beacon setup failed 'cuz no mbuf */
935591b213SSam Leffler 	u_int32_t	ast_per_cal;	/* periodic calibration calls */
945591b213SSam Leffler 	u_int32_t	ast_per_calfail;/* periodic calibration failed */
955591b213SSam Leffler 	u_int32_t	ast_per_rfgain;	/* periodic calibration rfgain reset */
965591b213SSam Leffler 	u_int32_t	ast_rate_calls;	/* rate control checks */
975591b213SSam Leffler 	u_int32_t	ast_rate_raise;	/* rate control raised xmit rate */
985591b213SSam Leffler 	u_int32_t	ast_rate_drop;	/* rate control dropped xmit rate */
99c42a7b7eSSam Leffler 	u_int32_t	ast_ant_defswitch;/* rx/default antenna switches */
100c42a7b7eSSam Leffler 	u_int32_t	ast_ant_txswitch;/* tx antenna switches */
101c42a7b7eSSam Leffler 	u_int32_t	ast_ant_rx[8];	/* rx frames with antenna */
102c42a7b7eSSam Leffler 	u_int32_t	ast_ant_tx[8];	/* tx frames with antenna */
10330db812aSSam Leffler 	u_int32_t	ast_cabq_xmit;	/* cabq frames transmitted */
10430db812aSSam Leffler 	u_int32_t	ast_cabq_busy;	/* cabq found busy */
105664443d0SSam Leffler 	u_int32_t	ast_tx_raw;	/* tx frames through raw api */
10668e8e04eSSam Leffler 	u_int32_t	ast_ff_txok;	/* fast frames tx'd successfully */
10768e8e04eSSam Leffler 	u_int32_t	ast_ff_txerr;	/* fast frames tx'd w/ error */
10868e8e04eSSam Leffler 	u_int32_t	ast_ff_rx;	/* fast frames rx'd */
10968e8e04eSSam Leffler 	u_int32_t	ast_ff_flush;	/* fast frames flushed from staging q */
11068e8e04eSSam Leffler 	u_int32_t	ast_tx_qfull;	/* tx dropped 'cuz of queue limit */
11168e8e04eSSam Leffler 	int8_t		ast_rx_noise;	/* rx noise floor */
11210ad9a77SSam Leffler 	u_int32_t	ast_tx_nobuf;	/* tx dropped 'cuz no ath buffer */
11310ad9a77SSam Leffler 	u_int32_t	ast_tdma_update;/* TDMA slot timing updates */
11410ad9a77SSam Leffler 	u_int32_t	ast_tdma_timers;/* TDMA slot update set beacon timers */
11510ad9a77SSam Leffler 	u_int32_t	ast_tdma_tsf;	/* TDMA slot update set TSF */
11610ad9a77SSam Leffler 	u_int16_t	ast_tdma_tsfadjp;/* TDMA slot adjust+ (usec, smoothed)*/
11710ad9a77SSam Leffler 	u_int16_t	ast_tdma_tsfadjm;/* TDMA slot adjust- (usec, smoothed)*/
1183267a60cSSam Leffler 	u_int32_t	ast_tdma_ack;	/* TDMA tx failed 'cuz ACK required */
1193267a60cSSam Leffler 	u_int32_t	ast_tx_raw_fail;/* raw tx failed 'cuz h/w down */
12036c6be9aSSam Leffler 	u_int32_t	ast_tx_nofrag;	/* tx dropped 'cuz no ath frag buffer */
121*7ec4e6b8SAdrian Chadd 	u_int32_t	ast_be_missed;	/* missed beacons */
122*7ec4e6b8SAdrian Chadd 	u_int32_t	ast_pad[13];
1235591b213SSam Leffler };
1245591b213SSam Leffler 
1255591b213SSam Leffler #define	SIOCGATHSTATS	_IOWR('i', 137, struct ifreq)
1263fc21fedSSam Leffler #define	SIOCZATHSTATS	_IOWR('i', 139, struct ifreq)
1275591b213SSam Leffler 
1288cec0ab9SSam Leffler struct ath_diag {
1298cec0ab9SSam Leffler 	char	ad_name[IFNAMSIZ];	/* if name, e.g. "ath0" */
130c42a7b7eSSam Leffler 	u_int16_t ad_id;
131c42a7b7eSSam Leffler #define	ATH_DIAG_DYN	0x8000		/* allocate buffer in caller */
132c42a7b7eSSam Leffler #define	ATH_DIAG_IN	0x4000		/* copy in parameters */
133c42a7b7eSSam Leffler #define	ATH_DIAG_OUT	0x0000		/* copy out results (always) */
134c42a7b7eSSam Leffler #define	ATH_DIAG_ID	0x0fff
135c42a7b7eSSam Leffler 	u_int16_t ad_in_size;		/* pack to fit, yech */
136c42a7b7eSSam Leffler 	caddr_t	ad_in_data;
137c42a7b7eSSam Leffler 	caddr_t	ad_out_data;
138c42a7b7eSSam Leffler 	u_int	ad_out_size;
1398cec0ab9SSam Leffler 
1408cec0ab9SSam Leffler };
1418cec0ab9SSam Leffler #define	SIOCGATHDIAG	_IOWR('i', 138, struct ath_diag)
1428cec0ab9SSam Leffler 
14373454c73SSam Leffler /*
14473454c73SSam Leffler  * Radio capture format.
14573454c73SSam Leffler  */
14673454c73SSam Leffler #define ATH_RX_RADIOTAP_PRESENT (		\
1477b0c77ecSSam Leffler 	(1 << IEEE80211_RADIOTAP_TSFT)		| \
14873454c73SSam Leffler 	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
14973454c73SSam Leffler 	(1 << IEEE80211_RADIOTAP_RATE)		| \
15073454c73SSam Leffler 	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
1517b0c77ecSSam Leffler 	(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL)	| \
1527b0c77ecSSam Leffler 	(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE)	| \
15368e8e04eSSam Leffler 	(1 << IEEE80211_RADIOTAP_XCHANNEL)	| \
15473454c73SSam Leffler 	0)
15573454c73SSam Leffler 
15673454c73SSam Leffler struct ath_rx_radiotap_header {
15773454c73SSam Leffler 	struct ieee80211_radiotap_header wr_ihdr;
1587b0c77ecSSam Leffler 	u_int64_t	wr_tsf;
1597b0c77ecSSam Leffler 	u_int8_t	wr_flags;
16073454c73SSam Leffler 	u_int8_t	wr_rate;
16168e8e04eSSam Leffler 	int8_t		wr_antsignal;
16268e8e04eSSam Leffler 	int8_t		wr_antnoise;
1637b0c77ecSSam Leffler 	u_int8_t	wr_antenna;
16468e8e04eSSam Leffler 	u_int8_t	wr_pad[3];
16568e8e04eSSam Leffler 	u_int32_t	wr_chan_flags;
16668e8e04eSSam Leffler 	u_int16_t	wr_chan_freq;
16768e8e04eSSam Leffler 	u_int8_t	wr_chan_ieee;
16868e8e04eSSam Leffler 	int8_t		wr_chan_maxpow;
16968e8e04eSSam Leffler } __packed;
17073454c73SSam Leffler 
17173454c73SSam Leffler #define ATH_TX_RADIOTAP_PRESENT (		\
1727b0c77ecSSam Leffler 	(1 << IEEE80211_RADIOTAP_TSFT)		| \
17373454c73SSam Leffler 	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
17473454c73SSam Leffler 	(1 << IEEE80211_RADIOTAP_RATE)		| \
175eb2cdcb1SSam Leffler 	(1 << IEEE80211_RADIOTAP_DBM_TX_POWER)	| \
176eb2cdcb1SSam Leffler 	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
17768e8e04eSSam Leffler 	(1 << IEEE80211_RADIOTAP_XCHANNEL)	| \
17873454c73SSam Leffler 	0)
17973454c73SSam Leffler 
18073454c73SSam Leffler struct ath_tx_radiotap_header {
18173454c73SSam Leffler 	struct ieee80211_radiotap_header wt_ihdr;
1827b0c77ecSSam Leffler 	u_int64_t	wt_tsf;
1837b0c77ecSSam Leffler 	u_int8_t	wt_flags;
18473454c73SSam Leffler 	u_int8_t	wt_rate;
185eb2cdcb1SSam Leffler 	u_int8_t	wt_txpower;
186eb2cdcb1SSam Leffler 	u_int8_t	wt_antenna;
18768e8e04eSSam Leffler 	u_int32_t	wt_chan_flags;
18868e8e04eSSam Leffler 	u_int16_t	wt_chan_freq;
18968e8e04eSSam Leffler 	u_int8_t	wt_chan_ieee;
19068e8e04eSSam Leffler 	int8_t		wt_chan_maxpow;
19168e8e04eSSam Leffler } __packed;
19273454c73SSam Leffler 
1935591b213SSam Leffler #endif /* _DEV_ATH_ATHIOCTL_H */
194