Home
last modified time | relevance | path

Searched refs:s32 (Results 1 – 25 of 30) sorted by relevance

12

/third_party/dev/ethernet/e1000/
A De1000_phy.h50 s32 e1000_check_polarity_m88(struct e1000_hw *hw);
51 s32 e1000_check_polarity_igp(struct e1000_hw *hw);
52 s32 e1000_check_polarity_ife(struct e1000_hw *hw);
54 s32 e1000_phy_setup_autoneg(struct e1000_hw *hw);
55 s32 e1000_copper_link_autoneg(struct e1000_hw *hw);
62 s32 e1000_get_cable_length_m88(struct e1000_hw *hw);
66 s32 e1000_get_phy_id(struct e1000_hw *hw);
67 s32 e1000_get_phy_info_igp(struct e1000_hw *hw);
68 s32 e1000_get_phy_info_m88(struct e1000_hw *hw);
69 s32 e1000_get_phy_info_ife(struct e1000_hw *hw);
[all …]
A De1000_api.h56 s32 e1000_set_mac_type(struct e1000_hw *hw);
67 s32 e1000_reset_hw(struct e1000_hw *hw);
68 s32 e1000_init_hw(struct e1000_hw *hw);
69 s32 e1000_setup_link(struct e1000_hw *hw);
77 s32 e1000_setup_led(struct e1000_hw *hw);
78 s32 e1000_cleanup_led(struct e1000_hw *hw);
80 s32 e1000_blink_led(struct e1000_hw *hw);
81 s32 e1000_led_on(struct e1000_hw *hw);
82 s32 e1000_led_off(struct e1000_hw *hw);
83 s32 e1000_id_led_init(struct e1000_hw *hw);
[all …]
A De1000_mac.h42 s32 e1000_null_ops_generic(struct e1000_hw *hw);
49 s32 e1000_blink_led_generic(struct e1000_hw *hw);
53 s32 e1000_cleanup_led_generic(struct e1000_hw *hw);
58 s32 e1000_force_mac_fc_generic(struct e1000_hw *hw);
68 s32 e1000_id_led_init_generic(struct e1000_hw *hw);
69 s32 e1000_led_on_generic(struct e1000_hw *hw);
70 s32 e1000_led_off_generic(struct e1000_hw *hw);
73 s32 e1000_set_default_fc_generic(struct e1000_hw *hw);
76 s32 e1000_setup_led_generic(struct e1000_hw *hw);
77 s32 e1000_setup_link_generic(struct e1000_hw *hw);
[all …]
A De1000_nvm.h48 s32 e1000_null_led_default(struct e1000_hw *hw, u16 *data);
50 s32 e1000_acquire_nvm_generic(struct e1000_hw *hw);
52 s32 e1000_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg);
53 s32 e1000_read_mac_addr_generic(struct e1000_hw *hw);
57 s32 e1000_read_pba_raw(struct e1000_hw *hw, u16 *eeprom_buf,
60 s32 e1000_write_pba_raw(struct e1000_hw *hw, u16 *eeprom_buf,
62 s32 e1000_get_pba_block_size(struct e1000_hw *hw, u16 *eeprom_buf,
65 s32 e1000_read_nvm_microwire(struct e1000_hw *hw, u16 offset,
70 s32 e1000_validate_nvm_checksum_generic(struct e1000_hw *hw);
71 s32 e1000_write_nvm_microwire(struct e1000_hw *hw, u16 offset,
[all …]
A De1000_mbx.c76 s32 ret_val = -E1000_ERR_MBX; in e1000_read_mbx()
102 s32 ret_val = E1000_SUCCESS; in e1000_write_mbx()
125 s32 ret_val = -E1000_ERR_MBX; in e1000_check_for_msg()
145 s32 ret_val = -E1000_ERR_MBX; in e1000_check_for_ack()
165 s32 ret_val = -E1000_ERR_MBX; in e1000_check_for_rst()
250 s32 ret_val = -E1000_ERR_MBX; in e1000_read_posted_mbx()
279 s32 ret_val = -E1000_ERR_MBX; in e1000_write_posted_mbx()
461 s32 ret_val; in e1000_write_mbx_vf()
502 s32 ret_val = E1000_SUCCESS; in e1000_read_mbx_vf()
683 s32 ret_val; in e1000_write_mbx_pf()
[all …]
A De1000_mbx.h96 s32 e1000_read_mbx(struct e1000_hw *, u32 *, u16, u16);
97 s32 e1000_write_mbx(struct e1000_hw *, u32 *, u16, u16);
98 s32 e1000_read_posted_mbx(struct e1000_hw *, u32 *, u16, u16);
99 s32 e1000_write_posted_mbx(struct e1000_hw *, u32 *, u16, u16);
100 s32 e1000_check_for_msg(struct e1000_hw *, u16);
101 s32 e1000_check_for_ack(struct e1000_hw *, u16);
102 s32 e1000_check_for_rst(struct e1000_hw *, u16);
104 s32 e1000_init_mbx_params_vf(struct e1000_hw *);
105 s32 e1000_init_mbx_params_pf(struct e1000_hw *);
A De1000_vf.h202 s32 (*init_params)(struct e1000_hw *);
203 s32 (*check_for_link)(struct e1000_hw *);
205 s32 (*get_bus_info)(struct e1000_hw *);
208 s32 (*reset_hw)(struct e1000_hw *);
209 s32 (*init_hw)(struct e1000_hw *);
210 s32 (*setup_link)(struct e1000_hw *);
213 s32 (*read_mac_addr)(struct e1000_hw *);
230 s32 (*init_params)(struct e1000_hw *hw);
235 s32 (*check_for_msg)(struct e1000_hw *, u16);
236 s32 (*check_for_ack)(struct e1000_hw *, u16);
[all …]
A De1000_api.c47 s32 ret_val = E1000_SUCCESS; in e1000_init_mac_params()
73 s32 ret_val = E1000_SUCCESS; in e1000_init_nvm_params()
99 s32 ret_val = E1000_SUCCESS; in e1000_init_phy_params()
125 s32 ret_val = E1000_SUCCESS; in e1000_init_mbx_params()
154 s32 ret_val = E1000_SUCCESS; in e1000_set_mac_type()
408 s32 ret_val; in e1000_setup_init_funcs()
652 s32 e1000_reset_hw(struct e1000_hw *hw) in e1000_reset_hw()
667 s32 e1000_init_hw(struct e1000_hw *hw) in e1000_init_hw()
717 s32 e1000_setup_led(struct e1000_hw *hw) in e1000_setup_led()
778 s32 e1000_led_on(struct e1000_hw *hw) in e1000_led_on()
[all …]
A De1000_vf.c43 static s32 e1000_acquire_vf(struct e1000_hw *hw);
44 static s32 e1000_setup_link_vf(struct e1000_hw *hw);
50 static s32 e1000_init_hw_vf(struct e1000_hw *hw);
51 static s32 e1000_reset_hw_vf(struct e1000_hw *hw);
225 s32 status; in e1000_get_link_up_info_vf()
259 static s32 e1000_reset_hw_vf(struct e1000_hw *hw) in e1000_reset_hw_vf()
263 s32 ret_val = -E1000_ERR_MAC_INIT; in e1000_reset_hw_vf()
308 static s32 e1000_init_hw_vf(struct e1000_hw *hw) in e1000_init_hw_vf()
330 s32 ret_val; in e1000_rar_set_vf()
483 s32 ret_val; in e1000_promisc_set_vf()
[all …]
A De1000_hw.h711 s32 (*led_on)(struct e1000_hw *);
712 s32 (*led_off)(struct e1000_hw *);
714 s32 (*reset_hw)(struct e1000_hw *);
715 s32 (*init_hw)(struct e1000_hw *);
747 s32 (*acquire)(struct e1000_hw *);
751 s32 (*commit)(struct e1000_hw *);
755 s32 (*get_info)(struct e1000_hw *);
761 s32 (*reset)(struct e1000_hw *);
776 s32 (*acquire)(struct e1000_hw *);
780 s32 (*update)(struct e1000_hw *);
[all …]
A De1000_i210.h40 s32 e1000_update_flash_i210(struct e1000_hw *hw);
41 s32 e1000_update_nvm_checksum_i210(struct e1000_hw *hw);
42 s32 e1000_validate_nvm_checksum_i210(struct e1000_hw *hw);
43 s32 e1000_write_nvm_srwr_i210(struct e1000_hw *hw, u16 offset,
45 s32 e1000_read_nvm_srrd_i210(struct e1000_hw *hw, u16 offset,
47 s32 e1000_read_xmdio_reg(struct e1000_hw *hw, u16 addr, u8 dev_addr,
49 s32 e1000_write_xmdio_reg(struct e1000_hw *hw, u16 addr, u8 dev_addr,
51 s32 e1000_init_hw_i210(struct e1000_hw *hw);
A De1000_i210.c57 s32 ret_val; in e1000_acquire_nvm_i210()
93 s32 status = E1000_SUCCESS; in e1000_read_nvm_srrd_i210()
138 s32 status = E1000_SUCCESS; in e1000_write_nvm_srwr_i210()
355 s32 status = E1000_SUCCESS; in e1000_validate_nvm_checksum_i210()
394 s32 ret_val; in e1000_update_nvm_checksum_i210()
473 s32 ret_val; in e1000_update_flash_i210()
529 s32 ret_val; in e1000_init_nvm_params_i210()
578 s32 ret_val; in e1000_valid_led_default_i210()
614 s32 ret_val; in __e1000_access_xmdio_reg()
683 s32 ret_val; in e1000_pll_workaround_i210()
[all …]
A De1000_82542.c46 static s32 e1000_reset_hw_82542(struct e1000_hw *hw);
47 static s32 e1000_init_hw_82542(struct e1000_hw *hw);
49 static s32 e1000_led_on_82542(struct e1000_hw *hw);
50 static s32 e1000_led_off_82542(struct e1000_hw *hw);
62 s32 ret_val = E1000_SUCCESS; in e1000_init_phy_params_82542()
196 s32 ret_val = E1000_SUCCESS; in e1000_reset_hw_82542()
244 static s32 e1000_init_hw_82542(struct e1000_hw *hw) in e1000_init_hw_82542()
248 s32 ret_val = E1000_SUCCESS; in e1000_init_hw_82542()
321 s32 ret_val; in e1000_setup_link_82542()
374 static s32 e1000_led_on_82542(struct e1000_hw *hw) in e1000_led_on_82542()
[all …]
A De1000_82540.c54 static s32 e1000_init_hw_82540(struct e1000_hw *hw);
70 s32 ret_val; in e1000_init_phy_params_82540()
162 s32 ret_val = E1000_SUCCESS; in e1000_init_mac_params_82540()
274 s32 ret_val = E1000_SUCCESS; in e1000_reset_hw_82540()
333 s32 ret_val; in e1000_init_hw_82540()
415 s32 ret_val; in e1000_setup_copper_link_82540()
464 s32 ret_val = E1000_SUCCESS; in e1000_setup_fiber_serdes_link_82540()
502 s32 ret_val; in e1000_adjust_serdes_amplitude_82540()
532 s32 ret_val; in e1000_set_vco_speed_82540()
591 s32 ret_val = E1000_SUCCESS; in e1000_set_phy_mode_82540()
[all …]
A De1000_80003es2lan.c91 s32 ret_val; in e1000_init_phy_params_80003es2lan()
363 s32 ret_val; in e1000_acquire_nvm_80003es2lan()
404 s32 ret_val; in e1000_read_phy_reg_gg82563_80003es2lan()
475 s32 ret_val; in e1000_write_phy_reg_gg82563_80003es2lan()
592 s32 ret_val; in e1000_phy_force_speed_duplex_80003es2lan()
688 s32 ret_val; in e1000_get_cable_length_80003es2lan()
724 s32 ret_val; in e1000_get_link_up_info_80003es2lan()
750 s32 ret_val; in e1000_reset_hw_80003es2lan()
816 s32 ret_val; in e1000_init_hw_80003es2lan()
972 s32 ret_val; in e1000_copper_link_setup_gg82563_80003es2lan()
[all …]
A De1000_82543.c88 s32 ret_val = E1000_SUCCESS; in e1000_init_phy_params_82543()
491 s32 ret_val = E1000_SUCCESS; in e1000_read_phy_reg_82543()
547 s32 ret_val = E1000_SUCCESS; in e1000_write_phy_reg_82543()
744 s32 ret_val; in e1000_phy_force_speed_duplex_82543()
770 s32 ret_val = E1000_SUCCESS; in e1000_polarity_reversal_workaround_82543()
865 s32 ret_val; in e1000_phy_hw_reset_82543()
962 s32 ret_val; in e1000_init_hw_82543()
1023 s32 ret_val; in e1000_setup_link_82543()
1064 s32 ret_val; in e1000_setup_copper_link_82543()
1152 s32 ret_val; in e1000_setup_fiber_link_82543()
[all …]
A De1000_82575.c1092 s32 ret_val; in e1000_get_link_up_info_82575()
1115 s32 ret_val; in e1000_check_for_link_82575()
1155 s32 ret_val; in e1000_check_for_link_media_swap()
1348 s32 ret_val; in e1000_reset_hw_82575()
1412 s32 ret_val; in e1000_init_hw_82575()
1469 s32 ret_val; in e1000_setup_copper_link_82575()
1846 s32 ret_val; in e1000_valid_led_default_82575()
1929 s32 ret_val; in e1000_read_mac_addr_82575()
3409 s32 i; in e1000_clock_in_i2c_byte()
3433 s32 i; in e1000_clock_out_i2c_byte()
[all …]
A De1000_phy.c262 s32 ret_val; in e1000_phy_reset_dsp_generic()
651 s32 ret_val; in e1000_read_phy_reg_m88()
681 s32 ret_val; in e1000_write_phy_reg_m88()
1011 s32 ret_val; in e1000_set_master_slave_mode()
1051 s32 ret_val; in e1000_copper_link_setup_82577()
1116 s32 ret_val; in e1000_copper_link_setup_m88()
1268 s32 ret_val; in e1000_copper_link_setup_m88_gen2()
1365 s32 ret_val; in e1000_copper_link_setup_igp()
1475 s32 ret_val; in e1000_phy_setup_autoneg()
1628 s32 ret_val; in e1000_copper_link_autoneg()
[all …]
A De1000_manage.h41 s32 e1000_mng_enable_host_if_generic(struct e1000_hw *hw);
42 s32 e1000_mng_host_if_write_generic(struct e1000_hw *hw, u8 *buffer,
44 s32 e1000_mng_write_cmd_header_generic(struct e1000_hw *hw,
46 s32 e1000_mng_write_dhcp_info_generic(struct e1000_hw *hw,
50 s32 e1000_host_interface_command(struct e1000_hw *hw, u8 *buffer, u32 length);
51 s32 e1000_load_firmware(struct e1000_hw *hw, u8 *buffer, u32 length);
A De1000_82571.c95 s32 ret_val; in e1000_init_phy_params_82571()
464 s32 ret_val; in e1000_get_phy_id_82571()
512 static s32
516 s32 i = 0; in e1000_get_hw_semaphore_82574()
630 s32 ret_val; in e1000_acquire_nvm_82571()
681 s32 ret_val; in e1000_write_nvm_82571()
714 s32 ret_val; in e1000_update_nvm_checksum_82571()
874 s32 ret_val; in e1000_set_d0_lplu_state_82571()
953 s32 ret_val; in e1000_reset_hw_82571()
1074 s32 ret_val; in e1000_init_hw_82571()
[all …]
A De1000_82541.c89 s32 ret_val; in e1000_init_phy_params_82541()
132 s32 ret_val = E1000_SUCCESS; in e1000_init_nvm_params_82541()
380 s32 ret_val; in e1000_init_hw_82541()
449 s32 ret_val; in e1000_get_link_up_info_82541()
502 s32 ret_val; in e1000_phy_hw_reset_82541()
538 s32 ret_val; in e1000_setup_copper_link_82541()
588 s32 ret_val; in e1000_check_for_link_82541()
674 s32 ret_val; in e1000_config_dsp_after_link_change_82541()
949 s32 ret_val; in e1000_set_d3_lplu_state_82541()
1040 s32 ret_val; in e1000_setup_led_82541()
[all …]
A De1000_mac.c237 s32 ret_val; in e1000_get_bus_info_pcie_generic()
404 s32 ret_val; in e1000_check_alt_mac_addr_generic()
713 s32 ret_val; in e1000_check_for_copper_link_generic()
781 s32 ret_val; in e1000_check_for_fiber_link_generic()
848 s32 ret_val; in e1000_check_for_serdes_link_generic()
950 s32 ret_val; in e1000_set_default_fc_generic()
1005 s32 ret_val; in e1000_setup_link_generic()
1132 s32 ret_val; in e1000_poll_fiber_serdes_link_generic()
1718 s32 i = 0; in e1000_get_auto_rd_done_generic()
2197 s32 i = 0; in e1000_get_hw_semaphore()
[all …]
A De1000_ich8lan.c320 s32 ret_val; in e1000_init_phy_workarounds_pchlan()
454 s32 ret_val; in e1000_init_phy_params_pchlan()
545 s32 ret_val; in e1000_init_phy_params_ich8lan()
844 s32 ret_val; in __e1000_access_emi_reg_locked()
909 s32 ret_val; in e1000_set_eee_pchlan()
1227 s32 timer; in e1000_set_obff_timer_pch_lpt()
2155 s32 ret_val; in e1000_update_mc_addr_list_pch2lan()
2225 s32 ret_val; in e1000_write_smbus_addr()
2471 s32 ret_val; in e1000_configure_k1_ich8lan()
2591 s32 ret_val; in e1000_set_mdio_slow_mode_hv()
[all …]
A De1000_nvm.c445 s32 ret_val; in e1000_read_nvm_spi()
506 s32 ret_val; in e1000_read_nvm_microwire()
560 s32 ret_val = E1000_SUCCESS; in e1000_read_nvm_eerd()
688 s32 ret_val; in e1000_write_nvm_microwire()
771 s32 ret_val; in e1000_read_pba_string_generic()
885 s32 ret_val; in e1000_read_pba_length_generic()
951 s32 ret_val; in e1000_read_pba_raw()
1019 s32 ret_val; in e1000_write_pba_raw()
1078 s32 ret_val; in e1000_get_pba_block_size()
1161 s32 ret_val; in e1000_validate_nvm_checksum_generic()
[all …]
A De1000_82575.h483 s32 e1000_init_nvm_params_82575(struct e1000_hw *hw);
484 s32 e1000_init_hw_82575(struct e1000_hw *hw);
499 s32 e1000_read_emi_reg(struct e1000_hw *hw, u16 addr, u16 *data);
500 s32 e1000_set_eee_i350(struct e1000_hw *hw, bool adv1G, bool adv100M);
501 s32 e1000_set_eee_i354(struct e1000_hw *hw, bool adv1G, bool adv100M);
502 s32 e1000_get_eee_status_i354(struct e1000_hw *, bool *);
503 s32 e1000_initialize_M88E1512_phy(struct e1000_hw *hw);
504 s32 e1000_initialize_M88E1543_phy(struct e1000_hw *hw);
518 s32 e1000_set_i2c_bb(struct e1000_hw *hw);
519 s32 e1000_read_i2c_byte_generic(struct e1000_hw *hw, u8 byte_offset,
[all …]

Completed in 95 milliseconds

12