Home
last modified time | relevance | path

Searched refs:txctl (Results 1 – 15 of 15) sorted by relevance

/drivers/net/wireless/ath/ath9k/
Dxmit.c1689 struct sk_buff *skb, struct ath_tx_control *txctl) in ath_tx_send_ampdu() argument
1704 txctl->txq->axq_ampdu_depth >= ATH_AGGR_MIN_QDEPTH) { in ath_tx_send_ampdu()
1709 TX_STAT_INC(txctl->txq->axq_qnum, a_queued_sw); in ath_tx_send_ampdu()
1711 if (!txctl->an || !txctl->an->sleeping) in ath_tx_send_ampdu()
1712 ath_tx_queue_tid(txctl->txq, tid); in ath_tx_send_ampdu()
1716 bf = ath_tx_setup_buffer(sc, txctl->txq, tid, skb); in ath_tx_send_ampdu()
1731 TX_STAT_INC(txctl->txq->axq_qnum, a_queued_hw); in ath_tx_send_ampdu()
1733 ath_tx_fill_desc(sc, bf, txctl->txq, fi->framelen); in ath_tx_send_ampdu()
1734 ath_tx_txqaddbuf(sc, txctl->txq, &bf_head, false); in ath_tx_send_ampdu()
1874 struct ath_tx_control *txctl) in ath_tx_start() argument
[all …]
Dlink.c210 struct ath_tx_control txctl; in ath_paprd_send_frame() local
213 memset(&txctl, 0, sizeof(txctl)); in ath_paprd_send_frame()
214 txctl.txq = sc->tx.txq_map[IEEE80211_AC_BE]; in ath_paprd_send_frame()
225 txctl.paprd = BIT(chain); in ath_paprd_send_frame()
227 if (ath_tx_start(hw, skb, &txctl) != 0) { in ath_paprd_send_frame()
Dar9002_phy.c80 u32 txctl; in ar9002_hw_set_channel() local
98 txctl = REG_READ(ah, AR_PHY_CCK_TX_CTRL); in ar9002_hw_set_channel()
102 txctl | AR_PHY_CCK_TX_CTRL_JAPAN); in ar9002_hw_set_channel()
105 txctl & ~AR_PHY_CCK_TX_CTRL_JAPAN); in ar9002_hw_set_channel()
Dbeacon.c114 struct ath_tx_control txctl; in ath9k_tx_cabq() local
116 memset(&txctl, 0, sizeof(struct ath_tx_control)); in ath9k_tx_cabq()
117 txctl.txq = sc->beacon.cabq; in ath9k_tx_cabq()
121 if (ath_tx_start(hw, skb, &txctl) != 0) { in ath9k_tx_cabq()
Dar5008_phy.c188 u32 txctl; in ar5008_hw_set_channel() local
204 txctl = REG_READ(ah, AR_PHY_CCK_TX_CTRL); in ar5008_hw_set_channel()
208 txctl | AR_PHY_CCK_TX_CTRL_JAPAN); in ar5008_hw_set_channel()
211 txctl & ~AR_PHY_CCK_TX_CTRL_JAPAN); in ar5008_hw_set_channel()
Dmain.c679 struct ath_tx_control txctl; in ath9k_tx() local
733 memset(&txctl, 0, sizeof(struct ath_tx_control)); in ath9k_tx()
734 txctl.txq = sc->tx.txq_map[skb_get_queue_mapping(skb)]; in ath9k_tx()
735 txctl.sta = control->sta; in ath9k_tx()
739 if (ath_tx_start(hw, skb, &txctl) != 0) { in ath9k_tx()
741 TX_STAT_INC(txctl.txq->axq_qnum, txfailed); in ath9k_tx()
Dath9k.h345 struct ath_tx_control *txctl);
/drivers/net/wireless/brcm80211/brcmfmac/
Ddhd_bus.h53 int (*txctl)(struct device *dev, unsigned char *msg, uint len); member
112 return bus->ops->txctl(bus->dev, msg, len); in brcmf_bus_txctl()
Dusb.c1223 .txctl = brcmf_usb_tx_ctlpkt,
Ddhd_sdio.c3866 .txctl = brcmf_sdbrcm_bus_txctl,
/drivers/net/ethernet/sfc/
Dtxc43128_phy.c382 int txctl = efx_mdio_read(efx, mmd, TXC_ALRGS_ATXCTL); in txc_analog_lane_power() local
386 txctl &= ~txpd; in txc_analog_lane_power()
389 txctl |= txpd; in txc_analog_lane_power()
393 efx_mdio_write(efx, mmd, TXC_ALRGS_ATXCTL, txctl); in txc_analog_lane_power()
/drivers/net/wireless/b43legacy/
Dpio.c287 u16 txctl; in tx_tasklet() local
292 txctl = b43legacy_pio_read(queue, B43legacy_PIO_TXCTL); in tx_tasklet()
293 if (txctl & B43legacy_PIO_TXCTL_SUSPEND) in tx_tasklet()
/drivers/net/wireless/b43/
Dxmit.h204 struct ieee80211_tx_info *txctl, u16 cookie);
/drivers/net/ethernet/toshiba/
Dtc35815.c2118 unsigned long txctl = TX_CTL_CMD; in tc35815_chip_init() local
2151 txctl &= ~Tx_EnLCarr; in tc35815_chip_init()
2154 txctl &= ~Tx_EnLCarr; in tc35815_chip_init()
2155 tc_writel(txctl, &tr->Tx_Ctl); in tc35815_chip_init()
/drivers/net/wireless/ath/ath5k/
Ddesc.c320 txctl##_c |= AR5K_4W_TX_DESC_CTL##_c##_##_flag; \ in ath5k_hw_setup_4word_tx_desc()