1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2018 Intel Corporation */
7 #include <linux/types.h>
8 #include <linux/if_ether.h>
9 #include <linux/netdevice.h>
12 #include "igc_defines.h"
19 #define IGC_DEV_ID_I225_LM 0x15F2
20 #define IGC_DEV_ID_I225_V 0x15F3
21 #define IGC_DEV_ID_I225_I 0x15F8
22 #define IGC_DEV_ID_I220_V 0x15F7
23 #define IGC_DEV_ID_I225_K 0x3100
24 #define IGC_DEV_ID_I225_K2 0x3101
25 #define IGC_DEV_ID_I226_K 0x3102
26 #define IGC_DEV_ID_I225_LMVP 0x5502
27 #define IGC_DEV_ID_I225_IT 0x0D9F
28 #define IGC_DEV_ID_I226_LM 0x125B
29 #define IGC_DEV_ID_I226_V 0x125C
30 #define IGC_DEV_ID_I226_IT 0x125D
31 #define IGC_DEV_ID_I221_V 0x125E
32 #define IGC_DEV_ID_I226_BLANK_NVM 0x125F
33 #define IGC_DEV_ID_I225_BLANK_NVM 0x15FD
35 /* Function pointers for the MAC. */
36 struct igc_mac_operations {
37 s32 (*check_for_link)(struct igc_hw *hw);
38 s32 (*reset_hw)(struct igc_hw *hw);
39 s32 (*init_hw)(struct igc_hw *hw);
40 s32 (*setup_physical_interface)(struct igc_hw *hw);
41 void (*rar_set)(struct igc_hw *hw, u8 *address, u32 index);
42 s32 (*read_mac_addr)(struct igc_hw *hw);
43 s32 (*get_speed_and_duplex)(struct igc_hw *hw, u16 *speed,
45 s32 (*acquire_swfw_sync)(struct igc_hw *hw, u16 mask);
46 void (*release_swfw_sync)(struct igc_hw *hw, u16 mask);
52 igc_num_macs /* List is 1-based, so subtract 1 for true count. */
62 igc_media_type_unknown = 0,
63 igc_media_type_copper = 1,
75 s32 (*get_invariants)(struct igc_hw *hw);
76 struct igc_mac_operations *mac_ops;
77 const struct igc_phy_operations *phy_ops;
78 struct igc_nvm_operations *nvm_ops;
81 extern const struct igc_info igc_base_info;
84 struct igc_mac_operations ops;
87 u8 perm_addr[ETH_ALEN];
89 enum igc_mac_type type;
96 u32 mta_shadow[MAX_MTA_REG];
99 u8 forced_speed_duplex;
101 bool asf_firmware_present;
102 bool arc_subsystem_valid;
106 bool get_link_status;
109 struct igc_nvm_operations {
110 s32 (*acquire)(struct igc_hw *hw);
111 s32 (*read)(struct igc_hw *hw, u16 offset, u16 i, u16 *data);
112 void (*release)(struct igc_hw *hw);
113 s32 (*write)(struct igc_hw *hw, u16 offset, u16 i, u16 *data);
114 s32 (*update)(struct igc_hw *hw);
115 s32 (*validate)(struct igc_hw *hw);
118 struct igc_phy_operations {
119 s32 (*acquire)(struct igc_hw *hw);
120 s32 (*check_reset_block)(struct igc_hw *hw);
121 s32 (*force_speed_duplex)(struct igc_hw *hw);
122 s32 (*get_phy_info)(struct igc_hw *hw);
123 s32 (*read_reg)(struct igc_hw *hw, u32 address, u16 *data);
124 void (*release)(struct igc_hw *hw);
125 s32 (*reset)(struct igc_hw *hw);
126 s32 (*write_reg)(struct igc_hw *hw, u32 address, u16 data);
129 struct igc_nvm_info {
130 struct igc_nvm_operations ops;
131 enum igc_nvm_type type;
140 struct igc_phy_info {
141 struct igc_phy_operations ops;
143 enum igc_phy_type type;
147 u32 reset_delay_us; /* in usec */
150 enum igc_media_type media_type;
152 u16 autoneg_advertised;
158 bool speed_downgraded;
159 bool autoneg_wait_to_complete;
162 struct igc_bus_info {
172 igc_fc_default = 0xFF
176 u32 high_water; /* Flow control high-water mark */
177 u32 low_water; /* Flow control low-water mark */
178 u16 pause_time; /* Flow control pause timer */
179 bool send_xon; /* Flow control send XON */
180 bool strict_ieee; /* Strict IEEE mode */
181 enum igc_fc_mode current_mode; /* Type of flow control */
182 enum igc_fc_mode requested_mode;
185 struct igc_dev_spec_base {
186 bool clear_semaphore_once;
194 unsigned long io_base;
196 struct igc_mac_info mac;
197 struct igc_fc_info fc;
198 struct igc_nvm_info nvm;
199 struct igc_phy_info phy;
201 struct igc_bus_info bus;
204 struct igc_dev_spec_base _base;
208 u16 subsystem_vendor_id;
209 u16 subsystem_device_id;
215 /* Statistics counters collected by the MAC */
216 struct igc_hw_stats {
289 struct net_device *igc_get_hw_dev(struct igc_hw *hw);
290 #define hw_dbg(format, arg...) \
291 netdev_dbg(igc_get_hw_dev(hw), format, ##arg)
293 s32 igc_read_pcie_cap_reg(struct igc_hw *hw, u32 reg, u16 *value);
294 s32 igc_write_pcie_cap_reg(struct igc_hw *hw, u32 reg, u16 *value);
295 void igc_read_pci_cfg(struct igc_hw *hw, u32 reg, u16 *value);
296 void igc_write_pci_cfg(struct igc_hw *hw, u32 reg, u16 *value);
298 #endif /* _IGC_HW_H_ */