Lines Matching refs:ural_softc
112 Static int ural_alloc_tx_list(struct ural_softc *);
113 Static void ural_free_tx_list(struct ural_softc *);
114 Static int ural_alloc_rx_list(struct ural_softc *);
115 Static void ural_free_rx_list(struct ural_softc *);
129 Static void ural_setup_tx_desc(struct ural_softc *,
131 Static int ural_tx_bcn(struct ural_softc *, struct mbuf *,
133 Static int ural_tx_mgt(struct ural_softc *, struct mbuf *,
135 Static int ural_tx_data(struct ural_softc *, struct mbuf *,
141 Static void ural_set_testmode(struct ural_softc *);
142 Static void ural_eeprom_read(struct ural_softc *, uint16_t, void *,
144 Static uint16_t ural_read(struct ural_softc *, uint16_t);
145 Static void ural_read_multi(struct ural_softc *, uint16_t, void *,
147 Static void ural_write(struct ural_softc *, uint16_t, uint16_t);
148 Static void ural_write_multi(struct ural_softc *, uint16_t, void *,
150 Static void ural_bbp_write(struct ural_softc *, uint8_t, uint8_t);
151 Static uint8_t ural_bbp_read(struct ural_softc *, uint8_t);
152 Static void ural_rf_write(struct ural_softc *, uint8_t, uint32_t);
153 Static void ural_set_chan(struct ural_softc *,
155 Static void ural_disable_rf_tune(struct ural_softc *);
156 Static void ural_enable_tsf_sync(struct ural_softc *);
158 Static void ural_set_txpreamble(struct ural_softc *);
159 Static void ural_set_basicrates(struct ural_softc *);
160 Static void ural_set_bssid(struct ural_softc *, uint8_t *);
161 Static void ural_set_macaddr(struct ural_softc *, uint8_t *);
162 Static void ural_update_promisc(struct ural_softc *);
164 Static void ural_read_eeprom(struct ural_softc *);
165 Static int ural_bbp_init(struct ural_softc *);
166 Static void ural_set_txantenna(struct ural_softc *, int);
167 Static void ural_set_rxantenna(struct ural_softc *, int);
170 Static void ural_amrr_start(struct ural_softc *,
343 CFATTACH_DECL_NEW(ural, sizeof(struct ural_softc), ural_match, ural_attach,
358 struct ural_softc *sc = device_private(self); in ural_attach()
534 struct ural_softc *sc = device_private(self); in ural_detach()
563 ural_alloc_tx_list(struct ural_softc *sc) in ural_alloc_tx_list()
593 ural_free_tx_list(struct ural_softc *sc) in ural_free_tx_list()
614 ural_alloc_rx_list(struct ural_softc *sc) in ural_alloc_rx_list()
658 ural_free_rx_list(struct ural_softc *sc) in ural_free_rx_list()
698 struct ural_softc *sc = arg; in ural_next_scan()
708 struct ural_softc *sc = arg; in ural_task()
793 struct ural_softc *sc = ic->ic_ifp->if_softc; in ural_newstate()
857 struct ural_softc *sc = data->sc; in ural_txeof()
898 struct ural_softc *sc = data->sc; in ural_rxeof()
1080 ural_setup_tx_desc(struct ural_softc *sc, struct ural_tx_desc *desc, in ural_setup_tx_desc()
1126 ural_tx_bcn(struct ural_softc *sc, struct mbuf *m0, struct ieee80211_node *ni) in ural_tx_bcn()
1175 ural_tx_mgt(struct ural_softc *sc, struct mbuf *m0, struct ieee80211_node *ni) in ural_tx_mgt()
1264 ural_tx_data(struct ural_softc *sc, struct mbuf *m0, struct ieee80211_node *ni) in ural_tx_data()
1353 struct ural_softc *sc = ifp->if_softc; in ural_start()
1418 struct ural_softc *sc = ifp->if_softc; in ural_watchdog()
1444 struct ural_softc *sc = ifp->if_softc; in ural_reset()
1461 struct ural_softc *sc = ifp->if_softc; in ural_ioctl()
1512 ural_set_testmode(struct ural_softc *sc) in ural_set_testmode()
1531 ural_eeprom_read(struct ural_softc *sc, uint16_t addr, void *buf, int len) in ural_eeprom_read()
1550 ural_read(struct ural_softc *sc, uint16_t reg) in ural_read()
1573 ural_read_multi(struct ural_softc *sc, uint16_t reg, void *buf, int len) in ural_read_multi()
1592 ural_write(struct ural_softc *sc, uint16_t reg, uint16_t val) in ural_write()
1611 ural_write_multi(struct ural_softc *sc, uint16_t reg, void *buf, int len) in ural_write_multi()
1630 ural_bbp_write(struct ural_softc *sc, uint8_t reg, uint8_t val) in ural_bbp_write()
1649 ural_bbp_read(struct ural_softc *sc, uint8_t reg) in ural_bbp_read()
1670 ural_rf_write(struct ural_softc *sc, uint8_t reg, uint32_t val) in ural_rf_write()
1695 ural_set_chan(struct ural_softc *sc, struct ieee80211_channel *c) in ural_set_chan()
1799 ural_disable_rf_tune(struct ural_softc *sc) in ural_disable_rf_tune()
1819 ural_enable_tsf_sync(struct ural_softc *sc) in ural_enable_tsf_sync()
1849 struct ural_softc *sc = ifp->if_softc; in ural_update_slot()
1873 ural_set_txpreamble(struct ural_softc *sc) in ural_set_txpreamble()
1887 ural_set_basicrates(struct ural_softc *sc) in ural_set_basicrates()
1905 ural_set_bssid(struct ural_softc *sc, uint8_t *bssid) in ural_set_bssid()
1922 ural_set_macaddr(struct ural_softc *sc, uint8_t *addr) in ural_set_macaddr()
1939 ural_update_promisc(struct ural_softc *sc) in ural_update_promisc()
1972 ural_read_eeprom(struct ural_softc *sc) in ural_read_eeprom()
1997 ural_bbp_init(struct ural_softc *sc) in ural_bbp_init()
2029 ural_set_txantenna(struct ural_softc *sc, int antenna) in ural_set_txantenna()
2058 ural_set_rxantenna(struct ural_softc *sc, int antenna) in ural_set_rxantenna()
2080 struct ural_softc *sc = ifp->if_softc; in ural_init()
2229 struct ural_softc *sc = ifp->if_softc; in ural_stop()
2275 struct ural_softc *sc = device_private(self); in ural_activate()
2287 ural_amrr_start(struct ural_softc *sc, struct ieee80211_node *ni) in ural_amrr_start()
2308 struct ural_softc *sc = (struct ural_softc *)arg; in ural_amrr_timeout()
2335 struct ural_softc *sc = (struct ural_softc *)priv; in ural_amrr_update()