0001
0002
0003
0004 #ifndef _E1000_82575_H_
0005 #define _E1000_82575_H_
0006
0007 void igb_shutdown_serdes_link_82575(struct e1000_hw *hw);
0008 void igb_power_up_serdes_link_82575(struct e1000_hw *hw);
0009 void igb_power_down_phy_copper_82575(struct e1000_hw *hw);
0010 void igb_rx_fifo_flush_82575(struct e1000_hw *hw);
0011 s32 igb_read_i2c_byte(struct e1000_hw *hw, u8 byte_offset, u8 dev_addr,
0012 u8 *data);
0013 s32 igb_write_i2c_byte(struct e1000_hw *hw, u8 byte_offset, u8 dev_addr,
0014 u8 data);
0015
0016 #define ID_LED_DEFAULT_82575_SERDES ((ID_LED_DEF1_DEF2 << 12) | \
0017 (ID_LED_DEF1_DEF2 << 8) | \
0018 (ID_LED_DEF1_DEF2 << 4) | \
0019 (ID_LED_OFF1_ON2))
0020
0021 #define E1000_RAR_ENTRIES_82575 16
0022 #define E1000_RAR_ENTRIES_82576 24
0023 #define E1000_RAR_ENTRIES_82580 24
0024 #define E1000_RAR_ENTRIES_I350 32
0025
0026 #define E1000_SW_SYNCH_MB 0x00000100
0027 #define E1000_STAT_DEV_RST_SET 0x00100000
0028 #define E1000_CTRL_DEV_RST 0x20000000
0029
0030
0031 #define E1000_SRRCTL_BSIZEPKT_SHIFT 10
0032 #define E1000_SRRCTL_BSIZEHDRSIZE_SHIFT 2
0033 #define E1000_SRRCTL_DESCTYPE_ADV_ONEBUF 0x02000000
0034 #define E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS 0x0A000000
0035 #define E1000_SRRCTL_DROP_EN 0x80000000
0036 #define E1000_SRRCTL_TIMESTAMP 0x40000000
0037
0038
0039 #define E1000_MRQC_ENABLE_RSS_MQ 0x00000002
0040 #define E1000_MRQC_ENABLE_VMDQ 0x00000003
0041 #define E1000_MRQC_RSS_FIELD_IPV4_UDP 0x00400000
0042 #define E1000_MRQC_ENABLE_VMDQ_RSS_MQ 0x00000005
0043 #define E1000_MRQC_RSS_FIELD_IPV6_UDP 0x00800000
0044 #define E1000_MRQC_RSS_FIELD_IPV6_UDP_EX 0x01000000
0045
0046 #define E1000_EICR_TX_QUEUE ( \
0047 E1000_EICR_TX_QUEUE0 | \
0048 E1000_EICR_TX_QUEUE1 | \
0049 E1000_EICR_TX_QUEUE2 | \
0050 E1000_EICR_TX_QUEUE3)
0051
0052 #define E1000_EICR_RX_QUEUE ( \
0053 E1000_EICR_RX_QUEUE0 | \
0054 E1000_EICR_RX_QUEUE1 | \
0055 E1000_EICR_RX_QUEUE2 | \
0056 E1000_EICR_RX_QUEUE3)
0057
0058
0059 #define E1000_IMIREXT_SIZE_BP 0x00001000
0060 #define E1000_IMIREXT_CTRL_BP 0x00080000
0061
0062
0063 union e1000_adv_rx_desc {
0064 struct {
0065 __le64 pkt_addr;
0066 __le64 hdr_addr;
0067 } read;
0068 struct {
0069 struct {
0070 struct {
0071 __le16 pkt_info;
0072 __le16 hdr_info;
0073 } lo_dword;
0074 union {
0075 __le32 rss;
0076 struct {
0077 __le16 ip_id;
0078 __le16 csum;
0079 } csum_ip;
0080 } hi_dword;
0081 } lower;
0082 struct {
0083 __le32 status_error;
0084 __le16 length;
0085 __le16 vlan;
0086 } upper;
0087 } wb;
0088 };
0089
0090 #define E1000_RXDADV_HDRBUFLEN_MASK 0x7FE0
0091 #define E1000_RXDADV_HDRBUFLEN_SHIFT 5
0092 #define E1000_RXDADV_STAT_TS 0x10000
0093 #define E1000_RXDADV_STAT_TSIP 0x08000
0094
0095
0096 union e1000_adv_tx_desc {
0097 struct {
0098 __le64 buffer_addr;
0099 __le32 cmd_type_len;
0100 __le32 olinfo_status;
0101 } read;
0102 struct {
0103 __le64 rsvd;
0104 __le32 nxtseq_seed;
0105 __le32 status;
0106 } wb;
0107 };
0108
0109
0110 #define E1000_ADVTXD_MAC_TSTAMP 0x00080000
0111 #define E1000_ADVTXD_DTYP_CTXT 0x00200000
0112 #define E1000_ADVTXD_DTYP_DATA 0x00300000
0113 #define E1000_ADVTXD_DCMD_EOP 0x01000000
0114 #define E1000_ADVTXD_DCMD_IFCS 0x02000000
0115 #define E1000_ADVTXD_DCMD_RS 0x08000000
0116 #define E1000_ADVTXD_DCMD_DEXT 0x20000000
0117 #define E1000_ADVTXD_DCMD_VLE 0x40000000
0118 #define E1000_ADVTXD_DCMD_TSE 0x80000000
0119 #define E1000_ADVTXD_PAYLEN_SHIFT 14
0120
0121
0122 struct e1000_adv_tx_context_desc {
0123 __le32 vlan_macip_lens;
0124 __le32 seqnum_seed;
0125 __le32 type_tucmd_mlhl;
0126 __le32 mss_l4len_idx;
0127 };
0128
0129 #define E1000_ADVTXD_MACLEN_SHIFT 9
0130 #define E1000_ADVTXD_TUCMD_L4T_UDP 0x00000000
0131 #define E1000_ADVTXD_TUCMD_IPV4 0x00000400
0132 #define E1000_ADVTXD_TUCMD_L4T_TCP 0x00000800
0133 #define E1000_ADVTXD_TUCMD_L4T_SCTP 0x00001000
0134
0135 #define E1000_ADVTXD_L4LEN_SHIFT 8
0136 #define E1000_ADVTXD_MSS_SHIFT 16
0137
0138
0139
0140
0141 #define E1000_TXDCTL_QUEUE_ENABLE 0x02000000
0142
0143
0144
0145 #define E1000_RXDCTL_QUEUE_ENABLE 0x02000000
0146
0147
0148 #define E1000_DCA_CTRL_DCA_MODE_DISABLE 0x01
0149 #define E1000_DCA_CTRL_DCA_MODE_CB2 0x02
0150
0151 #define E1000_DCA_RXCTRL_CPUID_MASK 0x0000001F
0152 #define E1000_DCA_RXCTRL_DESC_DCA_EN BIT(5)
0153 #define E1000_DCA_RXCTRL_HEAD_DCA_EN BIT(6)
0154 #define E1000_DCA_RXCTRL_DATA_DCA_EN BIT(7)
0155 #define E1000_DCA_RXCTRL_DESC_RRO_EN BIT(9)
0156
0157 #define E1000_DCA_TXCTRL_CPUID_MASK 0x0000001F
0158 #define E1000_DCA_TXCTRL_DESC_DCA_EN BIT(5)
0159 #define E1000_DCA_TXCTRL_DESC_RRO_EN BIT(9)
0160 #define E1000_DCA_TXCTRL_TX_WB_RO_EN BIT(11)
0161 #define E1000_DCA_TXCTRL_DATA_RRO_EN BIT(13)
0162
0163
0164 #define E1000_DCA_TXCTRL_CPUID_MASK_82576 0xFF000000
0165 #define E1000_DCA_RXCTRL_CPUID_MASK_82576 0xFF000000
0166 #define E1000_DCA_TXCTRL_CPUID_SHIFT 24
0167 #define E1000_DCA_RXCTRL_CPUID_SHIFT 24
0168
0169
0170 #define E1000_ETQF_FILTER_ENABLE BIT(26)
0171 #define E1000_ETQF_1588 BIT(30)
0172 #define E1000_ETQF_IMM_INT BIT(29)
0173 #define E1000_ETQF_QUEUE_ENABLE BIT(31)
0174 #define E1000_ETQF_QUEUE_SHIFT 16
0175 #define E1000_ETQF_QUEUE_MASK 0x00070000
0176 #define E1000_ETQF_ETYPE_MASK 0x0000FFFF
0177
0178
0179 #define E1000_FTQF_VF_BP 0x00008000
0180 #define E1000_FTQF_1588_TIME_STAMP 0x08000000
0181 #define E1000_FTQF_MASK 0xF0000000
0182 #define E1000_FTQF_MASK_PROTO_BP 0x10000000
0183 #define E1000_FTQF_MASK_SOURCE_PORT_BP 0x80000000
0184
0185 #define E1000_NVM_APME_82575 0x0400
0186 #define MAX_NUM_VFS 8
0187
0188 #define E1000_DTXSWC_MAC_SPOOF_MASK 0x000000FF
0189 #define E1000_DTXSWC_VLAN_SPOOF_MASK 0x0000FF00
0190 #define E1000_DTXSWC_LLE_MASK 0x00FF0000
0191 #define E1000_DTXSWC_VLAN_SPOOF_SHIFT 8
0192 #define E1000_DTXSWC_VMDQ_LOOPBACK_EN BIT(31)
0193
0194
0195 #define E1000_VT_CTL_DEFAULT_POOL_SHIFT 7
0196 #define E1000_VT_CTL_DEFAULT_POOL_MASK (0x7 << E1000_VT_CTL_DEFAULT_POOL_SHIFT)
0197
0198
0199 #define E1000_VT_CTL_IGNORE_MAC BIT(28)
0200 #define E1000_VT_CTL_DISABLE_DEF_POOL BIT(29)
0201 #define E1000_VT_CTL_VM_REPL_EN BIT(30)
0202
0203
0204 #define E1000_VMOLR_RLPML_MASK 0x00003FFF
0205 #define E1000_VMOLR_LPE 0x00010000
0206 #define E1000_VMOLR_RSSE 0x00020000
0207 #define E1000_VMOLR_AUPE 0x01000000
0208 #define E1000_VMOLR_ROMPE 0x02000000
0209 #define E1000_VMOLR_ROPE 0x04000000
0210 #define E1000_VMOLR_BAM 0x08000000
0211 #define E1000_VMOLR_MPME 0x10000000
0212 #define E1000_VMOLR_STRVLAN 0x40000000
0213 #define E1000_VMOLR_STRCRC 0x80000000
0214
0215 #define E1000_DVMOLR_HIDEVLAN 0x20000000
0216 #define E1000_DVMOLR_STRVLAN 0x40000000
0217 #define E1000_DVMOLR_STRCRC 0x80000000
0218
0219 #define E1000_VLVF_ARRAY_SIZE 32
0220 #define E1000_VLVF_VLANID_MASK 0x00000FFF
0221 #define E1000_VLVF_POOLSEL_SHIFT 12
0222 #define E1000_VLVF_POOLSEL_MASK (0xFF << E1000_VLVF_POOLSEL_SHIFT)
0223 #define E1000_VLVF_LVLAN 0x00100000
0224 #define E1000_VLVF_VLANID_ENABLE 0x80000000
0225
0226 #define E1000_VMVIR_VLANA_DEFAULT 0x40000000
0227 #define E1000_VMVIR_VLANA_NEVER 0x80000000
0228
0229 #define E1000_IOVCTL 0x05BBC
0230 #define E1000_IOVCTL_REUSE_VFQ 0x00000001
0231
0232 #define E1000_RPLOLR_STRVLAN 0x40000000
0233 #define E1000_RPLOLR_STRCRC 0x80000000
0234
0235 #define E1000_DTXCTL_8023LL 0x0004
0236 #define E1000_DTXCTL_VLAN_ADDED 0x0008
0237 #define E1000_DTXCTL_OOS_ENABLE 0x0010
0238 #define E1000_DTXCTL_MDP_EN 0x0020
0239 #define E1000_DTXCTL_SPOOF_INT 0x0040
0240
0241 #define E1000_EEPROM_PCS_AUTONEG_DISABLE_BIT BIT(14)
0242
0243 #define ALL_QUEUES 0xFFFF
0244
0245
0246 #define E1000_RXPBS_SIZE_MASK_82576 0x0000007F
0247 void igb_vmdq_set_anti_spoofing_pf(struct e1000_hw *, bool, int);
0248 void igb_vmdq_set_loopback_pf(struct e1000_hw *, bool);
0249 void igb_vmdq_set_replication_pf(struct e1000_hw *, bool);
0250 u16 igb_rxpbs_adjust_82580(u32 data);
0251 s32 igb_read_emi_reg(struct e1000_hw *, u16 addr, u16 *data);
0252 s32 igb_set_eee_i350(struct e1000_hw *, bool adv1G, bool adv100M);
0253 s32 igb_set_eee_i354(struct e1000_hw *, bool adv1G, bool adv100M);
0254 s32 igb_get_eee_status_i354(struct e1000_hw *hw, bool *status);
0255
0256 #define E1000_I2C_THERMAL_SENSOR_ADDR 0xF8
0257 #define E1000_EMC_INTERNAL_DATA 0x00
0258 #define E1000_EMC_INTERNAL_THERM_LIMIT 0x20
0259 #define E1000_EMC_DIODE1_DATA 0x01
0260 #define E1000_EMC_DIODE1_THERM_LIMIT 0x19
0261 #define E1000_EMC_DIODE2_DATA 0x23
0262 #define E1000_EMC_DIODE2_THERM_LIMIT 0x1A
0263 #define E1000_EMC_DIODE3_DATA 0x2A
0264 #define E1000_EMC_DIODE3_THERM_LIMIT 0x30
0265 #endif