| 3108 | } |
| 3109 | |
| 3110 | void |
| 3111 | ngbe_dev_store_tx_queue(struct ngbe_hw *hw, uint16_t tx_queue_id) |
| 3112 | { |
| 3113 | u32 *reg = &hw->q_tx_regs[tx_queue_id * 8]; |
| 3114 | wr32(hw, NGBE_TXBAL(tx_queue_id), *(reg++)); |
| 3115 | wr32(hw, NGBE_TXBAH(tx_queue_id), *(reg++)); |
| 3116 | wr32(hw, NGBE_TXCFG(tx_queue_id), *(reg++) & ~NGBE_TXCFG_ENA); |
| 3117 | } |
| 3118 | |
| 3119 | /* |
| 3120 | * Start Receive Units for specified queue. |
no test coverage detected