Symbol: rt2661_softc
sys/dev/ral/if_ral_pci.c
142
struct rt2661_softc sc_rt2661;
sys/dev/ral/rt2661.c
103
static uint16_t rt2661_eeprom_read(struct rt2661_softc *, uint8_t);
sys/dev/ral/rt2661.c
104
static void rt2661_rx_intr(struct rt2661_softc *);
sys/dev/ral/rt2661.c
105
static void rt2661_tx_intr(struct rt2661_softc *);
sys/dev/ral/rt2661.c
106
static void rt2661_tx_dma_intr(struct rt2661_softc *,
sys/dev/ral/rt2661.c
108
static void rt2661_mcu_beacon_expire(struct rt2661_softc *);
sys/dev/ral/rt2661.c
109
static void rt2661_mcu_wakeup(struct rt2661_softc *);
sys/dev/ral/rt2661.c
1098
rt2661_mcu_beacon_expire(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
110
static void rt2661_mcu_cmd_intr(struct rt2661_softc *);
sys/dev/ral/rt2661.c
1104
rt2661_mcu_wakeup(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
1117
rt2661_mcu_cmd_intr(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
1126
struct rt2661_softc *sc = arg;
sys/dev/ral/rt2661.c
116
static void rt2661_setup_tx_desc(struct rt2661_softc *,
sys/dev/ral/rt2661.c
119
static int rt2661_tx_data(struct rt2661_softc *, struct mbuf *,
sys/dev/ral/rt2661.c
1208
rt2661_setup_tx_desc(struct rt2661_softc *sc, struct rt2661_tx_desc *desc,
sys/dev/ral/rt2661.c
121
static int rt2661_tx_mgt(struct rt2661_softc *, struct mbuf *,
sys/dev/ral/rt2661.c
124
static void rt2661_start(struct rt2661_softc *);
sys/dev/ral/rt2661.c
1269
rt2661_tx_mgt(struct rt2661_softc *sc, struct mbuf *m0,
sys/dev/ral/rt2661.c
129
static void rt2661_bbp_write(struct rt2661_softc *, uint8_t,
sys/dev/ral/rt2661.c
131
static uint8_t rt2661_bbp_read(struct rt2661_softc *, uint8_t);
sys/dev/ral/rt2661.c
132
static void rt2661_rf_write(struct rt2661_softc *, uint8_t,
sys/dev/ral/rt2661.c
134
static int rt2661_tx_cmd(struct rt2661_softc *, uint8_t,
sys/dev/ral/rt2661.c
1354
rt2661_sendprot(struct rt2661_softc *sc, int ac,
sys/dev/ral/rt2661.c
136
static void rt2661_select_antenna(struct rt2661_softc *);
sys/dev/ral/rt2661.c
137
static void rt2661_enable_mrr(struct rt2661_softc *);
sys/dev/ral/rt2661.c
138
static void rt2661_set_txpreamble(struct rt2661_softc *);
sys/dev/ral/rt2661.c
139
static void rt2661_set_basicrates(struct rt2661_softc *,
sys/dev/ral/rt2661.c
1409
rt2661_tx_data(struct rt2661_softc *sc, struct mbuf *m0,
sys/dev/ral/rt2661.c
141
static void rt2661_select_band(struct rt2661_softc *,
sys/dev/ral/rt2661.c
143
static void rt2661_set_chan(struct rt2661_softc *,
sys/dev/ral/rt2661.c
145
static void rt2661_set_bssid(struct rt2661_softc *,
sys/dev/ral/rt2661.c
147
static void rt2661_set_macaddr(struct rt2661_softc *,
sys/dev/ral/rt2661.c
153
static void rt2661_read_eeprom(struct rt2661_softc *,
sys/dev/ral/rt2661.c
155
static int rt2661_bbp_init(struct rt2661_softc *);
sys/dev/ral/rt2661.c
1554
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
156
static void rt2661_init_locked(struct rt2661_softc *);
sys/dev/ral/rt2661.c
1574
rt2661_start(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
158
static void rt2661_stop_locked(struct rt2661_softc *);
sys/dev/ral/rt2661.c
160
static int rt2661_load_microcode(struct rt2661_softc *);
sys/dev/ral/rt2661.c
1609
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
162
static void rt2661_rx_tune(struct rt2661_softc *);
sys/dev/ral/rt2661.c
163
static void rt2661_radar_start(struct rt2661_softc *);
sys/dev/ral/rt2661.c
164
static int rt2661_radar_stop(struct rt2661_softc *);
sys/dev/ral/rt2661.c
1645
struct rt2661_softc *sc = (struct rt2661_softc *)arg;
sys/dev/ral/rt2661.c
166
static int rt2661_prepare_beacon(struct rt2661_softc *,
sys/dev/ral/rt2661.c
1667
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
168
static void rt2661_enable_tsf_sync(struct rt2661_softc *);
sys/dev/ral/rt2661.c
1685
rt2661_bbp_write(struct rt2661_softc *sc, uint8_t reg, uint8_t val)
sys/dev/ral/rt2661.c
169
static void rt2661_enable_tsf(struct rt2661_softc *);
sys/dev/ral/rt2661.c
170
static int rt2661_get_rssi(struct rt2661_softc *, uint8_t);
sys/dev/ral/rt2661.c
1707
rt2661_bbp_read(struct rt2661_softc *sc, uint8_t reg)
sys/dev/ral/rt2661.c
1737
rt2661_rf_write(struct rt2661_softc *sc, uint8_t reg, uint32_t val)
sys/dev/ral/rt2661.c
1763
rt2661_tx_cmd(struct rt2661_softc *sc, uint8_t cmd, uint16_t arg)
sys/dev/ral/rt2661.c
1777
rt2661_select_antenna(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
1803
rt2661_enable_mrr(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
1819
rt2661_set_txpreamble(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
1834
rt2661_set_basicrates(struct rt2661_softc *sc,
sys/dev/ral/rt2661.c
1862
rt2661_select_band(struct rt2661_softc *sc, struct ieee80211_channel *c)
sys/dev/ral/rt2661.c
1904
rt2661_set_chan(struct rt2661_softc *sc, struct ieee80211_channel *c)
sys/dev/ral/rt2661.c
1977
rt2661_set_bssid(struct rt2661_softc *sc, const uint8_t *bssid)
sys/dev/ral/rt2661.c
1989
rt2661_set_macaddr(struct rt2661_softc *sc, const uint8_t *addr)
sys/dev/ral/rt2661.c
2003
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
2024
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
203
struct rt2661_softc *sc = device_get_softc(dev);
sys/dev/ral/rt2661.c
2070
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
2094
rt2661_read_eeprom(struct rt2661_softc *sc, uint8_t macaddr[IEEE80211_ADDR_LEN])
sys/dev/ral/rt2661.c
2186
rt2661_bbp_init(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
2220
rt2661_init_locked(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
2354
struct rt2661_softc *sc = priv;
sys/dev/ral/rt2661.c
2366
rt2661_stop_locked(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
2412
struct rt2661_softc *sc = priv;
sys/dev/ral/rt2661.c
2420
rt2661_load_microcode(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
2491
rt2661_rx_tune(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
2552
rt2661_radar_start(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
2584
rt2661_radar_stop(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
2604
rt2661_prepare_beacon(struct rt2661_softc *sc, struct ieee80211vap *vap)
sys/dev/ral/rt2661.c
2639
rt2661_enable_tsf_sync(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
2668
rt2661_enable_tsf(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
2681
rt2661_get_rssi(struct rt2661_softc *sc, uint8_t raw)
sys/dev/ral/rt2661.c
2725
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
2737
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
2749
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
2767
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
332
struct rt2661_softc *sc = xsc;
sys/dev/ral/rt2661.c
360
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
430
struct rt2661_softc *sc = xsc;
sys/dev/ral/rt2661.c
438
struct rt2661_softc *sc = xsc;
sys/dev/ral/rt2661.c
446
struct rt2661_softc *sc = xsc;
sys/dev/ral/rt2661.c
464
rt2661_alloc_tx_ring(struct rt2661_softc *sc, struct rt2661_tx_ring *ring,
sys/dev/ral/rt2661.c
529
rt2661_reset_tx_ring(struct rt2661_softc *sc, struct rt2661_tx_ring *ring)
sys/dev/ral/rt2661.c
562
rt2661_free_tx_ring(struct rt2661_softc *sc, struct rt2661_tx_ring *ring)
sys/dev/ral/rt2661.c
603
rt2661_alloc_rx_ring(struct rt2661_softc *sc, struct rt2661_rx_ring *ring,
sys/dev/ral/rt2661.c
697
rt2661_reset_rx_ring(struct rt2661_softc *sc, struct rt2661_rx_ring *ring)
sys/dev/ral/rt2661.c
710
rt2661_free_rx_ring(struct rt2661_softc *sc, struct rt2661_rx_ring *ring)
sys/dev/ral/rt2661.c
752
struct rt2661_softc *sc = ic->ic_softc;
sys/dev/ral/rt2661.c
795
rt2661_eeprom_read(struct rt2661_softc *sc, uint8_t addr)
sys/dev/ral/rt2661.c
849
rt2661_tx_intr(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
89
static int rt2661_alloc_tx_ring(struct rt2661_softc *,
sys/dev/ral/rt2661.c
91
static void rt2661_reset_tx_ring(struct rt2661_softc *,
sys/dev/ral/rt2661.c
926
rt2661_tx_dma_intr(struct rt2661_softc *sc, struct rt2661_tx_ring *txq)
sys/dev/ral/rt2661.c
93
static void rt2661_free_tx_ring(struct rt2661_softc *,
sys/dev/ral/rt2661.c
95
static int rt2661_alloc_rx_ring(struct rt2661_softc *,
sys/dev/ral/rt2661.c
958
rt2661_rx_intr(struct rt2661_softc *sc)
sys/dev/ral/rt2661.c
97
static void rt2661_reset_rx_ring(struct rt2661_softc *,
sys/dev/ral/rt2661.c
99
static void rt2661_free_rx_ring(struct rt2661_softc *,