Searched refs:tx_config (Results 1 - 6 of 6) sorted by relevance

/linux-master/drivers/net/ethernet/samsung/sxgbe/
H A Dsxgbe_core.c120 u32 tx_config; local
122 tx_config = readl(ioaddr + SXGBE_CORE_TX_CONFIG_REG);
123 tx_config &= ~SXGBE_TX_ENABLE;
126 tx_config |= SXGBE_TX_ENABLE;
127 writel(tx_config, ioaddr + SXGBE_CORE_TX_CONFIG_REG);
H A Dsxgbe_dma.c98 u32 tx_config; local
100 tx_config = readl(ioaddr + SXGBE_DMA_CHA_TXCTL_REG(cha_num));
101 tx_config |= SXGBE_TX_START_DMA;
102 writel(tx_config, ioaddr + SXGBE_DMA_CHA_TXCTL_REG(cha_num));
/linux-master/drivers/net/ethernet/silan/
H A Dsc92031.c292 u32 tx_config; member in struct:sc92031_priv
390 priv->tx_config &= ~TxEnb;
392 iowrite32(priv->tx_config, port_base + TxConfig);
401 priv->tx_config |= TxEnb;
403 iowrite32(priv->tx_config, port_base + TxConfig);
505 priv->tx_config = 0x48800000;
510 priv->tx_config |= 0x80000;
517 priv->tx_config |= TxFullDx;
521 priv->tx_config &= ~TxFullDx;
627 priv->tx_config
[all...]
/linux-master/drivers/net/ethernet/brocade/bna/
H A Dbnad.h304 struct bna_tx_config tx_config[BNAD_MAX_TX] ____cacheline_aligned;
H A Dbnad.c1947 struct bna_tx_config *tx_config = &bnad->tx_config[tx_id]; local
1962 tx_config->num_txq = bnad->num_txq_per_tx;
1963 tx_config->txq_depth = bnad->txq_depth;
1964 tx_config->tx_type = BNA_TX_T_REGULAR;
1965 tx_config->coalescing_timeo = bnad->tx_coalescing_timeo;
1985 tx = bna_tx_create(&bnad->bna, bnad, tx_config, &tx_cbfn, res_info,
/linux-master/drivers/net/ethernet/natsemi/
H A Dnatsemi.c577 u32 tx_config, rx_config; member in struct:netdev_private
1698 np->tx_config |= TxCarrierIgn | TxHeartIgn;
1701 np->tx_config &= ~(TxCarrierIgn | TxHeartIgn);
1703 writel(np->tx_config, ioaddr + TxConfig);
1736 np->tx_config = TxAutoPad | TxCollRetry | TxMxdma_256 |
1738 writel(np->tx_config, ioaddr + TxConfig);
2418 if ((np->tx_config & TxDrthMask) < TX_DRTH_VAL_LIMIT) {
2419 np->tx_config += TX_DRTH_VAL_INC;
2423 dev->name, np->tx_config);
2428 dev->name, np->tx_config);
[all...]

Completed in 154 milliseconds