net/cnxk: update ethertype for mixed IPsec tunnel versions
[dpdk.git] / drivers / net / ngbe / base / ngbe_hw.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018-2021 Beijing WangXun Technology Co., Ltd.
3  * Copyright(c) 2010-2017 Intel Corporation
4  */
5
6 #ifndef _NGBE_HW_H_
7 #define _NGBE_HW_H_
8
9 #include "ngbe_type.h"
10
11 #define NGBE_EM_MAX_TX_QUEUES 8
12 #define NGBE_EM_MAX_RX_QUEUES 8
13 #define NGBE_EM_RAR_ENTRIES   32
14 #define NGBE_EM_MC_TBL_SIZE   32
15
16 s32 ngbe_init_hw(struct ngbe_hw *hw);
17 s32 ngbe_start_hw(struct ngbe_hw *hw);
18 s32 ngbe_reset_hw_em(struct ngbe_hw *hw);
19 s32 ngbe_stop_hw(struct ngbe_hw *hw);
20 s32 ngbe_get_mac_addr(struct ngbe_hw *hw, u8 *mac_addr);
21
22 void ngbe_set_lan_id_multi_port(struct ngbe_hw *hw);
23
24 s32 ngbe_check_mac_link_em(struct ngbe_hw *hw, u32 *speed,
25                         bool *link_up, bool link_up_wait_to_complete);
26 s32 ngbe_get_link_capabilities_em(struct ngbe_hw *hw,
27                                       u32 *speed,
28                                       bool *autoneg);
29 s32 ngbe_setup_mac_link_em(struct ngbe_hw *hw,
30                                u32 speed,
31                                bool autoneg_wait_to_complete);
32
33 s32 ngbe_set_rar(struct ngbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
34                           u32 enable_addr);
35 s32 ngbe_clear_rar(struct ngbe_hw *hw, u32 index);
36 s32 ngbe_init_rx_addrs(struct ngbe_hw *hw);
37 s32 ngbe_disable_sec_rx_path(struct ngbe_hw *hw);
38 s32 ngbe_enable_sec_rx_path(struct ngbe_hw *hw);
39
40 s32 ngbe_validate_mac_addr(u8 *mac_addr);
41 s32 ngbe_acquire_swfw_sync(struct ngbe_hw *hw, u32 mask);
42 void ngbe_release_swfw_sync(struct ngbe_hw *hw, u32 mask);
43
44 s32 ngbe_set_vmdq(struct ngbe_hw *hw, u32 rar, u32 vmdq);
45 s32 ngbe_clear_vmdq(struct ngbe_hw *hw, u32 rar, u32 vmdq);
46 s32 ngbe_init_uta_tables(struct ngbe_hw *hw);
47
48 s32 ngbe_init_thermal_sensor_thresh(struct ngbe_hw *hw);
49 s32 ngbe_mac_check_overtemp(struct ngbe_hw *hw);
50 void ngbe_disable_rx(struct ngbe_hw *hw);
51 void ngbe_enable_rx(struct ngbe_hw *hw);
52 s32 ngbe_init_shared_code(struct ngbe_hw *hw);
53 s32 ngbe_set_mac_type(struct ngbe_hw *hw);
54 s32 ngbe_init_ops_pf(struct ngbe_hw *hw);
55 s32 ngbe_init_phy(struct ngbe_hw *hw);
56 s32 ngbe_enable_rx_dma(struct ngbe_hw *hw, u32 regval);
57 void ngbe_map_device_id(struct ngbe_hw *hw);
58
59 #endif /* _NGBE_HW_H_ */