Searched refs:tx_config (Results 1 – 6 of 6) sorted by relevance
/linux-6.12.1/drivers/net/ethernet/samsung/sxgbe/ |
D | sxgbe_core.c | 120 u32 tx_config; in sxgbe_enable_tx() local 122 tx_config = readl(ioaddr + SXGBE_CORE_TX_CONFIG_REG); in sxgbe_enable_tx() 123 tx_config &= ~SXGBE_TX_ENABLE; in sxgbe_enable_tx() 126 tx_config |= SXGBE_TX_ENABLE; in sxgbe_enable_tx() 127 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-6.12.1/drivers/net/ethernet/silan/ |
D | sc92031.c | 292 u32 tx_config; member 390 priv->tx_config &= ~TxEnb; in _sc92031_disable_tx_rx() 392 iowrite32(priv->tx_config, port_base + TxConfig); in _sc92031_disable_tx_rx() 401 priv->tx_config |= TxEnb; in _sc92031_enable_tx_rx() 403 iowrite32(priv->tx_config, port_base + TxConfig); in _sc92031_enable_tx_rx() 505 priv->tx_config = 0x48800000; in _sc92031_check_media() 510 priv->tx_config |= 0x80000; in _sc92031_check_media() 517 priv->tx_config |= TxFullDx; in _sc92031_check_media() 521 priv->tx_config &= ~TxFullDx; in _sc92031_check_media() 627 priv->tx_config = 0; in _sc92031_reset()
|
/linux-6.12.1/drivers/net/ethernet/natsemi/ |
D | natsemi.c | 577 u32 tx_config, rx_config; member 1698 np->tx_config |= TxCarrierIgn | TxHeartIgn; in check_link() 1701 np->tx_config &= ~(TxCarrierIgn | TxHeartIgn); in check_link() 1703 writel(np->tx_config, ioaddr + TxConfig); in check_link() 1736 np->tx_config = TxAutoPad | TxCollRetry | TxMxdma_256 | in init_registers() 1738 writel(np->tx_config, ioaddr + TxConfig); in init_registers() 2418 if ((np->tx_config & TxDrthMask) < TX_DRTH_VAL_LIMIT) { in netdev_error() 2419 np->tx_config += TX_DRTH_VAL_INC; in netdev_error() 2423 dev->name, np->tx_config); in netdev_error() 2428 dev->name, np->tx_config); in netdev_error() [all …]
|
/linux-6.12.1/drivers/net/ethernet/brocade/bna/ |
D | bnad.h | 304 struct bna_tx_config tx_config[BNAD_MAX_TX] ____cacheline_aligned; member
|
D | bnad.c | 1948 struct bna_tx_config *tx_config = &bnad->tx_config[tx_id]; in bnad_setup_tx() local 1963 tx_config->num_txq = bnad->num_txq_per_tx; in bnad_setup_tx() 1964 tx_config->txq_depth = bnad->txq_depth; in bnad_setup_tx() 1965 tx_config->tx_type = BNA_TX_T_REGULAR; in bnad_setup_tx() 1966 tx_config->coalescing_timeo = bnad->tx_coalescing_timeo; in bnad_setup_tx() 1986 tx = bna_tx_create(&bnad->bna, bnad, tx_config, &tx_cbfn, res_info, in bnad_setup_tx()
|