1116743Ssam/*-
2186904Ssam * Copyright (c) 2002-2009 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 *
16116743Ssam * NO WARRANTY
17116743Ssam * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18116743Ssam * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19116743Ssam * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20116743Ssam * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21116743Ssam * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22116743Ssam * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23116743Ssam * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24116743Ssam * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25116743Ssam * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26116743Ssam * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27116743Ssam * THE POSSIBILITY OF SUCH DAMAGES.
28116743Ssam *
29116743Ssam * $FreeBSD$
30116743Ssam */
31116743Ssam
32116743Ssam/*
33116743Ssam * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
34116743Ssam */
35116743Ssam#ifndef _DEV_ATH_ATHIOCTL_H
36116743Ssam#define _DEV_ATH_ATHIOCTL_H
37116743Ssam
38227327Sadrianstruct ath_tx_aggr_stats {
39227327Sadrian	u_int32_t	aggr_pkts[64];
40227327Sadrian	u_int32_t	aggr_single_pkt;
41227327Sadrian	u_int32_t	aggr_nonbaw_pkt;
42227327Sadrian	u_int32_t	aggr_aggr_pkt;
43227327Sadrian	u_int32_t	aggr_baw_closed_single_pkt;
44227327Sadrian	u_int32_t	aggr_low_hwq_single_pkt;
45227327Sadrian	u_int32_t	aggr_sched_nopkt;
46233989Sadrian	u_int32_t	aggr_rts_aggr_limited;
47227327Sadrian};
48227327Sadrian
49234090Sadrianstruct ath_intr_stats {
50234090Sadrian	u_int32_t	sync_intr[32];
51234090Sadrian};
52234090Sadrian
53116743Ssamstruct ath_stats {
54116743Ssam	u_int32_t	ast_watchdog;	/* device reset by watchdog */
55116743Ssam	u_int32_t	ast_hardware;	/* fatal hardware error interrupts */
56116743Ssam	u_int32_t	ast_bmiss;	/* beacon miss interrupts */
57155492Ssam	u_int32_t	ast_bmiss_phantom;/* beacon miss interrupts */
58138570Ssam	u_int32_t	ast_bstuck;	/* beacon stuck interrupts */
59116743Ssam	u_int32_t	ast_rxorn;	/* rx overrun interrupts */
60116743Ssam	u_int32_t	ast_rxeol;	/* rx eol interrupts */
61116743Ssam	u_int32_t	ast_txurn;	/* tx underrun interrupts */
62138570Ssam	u_int32_t	ast_mib;	/* mib interrupts */
63116743Ssam	u_int32_t	ast_intrcoal;	/* interrupts coalesced */
64138570Ssam	u_int32_t	ast_tx_packets;	/* packet sent on the interface */
65116743Ssam	u_int32_t	ast_tx_mgmt;	/* management frames transmitted */
66116743Ssam	u_int32_t	ast_tx_discard;	/* frames discarded prior to assoc */
67116743Ssam	u_int32_t	ast_tx_qstop;	/* output stopped 'cuz no buffer */
68116743Ssam	u_int32_t	ast_tx_encap;	/* tx encapsulation failed */
69116743Ssam	u_int32_t	ast_tx_nonode;	/* tx failed 'cuz no node */
70116743Ssam	u_int32_t	ast_tx_nombuf;	/* tx failed 'cuz no mbuf */
71116743Ssam	u_int32_t	ast_tx_nomcl;	/* tx failed 'cuz no cluster */
72116743Ssam	u_int32_t	ast_tx_linear;	/* tx linearized to cluster */
73116743Ssam	u_int32_t	ast_tx_nodata;	/* tx discarded empty frame */
74116743Ssam	u_int32_t	ast_tx_busdma;	/* tx failed for dma resrcs */
75116743Ssam	u_int32_t	ast_tx_xretries;/* tx failed 'cuz too many retries */
76116743Ssam	u_int32_t	ast_tx_fifoerr;	/* tx failed 'cuz FIFO underrun */
77116743Ssam	u_int32_t	ast_tx_filtered;/* tx failed 'cuz xmit filtered */
78116743Ssam	u_int32_t	ast_tx_shortretry;/* tx on-chip retries (short) */
79116743Ssam	u_int32_t	ast_tx_longretry;/* tx on-chip retries (long) */
80116743Ssam	u_int32_t	ast_tx_badrate;	/* tx failed 'cuz bogus xmit rate */
81116743Ssam	u_int32_t	ast_tx_noack;	/* tx frames with no ack marked */
82116743Ssam	u_int32_t	ast_tx_rts;	/* tx frames with rts enabled */
83116743Ssam	u_int32_t	ast_tx_cts;	/* tx frames with cts enabled */
84116743Ssam	u_int32_t	ast_tx_shortpre;/* tx frames with short preamble */
85127779Ssam	u_int32_t	ast_tx_altrate;	/* tx frames with alternate rate */
86127779Ssam	u_int32_t	ast_tx_protect;	/* tx frames with protection */
87170530Ssam	u_int32_t	ast_tx_ctsburst;/* tx frames with cts and bursting */
88170530Ssam	u_int32_t	ast_tx_ctsext;	/* tx frames with cts extension */
89116743Ssam	u_int32_t	ast_rx_nombuf;	/* rx setup failed 'cuz no mbuf */
90116743Ssam	u_int32_t	ast_rx_busdma;	/* rx setup failed for dma resrcs */
91116743Ssam	u_int32_t	ast_rx_orn;	/* rx failed 'cuz of desc overrun */
92116743Ssam	u_int32_t	ast_rx_crcerr;	/* rx failed 'cuz of bad CRC */
93116743Ssam	u_int32_t	ast_rx_fifoerr;	/* rx failed 'cuz of FIFO overrun */
94116743Ssam	u_int32_t	ast_rx_badcrypt;/* rx failed 'cuz decryption */
95138570Ssam	u_int32_t	ast_rx_badmic;	/* rx failed 'cuz MIC failure */
96116743Ssam	u_int32_t	ast_rx_phyerr;	/* rx failed 'cuz of PHY err */
97218689Sadrian	u_int32_t	ast_rx_phy[64];	/* rx PHY error per-code counts */
98119147Ssam	u_int32_t	ast_rx_tooshort;/* rx discarded 'cuz frame too short */
99127779Ssam	u_int32_t	ast_rx_toobig;	/* rx discarded 'cuz frame too large */
100138570Ssam	u_int32_t	ast_rx_packets;	/* packet recv on the interface */
101138570Ssam	u_int32_t	ast_rx_mgt;	/* management frames received */
102119147Ssam	u_int32_t	ast_rx_ctl;	/* rx discarded 'cuz ctl frame */
103138570Ssam	int8_t		ast_tx_rssi;	/* tx rssi of last ack */
104138570Ssam	int8_t		ast_rx_rssi;	/* rx rssi from histogram */
105161187Ssam	u_int8_t	ast_tx_rate;	/* IEEE rate of last unicast tx */
106138570Ssam	u_int32_t	ast_be_xmit;	/* beacons transmitted */
107116743Ssam	u_int32_t	ast_be_nombuf;	/* beacon setup failed 'cuz no mbuf */
108116743Ssam	u_int32_t	ast_per_cal;	/* periodic calibration calls */
109116743Ssam	u_int32_t	ast_per_calfail;/* periodic calibration failed */
110116743Ssam	u_int32_t	ast_per_rfgain;	/* periodic calibration rfgain reset */
111116743Ssam	u_int32_t	ast_rate_calls;	/* rate control checks */
112116743Ssam	u_int32_t	ast_rate_raise;	/* rate control raised xmit rate */
113116743Ssam	u_int32_t	ast_rate_drop;	/* rate control dropped xmit rate */
114138570Ssam	u_int32_t	ast_ant_defswitch;/* rx/default antenna switches */
115138570Ssam	u_int32_t	ast_ant_txswitch;/* tx antenna switches */
116138570Ssam	u_int32_t	ast_ant_rx[8];	/* rx frames with antenna */
117138570Ssam	u_int32_t	ast_ant_tx[8];	/* tx frames with antenna */
118159894Ssam	u_int32_t	ast_cabq_xmit;	/* cabq frames transmitted */
119159894Ssam	u_int32_t	ast_cabq_busy;	/* cabq found busy */
120160992Ssam	u_int32_t	ast_tx_raw;	/* tx frames through raw api */
121170530Ssam	u_int32_t	ast_ff_txok;	/* fast frames tx'd successfully */
122170530Ssam	u_int32_t	ast_ff_txerr;	/* fast frames tx'd w/ error */
123170530Ssam	u_int32_t	ast_ff_rx;	/* fast frames rx'd */
124170530Ssam	u_int32_t	ast_ff_flush;	/* fast frames flushed from staging q */
125170530Ssam	u_int32_t	ast_tx_qfull;	/* tx dropped 'cuz of queue limit */
126170530Ssam	int8_t		ast_rx_noise;	/* rx noise floor */
127186904Ssam	u_int32_t	ast_tx_nobuf;	/* tx dropped 'cuz no ath buffer */
128186904Ssam	u_int32_t	ast_tdma_update;/* TDMA slot timing updates */
129186904Ssam	u_int32_t	ast_tdma_timers;/* TDMA slot update set beacon timers */
130186904Ssam	u_int32_t	ast_tdma_tsf;	/* TDMA slot update set TSF */
131186904Ssam	u_int16_t	ast_tdma_tsfadjp;/* TDMA slot adjust+ (usec, smoothed)*/
132186904Ssam	u_int16_t	ast_tdma_tsfadjm;/* TDMA slot adjust- (usec, smoothed)*/
133188195Ssam	u_int32_t	ast_tdma_ack;	/* TDMA tx failed 'cuz ACK required */
134188195Ssam	u_int32_t	ast_tx_raw_fail;/* raw tx failed 'cuz h/w down */
135188555Ssam	u_int32_t	ast_tx_nofrag;	/* tx dropped 'cuz no ath frag buffer */
136211299Sadrian	u_int32_t	ast_be_missed;	/* missed beacons */
137217684Sadrian	u_int32_t	ast_ani_cal;	/* ANI calibrations performed */
138218378Sadrian	u_int32_t	ast_rx_agg;	/* number of aggregate frames RX'ed */
139221965Sadrian	u_int32_t	ast_rx_halfgi;	/* RX half-GI */
140221965Sadrian	u_int32_t	ast_rx_2040;	/* RX 40mhz frame */
141221965Sadrian	u_int32_t	ast_rx_pre_crc_err;	/* RX pre-delimiter CRC error */
142221965Sadrian	u_int32_t	ast_rx_post_crc_err;	/* RX post-delimiter CRC error */
143221965Sadrian	u_int32_t	ast_rx_decrypt_busy_err;	/* RX decrypt engine busy error */
144218689Sadrian	u_int32_t	ast_rx_hi_rx_chain;
145218924Sadrian	u_int32_t	ast_tx_htprotect;	/* HT tx frames with protection */
146221965Sadrian	u_int32_t	ast_rx_hitqueueend;	/* RX hit descr queue end */
147220772Sadrian	u_int32_t	ast_tx_timeout;		/* Global TX timeout */
148220782Sadrian	u_int32_t	ast_tx_cst;		/* Carrier sense timeout */
149221965Sadrian	u_int32_t	ast_tx_xtxop;	/* tx exceeded TXOP */
150221965Sadrian	u_int32_t	ast_tx_timerexpired;	/* tx exceeded TX_TIMER */
151221965Sadrian	u_int32_t	ast_tx_desccfgerr;	/* tx desc cfg error */
152226798Sadrian	u_int32_t	ast_tx_swretries;	/* software TX retries */
153226798Sadrian	u_int32_t	ast_tx_swretrymax;	/* software TX retry max limit reach */
154226798Sadrian	u_int32_t	ast_tx_data_underrun;
155226798Sadrian	u_int32_t	ast_tx_delim_underrun;
156227868Sadrian	u_int32_t	ast_tx_aggr_failall;	/* aggregate TX failed in its entirety */
157226798Sadrian	u_int32_t	ast_tx_getnobuf;
158226798Sadrian	u_int32_t	ast_tx_getbusybuf;
159226798Sadrian	u_int32_t	ast_tx_intr;
160226798Sadrian	u_int32_t	ast_rx_intr;
161227868Sadrian	u_int32_t	ast_tx_aggr_ok;		/* aggregate TX ok */
162227868Sadrian	u_int32_t	ast_tx_aggr_fail;	/* aggregate TX failed */
163232764Sadrian	u_int32_t	ast_tx_mcastq_overflow;	/* multicast queue overflow */
164238507Sadrian	u_int32_t	ast_rx_keymiss;
165240639Sadrian	u_int32_t	ast_tx_swfiltered;
166250665Sadrian	u_int32_t	ast_tx_node_psq_overflow;
167250346Sadrian	u_int32_t	ast_rx_stbc;		/* RX STBC frame */
168250326Sadrian	u_int32_t	ast_tx_nodeq_overflow;	/* node sw queue overflow */
169250665Sadrian	u_int32_t	ast_pad[12];
170116743Ssam};
171116743Ssam
172116743Ssam#define	SIOCGATHSTATS	_IOWR('i', 137, struct ifreq)
173188557Ssam#define	SIOCZATHSTATS	_IOWR('i', 139, struct ifreq)
174236833Sadrian#define	SIOCGATHAGSTATS	_IOWR('i', 141, struct ifreq)
175116743Ssam
176123044Ssamstruct ath_diag {
177138570Ssam	char	ad_name[IFNAMSIZ];	/* if name, e.g. "ath0" */
178138570Ssam	u_int16_t ad_id;
179138570Ssam#define	ATH_DIAG_DYN	0x8000		/* allocate buffer in caller */
180138570Ssam#define	ATH_DIAG_IN	0x4000		/* copy in parameters */
181138570Ssam#define	ATH_DIAG_OUT	0x0000		/* copy out results (always) */
182138570Ssam#define	ATH_DIAG_ID	0x0fff
183138570Ssam	u_int16_t ad_in_size;		/* pack to fit, yech */
184138570Ssam	caddr_t	ad_in_data;
185138570Ssam	caddr_t	ad_out_data;
186138570Ssam	u_int	ad_out_size;
187123044Ssam
188123044Ssam};
189123044Ssam#define	SIOCGATHDIAG	_IOWR('i', 138, struct ath_diag)
190224245Sadrian#define	SIOCGATHPHYERR	_IOWR('i', 140, struct ath_diag)
191123044Ssam
192238632Sadrian
193119783Ssam/*
194238632Sadrian * The rate control ioctl has to support multiple potential rate
195238632Sadrian * control classes.  For now, instead of trying to support an
196238632Sadrian * abstraction for this in the API, let's just use a TLV
197238632Sadrian * representation for the payload and let userspace sort it out.
198238632Sadrian */
199238632Sadrianstruct ath_rateioctl_tlv {
200238632Sadrian	uint16_t	tlv_id;
201238632Sadrian	uint16_t	tlv_len;	/* length excluding TLV header */
202238632Sadrian};
203238632Sadrian
204238632Sadrian/*
205238632Sadrian * This is purely the six byte MAC address.
206238632Sadrian */
207238632Sadrian#define	ATH_RATE_TLV_MACADDR		0xaab0
208238632Sadrian
209238632Sadrian/*
210238638Sadrian * The rate control modules may decide to push a mapping table
211238638Sadrian * of rix -> net80211 ratecode as part of the update.
212238638Sadrian */
213238638Sadrian#define	ATH_RATE_TLV_RATETABLE_NENTRIES	64
214238638Sadrianstruct ath_rateioctl_rt {
215238638Sadrian	uint16_t	nentries;
216238638Sadrian	uint16_t	pad[1];
217238638Sadrian	uint8_t		ratecode[ATH_RATE_TLV_RATETABLE_NENTRIES];
218238638Sadrian};
219238638Sadrian#define	ATH_RATE_TLV_RATETABLE		0xaab1
220238638Sadrian
221238638Sadrian/*
222238632Sadrian * This is the sample node statistics structure.
223238632Sadrian * More in ath_rate/sample/sample.h.
224238632Sadrian */
225238632Sadrian#define	ATH_RATE_TLV_SAMPLENODE		0xaab2
226238632Sadrian
227238632Sadrianstruct ath_rateioctl {
228238632Sadrian	char	if_name[IFNAMSIZ];	/* if name */
229238632Sadrian	union {
230238632Sadrian		uint8_t		macaddr[IEEE80211_ADDR_LEN];
231238632Sadrian		uint64_t	pad;
232238632Sadrian	} is_u;
233238632Sadrian	uint32_t		len;
234238632Sadrian	caddr_t			buf;
235238632Sadrian};
236238632Sadrian#define	SIOCGATHNODERATESTATS	_IOWR('i', 149, struct ath_rateioctl)
237238929Sadrian#define	SIOCGATHRATESTATS	_IOWR('i', 150, struct ath_rateioctl)
238238632Sadrian
239238632Sadrian/*
240119783Ssam * Radio capture format.
241119783Ssam */
242237522Sadrian#define ATH_RX_RADIOTAP_PRESENT_BASE (		\
243154140Ssam	(1 << IEEE80211_RADIOTAP_TSFT)		| \
244119783Ssam	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
245119783Ssam	(1 << IEEE80211_RADIOTAP_RATE)		| \
246123928Ssam	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
247154140Ssam	(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL)	| \
248154140Ssam	(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE)	| \
249170530Ssam	(1 << IEEE80211_RADIOTAP_XCHANNEL)	| \
250119783Ssam	0)
251119783Ssam
252237522Sadrian#ifdef	ATH_ENABLE_RADIOTAP_VENDOR_EXT
253237522Sadrian#define	ATH_RX_RADIOTAP_PRESENT \
254237522Sadrian	(ATH_RX_RADIOTAP_PRESENT_BASE		| \
255237522Sadrian	(1 << IEEE80211_RADIOTAP_VENDOREXT)	| \
256237522Sadrian	(1 << IEEE80211_RADIOTAP_EXT)		| \
257237522Sadrian	0)
258237522Sadrian#else
259237522Sadrian#define	ATH_RX_RADIOTAP_PRESENT	ATH_RX_RADIOTAP_PRESENT_BASE
260237522Sadrian#endif	/* ATH_ENABLE_RADIOTAP_PRESENT */
261237522Sadrian
262237522Sadrian#ifdef	ATH_ENABLE_RADIOTAP_VENDOR_EXT
263237522Sadrian/*
264237522Sadrian * This is higher than the vendor bitmap used inside
265237522Sadrian * the Atheros reference codebase.
266237522Sadrian */
267237522Sadrian
268237522Sadrian/* Bit 8 */
269237522Sadrian#define	ATH_RADIOTAP_VENDOR_HEADER	8
270237522Sadrian
271237522Sadrian/*
272237522Sadrian * Using four chains makes all the fields in the
273237522Sadrian * per-chain info header be 4-byte aligned.
274237522Sadrian */
275237522Sadrian#define	ATH_RADIOTAP_MAX_CHAINS		4
276237522Sadrian
277237522Sadrian/*
278248143Sadrian * AR9380 and later chips are 3x3, which requires
279248143Sadrian * 5 EVM DWORDs in HT40 mode.
280248143Sadrian */
281248143Sadrian#define	ATH_RADIOTAP_MAX_EVM		5
282248143Sadrian
283248143Sadrian/*
284237522Sadrian * The vendor radiotap header data needs to be:
285237522Sadrian *
286237522Sadrian * + Aligned to a 4 byte address
287237522Sadrian * + .. so all internal fields are 4 bytes aligned;
288237522Sadrian * + .. and no 64 bit fields are allowed.
289237522Sadrian *
290237522Sadrian * So padding is required to ensure this is the case.
291237522Sadrian *
292237522Sadrian * Note that because of the lack of alignment with the
293237522Sadrian * vendor header (6 bytes), the first field must be
294237522Sadrian * two bytes so it can be accessed by alignment-strict
295237522Sadrian * platform (eg MIPS.)
296237522Sadrian */
297237522Sadrianstruct ath_radiotap_vendor_hdr {		/* 30 bytes */
298237522Sadrian	uint8_t		vh_version;		/* 1 */
299237522Sadrian	uint8_t		vh_rx_chainmask;	/* 1 */
300237522Sadrian
301237522Sadrian	/* At this point it should be 4 byte aligned */
302248143Sadrian	uint32_t	evm[ATH_RADIOTAP_MAX_EVM];	/* 5 * 4 = 20 */
303237522Sadrian
304237522Sadrian	uint8_t		rssi_ctl[ATH_RADIOTAP_MAX_CHAINS];	/* 4 */
305237522Sadrian	uint8_t		rssi_ext[ATH_RADIOTAP_MAX_CHAINS];	/* 4 */
306237522Sadrian
307237522Sadrian	uint8_t		vh_phyerr_code;	/* Phy error code, or 0xff */
308237522Sadrian	uint8_t		vh_rs_status;	/* RX status */
309237522Sadrian	uint8_t		vh_rssi;	/* Raw RSSI */
310248146Sadrian	uint8_t		vh_flags;	/* General flags */
311248146Sadrian#define	ATH_VENDOR_PKT_RX	0x01
312248146Sadrian#define	ATH_VENDOR_PKT_TX	0x02
313248146Sadrian#define	ATH_VENDOR_PKT_RXPHYERR	0x04
314248146Sadrian#define	ATH_VENDOR_PKT_ISAGGR	0x08
315248146Sadrian#define	ATH_VENDOR_PKT_MOREAGGR	0x10
316248146Sadrian
317248146Sadrian	uint8_t		vh_rx_hwrate;	/* hardware RX ratecode */
318248146Sadrian	uint8_t		vh_rs_flags;	/* RX HAL flags */
319248146Sadrian	uint8_t		vh_pad[2];	/* pad to DWORD boundary */
320237522Sadrian} __packed;
321237522Sadrian#endif	/* ATH_ENABLE_RADIOTAP_VENDOR_EXT */
322237522Sadrian
323119783Ssamstruct ath_rx_radiotap_header {
324119783Ssam	struct ieee80211_radiotap_header wr_ihdr;
325237522Sadrian
326237522Sadrian#ifdef	ATH_ENABLE_RADIOTAP_VENDOR_EXT
327237522Sadrian	/* Vendor extension header bitmap */
328237522Sadrian	uint32_t	wr_ext_bitmap;          /* 4 */
329237522Sadrian
330237522Sadrian	/*
331237522Sadrian	 * This padding is needed because:
332237522Sadrian	 * + the radiotap header is 8 bytes;
333237522Sadrian	 * + the extension bitmap is 4 bytes;
334237522Sadrian	 * + the tsf is 8 bytes, so it must start on an 8 byte
335237522Sadrian	 *   boundary.
336237522Sadrian	 */
337237522Sadrian	uint32_t	wr_pad1;
338237522Sadrian#endif	/* ATH_ENABLE_RADIOTAP_VENDOR_EXT */
339237522Sadrian
340237522Sadrian	/* Normal radiotap fields */
341154140Ssam	u_int64_t	wr_tsf;
342154140Ssam	u_int8_t	wr_flags;
343119783Ssam	u_int8_t	wr_rate;
344170530Ssam	int8_t		wr_antsignal;
345170530Ssam	int8_t		wr_antnoise;
346170530Ssam	u_int8_t	wr_antenna;
347170530Ssam	u_int8_t	wr_pad[3];
348170530Ssam	u_int32_t	wr_chan_flags;
349119783Ssam	u_int16_t	wr_chan_freq;
350170530Ssam	u_int8_t	wr_chan_ieee;
351170530Ssam	int8_t		wr_chan_maxpow;
352237522Sadrian
353237522Sadrian#ifdef	ATH_ENABLE_RADIOTAP_VENDOR_EXT
354237522Sadrian	/*
355237522Sadrian	 * Vendor header section, as required by the
356237522Sadrian	 * presence of the vendor extension bit and bitmap
357237522Sadrian	 * entry.
358237522Sadrian	 *
359237522Sadrian	 * XXX This must be aligned to a 4 byte address?
360237522Sadrian	 * XXX or 8 byte address?
361237522Sadrian	 */
362237522Sadrian	struct ieee80211_radiotap_vendor_header wr_vh;  /* 6 bytes */
363237522Sadrian
364237522Sadrian	/*
365237522Sadrian	 * Because of the lack of alignment enforced by the above
366237522Sadrian	 * header, this vendor section won't be aligned in any
367237522Sadrian	 * useful way.  So, this will include a two-byte version
368237522Sadrian	 * value which will force the structure to be 4-byte aligned.
369237522Sadrian	 */
370237522Sadrian	struct ath_radiotap_vendor_hdr wr_v;
371237522Sadrian#endif	/* ATH_ENABLE_RADIOTAP_VENDOR_EXT */
372170530Ssam} __packed;
373119783Ssam
374119783Ssam#define ATH_TX_RADIOTAP_PRESENT (		\
375154140Ssam	(1 << IEEE80211_RADIOTAP_TSFT)		| \
376119783Ssam	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
377119783Ssam	(1 << IEEE80211_RADIOTAP_RATE)		| \
378123928Ssam	(1 << IEEE80211_RADIOTAP_DBM_TX_POWER)	| \
379123928Ssam	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
380170530Ssam	(1 << IEEE80211_RADIOTAP_XCHANNEL)	| \
381119783Ssam	0)
382119783Ssam
383119783Ssamstruct ath_tx_radiotap_header {
384119783Ssam	struct ieee80211_radiotap_header wt_ihdr;
385154140Ssam	u_int64_t	wt_tsf;
386154140Ssam	u_int8_t	wt_flags;
387119783Ssam	u_int8_t	wt_rate;
388123928Ssam	u_int8_t	wt_txpower;
389123928Ssam	u_int8_t	wt_antenna;
390170530Ssam	u_int32_t	wt_chan_flags;
391170530Ssam	u_int16_t	wt_chan_freq;
392170530Ssam	u_int8_t	wt_chan_ieee;
393170530Ssam	int8_t		wt_chan_maxpow;
394170530Ssam} __packed;
395119783Ssam
396224245Sadrian/*
397224245Sadrian * DFS ioctl commands
398224245Sadrian */
399224245Sadrian
400224245Sadrian#define	DFS_SET_THRESH		2
401224245Sadrian#define	DFS_GET_THRESH		3
402224245Sadrian#define	DFS_RADARDETECTS	6
403224245Sadrian
404224245Sadrian/*
405224245Sadrian * DFS ioctl parameter types
406224245Sadrian */
407224245Sadrian#define DFS_PARAM_FIRPWR	1
408224245Sadrian#define DFS_PARAM_RRSSI		2
409224245Sadrian#define DFS_PARAM_HEIGHT	3
410224245Sadrian#define DFS_PARAM_PRSSI		4
411224245Sadrian#define DFS_PARAM_INBAND	5
412224245Sadrian#define DFS_PARAM_NOL		6	/* XXX not used in FreeBSD */
413224245Sadrian#define DFS_PARAM_RELSTEP_EN	7
414224245Sadrian#define DFS_PARAM_RELSTEP	8
415224245Sadrian#define DFS_PARAM_RELPWR_EN	9
416224245Sadrian#define DFS_PARAM_RELPWR	10
417224245Sadrian#define DFS_PARAM_MAXLEN	11
418224245Sadrian#define DFS_PARAM_USEFIR128	12
419224245Sadrian#define DFS_PARAM_BLOCKRADAR	13
420224245Sadrian#define DFS_PARAM_MAXRSSI_EN	14
421224245Sadrian
422224245Sadrian/* FreeBSD-specific start at 32 */
423224245Sadrian#define	DFS_PARAM_ENABLE	32
424224245Sadrian#define	DFS_PARAM_EN_EXTCH	33
425224245Sadrian
426244951Sadrian/*
427244951Sadrian * Spectral ioctl parameter types
428244951Sadrian */
429244951Sadrian#define	SPECTRAL_PARAM_FFT_PERIOD	1
430244951Sadrian#define	SPECTRAL_PARAM_SS_PERIOD	2
431244951Sadrian#define	SPECTRAL_PARAM_SS_COUNT		3
432244951Sadrian#define	SPECTRAL_PARAM_SS_SHORT_RPT	4
433244951Sadrian#define	SPECTRAL_PARAM_ENABLED		5
434244951Sadrian#define	SPECTRAL_PARAM_ACTIVE		6
435244951Sadrian
436244951Sadrian/*
437244951Sadrian * Spectral control parameters
438244951Sadrian */
439244951Sadrian#define	SIOCGATHSPECTRAL	_IOWR('i', 151, struct ath_diag)
440244951Sadrian
441244951Sadrian#define	SPECTRAL_CONTROL_ENABLE		2
442244951Sadrian#define	SPECTRAL_CONTROL_DISABLE	3
443244951Sadrian#define	SPECTRAL_CONTROL_START		4
444244951Sadrian#define	SPECTRAL_CONTROL_STOP		5
445244951Sadrian#define	SPECTRAL_CONTROL_GET_PARAMS	6
446244951Sadrian#define	SPECTRAL_CONTROL_SET_PARAMS	7
447245185Sadrian#define	SPECTRAL_CONTROL_ENABLE_AT_RESET	8
448245185Sadrian#define	SPECTRAL_CONTROL_DISABLE_AT_RESET	9
449244951Sadrian
450116743Ssam#endif /* _DEV_ATH_ATHIOCTL_H */
451