Lines Matching refs:offset

40 s32  e1000_null_read_reg(struct e1000_hw *hw, u32 offset, u16 *data);
43 s32 e1000_null_write_reg(struct e1000_hw *hw, u32 offset, u16 data);
74 s32 e1000_read_kmrn_reg_generic(struct e1000_hw *hw, u32 offset, u16 *data);
75 s32 e1000_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data);
77 s32 e1000_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data);
78 s32 e1000_read_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 *data);
79 s32 e1000_read_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 *data);
82 s32 e1000_write_kmrn_reg_generic(struct e1000_hw *hw, u32 offset, u16 data);
83 s32 e1000_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data);
84 s32 e1000_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data);
85 s32 e1000_write_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 data);
86 s32 e1000_write_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 data);
92 s32 e1000_write_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 data);
93 s32 e1000_read_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 *data);
96 s32 e1000_read_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 *data);
97 s32 e1000_write_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 data);
100 s32 e1000_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data);
101 s32 e1000_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data);
102 s32 e1000_read_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 *data);
103 s32 e1000_write_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 data);
104 s32 e1000_read_sfp_data_byte(struct e1000_hw *hw, u16 offset, u8 *data);
105 s32 e1000_write_sfp_data_byte(struct e1000_hw *hw, u16 offset, u8 data);
106 s32 e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data);
107 s32 e1000_read_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 *data);
108 s32 e1000_read_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 *data);
109 s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data);
110 s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 data);
111 s32 e1000_write_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 data);
118 s32 e1000_write_phy_reg_gs40g(struct e1000_hw *hw, u32 offset, u16 data);
119 s32 e1000_read_phy_reg_gs40g(struct e1000_hw *hw, u32 offset, u16 *data);
170 #define BM_PHY_REG_PAGE(offset) \
171 ((u16)(((offset) >> PHY_PAGE_SHIFT) & 0xFFFF))
172 #define BM_PHY_REG_NUM(offset) \
173 ((u16)(((offset) & MAX_PHY_REG_ADDRESS) |\
174 (((offset) >> (PHY_UPPER_SHIFT - PHY_PAGE_SHIFT)) &\