cba5876e823a61ee3d684e8f80ed88f5dbd66e3f
[dpdk.git] / drivers / net / txgbe / base / txgbe_hw.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2020
3  */
4
5 #ifndef _TXGBE_HW_H_
6 #define _TXGBE_HW_H_
7
8 #include "txgbe_type.h"
9
10 s32 txgbe_init_hw(struct txgbe_hw *hw);
11 s32 txgbe_start_hw(struct txgbe_hw *hw);
12 s32 txgbe_stop_hw(struct txgbe_hw *hw);
13 s32 txgbe_start_hw_gen2(struct txgbe_hw *hw);
14 s32 txgbe_clear_hw_cntrs(struct txgbe_hw *hw);
15 s32 txgbe_get_mac_addr(struct txgbe_hw *hw, u8 *mac_addr);
16
17 void txgbe_set_lan_id_multi_port(struct txgbe_hw *hw);
18
19 s32 txgbe_set_rar(struct txgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
20                           u32 enable_addr);
21 s32 txgbe_clear_rar(struct txgbe_hw *hw, u32 index);
22 s32 txgbe_init_rx_addrs(struct txgbe_hw *hw);
23 s32 txgbe_update_mc_addr_list(struct txgbe_hw *hw, u8 *mc_addr_list,
24                                       u32 mc_addr_count,
25                                       txgbe_mc_addr_itr func, bool clear);
26 s32 txgbe_disable_sec_rx_path(struct txgbe_hw *hw);
27 s32 txgbe_enable_sec_rx_path(struct txgbe_hw *hw);
28 s32 txgbe_disable_sec_tx_path(struct txgbe_hw *hw);
29 s32 txgbe_enable_sec_tx_path(struct txgbe_hw *hw);
30
31 s32 txgbe_validate_mac_addr(u8 *mac_addr);
32 s32 txgbe_acquire_swfw_sync(struct txgbe_hw *hw, u32 mask);
33 void txgbe_release_swfw_sync(struct txgbe_hw *hw, u32 mask);
34
35 s32 txgbe_get_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr);
36 s32 txgbe_set_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr);
37
38 s32 txgbe_init_uta_tables(struct txgbe_hw *hw);
39 s32 txgbe_clear_vfta(struct txgbe_hw *hw);
40 s32 txgbe_check_mac_link(struct txgbe_hw *hw,
41                                u32 *speed,
42                                bool *link_up, bool link_up_wait_to_complete);
43
44 s32 txgbe_get_wwn_prefix(struct txgbe_hw *hw, u16 *wwnn_prefix,
45                                  u16 *wwpn_prefix);
46
47 s32 txgbe_get_device_caps(struct txgbe_hw *hw, u16 *device_caps);
48 void txgbe_clear_tx_pending(struct txgbe_hw *hw);
49
50 s32 txgbe_reset_pipeline_raptor(struct txgbe_hw *hw);
51
52 s32 txgbe_get_thermal_sensor_data(struct txgbe_hw *hw);
53 s32 txgbe_init_thermal_sensor_thresh(struct txgbe_hw *hw);
54
55 void txgbe_disable_rx(struct txgbe_hw *hw);
56 void txgbe_enable_rx(struct txgbe_hw *hw);
57 s32 txgbe_setup_mac_link_multispeed_fiber(struct txgbe_hw *hw,
58                                           u32 speed,
59                                           bool autoneg_wait_to_complete);
60 void txgbe_set_mta(struct txgbe_hw *hw, u8 *mc_addr);
61 s32 txgbe_init_shared_code(struct txgbe_hw *hw);
62 s32 txgbe_set_mac_type(struct txgbe_hw *hw);
63 s32 txgbe_init_ops_pf(struct txgbe_hw *hw);
64 s32 txgbe_get_link_capabilities_raptor(struct txgbe_hw *hw,
65                                       u32 *speed, bool *autoneg);
66 u32 txgbe_get_media_type_raptor(struct txgbe_hw *hw);
67 void txgbe_disable_tx_laser_multispeed_fiber(struct txgbe_hw *hw);
68 void txgbe_enable_tx_laser_multispeed_fiber(struct txgbe_hw *hw);
69 void txgbe_flap_tx_laser_multispeed_fiber(struct txgbe_hw *hw);
70 void txgbe_set_hard_rate_select_speed(struct txgbe_hw *hw,
71                                         u32 speed);
72 s32 txgbe_setup_mac_link_smartspeed(struct txgbe_hw *hw,
73                                     u32 speed,
74                                     bool autoneg_wait_to_complete);
75 s32 txgbe_start_mac_link_raptor(struct txgbe_hw *hw,
76                                bool autoneg_wait_to_complete);
77 s32 txgbe_setup_mac_link(struct txgbe_hw *hw, u32 speed,
78                                bool autoneg_wait_to_complete);
79 s32 txgbe_setup_sfp_modules(struct txgbe_hw *hw);
80 void txgbe_init_mac_link_ops(struct txgbe_hw *hw);
81 s32 txgbe_reset_hw(struct txgbe_hw *hw);
82 s32 txgbe_start_hw_raptor(struct txgbe_hw *hw);
83 s32 txgbe_init_phy_raptor(struct txgbe_hw *hw);
84 s32 txgbe_enable_rx_dma_raptor(struct txgbe_hw *hw, u32 regval);
85 bool txgbe_verify_lesm_fw_enabled_raptor(struct txgbe_hw *hw);
86 #endif /* _TXGBE_HW_H_ */