Home | History | Annotate | Line # | Download | only in pci
if_ixlvar.h revision 1.7
      1  1.7  yamaguch /*	$NetBSD: if_ixlvar.h,v 1.7 2020/09/08 10:05:47 yamaguchi Exp $	*/
      2  1.1  yamaguch 
      3  1.1  yamaguch /*
      4  1.1  yamaguch  * Copyright (c) 2019 Internet Initiative Japan, Inc.
      5  1.1  yamaguch  * All rights reserved.
      6  1.1  yamaguch  *
      7  1.1  yamaguch  * Redistribution and use in source and binary forms, with or without
      8  1.1  yamaguch  * modification, are permitted provided that the following conditions
      9  1.1  yamaguch  * are met:
     10  1.1  yamaguch  * 1. Redistributions of source code must retain the above copyright
     11  1.1  yamaguch  *    notice, this list of conditions and the following disclaimer.
     12  1.1  yamaguch  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  yamaguch  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  yamaguch  *    documentation and/or other materials provided with the distribution.
     15  1.1  yamaguch  *
     16  1.1  yamaguch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17  1.1  yamaguch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  1.1  yamaguch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  1.1  yamaguch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  1.1  yamaguch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  1.1  yamaguch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  1.1  yamaguch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  1.1  yamaguch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  1.1  yamaguch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  1.1  yamaguch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  1.1  yamaguch  * POSSIBILITY OF SUCH DAMAGE.
     27  1.1  yamaguch  */
     28  1.1  yamaguch 
     29  1.1  yamaguch #ifndef _DEV_PCI_IF_IXLVAR_H_
     30  1.1  yamaguch #define _DEV_PCI_IF_IXLVAR_H_
     31  1.1  yamaguch 
     32  1.1  yamaguch enum i40e_filter_pctype {
     33  1.1  yamaguch 	/* Note: Values 0-28 are reserved for future use.
     34  1.1  yamaguch 	 * Value 29, 30, 32 are not supported on XL710 and X710.
     35  1.1  yamaguch 	 */
     36  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP        = 29,
     37  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP      = 30,
     38  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV4_UDP                = 31,
     39  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK     = 32,
     40  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV4_TCP                = 33,
     41  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV4_SCTP               = 34,
     42  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV4_OTHER              = 35,
     43  1.1  yamaguch 	I40E_FILTER_PCTYPE_FRAG_IPV4                    = 36,
     44  1.1  yamaguch 	/* Note: Values 37-38 are reserved for future use.
     45  1.1  yamaguch 	 * Value 39, 40, 42 are not supported on XL710 and X710.
     46  1.1  yamaguch 	 */
     47  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP        = 39,
     48  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP      = 40,
     49  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV6_UDP                = 41,
     50  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK     = 42,
     51  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV6_TCP                = 43,
     52  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV6_SCTP               = 44,
     53  1.1  yamaguch 	I40E_FILTER_PCTYPE_NONF_IPV6_OTHER              = 45,
     54  1.1  yamaguch 	I40E_FILTER_PCTYPE_FRAG_IPV6                    = 46,
     55  1.1  yamaguch 	/* Note: Value 47 is reserved for future use */
     56  1.1  yamaguch 	I40E_FILTER_PCTYPE_FCOE_OX                      = 48,
     57  1.1  yamaguch 	I40E_FILTER_PCTYPE_FCOE_RX                      = 49,
     58  1.1  yamaguch 	I40E_FILTER_PCTYPE_FCOE_OTHER                   = 50,
     59  1.1  yamaguch 	/* Note: Values 51-62 are reserved for future use */
     60  1.1  yamaguch 	I40E_FILTER_PCTYPE_L2_PAYLOAD                   = 63,
     61  1.1  yamaguch };
     62  1.1  yamaguch 
     63  1.7  yamaguch #define IXL_BIT_ULL(a)	(1ULL << (a))
     64  1.7  yamaguch #define IXL_RSS_HENA_DEFAULT_BASE			\
     65  1.7  yamaguch 	(IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_UDP) |	\
     66  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP) |	\
     67  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_SCTP) |	\
     68  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) |	\
     69  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4) |	\
     70  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_UDP) |	\
     71  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP) |	\
     72  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_SCTP) |	\
     73  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) |	\
     74  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6) |	\
     75  1.7  yamaguch 	 IXL_BIT_ULL(I40E_FILTER_PCTYPE_L2_PAYLOAD))
     76  1.7  yamaguch #define IXL_RSS_HENA_DEFAULT_XL710	IXL_RSS_HENA_DEFAULT_BASE
     77  1.7  yamaguch #define IXL_RSS_HENA_DEFAULT_X722	(IXL_RSS_HENA_DEFAULT_XL710 |	\
     78  1.7  yamaguch 	IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) |		\
     79  1.7  yamaguch 	IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) |	\
     80  1.7  yamaguch 	IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) |		\
     81  1.7  yamaguch 	IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) |	\
     82  1.7  yamaguch 	IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK) |	\
     83  1.7  yamaguch 	IXL_BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK))
     84  1.7  yamaguch 
     85  1.7  yamaguch #define IXL_RSS_VSI_LUT_SIZE	64
     86  1.7  yamaguch #define IXL_RSS_KEY_SIZE_REG	13
     87  1.7  yamaguch #define IXL_RSS_KEY_SIZE	(IXL_RSS_KEY_SIZE_REG * sizeof(uint32_t))
     88  1.7  yamaguch 
     89  1.1  yamaguch enum i40e_reset_type {
     90  1.1  yamaguch 	I40E_RESET_POR          = 0,
     91  1.1  yamaguch 	I40E_RESET_CORER        = 1,
     92  1.1  yamaguch 	I40E_RESET_GLOBR        = 2,
     93  1.1  yamaguch 	I40E_RESET_EMPR         = 3,
     94  1.1  yamaguch };
     95  1.1  yamaguch 
     96  1.1  yamaguch struct ixl_aq_desc {
     97  1.1  yamaguch 	uint16_t	iaq_flags;
     98  1.1  yamaguch #define	IXL_AQ_DD		(1U << 0)
     99  1.1  yamaguch #define	IXL_AQ_CMP		(1U << 1)
    100  1.1  yamaguch #define IXL_AQ_ERR		(1U << 2)
    101  1.1  yamaguch #define IXL_AQ_VFE		(1U << 3)
    102  1.1  yamaguch #define IXL_AQ_LB		(1U << 9)
    103  1.1  yamaguch #define IXL_AQ_RD		(1U << 10)
    104  1.1  yamaguch #define IXL_AQ_VFC		(1U << 11)
    105  1.1  yamaguch #define IXL_AQ_BUF		(1U << 12)
    106  1.1  yamaguch #define IXL_AQ_SI		(1U << 13)
    107  1.1  yamaguch #define IXL_AQ_EI		(1U << 14)
    108  1.1  yamaguch #define IXL_AQ_FE		(1U << 15)
    109  1.1  yamaguch 
    110  1.1  yamaguch #define IXL_AQ_FLAGS_FMT	"\020" "\020FE" "\017EI" "\016SI" "\015BUF" \
    111  1.1  yamaguch 				    "\014VFC" "\013DB" "\012LB" "\004VFE" \
    112  1.1  yamaguch 				    "\003ERR" "\002CMP" "\001DD"
    113  1.1  yamaguch 
    114  1.1  yamaguch 	uint16_t	iaq_opcode;
    115  1.1  yamaguch 
    116  1.1  yamaguch 	uint16_t	iaq_datalen;
    117  1.1  yamaguch 	uint16_t	iaq_retval;
    118  1.1  yamaguch 
    119  1.1  yamaguch 	uint64_t	iaq_cookie;
    120  1.1  yamaguch 
    121  1.1  yamaguch 	uint32_t	iaq_param[4];
    122  1.1  yamaguch /*	iaq_data_hi	iaq_param[2] */
    123  1.1  yamaguch /*	iaq_data_lo	iaq_param[3] */
    124  1.1  yamaguch } __packed __aligned(16);
    125  1.1  yamaguch 
    126  1.1  yamaguch /* aq commands */
    127  1.1  yamaguch #define IXL_AQ_OP_GET_VERSION		0x0001
    128  1.1  yamaguch #define IXL_AQ_OP_DRIVER_VERSION	0x0002
    129  1.1  yamaguch #define IXL_AQ_OP_QUEUE_SHUTDOWN	0x0003
    130  1.1  yamaguch #define IXL_AQ_OP_SET_PF_CONTEXT	0x0004
    131  1.1  yamaguch #define IXL_AQ_OP_GET_AQ_ERR_REASON	0x0005
    132  1.1  yamaguch #define IXL_AQ_OP_REQUEST_RESOURCE	0x0008
    133  1.1  yamaguch #define IXL_AQ_OP_RELEASE_RESOURCE	0x0009
    134  1.1  yamaguch #define IXL_AQ_OP_LIST_FUNC_CAP		0x000a
    135  1.1  yamaguch #define IXL_AQ_OP_LIST_DEV_CAP		0x000b
    136  1.1  yamaguch #define IXL_AQ_OP_MAC_ADDRESS_READ	0x0107
    137  1.1  yamaguch #define IXL_AQ_OP_CLEAR_PXE_MODE	0x0110
    138  1.1  yamaguch #define IXL_AQ_OP_SWITCH_GET_CONFIG	0x0200
    139  1.1  yamaguch #define IXL_AQ_OP_RX_CTL_REG_READ	0x0206
    140  1.1  yamaguch #define IXL_AQ_OP_RX_CTL_REG_WRITE	0x0207
    141  1.1  yamaguch #define IXL_AQ_OP_ADD_VSI		0x0210
    142  1.1  yamaguch #define IXL_AQ_OP_UPD_VSI_PARAMS	0x0211
    143  1.1  yamaguch #define IXL_AQ_OP_GET_VSI_PARAMS	0x0212
    144  1.1  yamaguch #define IXL_AQ_OP_ADD_VEB		0x0230
    145  1.1  yamaguch #define IXL_AQ_OP_UPD_VEB_PARAMS	0x0231
    146  1.1  yamaguch #define IXL_AQ_OP_GET_VEB_PARAMS	0x0232
    147  1.1  yamaguch #define IXL_AQ_OP_ADD_MACVLAN		0x0250
    148  1.1  yamaguch #define IXL_AQ_OP_REMOVE_MACVLAN	0x0251
    149  1.1  yamaguch #define IXL_AQ_OP_SET_VSI_PROMISC	0x0254
    150  1.1  yamaguch #define IXL_AQ_OP_PHY_GET_ABILITIES	0x0600
    151  1.1  yamaguch #define IXL_AQ_OP_PHY_SET_CONFIG	0x0601
    152  1.1  yamaguch #define IXL_AQ_OP_PHY_SET_MAC_CONFIG	0x0603
    153  1.1  yamaguch #define IXL_AQ_OP_PHY_RESTART_AN	0x0605
    154  1.1  yamaguch #define IXL_AQ_OP_PHY_LINK_STATUS	0x0607
    155  1.1  yamaguch #define IXL_AQ_OP_PHY_SET_EVENT_MASK	0x0613
    156  1.1  yamaguch #define IXL_AQ_OP_PHY_SET_REGISTER	0x0628
    157  1.1  yamaguch #define IXL_AQ_OP_PHY_GET_REGISTER	0x0629
    158  1.4  yamaguch #define IXL_AQ_OP_NVM_READ		0x0701
    159  1.1  yamaguch #define IXL_AQ_OP_LLDP_GET_MIB		0x0a00
    160  1.1  yamaguch #define IXL_AQ_OP_LLDP_MIB_CHG_EV	0x0a01
    161  1.1  yamaguch #define IXL_AQ_OP_LLDP_ADD_TLV		0x0a02
    162  1.1  yamaguch #define IXL_AQ_OP_LLDP_UPD_TLV		0x0a03
    163  1.1  yamaguch #define IXL_AQ_OP_LLDP_DEL_TLV		0x0a04
    164  1.1  yamaguch #define IXL_AQ_OP_LLDP_STOP_AGENT	0x0a05
    165  1.1  yamaguch #define IXL_AQ_OP_LLDP_START_AGENT	0x0a06
    166  1.1  yamaguch #define IXL_AQ_OP_LLDP_GET_CEE_DCBX	0x0a07
    167  1.1  yamaguch #define IXL_AQ_OP_LLDP_SPECIFIC_AGENT	0x0a09
    168  1.6  yamaguch #define IXL_AQ_OP_RSS_SET_KEY		0x0b02
    169  1.6  yamaguch #define IXL_AQ_OP_RSS_SET_LUT		0x0b03
    170  1.6  yamaguch #define IXL_AQ_OP_RSS_GET_KEY		0x0b04
    171  1.6  yamaguch #define IXL_AQ_OP_RSS_GET_LUT		0x0b05
    172  1.1  yamaguch 
    173  1.7  yamaguch static inline void
    174  1.7  yamaguch ixl_aq_dva(struct ixl_aq_desc *iaq, bus_addr_t addr)
    175  1.7  yamaguch {
    176  1.7  yamaguch 	uint64_t val;
    177  1.7  yamaguch 
    178  1.7  yamaguch 	if (sizeof(addr) > 4) {
    179  1.7  yamaguch 		val = (intptr_t)addr;
    180  1.7  yamaguch 		iaq->iaq_param[2] = htole32(val >> 32);
    181  1.7  yamaguch 	} else {
    182  1.7  yamaguch 		iaq->iaq_param[2] = htole32(0);
    183  1.7  yamaguch 	}
    184  1.7  yamaguch 
    185  1.7  yamaguch 	iaq->iaq_param[3] = htole32(addr);
    186  1.7  yamaguch }
    187  1.7  yamaguch 
    188  1.7  yamaguch static inline bool
    189  1.7  yamaguch ixl_aq_has_dva(struct ixl_aq_desc *iaq)
    190  1.7  yamaguch {
    191  1.7  yamaguch 	uint64_t val;
    192  1.7  yamaguch 
    193  1.7  yamaguch 	if (sizeof(bus_addr_t) > 4) {
    194  1.7  yamaguch 		val = le32toh(iaq->iaq_param[2]);
    195  1.7  yamaguch 		val = val << 32;
    196  1.7  yamaguch 	} else {
    197  1.7  yamaguch 		val = 0;
    198  1.7  yamaguch 	}
    199  1.7  yamaguch 	val |= htole32(iaq->iaq_param[3]);
    200  1.7  yamaguch 
    201  1.7  yamaguch 	return !(val == 0);
    202  1.7  yamaguch }
    203  1.7  yamaguch 
    204  1.1  yamaguch struct ixl_aq_mac_addresses {
    205  1.1  yamaguch 	uint8_t		pf_lan[ETHER_ADDR_LEN];
    206  1.1  yamaguch 	uint8_t		pf_san[ETHER_ADDR_LEN];
    207  1.1  yamaguch 	uint8_t		port[ETHER_ADDR_LEN];
    208  1.1  yamaguch 	uint8_t		pf_wol[ETHER_ADDR_LEN];
    209  1.1  yamaguch } __packed;
    210  1.1  yamaguch 
    211  1.1  yamaguch #define IXL_AQ_MAC_PF_LAN_VALID		(1U << 4)
    212  1.1  yamaguch #define IXL_AQ_MAC_PF_SAN_VALID		(1U << 5)
    213  1.1  yamaguch #define IXL_AQ_MAC_PORT_VALID		(1U << 6)
    214  1.1  yamaguch #define IXL_AQ_MAC_PF_WOL_VALID		(1U << 7)
    215  1.1  yamaguch 
    216  1.1  yamaguch struct ixl_aq_capability {
    217  1.1  yamaguch 	uint16_t	cap_id;
    218  1.1  yamaguch #define IXL_AQ_CAP_SWITCH_MODE		0x0001
    219  1.1  yamaguch #define IXL_AQ_CAP_MNG_MODE		0x0002
    220  1.1  yamaguch #define IXL_AQ_CAP_NPAR_ACTIVE		0x0003
    221  1.1  yamaguch #define IXL_AQ_CAP_OS2BMC_CAP		0x0004
    222  1.1  yamaguch #define IXL_AQ_CAP_FUNCTIONS_VALID	0x0005
    223  1.1  yamaguch #define IXL_AQ_CAP_ALTERNATE_RAM	0x0006
    224  1.1  yamaguch #define IXL_AQ_CAP_WOL_AND_PROXY	0x0008
    225  1.1  yamaguch #define IXL_AQ_CAP_SRIOV		0x0012
    226  1.1  yamaguch #define IXL_AQ_CAP_VF			0x0013
    227  1.1  yamaguch #define IXL_AQ_CAP_VMDQ			0x0014
    228  1.1  yamaguch #define IXL_AQ_CAP_8021QBG		0x0015
    229  1.1  yamaguch #define IXL_AQ_CAP_8021QBR		0x0016
    230  1.1  yamaguch #define IXL_AQ_CAP_VSI			0x0017
    231  1.1  yamaguch #define IXL_AQ_CAP_DCB			0x0018
    232  1.1  yamaguch #define IXL_AQ_CAP_FCOE			0x0021
    233  1.1  yamaguch #define IXL_AQ_CAP_ISCSI		0x0022
    234  1.1  yamaguch #define IXL_AQ_CAP_RSS			0x0040
    235  1.1  yamaguch #define IXL_AQ_CAP_RXQ			0x0041
    236  1.1  yamaguch #define IXL_AQ_CAP_TXQ			0x0042
    237  1.1  yamaguch #define IXL_AQ_CAP_MSIX			0x0043
    238  1.1  yamaguch #define IXL_AQ_CAP_VF_MSIX		0x0044
    239  1.1  yamaguch #define IXL_AQ_CAP_FLOW_DIRECTOR	0x0045
    240  1.1  yamaguch #define IXL_AQ_CAP_1588			0x0046
    241  1.1  yamaguch #define IXL_AQ_CAP_IWARP		0x0051
    242  1.1  yamaguch #define IXL_AQ_CAP_LED			0x0061
    243  1.1  yamaguch #define IXL_AQ_CAP_SDP			0x0062
    244  1.1  yamaguch #define IXL_AQ_CAP_MDIO			0x0063
    245  1.1  yamaguch #define IXL_AQ_CAP_WSR_PROT		0x0064
    246  1.1  yamaguch #define IXL_AQ_CAP_NVM_MGMT		0x0080
    247  1.1  yamaguch #define IXL_AQ_CAP_FLEX10		0x00F1
    248  1.1  yamaguch #define IXL_AQ_CAP_CEM			0x00F2
    249  1.1  yamaguch 	uint8_t		major_rev;
    250  1.1  yamaguch 	uint8_t		minor_rev;
    251  1.1  yamaguch 	uint32_t	number;
    252  1.1  yamaguch 	uint32_t	logical_id;
    253  1.1  yamaguch 	uint32_t	phys_id;
    254  1.1  yamaguch 	uint8_t		_reserved[16];
    255  1.1  yamaguch } __packed __aligned(4);
    256  1.1  yamaguch 
    257  1.1  yamaguch #define IXL_LLDP_SHUTDOWN		0x1
    258  1.1  yamaguch 
    259  1.1  yamaguch struct ixl_aq_switch_config {
    260  1.1  yamaguch 	uint16_t	num_reported;
    261  1.1  yamaguch 	uint16_t	num_total;
    262  1.1  yamaguch 	uint8_t		_reserved[12];
    263  1.1  yamaguch } __packed __aligned(4);
    264  1.1  yamaguch 
    265  1.1  yamaguch struct ixl_aq_switch_config_element {
    266  1.1  yamaguch 	uint8_t		type;
    267  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_MAC		1
    268  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_PF		2
    269  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_VF		3
    270  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_EMP		4
    271  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_BMC		5
    272  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_PV		16
    273  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_VEB		17
    274  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_PA		18
    275  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_VSI		19
    276  1.1  yamaguch 	uint8_t		revision;
    277  1.1  yamaguch #define IXL_AQ_SW_ELEM_REV_1		1
    278  1.1  yamaguch 	uint16_t	seid;
    279  1.1  yamaguch 
    280  1.1  yamaguch 	uint16_t	uplink_seid;
    281  1.1  yamaguch 	uint16_t	downlink_seid;
    282  1.1  yamaguch 
    283  1.1  yamaguch 	uint8_t		_reserved[3];
    284  1.1  yamaguch 	uint8_t		connection_type;
    285  1.1  yamaguch #define IXL_AQ_CONN_TYPE_REGULAR	0x1
    286  1.1  yamaguch #define IXL_AQ_CONN_TYPE_DEFAULT	0x2
    287  1.1  yamaguch #define IXL_AQ_CONN_TYPE_CASCADED	0x3
    288  1.1  yamaguch 
    289  1.1  yamaguch 	uint16_t	scheduler_id;
    290  1.1  yamaguch 	uint16_t	element_info;
    291  1.1  yamaguch } __packed __aligned(4);
    292  1.1  yamaguch 
    293  1.1  yamaguch #define IXL_PHY_TYPE_SGMII		0x00
    294  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_KX	0x01
    295  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_KX4	0x02
    296  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_KR		0x03
    297  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_KR4	0x04
    298  1.1  yamaguch #define IXL_PHY_TYPE_XAUI		0x05
    299  1.1  yamaguch #define IXL_PHY_TYPE_XFI		0x06
    300  1.1  yamaguch #define IXL_PHY_TYPE_SFI		0x07
    301  1.1  yamaguch #define IXL_PHY_TYPE_XLAUI		0x08
    302  1.1  yamaguch #define IXL_PHY_TYPE_XLPPI		0x09
    303  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_CR4_CU	0x0a
    304  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_CR1_CU	0x0b
    305  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_AOC	0x0c
    306  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_AOC	0x0d
    307  1.1  yamaguch #define IXL_PHY_TYPE_100BASE_TX		0x11
    308  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_T		0x12
    309  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_T		0x13
    310  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_SR		0x14
    311  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_LR		0x15
    312  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_SFPP_CU	0x16
    313  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_CR1	0x17
    314  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_CR4	0x18
    315  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_SR4	0x19
    316  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_LR4	0x1a
    317  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_SX	0x1b
    318  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_LX	0x1c
    319  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_T_OPTICAL	0x1d
    320  1.1  yamaguch #define IXL_PHY_TYPE_20GBASE_KR2	0x1e
    321  1.1  yamaguch 
    322  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_KR		0x1f
    323  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_CR		0x20
    324  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_SR		0x21
    325  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_LR		0x22
    326  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_AOC	0x23
    327  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_ACC	0x24
    328  1.1  yamaguch 
    329  1.5  yamaguch #define IXL_PHY_LINK_SPEED_100MB	(1 << 1)
    330  1.5  yamaguch #define IXL_PHY_LINK_SPEED_1000MB	(1 << 2)
    331  1.5  yamaguch #define IXL_PHY_LINK_SPEED_10GB		(1 << 3)
    332  1.5  yamaguch #define IXL_PHY_LINK_SPEED_40GB		(1 << 4)
    333  1.5  yamaguch #define IXL_PHY_LINK_SPEED_20GB		(1 << 5)
    334  1.5  yamaguch #define IXL_PHY_LINK_SPEED_25GB		(1 << 6)
    335  1.5  yamaguch 
    336  1.5  yamaguch #define IXL_PHY_ABILITY_PAUSE_TX	(1 << 0)
    337  1.5  yamaguch #define IXL_PHY_ABILITY_PAUSE_RX	(1 << 1)
    338  1.5  yamaguch #define IXL_PHY_ABILITY_LOWPOW		(1 << 2)
    339  1.5  yamaguch #define IXL_PHY_ABILITY_LINKUP		(1 << 3)
    340  1.5  yamaguch #define IXL_PHY_ABILITY_AUTONEGO	(1 << 4)
    341  1.5  yamaguch #define IXL_PHY_ABILITY_MODQUAL		(1 << 5)
    342  1.5  yamaguch 
    343  1.1  yamaguch struct ixl_aq_module_desc {
    344  1.1  yamaguch 	uint8_t		oui[3];
    345  1.1  yamaguch 	uint8_t		_reserved1;
    346  1.1  yamaguch 	uint8_t		part_number[16];
    347  1.1  yamaguch 	uint8_t		revision[4];
    348  1.1  yamaguch 	uint8_t		_reserved2[8];
    349  1.1  yamaguch } __packed __aligned(4);
    350  1.1  yamaguch 
    351  1.1  yamaguch struct ixl_aq_phy_abilities {
    352  1.1  yamaguch 	uint32_t	phy_type;
    353  1.1  yamaguch 
    354  1.1  yamaguch 	uint8_t		link_speed;
    355  1.1  yamaguch 	uint8_t		abilities;
    356  1.1  yamaguch 	uint16_t	eee_capability;
    357  1.1  yamaguch 
    358  1.1  yamaguch 	uint32_t	eeer_val;
    359  1.1  yamaguch 
    360  1.1  yamaguch 	uint8_t		d3_lpan;
    361  1.1  yamaguch 	uint8_t		phy_type_ext;
    362  1.1  yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_KR	0x01
    363  1.1  yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_CR	0x02
    364  1.1  yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_SR	0x04
    365  1.1  yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_LR	0x08
    366  1.1  yamaguch 	uint8_t		fec_cfg_curr_mod_ext_info;
    367  1.1  yamaguch #define IXL_AQ_ENABLE_FEC_KR		0x01
    368  1.1  yamaguch #define IXL_AQ_ENABLE_FEC_RS		0x02
    369  1.1  yamaguch #define IXL_AQ_REQUEST_FEC_KR		0x04
    370  1.1  yamaguch #define IXL_AQ_REQUEST_FEC_RS		0x08
    371  1.1  yamaguch #define IXL_AQ_ENABLE_FEC_AUTO		0x10
    372  1.1  yamaguch #define IXL_AQ_MODULE_TYPE_EXT_MASK	0xe0
    373  1.1  yamaguch #define IXL_AQ_MODULE_TYPE_EXT_SHIFT	5
    374  1.1  yamaguch 	uint8_t		ext_comp_code;
    375  1.1  yamaguch 
    376  1.1  yamaguch 	uint8_t		phy_id[4];
    377  1.1  yamaguch 
    378  1.1  yamaguch 	uint8_t		module_type[3];
    379  1.1  yamaguch #define IXL_SFF8024_ID_SFP		0x03
    380  1.1  yamaguch #define IXL_SFF8024_ID_QSFP		0x0c
    381  1.1  yamaguch #define IXL_SFF8024_ID_QSFP_PLUS	0x0d
    382  1.1  yamaguch #define IXL_SFF8024_ID_QSFP28		0x11
    383  1.1  yamaguch 	uint8_t		qualified_module_count;
    384  1.1  yamaguch #define IXL_AQ_PHY_MAX_QMS		16
    385  1.1  yamaguch 	struct ixl_aq_module_desc
    386  1.1  yamaguch 			qualified_module[IXL_AQ_PHY_MAX_QMS];
    387  1.1  yamaguch } __packed __aligned(4);
    388  1.1  yamaguch 
    389  1.5  yamaguch struct ixl_aq_phy_param {
    390  1.5  yamaguch 	uint32_t	 phy_types;
    391  1.5  yamaguch 	uint8_t		 link_speed;
    392  1.5  yamaguch 	uint8_t		 abilities;
    393  1.5  yamaguch #define IXL_AQ_PHY_ABILITY_AUTO_LINK	(1 << 5)
    394  1.5  yamaguch 	uint16_t	 eee_capability;
    395  1.5  yamaguch 	uint32_t	 eeer_val;
    396  1.5  yamaguch 	uint8_t		 d3_lpan;
    397  1.5  yamaguch 	uint8_t		 phy_type_ext;
    398  1.5  yamaguch 	uint8_t		 fec_cfg;
    399  1.5  yamaguch 	uint8_t		 config;
    400  1.5  yamaguch } __packed __aligned(4);
    401  1.5  yamaguch 
    402  1.1  yamaguch struct ixl_aq_link_param {
    403  1.1  yamaguch 	uint8_t		notify;
    404  1.1  yamaguch #define IXL_AQ_LINK_NOTIFY	0x03
    405  1.1  yamaguch 	uint8_t		_reserved1;
    406  1.1  yamaguch 	uint8_t		phy;
    407  1.1  yamaguch 	uint8_t		speed;
    408  1.1  yamaguch 	uint8_t		status;
    409  1.1  yamaguch 	uint8_t		_reserved2[11];
    410  1.1  yamaguch } __packed __aligned(4);
    411  1.1  yamaguch 
    412  1.1  yamaguch struct ixl_aq_vsi_param {
    413  1.1  yamaguch 	uint16_t	uplink_seid;
    414  1.1  yamaguch 	uint8_t		connect_type;
    415  1.1  yamaguch #define IXL_AQ_VSI_CONN_TYPE_NORMAL	(0x1)
    416  1.1  yamaguch #define IXL_AQ_VSI_CONN_TYPE_DEFAULT	(0x2)
    417  1.1  yamaguch #define IXL_AQ_VSI_CONN_TYPE_CASCADED	(0x3)
    418  1.1  yamaguch 	uint8_t		_reserved1;
    419  1.1  yamaguch 
    420  1.1  yamaguch 	uint8_t		vf_id;
    421  1.1  yamaguch 	uint8_t		_reserved2;
    422  1.1  yamaguch 	uint16_t	vsi_flags;
    423  1.1  yamaguch #define IXL_AQ_VSI_TYPE_SHIFT		0x0
    424  1.1  yamaguch #define IXL_AQ_VSI_TYPE_MASK		(0x3 << IXL_AQ_VSI_TYPE_SHIFT)
    425  1.1  yamaguch #define IXL_AQ_VSI_TYPE_VF		0x0
    426  1.1  yamaguch #define IXL_AQ_VSI_TYPE_VMDQ2		0x1
    427  1.1  yamaguch #define IXL_AQ_VSI_TYPE_PF		0x2
    428  1.1  yamaguch #define IXL_AQ_VSI_TYPE_EMP_MNG		0x3
    429  1.1  yamaguch #define IXL_AQ_VSI_FLAG_CASCADED_PV	0x4
    430  1.1  yamaguch 
    431  1.1  yamaguch 	uint32_t	addr_hi;
    432  1.1  yamaguch 	uint32_t	addr_lo;
    433  1.1  yamaguch } __packed __aligned(16);
    434  1.1  yamaguch 
    435  1.1  yamaguch struct ixl_aq_add_macvlan {
    436  1.1  yamaguch 	uint16_t	num_addrs;
    437  1.1  yamaguch 	uint16_t	seid0;
    438  1.1  yamaguch 	uint16_t	seid1;
    439  1.1  yamaguch 	uint16_t	seid2;
    440  1.1  yamaguch 	uint32_t	addr_hi;
    441  1.1  yamaguch 	uint32_t	addr_lo;
    442  1.1  yamaguch } __packed __aligned(16);
    443  1.1  yamaguch 
    444  1.1  yamaguch struct ixl_aq_add_macvlan_elem {
    445  1.1  yamaguch 	uint8_t		macaddr[6];
    446  1.1  yamaguch 	uint16_t	vlan;
    447  1.1  yamaguch 	uint16_t	flags;
    448  1.1  yamaguch #define IXL_AQ_OP_ADD_MACVLAN_PERFECT_MATCH	0x0001
    449  1.1  yamaguch #define IXL_AQ_OP_ADD_MACVLAN_IGNORE_VLAN	0x0004
    450  1.1  yamaguch 	uint16_t	queue;
    451  1.1  yamaguch 	uint32_t	_reserved;
    452  1.1  yamaguch } __packed __aligned(16);
    453  1.1  yamaguch 
    454  1.1  yamaguch struct ixl_aq_remove_macvlan {
    455  1.1  yamaguch 	uint16_t	num_addrs;
    456  1.1  yamaguch 	uint16_t	seid0;
    457  1.1  yamaguch 	uint16_t	seid1;
    458  1.1  yamaguch 	uint16_t	seid2;
    459  1.1  yamaguch 	uint32_t	addr_hi;
    460  1.1  yamaguch 	uint32_t	addr_lo;
    461  1.1  yamaguch } __packed __aligned(16);
    462  1.1  yamaguch 
    463  1.1  yamaguch struct ixl_aq_remove_macvlan_elem {
    464  1.1  yamaguch 	uint8_t		macaddr[6];
    465  1.1  yamaguch 	uint16_t	vlan;
    466  1.1  yamaguch 	uint8_t		flags;
    467  1.1  yamaguch #define IXL_AQ_OP_REMOVE_MACVLAN_PERFECT_MATCH	0x0001
    468  1.1  yamaguch #define IXL_AQ_OP_REMOVE_MACVLAN_IGNORE_VLAN	0x0008
    469  1.1  yamaguch 	uint8_t		_reserved[7];
    470  1.1  yamaguch } __packed __aligned(16);
    471  1.1  yamaguch 
    472  1.1  yamaguch struct ixl_aq_vsi_reply {
    473  1.1  yamaguch 	uint16_t	seid;
    474  1.1  yamaguch 	uint16_t	vsi_number;
    475  1.1  yamaguch 
    476  1.1  yamaguch 	uint16_t	vsis_used;
    477  1.1  yamaguch 	uint16_t	vsis_free;
    478  1.1  yamaguch 
    479  1.1  yamaguch 	uint32_t	addr_hi;
    480  1.1  yamaguch 	uint32_t	addr_lo;
    481  1.1  yamaguch } __packed __aligned(16);
    482  1.1  yamaguch 
    483  1.1  yamaguch struct ixl_aq_vsi_data {
    484  1.1  yamaguch 	/* first 96 byte are written by SW */
    485  1.1  yamaguch 	uint16_t	valid_sections;
    486  1.1  yamaguch #define IXL_AQ_VSI_VALID_SWITCH		(1 << 0)
    487  1.1  yamaguch #define IXL_AQ_VSI_VALID_SECURITY	(1 << 1)
    488  1.1  yamaguch #define IXL_AQ_VSI_VALID_VLAN		(1 << 2)
    489  1.1  yamaguch #define IXL_AQ_VSI_VALID_CAS_PV		(1 << 3)
    490  1.1  yamaguch #define IXL_AQ_VSI_VALID_INGRESS_UP	(1 << 4)
    491  1.1  yamaguch #define IXL_AQ_VSI_VALID_EGRESS_UP	(1 << 5)
    492  1.1  yamaguch #define IXL_AQ_VSI_VALID_QUEUE_MAP	(1 << 6)
    493  1.1  yamaguch #define IXL_AQ_VSI_VALID_QUEUE_OPT	(1 << 7)
    494  1.1  yamaguch #define IXL_AQ_VSI_VALID_OUTER_UP	(1 << 8)
    495  1.1  yamaguch #define IXL_AQ_VSI_VALID_SCHED		(1 << 9)
    496  1.1  yamaguch 	/* switch section */
    497  1.1  yamaguch 	uint16_t	switch_id;
    498  1.1  yamaguch #define IXL_AQ_VSI_SWITCH_ID_SHIFT	0
    499  1.1  yamaguch #define IXL_AQ_VSI_SWITCH_ID_MASK	(0xfff << IXL_AQ_VSI_SWITCH_ID_SHIFT)
    500  1.1  yamaguch #define IXL_AQ_VSI_SWITCH_NOT_STAG	(1 << 12)
    501  1.1  yamaguch #define IXL_AQ_VSI_SWITCH_LOCAL_LB	(1 << 14)
    502  1.1  yamaguch 
    503  1.1  yamaguch 	uint8_t		_reserved1[2];
    504  1.1  yamaguch 	/* security section */
    505  1.1  yamaguch 	uint8_t		sec_flags;
    506  1.1  yamaguch #define IXL_AQ_VSI_SEC_ALLOW_DEST_OVRD	(1 << 0)
    507  1.1  yamaguch #define IXL_AQ_VSI_SEC_ENABLE_VLAN_CHK	(1 << 1)
    508  1.1  yamaguch #define IXL_AQ_VSI_SEC_ENABLE_MAC_CHK	(1 << 2)
    509  1.1  yamaguch 	uint8_t		_reserved2;
    510  1.1  yamaguch 
    511  1.1  yamaguch 	/* vlan section */
    512  1.1  yamaguch 	uint16_t	pvid;
    513  1.1  yamaguch 	uint16_t	fcoe_pvid;
    514  1.1  yamaguch 
    515  1.1  yamaguch 	uint8_t		port_vlan_flags;
    516  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_SHIFT	0
    517  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_MASK	(0x3 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    518  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_TAGGED	(0x1 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    519  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_UNTAGGED	(0x2 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    520  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_ALL	(0x3 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    521  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_INSERT_PVID	(0x4 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    522  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_SHIFT	0x3
    523  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_MASK	(0x3 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    524  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_STR_BOTH	(0x0 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    525  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_STR_UP	(0x1 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    526  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_STR	(0x2 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    527  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_NOTHING	(0x3 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    528  1.1  yamaguch 	uint8_t		_reserved3[3];
    529  1.1  yamaguch 
    530  1.1  yamaguch 	/* ingress egress up section */
    531  1.1  yamaguch 	uint32_t	ingress_table;
    532  1.1  yamaguch #define IXL_AQ_VSI_UP_SHIFT(_up)	((_up) * 3)
    533  1.1  yamaguch #define IXL_AQ_VSI_UP_MASK(_up)		(0x7 << (IXL_AQ_VSI_UP_SHIFT(_up))
    534  1.1  yamaguch 	uint32_t	egress_table;
    535  1.1  yamaguch 
    536  1.1  yamaguch 	/* cascaded pv section */
    537  1.1  yamaguch 	uint16_t	cas_pv_tag;
    538  1.1  yamaguch 	uint8_t		cas_pv_flags;
    539  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_SHIFT	0
    540  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_MASK	(0x3 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
    541  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_LEAVE	(0x0 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
    542  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_REMOVE	(0x1 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
    543  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_COPY	(0x2 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
    544  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_INSERT_TAG	(1 << 4)
    545  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_ETAG_PRUNE	(1 << 5)
    546  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_ACCEPT_HOST_TAG \
    547  1.1  yamaguch 					(1 << 6)
    548  1.1  yamaguch 	uint8_t		_reserved4;
    549  1.1  yamaguch 
    550  1.1  yamaguch 	/* queue mapping section */
    551  1.1  yamaguch 	uint16_t	mapping_flags;
    552  1.1  yamaguch #define IXL_AQ_VSI_QUE_MAP_MASK		0x1
    553  1.1  yamaguch #define IXL_AQ_VSI_QUE_MAP_CONTIG	0x0
    554  1.1  yamaguch #define IXL_AQ_VSI_QUE_MAP_NONCONTIG	0x1
    555  1.1  yamaguch 	uint16_t	queue_mapping[16];
    556  1.1  yamaguch #define IXL_AQ_VSI_QUEUE_SHIFT		0x0
    557  1.1  yamaguch #define IXL_AQ_VSI_QUEUE_MASK		(0x7ff << IXL_AQ_VSI_QUEUE_SHIFT)
    558  1.1  yamaguch 	uint16_t	tc_mapping[8];
    559  1.1  yamaguch #define IXL_AQ_VSI_TC_Q_OFFSET_SHIFT	0
    560  1.1  yamaguch #define IXL_AQ_VSI_TC_Q_OFFSET_MASK	(0x1ff << IXL_AQ_VSI_TC_Q_OFFSET_SHIFT)
    561  1.1  yamaguch #define IXL_AQ_VSI_TC_Q_NUMBER_SHIFT	9
    562  1.1  yamaguch #define IXL_AQ_VSI_TC_Q_NUMBER_MASK	(0x7 << IXL_AQ_VSI_TC_Q_NUMBER_SHIFT)
    563  1.1  yamaguch 
    564  1.1  yamaguch 	/* queueing option section */
    565  1.1  yamaguch 	uint8_t		queueing_opt_flags;
    566  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_MCAST_UDP_EN	(1 << 2)
    567  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_UCAST_UDP_EN	(1 << 3)
    568  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_TCP_EN	(1 << 4)
    569  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_FCOE_EN	(1 << 5)
    570  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_RSS_LUT_PF	0
    571  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_RSS_LUT_VSI	(1 << 6)
    572  1.1  yamaguch 	uint8_t		_reserved5[3];
    573  1.1  yamaguch 
    574  1.1  yamaguch 	/* scheduler section */
    575  1.1  yamaguch 	uint8_t		up_enable_bits;
    576  1.1  yamaguch 	uint8_t		_reserved6;
    577  1.1  yamaguch 
    578  1.1  yamaguch 	/* outer up section */
    579  1.1  yamaguch 	uint32_t	outer_up_table; /* same as ingress/egress tables */
    580  1.1  yamaguch 	uint8_t		_reserved7[8];
    581  1.1  yamaguch 
    582  1.1  yamaguch 	/* last 32 bytes are written by FW */
    583  1.1  yamaguch 	uint16_t	qs_handle[8];
    584  1.1  yamaguch #define IXL_AQ_VSI_QS_HANDLE_INVALID	0xffff
    585  1.1  yamaguch 	uint16_t	stat_counter_idx;
    586  1.1  yamaguch 	uint16_t	sched_id;
    587  1.1  yamaguch 
    588  1.1  yamaguch 	uint8_t		_reserved8[12];
    589  1.1  yamaguch } __packed __aligned(8);
    590  1.1  yamaguch 
    591  1.1  yamaguch CTASSERT(sizeof(struct ixl_aq_vsi_data) == 128);
    592  1.1  yamaguch 
    593  1.1  yamaguch struct ixl_aq_vsi_promisc_param {
    594  1.1  yamaguch 	uint16_t	flags;
    595  1.1  yamaguch 	uint16_t	valid_flags;
    596  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_UCAST	(1 << 0)
    597  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_MCAST	(1 << 1)
    598  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_BCAST	(1 << 2)
    599  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_DFLT	(1 << 3)
    600  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_VLAN	(1 << 4)
    601  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_RXONLY	(1 << 15)
    602  1.1  yamaguch 
    603  1.1  yamaguch 	uint16_t	seid;
    604  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_SEID_VALID	(1 << 15)
    605  1.1  yamaguch 	uint16_t	vlan;
    606  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_VLAN_VALID	(1 << 15)
    607  1.1  yamaguch 	uint32_t	reserved[2];
    608  1.1  yamaguch } __packed __aligned(8);
    609  1.1  yamaguch 
    610  1.1  yamaguch struct ixl_aq_veb_param {
    611  1.1  yamaguch 	uint16_t	uplink_seid;
    612  1.1  yamaguch 	uint16_t	downlink_seid;
    613  1.1  yamaguch 	uint16_t	veb_flags;
    614  1.1  yamaguch #define IXL_AQ_ADD_VEB_FLOATING		(1 << 0)
    615  1.1  yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT	1
    616  1.1  yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_MASK	(0x3 << IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT)
    617  1.1  yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_DEFAULT \
    618  1.1  yamaguch 					(0x2 << IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT)
    619  1.1  yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_DATA	(0x4 << IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT)
    620  1.1  yamaguch #define IXL_AQ_ADD_VEB_ENABLE_L2_FILTER	(1 << 3) /* deprecated */
    621  1.1  yamaguch #define IXL_AQ_ADD_VEB_DISABLE_STATS	(1 << 4)
    622  1.1  yamaguch 	uint8_t		enable_tcs;
    623  1.1  yamaguch 	uint8_t		_reserved[9];
    624  1.1  yamaguch } __packed __aligned(16);
    625  1.1  yamaguch 
    626  1.1  yamaguch struct ixl_aq_veb_reply {
    627  1.1  yamaguch 	uint16_t	_reserved1;
    628  1.1  yamaguch 	uint16_t	_reserved2;
    629  1.1  yamaguch 	uint16_t	_reserved3;
    630  1.1  yamaguch 	uint16_t	switch_seid;
    631  1.1  yamaguch 	uint16_t	veb_seid;
    632  1.1  yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_VEB	(1 << 0)
    633  1.1  yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_SCHED	(1 << 1)
    634  1.1  yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_COUNTER	(1 << 2)
    635  1.1  yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_ENTRY	(1 << 3);
    636  1.1  yamaguch 	uint16_t	statistic_index;
    637  1.1  yamaguch 	uint16_t	vebs_used;
    638  1.1  yamaguch 	uint16_t	vebs_free;
    639  1.1  yamaguch } __packed __aligned(16);
    640  1.1  yamaguch 
    641  1.1  yamaguch /* GET PHY ABILITIES param[0] */
    642  1.1  yamaguch #define IXL_AQ_PHY_REPORT_QUAL		(1 << 0)
    643  1.1  yamaguch #define IXL_AQ_PHY_REPORT_INIT		(1 << 1)
    644  1.1  yamaguch 
    645  1.1  yamaguch struct ixl_aq_phy_reg_access {
    646  1.1  yamaguch 	uint8_t		phy_iface;
    647  1.1  yamaguch #define IXL_AQ_PHY_IF_INTERNAL		0
    648  1.1  yamaguch #define IXL_AQ_PHY_IF_EXTERNAL		1
    649  1.1  yamaguch #define IXL_AQ_PHY_IF_MODULE		2
    650  1.1  yamaguch 	uint8_t		dev_addr;
    651  1.1  yamaguch 	uint16_t	recall;
    652  1.1  yamaguch #define IXL_AQ_PHY_QSFP_DEV_ADDR	0
    653  1.1  yamaguch #define IXL_AQ_PHY_QSFP_LAST		1
    654  1.1  yamaguch 	uint32_t	reg;
    655  1.1  yamaguch 	uint32_t	val;
    656  1.1  yamaguch 	uint32_t	_reserved2;
    657  1.1  yamaguch } __packed __aligned(16);
    658  1.1  yamaguch 
    659  1.1  yamaguch /* RESTART_AN param[0] */
    660  1.1  yamaguch #define IXL_AQ_PHY_RESTART_AN		(1 << 1)
    661  1.1  yamaguch #define IXL_AQ_PHY_LINK_ENABLE		(1 << 2)
    662  1.1  yamaguch 
    663  1.1  yamaguch struct ixl_aq_link_status { /* this occupies the iaq_param space */
    664  1.1  yamaguch 	uint16_t	command_flags; /* only field set on command */
    665  1.1  yamaguch #define IXL_AQ_LSE_MASK			0x3
    666  1.1  yamaguch #define IXL_AQ_LSE_NOP			0x0
    667  1.1  yamaguch #define IXL_AQ_LSE_DISABLE		0x2
    668  1.1  yamaguch #define IXL_AQ_LSE_ENABLE		0x3
    669  1.1  yamaguch #define IXL_AQ_LSE_IS_ENABLED		0x1 /* only set in response */
    670  1.1  yamaguch 	uint8_t		phy_type;
    671  1.1  yamaguch 	uint8_t		link_speed;
    672  1.1  yamaguch #define IXL_AQ_LINK_SPEED_100MB		(1 << 1)
    673  1.1  yamaguch #define IXL_AQ_LINK_SPEED_1000MB	(1 << 2)
    674  1.1  yamaguch #define IXL_AQ_LINK_SPEED_10GB		(1 << 3)
    675  1.1  yamaguch #define IXL_AQ_LINK_SPEED_40GB		(1 << 4)
    676  1.1  yamaguch #define IXL_AQ_LINK_SPEED_25GB		(1 << 6)
    677  1.1  yamaguch 	uint8_t		link_info;
    678  1.1  yamaguch #define IXL_AQ_LINK_UP_FUNCTION		0x01
    679  1.1  yamaguch #define IXL_AQ_LINK_FAULT		0x02
    680  1.1  yamaguch #define IXL_AQ_LINK_FAULT_TX		0x04
    681  1.1  yamaguch #define IXL_AQ_LINK_FAULT_RX		0x08
    682  1.1  yamaguch #define IXL_AQ_LINK_FAULT_REMOTE	0x10
    683  1.1  yamaguch #define IXL_AQ_LINK_UP_PORT		0x20
    684  1.1  yamaguch #define IXL_AQ_MEDIA_AVAILABLE		0x40
    685  1.1  yamaguch #define IXL_AQ_SIGNAL_DETECT		0x80
    686  1.1  yamaguch 	uint8_t		an_info;
    687  1.1  yamaguch #define IXL_AQ_AN_COMPLETED		0x01
    688  1.1  yamaguch #define IXL_AQ_LP_AN_ABILITY		0x02
    689  1.1  yamaguch #define IXL_AQ_PD_FAULT			0x04
    690  1.1  yamaguch #define IXL_AQ_FEC_EN			0x08
    691  1.1  yamaguch #define IXL_AQ_PHY_LOW_POWER		0x10
    692  1.1  yamaguch #define IXL_AQ_LINK_PAUSE_TX		0x20
    693  1.1  yamaguch #define IXL_AQ_LINK_PAUSE_RX		0x40
    694  1.1  yamaguch #define IXL_AQ_QUALIFIED_MODULE		0x80
    695  1.1  yamaguch 
    696  1.1  yamaguch 	uint8_t		ext_info;
    697  1.1  yamaguch #define IXL_AQ_LINK_PHY_TEMP_ALARM	0x01
    698  1.1  yamaguch #define IXL_AQ_LINK_XCESSIVE_ERRORS	0x02
    699  1.1  yamaguch #define IXL_AQ_LINK_TX_SHIFT		0x02
    700  1.1  yamaguch #define IXL_AQ_LINK_TX_MASK		(0x03 << IXL_AQ_LINK_TX_SHIFT)
    701  1.1  yamaguch #define IXL_AQ_LINK_TX_ACTIVE		0x00
    702  1.1  yamaguch #define IXL_AQ_LINK_TX_DRAINED		0x01
    703  1.1  yamaguch #define IXL_AQ_LINK_TX_FLUSHED		0x03
    704  1.1  yamaguch #define IXL_AQ_LINK_FORCED_40G		0x10
    705  1.1  yamaguch /* 25G Error Codes */
    706  1.1  yamaguch #define IXL_AQ_25G_NO_ERR		0X00
    707  1.1  yamaguch #define IXL_AQ_25G_NOT_PRESENT		0X01
    708  1.1  yamaguch #define IXL_AQ_25G_NVM_CRC_ERR		0X02
    709  1.1  yamaguch #define IXL_AQ_25G_SBUS_UCODE_ERR	0X03
    710  1.1  yamaguch #define IXL_AQ_25G_SERDES_UCODE_ERR	0X04
    711  1.1  yamaguch #define IXL_AQ_25G_NIMB_UCODE_ERR	0X05
    712  1.1  yamaguch 	uint8_t		loopback;
    713  1.1  yamaguch 	uint16_t	max_frame_size;
    714  1.1  yamaguch 
    715  1.1  yamaguch 	uint8_t		config;
    716  1.1  yamaguch #define IXL_AQ_CONFIG_FEC_KR_ENA	0x01
    717  1.1  yamaguch #define IXL_AQ_CONFIG_FEC_RS_ENA	0x02
    718  1.1  yamaguch #define IXL_AQ_CONFIG_CRC_ENA	0x04
    719  1.1  yamaguch #define IXL_AQ_CONFIG_PACING_MASK	0x78
    720  1.1  yamaguch 	uint8_t		power_desc;
    721  1.1  yamaguch #define IXL_AQ_LINK_POWER_CLASS_1	0x00
    722  1.1  yamaguch #define IXL_AQ_LINK_POWER_CLASS_2	0x01
    723  1.1  yamaguch #define IXL_AQ_LINK_POWER_CLASS_3	0x02
    724  1.1  yamaguch #define IXL_AQ_LINK_POWER_CLASS_4	0x03
    725  1.1  yamaguch #define IXL_AQ_PWR_CLASS_MASK		0x03
    726  1.1  yamaguch 
    727  1.1  yamaguch 	uint8_t		reserved[4];
    728  1.1  yamaguch } __packed __aligned(4);
    729  1.1  yamaguch 
    730  1.1  yamaguch /* event mask command flags for param[2] */
    731  1.1  yamaguch #define IXL_AQ_PHY_EV_MASK		0x3ff
    732  1.1  yamaguch #define IXL_AQ_PHY_EV_LINK_UPDOWN	(1 << 1)
    733  1.1  yamaguch #define IXL_AQ_PHY_EV_MEDIA_NA		(1 << 2)
    734  1.1  yamaguch #define IXL_AQ_PHY_EV_LINK_FAULT	(1 << 3)
    735  1.1  yamaguch #define IXL_AQ_PHY_EV_PHY_TEMP_ALARM	(1 << 4)
    736  1.1  yamaguch #define IXL_AQ_PHY_EV_EXCESS_ERRORS	(1 << 5)
    737  1.1  yamaguch #define IXL_AQ_PHY_EV_SIGNAL_DETECT	(1 << 6)
    738  1.1  yamaguch #define IXL_AQ_PHY_EV_AN_COMPLETED	(1 << 7)
    739  1.1  yamaguch #define IXL_AQ_PHY_EV_MODULE_QUAL_FAIL	(1 << 8)
    740  1.1  yamaguch #define IXL_AQ_PHY_EV_PORT_TX_SUSPENDED	(1 << 9)
    741  1.1  yamaguch 
    742  1.4  yamaguch struct ixl_aq_req_resource_param {
    743  1.4  yamaguch 	uint16_t	 resource_id;
    744  1.4  yamaguch #define IXL_AQ_RESOURCE_ID_NVM		0x0001
    745  1.4  yamaguch #define IXL_AQ_RESOURCE_ID_SDP		0x0002
    746  1.4  yamaguch 
    747  1.4  yamaguch 	uint16_t	 access_type;
    748  1.4  yamaguch #define IXL_AQ_RESOURCE_ACCES_READ	0x01
    749  1.4  yamaguch #define IXL_AQ_RESOURCE_ACCES_WRITE	0x02
    750  1.4  yamaguch 
    751  1.4  yamaguch 	uint16_t	 timeout;
    752  1.4  yamaguch 	uint32_t	 resource_num;
    753  1.4  yamaguch 	uint32_t	 reserved;
    754  1.4  yamaguch } __packed __aligned(8);
    755  1.4  yamaguch 
    756  1.4  yamaguch struct ixl_aq_rel_resource_param {
    757  1.4  yamaguch 	uint16_t	 resource_id;
    758  1.4  yamaguch /* defined in ixl_aq_req_resource_param */
    759  1.4  yamaguch 	uint16_t	 _reserved1[3];
    760  1.4  yamaguch 	uint32_t	 resource_num;
    761  1.4  yamaguch 	uint32_t	 _reserved2;
    762  1.4  yamaguch } __packed __aligned(8);
    763  1.4  yamaguch 
    764  1.4  yamaguch struct ixl_aq_nvm_param {
    765  1.4  yamaguch 	uint8_t		 command_flags;
    766  1.4  yamaguch #define IXL_AQ_NVM_LAST_CMD	(1 << 0)
    767  1.4  yamaguch #define IXL_AQ_NVM_FLASH_ONLY	(1 << 7)
    768  1.4  yamaguch 	uint8_t		 module_pointer;
    769  1.4  yamaguch 	uint16_t	 length;
    770  1.4  yamaguch 	uint32_t	 offset;
    771  1.4  yamaguch 	uint32_t	 addr_hi;
    772  1.4  yamaguch 	uint32_t	 addr_lo;
    773  1.4  yamaguch } __packed __aligned(4);
    774  1.4  yamaguch 
    775  1.6  yamaguch struct ixl_aq_rss_key_param {
    776  1.6  yamaguch 	uint16_t	 vsi_id;
    777  1.6  yamaguch #define IXL_AQ_RSSKEY_VSI_VALID		(0x01 << 15)
    778  1.6  yamaguch #define IXL_AQ_RSSKEY_VSI_ID_SHIFT	0
    779  1.6  yamaguch #define IXL_AQ_RSSKEY_VSI_ID_MASK	(0x3FF << IXL_RSSKEY_VSI_ID_SHIFT)
    780  1.6  yamaguch 
    781  1.6  yamaguch 	uint8_t		 reserved[6];
    782  1.6  yamaguch 	uint32_t	 addr_hi;
    783  1.6  yamaguch 	uint32_t	 addr_lo;
    784  1.6  yamaguch } __packed __aligned(8);
    785  1.6  yamaguch 
    786  1.6  yamaguch struct ixl_aq_rss_key_data {
    787  1.6  yamaguch 	uint8_t	 standard_rss_key[0x28];
    788  1.6  yamaguch 	uint8_t	 extended_hash_key[0xc];
    789  1.6  yamaguch } __packed __aligned(8);
    790  1.6  yamaguch 
    791  1.6  yamaguch struct ixl_aq_rss_lut_param {
    792  1.6  yamaguch 	uint16_t	 vsi_id;
    793  1.6  yamaguch #define IXL_AQ_RSSLUT_VSI_VALID		(0x01 << 15)
    794  1.6  yamaguch #define IXL_AQ_RSSLUT_VSI_ID_SHIFT	0
    795  1.6  yamaguch #define IXL_AQ_RSSLUT_VSI_ID_MASK	(0x03FF << IXL_AQ_RSSLUT_VSI_ID_SHIFT)
    796  1.6  yamaguch 
    797  1.6  yamaguch 	uint16_t flags;
    798  1.6  yamaguch #define IXL_AQ_RSSLUT_TABLE_TYPE_SHIFT	0
    799  1.6  yamaguch #define IXL_AQ_RSSLUT_TABLE_TYPE_MASK	(0x01 << IXL_AQ_RSSLUT_TABLE_TYPE_SHIFT)
    800  1.6  yamaguch #define IXL_AQ_RSSLUT_TABLE_TYPE_VSI	0
    801  1.6  yamaguch #define IXL_AQ_RSSLUT_TABLE_TYPE_PF	1
    802  1.6  yamaguch 	uint8_t		 reserved[4];
    803  1.6  yamaguch 	uint32_t	 addr_hi;
    804  1.6  yamaguch 	uint32_t	 addr_lo;
    805  1.6  yamaguch } __packed __aligned(8);
    806  1.6  yamaguch 
    807  1.1  yamaguch /* aq response codes */
    808  1.1  yamaguch #define IXL_AQ_RC_OK			0  /* success */
    809  1.1  yamaguch #define IXL_AQ_RC_EPERM			1  /* Operation not permitted */
    810  1.1  yamaguch #define IXL_AQ_RC_ENOENT		2  /* No such element */
    811  1.1  yamaguch #define IXL_AQ_RC_ESRCH			3  /* Bad opcode */
    812  1.1  yamaguch #define IXL_AQ_RC_EINTR			4  /* operation interrupted */
    813  1.1  yamaguch #define IXL_AQ_RC_EIO			5  /* I/O error */
    814  1.1  yamaguch #define IXL_AQ_RC_ENXIO			6  /* No such resource */
    815  1.1  yamaguch #define IXL_AQ_RC_E2BIG			7  /* Arg too long */
    816  1.1  yamaguch #define IXL_AQ_RC_EAGAIN		8  /* Try again */
    817  1.1  yamaguch #define IXL_AQ_RC_ENOMEM		9  /* Out of memory */
    818  1.1  yamaguch #define IXL_AQ_RC_EACCES		10 /* Permission denied */
    819  1.1  yamaguch #define IXL_AQ_RC_EFAULT		11 /* Bad address */
    820  1.1  yamaguch #define IXL_AQ_RC_EBUSY			12 /* Device or resource busy */
    821  1.1  yamaguch #define IXL_AQ_RC_EEXIST		13 /* object already exists */
    822  1.1  yamaguch #define IXL_AQ_RC_EINVAL		14 /* invalid argument */
    823  1.1  yamaguch #define IXL_AQ_RC_ENOTTY		15 /* not a typewriter */
    824  1.1  yamaguch #define IXL_AQ_RC_ENOSPC		16 /* No space or alloc failure */
    825  1.1  yamaguch #define IXL_AQ_RC_ENOSYS		17 /* function not implemented */
    826  1.1  yamaguch #define IXL_AQ_RC_ERANGE		18 /* parameter out of range */
    827  1.1  yamaguch #define IXL_AQ_RC_EFLUSHED		19 /* cmd flushed due to prev error */
    828  1.1  yamaguch #define IXL_AQ_RC_BAD_ADDR		20 /* contains a bad pointer */
    829  1.1  yamaguch #define IXL_AQ_RC_EMODE			21 /* not allowed in current mode */
    830  1.1  yamaguch #define IXL_AQ_RC_EFBIG			22 /* file too large */
    831  1.1  yamaguch 
    832  1.1  yamaguch struct ixl_tx_desc {
    833  1.1  yamaguch 	uint64_t		addr;
    834  1.1  yamaguch 	uint64_t		cmd;
    835  1.1  yamaguch #define IXL_TX_DESC_DTYPE_SHIFT		0
    836  1.1  yamaguch #define IXL_TX_DESC_DTYPE_MASK		(0xfULL << IXL_TX_DESC_DTYPE_SHIFT)
    837  1.1  yamaguch #define IXL_TX_DESC_DTYPE_DATA		(0x0ULL << IXL_TX_DESC_DTYPE_SHIFT)
    838  1.1  yamaguch #define IXL_TX_DESC_DTYPE_NOP		(0x1ULL << IXL_TX_DESC_DTYPE_SHIFT)
    839  1.1  yamaguch #define IXL_TX_DESC_DTYPE_CONTEXT	(0x1ULL << IXL_TX_DESC_DTYPE_SHIFT)
    840  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FCOE_CTX	(0x2ULL << IXL_TX_DESC_DTYPE_SHIFT)
    841  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FD		(0x8ULL << IXL_TX_DESC_DTYPE_SHIFT)
    842  1.1  yamaguch #define IXL_TX_DESC_DTYPE_DDP_CTX	(0x9ULL << IXL_TX_DESC_DTYPE_SHIFT)
    843  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FLEX_DATA	(0xbULL << IXL_TX_DESC_DTYPE_SHIFT)
    844  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FLEX_CTX_1	(0xcULL << IXL_TX_DESC_DTYPE_SHIFT)
    845  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FLEX_CTX_2	(0xdULL << IXL_TX_DESC_DTYPE_SHIFT)
    846  1.1  yamaguch #define IXL_TX_DESC_DTYPE_DONE		(0xfULL << IXL_TX_DESC_DTYPE_SHIFT)
    847  1.1  yamaguch 
    848  1.1  yamaguch #define IXL_TX_DESC_CMD_SHIFT		4
    849  1.1  yamaguch #define IXL_TX_DESC_CMD_MASK		(0x3ffULL << IXL_TX_DESC_CMD_SHIFT)
    850  1.1  yamaguch #define IXL_TX_DESC_CMD_EOP		(0x001 << IXL_TX_DESC_CMD_SHIFT)
    851  1.1  yamaguch #define IXL_TX_DESC_CMD_RS		(0x002 << IXL_TX_DESC_CMD_SHIFT)
    852  1.1  yamaguch #define IXL_TX_DESC_CMD_ICRC		(0x004 << IXL_TX_DESC_CMD_SHIFT)
    853  1.1  yamaguch #define IXL_TX_DESC_CMD_IL2TAG1		(0x008 << IXL_TX_DESC_CMD_SHIFT)
    854  1.1  yamaguch #define IXL_TX_DESC_CMD_DUMMY		(0x010 << IXL_TX_DESC_CMD_SHIFT)
    855  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_MASK	(0x060 << IXL_TX_DESC_CMD_SHIFT)
    856  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_NONIP	(0x000 << IXL_TX_DESC_CMD_SHIFT)
    857  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_IPV6	(0x020 << IXL_TX_DESC_CMD_SHIFT)
    858  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_IPV4	(0x040 << IXL_TX_DESC_CMD_SHIFT)
    859  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_IPV4_CSUM	(0x060 << IXL_TX_DESC_CMD_SHIFT)
    860  1.1  yamaguch #define IXL_TX_DESC_CMD_FCOET		(0x080 << IXL_TX_DESC_CMD_SHIFT)
    861  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_MASK	(0x300 << IXL_TX_DESC_CMD_SHIFT)
    862  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_UNK	(0x000 << IXL_TX_DESC_CMD_SHIFT)
    863  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_TCP	(0x100 << IXL_TX_DESC_CMD_SHIFT)
    864  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_SCTP	(0x200 << IXL_TX_DESC_CMD_SHIFT)
    865  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_UDP	(0x300 << IXL_TX_DESC_CMD_SHIFT)
    866  1.1  yamaguch 
    867  1.1  yamaguch #define IXL_TX_DESC_MACLEN_SHIFT	16
    868  1.1  yamaguch #define IXL_TX_DESC_MACLEN_MASK		(0x7fULL << IXL_TX_DESC_MACLEN_SHIFT)
    869  1.1  yamaguch #define IXL_TX_DESC_IPLEN_SHIFT		23
    870  1.1  yamaguch #define IXL_TX_DESC_IPLEN_MASK		(0x7fULL << IXL_TX_DESC_IPLEN_SHIFT)
    871  1.1  yamaguch #define IXL_TX_DESC_L4LEN_SHIFT		30
    872  1.1  yamaguch #define IXL_TX_DESC_L4LEN_MASK		(0xfULL << IXL_TX_DESC_L4LEN_SHIFT)
    873  1.1  yamaguch #define IXL_TX_DESC_FCLEN_SHIFT		30
    874  1.1  yamaguch #define IXL_TX_DESC_FCLEN_MASK		(0xfULL << IXL_TX_DESC_FCLEN_SHIFT)
    875  1.1  yamaguch 
    876  1.1  yamaguch #define IXL_TX_DESC_BSIZE_SHIFT		34
    877  1.1  yamaguch #define IXL_TX_DESC_BSIZE_MAX		0x3fffULL
    878  1.1  yamaguch #define IXL_TX_DESC_BSIZE_MASK		\
    879  1.1  yamaguch 	(IXL_TX_DESC_BSIZE_MAX << IXL_TX_DESC_BSIZE_SHIFT)
    880  1.2  yamaguch #define IXL_TX_DESC_L2TAG1_SHIFT	48
    881  1.1  yamaguch } __packed __aligned(16);
    882  1.1  yamaguch 
    883  1.1  yamaguch struct ixl_rx_rd_desc_16 {
    884  1.1  yamaguch 	uint64_t		paddr; /* packet addr */
    885  1.1  yamaguch 	uint64_t		haddr; /* header addr */
    886  1.1  yamaguch } __packed __aligned(16);
    887  1.1  yamaguch 
    888  1.1  yamaguch struct ixl_rx_rd_desc_32 {
    889  1.1  yamaguch 	uint64_t		paddr; /* packet addr */
    890  1.1  yamaguch 	uint64_t		haddr; /* header addr */
    891  1.1  yamaguch 	uint64_t		_reserved1;
    892  1.1  yamaguch 	uint64_t		_reserved2;
    893  1.1  yamaguch } __packed __aligned(16);
    894  1.1  yamaguch 
    895  1.1  yamaguch struct ixl_rx_wb_desc_16 {
    896  1.1  yamaguch 	uint64_t		qword0;
    897  1.2  yamaguch #define IXL_RX_DESC_L2TAG1_SHIFT	16
    898  1.2  yamaguch #define IXL_RX_DESC_L2TAG1_MASK		(0xffffULL << IXL_RX_DESC_L2TAG1_SHIFT)
    899  1.1  yamaguch 	uint64_t		qword1;
    900  1.1  yamaguch #define IXL_RX_DESC_DD			(1 << 0)
    901  1.1  yamaguch #define IXL_RX_DESC_EOP			(1 << 1)
    902  1.1  yamaguch #define IXL_RX_DESC_L2TAG1P		(1 << 2)
    903  1.1  yamaguch #define IXL_RX_DESC_L3L4P		(1 << 3)
    904  1.1  yamaguch #define IXL_RX_DESC_CRCP		(1 << 4)
    905  1.1  yamaguch #define IXL_RX_DESC_TSYNINDX_SHIFT	5	/* TSYNINDX */
    906  1.1  yamaguch #define IXL_RX_DESC_TSYNINDX_MASK	(7 << IXL_RX_DESC_TSYNINDX_SHIFT)
    907  1.1  yamaguch #define IXL_RX_DESC_UMB_SHIFT		9
    908  1.1  yamaguch #define IXL_RX_DESC_UMB_MASK		(0x3 << IXL_RX_DESC_UMB_SHIFT)
    909  1.1  yamaguch #define IXL_RX_DESC_UMB_UCAST		(0x0 << IXL_RX_DESC_UMB_SHIFT)
    910  1.1  yamaguch #define IXL_RX_DESC_UMB_MCAST		(0x1 << IXL_RX_DESC_UMB_SHIFT)
    911  1.1  yamaguch #define IXL_RX_DESC_UMB_BCAST		(0x2 << IXL_RX_DESC_UMB_SHIFT)
    912  1.1  yamaguch #define IXL_RX_DESC_UMB_MIRROR		(0x3 << IXL_RX_DESC_UMB_SHIFT)
    913  1.1  yamaguch #define IXL_RX_DESC_FLM			(1 << 11)
    914  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_SHIFT	12
    915  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_MASK	(0x3 << IXL_RX_DESC_FLTSTAT_SHIFT)
    916  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_NODATA	(0x0 << IXL_RX_DESC_FLTSTAT_SHIFT)
    917  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_FDFILTID	(0x1 << IXL_RX_DESC_FLTSTAT_SHIFT)
    918  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_RSS		(0x3 << IXL_RX_DESC_FLTSTAT_SHIFT)
    919  1.1  yamaguch #define IXL_RX_DESC_LPBK		(1 << 14)
    920  1.1  yamaguch #define IXL_RX_DESC_IPV6EXTADD		(1 << 15)
    921  1.1  yamaguch #define IXL_RX_DESC_INT_UDP_0		(1 << 18)
    922  1.1  yamaguch 
    923  1.1  yamaguch #define IXL_RX_DESC_RXE			(1 << 19)
    924  1.1  yamaguch #define IXL_RX_DESC_HBO			(1 << 21)
    925  1.1  yamaguch #define IXL_RX_DESC_IPE			(1 << 22)
    926  1.1  yamaguch #define IXL_RX_DESC_L4E			(1 << 23)
    927  1.1  yamaguch #define IXL_RX_DESC_EIPE		(1 << 24)
    928  1.1  yamaguch #define IXL_RX_DESC_OVERSIZE		(1 << 25)
    929  1.1  yamaguch 
    930  1.1  yamaguch #define IXL_RX_DESC_PTYPE_SHIFT		30
    931  1.1  yamaguch #define IXL_RX_DESC_PTYPE_MASK		(0xffULL << IXL_RX_DESC_PTYPE_SHIFT)
    932  1.1  yamaguch 
    933  1.1  yamaguch #define IXL_RX_DESC_PLEN_SHIFT		38
    934  1.1  yamaguch #define IXL_RX_DESC_PLEN_MASK		(0x3fffULL << IXL_RX_DESC_PLEN_SHIFT)
    935  1.1  yamaguch #define IXL_RX_DESC_HLEN_SHIFT		42
    936  1.1  yamaguch #define IXL_RX_DESC_HLEN_MASK		(0x7ffULL << IXL_RX_DESC_HLEN_SHIFT)
    937  1.1  yamaguch } __packed __aligned(16);
    938  1.1  yamaguch 
    939  1.3  yamaguch enum ixl_rx_desc_ptype {
    940  1.3  yamaguch 	IXL_RX_DESC_PTYPE_IPV4FRAG	= 22,
    941  1.3  yamaguch 	IXL_RX_DESC_PTYPE_IPV4		= 23,
    942  1.3  yamaguch 	IXL_RX_DESC_PTYPE_UDPV4		= 24,
    943  1.3  yamaguch 	IXL_RX_DESC_PTYPE_TCPV4		= 26,
    944  1.3  yamaguch 	IXL_RX_DESC_PTYPE_SCTPV4	= 27,
    945  1.3  yamaguch 	IXL_RX_DESC_PTYPE_ICMPV4	= 28,
    946  1.3  yamaguch 
    947  1.3  yamaguch 	IXL_RX_DESC_PTYPE_IPV6FRAG	= 88,
    948  1.3  yamaguch 	IXL_RX_DESC_PTYPE_IPV6		= 89,
    949  1.3  yamaguch 	IXL_RX_DESC_PTYPE_UDPV6		= 90,
    950  1.3  yamaguch 	IXL_RX_DESC_PTYPE_TCPV6		= 92,
    951  1.3  yamaguch 	IXL_RX_DESC_PTYPE_SCTPV6	= 93,
    952  1.3  yamaguch 	IXL_RX_DESC_PTYPE_ICMPV6	= 94,
    953  1.3  yamaguch };
    954  1.3  yamaguch 
    955  1.1  yamaguch struct ixl_rx_wb_desc_32 {
    956  1.1  yamaguch 	uint64_t		qword0;
    957  1.1  yamaguch 	uint64_t		qword1;
    958  1.1  yamaguch 	uint64_t		qword2;
    959  1.1  yamaguch 	uint64_t		qword3;
    960  1.1  yamaguch } __packed __aligned(16);
    961  1.1  yamaguch 
    962  1.1  yamaguch enum i40e_mac_type {
    963  1.1  yamaguch 	I40E_MAC_XL710,
    964  1.1  yamaguch 	I40E_MAC_X722,
    965  1.1  yamaguch 	I40E_MAC_X722_VF,
    966  1.1  yamaguch 	I40E_MAC_VF,
    967  1.1  yamaguch 	I40E_MAC_GENERIC
    968  1.1  yamaguch };
    969  1.1  yamaguch 
    970  1.4  yamaguch #define I40E_SR_NVM_DEV_STARTER_VERSION	0x18
    971  1.4  yamaguch #define I40E_SR_BOOT_CONFIG_PTR		0x17
    972  1.4  yamaguch #define I40E_NVM_OEM_VER_OFF		0x83
    973  1.4  yamaguch #define I40E_SR_NVM_EETRACK_LO		0x2D
    974  1.4  yamaguch #define I40E_SR_NVM_EETRACK_HI		0x2E
    975  1.4  yamaguch 
    976  1.4  yamaguch #define IXL_NVM_VERSION_LO_SHIFT	0
    977  1.4  yamaguch #define IXL_NVM_VERSION_LO_MASK		(0xffUL << IXL_NVM_VERSION_LO_SHIFT)
    978  1.4  yamaguch #define IXL_NVM_VERSION_HI_SHIFT	12
    979  1.4  yamaguch #define IXL_NVM_VERSION_HI_MASK		(0xfUL << IXL_NVM_VERSION_HI_SHIFT)
    980  1.4  yamaguch #define IXL_NVM_OEMVERSION_SHIFT	24
    981  1.4  yamaguch #define IXL_NVM_OEMVERSION_MASK		(0xffUL << IXL_NVM_OEMVERSION_SHIFT)
    982  1.4  yamaguch #define IXL_NVM_OEMBUILD_SHIFT		8
    983  1.4  yamaguch #define IXL_NVM_OEMBUILD_MASK		(0xffffUL << IXL_NVM_OEMBUILD_SHIFT)
    984  1.4  yamaguch #define IXL_NVM_OEMPATCH_SHIFT		0
    985  1.4  yamaguch #define IXL_NVM_OEMPATCH_MASK		(0xff << IXL_NVM_OEMPATCH_SHIFT)
    986  1.7  yamaguch 
    987  1.7  yamaguch struct ixl_aq_buf {
    988  1.7  yamaguch 	SIMPLEQ_ENTRY(ixl_aq_buf)
    989  1.7  yamaguch 				 aqb_entry;
    990  1.7  yamaguch 	void			*aqb_data;
    991  1.7  yamaguch 	bus_dmamap_t		 aqb_map;
    992  1.7  yamaguch 	bus_dma_segment_t	 aqb_seg;
    993  1.7  yamaguch 	size_t			 aqb_size;
    994  1.7  yamaguch 	int			 aqb_nsegs;
    995  1.7  yamaguch };
    996  1.7  yamaguch SIMPLEQ_HEAD(ixl_aq_bufs, ixl_aq_buf);
    997  1.7  yamaguch 
    998  1.7  yamaguch #define IXL_AQB_MAP(_aqb)	((_aqb)->aqb_map)
    999  1.7  yamaguch #define IXL_AQB_DVA(_aqb)	((_aqb)->aqb_map->dm_segs[0].ds_addr)
   1000  1.7  yamaguch #define IXL_AQB_KVA(_aqb)	((void *)(_aqb)->aqb_data)
   1001  1.7  yamaguch #define IXL_AQB_LEN(_aqb)	((_aqb)->aqb_size)
   1002  1.7  yamaguch 
   1003  1.7  yamaguch static inline unsigned int
   1004  1.7  yamaguch ixl_rxr_unrefreshed(unsigned int prod, unsigned int cons, unsigned int ndescs)
   1005  1.7  yamaguch {
   1006  1.7  yamaguch 	unsigned int num;
   1007  1.7  yamaguch 
   1008  1.7  yamaguch 	if (prod  < cons)
   1009  1.7  yamaguch 		num = cons - prod;
   1010  1.7  yamaguch 	else
   1011  1.7  yamaguch 		num  = (ndescs - prod) + cons;
   1012  1.7  yamaguch 
   1013  1.7  yamaguch 	if (__predict_true(num > 0)) {
   1014  1.7  yamaguch 		/* device cannot receive packets if all descripter is filled */
   1015  1.7  yamaguch 		num -= 1;
   1016  1.7  yamaguch 	}
   1017  1.7  yamaguch 
   1018  1.7  yamaguch 	return num;
   1019  1.7  yamaguch }
   1020  1.7  yamaguch 
   1021  1.7  yamaguch struct ixl_dmamem {
   1022  1.7  yamaguch 	bus_dmamap_t		 ixm_map;
   1023  1.7  yamaguch 	bus_dma_segment_t	 ixm_seg;
   1024  1.7  yamaguch 	int			 ixm_nsegs;
   1025  1.7  yamaguch 	size_t			 ixm_size;
   1026  1.7  yamaguch 	void			*ixm_kva;
   1027  1.7  yamaguch };
   1028  1.7  yamaguch 
   1029  1.7  yamaguch #define IXL_DMA_MAP(_ixm)	((_ixm)->ixm_map)
   1030  1.7  yamaguch #define IXL_DMA_DVA(_ixm)	((_ixm)->ixm_map->dm_segs[0].ds_addr)
   1031  1.7  yamaguch #define IXL_DMA_KVA(_ixm)	((void *)(_ixm)->ixm_kva)
   1032  1.7  yamaguch #define IXL_DMA_LEN(_ixm)	((_ixm)->ixm_size)
   1033  1.7  yamaguch 
   1034  1.7  yamaguch static inline uint32_t
   1035  1.7  yamaguch ixl_dmamem_hi(struct ixl_dmamem *ixm)
   1036  1.7  yamaguch {
   1037  1.7  yamaguch 	uint32_t retval;
   1038  1.7  yamaguch 	uint64_t val;
   1039  1.7  yamaguch 
   1040  1.7  yamaguch 	if (sizeof(IXL_DMA_DVA(ixm)) > 4) {
   1041  1.7  yamaguch 		val = (intptr_t)IXL_DMA_DVA(ixm);
   1042  1.7  yamaguch 		retval = val >> 32;
   1043  1.7  yamaguch 	} else {
   1044  1.7  yamaguch 		retval = 0;
   1045  1.7  yamaguch 	}
   1046  1.7  yamaguch 
   1047  1.7  yamaguch 	return retval;
   1048  1.7  yamaguch }
   1049  1.7  yamaguch 
   1050  1.7  yamaguch static inline uint32_t
   1051  1.7  yamaguch ixl_dmamem_lo(struct ixl_dmamem *ixm)
   1052  1.7  yamaguch {
   1053  1.7  yamaguch 
   1054  1.7  yamaguch 	return (uint32_t)IXL_DMA_DVA(ixm);
   1055  1.7  yamaguch }
   1056  1.7  yamaguch 
   1057  1.7  yamaguch struct i40e_eth_stats {
   1058  1.7  yamaguch 	uint64_t	 rx_bytes;
   1059  1.7  yamaguch 	uint64_t	 rx_unicast;
   1060  1.7  yamaguch 	uint64_t	 rx_multicast;
   1061  1.7  yamaguch 	uint64_t	 rx_broadcast;
   1062  1.7  yamaguch 	uint64_t	 rx_discards;
   1063  1.7  yamaguch 	uint64_t	 rx_unknown_protocol;
   1064  1.7  yamaguch 
   1065  1.7  yamaguch 	uint64_t	 tx_bytes;
   1066  1.7  yamaguch 	uint64_t	 tx_unicast;
   1067  1.7  yamaguch 	uint64_t	 tx_multicast;
   1068  1.7  yamaguch 	uint64_t	 tx_broadcast;
   1069  1.7  yamaguch 	uint64_t	 tx_discards;
   1070  1.7  yamaguch 	uint64_t	 tx_errors;
   1071  1.7  yamaguch } __packed;
   1072  1.1  yamaguch #endif
   1073