Linux Audio

Check our new training course

Loading...
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/* Copyright (c)  2018 Intel Corporation */
 3
 4#ifndef _IGC_MAC_H_
 5#define _IGC_MAC_H_
 6
 7#include "igc_hw.h"
 8#include "igc_phy.h"
 9#include "igc_defines.h"
10
 
 
 
 
11/* forward declaration */
12s32 igc_disable_pcie_master(struct igc_hw *hw);
13s32 igc_check_for_copper_link(struct igc_hw *hw);
14s32 igc_config_fc_after_link_up(struct igc_hw *hw);
15s32 igc_force_mac_fc(struct igc_hw *hw);
16void igc_init_rx_addrs(struct igc_hw *hw, u16 rar_count);
17s32 igc_setup_link(struct igc_hw *hw);
18void igc_clear_hw_cntrs_base(struct igc_hw *hw);
19s32 igc_get_auto_rd_done(struct igc_hw *hw);
20void igc_put_hw_semaphore(struct igc_hw *hw);
21void igc_rar_set(struct igc_hw *hw, u8 *addr, u32 index);
22void igc_config_collision_dist(struct igc_hw *hw);
23
24s32 igc_get_speed_and_duplex_copper(struct igc_hw *hw, u16 *speed,
25				    u16 *duplex);
26
27bool igc_enable_mng_pass_thru(struct igc_hw *hw);
28void igc_update_mc_addr_list(struct igc_hw *hw,
29			     u8 *mc_addr_list, u32 mc_addr_count);
30
31enum igc_mng_mode {
32	igc_mng_mode_none = 0,
33	igc_mng_mode_asf,
34	igc_mng_mode_pt,
35	igc_mng_mode_ipmi,
36	igc_mng_mode_host_if_only
37};
38
39#endif
v5.4
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/* Copyright (c)  2018 Intel Corporation */
 3
 4#ifndef _IGC_MAC_H_
 5#define _IGC_MAC_H_
 6
 7#include "igc_hw.h"
 8#include "igc_phy.h"
 9#include "igc_defines.h"
10
11#ifndef IGC_REMOVED
12#define IGC_REMOVED(a) (0)
13#endif /* IGC_REMOVED */
14
15/* forward declaration */
16s32 igc_disable_pcie_master(struct igc_hw *hw);
17s32 igc_check_for_copper_link(struct igc_hw *hw);
18s32 igc_config_fc_after_link_up(struct igc_hw *hw);
19s32 igc_force_mac_fc(struct igc_hw *hw);
20void igc_init_rx_addrs(struct igc_hw *hw, u16 rar_count);
21s32 igc_setup_link(struct igc_hw *hw);
22void igc_clear_hw_cntrs_base(struct igc_hw *hw);
23s32 igc_get_auto_rd_done(struct igc_hw *hw);
24void igc_put_hw_semaphore(struct igc_hw *hw);
25void igc_rar_set(struct igc_hw *hw, u8 *addr, u32 index);
26void igc_config_collision_dist(struct igc_hw *hw);
27
28s32 igc_get_speed_and_duplex_copper(struct igc_hw *hw, u16 *speed,
29				    u16 *duplex);
30
31bool igc_enable_mng_pass_thru(struct igc_hw *hw);
 
 
32
33enum igc_mng_mode {
34	igc_mng_mode_none = 0,
35	igc_mng_mode_asf,
36	igc_mng_mode_pt,
37	igc_mng_mode_ipmi,
38	igc_mng_mode_host_if_only
39};
40
41#endif