]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - drivers/net/ethernet/intel/igc/igc_hw.h
igc: Remove unused definition
[mirror_ubuntu-jammy-kernel.git] / drivers / net / ethernet / intel / igc / igc_hw.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2018 Intel Corporation */
3
4 #ifndef _IGC_HW_H_
5 #define _IGC_HW_H_
6
7 #include <linux/types.h>
8 #include <linux/if_ether.h>
9 #include <linux/netdevice.h>
10
11 #include "igc_regs.h"
12 #include "igc_defines.h"
13 #include "igc_mac.h"
14 #include "igc_phy.h"
15 #include "igc_nvm.h"
16 #include "igc_i225.h"
17 #include "igc_base.h"
18
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
25 /* Function pointers for the MAC. */
26 struct igc_mac_operations {
27 s32 (*check_for_link)(struct igc_hw *hw);
28 s32 (*reset_hw)(struct igc_hw *hw);
29 s32 (*init_hw)(struct igc_hw *hw);
30 s32 (*setup_physical_interface)(struct igc_hw *hw);
31 void (*rar_set)(struct igc_hw *hw, u8 *address, u32 index);
32 s32 (*read_mac_addr)(struct igc_hw *hw);
33 s32 (*get_speed_and_duplex)(struct igc_hw *hw, u16 *speed,
34 u16 *duplex);
35 s32 (*acquire_swfw_sync)(struct igc_hw *hw, u16 mask);
36 void (*release_swfw_sync)(struct igc_hw *hw, u16 mask);
37 };
38
39 enum igc_mac_type {
40 igc_undefined = 0,
41 igc_i225,
42 igc_num_macs /* List is 1-based, so subtract 1 for true count. */
43 };
44
45 enum igc_phy_type {
46 igc_phy_unknown = 0,
47 igc_phy_none,
48 igc_phy_i225,
49 };
50
51 enum igc_media_type {
52 igc_media_type_unknown = 0,
53 igc_media_type_copper = 1,
54 igc_num_media_types
55 };
56
57 enum igc_nvm_type {
58 igc_nvm_unknown = 0,
59 igc_nvm_eeprom_spi,
60 igc_nvm_flash_hw,
61 igc_nvm_invm,
62 };
63
64 struct igc_info {
65 s32 (*get_invariants)(struct igc_hw *hw);
66 struct igc_mac_operations *mac_ops;
67 const struct igc_phy_operations *phy_ops;
68 struct igc_nvm_operations *nvm_ops;
69 };
70
71 extern const struct igc_info igc_base_info;
72
73 struct igc_mac_info {
74 struct igc_mac_operations ops;
75
76 u8 addr[ETH_ALEN];
77 u8 perm_addr[ETH_ALEN];
78
79 enum igc_mac_type type;
80
81 u32 collision_delta;
82 u32 ledctl_default;
83 u32 ledctl_mode1;
84 u32 ledctl_mode2;
85 u32 mc_filter_type;
86 u32 tx_packet_delta;
87 u32 txcw;
88
89 u16 mta_reg_count;
90 u16 uta_reg_count;
91
92 u32 mta_shadow[MAX_MTA_REG];
93 u16 rar_entry_count;
94
95 u8 forced_speed_duplex;
96
97 bool adaptive_ifs;
98 bool has_fwsm;
99 bool asf_firmware_present;
100 bool arc_subsystem_valid;
101
102 bool autoneg;
103 bool autoneg_failed;
104 bool get_link_status;
105 };
106
107 struct igc_nvm_operations {
108 s32 (*acquire)(struct igc_hw *hw);
109 s32 (*read)(struct igc_hw *hw, u16 offset, u16 i, u16 *data);
110 void (*release)(struct igc_hw *hw);
111 s32 (*write)(struct igc_hw *hw, u16 offset, u16 i, u16 *data);
112 s32 (*update)(struct igc_hw *hw);
113 s32 (*validate)(struct igc_hw *hw);
114 s32 (*valid_led_default)(struct igc_hw *hw, u16 *data);
115 };
116
117 struct igc_phy_operations {
118 s32 (*acquire)(struct igc_hw *hw);
119 s32 (*check_reset_block)(struct igc_hw *hw);
120 s32 (*force_speed_duplex)(struct igc_hw *hw);
121 s32 (*get_phy_info)(struct igc_hw *hw);
122 s32 (*read_reg)(struct igc_hw *hw, u32 address, u16 *data);
123 void (*release)(struct igc_hw *hw);
124 s32 (*reset)(struct igc_hw *hw);
125 s32 (*write_reg)(struct igc_hw *hw, u32 address, u16 data);
126 };
127
128 struct igc_nvm_info {
129 struct igc_nvm_operations ops;
130 enum igc_nvm_type type;
131
132 u32 flash_bank_size;
133 u32 flash_base_addr;
134
135 u16 word_size;
136 u16 delay_usec;
137 u16 address_bits;
138 u16 opcode_bits;
139 u16 page_size;
140 };
141
142 struct igc_phy_info {
143 struct igc_phy_operations ops;
144
145 enum igc_phy_type type;
146
147 u32 addr;
148 u32 id;
149 u32 reset_delay_us; /* in usec */
150 u32 revision;
151
152 enum igc_media_type media_type;
153
154 u16 autoneg_advertised;
155 u16 autoneg_mask;
156
157 u8 mdix;
158
159 bool is_mdix;
160 bool reset_disable;
161 bool speed_downgraded;
162 bool autoneg_wait_to_complete;
163 };
164
165 struct igc_bus_info {
166 u16 func;
167 u16 pci_cmd_word;
168 };
169
170 enum igc_fc_mode {
171 igc_fc_none = 0,
172 igc_fc_rx_pause,
173 igc_fc_tx_pause,
174 igc_fc_full,
175 igc_fc_default = 0xFF
176 };
177
178 struct igc_fc_info {
179 u32 high_water; /* Flow control high-water mark */
180 u32 low_water; /* Flow control low-water mark */
181 u16 pause_time; /* Flow control pause timer */
182 bool send_xon; /* Flow control send XON */
183 bool strict_ieee; /* Strict IEEE mode */
184 enum igc_fc_mode current_mode; /* Type of flow control */
185 enum igc_fc_mode requested_mode;
186 };
187
188 struct igc_dev_spec_base {
189 bool clear_semaphore_once;
190 };
191
192 struct igc_hw {
193 void *back;
194
195 u8 __iomem *hw_addr;
196 unsigned long io_base;
197
198 struct igc_mac_info mac;
199 struct igc_fc_info fc;
200 struct igc_nvm_info nvm;
201 struct igc_phy_info phy;
202
203 struct igc_bus_info bus;
204
205 union {
206 struct igc_dev_spec_base _base;
207 } dev_spec;
208
209 u16 device_id;
210 u16 subsystem_vendor_id;
211 u16 subsystem_device_id;
212 u16 vendor_id;
213
214 u8 revision_id;
215 };
216
217 /* Statistics counters collected by the MAC */
218 struct igc_hw_stats {
219 u64 crcerrs;
220 u64 algnerrc;
221 u64 symerrs;
222 u64 rxerrc;
223 u64 mpc;
224 u64 scc;
225 u64 ecol;
226 u64 mcc;
227 u64 latecol;
228 u64 colc;
229 u64 dc;
230 u64 tncrs;
231 u64 sec;
232 u64 cexterr;
233 u64 rlec;
234 u64 xonrxc;
235 u64 xontxc;
236 u64 xoffrxc;
237 u64 xofftxc;
238 u64 fcruc;
239 u64 prc64;
240 u64 prc127;
241 u64 prc255;
242 u64 prc511;
243 u64 prc1023;
244 u64 prc1522;
245 u64 gprc;
246 u64 bprc;
247 u64 mprc;
248 u64 gptc;
249 u64 gorc;
250 u64 gotc;
251 u64 rnbc;
252 u64 ruc;
253 u64 rfc;
254 u64 roc;
255 u64 rjc;
256 u64 mgprc;
257 u64 mgpdc;
258 u64 mgptc;
259 u64 tor;
260 u64 tot;
261 u64 tpr;
262 u64 tpt;
263 u64 ptc64;
264 u64 ptc127;
265 u64 ptc255;
266 u64 ptc511;
267 u64 ptc1023;
268 u64 ptc1522;
269 u64 mptc;
270 u64 bptc;
271 u64 tsctc;
272 u64 tsctfc;
273 u64 iac;
274 u64 icrxptc;
275 u64 icrxatc;
276 u64 ictxptc;
277 u64 ictxatc;
278 u64 ictxqec;
279 u64 ictxqmtc;
280 u64 icrxdmtc;
281 u64 icrxoc;
282 u64 cbtmpc;
283 u64 htdpmc;
284 u64 cbrdpc;
285 u64 cbrmpc;
286 u64 rpthc;
287 u64 hgptc;
288 u64 htcbdpc;
289 u64 hgorc;
290 u64 hgotc;
291 u64 lenerrs;
292 u64 scvpc;
293 u64 hrmpc;
294 u64 doosync;
295 u64 o2bgptc;
296 u64 o2bspc;
297 u64 b2ospc;
298 u64 b2ogprc;
299 };
300
301 struct net_device *igc_get_hw_dev(struct igc_hw *hw);
302 #define hw_dbg(format, arg...) \
303 netdev_dbg(igc_get_hw_dev(hw), format, ##arg)
304
305 s32 igc_read_pcie_cap_reg(struct igc_hw *hw, u32 reg, u16 *value);
306 s32 igc_write_pcie_cap_reg(struct igc_hw *hw, u32 reg, u16 *value);
307 void igc_read_pci_cfg(struct igc_hw *hw, u32 reg, u16 *value);
308 void igc_write_pci_cfg(struct igc_hw *hw, u32 reg, u16 *value);
309
310 #endif /* _IGC_HW_H_ */