Searched refs:mbx_id (Results 1 – 4 of 4) sorted by relevance
/linux/drivers/net/ethernet/intel/igb/ |
A D | e1000_mbx.c | 50 ret_val = mbx->ops.write(hw, msg, size, mbx_id); in igb_write_mbx() 68 ret_val = mbx->ops.check_for_msg(hw, mbx_id); in igb_check_for_msg() 86 ret_val = mbx->ops.check_for_ack(hw, mbx_id); in igb_check_for_ack() 104 ret_val = mbx->ops.check_for_rst(hw, mbx_id); in igb_check_for_rst() 116 s32 igb_unlock_mbx(struct e1000_hw *hw, u16 mbx_id) in igb_unlock_mbx() argument 122 ret_val = mbx->ops.unlock(hw, mbx_id); in igb_unlock_mbx() 196 u16 mbx_id) in igb_read_posted_mbx() argument 204 ret_val = igb_poll_for_msg(hw, mbx_id); in igb_read_posted_mbx() 223 u16 mbx_id) in igb_write_posted_mbx() argument 233 ret_val = mbx->ops.write(hw, msg, size, mbx_id); in igb_write_posted_mbx() [all …]
|
A D | e1000_mbx.h | 50 s32 igb_read_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id, 52 s32 igb_write_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id); 53 s32 igb_check_for_msg(struct e1000_hw *hw, u16 mbx_id); 54 s32 igb_check_for_ack(struct e1000_hw *hw, u16 mbx_id); 55 s32 igb_check_for_rst(struct e1000_hw *hw, u16 mbx_id); 56 s32 igb_unlock_mbx(struct e1000_hw *hw, u16 mbx_id);
|
A D | e1000_hw.h | 476 s32 (*read)(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id, 478 s32 (*write)(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id); 479 s32 (*read_posted)(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id); 481 u16 mbx_id); 482 s32 (*check_for_msg)(struct e1000_hw *hw, u16 mbx_id); 483 s32 (*check_for_ack)(struct e1000_hw *hw, u16 mbx_id); 484 s32 (*check_for_rst)(struct e1000_hw *hw, u16 mbx_id); 485 s32 (*unlock)(struct e1000_hw *hw, u16 mbx_id);
|
/linux/drivers/net/ethernet/intel/ixgbe/ |
A D | ixgbe_mbx.c | 29 return mbx->ops->read(hw, msg, size, mbx_id); in ixgbe_read_mbx() 51 return mbx->ops->write(hw, msg, size, mbx_id); in ixgbe_write_mbx() 68 return mbx->ops->check_for_msg(hw, mbx_id); in ixgbe_check_for_msg() 85 return mbx->ops->check_for_ack(hw, mbx_id); in ixgbe_check_for_ack() 102 return mbx->ops->check_for_rst(hw, mbx_id); in ixgbe_check_for_rst() 120 while (mbx->ops->check_for_msg(hw, mbx_id)) { in ixgbe_poll_for_msg() 145 while (mbx->ops->check_for_ack(hw, mbx_id)) { in ixgbe_poll_for_ack() 166 u16 mbx_id) in ixgbe_read_posted_mbx() argument 174 ret_val = ixgbe_poll_for_msg(hw, mbx_id); in ixgbe_read_posted_mbx() 193 u16 mbx_id) in ixgbe_write_posted_mbx() argument [all …]
|
Completed in 9 milliseconds