e071d4af8f
Clarify Intel copyright and update the date to 2020.
Fixes: 9db3087f4f
("net/ixgbe/base: update the license")
Cc: stable@dpdk.org
Signed-off-by: Xiaoyun Li <xiaoyun.li@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
25 lines
1.1 KiB
C
25 lines
1.1 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2001-2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _IXGBE_82598_H_
|
|
#define _IXGBE_82598_H_
|
|
|
|
u32 ixgbe_get_pcie_msix_count_82598(struct ixgbe_hw *hw);
|
|
s32 ixgbe_fc_enable_82598(struct ixgbe_hw *hw);
|
|
s32 ixgbe_start_hw_82598(struct ixgbe_hw *hw);
|
|
void ixgbe_enable_relaxed_ordering_82598(struct ixgbe_hw *hw);
|
|
s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq);
|
|
s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind, bool vlan_on,
|
|
bool vlvf_bypass);
|
|
s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val);
|
|
s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val);
|
|
s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
|
|
u8 *eeprom_data);
|
|
u64 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw);
|
|
s32 ixgbe_init_phy_ops_82598(struct ixgbe_hw *hw);
|
|
void ixgbe_set_lan_id_multi_port_pcie_82598(struct ixgbe_hw *hw);
|
|
void ixgbe_set_pcie_completion_timeout(struct ixgbe_hw *hw);
|
|
s32 ixgbe_enable_rx_dma_82598(struct ixgbe_hw *hw, u32 regval);
|
|
#endif /* _IXGBE_82598_H_ */
|