1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2018 Intel Corporation */
7 /* forward declaration */
8 void igc_rx_fifo_flush_base(struct igc_hw *hw);
9 void igc_power_down_phy_copper_base(struct igc_hw *hw);
10 bool igc_is_device_id_i225(struct igc_hw *hw);
11 bool igc_is_device_id_i226(struct igc_hw *hw);
13 /* Transmit Descriptor - Advanced */
14 union igc_adv_tx_desc {
16 __le64 buffer_addr; /* Address of descriptor's data buf */
21 __le64 rsvd; /* Reserved */
27 /* Context descriptors */
28 struct igc_adv_tx_context_desc {
29 __le32 vlan_macip_lens;
31 __le32 type_tucmd_mlhl;
35 /* Adv Transmit Descriptor Config Masks */
36 #define IGC_ADVTXD_MAC_TSTAMP 0x00080000 /* IEEE1588 Timestamp packet */
37 #define IGC_ADVTXD_DTYP_CTXT 0x00200000 /* Advanced Context Descriptor */
38 #define IGC_ADVTXD_DTYP_DATA 0x00300000 /* Advanced Data Descriptor */
39 #define IGC_ADVTXD_DCMD_EOP 0x01000000 /* End of Packet */
40 #define IGC_ADVTXD_DCMD_IFCS 0x02000000 /* Insert FCS (Ethernet CRC) */
41 #define IGC_ADVTXD_DCMD_RS 0x08000000 /* Report Status */
42 #define IGC_ADVTXD_DCMD_DEXT 0x20000000 /* Descriptor extension (1=Adv) */
43 #define IGC_ADVTXD_DCMD_VLE 0x40000000 /* VLAN pkt enable */
44 #define IGC_ADVTXD_DCMD_TSE 0x80000000 /* TCP Seg enable */
45 #define IGC_ADVTXD_PAYLEN_SHIFT 14 /* Adv desc PAYLEN shift */
47 #define IGC_RAR_ENTRIES 16
49 /* Receive Descriptor - Advanced */
50 union igc_adv_rx_desc {
52 __le64 pkt_addr; /* Packet buffer address */
53 __le64 hdr_addr; /* Header buffer address */
60 __le16 pkt_info; /*RSS type, Pkt type*/
61 /* Split Header, header buffer len */
66 __le32 rss; /* RSS Hash */
68 __le16 ip_id; /* IP id */
69 __le16 csum; /* Packet Checksum */
74 __le32 status_error; /* ext status/error */
75 __le16 length; /* Packet length */
76 __le16 vlan; /* VLAN tag */
81 /* Additional Transmit Descriptor Control definitions */
82 #define IGC_TXDCTL_QUEUE_ENABLE 0x02000000 /* Ena specific Tx Queue */
83 #define IGC_TXDCTL_SWFLUSH 0x04000000 /* Transmit Software Flush */
85 /* Additional Receive Descriptor Control definitions */
86 #define IGC_RXDCTL_QUEUE_ENABLE 0x02000000 /* Ena specific Rx Queue */
87 #define IGC_RXDCTL_SWFLUSH 0x04000000 /* Receive Software Flush */
89 /* SRRCTL bit definitions */
90 #define IGC_SRRCTL_BSIZEPKT_MASK GENMASK(6, 0)
91 #define IGC_SRRCTL_BSIZEPKT(x) FIELD_PREP(IGC_SRRCTL_BSIZEPKT_MASK, \
92 (x) / 1024) /* in 1 KB resolution */
93 #define IGC_SRRCTL_BSIZEHDR_MASK GENMASK(13, 8)
94 #define IGC_SRRCTL_BSIZEHDR(x) FIELD_PREP(IGC_SRRCTL_BSIZEHDR_MASK, \
95 (x) / 64) /* in 64 bytes resolution */
96 #define IGC_SRRCTL_DESCTYPE_MASK GENMASK(27, 25)
97 #define IGC_SRRCTL_DESCTYPE_ADV_ONEBUF FIELD_PREP(IGC_SRRCTL_DESCTYPE_MASK, 1)
99 #endif /* _IGC_BASE_H */