xref: /freebsd/sys/dev/ath/ath_hal/ah.h (revision b3aaa0cc21c63d388230c7ef2a80abd631ff20d5)
1 /*
2  * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3  * Copyright (c) 2002-2008 Atheros Communications, Inc.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  *
17  * $FreeBSD$
18  */
19 
20 #ifndef _ATH_AH_H_
21 #define _ATH_AH_H_
22 /*
23  * Atheros Hardware Access Layer
24  *
25  * Clients of the HAL call ath_hal_attach to obtain a reference to an ath_hal
26  * structure for use with the device.  Hardware-related operations that
27  * follow must call back into the HAL through interface, supplying the
28  * reference as the first parameter.
29  */
30 
31 #include "ah_osdep.h"
32 
33 /*
34  * __ahdecl is analogous to _cdecl; it defines the calling
35  * convention used within the HAL.  For most systems this
36  * can just default to be empty and the compiler will (should)
37  * use _cdecl.  For systems where _cdecl is not compatible this
38  * must be defined.  See linux/ah_osdep.h for an example.
39  */
40 #ifndef __ahdecl
41 #define __ahdecl
42 #endif
43 
44 /*
45  * Status codes that may be returned by the HAL.  Note that
46  * interfaces that return a status code set it only when an
47  * error occurs--i.e. you cannot check it for success.
48  */
49 typedef enum {
50 	HAL_OK		= 0,	/* No error */
51 	HAL_ENXIO	= 1,	/* No hardware present */
52 	HAL_ENOMEM	= 2,	/* Memory allocation failed */
53 	HAL_EIO		= 3,	/* Hardware didn't respond as expected */
54 	HAL_EEMAGIC	= 4,	/* EEPROM magic number invalid */
55 	HAL_EEVERSION	= 5,	/* EEPROM version invalid */
56 	HAL_EELOCKED	= 6,	/* EEPROM unreadable */
57 	HAL_EEBADSUM	= 7,	/* EEPROM checksum invalid */
58 	HAL_EEREAD	= 8,	/* EEPROM read problem */
59 	HAL_EEBADMAC	= 9,	/* EEPROM mac address invalid */
60 	HAL_EESIZE	= 10,	/* EEPROM size not supported */
61 	HAL_EEWRITE	= 11,	/* Attempt to change write-locked EEPROM */
62 	HAL_EINVAL	= 12,	/* Invalid parameter to function */
63 	HAL_ENOTSUPP	= 13,	/* Hardware revision not supported */
64 	HAL_ESELFTEST	= 14,	/* Hardware self-test failed */
65 	HAL_EINPROGRESS	= 15,	/* Operation incomplete */
66 	HAL_EEBADREG	= 16,	/* EEPROM invalid regulatory contents */
67 	HAL_EEBADCC	= 17,	/* EEPROM invalid country code */
68 } HAL_STATUS;
69 
70 typedef enum {
71 	AH_FALSE = 0,		/* NB: lots of code assumes false is zero */
72 	AH_TRUE  = 1,
73 } HAL_BOOL;
74 
75 typedef enum {
76 	HAL_CAP_REG_DMN		= 0,	/* current regulatory domain */
77 	HAL_CAP_CIPHER		= 1,	/* hardware supports cipher */
78 	HAL_CAP_TKIP_MIC	= 2,	/* handle TKIP MIC in hardware */
79 	HAL_CAP_TKIP_SPLIT	= 3,	/* hardware TKIP uses split keys */
80 	HAL_CAP_PHYCOUNTERS	= 4,	/* hardware PHY error counters */
81 	HAL_CAP_DIVERSITY	= 5,	/* hardware supports fast diversity */
82 	HAL_CAP_KEYCACHE_SIZE	= 6,	/* number of entries in key cache */
83 	HAL_CAP_NUM_TXQUEUES	= 7,	/* number of hardware xmit queues */
84 	HAL_CAP_VEOL		= 9,	/* hardware supports virtual EOL */
85 	HAL_CAP_PSPOLL		= 10,	/* hardware has working PS-Poll support */
86 	HAL_CAP_DIAG		= 11,	/* hardware diagnostic support */
87 	HAL_CAP_COMPRESSION	= 12,	/* hardware supports compression */
88 	HAL_CAP_BURST		= 13,	/* hardware supports packet bursting */
89 	HAL_CAP_FASTFRAME	= 14,	/* hardware supoprts fast frames */
90 	HAL_CAP_TXPOW		= 15,	/* global tx power limit  */
91 	HAL_CAP_TPC		= 16,	/* per-packet tx power control  */
92 	HAL_CAP_PHYDIAG		= 17,	/* hardware phy error diagnostic */
93 	HAL_CAP_BSSIDMASK	= 18,	/* hardware supports bssid mask */
94 	HAL_CAP_MCAST_KEYSRCH	= 19,	/* hardware has multicast key search */
95 	HAL_CAP_TSF_ADJUST	= 20,	/* hardware has beacon tsf adjust */
96 	/* 21 was HAL_CAP_XR */
97 	HAL_CAP_WME_TKIPMIC 	= 22,   /* hardware can support TKIP MIC when WMM is turned on */
98 	/* 23 was HAL_CAP_CHAN_HALFRATE */
99 	/* 24 was HAL_CAP_CHAN_QUARTERRATE */
100 	HAL_CAP_RFSILENT	= 25,	/* hardware has rfsilent support  */
101 	HAL_CAP_TPC_ACK		= 26,	/* ack txpower with per-packet tpc */
102 	HAL_CAP_TPC_CTS		= 27,	/* cts txpower with per-packet tpc */
103 	HAL_CAP_11D		= 28,   /* 11d beacon support for changing cc */
104 	HAL_CAP_INTMIT		= 29,	/* interference mitigation */
105 	HAL_CAP_RXORN_FATAL	= 30,	/* HAL_INT_RXORN treated as fatal */
106 	HAL_CAP_HT		= 31,   /* hardware can support HT */
107 	HAL_CAP_TX_CHAINMASK	= 32,	/* mask of TX chains supported */
108 	HAL_CAP_RX_CHAINMASK	= 33,	/* mask of RX chains supported */
109 	HAL_CAP_RXTSTAMP_PREC	= 34,	/* rx desc tstamp precision (bits) */
110 	HAL_CAP_BB_HANG		= 35,	/* can baseband hang */
111 	HAL_CAP_MAC_HANG	= 36,	/* can MAC hang */
112 } HAL_CAPABILITY_TYPE;
113 
114 /*
115  * "States" for setting the LED.  These correspond to
116  * the possible 802.11 operational states and there may
117  * be a many-to-one mapping between these states and the
118  * actual hardware state for the LED's (i.e. the hardware
119  * may have fewer states).
120  */
121 typedef enum {
122 	HAL_LED_INIT	= 0,
123 	HAL_LED_SCAN	= 1,
124 	HAL_LED_AUTH	= 2,
125 	HAL_LED_ASSOC	= 3,
126 	HAL_LED_RUN	= 4
127 } HAL_LED_STATE;
128 
129 /*
130  * Transmit queue types/numbers.  These are used to tag
131  * each transmit queue in the hardware and to identify a set
132  * of transmit queues for operations such as start/stop dma.
133  */
134 typedef enum {
135 	HAL_TX_QUEUE_INACTIVE	= 0,		/* queue is inactive/unused */
136 	HAL_TX_QUEUE_DATA	= 1,		/* data xmit q's */
137 	HAL_TX_QUEUE_BEACON	= 2,		/* beacon xmit q */
138 	HAL_TX_QUEUE_CAB	= 3,		/* "crap after beacon" xmit q */
139 	HAL_TX_QUEUE_UAPSD	= 4,		/* u-apsd power save xmit q */
140 } HAL_TX_QUEUE;
141 
142 #define	HAL_NUM_TX_QUEUES	10		/* max possible # of queues */
143 
144 /*
145  * Transmit queue subtype.  These map directly to
146  * WME Access Categories (except for UPSD).  Refer
147  * to Table 5 of the WME spec.
148  */
149 typedef enum {
150 	HAL_WME_AC_BK	= 0,			/* background access category */
151 	HAL_WME_AC_BE	= 1, 			/* best effort access category*/
152 	HAL_WME_AC_VI	= 2,			/* video access category */
153 	HAL_WME_AC_VO	= 3,			/* voice access category */
154 	HAL_WME_UPSD	= 4,			/* uplink power save */
155 } HAL_TX_QUEUE_SUBTYPE;
156 
157 /*
158  * Transmit queue flags that control various
159  * operational parameters.
160  */
161 typedef enum {
162 	/*
163 	 * Per queue interrupt enables.  When set the associated
164 	 * interrupt may be delivered for packets sent through
165 	 * the queue.  Without these enabled no interrupts will
166 	 * be delivered for transmits through the queue.
167 	 */
168 	HAL_TXQ_TXOKINT_ENABLE	   = 0x0001,	/* enable TXOK interrupt */
169 	HAL_TXQ_TXERRINT_ENABLE	   = 0x0001,	/* enable TXERR interrupt */
170 	HAL_TXQ_TXDESCINT_ENABLE   = 0x0002,	/* enable TXDESC interrupt */
171 	HAL_TXQ_TXEOLINT_ENABLE	   = 0x0004,	/* enable TXEOL interrupt */
172 	HAL_TXQ_TXURNINT_ENABLE	   = 0x0008,	/* enable TXURN interrupt */
173 	/*
174 	 * Enable hardware compression for packets sent through
175 	 * the queue.  The compression buffer must be setup and
176 	 * packets must have a key entry marked in the tx descriptor.
177 	 */
178 	HAL_TXQ_COMPRESSION_ENABLE  = 0x0010,	/* enable h/w compression */
179 	/*
180 	 * Disable queue when veol is hit or ready time expires.
181 	 * By default the queue is disabled only on reaching the
182 	 * physical end of queue (i.e. a null link ptr in the
183 	 * descriptor chain).
184 	 */
185 	HAL_TXQ_RDYTIME_EXP_POLICY_ENABLE = 0x0020,
186 	/*
187 	 * Schedule frames on delivery of a DBA (DMA Beacon Alert)
188 	 * event.  Frames will be transmitted only when this timer
189 	 * fires, e.g to transmit a beacon in ap or adhoc modes.
190 	 */
191 	HAL_TXQ_DBA_GATED	    = 0x0040,	/* schedule based on DBA */
192 	/*
193 	 * Each transmit queue has a counter that is incremented
194 	 * each time the queue is enabled and decremented when
195 	 * the list of frames to transmit is traversed (or when
196 	 * the ready time for the queue expires).  This counter
197 	 * must be non-zero for frames to be scheduled for
198 	 * transmission.  The following controls disable bumping
199 	 * this counter under certain conditions.  Typically this
200 	 * is used to gate frames based on the contents of another
201 	 * queue (e.g. CAB traffic may only follow a beacon frame).
202 	 * These are meaningful only when frames are scheduled
203 	 * with a non-ASAP policy (e.g. DBA-gated).
204 	 */
205 	HAL_TXQ_CBR_DIS_QEMPTY	    = 0x0080,	/* disable on this q empty */
206 	HAL_TXQ_CBR_DIS_BEMPTY	    = 0x0100,	/* disable on beacon q empty */
207 
208 	/*
209 	 * Fragment burst backoff policy.  Normally the no backoff
210 	 * is done after a successful transmission, the next fragment
211 	 * is sent at SIFS.  If this flag is set backoff is done
212 	 * after each fragment, regardless whether it was ack'd or
213 	 * not, after the backoff count reaches zero a normal channel
214 	 * access procedure is done before the next transmit (i.e.
215 	 * wait AIFS instead of SIFS).
216 	 */
217 	HAL_TXQ_FRAG_BURST_BACKOFF_ENABLE = 0x00800000,
218 	/*
219 	 * Disable post-tx backoff following each frame.
220 	 */
221 	HAL_TXQ_BACKOFF_DISABLE	    = 0x00010000, /* disable post backoff  */
222 	/*
223 	 * DCU arbiter lockout control.  This controls how
224 	 * lower priority tx queues are handled with respect to
225 	 * to a specific queue when multiple queues have frames
226 	 * to send.  No lockout means lower priority queues arbitrate
227 	 * concurrently with this queue.  Intra-frame lockout
228 	 * means lower priority queues are locked out until the
229 	 * current frame transmits (e.g. including backoffs and bursting).
230 	 * Global lockout means nothing lower can arbitrary so
231 	 * long as there is traffic activity on this queue (frames,
232 	 * backoff, etc).
233 	 */
234 	HAL_TXQ_ARB_LOCKOUT_INTRA   = 0x00020000, /* intra-frame lockout */
235 	HAL_TXQ_ARB_LOCKOUT_GLOBAL  = 0x00040000, /* full lockout s */
236 
237 	HAL_TXQ_IGNORE_VIRTCOL	    = 0x00080000, /* ignore virt collisions */
238 	HAL_TXQ_SEQNUM_INC_DIS	    = 0x00100000, /* disable seqnum increment */
239 } HAL_TX_QUEUE_FLAGS;
240 
241 typedef struct {
242 	uint32_t	tqi_ver;		/* hal TXQ version */
243 	HAL_TX_QUEUE_SUBTYPE tqi_subtype;	/* subtype if applicable */
244 	HAL_TX_QUEUE_FLAGS tqi_qflags;		/* flags (see above) */
245 	uint32_t	tqi_priority;		/* (not used) */
246 	uint32_t	tqi_aifs;		/* aifs */
247 	uint32_t	tqi_cwmin;		/* cwMin */
248 	uint32_t	tqi_cwmax;		/* cwMax */
249 	uint16_t	tqi_shretry;		/* rts retry limit */
250 	uint16_t	tqi_lgretry;		/* long retry limit (not used)*/
251 	uint32_t	tqi_cbrPeriod;		/* CBR period (us) */
252 	uint32_t	tqi_cbrOverflowLimit;	/* threshold for CBROVF int */
253 	uint32_t	tqi_burstTime;		/* max burst duration (us) */
254 	uint32_t	tqi_readyTime;		/* frame schedule time (us) */
255 	uint32_t	tqi_compBuf;		/* comp buffer phys addr */
256 } HAL_TXQ_INFO;
257 
258 #define HAL_TQI_NONVAL 0xffff
259 
260 /* token to use for aifs, cwmin, cwmax */
261 #define	HAL_TXQ_USEDEFAULT	((uint32_t) -1)
262 
263 /* compression definitions */
264 #define HAL_COMP_BUF_MAX_SIZE           9216            /* 9K */
265 #define HAL_COMP_BUF_ALIGN_SIZE         512
266 
267 /*
268  * Transmit packet types.  This belongs in ah_desc.h, but
269  * is here so we can give a proper type to various parameters
270  * (and not require everyone include the file).
271  *
272  * NB: These values are intentionally assigned for
273  *     direct use when setting up h/w descriptors.
274  */
275 typedef enum {
276 	HAL_PKT_TYPE_NORMAL	= 0,
277 	HAL_PKT_TYPE_ATIM	= 1,
278 	HAL_PKT_TYPE_PSPOLL	= 2,
279 	HAL_PKT_TYPE_BEACON	= 3,
280 	HAL_PKT_TYPE_PROBE_RESP	= 4,
281 	HAL_PKT_TYPE_CHIRP	= 5,
282 	HAL_PKT_TYPE_GRP_POLL	= 6,
283 	HAL_PKT_TYPE_AMPDU	= 7,
284 } HAL_PKT_TYPE;
285 
286 /* Rx Filter Frame Types */
287 typedef enum {
288 	HAL_RX_FILTER_UCAST	= 0x00000001,	/* Allow unicast frames */
289 	HAL_RX_FILTER_MCAST	= 0x00000002,	/* Allow multicast frames */
290 	HAL_RX_FILTER_BCAST	= 0x00000004,	/* Allow broadcast frames */
291 	HAL_RX_FILTER_CONTROL	= 0x00000008,	/* Allow control frames */
292 	HAL_RX_FILTER_BEACON	= 0x00000010,	/* Allow beacon frames */
293 	HAL_RX_FILTER_PROM	= 0x00000020,	/* Promiscuous mode */
294 	HAL_RX_FILTER_PROBEREQ	= 0x00000080,	/* Allow probe request frames */
295 	HAL_RX_FILTER_PHYERR	= 0x00000100,	/* Allow phy errors */
296 	HAL_RX_FILTER_PHYRADAR	= 0x00000200,	/* Allow phy radar errors */
297 	HAL_RX_FILTER_COMPBAR	= 0x00000400,	/* Allow compressed BAR */
298 } HAL_RX_FILTER;
299 
300 typedef enum {
301 	HAL_PM_AWAKE		= 0,
302 	HAL_PM_FULL_SLEEP	= 1,
303 	HAL_PM_NETWORK_SLEEP	= 2,
304 	HAL_PM_UNDEFINED	= 3
305 } HAL_POWER_MODE;
306 
307 /*
308  * NOTE WELL:
309  * These are mapped to take advantage of the common locations for many of
310  * the bits on all of the currently supported MAC chips. This is to make
311  * the ISR as efficient as possible, while still abstracting HW differences.
312  * When new hardware breaks this commonality this enumerated type, as well
313  * as the HAL functions using it, must be modified. All values are directly
314  * mapped unless commented otherwise.
315  */
316 typedef enum {
317 	HAL_INT_RX	= 0x00000001,	/* Non-common mapping */
318 	HAL_INT_RXDESC	= 0x00000002,
319 	HAL_INT_RXNOFRM	= 0x00000008,
320 	HAL_INT_RXEOL	= 0x00000010,
321 	HAL_INT_RXORN	= 0x00000020,
322 	HAL_INT_TX	= 0x00000040,	/* Non-common mapping */
323 	HAL_INT_TXDESC	= 0x00000080,
324 	HAL_INT_TXURN	= 0x00000800,
325 	HAL_INT_MIB	= 0x00001000,
326 	HAL_INT_RXPHY	= 0x00004000,
327 	HAL_INT_RXKCM	= 0x00008000,
328 	HAL_INT_SWBA	= 0x00010000,
329 	HAL_INT_BMISS	= 0x00040000,
330 	HAL_INT_BNR	= 0x00100000,	/* Non-common mapping */
331 	HAL_INT_TIM	= 0x00200000,	/* Non-common mapping */
332 	HAL_INT_DTIM	= 0x00400000,	/* Non-common mapping */
333 	HAL_INT_DTIMSYNC= 0x00800000,	/* Non-common mapping */
334 	HAL_INT_GPIO	= 0x01000000,
335 	HAL_INT_CABEND	= 0x02000000,	/* Non-common mapping */
336 	HAL_INT_TSFOOR	= 0x04000000,	/* Non-common mapping */
337 	HAL_INT_CST	= 0x10000000,	/* Non-common mapping */
338 	HAL_INT_GTT	= 0x20000000,	/* Non-common mapping */
339 	HAL_INT_FATAL	= 0x40000000,	/* Non-common mapping */
340 #define	HAL_INT_GLOBAL	0x80000000	/* Set/clear IER */
341 	HAL_INT_BMISC	= HAL_INT_TIM
342 			| HAL_INT_DTIM
343 			| HAL_INT_DTIMSYNC
344 			| HAL_INT_CABEND,
345 
346 	/* Interrupt bits that map directly to ISR/IMR bits */
347 	HAL_INT_COMMON  = HAL_INT_RXNOFRM
348 			| HAL_INT_RXDESC
349 			| HAL_INT_RXEOL
350 			| HAL_INT_RXORN
351 			| HAL_INT_TXURN
352 			| HAL_INT_TXDESC
353 			| HAL_INT_MIB
354 			| HAL_INT_RXPHY
355 			| HAL_INT_RXKCM
356 			| HAL_INT_SWBA
357 			| HAL_INT_BMISS
358 			| HAL_INT_GPIO,
359 } HAL_INT;
360 
361 typedef enum {
362 	HAL_GPIO_MUX_OUTPUT		= 0,
363 	HAL_GPIO_MUX_PCIE_ATTENTION_LED	= 1,
364 	HAL_GPIO_MUX_PCIE_POWER_LED	= 2,
365 	HAL_GPIO_MUX_TX_FRAME		= 3,
366 	HAL_GPIO_MUX_RX_CLEAR_EXTERNAL	= 4,
367 	HAL_GPIO_MUX_MAC_NETWORK_LED	= 5,
368 	HAL_GPIO_MUX_MAC_POWER_LED	= 6
369 } HAL_GPIO_MUX_TYPE;
370 
371 typedef enum {
372 	HAL_GPIO_INTR_LOW		= 0,
373 	HAL_GPIO_INTR_HIGH		= 1,
374 	HAL_GPIO_INTR_DISABLE		= 2
375 } HAL_GPIO_INTR_TYPE;
376 
377 typedef enum {
378 	HAL_RFGAIN_INACTIVE		= 0,
379 	HAL_RFGAIN_READ_REQUESTED	= 1,
380 	HAL_RFGAIN_NEED_CHANGE		= 2
381 } HAL_RFGAIN;
382 
383 typedef uint16_t HAL_CTRY_CODE;		/* country code */
384 typedef uint16_t HAL_REG_DOMAIN;		/* regulatory domain code */
385 
386 #define HAL_ANTENNA_MIN_MODE  0
387 #define HAL_ANTENNA_FIXED_A   1
388 #define HAL_ANTENNA_FIXED_B   2
389 #define HAL_ANTENNA_MAX_MODE  3
390 
391 typedef struct {
392 	uint32_t	ackrcv_bad;
393 	uint32_t	rts_bad;
394 	uint32_t	rts_good;
395 	uint32_t	fcs_bad;
396 	uint32_t	beacons;
397 } HAL_MIB_STATS;
398 
399 enum {
400 	HAL_MODE_11A	= 0x001,		/* 11a channels */
401 	HAL_MODE_TURBO	= 0x002,		/* 11a turbo-only channels */
402 	HAL_MODE_11B	= 0x004,		/* 11b channels */
403 	HAL_MODE_PUREG	= 0x008,		/* 11g channels (OFDM only) */
404 #ifdef notdef
405 	HAL_MODE_11G	= 0x010,		/* 11g channels (OFDM/CCK) */
406 #else
407 	HAL_MODE_11G	= 0x008,		/* XXX historical */
408 #endif
409 	HAL_MODE_108G	= 0x020,		/* 11g+Turbo channels */
410 	HAL_MODE_108A	= 0x040,		/* 11a+Turbo channels */
411 	HAL_MODE_11A_HALF_RATE = 0x200,		/* 11a half width channels */
412 	HAL_MODE_11A_QUARTER_RATE = 0x400,	/* 11a quarter width channels */
413 	HAL_MODE_11G_HALF_RATE = 0x800,		/* 11g half width channels */
414 	HAL_MODE_11G_QUARTER_RATE = 0x1000,	/* 11g quarter width channels */
415 	HAL_MODE_11NG_HT20	= 0x008000,
416 	HAL_MODE_11NA_HT20  	= 0x010000,
417 	HAL_MODE_11NG_HT40PLUS	= 0x020000,
418 	HAL_MODE_11NG_HT40MINUS	= 0x040000,
419 	HAL_MODE_11NA_HT40PLUS	= 0x080000,
420 	HAL_MODE_11NA_HT40MINUS	= 0x100000,
421 	HAL_MODE_ALL	= 0xffffff
422 };
423 
424 typedef struct {
425 	int		rateCount;		/* NB: for proper padding */
426 	uint8_t		rateCodeToIndex[144];	/* back mapping */
427 	struct {
428 		uint8_t		valid;		/* valid for rate control use */
429 		uint8_t		phy;		/* CCK/OFDM/XR */
430 		uint32_t	rateKbps;	/* transfer rate in kbs */
431 		uint8_t		rateCode;	/* rate for h/w descriptors */
432 		uint8_t		shortPreamble;	/* mask for enabling short
433 						 * preamble in CCK rate code */
434 		uint8_t		dot11Rate;	/* value for supported rates
435 						 * info element of MLME */
436 		uint8_t		controlRate;	/* index of next lower basic
437 						 * rate; used for dur. calcs */
438 		uint16_t	lpAckDuration;	/* long preamble ACK duration */
439 		uint16_t	spAckDuration;	/* short preamble ACK duration*/
440 	} info[32];
441 } HAL_RATE_TABLE;
442 
443 typedef struct {
444 	u_int		rs_count;		/* number of valid entries */
445 	uint8_t	rs_rates[32];		/* rates */
446 } HAL_RATE_SET;
447 
448 /*
449  * 802.11n specific structures and enums
450  */
451 typedef enum {
452 	HAL_CHAINTYPE_TX	= 1,	/* Tx chain type */
453 	HAL_CHAINTYPE_RX	= 2,	/* RX chain type */
454 } HAL_CHAIN_TYPE;
455 
456 typedef struct {
457 	u_int	Tries;
458 	u_int	Rate;
459 	u_int	PktDuration;
460 	u_int	ChSel;
461 	u_int	RateFlags;
462 #define	HAL_RATESERIES_RTS_CTS		0x0001	/* use rts/cts w/this series */
463 #define	HAL_RATESERIES_2040		0x0002	/* use ext channel for series */
464 #define	HAL_RATESERIES_HALFGI		0x0004	/* use half-gi for series */
465 } HAL_11N_RATE_SERIES;
466 
467 typedef enum {
468 	HAL_HT_MACMODE_20	= 0,	/* 20 MHz operation */
469 	HAL_HT_MACMODE_2040	= 1,	/* 20/40 MHz operation */
470 } HAL_HT_MACMODE;
471 
472 typedef enum {
473 	HAL_HT_PHYMODE_20	= 0,	/* 20 MHz operation */
474 	HAL_HT_PHYMODE_2040	= 1,	/* 20/40 MHz operation */
475 } HAL_HT_PHYMODE;
476 
477 typedef enum {
478 	HAL_HT_EXTPROTSPACING_20 = 0,	/* 20 MHz spacing */
479 	HAL_HT_EXTPROTSPACING_25 = 1,	/* 25 MHz spacing */
480 } HAL_HT_EXTPROTSPACING;
481 
482 
483 typedef enum {
484 	HAL_RX_CLEAR_CTL_LOW	= 0x1,	/* force control channel to appear busy */
485 	HAL_RX_CLEAR_EXT_LOW	= 0x2,	/* force extension channel to appear busy */
486 } HAL_HT_RXCLEAR;
487 
488 /*
489  * Antenna switch control.  By default antenna selection
490  * enables multiple (2) antenna use.  To force use of the
491  * A or B antenna only specify a fixed setting.  Fixing
492  * the antenna will also disable any diversity support.
493  */
494 typedef enum {
495 	HAL_ANT_VARIABLE = 0,			/* variable by programming */
496 	HAL_ANT_FIXED_A	 = 1,			/* fixed antenna A */
497 	HAL_ANT_FIXED_B	 = 2,			/* fixed antenna B */
498 } HAL_ANT_SETTING;
499 
500 typedef enum {
501 	HAL_M_STA	= 1,			/* infrastructure station */
502 	HAL_M_IBSS	= 0,			/* IBSS (adhoc) station */
503 	HAL_M_HOSTAP	= 6,			/* Software Access Point */
504 	HAL_M_MONITOR	= 8			/* Monitor mode */
505 } HAL_OPMODE;
506 
507 typedef struct {
508 	uint8_t		kv_type;		/* one of HAL_CIPHER */
509 	uint8_t		kv_pad;
510 	uint16_t	kv_len;			/* length in bits */
511 	uint8_t		kv_val[16];		/* enough for 128-bit keys */
512 	uint8_t		kv_mic[8];		/* TKIP MIC key */
513 	uint8_t		kv_txmic[8];		/* TKIP TX MIC key (optional) */
514 } HAL_KEYVAL;
515 
516 typedef enum {
517 	HAL_CIPHER_WEP		= 0,
518 	HAL_CIPHER_AES_OCB	= 1,
519 	HAL_CIPHER_AES_CCM	= 2,
520 	HAL_CIPHER_CKIP		= 3,
521 	HAL_CIPHER_TKIP		= 4,
522 	HAL_CIPHER_CLR		= 5,		/* no encryption */
523 
524 	HAL_CIPHER_MIC		= 127		/* TKIP-MIC, not a cipher */
525 } HAL_CIPHER;
526 
527 enum {
528 	HAL_SLOT_TIME_6	 = 6,			/* NB: for turbo mode */
529 	HAL_SLOT_TIME_9	 = 9,
530 	HAL_SLOT_TIME_20 = 20,
531 };
532 
533 /*
534  * Per-station beacon timer state.  Note that the specified
535  * beacon interval (given in TU's) can also include flags
536  * to force a TSF reset and to enable the beacon xmit logic.
537  * If bs_cfpmaxduration is non-zero the hardware is setup to
538  * coexist with a PCF-capable AP.
539  */
540 typedef struct {
541 	uint32_t	bs_nexttbtt;		/* next beacon in TU */
542 	uint32_t	bs_nextdtim;		/* next DTIM in TU */
543 	uint32_t	bs_intval;		/* beacon interval+flags */
544 #define	HAL_BEACON_PERIOD	0x0000ffff	/* beacon interval period */
545 #define	HAL_BEACON_ENA		0x00800000	/* beacon xmit enable */
546 #define	HAL_BEACON_RESET_TSF	0x01000000	/* clear TSF */
547 	uint32_t	bs_dtimperiod;
548 	uint16_t	bs_cfpperiod;		/* CFP period in TU */
549 	uint16_t	bs_cfpmaxduration;	/* max CFP duration in TU */
550 	uint32_t	bs_cfpnext;		/* next CFP in TU */
551 	uint16_t	bs_timoffset;		/* byte offset to TIM bitmap */
552 	uint16_t	bs_bmissthreshold;	/* beacon miss threshold */
553 	uint32_t	bs_sleepduration;	/* max sleep duration */
554 } HAL_BEACON_STATE;
555 
556 /*
557  * Like HAL_BEACON_STATE but for non-station mode setup.
558  * NB: see above flag definitions for bt_intval.
559  */
560 typedef struct {
561 	uint32_t	bt_intval;		/* beacon interval+flags */
562 	uint32_t	bt_nexttbtt;		/* next beacon in TU */
563 	uint32_t	bt_nextatim;		/* next ATIM in TU */
564 	uint32_t	bt_nextdba;		/* next DBA in 1/8th TU */
565 	uint32_t	bt_nextswba;		/* next SWBA in 1/8th TU */
566 	uint32_t	bt_flags;		/* timer enables */
567 #define HAL_BEACON_TBTT_EN	0x00000001
568 #define HAL_BEACON_DBA_EN	0x00000002
569 #define HAL_BEACON_SWBA_EN	0x00000004
570 } HAL_BEACON_TIMERS;
571 
572 /*
573  * Per-node statistics maintained by the driver for use in
574  * optimizing signal quality and other operational aspects.
575  */
576 typedef struct {
577 	uint32_t	ns_avgbrssi;	/* average beacon rssi */
578 	uint32_t	ns_avgrssi;	/* average data rssi */
579 	uint32_t	ns_avgtxrssi;	/* average tx rssi */
580 } HAL_NODE_STATS;
581 
582 #define	HAL_RSSI_EP_MULTIPLIER	(1<<7)	/* pow2 to optimize out * and / */
583 
584 struct ath_desc;
585 struct ath_tx_status;
586 struct ath_rx_status;
587 struct ieee80211_channel;
588 
589 /*
590  * Hardware Access Layer (HAL) API.
591  *
592  * Clients of the HAL call ath_hal_attach to obtain a reference to an
593  * ath_hal structure for use with the device.  Hardware-related operations
594  * that follow must call back into the HAL through interface, supplying
595  * the reference as the first parameter.  Note that before using the
596  * reference returned by ath_hal_attach the caller should verify the
597  * ABI version number.
598  */
599 struct ath_hal {
600 	uint32_t	ah_magic;	/* consistency check magic number */
601 	uint32_t	ah_abi;		/* HAL ABI version */
602 #define	HAL_ABI_VERSION	0x08112800	/* YYMMDDnn */
603 	uint16_t	ah_devid;	/* PCI device ID */
604 	uint16_t	ah_subvendorid;	/* PCI subvendor ID */
605 	HAL_SOFTC	ah_sc;		/* back pointer to driver/os state */
606 	HAL_BUS_TAG	ah_st;		/* params for register r+w */
607 	HAL_BUS_HANDLE	ah_sh;
608 	HAL_CTRY_CODE	ah_countryCode;
609 
610 	uint32_t	ah_macVersion;	/* MAC version id */
611 	uint16_t	ah_macRev;	/* MAC revision */
612 	uint16_t	ah_phyRev;	/* PHY revision */
613 	/* NB: when only one radio is present the rev is in 5Ghz */
614 	uint16_t	ah_analog5GhzRev;/* 5GHz radio revision */
615 	uint16_t	ah_analog2GhzRev;/* 2GHz radio revision */
616 
617 	const HAL_RATE_TABLE *__ahdecl(*ah_getRateTable)(struct ath_hal *,
618 				u_int mode);
619 	void	  __ahdecl(*ah_detach)(struct ath_hal*);
620 
621 	/* Reset functions */
622 	HAL_BOOL  __ahdecl(*ah_reset)(struct ath_hal *, HAL_OPMODE,
623 				struct ieee80211_channel *,
624 				HAL_BOOL bChannelChange, HAL_STATUS *status);
625 	HAL_BOOL  __ahdecl(*ah_phyDisable)(struct ath_hal *);
626 	HAL_BOOL  __ahdecl(*ah_disable)(struct ath_hal *);
627 	void	  __ahdecl(*ah_configPCIE)(struct ath_hal *, HAL_BOOL restore);
628 	void	  __ahdecl(*ah_disablePCIE)(struct ath_hal *);
629 	void	  __ahdecl(*ah_setPCUConfig)(struct ath_hal *);
630 	HAL_BOOL  __ahdecl(*ah_perCalibration)(struct ath_hal*,
631 			struct ieee80211_channel *, HAL_BOOL *);
632 	HAL_BOOL  __ahdecl(*ah_perCalibrationN)(struct ath_hal *,
633 			struct ieee80211_channel *, u_int chainMask,
634 			HAL_BOOL longCal, HAL_BOOL *isCalDone);
635 	HAL_BOOL  __ahdecl(*ah_resetCalValid)(struct ath_hal *,
636 			const struct ieee80211_channel *);
637 	HAL_BOOL  __ahdecl(*ah_setTxPowerLimit)(struct ath_hal *, uint32_t);
638 
639 	/* Transmit functions */
640 	HAL_BOOL  __ahdecl(*ah_updateTxTrigLevel)(struct ath_hal*,
641 				HAL_BOOL incTrigLevel);
642 	int	  __ahdecl(*ah_setupTxQueue)(struct ath_hal *, HAL_TX_QUEUE,
643 				const HAL_TXQ_INFO *qInfo);
644 	HAL_BOOL  __ahdecl(*ah_setTxQueueProps)(struct ath_hal *, int q,
645 				const HAL_TXQ_INFO *qInfo);
646 	HAL_BOOL  __ahdecl(*ah_getTxQueueProps)(struct ath_hal *, int q,
647 				HAL_TXQ_INFO *qInfo);
648 	HAL_BOOL  __ahdecl(*ah_releaseTxQueue)(struct ath_hal *ah, u_int q);
649 	HAL_BOOL  __ahdecl(*ah_resetTxQueue)(struct ath_hal *ah, u_int q);
650 	uint32_t __ahdecl(*ah_getTxDP)(struct ath_hal*, u_int);
651 	HAL_BOOL  __ahdecl(*ah_setTxDP)(struct ath_hal*, u_int, uint32_t txdp);
652 	uint32_t __ahdecl(*ah_numTxPending)(struct ath_hal *, u_int q);
653 	HAL_BOOL  __ahdecl(*ah_startTxDma)(struct ath_hal*, u_int);
654 	HAL_BOOL  __ahdecl(*ah_stopTxDma)(struct ath_hal*, u_int);
655 	HAL_BOOL  __ahdecl(*ah_setupTxDesc)(struct ath_hal *, struct ath_desc *,
656 				u_int pktLen, u_int hdrLen,
657 				HAL_PKT_TYPE type, u_int txPower,
658 				u_int txRate0, u_int txTries0,
659 				u_int keyIx, u_int antMode, u_int flags,
660 				u_int rtsctsRate, u_int rtsctsDuration,
661 				u_int compicvLen, u_int compivLen,
662 				u_int comp);
663 	HAL_BOOL  __ahdecl(*ah_setupXTxDesc)(struct ath_hal *, struct ath_desc*,
664 				u_int txRate1, u_int txTries1,
665 				u_int txRate2, u_int txTries2,
666 				u_int txRate3, u_int txTries3);
667 	HAL_BOOL  __ahdecl(*ah_fillTxDesc)(struct ath_hal *, struct ath_desc *,
668 				u_int segLen, HAL_BOOL firstSeg,
669 				HAL_BOOL lastSeg, const struct ath_desc *);
670 	HAL_STATUS __ahdecl(*ah_procTxDesc)(struct ath_hal *,
671 				struct ath_desc *, struct ath_tx_status *);
672 	void	   __ahdecl(*ah_getTxIntrQueue)(struct ath_hal *, uint32_t *);
673 	void	   __ahdecl(*ah_reqTxIntrDesc)(struct ath_hal *, struct ath_desc*);
674 
675 	/* Receive Functions */
676 	uint32_t __ahdecl(*ah_getRxDP)(struct ath_hal*);
677 	void	  __ahdecl(*ah_setRxDP)(struct ath_hal*, uint32_t rxdp);
678 	void	  __ahdecl(*ah_enableReceive)(struct ath_hal*);
679 	HAL_BOOL  __ahdecl(*ah_stopDmaReceive)(struct ath_hal*);
680 	void	  __ahdecl(*ah_startPcuReceive)(struct ath_hal*);
681 	void	  __ahdecl(*ah_stopPcuReceive)(struct ath_hal*);
682 	void	  __ahdecl(*ah_setMulticastFilter)(struct ath_hal*,
683 				uint32_t filter0, uint32_t filter1);
684 	HAL_BOOL  __ahdecl(*ah_setMulticastFilterIndex)(struct ath_hal*,
685 				uint32_t index);
686 	HAL_BOOL  __ahdecl(*ah_clrMulticastFilterIndex)(struct ath_hal*,
687 				uint32_t index);
688 	uint32_t __ahdecl(*ah_getRxFilter)(struct ath_hal*);
689 	void	  __ahdecl(*ah_setRxFilter)(struct ath_hal*, uint32_t);
690 	HAL_BOOL  __ahdecl(*ah_setupRxDesc)(struct ath_hal *, struct ath_desc *,
691 				uint32_t size, u_int flags);
692 	HAL_STATUS __ahdecl(*ah_procRxDesc)(struct ath_hal *,
693 				struct ath_desc *, uint32_t phyAddr,
694 				struct ath_desc *next, uint64_t tsf,
695 				struct ath_rx_status *);
696 	void	  __ahdecl(*ah_rxMonitor)(struct ath_hal *,
697 				const HAL_NODE_STATS *,
698 				const struct ieee80211_channel *);
699 	void	  __ahdecl(*ah_procMibEvent)(struct ath_hal *,
700 				const HAL_NODE_STATS *);
701 
702 	/* Misc Functions */
703 	HAL_STATUS __ahdecl(*ah_getCapability)(struct ath_hal *,
704 				HAL_CAPABILITY_TYPE, uint32_t capability,
705 				uint32_t *result);
706 	HAL_BOOL   __ahdecl(*ah_setCapability)(struct ath_hal *,
707 				HAL_CAPABILITY_TYPE, uint32_t capability,
708 				uint32_t setting, HAL_STATUS *);
709 	HAL_BOOL   __ahdecl(*ah_getDiagState)(struct ath_hal *, int request,
710 				const void *args, uint32_t argsize,
711 				void **result, uint32_t *resultsize);
712 	void	  __ahdecl(*ah_getMacAddress)(struct ath_hal *, uint8_t *);
713 	HAL_BOOL  __ahdecl(*ah_setMacAddress)(struct ath_hal *, const uint8_t*);
714 	void	  __ahdecl(*ah_getBssIdMask)(struct ath_hal *, uint8_t *);
715 	HAL_BOOL  __ahdecl(*ah_setBssIdMask)(struct ath_hal *, const uint8_t*);
716 	HAL_BOOL  __ahdecl(*ah_setRegulatoryDomain)(struct ath_hal*,
717 				uint16_t, HAL_STATUS *);
718 	void	  __ahdecl(*ah_setLedState)(struct ath_hal*, HAL_LED_STATE);
719 	void	  __ahdecl(*ah_writeAssocid)(struct ath_hal*,
720 				const uint8_t *bssid, uint16_t assocId);
721 	HAL_BOOL  __ahdecl(*ah_gpioCfgOutput)(struct ath_hal *,
722 				uint32_t gpio, HAL_GPIO_MUX_TYPE);
723 	HAL_BOOL  __ahdecl(*ah_gpioCfgInput)(struct ath_hal *, uint32_t gpio);
724 	uint32_t __ahdecl(*ah_gpioGet)(struct ath_hal *, uint32_t gpio);
725 	HAL_BOOL  __ahdecl(*ah_gpioSet)(struct ath_hal *,
726 				uint32_t gpio, uint32_t val);
727 	void	  __ahdecl(*ah_gpioSetIntr)(struct ath_hal*, u_int, uint32_t);
728 	uint32_t __ahdecl(*ah_getTsf32)(struct ath_hal*);
729 	uint64_t __ahdecl(*ah_getTsf64)(struct ath_hal*);
730 	void	  __ahdecl(*ah_resetTsf)(struct ath_hal*);
731 	HAL_BOOL  __ahdecl(*ah_detectCardPresent)(struct ath_hal*);
732 	void	  __ahdecl(*ah_updateMibCounters)(struct ath_hal*,
733 				HAL_MIB_STATS*);
734 	HAL_RFGAIN __ahdecl(*ah_getRfGain)(struct ath_hal*);
735 	u_int	  __ahdecl(*ah_getDefAntenna)(struct ath_hal*);
736 	void	  __ahdecl(*ah_setDefAntenna)(struct ath_hal*, u_int);
737 	HAL_ANT_SETTING	 __ahdecl(*ah_getAntennaSwitch)(struct ath_hal*);
738 	HAL_BOOL  __ahdecl(*ah_setAntennaSwitch)(struct ath_hal*,
739 				HAL_ANT_SETTING);
740 	HAL_BOOL  __ahdecl(*ah_setSifsTime)(struct ath_hal*, u_int);
741 	u_int	  __ahdecl(*ah_getSifsTime)(struct ath_hal*);
742 	HAL_BOOL  __ahdecl(*ah_setSlotTime)(struct ath_hal*, u_int);
743 	u_int	  __ahdecl(*ah_getSlotTime)(struct ath_hal*);
744 	HAL_BOOL  __ahdecl(*ah_setAckTimeout)(struct ath_hal*, u_int);
745 	u_int	  __ahdecl(*ah_getAckTimeout)(struct ath_hal*);
746 	HAL_BOOL  __ahdecl(*ah_setAckCTSRate)(struct ath_hal*, u_int);
747 	u_int	  __ahdecl(*ah_getAckCTSRate)(struct ath_hal*);
748 	HAL_BOOL  __ahdecl(*ah_setCTSTimeout)(struct ath_hal*, u_int);
749 	u_int	  __ahdecl(*ah_getCTSTimeout)(struct ath_hal*);
750 	HAL_BOOL  __ahdecl(*ah_setDecompMask)(struct ath_hal*, uint16_t, int);
751 	void	  __ahdecl(*ah_setCoverageClass)(struct ath_hal*, uint8_t, int);
752 
753 	/* Key Cache Functions */
754 	uint32_t __ahdecl(*ah_getKeyCacheSize)(struct ath_hal*);
755 	HAL_BOOL  __ahdecl(*ah_resetKeyCacheEntry)(struct ath_hal*, uint16_t);
756 	HAL_BOOL  __ahdecl(*ah_isKeyCacheEntryValid)(struct ath_hal *,
757 				uint16_t);
758 	HAL_BOOL  __ahdecl(*ah_setKeyCacheEntry)(struct ath_hal*,
759 				uint16_t, const HAL_KEYVAL *,
760 				const uint8_t *, int);
761 	HAL_BOOL  __ahdecl(*ah_setKeyCacheEntryMac)(struct ath_hal*,
762 				uint16_t, const uint8_t *);
763 
764 	/* Power Management Functions */
765 	HAL_BOOL  __ahdecl(*ah_setPowerMode)(struct ath_hal*,
766 				HAL_POWER_MODE mode, int setChip);
767 	HAL_POWER_MODE __ahdecl(*ah_getPowerMode)(struct ath_hal*);
768 	int16_t   __ahdecl(*ah_getChanNoise)(struct ath_hal *,
769 				const struct ieee80211_channel *);
770 
771 	/* Beacon Management Functions */
772 	void	  __ahdecl(*ah_setBeaconTimers)(struct ath_hal*,
773 				const HAL_BEACON_TIMERS *);
774 	/* NB: deprecated, use ah_setBeaconTimers instead */
775 	void	  __ahdecl(*ah_beaconInit)(struct ath_hal *,
776 				uint32_t nexttbtt, uint32_t intval);
777 	void	  __ahdecl(*ah_setStationBeaconTimers)(struct ath_hal*,
778 				const HAL_BEACON_STATE *);
779 	void	  __ahdecl(*ah_resetStationBeaconTimers)(struct ath_hal*);
780 
781 	/* Interrupt functions */
782 	HAL_BOOL  __ahdecl(*ah_isInterruptPending)(struct ath_hal*);
783 	HAL_BOOL  __ahdecl(*ah_getPendingInterrupts)(struct ath_hal*, HAL_INT*);
784 	HAL_INT	  __ahdecl(*ah_getInterrupts)(struct ath_hal*);
785 	HAL_INT	  __ahdecl(*ah_setInterrupts)(struct ath_hal*, HAL_INT);
786 };
787 
788 /*
789  * Check the PCI vendor ID and device ID against Atheros' values
790  * and return a printable description for any Atheros hardware.
791  * AH_NULL is returned if the ID's do not describe Atheros hardware.
792  */
793 extern	const char *__ahdecl ath_hal_probe(uint16_t vendorid, uint16_t devid);
794 
795 /*
796  * Attach the HAL for use with the specified device.  The device is
797  * defined by the PCI device ID.  The caller provides an opaque pointer
798  * to an upper-layer data structure (HAL_SOFTC) that is stored in the
799  * HAL state block for later use.  Hardware register accesses are done
800  * using the specified bus tag and handle.  On successful return a
801  * reference to a state block is returned that must be supplied in all
802  * subsequent HAL calls.  Storage associated with this reference is
803  * dynamically allocated and must be freed by calling the ah_detach
804  * method when the client is done.  If the attach operation fails a
805  * null (AH_NULL) reference will be returned and a status code will
806  * be returned if the status parameter is non-zero.
807  */
808 extern	struct ath_hal * __ahdecl ath_hal_attach(uint16_t devid, HAL_SOFTC,
809 		HAL_BUS_TAG, HAL_BUS_HANDLE, HAL_STATUS* status);
810 
811 extern	const char *ath_hal_mac_name(struct ath_hal *);
812 extern	const char *ath_hal_rf_name(struct ath_hal *);
813 
814 /*
815  * Regulatory interfaces.  Drivers should use ath_hal_init_channels to
816  * request a set of channels for a particular country code and/or
817  * regulatory domain.  If CTRY_DEFAULT and SKU_NONE are specified then
818  * this list is constructed according to the contents of the EEPROM.
819  * ath_hal_getchannels acts similarly but does not alter the operating
820  * state; this can be used to collect information for a particular
821  * regulatory configuration.  Finally ath_hal_set_channels installs a
822  * channel list constructed outside the driver.  The HAL will adopt the
823  * channel list and setup internal state according to the specified
824  * regulatory configuration (e.g. conformance test limits).
825  *
826  * For all interfaces the channel list is returned in the supplied array.
827  * maxchans defines the maximum size of this array.  nchans contains the
828  * actual number of channels returned.  If a problem occurred then a
829  * status code != HAL_OK is returned.
830  */
831 struct ieee80211_channel;
832 
833 /*
834  * Return a list of channels according to the specified regulatory.
835  */
836 extern	HAL_STATUS __ahdecl ath_hal_getchannels(struct ath_hal *,
837     struct ieee80211_channel *chans, u_int maxchans, int *nchans,
838     u_int modeSelect, HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn,
839     HAL_BOOL enableExtendedChannels);
840 
841 /*
842  * Return a list of channels and install it as the current operating
843  * regulatory list.
844  */
845 extern	HAL_STATUS __ahdecl ath_hal_init_channels(struct ath_hal *,
846     struct ieee80211_channel *chans, u_int maxchans, int *nchans,
847     u_int modeSelect, HAL_CTRY_CODE cc, HAL_REG_DOMAIN rd,
848     HAL_BOOL enableExtendedChannels);
849 
850 /*
851  * Install the list of channels as the current operating regulatory
852  * and setup related state according to the country code and sku.
853  */
854 extern	HAL_STATUS __ahdecl ath_hal_set_channels(struct ath_hal *,
855     struct ieee80211_channel *chans, int nchans,
856     HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn);
857 
858 /*
859  * Calibrate noise floor data following a channel scan or similar.
860  * This must be called prior retrieving noise floor data.
861  */
862 extern	void __ahdecl ath_hal_process_noisefloor(struct ath_hal *ah);
863 
864 /*
865  * Return bit mask of wireless modes supported by the hardware.
866  */
867 extern	u_int __ahdecl ath_hal_getwirelessmodes(struct ath_hal*);
868 
869 /*
870  * Calculate the transmit duration of a frame.
871  */
872 extern uint16_t __ahdecl ath_hal_computetxtime(struct ath_hal *,
873 		const HAL_RATE_TABLE *rates, uint32_t frameLen,
874 		uint16_t rateix, HAL_BOOL shortPreamble);
875 #endif /* _ATH_AH_H_ */
876