net/ice/base: support extended GPIO access
[dpdk.git] / drivers / net / ice / base / ice_type.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2020 Intel Corporation
3  */
4
5 #ifndef _ICE_TYPE_H_
6 #define _ICE_TYPE_H_
7
8 #define ETH_ALEN        6
9
10 #define ETH_HEADER_LEN  14
11
12 #define BIT(a) (1UL << (a))
13 #define BIT_ULL(a) (1ULL << (a))
14
15 #define BITS_PER_BYTE   8
16
17 #define _FORCE_
18
19 #define ICE_BYTES_PER_WORD      2
20 #define ICE_BYTES_PER_DWORD     4
21 #define ICE_MAX_TRAFFIC_CLASS   8
22
23 /**
24  * ROUND_UP - round up to next arbitrary multiple (not a power of 2)
25  * @a: value to round up
26  * @b: arbitrary multiple
27  *
28  * Round up to the next multiple of the arbitrary b.
29  * Note, when b is a power of 2 use ICE_ALIGN() instead.
30  */
31 #define ROUND_UP(a, b)  ((b) * DIVIDE_AND_ROUND_UP((a), (b)))
32
33 #define MIN_T(_t, _a, _b)       min((_t)(_a), (_t)(_b))
34
35 #define IS_ASCII(_ch)   ((_ch) < 0x80)
36
37 #define STRUCT_HACK_VAR_LEN
38 /**
39  * ice_struct_size - size of struct with C99 flexible array member
40  * @ptr: pointer to structure
41  * @field: flexible array member (last member of the structure)
42  * @num: number of elements of that flexible array member
43  */
44 #define ice_struct_size(ptr, field, num) \
45         (sizeof(*(ptr)) + sizeof(*(ptr)->field) * (num))
46
47 #include "ice_status.h"
48 #include "ice_hw_autogen.h"
49 #include "ice_devids.h"
50 #include "ice_osdep.h"
51 #include "ice_bitops.h" /* Must come before ice_controlq.h */
52 #include "ice_controlq.h"
53 #include "ice_lan_tx_rx.h"
54 #include "ice_flex_type.h"
55 #include "ice_protocol_type.h"
56
57 /**
58  * ice_is_pow2 - check if integer value is a power of 2
59  * @val: unsigned integer to be validated
60  */
61 static inline bool ice_is_pow2(u64 val)
62 {
63         return (val && !(val & (val - 1)));
64 }
65
66 /**
67  * ice_ilog2 - Calculates integer log base 2 of a number
68  * @n: number on which to perform operation
69  */
70 static inline int ice_ilog2(u64 n)
71 {
72         int i;
73
74         for (i = 63; i >= 0; i--)
75                 if (((u64)1 << i) & n)
76                         return i;
77
78         return -1;
79 }
80
81 static inline bool ice_is_tc_ena(ice_bitmap_t bitmap, u8 tc)
82 {
83         return ice_is_bit_set(&bitmap, tc);
84 }
85
86 #define DIV_64BIT(n, d) ((n) / (d))
87
88 static inline u64 round_up_64bit(u64 a, u32 b)
89 {
90         return DIV_64BIT(((a) + (b) / 2), (b));
91 }
92
93 static inline u32 ice_round_to_num(u32 N, u32 R)
94 {
95         return ((((N) % (R)) < ((R) / 2)) ? (((N) / (R)) * (R)) :
96                 ((((N) + (R) - 1) / (R)) * (R)));
97 }
98
99 /* Driver always calls main vsi_handle first */
100 #define ICE_MAIN_VSI_HANDLE             0
101
102 /* Switch from ms to the 1usec global time (this is the GTIME resolution) */
103 #define ICE_MS_TO_GTIME(time)           ((time) * 1000)
104
105 /* Data type manipulation macros. */
106 #define ICE_HI_DWORD(x)         ((u32)((((x) >> 16) >> 16) & 0xFFFFFFFF))
107 #define ICE_LO_DWORD(x)         ((u32)((x) & 0xFFFFFFFF))
108 #define ICE_HI_WORD(x)          ((u16)(((x) >> 16) & 0xFFFF))
109 #define ICE_LO_WORD(x)          ((u16)((x) & 0xFFFF))
110
111 /* debug masks - set these bits in hw->debug_mask to control output */
112 #define ICE_DBG_TRACE           BIT_ULL(0) /* for function-trace only */
113 #define ICE_DBG_INIT            BIT_ULL(1)
114 #define ICE_DBG_RELEASE         BIT_ULL(2)
115 #define ICE_DBG_FW_LOG          BIT_ULL(3)
116 #define ICE_DBG_LINK            BIT_ULL(4)
117 #define ICE_DBG_PHY             BIT_ULL(5)
118 #define ICE_DBG_QCTX            BIT_ULL(6)
119 #define ICE_DBG_NVM             BIT_ULL(7)
120 #define ICE_DBG_LAN             BIT_ULL(8)
121 #define ICE_DBG_FLOW            BIT_ULL(9)
122 #define ICE_DBG_DCB             BIT_ULL(10)
123 #define ICE_DBG_DIAG            BIT_ULL(11)
124 #define ICE_DBG_FD              BIT_ULL(12)
125 #define ICE_DBG_SW              BIT_ULL(13)
126 #define ICE_DBG_SCHED           BIT_ULL(14)
127
128 #define ICE_DBG_PKG             BIT_ULL(16)
129 #define ICE_DBG_RES             BIT_ULL(17)
130 #define ICE_DBG_ACL             BIT_ULL(18)
131 #define ICE_DBG_AQ_MSG          BIT_ULL(24)
132 #define ICE_DBG_AQ_DESC         BIT_ULL(25)
133 #define ICE_DBG_AQ_DESC_BUF     BIT_ULL(26)
134 #define ICE_DBG_AQ_CMD          BIT_ULL(27)
135 #define ICE_DBG_AQ              (ICE_DBG_AQ_MSG         | \
136                                  ICE_DBG_AQ_DESC        | \
137                                  ICE_DBG_AQ_DESC_BUF    | \
138                                  ICE_DBG_AQ_CMD)
139
140 #define ICE_DBG_USER            BIT_ULL(31)
141 #define ICE_DBG_ALL             0xFFFFFFFFFFFFFFFFULL
142
143 #define __ALWAYS_UNUSED
144
145 #define IS_ETHER_ADDR_EQUAL(addr1, addr2) \
146         (((bool)((((u16 *)(addr1))[0] == ((u16 *)(addr2))[0]))) && \
147          ((bool)((((u16 *)(addr1))[1] == ((u16 *)(addr2))[1]))) && \
148          ((bool)((((u16 *)(addr1))[2] == ((u16 *)(addr2))[2]))))
149
150 enum ice_aq_res_ids {
151         ICE_NVM_RES_ID = 1,
152         ICE_SPD_RES_ID,
153         ICE_CHANGE_LOCK_RES_ID,
154         ICE_GLOBAL_CFG_LOCK_RES_ID
155 };
156
157 /* FW update timeout definitions are in milliseconds */
158 #define ICE_NVM_TIMEOUT                 180000
159 #define ICE_CHANGE_LOCK_TIMEOUT         1000
160 #define ICE_GLOBAL_CFG_LOCK_TIMEOUT     3000
161
162 enum ice_aq_res_access_type {
163         ICE_RES_READ = 1,
164         ICE_RES_WRITE
165 };
166
167 struct ice_driver_ver {
168         u8 major_ver;
169         u8 minor_ver;
170         u8 build_ver;
171         u8 subbuild_ver;
172         u8 driver_string[32];
173 };
174
175 enum ice_fc_mode {
176         ICE_FC_NONE = 0,
177         ICE_FC_RX_PAUSE,
178         ICE_FC_TX_PAUSE,
179         ICE_FC_FULL,
180         ICE_FC_AUTO,
181         ICE_FC_PFC,
182         ICE_FC_DFLT
183 };
184
185 enum ice_phy_cache_mode {
186         ICE_FC_MODE = 0,
187         ICE_SPEED_MODE,
188         ICE_FEC_MODE
189 };
190
191 enum ice_fec_mode {
192         ICE_FEC_NONE = 0,
193         ICE_FEC_RS,
194         ICE_FEC_BASER,
195         ICE_FEC_AUTO
196 };
197
198 struct ice_phy_cache_mode_data {
199         union {
200                 enum ice_fec_mode curr_user_fec_req;
201                 enum ice_fc_mode curr_user_fc_req;
202                 u16 curr_user_speed_req;
203         } data;
204 };
205
206 enum ice_set_fc_aq_failures {
207         ICE_SET_FC_AQ_FAIL_NONE = 0,
208         ICE_SET_FC_AQ_FAIL_GET,
209         ICE_SET_FC_AQ_FAIL_SET,
210         ICE_SET_FC_AQ_FAIL_UPDATE
211 };
212
213 /* These are structs for managing the hardware information and the operations */
214 /* MAC types */
215 enum ice_mac_type {
216         ICE_MAC_UNKNOWN = 0,
217         ICE_MAC_E810,
218         ICE_MAC_GENERIC,
219 };
220
221 /* Media Types */
222 enum ice_media_type {
223         ICE_MEDIA_UNKNOWN = 0,
224         ICE_MEDIA_FIBER,
225         ICE_MEDIA_BASET,
226         ICE_MEDIA_BACKPLANE,
227         ICE_MEDIA_DA,
228         ICE_MEDIA_AUI,
229 };
230
231 /* Software VSI types. */
232 enum ice_vsi_type {
233         ICE_VSI_PF = 0,
234         ICE_VSI_CTRL = 3,       /* equates to ICE_VSI_PF with 1 queue pair */
235         ICE_VSI_LB = 6,
236 };
237
238 struct ice_link_status {
239         /* Refer to ice_aq_phy_type for bits definition */
240         u64 phy_type_low;
241         u64 phy_type_high;
242         u8 topo_media_conflict;
243         u16 max_frame_size;
244         u16 link_speed;
245         u16 req_speeds;
246         u8 lse_ena;     /* Link Status Event notification */
247         u8 link_info;
248         u8 an_info;
249         u8 ext_info;
250         u8 fec_info;
251         u8 pacing;
252         /* Refer to #define from module_type[ICE_MODULE_TYPE_TOTAL_BYTE] of
253          * ice_aqc_get_phy_caps structure
254          */
255         u8 module_type[ICE_MODULE_TYPE_TOTAL_BYTE];
256 };
257
258 /* Different data queue types: These are mainly for SW consumption. */
259 enum ice_q {
260         ICE_DATA_Q_DOORBELL,
261         ICE_DATA_Q_CMPL,
262         ICE_DATA_Q_QUANTA,
263         ICE_DATA_Q_RX,
264         ICE_DATA_Q_TX,
265 };
266
267 /* Different reset sources for which a disable queue AQ call has to be made in
268  * order to clean the Tx scheduler as a part of the reset
269  */
270 enum ice_disq_rst_src {
271         ICE_NO_RESET = 0,
272         ICE_VM_RESET,
273 };
274
275 /* PHY info such as phy_type, etc... */
276 struct ice_phy_info {
277         struct ice_link_status link_info;
278         struct ice_link_status link_info_old;
279         u64 phy_type_low;
280         u64 phy_type_high;
281         enum ice_media_type media_type;
282         u8 get_link_info;
283         /* Please refer to struct ice_aqc_get_link_status_data to get
284          * detail of enable bit in curr_user_speed_req
285          */
286         u16 curr_user_speed_req;
287         enum ice_fec_mode curr_user_fec_req;
288         enum ice_fc_mode curr_user_fc_req;
289         struct ice_aqc_set_phy_cfg_data curr_user_phy_cfg;
290 };
291
292 #define ICE_MAX_NUM_MIRROR_RULES        64
293
294 /* protocol enumeration for filters */
295 enum ice_fltr_ptype {
296         /* NONE - used for undef/error */
297         ICE_FLTR_PTYPE_NONF_NONE = 0,
298         ICE_FLTR_PTYPE_NONF_IPV4_UDP,
299         ICE_FLTR_PTYPE_NONF_IPV4_TCP,
300         ICE_FLTR_PTYPE_NONF_IPV4_SCTP,
301         ICE_FLTR_PTYPE_NONF_IPV4_OTHER,
302         ICE_FLTR_PTYPE_NONF_IPV4_GTPU_IPV4_UDP,
303         ICE_FLTR_PTYPE_NONF_IPV4_GTPU_IPV4_TCP,
304         ICE_FLTR_PTYPE_NONF_IPV4_GTPU_IPV4_ICMP,
305         ICE_FLTR_PTYPE_NONF_IPV4_GTPU_IPV4_OTHER,
306         ICE_FLTR_PTYPE_NONF_IPV6_GTPU_IPV6_OTHER,
307         ICE_FLTR_PTYPE_NONF_IPV4_GTPU_EH_IPV4_OTHER,
308         ICE_FLTR_PTYPE_NONF_IPV6_GTPU_EH_IPV6_OTHER,
309         ICE_FLTR_PTYPE_NONF_IPV4_L2TPV3,
310         ICE_FLTR_PTYPE_NONF_IPV6_L2TPV3,
311         ICE_FLTR_PTYPE_NONF_IPV4_ESP,
312         ICE_FLTR_PTYPE_NONF_IPV6_ESP,
313         ICE_FLTR_PTYPE_NONF_IPV4_AH,
314         ICE_FLTR_PTYPE_NONF_IPV6_AH,
315         ICE_FLTR_PTYPE_NONF_IPV4_NAT_T_ESP,
316         ICE_FLTR_PTYPE_NONF_IPV6_NAT_T_ESP,
317         ICE_FLTR_PTYPE_NONF_IPV4_PFCP_NODE,
318         ICE_FLTR_PTYPE_NONF_IPV4_PFCP_SESSION,
319         ICE_FLTR_PTYPE_NONF_IPV6_PFCP_NODE,
320         ICE_FLTR_PTYPE_NONF_IPV6_PFCP_SESSION,
321         ICE_FLTR_PTYPE_NON_IP_L2,
322         ICE_FLTR_PTYPE_FRAG_IPV4,
323         ICE_FLTR_PTYPE_NONF_IPV6_UDP,
324         ICE_FLTR_PTYPE_NONF_IPV6_TCP,
325         ICE_FLTR_PTYPE_NONF_IPV6_SCTP,
326         ICE_FLTR_PTYPE_NONF_IPV6_OTHER,
327         ICE_FLTR_PTYPE_MAX,
328 };
329
330 enum ice_fd_hw_seg {
331         ICE_FD_HW_SEG_NON_TUN = 0,
332         ICE_FD_HW_SEG_TUN,
333         ICE_FD_HW_SEG_MAX,
334 };
335
336 /* 2 VSI = 1 ICE_VSI_PF + 1 ICE_VSI_CTRL */
337 #define ICE_MAX_FDIR_VSI_PER_FILTER     2
338
339 struct ice_fd_hw_prof {
340         struct ice_flow_seg_info *fdir_seg[ICE_FD_HW_SEG_MAX];
341         int cnt;
342         u64 entry_h[ICE_MAX_FDIR_VSI_PER_FILTER][ICE_FD_HW_SEG_MAX];
343         u16 vsi_h[ICE_MAX_FDIR_VSI_PER_FILTER];
344 };
345
346 /* Common HW capabilities for SW use */
347 struct ice_hw_common_caps {
348         /* Write CSR protection */
349         u64 wr_csr_prot;
350         u32 switching_mode;
351         /* switching mode supported - EVB switching (including cloud) */
352 #define ICE_NVM_IMAGE_TYPE_EVB          0x0
353
354         /* Manageablity mode & supported protocols over MCTP */
355         u32 mgmt_mode;
356 #define ICE_MGMT_MODE_PASS_THRU_MODE_M          0xF
357 #define ICE_MGMT_MODE_CTL_INTERFACE_M           0xF0
358 #define ICE_MGMT_MODE_REDIR_SB_INTERFACE_M      0xF00
359
360         u32 mgmt_protocols_mctp;
361 #define ICE_MGMT_MODE_PROTO_RSVD        BIT(0)
362 #define ICE_MGMT_MODE_PROTO_PLDM        BIT(1)
363 #define ICE_MGMT_MODE_PROTO_OEM         BIT(2)
364 #define ICE_MGMT_MODE_PROTO_NC_SI       BIT(3)
365
366         u32 os2bmc;
367         u32 valid_functions;
368         /* DCB capabilities */
369         u32 active_tc_bitmap;
370         u32 maxtc;
371
372         /* RSS related capabilities */
373         u32 rss_table_size;             /* 512 for PFs and 64 for VFs */
374         u32 rss_table_entry_width;      /* RSS Entry width in bits */
375
376         /* Tx/Rx queues */
377         u32 num_rxq;                    /* Number/Total Rx queues */
378         u32 rxq_first_id;               /* First queue ID for Rx queues */
379         u32 num_txq;                    /* Number/Total Tx queues */
380         u32 txq_first_id;               /* First queue ID for Tx queues */
381
382         /* MSI-X vectors */
383         u32 num_msix_vectors;
384         u32 msix_vector_first_id;
385
386         /* Max MTU for function or device */
387         u32 max_mtu;
388
389         /* WOL related */
390         u32 num_wol_proxy_fltr;
391         u32 wol_proxy_vsi_seid;
392
393         /* LED/SDP pin count */
394         u32 led_pin_num;
395         u32 sdp_pin_num;
396
397         /* LED/SDP - Supports up to 12 LED pins and 8 SDP signals */
398 #define ICE_MAX_SUPPORTED_GPIO_LED      12
399 #define ICE_MAX_SUPPORTED_GPIO_SDP      8
400         u8 led[ICE_MAX_SUPPORTED_GPIO_LED];
401         u8 sdp[ICE_MAX_SUPPORTED_GPIO_SDP];
402
403         /* EVB capabilities */
404         u8 evb_802_1_qbg;               /* Edge Virtual Bridging */
405         u8 evb_802_1_qbh;               /* Bridge Port Extension */
406
407         u8 dcb;
408         u8 iscsi;
409         u8 mgmt_cem;
410
411         /* WoL and APM support */
412 #define ICE_WOL_SUPPORT_M               BIT(0)
413 #define ICE_ACPI_PROG_MTHD_M            BIT(1)
414 #define ICE_PROXY_SUPPORT_M             BIT(2)
415         u8 apm_wol_support;
416         u8 acpi_prog_mthd;
417         u8 proxy_support;
418         bool nvm_unified_update;
419 #define ICE_NVM_MGMT_UNIFIED_UPD_SUPPORT        BIT(3)
420 };
421
422 /* Function specific capabilities */
423 struct ice_hw_func_caps {
424         struct ice_hw_common_caps common_cap;
425         u32 guar_num_vsi;
426         u32 fd_fltr_guar;               /* Number of filters guaranteed */
427         u32 fd_fltr_best_effort;        /* Number of best effort filters */
428 };
429
430 /* Device wide capabilities */
431 struct ice_hw_dev_caps {
432         struct ice_hw_common_caps common_cap;
433         u32 num_vsi_allocd_to_host;     /* Excluding EMP VSI */
434         u32 num_flow_director_fltr;     /* Number of FD filters available */
435         u32 num_funcs;
436 };
437
438 /* Information about MAC such as address, etc... */
439 struct ice_mac_info {
440         u8 lan_addr[ETH_ALEN];
441         u8 perm_addr[ETH_ALEN];
442         u8 port_addr[ETH_ALEN];
443         u8 wol_addr[ETH_ALEN];
444 };
445
446 /* PCI bus types */
447 enum ice_bus_type {
448         ice_bus_unknown = 0,
449         ice_bus_pci_express,
450         ice_bus_embedded, /* Is device Embedded versus card */
451         ice_bus_reserved
452 };
453
454 /* PCI bus speeds */
455 enum ice_pcie_bus_speed {
456         ice_pcie_speed_unknown  = 0xff,
457         ice_pcie_speed_2_5GT    = 0x14,
458         ice_pcie_speed_5_0GT    = 0x15,
459         ice_pcie_speed_8_0GT    = 0x16,
460         ice_pcie_speed_16_0GT   = 0x17
461 };
462
463 /* PCI bus widths */
464 enum ice_pcie_link_width {
465         ice_pcie_lnk_width_resrv        = 0x00,
466         ice_pcie_lnk_x1                 = 0x01,
467         ice_pcie_lnk_x2                 = 0x02,
468         ice_pcie_lnk_x4                 = 0x04,
469         ice_pcie_lnk_x8                 = 0x08,
470         ice_pcie_lnk_x12                = 0x0C,
471         ice_pcie_lnk_x16                = 0x10,
472         ice_pcie_lnk_x32                = 0x20,
473         ice_pcie_lnk_width_unknown      = 0xff,
474 };
475
476 /* Reset types used to determine which kind of reset was requested. These
477  * defines match what the RESET_TYPE field of the GLGEN_RSTAT register.
478  * ICE_RESET_PFR does not match any RESET_TYPE field in the GLGEN_RSTAT register
479  * because its reset source is different than the other types listed.
480  */
481 enum ice_reset_req {
482         ICE_RESET_POR   = 0,
483         ICE_RESET_INVAL = 0,
484         ICE_RESET_CORER = 1,
485         ICE_RESET_GLOBR = 2,
486         ICE_RESET_EMPR  = 3,
487         ICE_RESET_PFR   = 4,
488 };
489
490 /* Bus parameters */
491 struct ice_bus_info {
492         enum ice_pcie_bus_speed speed;
493         enum ice_pcie_link_width width;
494         enum ice_bus_type type;
495         u16 domain_num;
496         u16 device;
497         u8 func;
498         u8 bus_num;
499 };
500
501 /* Flow control (FC) parameters */
502 struct ice_fc_info {
503         enum ice_fc_mode current_mode;  /* FC mode in effect */
504         enum ice_fc_mode req_mode;      /* FC mode requested by caller */
505 };
506
507 /* Option ROM version information */
508 struct ice_orom_info {
509         u8 major;                       /* Major version of OROM */
510         u8 patch;                       /* Patch version of OROM */
511         u16 build;                      /* Build version of OROM */
512         u32 srev;                       /* Security revision */
513 };
514
515 /* NVM version information */
516 struct ice_nvm_info {
517         u32 eetrack;
518         u32 srev;
519         u8 major;
520         u8 minor;
521 };
522
523 /* Enumeration of possible flash banks for the NVM, OROM, and Netlist modules
524  * of the flash image.
525  */
526 enum ice_flash_bank {
527         ICE_INVALID_FLASH_BANK,
528         ICE_1ST_FLASH_BANK,
529         ICE_2ND_FLASH_BANK,
530 };
531
532 /* information for accessing NVM, OROM, and Netlist flash banks */
533 struct ice_bank_info {
534         u32 nvm_ptr;                            /* Pointer to 1st NVM bank */
535         u32 nvm_size;                           /* Size of NVM bank */
536         u32 orom_ptr;                           /* Pointer to 1st OROM bank */
537         u32 orom_size;                          /* Size of OROM bank */
538         u32 netlist_ptr;                        /* Pointer to 1st Netlist bank */
539         u32 netlist_size;                       /* Size of Netlist bank */
540         enum ice_flash_bank nvm_bank;           /* Active NVM bank */
541         enum ice_flash_bank orom_bank;          /* Active OROM bank */
542         enum ice_flash_bank netlist_bank;       /* Active Netlist bank */
543 };
544
545 /* Flash Chip Information */
546 struct ice_flash_info {
547         struct ice_orom_info orom;      /* Option ROM version info */
548         struct ice_nvm_info nvm;        /* NVM version information */
549         struct ice_bank_info banks;     /* Flash Bank information */
550         u16 sr_words;                   /* Shadow RAM size in words */
551         u32 flash_size;                 /* Size of available flash in bytes */
552         u8 blank_nvm_mode;              /* is NVM empty (no FW present) */
553 };
554
555 struct ice_link_default_override_tlv {
556         u8 options;
557 #define ICE_LINK_OVERRIDE_OPT_M         0x3F
558 #define ICE_LINK_OVERRIDE_STRICT_MODE   BIT(0)
559 #define ICE_LINK_OVERRIDE_EPCT_DIS      BIT(1)
560 #define ICE_LINK_OVERRIDE_PORT_DIS      BIT(2)
561 #define ICE_LINK_OVERRIDE_EN            BIT(3)
562 #define ICE_LINK_OVERRIDE_AUTO_LINK_DIS BIT(4)
563 #define ICE_LINK_OVERRIDE_EEE_EN        BIT(5)
564         u8 phy_config;
565 #define ICE_LINK_OVERRIDE_PHY_CFG_S     8
566 #define ICE_LINK_OVERRIDE_PHY_CFG_M     (0xC3 << ICE_LINK_OVERRIDE_PHY_CFG_S)
567 #define ICE_LINK_OVERRIDE_PAUSE_M       0x3
568 #define ICE_LINK_OVERRIDE_LESM_EN       BIT(6)
569 #define ICE_LINK_OVERRIDE_AUTO_FEC_EN   BIT(7)
570         u8 fec_options;
571 #define ICE_LINK_OVERRIDE_FEC_OPT_M     0xFF
572         u8 rsvd1;
573         u64 phy_type_low;
574         u64 phy_type_high;
575 };
576
577 #define ICE_NVM_VER_LEN 32
578
579 /* Max number of port to queue branches w.r.t topology */
580 #define ICE_TXSCHED_MAX_BRANCHES ICE_MAX_TRAFFIC_CLASS
581
582 #define ice_for_each_traffic_class(_i)  \
583         for ((_i) = 0; (_i) < ICE_MAX_TRAFFIC_CLASS; (_i)++)
584
585 /* ICE_DFLT_AGG_ID means that all new VM(s)/VSI node connects
586  * to driver defined policy for default aggregator
587  */
588 #define ICE_INVAL_TEID 0xFFFFFFFF
589 #define ICE_DFLT_AGG_ID 0
590
591 struct ice_sched_node {
592         struct ice_sched_node *parent;
593         struct ice_sched_node *sibling; /* next sibling in the same layer */
594         struct ice_sched_node **children;
595         struct ice_aqc_txsched_elem_data info;
596         u32 agg_id;                     /* aggregator group ID */
597         u16 vsi_handle;
598         u8 in_use;                      /* suspended or in use */
599         u8 tx_sched_layer;              /* Logical Layer (1-9) */
600         u8 num_children;
601         u8 tc_num;
602         u8 owner;
603 #define ICE_SCHED_NODE_OWNER_LAN        0
604 #define ICE_SCHED_NODE_OWNER_AE         1
605 #define ICE_SCHED_NODE_OWNER_RDMA       2
606 };
607
608 /* Access Macros for Tx Sched Elements data */
609 #define ICE_TXSCHED_GET_NODE_TEID(x) LE32_TO_CPU((x)->info.node_teid)
610 #define ICE_TXSCHED_GET_PARENT_TEID(x) LE32_TO_CPU((x)->info.parent_teid)
611 #define ICE_TXSCHED_GET_CIR_RL_ID(x)    \
612         LE16_TO_CPU((x)->info.cir_bw.bw_profile_idx)
613 #define ICE_TXSCHED_GET_EIR_RL_ID(x)    \
614         LE16_TO_CPU((x)->info.eir_bw.bw_profile_idx)
615 #define ICE_TXSCHED_GET_SRL_ID(x) LE16_TO_CPU((x)->info.srl_id)
616 #define ICE_TXSCHED_GET_CIR_BWALLOC(x)  \
617         LE16_TO_CPU((x)->info.cir_bw.bw_alloc)
618 #define ICE_TXSCHED_GET_EIR_BWALLOC(x)  \
619         LE16_TO_CPU((x)->info.eir_bw.bw_alloc)
620
621 struct ice_sched_rl_profile {
622         u32 rate; /* In Kbps */
623         struct ice_aqc_rl_profile_elem info;
624 };
625
626 /* The aggregator type determines if identifier is for a VSI group,
627  * aggregator group, aggregator of queues, or queue group.
628  */
629 enum ice_agg_type {
630         ICE_AGG_TYPE_UNKNOWN = 0,
631         ICE_AGG_TYPE_TC,
632         ICE_AGG_TYPE_AGG, /* aggregator */
633         ICE_AGG_TYPE_VSI,
634         ICE_AGG_TYPE_QG,
635         ICE_AGG_TYPE_Q
636 };
637
638 /* Rate limit types */
639 enum ice_rl_type {
640         ICE_UNKNOWN_BW = 0,
641         ICE_MIN_BW,             /* for CIR profile */
642         ICE_MAX_BW,             /* for EIR profile */
643         ICE_SHARED_BW           /* for shared profile */
644 };
645
646 #define ICE_SCHED_MIN_BW                500             /* in Kbps */
647 #define ICE_SCHED_MAX_BW                100000000       /* in Kbps */
648 #define ICE_SCHED_DFLT_BW               0xFFFFFFFF      /* unlimited */
649 #define ICE_SCHED_NO_PRIORITY           0
650 #define ICE_SCHED_NO_BW_WT              0
651 #define ICE_SCHED_DFLT_RL_PROF_ID       0
652 #define ICE_SCHED_NO_SHARED_RL_PROF_ID  0xFFFF
653 #define ICE_SCHED_DFLT_BW_WT            4
654 #define ICE_SCHED_INVAL_PROF_ID         0xFFFF
655 #define ICE_SCHED_DFLT_BURST_SIZE       (15 * 1024)     /* in bytes (15k) */
656
657 /* Access Macros for Tx Sched RL Profile data */
658 #define ICE_TXSCHED_GET_RL_PROF_ID(p) LE16_TO_CPU((p)->info.profile_id)
659 #define ICE_TXSCHED_GET_RL_MBS(p) LE16_TO_CPU((p)->info.max_burst_size)
660 #define ICE_TXSCHED_GET_RL_MULTIPLIER(p) LE16_TO_CPU((p)->info.rl_multiply)
661 #define ICE_TXSCHED_GET_RL_WAKEUP_MV(p) LE16_TO_CPU((p)->info.wake_up_calc)
662 #define ICE_TXSCHED_GET_RL_ENCODE(p) LE16_TO_CPU((p)->info.rl_encode)
663
664 /* The following tree example shows the naming conventions followed under
665  * ice_port_info struct for default scheduler tree topology.
666  *
667  *                 A tree on a port
668  *                       *                ---> root node
669  *        (TC0)/  /  /  / \  \  \  \(TC7) ---> num_branches (range:1- 8)
670  *            *  *  *  *   *  *  *  *     |
671  *           /                            |
672  *          *                             |
673  *         /                              |-> num_elements (range:1 - 9)
674  *        *                               |   implies num_of_layers
675  *       /                                |
676  *   (a)*                                 |
677  *
678  *  (a) is the last_node_teid(not of type Leaf). A leaf node is created under
679  *  (a) as child node where queues get added, add Tx/Rx queue admin commands;
680  *  need TEID of (a) to add queues.
681  *
682  *  This tree
683  *       -> has 8 branches (one for each TC)
684  *       -> First branch (TC0) has 4 elements
685  *       -> has 4 layers
686  *       -> (a) is the topmost layer node created by firmware on branch 0
687  *
688  *  Note: Above asterisk tree covers only basic terminology and scenario.
689  *  Refer to the documentation for more info.
690  */
691
692  /* Data structure for saving BW information */
693 enum ice_bw_type {
694         ICE_BW_TYPE_PRIO,
695         ICE_BW_TYPE_CIR,
696         ICE_BW_TYPE_CIR_WT,
697         ICE_BW_TYPE_EIR,
698         ICE_BW_TYPE_EIR_WT,
699         ICE_BW_TYPE_SHARED,
700         ICE_BW_TYPE_CNT         /* This must be last */
701 };
702
703 struct ice_bw {
704         u32 bw;
705         u16 bw_alloc;
706 };
707
708 struct ice_bw_type_info {
709         ice_declare_bitmap(bw_t_bitmap, ICE_BW_TYPE_CNT);
710         u8 generic;
711         struct ice_bw cir_bw;
712         struct ice_bw eir_bw;
713         u32 shared_bw;
714 };
715
716 /* VSI queue context structure for given TC */
717 struct ice_q_ctx {
718         u16  q_handle;
719         u32  q_teid;
720         /* bw_t_info saves queue BW information */
721         struct ice_bw_type_info bw_t_info;
722 };
723
724 /* VSI type list entry to locate corresponding VSI/aggregator nodes */
725 struct ice_sched_vsi_info {
726         struct ice_sched_node *vsi_node[ICE_MAX_TRAFFIC_CLASS];
727         struct ice_sched_node *ag_node[ICE_MAX_TRAFFIC_CLASS];
728         u16 max_lanq[ICE_MAX_TRAFFIC_CLASS];
729         /* bw_t_info saves VSI BW information */
730         struct ice_bw_type_info bw_t_info[ICE_MAX_TRAFFIC_CLASS];
731 };
732
733 /* CEE or IEEE 802.1Qaz ETS Configuration data */
734 struct ice_dcb_ets_cfg {
735         u8 willing;
736         u8 cbs;
737         u8 maxtcs;
738         u8 prio_table[ICE_MAX_TRAFFIC_CLASS];
739         u8 tcbwtable[ICE_MAX_TRAFFIC_CLASS];
740         u8 tsatable[ICE_MAX_TRAFFIC_CLASS];
741 };
742
743 /* CEE or IEEE 802.1Qaz PFC Configuration data */
744 struct ice_dcb_pfc_cfg {
745         u8 willing;
746         u8 mbc;
747         u8 pfccap;
748         u8 pfcena;
749 };
750
751 /* CEE or IEEE 802.1Qaz Application Priority data */
752 struct ice_dcb_app_priority_table {
753         u16 prot_id;
754         u8 priority;
755         u8 selector;
756 };
757
758 #define ICE_MAX_USER_PRIORITY           8
759 #define ICE_DCBX_MAX_APPS               32
760 #define ICE_LLDPDU_SIZE                 1500
761 #define ICE_TLV_STATUS_OPER             0x1
762 #define ICE_TLV_STATUS_SYNC             0x2
763 #define ICE_TLV_STATUS_ERR              0x4
764 #ifndef ICE_APP_PROT_ID_FCOE
765 #define ICE_APP_PROT_ID_FCOE            0x8906
766 #endif /* ICE_APP_PROT_ID_FCOE */
767 #ifndef ICE_APP_PROT_ID_ISCSI
768 #define ICE_APP_PROT_ID_ISCSI           0x0cbc
769 #endif /* ICE_APP_PROT_ID_ISCSI */
770 #ifndef ICE_APP_PROT_ID_ISCSI_860
771 #define ICE_APP_PROT_ID_ISCSI_860       0x035c
772 #endif /* ICE_APP_PROT_ID_ISCSI_860 */
773 #ifndef ICE_APP_PROT_ID_FIP
774 #define ICE_APP_PROT_ID_FIP             0x8914
775 #endif /* ICE_APP_PROT_ID_FIP */
776 #define ICE_APP_SEL_ETHTYPE             0x1
777 #define ICE_APP_SEL_TCPIP               0x2
778 #define ICE_CEE_APP_SEL_ETHTYPE         0x0
779 #define ICE_CEE_APP_SEL_TCPIP           0x1
780
781 struct ice_dcbx_cfg {
782         u32 numapps;
783         u32 tlv_status; /* CEE mode TLV status */
784         struct ice_dcb_ets_cfg etscfg;
785         struct ice_dcb_ets_cfg etsrec;
786         struct ice_dcb_pfc_cfg pfc;
787         struct ice_dcb_app_priority_table app[ICE_DCBX_MAX_APPS];
788         u8 dcbx_mode;
789 #define ICE_DCBX_MODE_CEE       0x1
790 #define ICE_DCBX_MODE_IEEE      0x2
791         u8 app_mode;
792 #define ICE_DCBX_APPS_NON_WILLING       0x1
793 };
794
795 struct ice_qos_cfg {
796         struct ice_dcbx_cfg local_dcbx_cfg;     /* Oper/Local Cfg */
797         struct ice_dcbx_cfg desired_dcbx_cfg;   /* CEE Desired Cfg */
798         struct ice_dcbx_cfg remote_dcbx_cfg;    /* Peer Cfg */
799         u8 dcbx_status : 3;                     /* see ICE_DCBX_STATUS_DIS */
800         u8 is_sw_lldp : 1;
801 };
802
803 struct ice_port_info {
804         struct ice_sched_node *root;    /* Root Node per Port */
805         struct ice_hw *hw;              /* back pointer to HW instance */
806         u32 last_node_teid;             /* scheduler last node info */
807         u16 sw_id;                      /* Initial switch ID belongs to port */
808         u16 pf_vf_num;
809         u8 port_state;
810 #define ICE_SCHED_PORT_STATE_INIT       0x0
811 #define ICE_SCHED_PORT_STATE_READY      0x1
812         u8 lport;
813 #define ICE_LPORT_MASK                  0xff
814         u16 dflt_tx_vsi_rule_id;
815         u16 dflt_tx_vsi_num;
816         u16 dflt_rx_vsi_rule_id;
817         u16 dflt_rx_vsi_num;
818         struct ice_fc_info fc;
819         struct ice_mac_info mac;
820         struct ice_phy_info phy;
821         struct ice_lock sched_lock;     /* protect access to TXSched tree */
822         struct ice_sched_node *
823                 sib_head[ICE_MAX_TRAFFIC_CLASS][ICE_AQC_TOPO_MAX_LEVEL_NUM];
824         struct ice_bw_type_info root_node_bw_t_info;
825         struct ice_bw_type_info tc_node_bw_t_info[ICE_MAX_TRAFFIC_CLASS];
826         struct ice_qos_cfg qos_cfg;
827         u8 is_vf:1;
828 };
829
830 struct ice_switch_info {
831         struct LIST_HEAD_TYPE vsi_list_map_head;
832         struct ice_sw_recipe *recp_list;
833         u16 prof_res_bm_init;
834         u16 max_used_prof_index;
835
836         ice_declare_bitmap(prof_res_bm[ICE_MAX_NUM_PROFILES], ICE_MAX_FV_WORDS);
837 };
838
839 /* Port hardware description */
840 struct ice_hw {
841         u8 *hw_addr;
842         void *back;
843         struct ice_aqc_layer_props *layer_info;
844         struct ice_port_info *port_info;
845         /* 2D Array for each Tx Sched RL Profile type */
846         struct ice_sched_rl_profile **cir_profiles;
847         struct ice_sched_rl_profile **eir_profiles;
848         struct ice_sched_rl_profile **srl_profiles;
849         /* PSM clock frequency for calculating RL profile params */
850         u32 psm_clk_freq;
851         u64 debug_mask;         /* BITMAP for debug mask */
852         enum ice_mac_type mac_type;
853
854         u16 fd_ctr_base;        /* FD counter base index */
855         /* pci info */
856         u16 device_id;
857         u16 vendor_id;
858         u16 subsystem_device_id;
859         u16 subsystem_vendor_id;
860         u8 revision_id;
861
862         u8 pf_id;               /* device profile info */
863
864         u16 max_burst_size;     /* driver sets this value */
865
866         /* Tx Scheduler values */
867         u8 num_tx_sched_layers;
868         u8 num_tx_sched_phys_layers;
869         u8 flattened_layers;
870         u8 max_cgds;
871         u8 sw_entry_point_layer;
872         u16 max_children[ICE_AQC_TOPO_MAX_LEVEL_NUM];
873         struct LIST_HEAD_TYPE agg_list; /* lists all aggregator */
874         /* List contain profile ID(s) and other params per layer */
875         struct LIST_HEAD_TYPE rl_prof_list[ICE_AQC_TOPO_MAX_LEVEL_NUM];
876         struct ice_vsi_ctx *vsi_ctx[ICE_MAX_VSI];
877         u8 evb_veb;             /* true for VEB, false for VEPA */
878         u8 reset_ongoing;       /* true if HW is in reset, false otherwise */
879         struct ice_bus_info bus;
880         struct ice_flash_info flash;
881         struct ice_hw_dev_caps dev_caps;        /* device capabilities */
882         struct ice_hw_func_caps func_caps;      /* function capabilities */
883
884         struct ice_switch_info *switch_info;    /* switch filter lists */
885
886         /* Control Queue info */
887         struct ice_ctl_q_info adminq;
888         struct ice_ctl_q_info mailboxq;
889         /* Additional function to send AdminQ command */
890         int (*aq_send_cmd_fn)(void *param, struct ice_aq_desc *desc,
891                               void *buf, u16 buf_size);
892         void *aq_send_cmd_param;
893         u8 dcf_enabled;         /* Device Config Function */
894
895         u8 api_branch;          /* API branch version */
896         u8 api_maj_ver;         /* API major version */
897         u8 api_min_ver;         /* API minor version */
898         u8 api_patch;           /* API patch version */
899         u8 fw_branch;           /* firmware branch version */
900         u8 fw_maj_ver;          /* firmware major version */
901         u8 fw_min_ver;          /* firmware minor version */
902         u8 fw_patch;            /* firmware patch version */
903         u32 fw_build;           /* firmware build number */
904
905 /* Device max aggregate bandwidths corresponding to the GL_PWR_MODE_CTL
906  * register. Used for determining the ITR/INTRL granularity during
907  * initialization.
908  */
909 #define ICE_MAX_AGG_BW_200G     0x0
910 #define ICE_MAX_AGG_BW_100G     0X1
911 #define ICE_MAX_AGG_BW_50G      0x2
912 #define ICE_MAX_AGG_BW_25G      0x3
913         /* ITR granularity for different speeds */
914 #define ICE_ITR_GRAN_ABOVE_25   2
915 #define ICE_ITR_GRAN_MAX_25     4
916         /* ITR granularity in 1 us */
917         u8 itr_gran;
918         /* INTRL granularity for different speeds */
919 #define ICE_INTRL_GRAN_ABOVE_25 4
920 #define ICE_INTRL_GRAN_MAX_25   8
921         /* INTRL granularity in 1 us */
922         u8 intrl_gran;
923
924         u8 ucast_shared;        /* true if VSIs can share unicast addr */
925
926 #define ICE_PHY_PER_NAC         1
927 #define ICE_MAX_QUAD            2
928 #define ICE_NUM_QUAD_TYPE       2
929 #define ICE_PORTS_PER_QUAD      4
930 #define ICE_PHY_0_LAST_QUAD     1
931 #define ICE_PORTS_PER_PHY       8
932 #define ICE_NUM_EXTERNAL_PORTS          ICE_PORTS_PER_PHY
933
934         /* Active package version (currently active) */
935         struct ice_pkg_ver active_pkg_ver;
936         u32 active_track_id;
937         u8 active_pkg_name[ICE_PKG_NAME_SIZE];
938         u8 active_pkg_in_nvm;
939
940         enum ice_aq_err pkg_dwnld_status;
941
942         /* Driver's package ver - (from the Ice Metadata section) */
943         struct ice_pkg_ver pkg_ver;
944         u8 pkg_name[ICE_PKG_NAME_SIZE];
945
946         /* Driver's Ice segment format version and id (from the Ice seg) */
947         struct ice_pkg_ver ice_seg_fmt_ver;
948         u8 ice_seg_id[ICE_SEG_ID_SIZE];
949
950         /* Pointer to the ice segment */
951         struct ice_seg *seg;
952
953         /* Pointer to allocated copy of pkg memory */
954         u8 *pkg_copy;
955         u32 pkg_size;
956
957         /* tunneling info */
958         struct ice_lock tnl_lock;
959         struct ice_tunnel_table tnl;
960
961         struct ice_acl_tbl *acl_tbl;
962         struct ice_fd_hw_prof **acl_prof;
963         u16 acl_fltr_cnt[ICE_FLTR_PTYPE_MAX];
964         /* HW block tables */
965         struct ice_blk_info blk[ICE_BLK_COUNT];
966         struct ice_lock fl_profs_locks[ICE_BLK_COUNT];  /* lock fltr profiles */
967         struct LIST_HEAD_TYPE fl_profs[ICE_BLK_COUNT];
968         /* Flow Director filter info */
969         int fdir_active_fltr;
970
971         struct ice_lock fdir_fltr_lock; /* protect Flow Director */
972         struct LIST_HEAD_TYPE fdir_list_head;
973
974         /* Book-keeping of side-band filter count per flow-type.
975          * This is used to detect and handle input set changes for
976          * respective flow-type.
977          */
978         u16 fdir_fltr_cnt[ICE_FLTR_PTYPE_MAX];
979
980         struct ice_fd_hw_prof **fdir_prof;
981         ice_declare_bitmap(fdir_perfect_fltr, ICE_FLTR_PTYPE_MAX);
982         struct ice_lock rss_locks;      /* protect RSS configuration */
983         struct LIST_HEAD_TYPE rss_list_head;
984 };
985
986 /* Statistics collected by each port, VSI, VEB, and S-channel */
987 struct ice_eth_stats {
988         u64 rx_bytes;                   /* gorc */
989         u64 rx_unicast;                 /* uprc */
990         u64 rx_multicast;               /* mprc */
991         u64 rx_broadcast;               /* bprc */
992         u64 rx_discards;                /* rdpc */
993         u64 rx_unknown_protocol;        /* rupp */
994         u64 tx_bytes;                   /* gotc */
995         u64 tx_unicast;                 /* uptc */
996         u64 tx_multicast;               /* mptc */
997         u64 tx_broadcast;               /* bptc */
998         u64 tx_discards;                /* tdpc */
999         u64 tx_errors;                  /* tepc */
1000         u64 rx_no_desc;                 /* repc */
1001         u64 rx_errors;                  /* repc */
1002 };
1003
1004 #define ICE_MAX_UP      8
1005
1006 /* Statistics collected per VEB per User Priority (UP) for up to 8 UPs */
1007 struct ice_veb_up_stats {
1008         u64 up_rx_pkts[ICE_MAX_UP];
1009         u64 up_rx_bytes[ICE_MAX_UP];
1010         u64 up_tx_pkts[ICE_MAX_UP];
1011         u64 up_tx_bytes[ICE_MAX_UP];
1012 };
1013
1014 /* Statistics collected by the MAC */
1015 struct ice_hw_port_stats {
1016         /* eth stats collected by the port */
1017         struct ice_eth_stats eth;
1018         /* additional port specific stats */
1019         u64 tx_dropped_link_down;       /* tdold */
1020         u64 crc_errors;                 /* crcerrs */
1021         u64 illegal_bytes;              /* illerrc */
1022         u64 error_bytes;                /* errbc */
1023         u64 mac_local_faults;           /* mlfc */
1024         u64 mac_remote_faults;          /* mrfc */
1025         u64 rx_len_errors;              /* rlec */
1026         u64 link_xon_rx;                /* lxonrxc */
1027         u64 link_xoff_rx;               /* lxoffrxc */
1028         u64 link_xon_tx;                /* lxontxc */
1029         u64 link_xoff_tx;               /* lxofftxc */
1030         u64 priority_xon_rx[8];         /* pxonrxc[8] */
1031         u64 priority_xoff_rx[8];        /* pxoffrxc[8] */
1032         u64 priority_xon_tx[8];         /* pxontxc[8] */
1033         u64 priority_xoff_tx[8];        /* pxofftxc[8] */
1034         u64 priority_xon_2_xoff[8];     /* pxon2offc[8] */
1035         u64 rx_size_64;                 /* prc64 */
1036         u64 rx_size_127;                /* prc127 */
1037         u64 rx_size_255;                /* prc255 */
1038         u64 rx_size_511;                /* prc511 */
1039         u64 rx_size_1023;               /* prc1023 */
1040         u64 rx_size_1522;               /* prc1522 */
1041         u64 rx_size_big;                /* prc9522 */
1042         u64 rx_undersize;               /* ruc */
1043         u64 rx_fragments;               /* rfc */
1044         u64 rx_oversize;                /* roc */
1045         u64 rx_jabber;                  /* rjc */
1046         u64 tx_size_64;                 /* ptc64 */
1047         u64 tx_size_127;                /* ptc127 */
1048         u64 tx_size_255;                /* ptc255 */
1049         u64 tx_size_511;                /* ptc511 */
1050         u64 tx_size_1023;               /* ptc1023 */
1051         u64 tx_size_1522;               /* ptc1522 */
1052         u64 tx_size_big;                /* ptc9522 */
1053         u64 mac_short_pkt_dropped;      /* mspdc */
1054         /* flow director stats */
1055         u32 fd_sb_status;
1056         u64 fd_sb_match;
1057 };
1058
1059 enum ice_sw_fwd_act_type {
1060         ICE_FWD_TO_VSI = 0,
1061         ICE_FWD_TO_VSI_LIST, /* Do not use this when adding filter */
1062         ICE_FWD_TO_Q,
1063         ICE_FWD_TO_QGRP,
1064         ICE_DROP_PACKET,
1065         ICE_INVAL_ACT
1066 };
1067
1068 /* Checksum and Shadow RAM pointers */
1069 #define ICE_SR_NVM_CTRL_WORD                    0x00
1070 #define ICE_SR_PHY_ANALOG_PTR                   0x04
1071 #define ICE_SR_OPTION_ROM_PTR                   0x05
1072 #define ICE_SR_RO_PCIR_REGS_AUTO_LOAD_PTR       0x06
1073 #define ICE_SR_AUTO_GENERATED_POINTERS_PTR      0x07
1074 #define ICE_SR_PCIR_REGS_AUTO_LOAD_PTR          0x08
1075 #define ICE_SR_EMP_GLOBAL_MODULE_PTR            0x09
1076 #define ICE_SR_EMP_IMAGE_PTR                    0x0B
1077 #define ICE_SR_PE_IMAGE_PTR                     0x0C
1078 #define ICE_SR_CSR_PROTECTED_LIST_PTR           0x0D
1079 #define ICE_SR_MNG_CFG_PTR                      0x0E
1080 #define ICE_SR_EMP_MODULE_PTR                   0x0F
1081 #define ICE_SR_PBA_BLOCK_PTR                    0x16
1082 #define ICE_SR_BOOT_CFG_PTR                     0x132
1083 #define ICE_SR_NVM_WOL_CFG                      0x19
1084 #define ICE_NVM_OROM_VER_OFF                    0x02
1085 #define ICE_SR_NVM_DEV_STARTER_VER              0x18
1086 #define ICE_SR_ALTERNATE_SAN_MAC_ADDR_PTR       0x27
1087 #define ICE_SR_PERMANENT_SAN_MAC_ADDR_PTR       0x28
1088 #define ICE_SR_NVM_MAP_VER                      0x29
1089 #define ICE_SR_NVM_IMAGE_VER                    0x2A
1090 #define ICE_SR_NVM_STRUCTURE_VER                0x2B
1091 #define ICE_SR_NVM_EETRACK_LO                   0x2D
1092 #define ICE_SR_NVM_EETRACK_HI                   0x2E
1093 #define ICE_NVM_VER_LO_SHIFT                    0
1094 #define ICE_NVM_VER_LO_MASK                     (0xff << ICE_NVM_VER_LO_SHIFT)
1095 #define ICE_NVM_VER_HI_SHIFT                    12
1096 #define ICE_NVM_VER_HI_MASK                     (0xf << ICE_NVM_VER_HI_SHIFT)
1097 #define ICE_OEM_EETRACK_ID                      0xffffffff
1098 #define ICE_OROM_VER_PATCH_SHIFT                0
1099 #define ICE_OROM_VER_PATCH_MASK         (0xff << ICE_OROM_VER_PATCH_SHIFT)
1100 #define ICE_OROM_VER_BUILD_SHIFT                8
1101 #define ICE_OROM_VER_BUILD_MASK         (0xffff << ICE_OROM_VER_BUILD_SHIFT)
1102 #define ICE_OROM_VER_SHIFT                      24
1103 #define ICE_OROM_VER_MASK                       (0xff << ICE_OROM_VER_SHIFT)
1104 #define ICE_SR_VPD_PTR                          0x2F
1105 #define ICE_SR_PXE_SETUP_PTR                    0x30
1106 #define ICE_SR_PXE_CFG_CUST_OPTIONS_PTR         0x31
1107 #define ICE_SR_NVM_ORIGINAL_EETRACK_LO          0x34
1108 #define ICE_SR_NVM_ORIGINAL_EETRACK_HI          0x35
1109 #define ICE_SR_VLAN_CFG_PTR                     0x37
1110 #define ICE_SR_POR_REGS_AUTO_LOAD_PTR           0x38
1111 #define ICE_SR_EMPR_REGS_AUTO_LOAD_PTR          0x3A
1112 #define ICE_SR_GLOBR_REGS_AUTO_LOAD_PTR         0x3B
1113 #define ICE_SR_CORER_REGS_AUTO_LOAD_PTR         0x3C
1114 #define ICE_SR_PHY_CFG_SCRIPT_PTR               0x3D
1115 #define ICE_SR_PCIE_ALT_AUTO_LOAD_PTR           0x3E
1116 #define ICE_SR_SW_CHECKSUM_WORD                 0x3F
1117 #define ICE_SR_PFA_PTR                          0x40
1118 #define ICE_SR_1ST_SCRATCH_PAD_PTR              0x41
1119 #define ICE_SR_1ST_NVM_BANK_PTR                 0x42
1120 #define ICE_SR_NVM_BANK_SIZE                    0x43
1121 #define ICE_SR_1ST_OROM_BANK_PTR                0x44
1122 #define ICE_SR_OROM_BANK_SIZE                   0x45
1123 #define ICE_SR_NETLIST_BANK_PTR                 0x46
1124 #define ICE_SR_NETLIST_BANK_SIZE                0x47
1125 #define ICE_SR_EMP_SR_SETTINGS_PTR              0x48
1126 #define ICE_SR_CONFIGURATION_METADATA_PTR       0x4D
1127 #define ICE_SR_IMMEDIATE_VALUES_PTR             0x4E
1128 #define ICE_SR_LINK_DEFAULT_OVERRIDE_PTR        0x134
1129 #define ICE_SR_POR_REGISTERS_AUTOLOAD_PTR       0x118
1130
1131 /* CSS Header words */
1132 #define ICE_NVM_CSS_SREV_L                      0x14
1133 #define ICE_NVM_CSS_SREV_H                      0x15
1134
1135 /* Size in bytes of Option ROM trailer */
1136 #define ICE_NVM_OROM_TRAILER_LENGTH             660
1137
1138 /* Auxiliary field, mask and shift definition for Shadow RAM and NVM Flash */
1139 #define ICE_SR_VPD_SIZE_WORDS           512
1140 #define ICE_SR_PCIE_ALT_SIZE_WORDS      512
1141 #define ICE_SR_CTRL_WORD_1_S            0x06
1142 #define ICE_SR_CTRL_WORD_1_M            (0x03 << ICE_SR_CTRL_WORD_1_S)
1143 #define ICE_SR_CTRL_WORD_VALID          0x1
1144 #define ICE_SR_CTRL_WORD_OROM_BANK      BIT(3)
1145 #define ICE_SR_CTRL_WORD_NETLIST_BANK   BIT(4)
1146 #define ICE_SR_CTRL_WORD_NVM_BANK       BIT(5)
1147
1148 #define ICE_SR_NVM_PTR_4KB_UNITS        BIT(15)
1149
1150 /* Shadow RAM related */
1151 #define ICE_SR_SECTOR_SIZE_IN_WORDS     0x800
1152 #define ICE_SR_BUF_ALIGNMENT            4096
1153 #define ICE_SR_WORDS_IN_1KB             512
1154 /* Checksum should be calculated such that after adding all the words,
1155  * including the checksum word itself, the sum should be 0xBABA.
1156  */
1157 #define ICE_SR_SW_CHECKSUM_BASE         0xBABA
1158
1159 /* Link override related */
1160 #define ICE_SR_PFA_LINK_OVERRIDE_WORDS          10
1161 #define ICE_SR_PFA_LINK_OVERRIDE_PHY_WORDS      4
1162 #define ICE_SR_PFA_LINK_OVERRIDE_OFFSET         2
1163 #define ICE_SR_PFA_LINK_OVERRIDE_FEC_OFFSET     1
1164 #define ICE_SR_PFA_LINK_OVERRIDE_PHY_OFFSET     2
1165 #define ICE_FW_API_LINK_OVERRIDE_MAJ            1
1166 #define ICE_FW_API_LINK_OVERRIDE_MIN            5
1167 #define ICE_FW_API_LINK_OVERRIDE_PATCH          2
1168
1169 #define ICE_PBA_FLAG_DFLT               0xFAFA
1170 /* Hash redirection LUT for VSI - maximum array size */
1171 #define ICE_VSIQF_HLUT_ARRAY_SIZE       ((VSIQF_HLUT_MAX_INDEX + 1) * 4)
1172
1173 /*
1174  * Defines for values in the VF_PE_DB_SIZE bits in the GLPCI_LBARCTRL register.
1175  * This is needed to determine the BAR0 space for the VFs
1176  */
1177 #define GLPCI_LBARCTRL_VF_PE_DB_SIZE_0KB 0x0
1178 #define GLPCI_LBARCTRL_VF_PE_DB_SIZE_8KB 0x1
1179 #define GLPCI_LBARCTRL_VF_PE_DB_SIZE_64KB 0x2
1180
1181 /* AQ API version for LLDP_FILTER_CONTROL */
1182 #define ICE_FW_API_LLDP_FLTR_MAJ        1
1183 #define ICE_FW_API_LLDP_FLTR_MIN        7
1184 #define ICE_FW_API_LLDP_FLTR_PATCH      1
1185 #endif /* _ICE_TYPE_H_ */