if_ath_misc.h revision 265205
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 265205 2014-05-02 00:48:09Z 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
51238284Sadrianextern int ath_rxbuf;
52238284Sadrianextern int ath_txbuf;
53238284Sadrianextern int ath_txbuf_mgmt;
54238284Sadrian
55218065Sadrianextern int ath_tx_findrix(const struct ath_softc *sc, uint8_t rate);
56218065Sadrian
57237000Sadrianextern struct ath_buf * ath_getbuf(struct ath_softc *sc,
58237000Sadrian	    ath_buf_type_t btype);
59237000Sadrianextern struct ath_buf * _ath_getbuf_locked(struct ath_softc *sc,
60237000Sadrian	    ath_buf_type_t btype);
61227359Sadrianextern struct ath_buf * ath_buf_clone(struct ath_softc *sc,
62248988Sadrian	    struct ath_buf *bf);
63237000Sadrian/* XXX change this to NULL the buffer pointer? */
64227361Sadrianextern void ath_freebuf(struct ath_softc *sc, struct ath_buf *bf);
65236993Sadrianextern void ath_returnbuf_head(struct ath_softc *sc, struct ath_buf *bf);
66236993Sadrianextern void ath_returnbuf_tail(struct ath_softc *sc, struct ath_buf *bf);
67218065Sadrian
68227353Sadrianextern int ath_reset(struct ifnet *, ATH_RESET_TYPE);
69227361Sadrianextern void ath_tx_default_comp(struct ath_softc *sc, struct ath_buf *bf,
70227361Sadrian	    int fail);
71227364Sadrianextern void ath_tx_update_ratectrl(struct ath_softc *sc,
72227364Sadrian	    struct ieee80211_node *ni, struct ath_rc_series *rc,
73227364Sadrian	    struct ath_tx_status *ts, int frmlen, int nframes, int nbad);
74219180Sadrian
75248671Sadrianextern	int ath_hal_gethangstate(struct ath_hal *ah, uint32_t mask,
76248671Sadrian	    uint32_t *hangs);
77248671Sadrian
78227361Sadrianextern void ath_tx_freebuf(struct ath_softc *sc, struct ath_buf *bf,
79227361Sadrian    int status);
80248745Sadrianextern	void ath_txq_freeholdingbuf(struct ath_softc *sc,
81248745Sadrian	    struct ath_txq *txq);
82227361Sadrian
83235680Sadrianextern void ath_txqmove(struct ath_txq *dst, struct ath_txq *src);
84235680Sadrian
85235676Sadrianextern void ath_mode_init(struct ath_softc *sc);
86235676Sadrian
87235676Sadrianextern void ath_setdefantenna(struct ath_softc *sc, u_int antenna);
88235676Sadrian
89235680Sadrianextern void ath_setslottime(struct ath_softc *sc);
90235680Sadrian
91238822Sadrianextern	int ath_descdma_alloc_desc(struct ath_softc *sc,
92238822Sadrian	    struct ath_descdma *dd, ath_bufhead *head, const char *name,
93238824Sadrian	    int ds_size, int ndesc);
94238284Sadrianextern	int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
95238729Sadrian	    ath_bufhead *head, const char *name, int ds_size, int nbuf,
96238729Sadrian	    int ndesc);
97238432Sadrianextern	int ath_descdma_setup_rx_edma(struct ath_softc *sc,
98238432Sadrian	    struct ath_descdma *dd, ath_bufhead *head, const char *name,
99238432Sadrian	    int nbuf, int desclen);
100238284Sadrianextern	void ath_descdma_cleanup(struct ath_softc *sc,
101238284Sadrian	    struct ath_descdma *dd, ath_bufhead *head);
102238284Sadrian
103238931Sadrianextern	void ath_legacy_attach_comp_func(struct ath_softc *sc);
104239204Sadrian
105239205Sadrianextern	void ath_tx_draintxq(struct ath_softc *sc, struct ath_txq *txq);
106239205Sadrian
107239204Sadrianextern	void ath_legacy_tx_drain(struct ath_softc *sc,
108239204Sadrian	    ATH_RESET_TYPE reset_type);
109238931Sadrian
110239262Sadrianextern	void ath_tx_process_buf_completion(struct ath_softc *sc,
111239262Sadrian	    struct ath_txq *txq, struct ath_tx_status *ts, struct ath_buf *bf);
112239262Sadrian
113239262Sadrianextern	int ath_stoptxdma(struct ath_softc *sc);
114239262Sadrian
115242271Sadrianextern	void ath_tx_update_tim(struct ath_softc *sc,
116242271Sadrian	    struct ieee80211_node *ni, int enable);
117242271Sadrian
118235676Sadrian/*
119235676Sadrian * This is only here so that the RX proc function can call it.
120235676Sadrian * It's very likely that the "start TX after RX" call should be
121235676Sadrian * done via something in if_ath.c, moving "rx tasklet" into
122235676Sadrian * if_ath.c and do the ath_start() call there.  Once that's done,
123235676Sadrian * we can kill this.
124235676Sadrian */
125235676Sadrianextern void ath_start(struct ifnet *ifp);
126241559Sadrianextern	void ath_start_task(void *arg, int npending);
127235676Sadrian
128250783Sadrianextern void ath_tx_dump(struct ath_softc *sc, struct ath_txq *txq);
129250783Sadrian
130246450Sadrian/*
131265115Sadrian * Power state tracking.
132265115Sadrian */
133265115Sadrianextern	void _ath_power_setpower(struct ath_softc *sc, int power_state, const char *file, int line);
134265205Sadrianextern	void _ath_power_set_selfgen(struct ath_softc *sc, int power_state, const char *file, int line);
135265115Sadrianextern	void _ath_power_set_power_state(struct ath_softc *sc, int power_state, const char *file, int line);
136265115Sadrianextern	void _ath_power_restore_power_state(struct ath_softc *sc, const char *file, int line);
137265115Sadrian
138265115Sadrian#define	ath_power_setpower(sc, ps) _ath_power_setpower(sc, ps, __FILE__, __LINE__)
139265205Sadrian#define	ath_power_setselfgen(sc, ps) _ath_power_set_selfgen(sc, ps, __FILE__, __LINE__)
140265115Sadrian#define	ath_power_set_power_state(sc, ps) _ath_power_set_power_state(sc, ps, __FILE__, __LINE__)
141265115Sadrian#define	ath_power_restore_power_state(sc) _ath_power_restore_power_state(sc, __FILE__, __LINE__)
142265115Sadrian
143265115Sadrian/*
144246450Sadrian * Kick the frame TX task.
145246450Sadrian */
146236597Sadrianstatic inline void
147236597Sadrianath_tx_kick(struct ath_softc *sc)
148236597Sadrian{
149235680Sadrian
150251014Sadrian	/* XXX NULL for now */
151236597Sadrian}
152236597Sadrian
153246450Sadrian/*
154246450Sadrian * Kick the software TX queue task.
155246450Sadrian */
156246450Sadrianstatic inline void
157246450Sadrianath_tx_swq_kick(struct ath_softc *sc)
158246450Sadrian{
159246450Sadrian
160246652Sadrian	taskqueue_enqueue(sc->sc_tq, &sc->sc_txqtask);
161246450Sadrian}
162246450Sadrian
163218065Sadrian#endif
164