Home
last modified time | relevance | path

Searched refs:mbx_id (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/drivers/net/ethernet/intel/igb/
H A De1000_mbx.c50 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 …]
H A De1000_mbx.h50 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);
H A De1000_hw.h476 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);
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_mbx.c29 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 …]