Lines Matching refs:mac

48 	if (hw->mac.ops.init_params) {  in e1000_init_mac_params()
49 ret_val = hw->mac.ops.init_params(hw); in e1000_init_mac_params()
152 struct e1000_mac_info *mac = &hw->mac; in e1000_set_mac_type() local
159 mac->type = e1000_82542; in e1000_set_mac_type()
163 mac->type = e1000_82543; in e1000_set_mac_type()
169 mac->type = e1000_82544; in e1000_set_mac_type()
176 mac->type = e1000_82540; in e1000_set_mac_type()
180 mac->type = e1000_82545; in e1000_set_mac_type()
185 mac->type = e1000_82545_rev_3; in e1000_set_mac_type()
190 mac->type = e1000_82546; in e1000_set_mac_type()
198 mac->type = e1000_82546_rev_3; in e1000_set_mac_type()
203 mac->type = e1000_82541; in e1000_set_mac_type()
209 mac->type = e1000_82541_rev_2; in e1000_set_mac_type()
213 mac->type = e1000_82547; in e1000_set_mac_type()
216 mac->type = e1000_82547_rev_2; in e1000_set_mac_type()
227 mac->type = e1000_82571; in e1000_set_mac_type()
233 mac->type = e1000_82572; in e1000_set_mac_type()
238 mac->type = e1000_82573; in e1000_set_mac_type()
242 mac->type = e1000_82574; in e1000_set_mac_type()
245 mac->type = e1000_82583; in e1000_set_mac_type()
251 mac->type = e1000_80003es2lan; in e1000_set_mac_type()
261 mac->type = e1000_ich8lan; in e1000_set_mac_type()
275 mac->type = e1000_ich9lan; in e1000_set_mac_type()
280 mac->type = e1000_ich10lan; in e1000_set_mac_type()
286 mac->type = e1000_pchlan; in e1000_set_mac_type()
290 mac->type = e1000_pch2lan; in e1000_set_mac_type()
300 mac->type = e1000_pch_lpt; in e1000_set_mac_type()
313 mac->type = e1000_pch_spt; in e1000_set_mac_type()
327 mac->type = e1000_pch_cnp; in e1000_set_mac_type()
335 mac->type = e1000_pch_tgp; in e1000_set_mac_type()
347 mac->type = e1000_pch_adp; in e1000_set_mac_type()
355 mac->type = e1000_pch_mtp; in e1000_set_mac_type()
365 mac->type = e1000_pch_ptp; in e1000_set_mac_type()
370 mac->type = e1000_82575; in e1000_set_mac_type()
380 mac->type = e1000_82576; in e1000_set_mac_type()
392 mac->type = e1000_82580; in e1000_set_mac_type()
399 mac->type = e1000_i350; in e1000_set_mac_type()
410 mac->type = e1000_i210; in e1000_set_mac_type()
413 mac->type = e1000_i211; in e1000_set_mac_type()
417 mac->type = e1000_vfadapt; in e1000_set_mac_type()
421 mac->type = e1000_vfadapt_i350; in e1000_set_mac_type()
427 mac->type = e1000_i354; in e1000_set_mac_type()
481 switch (hw->mac.type) { in e1000_setup_init_funcs()
585 if (hw->mac.ops.get_bus_info) in e1000_get_bus_info()
586 return hw->mac.ops.get_bus_info(hw); in e1000_get_bus_info()
600 if (hw->mac.ops.clear_vfta) in e1000_clear_vfta()
601 hw->mac.ops.clear_vfta(hw); in e1000_clear_vfta()
615 if (hw->mac.ops.write_vfta) in e1000_write_vfta()
616 hw->mac.ops.write_vfta(hw, offset, value); in e1000_write_vfta()
631 if (hw->mac.ops.update_mc_addr_list) in e1000_update_mc_addr_list()
632 hw->mac.ops.update_mc_addr_list(hw, mc_addr_list, in e1000_update_mc_addr_list()
659 if (hw->mac.ops.check_for_link) in e1000_check_for_link()
660 return hw->mac.ops.check_for_link(hw); in e1000_check_for_link()
674 if (hw->mac.ops.check_mng_mode) in e1000_check_mng_mode()
675 return hw->mac.ops.check_mng_mode(hw); in e1000_check_mng_mode()
702 if (hw->mac.ops.reset_hw) in e1000_reset_hw()
703 return hw->mac.ops.reset_hw(hw); in e1000_reset_hw()
717 if (hw->mac.ops.init_hw) in e1000_init_hw()
718 return hw->mac.ops.init_hw(hw); in e1000_init_hw()
733 if (hw->mac.ops.setup_link) in e1000_setup_link()
734 return hw->mac.ops.setup_link(hw); in e1000_setup_link()
751 if (hw->mac.ops.get_link_up_info) in e1000_get_speed_and_duplex()
752 return hw->mac.ops.get_link_up_info(hw, speed, duplex); in e1000_get_speed_and_duplex()
767 if (hw->mac.ops.setup_led) in e1000_setup_led()
768 return hw->mac.ops.setup_led(hw); in e1000_setup_led()
782 if (hw->mac.ops.cleanup_led) in e1000_cleanup_led()
783 return hw->mac.ops.cleanup_led(hw); in e1000_cleanup_led()
798 if (hw->mac.ops.blink_led) in e1000_blink_led()
799 return hw->mac.ops.blink_led(hw); in e1000_blink_led()
813 if (hw->mac.ops.id_led_init) in e1000_id_led_init()
814 return hw->mac.ops.id_led_init(hw); in e1000_id_led_init()
828 if (hw->mac.ops.led_on) in e1000_led_on()
829 return hw->mac.ops.led_on(hw); in e1000_led_on()
843 if (hw->mac.ops.led_off) in e1000_led_off()
844 return hw->mac.ops.led_off(hw); in e1000_led_off()
895 if (hw->mac.ops.config_collision_dist) in e1000_config_collision_dist()
896 hw->mac.ops.config_collision_dist(hw); in e1000_config_collision_dist()
909 if (hw->mac.ops.rar_set) in e1000_rar_set()
910 return hw->mac.ops.rar_set(hw, addr, index); in e1000_rar_set()
923 if (hw->mac.ops.validate_mdi_setting) in e1000_validate_mdi_setting()
924 return hw->mac.ops.validate_mdi_setting(hw); in e1000_validate_mdi_setting()
1012 if (hw->mac.ops.set_obff_timer) in e1000_set_obff_timer()
1013 return hw->mac.ops.set_obff_timer(hw, itr); in e1000_set_obff_timer()
1253 if (hw->mac.ops.read_mac_addr) in e1000_read_mac_addr()
1254 return hw->mac.ops.read_mac_addr(hw); in e1000_read_mac_addr()
1436 if (hw->mac.ops.power_up_serdes) in e1000_power_up_fiber_serdes_link()
1437 hw->mac.ops.power_up_serdes(hw); in e1000_power_up_fiber_serdes_link()
1448 if (hw->mac.ops.shutdown_serdes) in e1000_shutdown_fiber_serdes_link()
1449 hw->mac.ops.shutdown_serdes(hw); in e1000_shutdown_fiber_serdes_link()