Searched refs:tx_config (Results 1 – 6 of 6) sorted by relevance
/Linux-v5.4/drivers/net/ethernet/samsung/sxgbe/ |
D | sxgbe_core.c | 119 u32 tx_config; in sxgbe_enable_tx() local 121 tx_config = readl(ioaddr + SXGBE_CORE_TX_CONFIG_REG); in sxgbe_enable_tx() 122 tx_config &= ~SXGBE_TX_ENABLE; in sxgbe_enable_tx() 125 tx_config |= SXGBE_TX_ENABLE; in sxgbe_enable_tx() 126 writel(tx_config, ioaddr + SXGBE_CORE_TX_CONFIG_REG); in sxgbe_enable_tx()
|
D | sxgbe_dma.c | 98 u32 tx_config; in sxgbe_enable_dma_transmission() local 100 tx_config = readl(ioaddr + SXGBE_DMA_CHA_TXCTL_REG(cha_num)); in sxgbe_enable_dma_transmission() 101 tx_config |= SXGBE_TX_START_DMA; in sxgbe_enable_dma_transmission() 102 writel(tx_config, ioaddr + SXGBE_DMA_CHA_TXCTL_REG(cha_num)); in sxgbe_enable_dma_transmission()
|
/Linux-v5.4/drivers/net/ethernet/silan/ |
D | sc92031.c | 292 u32 tx_config; member 389 priv->tx_config &= ~TxEnb; in _sc92031_disable_tx_rx() 391 iowrite32(priv->tx_config, port_base + TxConfig); in _sc92031_disable_tx_rx() 400 priv->tx_config |= TxEnb; in _sc92031_enable_tx_rx() 402 iowrite32(priv->tx_config, port_base + TxConfig); in _sc92031_enable_tx_rx() 504 priv->tx_config = 0x48800000; in _sc92031_check_media() 509 priv->tx_config |= 0x80000; in _sc92031_check_media() 516 priv->tx_config |= TxFullDx; in _sc92031_check_media() 520 priv->tx_config &= ~TxFullDx; in _sc92031_check_media() 626 priv->tx_config = 0; in _sc92031_reset()
|
/Linux-v5.4/drivers/net/ethernet/natsemi/ |
D | natsemi.c | 577 u32 tx_config, rx_config; member 1701 np->tx_config |= TxCarrierIgn | TxHeartIgn; in check_link() 1704 np->tx_config &= ~(TxCarrierIgn | TxHeartIgn); in check_link() 1706 writel(np->tx_config, ioaddr + TxConfig); in check_link() 1739 np->tx_config = TxAutoPad | TxCollRetry | TxMxdma_256 | in init_registers() 1741 writel(np->tx_config, ioaddr + TxConfig); in init_registers() 2422 if ((np->tx_config & TxDrthMask) < TX_DRTH_VAL_LIMIT) { in netdev_error() 2423 np->tx_config += TX_DRTH_VAL_INC; in netdev_error() 2427 dev->name, np->tx_config); in netdev_error() 2432 dev->name, np->tx_config); in netdev_error() [all …]
|
/Linux-v5.4/drivers/net/ethernet/brocade/bna/ |
D | bnad.h | 307 struct bna_tx_config tx_config[BNAD_MAX_TX] ____cacheline_aligned; member
|
D | bnad.c | 1949 struct bna_tx_config *tx_config = &bnad->tx_config[tx_id]; in bnad_setup_tx() local 1964 tx_config->num_txq = bnad->num_txq_per_tx; in bnad_setup_tx() 1965 tx_config->txq_depth = bnad->txq_depth; in bnad_setup_tx() 1966 tx_config->tx_type = BNA_TX_T_REGULAR; in bnad_setup_tx() 1967 tx_config->coalescing_timeo = bnad->tx_coalescing_timeo; in bnad_setup_tx() 1987 tx = bna_tx_create(&bnad->bna, bnad, tx_config, &tx_cbfn, res_info, in bnad_setup_tx()
|