| 4588 | } |
| 4589 | |
| 4590 | void |
| 4591 | txgbe_dev_store_rx_queue(struct txgbe_hw *hw, uint16_t rx_queue_id) |
| 4592 | { |
| 4593 | u32 *reg = &hw->q_rx_regs[rx_queue_id * 8]; |
| 4594 | wr32(hw, TXGBE_RXBAL(rx_queue_id), *(reg++)); |
| 4595 | wr32(hw, TXGBE_RXBAH(rx_queue_id), *(reg++)); |
| 4596 | wr32(hw, TXGBE_RXCFG(rx_queue_id), *(reg++) & ~TXGBE_RXCFG_ENA); |
| 4597 | } |
| 4598 | |
| 4599 | void |
| 4600 | txgbe_dev_save_tx_queue(struct txgbe_hw *hw, uint16_t tx_queue_id) |
no test coverage detected