if_ath_misc.h revision 237000
1218065Sadrian/*-
2218065Sadrian * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3218065Sadrian * All rights reserved.
4218065Sadrian *
5218065Sadrian * Redistribution and use in source and binary forms, with or without
6218065Sadrian * modification, are permitted provided that the following conditions
7218065Sadrian * are met:
8218065Sadrian * 1. Redistributions of source code must retain the above copyright
9218065Sadrian *    notice, this list of conditions and the following disclaimer,
10218065Sadrian *    without modification.
11218065Sadrian * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12218065Sadrian *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13218065Sadrian *    redistribution must be conditioned upon including a substantially
14218065Sadrian *    similar Disclaimer requirement for further binary redistribution.
15218065Sadrian *
16218065Sadrian * NO WARRANTY
17218065Sadrian * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18218065Sadrian * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19218065Sadrian * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20218065Sadrian * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21218065Sadrian * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22218065Sadrian * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23218065Sadrian * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24218065Sadrian * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25218065Sadrian * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26218065Sadrian * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27218065Sadrian * THE POSSIBILITY OF SUCH DAMAGES.
28218065Sadrian *
29218065Sadrian * $FreeBSD: head/sys/dev/ath/if_ath_misc.h 237000 2012-06-13 06:57:55Z adrian $
30218065Sadrian */
31218065Sadrian#ifndef	__IF_ATH_MISC_H__
32218065Sadrian#define	__IF_ATH_MISC_H__
33218065Sadrian
34218065Sadrian/*
35218065Sadrian * This is where definitions for "public things" in if_ath.c
36218065Sadrian * will go for the time being.
37218065Sadrian *
38218065Sadrian * Anything in here should eventually be moved out of if_ath.c
39218065Sadrian * and into something else.
40218065Sadrian */
41218065Sadrian
42218065Sadrian/* unaligned little endian access */
43218065Sadrian#define LE_READ_2(p)							\
44218065Sadrian	((u_int16_t)							\
45218065Sadrian	 ((((u_int8_t *)(p))[0]      ) | (((u_int8_t *)(p))[1] <<  8)))
46218065Sadrian#define LE_READ_4(p)							\
47218065Sadrian	((u_int32_t)							\
48218065Sadrian	 ((((u_int8_t *)(p))[0]      ) | (((u_int8_t *)(p))[1] <<  8) |	\
49218065Sadrian	  (((u_int8_t *)(p))[2] << 16) | (((u_int8_t *)(p))[3] << 24)))
50218065Sadrian
51218065Sadrianextern int ath_tx_findrix(const struct ath_softc *sc, uint8_t rate);
52218065Sadrian
53237000Sadrianextern struct ath_buf * ath_getbuf(struct ath_softc *sc,
54237000Sadrian	    ath_buf_type_t btype);
55237000Sadrianextern struct ath_buf * _ath_getbuf_locked(struct ath_softc *sc,
56237000Sadrian	    ath_buf_type_t btype);
57227359Sadrianextern struct ath_buf * ath_buf_clone(struct ath_softc *sc,
58227359Sadrian	    const struct ath_buf *bf);
59237000Sadrian/* XXX change this to NULL the buffer pointer? */
60227361Sadrianextern void ath_freebuf(struct ath_softc *sc, struct ath_buf *bf);
61236993Sadrianextern void ath_returnbuf_head(struct ath_softc *sc, struct ath_buf *bf);
62236993Sadrianextern void ath_returnbuf_tail(struct ath_softc *sc, struct ath_buf *bf);
63218065Sadrian
64227353Sadrianextern int ath_reset(struct ifnet *, ATH_RESET_TYPE);
65227361Sadrianextern void ath_tx_draintxq(struct ath_softc *sc, struct ath_txq *txq);
66227361Sadrianextern void ath_tx_default_comp(struct ath_softc *sc, struct ath_buf *bf,
67227361Sadrian	    int fail);
68227364Sadrianextern void ath_tx_update_ratectrl(struct ath_softc *sc,
69227364Sadrian	    struct ieee80211_node *ni, struct ath_rc_series *rc,
70227364Sadrian	    struct ath_tx_status *ts, int frmlen, int nframes, int nbad);
71219180Sadrian
72227361Sadrianextern void ath_tx_freebuf(struct ath_softc *sc, struct ath_buf *bf,
73227361Sadrian    int status);
74227361Sadrian
75235680Sadrianextern void ath_txqmove(struct ath_txq *dst, struct ath_txq *src);
76235680Sadrian
77235676Sadrianextern void ath_mode_init(struct ath_softc *sc);
78235676Sadrian
79235676Sadrianextern void ath_setdefantenna(struct ath_softc *sc, u_int antenna);
80235676Sadrian
81235680Sadrianextern void ath_setslottime(struct ath_softc *sc);
82235680Sadrian
83235676Sadrian/*
84235676Sadrian * This is only here so that the RX proc function can call it.
85235676Sadrian * It's very likely that the "start TX after RX" call should be
86235676Sadrian * done via something in if_ath.c, moving "rx tasklet" into
87235676Sadrian * if_ath.c and do the ath_start() call there.  Once that's done,
88235676Sadrian * we can kill this.
89235676Sadrian */
90235676Sadrianextern void ath_start(struct ifnet *ifp);
91235676Sadrian
92236597Sadrianstatic inline void
93236597Sadrianath_tx_kick(struct ath_softc *sc)
94236597Sadrian{
95235680Sadrian
96236599Sadrian	ath_start(sc->sc_ifp);
97236597Sadrian}
98236597Sadrian
99218065Sadrian#endif
100