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