Searched refs:mbx_id (Results 1 – 2 of 2) sorted by relevance
| /freebsd-11-stable/sys/dev/e1000/ |
| HD | e1000_mbx.c | 42 u16 E1000_UNUSEDARG mbx_id) in e1000_null_mbx_check_for_flag() argument 56 u16 E1000_UNUSEDARG mbx_id) in e1000_null_mbx_transact() argument 72 s32 e1000_read_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) in e1000_read_mbx() argument 84 ret_val = mbx->ops.read(hw, msg, size, mbx_id); in e1000_read_mbx() 98 s32 e1000_write_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) in e1000_write_mbx() argument 109 ret_val = mbx->ops.write(hw, msg, size, mbx_id); in e1000_write_mbx() 121 s32 e1000_check_for_msg(struct e1000_hw *hw, u16 mbx_id) in e1000_check_for_msg() argument 129 ret_val = mbx->ops.check_for_msg(hw, mbx_id); in e1000_check_for_msg() 141 s32 e1000_check_for_ack(struct e1000_hw *hw, u16 mbx_id) in e1000_check_for_ack() argument 149 ret_val = mbx->ops.check_for_ack(hw, mbx_id); in e1000_check_for_ack() [all …]
|
| /freebsd-11-stable/sys/dev/ixgbe/ |
| HD | ixgbe_mbx.c | 45 static s32 ixgbe_poll_for_msg(struct ixgbe_hw *hw, u16 mbx_id) in ixgbe_poll_for_msg() argument 55 while (countdown && mbx->ops.check_for_msg(hw, mbx_id)) { in ixgbe_poll_for_msg() 64 "Polling for VF%d mailbox message timedout", mbx_id); in ixgbe_poll_for_msg() 77 static s32 ixgbe_poll_for_ack(struct ixgbe_hw *hw, u16 mbx_id) in ixgbe_poll_for_ack() argument 87 while (countdown && mbx->ops.check_for_ack(hw, mbx_id)) { in ixgbe_poll_for_ack() 96 "Polling for VF%d mailbox ack timedout", mbx_id); in ixgbe_poll_for_ack() 113 u16 mbx_id) in ixgbe_read_posted_mbx() argument 123 ret_val = ixgbe_poll_for_msg(hw, mbx_id); in ixgbe_read_posted_mbx() 127 ret_val = mbx->ops.read(hw, msg, size, mbx_id); in ixgbe_read_posted_mbx() 143 u16 mbx_id) in ixgbe_write_posted_mbx() argument [all …]
|