Lines Matching refs:mac

49 	if (hw->mac.ops.init_params) {  in e1000_init_mac_params()
50 ret_val = hw->mac.ops.init_params(hw); in e1000_init_mac_params()
153 struct e1000_mac_info *mac = &hw->mac; in e1000_set_mac_type() local
160 mac->type = e1000_82542; in e1000_set_mac_type()
164 mac->type = e1000_82543; in e1000_set_mac_type()
170 mac->type = e1000_82544; in e1000_set_mac_type()
177 mac->type = e1000_82540; in e1000_set_mac_type()
181 mac->type = e1000_82545; in e1000_set_mac_type()
186 mac->type = e1000_82545_rev_3; in e1000_set_mac_type()
191 mac->type = e1000_82546; in e1000_set_mac_type()
199 mac->type = e1000_82546_rev_3; in e1000_set_mac_type()
204 mac->type = e1000_82541; in e1000_set_mac_type()
210 mac->type = e1000_82541_rev_2; in e1000_set_mac_type()
214 mac->type = e1000_82547; in e1000_set_mac_type()
217 mac->type = e1000_82547_rev_2; in e1000_set_mac_type()
228 mac->type = e1000_82571; in e1000_set_mac_type()
234 mac->type = e1000_82572; in e1000_set_mac_type()
239 mac->type = e1000_82573; in e1000_set_mac_type()
243 mac->type = e1000_82574; in e1000_set_mac_type()
246 mac->type = e1000_82583; in e1000_set_mac_type()
252 mac->type = e1000_80003es2lan; in e1000_set_mac_type()
262 mac->type = e1000_ich8lan; in e1000_set_mac_type()
276 mac->type = e1000_ich9lan; in e1000_set_mac_type()
281 mac->type = e1000_ich10lan; in e1000_set_mac_type()
287 mac->type = e1000_pchlan; in e1000_set_mac_type()
291 mac->type = e1000_pch2lan; in e1000_set_mac_type()
301 mac->type = e1000_pch_lpt; in e1000_set_mac_type()
314 mac->type = e1000_pch_spt; in e1000_set_mac_type()
328 mac->type = e1000_pch_cnp; in e1000_set_mac_type()
336 mac->type = e1000_pch_tgp; in e1000_set_mac_type()
342 mac->type = e1000_pch_adp; in e1000_set_mac_type()
348 mac->type = e1000_pch_mtp; in e1000_set_mac_type()
353 mac->type = e1000_82575; in e1000_set_mac_type()
363 mac->type = e1000_82576; in e1000_set_mac_type()
375 mac->type = e1000_82580; in e1000_set_mac_type()
382 mac->type = e1000_i350; in e1000_set_mac_type()
393 mac->type = e1000_i210; in e1000_set_mac_type()
396 mac->type = e1000_i211; in e1000_set_mac_type()
400 mac->type = e1000_vfadapt; in e1000_set_mac_type()
404 mac->type = e1000_vfadapt_i350; in e1000_set_mac_type()
410 mac->type = e1000_i354; in e1000_set_mac_type()
464 switch (hw->mac.type) { in e1000_setup_init_funcs()
567 if (hw->mac.ops.get_bus_info) in e1000_get_bus_info()
568 return hw->mac.ops.get_bus_info(hw); in e1000_get_bus_info()
582 if (hw->mac.ops.clear_vfta) in e1000_clear_vfta()
583 hw->mac.ops.clear_vfta(hw); in e1000_clear_vfta()
597 if (hw->mac.ops.write_vfta) in e1000_write_vfta()
598 hw->mac.ops.write_vfta(hw, offset, value); in e1000_write_vfta()
613 if (hw->mac.ops.update_mc_addr_list) in e1000_update_mc_addr_list()
614 hw->mac.ops.update_mc_addr_list(hw, mc_addr_list, in e1000_update_mc_addr_list()
641 if (hw->mac.ops.check_for_link) in e1000_check_for_link()
642 return hw->mac.ops.check_for_link(hw); in e1000_check_for_link()
656 if (hw->mac.ops.check_mng_mode) in e1000_check_mng_mode()
657 return hw->mac.ops.check_mng_mode(hw); in e1000_check_mng_mode()
684 if (hw->mac.ops.reset_hw) in e1000_reset_hw()
685 return hw->mac.ops.reset_hw(hw); in e1000_reset_hw()
699 if (hw->mac.ops.init_hw) in e1000_init_hw()
700 return hw->mac.ops.init_hw(hw); in e1000_init_hw()
715 if (hw->mac.ops.setup_link) in e1000_setup_link()
716 return hw->mac.ops.setup_link(hw); in e1000_setup_link()
733 if (hw->mac.ops.get_link_up_info) in e1000_get_speed_and_duplex()
734 return hw->mac.ops.get_link_up_info(hw, speed, duplex); in e1000_get_speed_and_duplex()
749 if (hw->mac.ops.setup_led) in e1000_setup_led()
750 return hw->mac.ops.setup_led(hw); in e1000_setup_led()
764 if (hw->mac.ops.cleanup_led) in e1000_cleanup_led()
765 return hw->mac.ops.cleanup_led(hw); in e1000_cleanup_led()
780 if (hw->mac.ops.blink_led) in e1000_blink_led()
781 return hw->mac.ops.blink_led(hw); in e1000_blink_led()
795 if (hw->mac.ops.id_led_init) in e1000_id_led_init()
796 return hw->mac.ops.id_led_init(hw); in e1000_id_led_init()
810 if (hw->mac.ops.led_on) in e1000_led_on()
811 return hw->mac.ops.led_on(hw); in e1000_led_on()
825 if (hw->mac.ops.led_off) in e1000_led_off()
826 return hw->mac.ops.led_off(hw); in e1000_led_off()
877 if (hw->mac.ops.config_collision_dist) in e1000_config_collision_dist()
878 hw->mac.ops.config_collision_dist(hw); in e1000_config_collision_dist()
891 if (hw->mac.ops.rar_set) in e1000_rar_set()
892 return hw->mac.ops.rar_set(hw, addr, index); in e1000_rar_set()
905 if (hw->mac.ops.validate_mdi_setting) in e1000_validate_mdi_setting()
906 return hw->mac.ops.validate_mdi_setting(hw); in e1000_validate_mdi_setting()
994 if (hw->mac.ops.set_obff_timer) in e1000_set_obff_timer()
995 return hw->mac.ops.set_obff_timer(hw, itr); in e1000_set_obff_timer()
1235 if (hw->mac.ops.read_mac_addr) in e1000_read_mac_addr()
1236 return hw->mac.ops.read_mac_addr(hw); in e1000_read_mac_addr()
1418 if (hw->mac.ops.power_up_serdes) in e1000_power_up_fiber_serdes_link()
1419 hw->mac.ops.power_up_serdes(hw); in e1000_power_up_fiber_serdes_link()
1430 if (hw->mac.ops.shutdown_serdes) in e1000_shutdown_fiber_serdes_link()
1431 hw->mac.ops.shutdown_serdes(hw); in e1000_shutdown_fiber_serdes_link()