Home
last modified time | relevance | path

Searched refs:san_mac_addr (Results 1 – 7 of 7) sorted by relevance

/f-stack/dpdk/drivers/net/txgbe/base/
H A Dtxgbe_hw.h43 s32 txgbe_get_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr);
44 s32 txgbe_set_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr);
H A Dtxgbe_hw.c1482 s32 txgbe_get_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr) in txgbe_get_san_mac_addr() argument
1509 san_mac_addr[i * 2] = (u8)(san_mac_data); in txgbe_get_san_mac_addr()
1510 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8); in txgbe_get_san_mac_addr()
1521 san_mac_addr[i] = 0xFF; in txgbe_get_san_mac_addr()
1532 s32 txgbe_set_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr) in txgbe_set_san_mac_addr() argument
1550 san_mac_data = (u16)((u16)(san_mac_addr[i * 2 + 1]) << 8); in txgbe_set_san_mac_addr()
1551 san_mac_data |= (u16)(san_mac_addr[i * 2]); in txgbe_set_san_mac_addr()
H A Dtxgbe_type.h448 s32 (*get_san_mac_addr)(struct txgbe_hw *hw, u8 *san_mac_addr);
449 s32 (*set_san_mac_addr)(struct txgbe_hw *hw, u8 *san_mac_addr);
/f-stack/dpdk/drivers/net/ixgbe/base/
H A Dixgbe_common.h99 s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr);
100 s32 ixgbe_set_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr);
H A Dixgbe_api.h163 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr);
164 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr);
H A Dixgbe_api.c328 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_get_san_mac_addr() argument
331 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED); in ixgbe_get_san_mac_addr()
341 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_set_san_mac_addr() argument
344 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED); in ixgbe_set_san_mac_addr()
H A Dixgbe_common.c3547 s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_get_san_mac_addr_generic() argument
3577 san_mac_addr[i * 2] = (u8)(san_mac_data); in ixgbe_get_san_mac_addr_generic()
3578 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8); in ixgbe_get_san_mac_addr_generic()
3589 san_mac_addr[i] = 0xFF; in ixgbe_get_san_mac_addr_generic()
3600 s32 ixgbe_set_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_set_san_mac_addr_generic() argument
3620 san_mac_data = (u16)((u16)(san_mac_addr[i * 2 + 1]) << 8); in ixgbe_set_san_mac_addr_generic()
3621 san_mac_data |= (u16)(san_mac_addr[i * 2]); in ixgbe_set_san_mac_addr_generic()