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

/linux-master/drivers/net/ethernet/intel/igb/
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_mbx.c11 * @mbx_id: id of mailbox to read
16 s32 igb_read_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id, argument
27 ret_val = mbx->ops.read(hw, msg, size, mbx_id, unlock);
37 * @mbx_id: id of mailbox to write
41 s32 igb_write_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) argument
50 ret_val = mbx->ops.write(hw, msg, size, mbx_id);
58 * @mbx_id: id of mailbox to check
62 s32 igb_check_for_msg(struct e1000_hw *hw, u16 mbx_id) argument
68 ret_val = mbx->ops.check_for_msg(hw, mbx_id);
76 * @mbx_id
80 igb_check_for_ack(struct e1000_hw *hw, u16 mbx_id) argument
98 igb_check_for_rst(struct e1000_hw *hw, u16 mbx_id) argument
116 igb_unlock_mbx(struct e1000_hw *hw, u16 mbx_id) argument
134 igb_poll_for_msg(struct e1000_hw *hw, u16 mbx_id) argument
163 igb_poll_for_ack(struct e1000_hw *hw, u16 mbx_id) argument
195 igb_read_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) argument
222 igb_write_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) argument
[all...]
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);
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_mbx.c14 * @mbx_id: id of mailbox to read
18 int ixgbe_read_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id) argument
29 return mbx->ops->read(hw, msg, size, mbx_id);
37 * @mbx_id: id of mailbox to write
41 int ixgbe_write_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id) argument
51 return mbx->ops->write(hw, msg, size, mbx_id);
57 * @mbx_id: id of mailbox to check
61 int ixgbe_check_for_msg(struct ixgbe_hw *hw, u16 mbx_id) argument
68 return mbx->ops->check_for_msg(hw, mbx_id);
74 * @mbx_id
78 ixgbe_check_for_ack(struct ixgbe_hw *hw, u16 mbx_id) argument
95 ixgbe_check_for_rst(struct ixgbe_hw *hw, u16 mbx_id) argument
112 ixgbe_poll_for_msg(struct ixgbe_hw *hw, u16 mbx_id) argument
137 ixgbe_poll_for_ack(struct ixgbe_hw *hw, u16 mbx_id) argument
165 ixgbe_read_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id) argument
192 ixgbe_write_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id) argument
[all...]

Completed in 211 milliseconds