if_athioctl.h revision 138570
1116743Ssam/*-
2127780Ssam * Copyright (c) 2002-2004 Sam Leffler, Errno Consulting
3116743Ssam * All rights reserved.
4116743Ssam *
5116743Ssam * Redistribution and use in source and binary forms, with or without
6116743Ssam * modification, are permitted provided that the following conditions
7116743Ssam * are met:
8116743Ssam * 1. Redistributions of source code must retain the above copyright
9116743Ssam *    notice, this list of conditions and the following disclaimer,
10116743Ssam *    without modification.
11116743Ssam * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12116743Ssam *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13116743Ssam *    redistribution must be conditioned upon including a substantially
14116743Ssam *    similar Disclaimer requirement for further binary redistribution.
15116743Ssam * 3. Neither the names of the above-listed copyright holders nor the names
16116743Ssam *    of any contributors may be used to endorse or promote products derived
17116743Ssam *    from this software without specific prior written permission.
18116743Ssam *
19116743Ssam * Alternatively, this software may be distributed under the terms of the
20116743Ssam * GNU General Public License ("GPL") version 2 as published by the Free
21116743Ssam * Software Foundation.
22116743Ssam *
23116743Ssam * NO WARRANTY
24116743Ssam * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25116743Ssam * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26116743Ssam * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
27116743Ssam * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
28116743Ssam * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
29116743Ssam * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30116743Ssam * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31116743Ssam * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32116743Ssam * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33116743Ssam * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
34116743Ssam * THE POSSIBILITY OF SUCH DAMAGES.
35116743Ssam *
36116743Ssam * $FreeBSD: head/sys/dev/ath/if_athioctl.h 138570 2004-12-08 17:34:36Z sam $
37116743Ssam */
38116743Ssam
39116743Ssam/*
40116743Ssam * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
41116743Ssam */
42116743Ssam#ifndef _DEV_ATH_ATHIOCTL_H
43116743Ssam#define _DEV_ATH_ATHIOCTL_H
44116743Ssam
45116743Ssamstruct ath_stats {
46116743Ssam	u_int32_t	ast_watchdog;	/* device reset by watchdog */
47116743Ssam	u_int32_t	ast_hardware;	/* fatal hardware error interrupts */
48116743Ssam	u_int32_t	ast_bmiss;	/* beacon miss interrupts */
49138570Ssam	u_int32_t	ast_bstuck;	/* beacon stuck interrupts */
50116743Ssam	u_int32_t	ast_rxorn;	/* rx overrun interrupts */
51116743Ssam	u_int32_t	ast_rxeol;	/* rx eol interrupts */
52116743Ssam	u_int32_t	ast_txurn;	/* tx underrun interrupts */
53138570Ssam	u_int32_t	ast_mib;	/* mib interrupts */
54116743Ssam	u_int32_t	ast_intrcoal;	/* interrupts coalesced */
55138570Ssam	u_int32_t	ast_tx_packets;	/* packet sent on the interface */
56116743Ssam	u_int32_t	ast_tx_mgmt;	/* management frames transmitted */
57116743Ssam	u_int32_t	ast_tx_discard;	/* frames discarded prior to assoc */
58116743Ssam	u_int32_t	ast_tx_qstop;	/* output stopped 'cuz no buffer */
59116743Ssam	u_int32_t	ast_tx_encap;	/* tx encapsulation failed */
60116743Ssam	u_int32_t	ast_tx_nonode;	/* tx failed 'cuz no node */
61116743Ssam	u_int32_t	ast_tx_nombuf;	/* tx failed 'cuz no mbuf */
62116743Ssam	u_int32_t	ast_tx_nomcl;	/* tx failed 'cuz no cluster */
63116743Ssam	u_int32_t	ast_tx_linear;	/* tx linearized to cluster */
64116743Ssam	u_int32_t	ast_tx_nodata;	/* tx discarded empty frame */
65116743Ssam	u_int32_t	ast_tx_busdma;	/* tx failed for dma resrcs */
66116743Ssam	u_int32_t	ast_tx_xretries;/* tx failed 'cuz too many retries */
67116743Ssam	u_int32_t	ast_tx_fifoerr;	/* tx failed 'cuz FIFO underrun */
68116743Ssam	u_int32_t	ast_tx_filtered;/* tx failed 'cuz xmit filtered */
69116743Ssam	u_int32_t	ast_tx_shortretry;/* tx on-chip retries (short) */
70116743Ssam	u_int32_t	ast_tx_longretry;/* tx on-chip retries (long) */
71116743Ssam	u_int32_t	ast_tx_badrate;	/* tx failed 'cuz bogus xmit rate */
72116743Ssam	u_int32_t	ast_tx_noack;	/* tx frames with no ack marked */
73116743Ssam	u_int32_t	ast_tx_rts;	/* tx frames with rts enabled */
74116743Ssam	u_int32_t	ast_tx_cts;	/* tx frames with cts enabled */
75116743Ssam	u_int32_t	ast_tx_shortpre;/* tx frames with short preamble */
76127779Ssam	u_int32_t	ast_tx_altrate;	/* tx frames with alternate rate */
77127779Ssam	u_int32_t	ast_tx_protect;	/* tx frames with protection */
78116743Ssam	u_int32_t	ast_rx_nombuf;	/* rx setup failed 'cuz no mbuf */
79116743Ssam	u_int32_t	ast_rx_busdma;	/* rx setup failed for dma resrcs */
80116743Ssam	u_int32_t	ast_rx_orn;	/* rx failed 'cuz of desc overrun */
81116743Ssam	u_int32_t	ast_rx_crcerr;	/* rx failed 'cuz of bad CRC */
82116743Ssam	u_int32_t	ast_rx_fifoerr;	/* rx failed 'cuz of FIFO overrun */
83116743Ssam	u_int32_t	ast_rx_badcrypt;/* rx failed 'cuz decryption */
84138570Ssam	u_int32_t	ast_rx_badmic;	/* rx failed 'cuz MIC failure */
85116743Ssam	u_int32_t	ast_rx_phyerr;	/* rx failed 'cuz of PHY err */
86116743Ssam	u_int32_t	ast_rx_phy[32];	/* rx PHY error per-code counts */
87119147Ssam	u_int32_t	ast_rx_tooshort;/* rx discarded 'cuz frame too short */
88127779Ssam	u_int32_t	ast_rx_toobig;	/* rx discarded 'cuz frame too large */
89138570Ssam	u_int32_t	ast_rx_packets;	/* packet recv on the interface */
90138570Ssam	u_int32_t	ast_rx_mgt;	/* management frames received */
91119147Ssam	u_int32_t	ast_rx_ctl;	/* rx discarded 'cuz ctl frame */
92138570Ssam	int8_t		ast_tx_rssi;	/* tx rssi of last ack */
93138570Ssam	int8_t		ast_rx_rssi;	/* rx rssi from histogram */
94138570Ssam	u_int32_t	ast_be_xmit;	/* beacons transmitted */
95116743Ssam	u_int32_t	ast_be_nombuf;	/* beacon setup failed 'cuz no mbuf */
96116743Ssam	u_int32_t	ast_per_cal;	/* periodic calibration calls */
97116743Ssam	u_int32_t	ast_per_calfail;/* periodic calibration failed */
98116743Ssam	u_int32_t	ast_per_rfgain;	/* periodic calibration rfgain reset */
99116743Ssam	u_int32_t	ast_rate_calls;	/* rate control checks */
100116743Ssam	u_int32_t	ast_rate_raise;	/* rate control raised xmit rate */
101116743Ssam	u_int32_t	ast_rate_drop;	/* rate control dropped xmit rate */
102138570Ssam	u_int32_t	ast_ant_defswitch;/* rx/default antenna switches */
103138570Ssam	u_int32_t	ast_ant_txswitch;/* tx antenna switches */
104138570Ssam	u_int32_t	ast_ant_rx[8];	/* rx frames with antenna */
105138570Ssam	u_int32_t	ast_ant_tx[8];	/* tx frames with antenna */
106116743Ssam};
107116743Ssam
108116743Ssam#define	SIOCGATHSTATS	_IOWR('i', 137, struct ifreq)
109116743Ssam
110123044Ssamstruct ath_diag {
111138570Ssam	char	ad_name[IFNAMSIZ];	/* if name, e.g. "ath0" */
112138570Ssam	u_int16_t ad_id;
113138570Ssam#define	ATH_DIAG_DYN	0x8000		/* allocate buffer in caller */
114138570Ssam#define	ATH_DIAG_IN	0x4000		/* copy in parameters */
115138570Ssam#define	ATH_DIAG_OUT	0x0000		/* copy out results (always) */
116138570Ssam#define	ATH_DIAG_ID	0x0fff
117138570Ssam	u_int16_t ad_in_size;		/* pack to fit, yech */
118138570Ssam	caddr_t	ad_in_data;
119138570Ssam	caddr_t	ad_out_data;
120138570Ssam	u_int	ad_out_size;
121123044Ssam
122123044Ssam};
123123044Ssam#define	SIOCGATHDIAG	_IOWR('i', 138, struct ath_diag)
124123044Ssam
125119783Ssam/*
126119783Ssam * Radio capture format.
127119783Ssam */
128119783Ssam#define ATH_RX_RADIOTAP_PRESENT (		\
129119783Ssam	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
130119783Ssam	(1 << IEEE80211_RADIOTAP_RATE)		| \
131119783Ssam	(1 << IEEE80211_RADIOTAP_CHANNEL)	| \
132123928Ssam	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
133119783Ssam	(1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL)	| \
134119783Ssam	0)
135119783Ssam
136119783Ssamstruct ath_rx_radiotap_header {
137119783Ssam	struct ieee80211_radiotap_header wr_ihdr;
138119783Ssam	u_int8_t	wr_flags;		/* XXX for padding */
139119783Ssam	u_int8_t	wr_rate;
140119783Ssam	u_int16_t	wr_chan_freq;
141119783Ssam	u_int16_t	wr_chan_flags;
142123928Ssam	u_int8_t	wr_antenna;
143119783Ssam	u_int8_t	wr_antsignal;
144119783Ssam};
145119783Ssam
146119783Ssam#define ATH_TX_RADIOTAP_PRESENT (		\
147119783Ssam	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
148119783Ssam	(1 << IEEE80211_RADIOTAP_RATE)		| \
149119783Ssam	(1 << IEEE80211_RADIOTAP_CHANNEL)	| \
150123928Ssam	(1 << IEEE80211_RADIOTAP_DBM_TX_POWER)	| \
151123928Ssam	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
152119783Ssam	0)
153119783Ssam
154119783Ssamstruct ath_tx_radiotap_header {
155119783Ssam	struct ieee80211_radiotap_header wt_ihdr;
156119783Ssam	u_int8_t	wt_flags;		/* XXX for padding */
157119783Ssam	u_int8_t	wt_rate;
158119783Ssam	u_int16_t	wt_chan_freq;
159119783Ssam	u_int16_t	wt_chan_flags;
160123928Ssam	u_int8_t	wt_txpower;
161123928Ssam	u_int8_t	wt_antenna;
162119783Ssam};
163119783Ssam
164116743Ssam#endif /* _DEV_ATH_ATHIOCTL_H */
165