Home | History | Annotate | Line # | Download | only in pci
if_ixlvar.h revision 1.2
      1  1.2  yamaguch /*	$NetBSD: if_ixlvar.h,v 1.2 2019/12/20 02:12:31 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.1  yamaguch enum i40e_reset_type {
     64  1.1  yamaguch 	I40E_RESET_POR          = 0,
     65  1.1  yamaguch 	I40E_RESET_CORER        = 1,
     66  1.1  yamaguch 	I40E_RESET_GLOBR        = 2,
     67  1.1  yamaguch 	I40E_RESET_EMPR         = 3,
     68  1.1  yamaguch };
     69  1.1  yamaguch 
     70  1.1  yamaguch struct ixl_aq_desc {
     71  1.1  yamaguch 	uint16_t	iaq_flags;
     72  1.1  yamaguch #define	IXL_AQ_DD		(1U << 0)
     73  1.1  yamaguch #define	IXL_AQ_CMP		(1U << 1)
     74  1.1  yamaguch #define IXL_AQ_ERR		(1U << 2)
     75  1.1  yamaguch #define IXL_AQ_VFE		(1U << 3)
     76  1.1  yamaguch #define IXL_AQ_LB		(1U << 9)
     77  1.1  yamaguch #define IXL_AQ_RD		(1U << 10)
     78  1.1  yamaguch #define IXL_AQ_VFC		(1U << 11)
     79  1.1  yamaguch #define IXL_AQ_BUF		(1U << 12)
     80  1.1  yamaguch #define IXL_AQ_SI		(1U << 13)
     81  1.1  yamaguch #define IXL_AQ_EI		(1U << 14)
     82  1.1  yamaguch #define IXL_AQ_FE		(1U << 15)
     83  1.1  yamaguch 
     84  1.1  yamaguch #define IXL_AQ_FLAGS_FMT	"\020" "\020FE" "\017EI" "\016SI" "\015BUF" \
     85  1.1  yamaguch 				    "\014VFC" "\013DB" "\012LB" "\004VFE" \
     86  1.1  yamaguch 				    "\003ERR" "\002CMP" "\001DD"
     87  1.1  yamaguch 
     88  1.1  yamaguch 	uint16_t	iaq_opcode;
     89  1.1  yamaguch 
     90  1.1  yamaguch 	uint16_t	iaq_datalen;
     91  1.1  yamaguch 	uint16_t	iaq_retval;
     92  1.1  yamaguch 
     93  1.1  yamaguch 	uint64_t	iaq_cookie;
     94  1.1  yamaguch 
     95  1.1  yamaguch 	uint32_t	iaq_param[4];
     96  1.1  yamaguch /*	iaq_data_hi	iaq_param[2] */
     97  1.1  yamaguch /*	iaq_data_lo	iaq_param[3] */
     98  1.1  yamaguch } __packed __aligned(16);
     99  1.1  yamaguch 
    100  1.1  yamaguch /* aq commands */
    101  1.1  yamaguch #define IXL_AQ_OP_GET_VERSION		0x0001
    102  1.1  yamaguch #define IXL_AQ_OP_DRIVER_VERSION	0x0002
    103  1.1  yamaguch #define IXL_AQ_OP_QUEUE_SHUTDOWN	0x0003
    104  1.1  yamaguch #define IXL_AQ_OP_SET_PF_CONTEXT	0x0004
    105  1.1  yamaguch #define IXL_AQ_OP_GET_AQ_ERR_REASON	0x0005
    106  1.1  yamaguch #define IXL_AQ_OP_REQUEST_RESOURCE	0x0008
    107  1.1  yamaguch #define IXL_AQ_OP_RELEASE_RESOURCE	0x0009
    108  1.1  yamaguch #define IXL_AQ_OP_LIST_FUNC_CAP		0x000a
    109  1.1  yamaguch #define IXL_AQ_OP_LIST_DEV_CAP		0x000b
    110  1.1  yamaguch #define IXL_AQ_OP_MAC_ADDRESS_READ	0x0107
    111  1.1  yamaguch #define IXL_AQ_OP_CLEAR_PXE_MODE	0x0110
    112  1.1  yamaguch #define IXL_AQ_OP_SWITCH_GET_CONFIG	0x0200
    113  1.1  yamaguch #define IXL_AQ_OP_RX_CTL_REG_READ	0x0206
    114  1.1  yamaguch #define IXL_AQ_OP_RX_CTL_REG_WRITE	0x0207
    115  1.1  yamaguch #define IXL_AQ_OP_ADD_VSI		0x0210
    116  1.1  yamaguch #define IXL_AQ_OP_UPD_VSI_PARAMS	0x0211
    117  1.1  yamaguch #define IXL_AQ_OP_GET_VSI_PARAMS	0x0212
    118  1.1  yamaguch #define IXL_AQ_OP_ADD_VEB		0x0230
    119  1.1  yamaguch #define IXL_AQ_OP_UPD_VEB_PARAMS	0x0231
    120  1.1  yamaguch #define IXL_AQ_OP_GET_VEB_PARAMS	0x0232
    121  1.1  yamaguch #define IXL_AQ_OP_ADD_MACVLAN		0x0250
    122  1.1  yamaguch #define IXL_AQ_OP_REMOVE_MACVLAN	0x0251
    123  1.1  yamaguch #define IXL_AQ_OP_SET_VSI_PROMISC	0x0254
    124  1.1  yamaguch #define IXL_AQ_OP_PHY_GET_ABILITIES	0x0600
    125  1.1  yamaguch #define IXL_AQ_OP_PHY_SET_CONFIG	0x0601
    126  1.1  yamaguch #define IXL_AQ_OP_PHY_SET_MAC_CONFIG	0x0603
    127  1.1  yamaguch #define IXL_AQ_OP_PHY_RESTART_AN	0x0605
    128  1.1  yamaguch #define IXL_AQ_OP_PHY_LINK_STATUS	0x0607
    129  1.1  yamaguch #define IXL_AQ_OP_PHY_SET_EVENT_MASK	0x0613
    130  1.1  yamaguch #define IXL_AQ_OP_PHY_SET_REGISTER	0x0628
    131  1.1  yamaguch #define IXL_AQ_OP_PHY_GET_REGISTER	0x0629
    132  1.1  yamaguch #define IXL_AQ_OP_LLDP_GET_MIB		0x0a00
    133  1.1  yamaguch #define IXL_AQ_OP_LLDP_MIB_CHG_EV	0x0a01
    134  1.1  yamaguch #define IXL_AQ_OP_LLDP_ADD_TLV		0x0a02
    135  1.1  yamaguch #define IXL_AQ_OP_LLDP_UPD_TLV		0x0a03
    136  1.1  yamaguch #define IXL_AQ_OP_LLDP_DEL_TLV		0x0a04
    137  1.1  yamaguch #define IXL_AQ_OP_LLDP_STOP_AGENT	0x0a05
    138  1.1  yamaguch #define IXL_AQ_OP_LLDP_START_AGENT	0x0a06
    139  1.1  yamaguch #define IXL_AQ_OP_LLDP_GET_CEE_DCBX	0x0a07
    140  1.1  yamaguch #define IXL_AQ_OP_LLDP_SPECIFIC_AGENT	0x0a09
    141  1.1  yamaguch 
    142  1.1  yamaguch struct ixl_aq_mac_addresses {
    143  1.1  yamaguch 	uint8_t		pf_lan[ETHER_ADDR_LEN];
    144  1.1  yamaguch 	uint8_t		pf_san[ETHER_ADDR_LEN];
    145  1.1  yamaguch 	uint8_t		port[ETHER_ADDR_LEN];
    146  1.1  yamaguch 	uint8_t		pf_wol[ETHER_ADDR_LEN];
    147  1.1  yamaguch } __packed;
    148  1.1  yamaguch 
    149  1.1  yamaguch #define IXL_AQ_MAC_PF_LAN_VALID		(1U << 4)
    150  1.1  yamaguch #define IXL_AQ_MAC_PF_SAN_VALID		(1U << 5)
    151  1.1  yamaguch #define IXL_AQ_MAC_PORT_VALID		(1U << 6)
    152  1.1  yamaguch #define IXL_AQ_MAC_PF_WOL_VALID		(1U << 7)
    153  1.1  yamaguch 
    154  1.1  yamaguch struct ixl_aq_capability {
    155  1.1  yamaguch 	uint16_t	cap_id;
    156  1.1  yamaguch #define IXL_AQ_CAP_SWITCH_MODE		0x0001
    157  1.1  yamaguch #define IXL_AQ_CAP_MNG_MODE		0x0002
    158  1.1  yamaguch #define IXL_AQ_CAP_NPAR_ACTIVE		0x0003
    159  1.1  yamaguch #define IXL_AQ_CAP_OS2BMC_CAP		0x0004
    160  1.1  yamaguch #define IXL_AQ_CAP_FUNCTIONS_VALID	0x0005
    161  1.1  yamaguch #define IXL_AQ_CAP_ALTERNATE_RAM	0x0006
    162  1.1  yamaguch #define IXL_AQ_CAP_WOL_AND_PROXY	0x0008
    163  1.1  yamaguch #define IXL_AQ_CAP_SRIOV		0x0012
    164  1.1  yamaguch #define IXL_AQ_CAP_VF			0x0013
    165  1.1  yamaguch #define IXL_AQ_CAP_VMDQ			0x0014
    166  1.1  yamaguch #define IXL_AQ_CAP_8021QBG		0x0015
    167  1.1  yamaguch #define IXL_AQ_CAP_8021QBR		0x0016
    168  1.1  yamaguch #define IXL_AQ_CAP_VSI			0x0017
    169  1.1  yamaguch #define IXL_AQ_CAP_DCB			0x0018
    170  1.1  yamaguch #define IXL_AQ_CAP_FCOE			0x0021
    171  1.1  yamaguch #define IXL_AQ_CAP_ISCSI		0x0022
    172  1.1  yamaguch #define IXL_AQ_CAP_RSS			0x0040
    173  1.1  yamaguch #define IXL_AQ_CAP_RXQ			0x0041
    174  1.1  yamaguch #define IXL_AQ_CAP_TXQ			0x0042
    175  1.1  yamaguch #define IXL_AQ_CAP_MSIX			0x0043
    176  1.1  yamaguch #define IXL_AQ_CAP_VF_MSIX		0x0044
    177  1.1  yamaguch #define IXL_AQ_CAP_FLOW_DIRECTOR	0x0045
    178  1.1  yamaguch #define IXL_AQ_CAP_1588			0x0046
    179  1.1  yamaguch #define IXL_AQ_CAP_IWARP		0x0051
    180  1.1  yamaguch #define IXL_AQ_CAP_LED			0x0061
    181  1.1  yamaguch #define IXL_AQ_CAP_SDP			0x0062
    182  1.1  yamaguch #define IXL_AQ_CAP_MDIO			0x0063
    183  1.1  yamaguch #define IXL_AQ_CAP_WSR_PROT		0x0064
    184  1.1  yamaguch #define IXL_AQ_CAP_NVM_MGMT		0x0080
    185  1.1  yamaguch #define IXL_AQ_CAP_FLEX10		0x00F1
    186  1.1  yamaguch #define IXL_AQ_CAP_CEM			0x00F2
    187  1.1  yamaguch 	uint8_t		major_rev;
    188  1.1  yamaguch 	uint8_t		minor_rev;
    189  1.1  yamaguch 	uint32_t	number;
    190  1.1  yamaguch 	uint32_t	logical_id;
    191  1.1  yamaguch 	uint32_t	phys_id;
    192  1.1  yamaguch 	uint8_t		_reserved[16];
    193  1.1  yamaguch } __packed __aligned(4);
    194  1.1  yamaguch 
    195  1.1  yamaguch #define IXL_LLDP_SHUTDOWN		0x1
    196  1.1  yamaguch 
    197  1.1  yamaguch struct ixl_aq_switch_config {
    198  1.1  yamaguch 	uint16_t	num_reported;
    199  1.1  yamaguch 	uint16_t	num_total;
    200  1.1  yamaguch 	uint8_t		_reserved[12];
    201  1.1  yamaguch } __packed __aligned(4);
    202  1.1  yamaguch 
    203  1.1  yamaguch struct ixl_aq_switch_config_element {
    204  1.1  yamaguch 	uint8_t		type;
    205  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_MAC		1
    206  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_PF		2
    207  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_VF		3
    208  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_EMP		4
    209  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_BMC		5
    210  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_PV		16
    211  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_VEB		17
    212  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_PA		18
    213  1.1  yamaguch #define IXL_AQ_SW_ELEM_TYPE_VSI		19
    214  1.1  yamaguch 	uint8_t		revision;
    215  1.1  yamaguch #define IXL_AQ_SW_ELEM_REV_1		1
    216  1.1  yamaguch 	uint16_t	seid;
    217  1.1  yamaguch 
    218  1.1  yamaguch 	uint16_t	uplink_seid;
    219  1.1  yamaguch 	uint16_t	downlink_seid;
    220  1.1  yamaguch 
    221  1.1  yamaguch 	uint8_t		_reserved[3];
    222  1.1  yamaguch 	uint8_t		connection_type;
    223  1.1  yamaguch #define IXL_AQ_CONN_TYPE_REGULAR	0x1
    224  1.1  yamaguch #define IXL_AQ_CONN_TYPE_DEFAULT	0x2
    225  1.1  yamaguch #define IXL_AQ_CONN_TYPE_CASCADED	0x3
    226  1.1  yamaguch 
    227  1.1  yamaguch 	uint16_t	scheduler_id;
    228  1.1  yamaguch 	uint16_t	element_info;
    229  1.1  yamaguch } __packed __aligned(4);
    230  1.1  yamaguch 
    231  1.1  yamaguch #define IXL_PHY_TYPE_SGMII		0x00
    232  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_KX	0x01
    233  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_KX4	0x02
    234  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_KR		0x03
    235  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_KR4	0x04
    236  1.1  yamaguch #define IXL_PHY_TYPE_XAUI		0x05
    237  1.1  yamaguch #define IXL_PHY_TYPE_XFI		0x06
    238  1.1  yamaguch #define IXL_PHY_TYPE_SFI		0x07
    239  1.1  yamaguch #define IXL_PHY_TYPE_XLAUI		0x08
    240  1.1  yamaguch #define IXL_PHY_TYPE_XLPPI		0x09
    241  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_CR4_CU	0x0a
    242  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_CR1_CU	0x0b
    243  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_AOC	0x0c
    244  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_AOC	0x0d
    245  1.1  yamaguch #define IXL_PHY_TYPE_100BASE_TX		0x11
    246  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_T		0x12
    247  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_T		0x13
    248  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_SR		0x14
    249  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_LR		0x15
    250  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_SFPP_CU	0x16
    251  1.1  yamaguch #define IXL_PHY_TYPE_10GBASE_CR1	0x17
    252  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_CR4	0x18
    253  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_SR4	0x19
    254  1.1  yamaguch #define IXL_PHY_TYPE_40GBASE_LR4	0x1a
    255  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_SX	0x1b
    256  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_LX	0x1c
    257  1.1  yamaguch #define IXL_PHY_TYPE_1000BASE_T_OPTICAL	0x1d
    258  1.1  yamaguch #define IXL_PHY_TYPE_20GBASE_KR2	0x1e
    259  1.1  yamaguch 
    260  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_KR		0x1f
    261  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_CR		0x20
    262  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_SR		0x21
    263  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_LR		0x22
    264  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_AOC	0x23
    265  1.1  yamaguch #define IXL_PHY_TYPE_25GBASE_ACC	0x24
    266  1.1  yamaguch 
    267  1.1  yamaguch struct ixl_aq_module_desc {
    268  1.1  yamaguch 	uint8_t		oui[3];
    269  1.1  yamaguch 	uint8_t		_reserved1;
    270  1.1  yamaguch 	uint8_t		part_number[16];
    271  1.1  yamaguch 	uint8_t		revision[4];
    272  1.1  yamaguch 	uint8_t		_reserved2[8];
    273  1.1  yamaguch } __packed __aligned(4);
    274  1.1  yamaguch 
    275  1.1  yamaguch struct ixl_aq_phy_abilities {
    276  1.1  yamaguch 	uint32_t	phy_type;
    277  1.1  yamaguch 
    278  1.1  yamaguch 	uint8_t		link_speed;
    279  1.1  yamaguch #define IXL_AQ_PHY_LINK_SPEED_100MB	(1 << 1)
    280  1.1  yamaguch #define IXL_AQ_PHY_LINK_SPEED_1000MB	(1 << 2)
    281  1.1  yamaguch #define IXL_AQ_PHY_LINK_SPEED_10GB	(1 << 3)
    282  1.1  yamaguch #define IXL_AQ_PHY_LINK_SPEED_40GB	(1 << 4)
    283  1.1  yamaguch #define IXL_AQ_PHY_LINK_SPEED_20GB	(1 << 5)
    284  1.1  yamaguch #define IXL_AQ_PHY_LINK_SPEED_25GB	(1 << 6)
    285  1.1  yamaguch 	uint8_t		abilities;
    286  1.1  yamaguch 	uint16_t	eee_capability;
    287  1.1  yamaguch 
    288  1.1  yamaguch 	uint32_t	eeer_val;
    289  1.1  yamaguch 
    290  1.1  yamaguch 	uint8_t		d3_lpan;
    291  1.1  yamaguch 	uint8_t		phy_type_ext;
    292  1.1  yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_KR	0x01
    293  1.1  yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_CR	0x02
    294  1.1  yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_SR	0x04
    295  1.1  yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_LR	0x08
    296  1.1  yamaguch 	uint8_t		fec_cfg_curr_mod_ext_info;
    297  1.1  yamaguch #define IXL_AQ_ENABLE_FEC_KR		0x01
    298  1.1  yamaguch #define IXL_AQ_ENABLE_FEC_RS		0x02
    299  1.1  yamaguch #define IXL_AQ_REQUEST_FEC_KR		0x04
    300  1.1  yamaguch #define IXL_AQ_REQUEST_FEC_RS		0x08
    301  1.1  yamaguch #define IXL_AQ_ENABLE_FEC_AUTO		0x10
    302  1.1  yamaguch #define IXL_AQ_MODULE_TYPE_EXT_MASK	0xe0
    303  1.1  yamaguch #define IXL_AQ_MODULE_TYPE_EXT_SHIFT	5
    304  1.1  yamaguch 	uint8_t		ext_comp_code;
    305  1.1  yamaguch 
    306  1.1  yamaguch 	uint8_t		phy_id[4];
    307  1.1  yamaguch 
    308  1.1  yamaguch 	uint8_t		module_type[3];
    309  1.1  yamaguch #define IXL_SFF8024_ID_SFP		0x03
    310  1.1  yamaguch #define IXL_SFF8024_ID_QSFP		0x0c
    311  1.1  yamaguch #define IXL_SFF8024_ID_QSFP_PLUS	0x0d
    312  1.1  yamaguch #define IXL_SFF8024_ID_QSFP28		0x11
    313  1.1  yamaguch 	uint8_t		qualified_module_count;
    314  1.1  yamaguch #define IXL_AQ_PHY_MAX_QMS		16
    315  1.1  yamaguch 	struct ixl_aq_module_desc
    316  1.1  yamaguch 			qualified_module[IXL_AQ_PHY_MAX_QMS];
    317  1.1  yamaguch } __packed __aligned(4);
    318  1.1  yamaguch 
    319  1.1  yamaguch struct ixl_aq_link_param {
    320  1.1  yamaguch 	uint8_t		notify;
    321  1.1  yamaguch #define IXL_AQ_LINK_NOTIFY	0x03
    322  1.1  yamaguch 	uint8_t		_reserved1;
    323  1.1  yamaguch 	uint8_t		phy;
    324  1.1  yamaguch 	uint8_t		speed;
    325  1.1  yamaguch 	uint8_t		status;
    326  1.1  yamaguch 	uint8_t		_reserved2[11];
    327  1.1  yamaguch } __packed __aligned(4);
    328  1.1  yamaguch 
    329  1.1  yamaguch struct ixl_aq_vsi_param {
    330  1.1  yamaguch 	uint16_t	uplink_seid;
    331  1.1  yamaguch 	uint8_t		connect_type;
    332  1.1  yamaguch #define IXL_AQ_VSI_CONN_TYPE_NORMAL	(0x1)
    333  1.1  yamaguch #define IXL_AQ_VSI_CONN_TYPE_DEFAULT	(0x2)
    334  1.1  yamaguch #define IXL_AQ_VSI_CONN_TYPE_CASCADED	(0x3)
    335  1.1  yamaguch 	uint8_t		_reserved1;
    336  1.1  yamaguch 
    337  1.1  yamaguch 	uint8_t		vf_id;
    338  1.1  yamaguch 	uint8_t		_reserved2;
    339  1.1  yamaguch 	uint16_t	vsi_flags;
    340  1.1  yamaguch #define IXL_AQ_VSI_TYPE_SHIFT		0x0
    341  1.1  yamaguch #define IXL_AQ_VSI_TYPE_MASK		(0x3 << IXL_AQ_VSI_TYPE_SHIFT)
    342  1.1  yamaguch #define IXL_AQ_VSI_TYPE_VF		0x0
    343  1.1  yamaguch #define IXL_AQ_VSI_TYPE_VMDQ2		0x1
    344  1.1  yamaguch #define IXL_AQ_VSI_TYPE_PF		0x2
    345  1.1  yamaguch #define IXL_AQ_VSI_TYPE_EMP_MNG		0x3
    346  1.1  yamaguch #define IXL_AQ_VSI_FLAG_CASCADED_PV	0x4
    347  1.1  yamaguch 
    348  1.1  yamaguch 	uint32_t	addr_hi;
    349  1.1  yamaguch 	uint32_t	addr_lo;
    350  1.1  yamaguch } __packed __aligned(16);
    351  1.1  yamaguch 
    352  1.1  yamaguch struct ixl_aq_add_macvlan {
    353  1.1  yamaguch 	uint16_t	num_addrs;
    354  1.1  yamaguch 	uint16_t	seid0;
    355  1.1  yamaguch 	uint16_t	seid1;
    356  1.1  yamaguch 	uint16_t	seid2;
    357  1.1  yamaguch 	uint32_t	addr_hi;
    358  1.1  yamaguch 	uint32_t	addr_lo;
    359  1.1  yamaguch } __packed __aligned(16);
    360  1.1  yamaguch 
    361  1.1  yamaguch struct ixl_aq_add_macvlan_elem {
    362  1.1  yamaguch 	uint8_t		macaddr[6];
    363  1.1  yamaguch 	uint16_t	vlan;
    364  1.1  yamaguch 	uint16_t	flags;
    365  1.1  yamaguch #define IXL_AQ_OP_ADD_MACVLAN_PERFECT_MATCH	0x0001
    366  1.1  yamaguch #define IXL_AQ_OP_ADD_MACVLAN_IGNORE_VLAN	0x0004
    367  1.1  yamaguch 	uint16_t	queue;
    368  1.1  yamaguch 	uint32_t	_reserved;
    369  1.1  yamaguch } __packed __aligned(16);
    370  1.1  yamaguch 
    371  1.1  yamaguch struct ixl_aq_remove_macvlan {
    372  1.1  yamaguch 	uint16_t	num_addrs;
    373  1.1  yamaguch 	uint16_t	seid0;
    374  1.1  yamaguch 	uint16_t	seid1;
    375  1.1  yamaguch 	uint16_t	seid2;
    376  1.1  yamaguch 	uint32_t	addr_hi;
    377  1.1  yamaguch 	uint32_t	addr_lo;
    378  1.1  yamaguch } __packed __aligned(16);
    379  1.1  yamaguch 
    380  1.1  yamaguch struct ixl_aq_remove_macvlan_elem {
    381  1.1  yamaguch 	uint8_t		macaddr[6];
    382  1.1  yamaguch 	uint16_t	vlan;
    383  1.1  yamaguch 	uint8_t		flags;
    384  1.1  yamaguch #define IXL_AQ_OP_REMOVE_MACVLAN_PERFECT_MATCH	0x0001
    385  1.1  yamaguch #define IXL_AQ_OP_REMOVE_MACVLAN_IGNORE_VLAN	0x0008
    386  1.1  yamaguch 	uint8_t		_reserved[7];
    387  1.1  yamaguch } __packed __aligned(16);
    388  1.1  yamaguch 
    389  1.1  yamaguch struct ixl_aq_vsi_reply {
    390  1.1  yamaguch 	uint16_t	seid;
    391  1.1  yamaguch 	uint16_t	vsi_number;
    392  1.1  yamaguch 
    393  1.1  yamaguch 	uint16_t	vsis_used;
    394  1.1  yamaguch 	uint16_t	vsis_free;
    395  1.1  yamaguch 
    396  1.1  yamaguch 	uint32_t	addr_hi;
    397  1.1  yamaguch 	uint32_t	addr_lo;
    398  1.1  yamaguch } __packed __aligned(16);
    399  1.1  yamaguch 
    400  1.1  yamaguch struct ixl_aq_vsi_data {
    401  1.1  yamaguch 	/* first 96 byte are written by SW */
    402  1.1  yamaguch 	uint16_t	valid_sections;
    403  1.1  yamaguch #define IXL_AQ_VSI_VALID_SWITCH		(1 << 0)
    404  1.1  yamaguch #define IXL_AQ_VSI_VALID_SECURITY	(1 << 1)
    405  1.1  yamaguch #define IXL_AQ_VSI_VALID_VLAN		(1 << 2)
    406  1.1  yamaguch #define IXL_AQ_VSI_VALID_CAS_PV		(1 << 3)
    407  1.1  yamaguch #define IXL_AQ_VSI_VALID_INGRESS_UP	(1 << 4)
    408  1.1  yamaguch #define IXL_AQ_VSI_VALID_EGRESS_UP	(1 << 5)
    409  1.1  yamaguch #define IXL_AQ_VSI_VALID_QUEUE_MAP	(1 << 6)
    410  1.1  yamaguch #define IXL_AQ_VSI_VALID_QUEUE_OPT	(1 << 7)
    411  1.1  yamaguch #define IXL_AQ_VSI_VALID_OUTER_UP	(1 << 8)
    412  1.1  yamaguch #define IXL_AQ_VSI_VALID_SCHED		(1 << 9)
    413  1.1  yamaguch 	/* switch section */
    414  1.1  yamaguch 	uint16_t	switch_id;
    415  1.1  yamaguch #define IXL_AQ_VSI_SWITCH_ID_SHIFT	0
    416  1.1  yamaguch #define IXL_AQ_VSI_SWITCH_ID_MASK	(0xfff << IXL_AQ_VSI_SWITCH_ID_SHIFT)
    417  1.1  yamaguch #define IXL_AQ_VSI_SWITCH_NOT_STAG	(1 << 12)
    418  1.1  yamaguch #define IXL_AQ_VSI_SWITCH_LOCAL_LB	(1 << 14)
    419  1.1  yamaguch 
    420  1.1  yamaguch 	uint8_t		_reserved1[2];
    421  1.1  yamaguch 	/* security section */
    422  1.1  yamaguch 	uint8_t		sec_flags;
    423  1.1  yamaguch #define IXL_AQ_VSI_SEC_ALLOW_DEST_OVRD	(1 << 0)
    424  1.1  yamaguch #define IXL_AQ_VSI_SEC_ENABLE_VLAN_CHK	(1 << 1)
    425  1.1  yamaguch #define IXL_AQ_VSI_SEC_ENABLE_MAC_CHK	(1 << 2)
    426  1.1  yamaguch 	uint8_t		_reserved2;
    427  1.1  yamaguch 
    428  1.1  yamaguch 	/* vlan section */
    429  1.1  yamaguch 	uint16_t	pvid;
    430  1.1  yamaguch 	uint16_t	fcoe_pvid;
    431  1.1  yamaguch 
    432  1.1  yamaguch 	uint8_t		port_vlan_flags;
    433  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_SHIFT	0
    434  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_MASK	(0x3 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    435  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_TAGGED	(0x1 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    436  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_UNTAGGED	(0x2 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    437  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_MODE_ALL	(0x3 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    438  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_INSERT_PVID	(0x4 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
    439  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_SHIFT	0x3
    440  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_MASK	(0x3 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    441  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_STR_BOTH	(0x0 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    442  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_STR_UP	(0x1 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    443  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_STR	(0x2 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    444  1.1  yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_NOTHING	(0x3 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
    445  1.1  yamaguch 	uint8_t		_reserved3[3];
    446  1.1  yamaguch 
    447  1.1  yamaguch 	/* ingress egress up section */
    448  1.1  yamaguch 	uint32_t	ingress_table;
    449  1.1  yamaguch #define IXL_AQ_VSI_UP_SHIFT(_up)	((_up) * 3)
    450  1.1  yamaguch #define IXL_AQ_VSI_UP_MASK(_up)		(0x7 << (IXL_AQ_VSI_UP_SHIFT(_up))
    451  1.1  yamaguch 	uint32_t	egress_table;
    452  1.1  yamaguch 
    453  1.1  yamaguch 	/* cascaded pv section */
    454  1.1  yamaguch 	uint16_t	cas_pv_tag;
    455  1.1  yamaguch 	uint8_t		cas_pv_flags;
    456  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_SHIFT	0
    457  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_MASK	(0x3 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
    458  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_LEAVE	(0x0 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
    459  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_REMOVE	(0x1 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
    460  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_COPY	(0x2 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
    461  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_INSERT_TAG	(1 << 4)
    462  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_ETAG_PRUNE	(1 << 5)
    463  1.1  yamaguch #define IXL_AQ_VSI_CAS_PV_ACCEPT_HOST_TAG \
    464  1.1  yamaguch 					(1 << 6)
    465  1.1  yamaguch 	uint8_t		_reserved4;
    466  1.1  yamaguch 
    467  1.1  yamaguch 	/* queue mapping section */
    468  1.1  yamaguch 	uint16_t	mapping_flags;
    469  1.1  yamaguch #define IXL_AQ_VSI_QUE_MAP_MASK		0x1
    470  1.1  yamaguch #define IXL_AQ_VSI_QUE_MAP_CONTIG	0x0
    471  1.1  yamaguch #define IXL_AQ_VSI_QUE_MAP_NONCONTIG	0x1
    472  1.1  yamaguch 	uint16_t	queue_mapping[16];
    473  1.1  yamaguch #define IXL_AQ_VSI_QUEUE_SHIFT		0x0
    474  1.1  yamaguch #define IXL_AQ_VSI_QUEUE_MASK		(0x7ff << IXL_AQ_VSI_QUEUE_SHIFT)
    475  1.1  yamaguch 	uint16_t	tc_mapping[8];
    476  1.1  yamaguch #define IXL_AQ_VSI_TC_Q_OFFSET_SHIFT	0
    477  1.1  yamaguch #define IXL_AQ_VSI_TC_Q_OFFSET_MASK	(0x1ff << IXL_AQ_VSI_TC_Q_OFFSET_SHIFT)
    478  1.1  yamaguch #define IXL_AQ_VSI_TC_Q_NUMBER_SHIFT	9
    479  1.1  yamaguch #define IXL_AQ_VSI_TC_Q_NUMBER_MASK	(0x7 << IXL_AQ_VSI_TC_Q_NUMBER_SHIFT)
    480  1.1  yamaguch 
    481  1.1  yamaguch 	/* queueing option section */
    482  1.1  yamaguch 	uint8_t		queueing_opt_flags;
    483  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_MCAST_UDP_EN	(1 << 2)
    484  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_UCAST_UDP_EN	(1 << 3)
    485  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_TCP_EN	(1 << 4)
    486  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_FCOE_EN	(1 << 5)
    487  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_RSS_LUT_PF	0
    488  1.1  yamaguch #define IXL_AQ_VSI_QUE_OPT_RSS_LUT_VSI	(1 << 6)
    489  1.1  yamaguch 	uint8_t		_reserved5[3];
    490  1.1  yamaguch 
    491  1.1  yamaguch 	/* scheduler section */
    492  1.1  yamaguch 	uint8_t		up_enable_bits;
    493  1.1  yamaguch 	uint8_t		_reserved6;
    494  1.1  yamaguch 
    495  1.1  yamaguch 	/* outer up section */
    496  1.1  yamaguch 	uint32_t	outer_up_table; /* same as ingress/egress tables */
    497  1.1  yamaguch 	uint8_t		_reserved7[8];
    498  1.1  yamaguch 
    499  1.1  yamaguch 	/* last 32 bytes are written by FW */
    500  1.1  yamaguch 	uint16_t	qs_handle[8];
    501  1.1  yamaguch #define IXL_AQ_VSI_QS_HANDLE_INVALID	0xffff
    502  1.1  yamaguch 	uint16_t	stat_counter_idx;
    503  1.1  yamaguch 	uint16_t	sched_id;
    504  1.1  yamaguch 
    505  1.1  yamaguch 	uint8_t		_reserved8[12];
    506  1.1  yamaguch } __packed __aligned(8);
    507  1.1  yamaguch 
    508  1.1  yamaguch CTASSERT(sizeof(struct ixl_aq_vsi_data) == 128);
    509  1.1  yamaguch 
    510  1.1  yamaguch struct ixl_aq_vsi_promisc_param {
    511  1.1  yamaguch 	uint16_t	flags;
    512  1.1  yamaguch 	uint16_t	valid_flags;
    513  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_UCAST	(1 << 0)
    514  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_MCAST	(1 << 1)
    515  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_BCAST	(1 << 2)
    516  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_DFLT	(1 << 3)
    517  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_VLAN	(1 << 4)
    518  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_RXONLY	(1 << 15)
    519  1.1  yamaguch 
    520  1.1  yamaguch 	uint16_t	seid;
    521  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_SEID_VALID	(1 << 15)
    522  1.1  yamaguch 	uint16_t	vlan;
    523  1.1  yamaguch #define IXL_AQ_VSI_PROMISC_VLAN_VALID	(1 << 15)
    524  1.1  yamaguch 	uint32_t	reserved[2];
    525  1.1  yamaguch } __packed __aligned(8);
    526  1.1  yamaguch 
    527  1.1  yamaguch struct ixl_aq_veb_param {
    528  1.1  yamaguch 	uint16_t	uplink_seid;
    529  1.1  yamaguch 	uint16_t	downlink_seid;
    530  1.1  yamaguch 	uint16_t	veb_flags;
    531  1.1  yamaguch #define IXL_AQ_ADD_VEB_FLOATING		(1 << 0)
    532  1.1  yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT	1
    533  1.1  yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_MASK	(0x3 << IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT)
    534  1.1  yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_DEFAULT \
    535  1.1  yamaguch 					(0x2 << IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT)
    536  1.1  yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_DATA	(0x4 << IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT)
    537  1.1  yamaguch #define IXL_AQ_ADD_VEB_ENABLE_L2_FILTER	(1 << 3) /* deprecated */
    538  1.1  yamaguch #define IXL_AQ_ADD_VEB_DISABLE_STATS	(1 << 4)
    539  1.1  yamaguch 	uint8_t		enable_tcs;
    540  1.1  yamaguch 	uint8_t		_reserved[9];
    541  1.1  yamaguch } __packed __aligned(16);
    542  1.1  yamaguch 
    543  1.1  yamaguch struct ixl_aq_veb_reply {
    544  1.1  yamaguch 	uint16_t	_reserved1;
    545  1.1  yamaguch 	uint16_t	_reserved2;
    546  1.1  yamaguch 	uint16_t	_reserved3;
    547  1.1  yamaguch 	uint16_t	switch_seid;
    548  1.1  yamaguch 	uint16_t	veb_seid;
    549  1.1  yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_VEB	(1 << 0)
    550  1.1  yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_SCHED	(1 << 1)
    551  1.1  yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_COUNTER	(1 << 2)
    552  1.1  yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_ENTRY	(1 << 3);
    553  1.1  yamaguch 	uint16_t	statistic_index;
    554  1.1  yamaguch 	uint16_t	vebs_used;
    555  1.1  yamaguch 	uint16_t	vebs_free;
    556  1.1  yamaguch } __packed __aligned(16);
    557  1.1  yamaguch 
    558  1.1  yamaguch /* GET PHY ABILITIES param[0] */
    559  1.1  yamaguch #define IXL_AQ_PHY_REPORT_QUAL		(1 << 0)
    560  1.1  yamaguch #define IXL_AQ_PHY_REPORT_INIT		(1 << 1)
    561  1.1  yamaguch 
    562  1.1  yamaguch struct ixl_aq_phy_reg_access {
    563  1.1  yamaguch 	uint8_t		phy_iface;
    564  1.1  yamaguch #define IXL_AQ_PHY_IF_INTERNAL		0
    565  1.1  yamaguch #define IXL_AQ_PHY_IF_EXTERNAL		1
    566  1.1  yamaguch #define IXL_AQ_PHY_IF_MODULE		2
    567  1.1  yamaguch 	uint8_t		dev_addr;
    568  1.1  yamaguch 	uint16_t	recall;
    569  1.1  yamaguch #define IXL_AQ_PHY_QSFP_DEV_ADDR	0
    570  1.1  yamaguch #define IXL_AQ_PHY_QSFP_LAST		1
    571  1.1  yamaguch 	uint32_t	reg;
    572  1.1  yamaguch 	uint32_t	val;
    573  1.1  yamaguch 	uint32_t	_reserved2;
    574  1.1  yamaguch } __packed __aligned(16);
    575  1.1  yamaguch 
    576  1.1  yamaguch /* RESTART_AN param[0] */
    577  1.1  yamaguch #define IXL_AQ_PHY_RESTART_AN		(1 << 1)
    578  1.1  yamaguch #define IXL_AQ_PHY_LINK_ENABLE		(1 << 2)
    579  1.1  yamaguch 
    580  1.1  yamaguch struct ixl_aq_link_status { /* this occupies the iaq_param space */
    581  1.1  yamaguch 	uint16_t	command_flags; /* only field set on command */
    582  1.1  yamaguch #define IXL_AQ_LSE_MASK			0x3
    583  1.1  yamaguch #define IXL_AQ_LSE_NOP			0x0
    584  1.1  yamaguch #define IXL_AQ_LSE_DISABLE		0x2
    585  1.1  yamaguch #define IXL_AQ_LSE_ENABLE		0x3
    586  1.1  yamaguch #define IXL_AQ_LSE_IS_ENABLED		0x1 /* only set in response */
    587  1.1  yamaguch 	uint8_t		phy_type;
    588  1.1  yamaguch 	uint8_t		link_speed;
    589  1.1  yamaguch #define IXL_AQ_LINK_SPEED_100MB		(1 << 1)
    590  1.1  yamaguch #define IXL_AQ_LINK_SPEED_1000MB	(1 << 2)
    591  1.1  yamaguch #define IXL_AQ_LINK_SPEED_10GB		(1 << 3)
    592  1.1  yamaguch #define IXL_AQ_LINK_SPEED_40GB		(1 << 4)
    593  1.1  yamaguch #define IXL_AQ_LINK_SPEED_25GB		(1 << 6)
    594  1.1  yamaguch 	uint8_t		link_info;
    595  1.1  yamaguch #define IXL_AQ_LINK_UP_FUNCTION		0x01
    596  1.1  yamaguch #define IXL_AQ_LINK_FAULT		0x02
    597  1.1  yamaguch #define IXL_AQ_LINK_FAULT_TX		0x04
    598  1.1  yamaguch #define IXL_AQ_LINK_FAULT_RX		0x08
    599  1.1  yamaguch #define IXL_AQ_LINK_FAULT_REMOTE	0x10
    600  1.1  yamaguch #define IXL_AQ_LINK_UP_PORT		0x20
    601  1.1  yamaguch #define IXL_AQ_MEDIA_AVAILABLE		0x40
    602  1.1  yamaguch #define IXL_AQ_SIGNAL_DETECT		0x80
    603  1.1  yamaguch 	uint8_t		an_info;
    604  1.1  yamaguch #define IXL_AQ_AN_COMPLETED		0x01
    605  1.1  yamaguch #define IXL_AQ_LP_AN_ABILITY		0x02
    606  1.1  yamaguch #define IXL_AQ_PD_FAULT			0x04
    607  1.1  yamaguch #define IXL_AQ_FEC_EN			0x08
    608  1.1  yamaguch #define IXL_AQ_PHY_LOW_POWER		0x10
    609  1.1  yamaguch #define IXL_AQ_LINK_PAUSE_TX		0x20
    610  1.1  yamaguch #define IXL_AQ_LINK_PAUSE_RX		0x40
    611  1.1  yamaguch #define IXL_AQ_QUALIFIED_MODULE		0x80
    612  1.1  yamaguch 
    613  1.1  yamaguch 	uint8_t		ext_info;
    614  1.1  yamaguch #define IXL_AQ_LINK_PHY_TEMP_ALARM	0x01
    615  1.1  yamaguch #define IXL_AQ_LINK_XCESSIVE_ERRORS	0x02
    616  1.1  yamaguch #define IXL_AQ_LINK_TX_SHIFT		0x02
    617  1.1  yamaguch #define IXL_AQ_LINK_TX_MASK		(0x03 << IXL_AQ_LINK_TX_SHIFT)
    618  1.1  yamaguch #define IXL_AQ_LINK_TX_ACTIVE		0x00
    619  1.1  yamaguch #define IXL_AQ_LINK_TX_DRAINED		0x01
    620  1.1  yamaguch #define IXL_AQ_LINK_TX_FLUSHED		0x03
    621  1.1  yamaguch #define IXL_AQ_LINK_FORCED_40G		0x10
    622  1.1  yamaguch /* 25G Error Codes */
    623  1.1  yamaguch #define IXL_AQ_25G_NO_ERR		0X00
    624  1.1  yamaguch #define IXL_AQ_25G_NOT_PRESENT		0X01
    625  1.1  yamaguch #define IXL_AQ_25G_NVM_CRC_ERR		0X02
    626  1.1  yamaguch #define IXL_AQ_25G_SBUS_UCODE_ERR	0X03
    627  1.1  yamaguch #define IXL_AQ_25G_SERDES_UCODE_ERR	0X04
    628  1.1  yamaguch #define IXL_AQ_25G_NIMB_UCODE_ERR	0X05
    629  1.1  yamaguch 	uint8_t		loopback;
    630  1.1  yamaguch 	uint16_t	max_frame_size;
    631  1.1  yamaguch 
    632  1.1  yamaguch 	uint8_t		config;
    633  1.1  yamaguch #define IXL_AQ_CONFIG_FEC_KR_ENA	0x01
    634  1.1  yamaguch #define IXL_AQ_CONFIG_FEC_RS_ENA	0x02
    635  1.1  yamaguch #define IXL_AQ_CONFIG_CRC_ENA	0x04
    636  1.1  yamaguch #define IXL_AQ_CONFIG_PACING_MASK	0x78
    637  1.1  yamaguch 	uint8_t		power_desc;
    638  1.1  yamaguch #define IXL_AQ_LINK_POWER_CLASS_1	0x00
    639  1.1  yamaguch #define IXL_AQ_LINK_POWER_CLASS_2	0x01
    640  1.1  yamaguch #define IXL_AQ_LINK_POWER_CLASS_3	0x02
    641  1.1  yamaguch #define IXL_AQ_LINK_POWER_CLASS_4	0x03
    642  1.1  yamaguch #define IXL_AQ_PWR_CLASS_MASK		0x03
    643  1.1  yamaguch 
    644  1.1  yamaguch 	uint8_t		reserved[4];
    645  1.1  yamaguch } __packed __aligned(4);
    646  1.1  yamaguch 
    647  1.1  yamaguch /* event mask command flags for param[2] */
    648  1.1  yamaguch #define IXL_AQ_PHY_EV_MASK		0x3ff
    649  1.1  yamaguch #define IXL_AQ_PHY_EV_LINK_UPDOWN	(1 << 1)
    650  1.1  yamaguch #define IXL_AQ_PHY_EV_MEDIA_NA		(1 << 2)
    651  1.1  yamaguch #define IXL_AQ_PHY_EV_LINK_FAULT	(1 << 3)
    652  1.1  yamaguch #define IXL_AQ_PHY_EV_PHY_TEMP_ALARM	(1 << 4)
    653  1.1  yamaguch #define IXL_AQ_PHY_EV_EXCESS_ERRORS	(1 << 5)
    654  1.1  yamaguch #define IXL_AQ_PHY_EV_SIGNAL_DETECT	(1 << 6)
    655  1.1  yamaguch #define IXL_AQ_PHY_EV_AN_COMPLETED	(1 << 7)
    656  1.1  yamaguch #define IXL_AQ_PHY_EV_MODULE_QUAL_FAIL	(1 << 8)
    657  1.1  yamaguch #define IXL_AQ_PHY_EV_PORT_TX_SUSPENDED	(1 << 9)
    658  1.1  yamaguch 
    659  1.1  yamaguch /* aq response codes */
    660  1.1  yamaguch #define IXL_AQ_RC_OK			0  /* success */
    661  1.1  yamaguch #define IXL_AQ_RC_EPERM			1  /* Operation not permitted */
    662  1.1  yamaguch #define IXL_AQ_RC_ENOENT		2  /* No such element */
    663  1.1  yamaguch #define IXL_AQ_RC_ESRCH			3  /* Bad opcode */
    664  1.1  yamaguch #define IXL_AQ_RC_EINTR			4  /* operation interrupted */
    665  1.1  yamaguch #define IXL_AQ_RC_EIO			5  /* I/O error */
    666  1.1  yamaguch #define IXL_AQ_RC_ENXIO			6  /* No such resource */
    667  1.1  yamaguch #define IXL_AQ_RC_E2BIG			7  /* Arg too long */
    668  1.1  yamaguch #define IXL_AQ_RC_EAGAIN		8  /* Try again */
    669  1.1  yamaguch #define IXL_AQ_RC_ENOMEM		9  /* Out of memory */
    670  1.1  yamaguch #define IXL_AQ_RC_EACCES		10 /* Permission denied */
    671  1.1  yamaguch #define IXL_AQ_RC_EFAULT		11 /* Bad address */
    672  1.1  yamaguch #define IXL_AQ_RC_EBUSY			12 /* Device or resource busy */
    673  1.1  yamaguch #define IXL_AQ_RC_EEXIST		13 /* object already exists */
    674  1.1  yamaguch #define IXL_AQ_RC_EINVAL		14 /* invalid argument */
    675  1.1  yamaguch #define IXL_AQ_RC_ENOTTY		15 /* not a typewriter */
    676  1.1  yamaguch #define IXL_AQ_RC_ENOSPC		16 /* No space or alloc failure */
    677  1.1  yamaguch #define IXL_AQ_RC_ENOSYS		17 /* function not implemented */
    678  1.1  yamaguch #define IXL_AQ_RC_ERANGE		18 /* parameter out of range */
    679  1.1  yamaguch #define IXL_AQ_RC_EFLUSHED		19 /* cmd flushed due to prev error */
    680  1.1  yamaguch #define IXL_AQ_RC_BAD_ADDR		20 /* contains a bad pointer */
    681  1.1  yamaguch #define IXL_AQ_RC_EMODE			21 /* not allowed in current mode */
    682  1.1  yamaguch #define IXL_AQ_RC_EFBIG			22 /* file too large */
    683  1.1  yamaguch 
    684  1.1  yamaguch struct ixl_tx_desc {
    685  1.1  yamaguch 	uint64_t		addr;
    686  1.1  yamaguch 	uint64_t		cmd;
    687  1.1  yamaguch #define IXL_TX_DESC_DTYPE_SHIFT		0
    688  1.1  yamaguch #define IXL_TX_DESC_DTYPE_MASK		(0xfULL << IXL_TX_DESC_DTYPE_SHIFT)
    689  1.1  yamaguch #define IXL_TX_DESC_DTYPE_DATA		(0x0ULL << IXL_TX_DESC_DTYPE_SHIFT)
    690  1.1  yamaguch #define IXL_TX_DESC_DTYPE_NOP		(0x1ULL << IXL_TX_DESC_DTYPE_SHIFT)
    691  1.1  yamaguch #define IXL_TX_DESC_DTYPE_CONTEXT	(0x1ULL << IXL_TX_DESC_DTYPE_SHIFT)
    692  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FCOE_CTX	(0x2ULL << IXL_TX_DESC_DTYPE_SHIFT)
    693  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FD		(0x8ULL << IXL_TX_DESC_DTYPE_SHIFT)
    694  1.1  yamaguch #define IXL_TX_DESC_DTYPE_DDP_CTX	(0x9ULL << IXL_TX_DESC_DTYPE_SHIFT)
    695  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FLEX_DATA	(0xbULL << IXL_TX_DESC_DTYPE_SHIFT)
    696  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FLEX_CTX_1	(0xcULL << IXL_TX_DESC_DTYPE_SHIFT)
    697  1.1  yamaguch #define IXL_TX_DESC_DTYPE_FLEX_CTX_2	(0xdULL << IXL_TX_DESC_DTYPE_SHIFT)
    698  1.1  yamaguch #define IXL_TX_DESC_DTYPE_DONE		(0xfULL << IXL_TX_DESC_DTYPE_SHIFT)
    699  1.1  yamaguch 
    700  1.1  yamaguch #define IXL_TX_DESC_CMD_SHIFT		4
    701  1.1  yamaguch #define IXL_TX_DESC_CMD_MASK		(0x3ffULL << IXL_TX_DESC_CMD_SHIFT)
    702  1.1  yamaguch #define IXL_TX_DESC_CMD_EOP		(0x001 << IXL_TX_DESC_CMD_SHIFT)
    703  1.1  yamaguch #define IXL_TX_DESC_CMD_RS		(0x002 << IXL_TX_DESC_CMD_SHIFT)
    704  1.1  yamaguch #define IXL_TX_DESC_CMD_ICRC		(0x004 << IXL_TX_DESC_CMD_SHIFT)
    705  1.1  yamaguch #define IXL_TX_DESC_CMD_IL2TAG1		(0x008 << IXL_TX_DESC_CMD_SHIFT)
    706  1.1  yamaguch #define IXL_TX_DESC_CMD_DUMMY		(0x010 << IXL_TX_DESC_CMD_SHIFT)
    707  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_MASK	(0x060 << IXL_TX_DESC_CMD_SHIFT)
    708  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_NONIP	(0x000 << IXL_TX_DESC_CMD_SHIFT)
    709  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_IPV6	(0x020 << IXL_TX_DESC_CMD_SHIFT)
    710  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_IPV4	(0x040 << IXL_TX_DESC_CMD_SHIFT)
    711  1.1  yamaguch #define IXL_TX_DESC_CMD_IIPT_IPV4_CSUM	(0x060 << IXL_TX_DESC_CMD_SHIFT)
    712  1.1  yamaguch #define IXL_TX_DESC_CMD_FCOET		(0x080 << IXL_TX_DESC_CMD_SHIFT)
    713  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_MASK	(0x300 << IXL_TX_DESC_CMD_SHIFT)
    714  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_UNK	(0x000 << IXL_TX_DESC_CMD_SHIFT)
    715  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_TCP	(0x100 << IXL_TX_DESC_CMD_SHIFT)
    716  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_SCTP	(0x200 << IXL_TX_DESC_CMD_SHIFT)
    717  1.1  yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_UDP	(0x300 << IXL_TX_DESC_CMD_SHIFT)
    718  1.1  yamaguch 
    719  1.1  yamaguch #define IXL_TX_DESC_MACLEN_SHIFT	16
    720  1.1  yamaguch #define IXL_TX_DESC_MACLEN_MASK		(0x7fULL << IXL_TX_DESC_MACLEN_SHIFT)
    721  1.1  yamaguch #define IXL_TX_DESC_IPLEN_SHIFT		23
    722  1.1  yamaguch #define IXL_TX_DESC_IPLEN_MASK		(0x7fULL << IXL_TX_DESC_IPLEN_SHIFT)
    723  1.1  yamaguch #define IXL_TX_DESC_L4LEN_SHIFT		30
    724  1.1  yamaguch #define IXL_TX_DESC_L4LEN_MASK		(0xfULL << IXL_TX_DESC_L4LEN_SHIFT)
    725  1.1  yamaguch #define IXL_TX_DESC_FCLEN_SHIFT		30
    726  1.1  yamaguch #define IXL_TX_DESC_FCLEN_MASK		(0xfULL << IXL_TX_DESC_FCLEN_SHIFT)
    727  1.1  yamaguch 
    728  1.1  yamaguch #define IXL_TX_DESC_BSIZE_SHIFT		34
    729  1.1  yamaguch #define IXL_TX_DESC_BSIZE_MAX		0x3fffULL
    730  1.1  yamaguch #define IXL_TX_DESC_BSIZE_MASK		\
    731  1.1  yamaguch 	(IXL_TX_DESC_BSIZE_MAX << IXL_TX_DESC_BSIZE_SHIFT)
    732  1.2  yamaguch #define IXL_TX_DESC_L2TAG1_SHIFT	48
    733  1.1  yamaguch } __packed __aligned(16);
    734  1.1  yamaguch 
    735  1.1  yamaguch struct ixl_rx_rd_desc_16 {
    736  1.1  yamaguch 	uint64_t		paddr; /* packet addr */
    737  1.1  yamaguch 	uint64_t		haddr; /* header addr */
    738  1.1  yamaguch } __packed __aligned(16);
    739  1.1  yamaguch 
    740  1.1  yamaguch struct ixl_rx_rd_desc_32 {
    741  1.1  yamaguch 	uint64_t		paddr; /* packet addr */
    742  1.1  yamaguch 	uint64_t		haddr; /* header addr */
    743  1.1  yamaguch 	uint64_t		_reserved1;
    744  1.1  yamaguch 	uint64_t		_reserved2;
    745  1.1  yamaguch } __packed __aligned(16);
    746  1.1  yamaguch 
    747  1.1  yamaguch struct ixl_rx_wb_desc_16 {
    748  1.1  yamaguch 	uint64_t		qword0;
    749  1.2  yamaguch #define IXL_RX_DESC_L2TAG1_SHIFT	16
    750  1.2  yamaguch #define IXL_RX_DESC_L2TAG1_MASK		(0xffffULL << IXL_RX_DESC_L2TAG1_SHIFT)
    751  1.1  yamaguch 	uint64_t		qword1;
    752  1.1  yamaguch #define IXL_RX_DESC_DD			(1 << 0)
    753  1.1  yamaguch #define IXL_RX_DESC_EOP			(1 << 1)
    754  1.1  yamaguch #define IXL_RX_DESC_L2TAG1P		(1 << 2)
    755  1.1  yamaguch #define IXL_RX_DESC_L3L4P		(1 << 3)
    756  1.1  yamaguch #define IXL_RX_DESC_CRCP		(1 << 4)
    757  1.1  yamaguch #define IXL_RX_DESC_TSYNINDX_SHIFT	5	/* TSYNINDX */
    758  1.1  yamaguch #define IXL_RX_DESC_TSYNINDX_MASK	(7 << IXL_RX_DESC_TSYNINDX_SHIFT)
    759  1.1  yamaguch #define IXL_RX_DESC_UMB_SHIFT		9
    760  1.1  yamaguch #define IXL_RX_DESC_UMB_MASK		(0x3 << IXL_RX_DESC_UMB_SHIFT)
    761  1.1  yamaguch #define IXL_RX_DESC_UMB_UCAST		(0x0 << IXL_RX_DESC_UMB_SHIFT)
    762  1.1  yamaguch #define IXL_RX_DESC_UMB_MCAST		(0x1 << IXL_RX_DESC_UMB_SHIFT)
    763  1.1  yamaguch #define IXL_RX_DESC_UMB_BCAST		(0x2 << IXL_RX_DESC_UMB_SHIFT)
    764  1.1  yamaguch #define IXL_RX_DESC_UMB_MIRROR		(0x3 << IXL_RX_DESC_UMB_SHIFT)
    765  1.1  yamaguch #define IXL_RX_DESC_FLM			(1 << 11)
    766  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_SHIFT	12
    767  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_MASK	(0x3 << IXL_RX_DESC_FLTSTAT_SHIFT)
    768  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_NODATA	(0x0 << IXL_RX_DESC_FLTSTAT_SHIFT)
    769  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_FDFILTID	(0x1 << IXL_RX_DESC_FLTSTAT_SHIFT)
    770  1.1  yamaguch #define IXL_RX_DESC_FLTSTAT_RSS		(0x3 << IXL_RX_DESC_FLTSTAT_SHIFT)
    771  1.1  yamaguch #define IXL_RX_DESC_LPBK		(1 << 14)
    772  1.1  yamaguch #define IXL_RX_DESC_IPV6EXTADD		(1 << 15)
    773  1.1  yamaguch #define IXL_RX_DESC_INT_UDP_0		(1 << 18)
    774  1.1  yamaguch 
    775  1.1  yamaguch #define IXL_RX_DESC_RXE			(1 << 19)
    776  1.1  yamaguch #define IXL_RX_DESC_HBO			(1 << 21)
    777  1.1  yamaguch #define IXL_RX_DESC_IPE			(1 << 22)
    778  1.1  yamaguch #define IXL_RX_DESC_L4E			(1 << 23)
    779  1.1  yamaguch #define IXL_RX_DESC_EIPE		(1 << 24)
    780  1.1  yamaguch #define IXL_RX_DESC_OVERSIZE		(1 << 25)
    781  1.1  yamaguch 
    782  1.1  yamaguch #define IXL_RX_DESC_PTYPE_SHIFT		30
    783  1.1  yamaguch #define IXL_RX_DESC_PTYPE_MASK		(0xffULL << IXL_RX_DESC_PTYPE_SHIFT)
    784  1.1  yamaguch 
    785  1.1  yamaguch #define IXL_RX_DESC_PLEN_SHIFT		38
    786  1.1  yamaguch #define IXL_RX_DESC_PLEN_MASK		(0x3fffULL << IXL_RX_DESC_PLEN_SHIFT)
    787  1.1  yamaguch #define IXL_RX_DESC_HLEN_SHIFT		42
    788  1.1  yamaguch #define IXL_RX_DESC_HLEN_MASK		(0x7ffULL << IXL_RX_DESC_HLEN_SHIFT)
    789  1.1  yamaguch } __packed __aligned(16);
    790  1.1  yamaguch 
    791  1.1  yamaguch struct ixl_rx_wb_desc_32 {
    792  1.1  yamaguch 	uint64_t		qword0;
    793  1.1  yamaguch 	uint64_t		qword1;
    794  1.1  yamaguch 	uint64_t		qword2;
    795  1.1  yamaguch 	uint64_t		qword3;
    796  1.1  yamaguch } __packed __aligned(16);
    797  1.1  yamaguch 
    798  1.1  yamaguch enum i40e_mac_type {
    799  1.1  yamaguch 	I40E_MAC_XL710,
    800  1.1  yamaguch 	I40E_MAC_X722,
    801  1.1  yamaguch 	I40E_MAC_X722_VF,
    802  1.1  yamaguch 	I40E_MAC_VF,
    803  1.1  yamaguch 	I40E_MAC_GENERIC
    804  1.1  yamaguch };
    805  1.1  yamaguch 
    806  1.1  yamaguch #endif
    807