#ifndef _DEV_IC_ATWVAR_H_
#define _DEV_IC_ATWVAR_H_
#include <sys/queue.h>
#include <sys/time.h>
#include <sys/timeout.h>
struct atw_stats {
u_long ts_tx_tuf;
u_long ts_tx_tro;
u_long ts_tx_trt;
u_long ts_tx_tlt;
u_long ts_tx_sofbr;
};
#define ATW_NTXSEGS 16
#define ATW_TXQUEUELEN 64
#define ATW_NTXDESC (ATW_TXQUEUELEN * ATW_NTXSEGS)
#define ATW_NTXDESC_MASK (ATW_NTXDESC - 1)
#define ATW_NEXTTX(x) ((x + 1) & ATW_NTXDESC_MASK)
#define ATW_NRXDESC 64
#define ATW_NRXDESC_MASK (ATW_NRXDESC - 1)
#define ATW_NEXTRX(x) ((x + 1) & ATW_NRXDESC_MASK)
struct atw_control_data {
struct atw_txdesc acd_txdescs[ATW_NTXDESC];
struct atw_rxdesc acd_rxdescs[ATW_NRXDESC];
};
#define ATW_CDOFF(x) offsetof(struct atw_control_data, x)
#define ATW_CDTXOFF(x) ATW_CDOFF(acd_txdescs[(x)])
#define ATW_CDRXOFF(x) ATW_CDOFF(acd_rxdescs[(x)])
struct atw_duration {
uint16_t d_rts_dur;
uint16_t d_data_dur;
uint16_t d_plcp_len;
uint8_t d_residue;
};
struct atw_txsoft {
struct mbuf *txs_mbuf;
bus_dmamap_t txs_dmamap;
int txs_firstdesc;
int txs_lastdesc;
int txs_ndescs;
struct atw_duration txs_d0;
struct atw_duration txs_dn;
SIMPLEQ_ENTRY(atw_txsoft) txs_q;
};
SIMPLEQ_HEAD(atw_txsq, atw_txsoft);
struct atw_rxsoft {
struct mbuf *rxs_mbuf;
bus_dmamap_t rxs_dmamap;
};
struct atw_txthresh_tab {
u_int32_t txth_opmode;
const char *txth_name;
};
enum atw_rftype { ATW_RFTYPE_INTERSIL = 0, ATW_RFTYPE_RFMD = 1,
ATW_RFTYPE_MARVEL = 2 };
enum atw_bbptype { ATW_BBPTYPE_INTERSIL = 0, ATW_BBPTYPE_RFMD = 1,
ATW_BBPTYPE_MARVEL = 2, ATW_C_BBPTYPE_RFMD = 5 };
#define ATW_RX_RADIOTAP_PRESENT \
((1 << IEEE80211_RADIOTAP_FLAGS) | (1 << IEEE80211_RADIOTAP_RATE) | \
(1 << IEEE80211_RADIOTAP_CHANNEL) | \
(1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL))
struct atw_rx_radiotap_header {
struct ieee80211_radiotap_header ar_ihdr;
u_int8_t ar_flags;
u_int8_t ar_rate;
u_int16_t ar_chan_freq;
u_int16_t ar_chan_flags;
u_int8_t ar_antsignal;
} __packed;
#define ATW_TX_RADIOTAP_PRESENT ((1 << IEEE80211_RADIOTAP_FLAGS) | \
(1 << IEEE80211_RADIOTAP_RATE) | \
(1 << IEEE80211_RADIOTAP_CHANNEL))
struct atw_tx_radiotap_header {
struct ieee80211_radiotap_header at_ihdr;
u_int8_t at_flags;
u_int8_t at_rate;
u_int16_t at_chan_freq;
u_int16_t at_chan_flags;
} __packed;
enum atw_revision {
ATW_REVISION_AB = 0x11,
ATW_REVISION_AF = 0x15,
ATW_REVISION_BA = 0x20,
ATW_REVISION_CA = 0x30
};
struct atw_softc {
struct device sc_dev;
struct ieee80211com sc_ic;
int (*sc_enable)(struct atw_softc *);
void (*sc_disable)(struct atw_softc *);
void (*sc_power)(struct atw_softc *, int);
int (*sc_newstate)(struct ieee80211com *,
enum ieee80211_state, int);
void (*sc_recv_mgmt)(struct ieee80211com *,
struct mbuf *, struct ieee80211_node *,
struct ieee80211_rxinfo *, int);
struct ieee80211_node *(*sc_node_alloc)(struct ieee80211com *);
void (*sc_node_free)(struct ieee80211com *,
struct ieee80211_node *);
struct atw_stats sc_stats;
int sc_tx_timer;
int sc_rescan_timer;
bus_space_tag_t sc_st;
bus_space_handle_t sc_sh;
bus_size_t sc_mapsize;
bus_dma_tag_t sc_dmat;
u_int32_t sc_cacheline;
u_int32_t sc_maxburst;
const struct atw_txthresh_tab *sc_txth;
int sc_txthresh;
u_int sc_cur_chan;
int sc_flags;
u_int16_t *sc_srom;
u_int16_t sc_sromsz;
caddr_t sc_radiobpf;
bus_dma_segment_t sc_cdseg;
int sc_cdnseg;
bus_dmamap_t sc_cddmamap;
#define sc_cddma sc_cddmamap->dm_segs[0].ds_addr
struct atw_txsoft sc_txsoft[ATW_TXQUEUELEN];
struct atw_rxsoft sc_rxsoft[ATW_NRXDESC];
struct atw_control_data *sc_control_data;
#define sc_txdescs sc_control_data->acd_txdescs
#define sc_rxdescs sc_control_data->acd_rxdescs
#define sc_setup_desc sc_control_data->acd_setup_desc
int sc_txfree;
int sc_txnext;
int sc_ntxsegs;
struct atw_txsq sc_txfreeq;
struct atw_txsq sc_txdirtyq;
int sc_rxptr;
u_int32_t sc_busmode;
u_int32_t sc_opmode;
u_int32_t sc_inten;
u_int32_t sc_wepctl;
u_int32_t sc_rxint_mask;
u_int32_t sc_txint_mask;
u_int32_t sc_linkint_mask;
enum atw_rftype sc_rftype;
enum atw_bbptype sc_bbptype;
u_int32_t sc_synctl_rd;
u_int32_t sc_synctl_wr;
u_int32_t sc_bbpctl_rd;
u_int32_t sc_bbpctl_wr;
void (*sc_recv_beacon)(struct ieee80211com *, struct mbuf *,
int, u_int32_t);
void (*sc_recv_prresp)(struct ieee80211com *, struct mbuf *,
int, u_int32_t);
u_int8_t sc_sram[ATW_SRAM_MAXSIZE];
u_int sc_sramlen;
u_int8_t sc_bssid[IEEE80211_ADDR_LEN];
u_int8_t sc_rev;
u_int8_t sc_rf3000_options1;
u_int8_t sc_rf3000_options2;
struct timeval sc_last_beacon;
struct timeout sc_scan_to;
union {
struct atw_rx_radiotap_header tap;
u_int8_t pad[64];
} sc_rxtapu;
union {
struct atw_tx_radiotap_header tap;
u_int8_t pad[64];
} sc_txtapu;
};
#define sc_rxtap sc_rxtapu.tap
#define sc_txtap sc_txtapu.tap
#define sc_if sc_ic.ic_if
struct atw_frame {
u_int8_t atw_dst[IEEE80211_ADDR_LEN];
u_int8_t atw_rate;
u_int8_t atw_service;
u_int16_t atw_paylen;
u_int8_t atw_fc[2];
u_int16_t atw_tail_plcplen;
u_int16_t atw_head_plcplen;
u_int16_t atw_tail_dur;
u_int16_t atw_head_dur;
u_int8_t atw_addr4[IEEE80211_ADDR_LEN];
union {
struct {
u_int16_t hdrctl;
u_int16_t fragthr;
u_int8_t fragnum;
u_int8_t rtylmt;
u_int8_t wepkey0[4];
u_int8_t wepkey1[4];
u_int8_t wepkey2[4];
u_int8_t wepkey3[4];
u_int8_t keyid;
u_int8_t reserved0[7];
} s1;
struct {
u_int8_t pad[6];
struct ieee80211_frame ihdr;
} s2;
} u;
} __packed;
#define atw_hdrctl u.s1.hdrctl
#define atw_fragthr u.s1.fragthr
#define atw_fragnum u.s1.fragnum
#define atw_rtylmt u.s1.rtylmt
#define atw_keyid u.s1.keyid
#define atw_ihdr u.s2.ihdr
#define ATW_HDRCTL_SHORT_PREAMBLE (1<<0)
#define ATW_HDRCTL_RTSCTS (1<<4)
#define ATW_HDRCTL_WEP (1<<5)
#define ATW_HDRCTL_UNKNOWN1 (1<<15)
#define ATW_HDRCTL_UNKNOWN2 (1<<8)
#define ATW_FRAGTHR_FRAGTHR_MASK 0x0fff
#define ATW_FRAGNUM_FRAGNUM_MASK 0x00f0
#define ATWF_MRL 0x00000010
#define ATWF_MRM 0x00000020
#define ATWF_MWI 0x00000040
#define ATWF_SHORT_PREAMBLE 0x00000080
#define ATWF_RTSCTS 0x00000100
#define ATWF_ATTACHED 0x00000800
#define ATWF_ENABLED 0x00001000
#define ATW_IS_ENABLED(sc) ((sc)->sc_flags & ATWF_ENABLED)
#define ATW_CDTXADDR(sc, x) ((sc)->sc_cddma + ATW_CDTXOFF((x)))
#define ATW_CDRXADDR(sc, x) ((sc)->sc_cddma + ATW_CDRXOFF((x)))
#define ATW_CDTXSYNC(sc, x, n, ops) \
do { \
int __x, __n; \
\
__x = (x); \
__n = (n); \
\
\
if ((__x + __n) > ATW_NTXDESC) { \
bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
ATW_CDTXOFF(__x), sizeof(struct atw_txdesc) * \
(ATW_NTXDESC - __x), (ops)); \
__n -= (ATW_NTXDESC - __x); \
__x = 0; \
} \
\
\
bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
ATW_CDTXOFF(__x), sizeof(struct atw_txdesc) * __n, (ops)); \
} while (0)
#define ATW_CDRXSYNC(sc, x, ops) \
bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
ATW_CDRXOFF((x)), sizeof(struct atw_rxdesc), (ops))
#define ATW_INIT_RXDESC(sc, x) \
do { \
struct atw_rxsoft *__rxs = &sc->sc_rxsoft[(x)]; \
struct atw_rxdesc *__rxd = &sc->sc_rxdescs[(x)]; \
struct mbuf *__m = __rxs->rxs_mbuf; \
\
__rxd->ar_buf1 = \
htole32(__rxs->rxs_dmamap->dm_segs[0].ds_addr); \
__rxd->ar_buf2 = \
htole32(ATW_CDRXADDR((sc), ATW_NEXTRX((x)))); \
__rxd->ar_ctl = \
htole32(LSHIFT(((__m->m_ext.ext_size - 1) & ~0x3U), \
ATW_RXCTL_RBS1_MASK) | \
0 | \
((x) == (ATW_NRXDESC - 1) ? ATW_RXCTL_RER : 0)); \
__rxd->ar_stat = htole32(ATW_RXSTAT_OWN); \
\
ATW_CDRXSYNC((sc), (x), \
BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); \
} while (0)
#define ATW_COUNTRY_FCC 0
#define ATW_COUNTRY_IC 1
#define ATW_COUNTRY_ETSI 2
#define ATW_COUNTRY_SPAIN 3
#define ATW_COUNTRY_FRANCE 4
#define ATW_COUNTRY_MKK 5
#define ATW_COUNTRY_MKK2 6
#define ATW_READ(sc, reg) \
bus_space_read_4((sc)->sc_st, (sc)->sc_sh, (reg))
#define ATW_WRITE(sc, reg, val) \
bus_space_write_4((sc)->sc_st, (sc)->sc_sh, (reg), (val))
#define ATW_SET(sc, reg, mask) \
ATW_WRITE((sc), (reg), ATW_READ((sc), (reg)) | (mask))
#define ATW_CLR(sc, reg, mask) \
ATW_WRITE((sc), (reg), ATW_READ((sc), (reg)) & ~(mask))
#define ATW_ISSET(sc, reg, mask) \
(ATW_READ((sc), (reg)) & (mask))
void atw_attach(struct atw_softc *);
int atw_detach(struct atw_softc *);
int atw_activate(struct device *, int);
int atw_intr(void *arg);
int atw_enable(struct atw_softc *);
void atw_wakeup(struct atw_softc *);
#endif