Home | History | Annotate | Line # | Download | only in usb
if_rumvar.h revision 1.4.32.1
      1  1.4.32.1       jym /*	$NetBSD: if_rumvar.h,v 1.4.32.1 2009/07/23 23:32:21 jym Exp $	*/
      2       1.4  kiyohara /*	$OpenBSD: if_rumvar.h,v 1.7 2006/11/13 20:06:38 damien Exp $	*/
      3       1.1     joerg 
      4       1.1     joerg /*-
      5       1.1     joerg  * Copyright (c) 2005, 2006 Damien Bergamini <damien.bergamini (at) free.fr>
      6       1.1     joerg  * Copyright (c) 2006 Niall O'Higgins <niallo (at) openbsd.org>
      7       1.1     joerg  *
      8       1.1     joerg  * Permission to use, copy, modify, and distribute this software for any
      9       1.1     joerg  * purpose with or without fee is hereby granted, provided that the above
     10       1.1     joerg  * copyright notice and this permission notice appear in all copies.
     11       1.1     joerg  *
     12       1.1     joerg  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     13       1.1     joerg  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     14       1.1     joerg  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     15       1.1     joerg  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     16       1.1     joerg  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     17       1.1     joerg  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     18       1.1     joerg  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     19       1.1     joerg  */
     20       1.1     joerg 
     21       1.4  kiyohara #define RUM_RX_LIST_COUNT	1
     22       1.4  kiyohara #define RUM_TX_LIST_COUNT	1
     23       1.1     joerg 
     24       1.1     joerg struct rum_rx_radiotap_header {
     25       1.1     joerg 	struct ieee80211_radiotap_header wr_ihdr;
     26       1.1     joerg 	uint8_t		wr_flags;
     27       1.1     joerg 	uint8_t		wr_rate;
     28       1.1     joerg 	uint16_t	wr_chan_freq;
     29       1.1     joerg 	uint16_t	wr_chan_flags;
     30       1.1     joerg 	uint8_t		wr_antenna;
     31       1.1     joerg 	uint8_t		wr_antsignal;
     32       1.1     joerg } __packed;
     33       1.1     joerg 
     34       1.1     joerg #define RT2573_RX_RADIOTAP_PRESENT					\
     35       1.1     joerg 	((1 << IEEE80211_RADIOTAP_FLAGS) |				\
     36       1.1     joerg 	 (1 << IEEE80211_RADIOTAP_RATE) |				\
     37       1.1     joerg 	 (1 << IEEE80211_RADIOTAP_CHANNEL) |				\
     38       1.1     joerg 	 (1 << IEEE80211_RADIOTAP_ANTENNA) |				\
     39       1.1     joerg 	 (1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL))
     40       1.1     joerg 
     41       1.1     joerg struct rum_tx_radiotap_header {
     42       1.1     joerg 	struct ieee80211_radiotap_header wt_ihdr;
     43       1.1     joerg 	uint8_t		wt_flags;
     44       1.1     joerg 	uint8_t		wt_rate;
     45       1.1     joerg 	uint16_t	wt_chan_freq;
     46       1.1     joerg 	uint16_t	wt_chan_flags;
     47       1.1     joerg 	uint8_t		wt_antenna;
     48       1.1     joerg } __packed;
     49       1.1     joerg 
     50       1.1     joerg #define RT2573_TX_RADIOTAP_PRESENT						\
     51       1.1     joerg 	((1 << IEEE80211_RADIOTAP_FLAGS) |				\
     52       1.1     joerg 	 (1 << IEEE80211_RADIOTAP_RATE) |				\
     53       1.1     joerg 	 (1 << IEEE80211_RADIOTAP_CHANNEL) |				\
     54       1.1     joerg 	 (1 << IEEE80211_RADIOTAP_ANTENNA))
     55       1.1     joerg 
     56       1.1     joerg struct rum_softc;
     57       1.1     joerg 
     58       1.1     joerg struct rum_tx_data {
     59       1.1     joerg 	struct rum_softc	*sc;
     60       1.1     joerg 	usbd_xfer_handle	xfer;
     61       1.1     joerg 	uint8_t			*buf;
     62       1.1     joerg 	struct mbuf		*m;
     63       1.1     joerg 	struct ieee80211_node	*ni;
     64       1.1     joerg };
     65       1.1     joerg 
     66       1.1     joerg struct rum_rx_data {
     67       1.1     joerg 	struct rum_softc	*sc;
     68       1.1     joerg 	usbd_xfer_handle	xfer;
     69       1.1     joerg 	uint8_t			*buf;
     70       1.1     joerg 	struct mbuf		*m;
     71       1.1     joerg };
     72       1.1     joerg 
     73       1.1     joerg struct rum_softc {
     74       1.1     joerg 	USBBASEDEVICE			sc_dev;
     75       1.1     joerg 	struct ethercom			sc_ec;
     76       1.1     joerg #define sc_if	sc_ec.ec_if
     77       1.1     joerg 	struct ieee80211com		sc_ic;
     78       1.1     joerg 	int				(*sc_newstate)(struct ieee80211com *,
     79       1.1     joerg 					    enum ieee80211_state, int);
     80       1.1     joerg 
     81       1.1     joerg 	usbd_device_handle		sc_udev;
     82       1.1     joerg 	usbd_interface_handle		sc_iface;
     83       1.1     joerg 	int				sc_flags;
     84       1.1     joerg #define	RT2573_FWLOADED	(1 << 0)
     85       1.1     joerg 
     86       1.1     joerg 	struct ieee80211_channel	*sc_curchan;
     87       1.1     joerg 
     88       1.1     joerg 	int				sc_rx_no;
     89       1.1     joerg 	int				sc_tx_no;
     90       1.1     joerg 
     91       1.1     joerg 	uint16_t			macbbp_rev;
     92       1.1     joerg 	uint8_t				rf_rev;
     93       1.1     joerg 	uint8_t				rffreq;
     94       1.1     joerg 
     95       1.1     joerg 	usbd_xfer_handle		amrr_xfer;
     96       1.1     joerg 
     97       1.1     joerg 	usbd_pipe_handle		sc_rx_pipeh;
     98       1.1     joerg 	usbd_pipe_handle		sc_tx_pipeh;
     99       1.1     joerg 
    100       1.1     joerg 	enum ieee80211_state		sc_state;
    101       1.1     joerg 	struct usb_task			sc_task;
    102       1.1     joerg 
    103       1.1     joerg 	struct ieee80211_amrr		amrr;
    104       1.1     joerg 	struct ieee80211_amrr_node	amn;
    105       1.1     joerg 
    106       1.4  kiyohara 	struct rum_rx_data		rx_data[RUM_RX_LIST_COUNT];
    107       1.4  kiyohara 	struct rum_tx_data		tx_data[RUM_TX_LIST_COUNT];
    108       1.1     joerg 	int				tx_queued;
    109       1.1     joerg 
    110       1.1     joerg 	struct ieee80211_beacon_offsets	sc_bo;
    111       1.1     joerg 
    112       1.3  kiyohara 	usb_callout_t			sc_scan_ch;
    113       1.3  kiyohara 	usb_callout_t			sc_amrr_ch;
    114       1.1     joerg 
    115       1.1     joerg 	int				sc_tx_timer;
    116       1.1     joerg 
    117       1.1     joerg 	uint32_t			sta[6];
    118       1.1     joerg 	uint32_t			rf_regs[4];
    119       1.1     joerg 	uint8_t				txpow[44];
    120       1.1     joerg 
    121       1.1     joerg 	struct {
    122       1.1     joerg 		uint8_t	val;
    123       1.1     joerg 		uint8_t	reg;
    124       1.1     joerg 	} __packed			bbp_prom[16];
    125       1.1     joerg 
    126       1.1     joerg 	int				hw_radio;
    127       1.1     joerg 	int				rx_ant;
    128       1.1     joerg 	int				tx_ant;
    129       1.1     joerg 	int				nb_ant;
    130       1.1     joerg 	int				ext_2ghz_lna;
    131       1.1     joerg 	int				ext_5ghz_lna;
    132       1.1     joerg 	int				rssi_2ghz_corr;
    133       1.1     joerg 	int				rssi_5ghz_corr;
    134       1.1     joerg 	int				sifs;
    135       1.1     joerg 	uint8_t				bbp17;
    136       1.1     joerg 
    137       1.1     joerg #if NBPFILTER > 0
    138       1.2  christos 	void *				sc_drvbpf;
    139       1.1     joerg 
    140       1.1     joerg 	union {
    141       1.1     joerg 		struct rum_rx_radiotap_header th;
    142       1.1     joerg 		uint8_t	pad[64];
    143       1.1     joerg 	}				sc_rxtapu;
    144       1.1     joerg #define sc_rxtap	sc_rxtapu.th
    145       1.1     joerg 	int				sc_rxtap_len;
    146       1.1     joerg 
    147       1.1     joerg 	union {
    148       1.1     joerg 		struct rum_tx_radiotap_header th;
    149       1.1     joerg 		uint8_t	pad[64];
    150       1.1     joerg 	}				sc_txtapu;
    151       1.1     joerg #define sc_txtap	sc_txtapu.th
    152       1.1     joerg 	int				sc_txtap_len;
    153       1.1     joerg #endif
    154       1.1     joerg };
    155