net/vhost: fix Tx error counting
[dpdk.git] / drivers / net / bnxt / hsi_struct_def_dpdk.h
index 1543f20..f2db3ea 100644 (file)
@@ -83,15 +83,29 @@ struct ctx_hw_stats64 {
  * Request types
  */
 #define HWRM_VER_GET                   (UINT32_C(0x0))
+#define HWRM_FUNC_RESET                        (UINT32_C(0x11))
 #define HWRM_FUNC_QCAPS                        (UINT32_C(0x15))
 #define HWRM_FUNC_DRV_UNRGTR           (UINT32_C(0x1a))
 #define HWRM_FUNC_DRV_RGTR             (UINT32_C(0x1d))
 #define HWRM_PORT_PHY_CFG              (UINT32_C(0x20))
+#define HWRM_PORT_PHY_QCFG             (UINT32_C(0x27))
 #define HWRM_QUEUE_QPORTCFG            (UINT32_C(0x30))
+#define HWRM_VNIC_ALLOC                        (UINT32_C(0x40))
+#define HWRM_VNIC_FREE                 (UINT32_C(0x41))
+#define HWRM_VNIC_CFG                  (UINT32_C(0x42))
+#define HWRM_VNIC_RSS_CFG              (UINT32_C(0x46))
+#define HWRM_RING_ALLOC                        (UINT32_C(0x50))
+#define HWRM_RING_FREE                 (UINT32_C(0x51))
+#define HWRM_RING_GRP_ALLOC            (UINT32_C(0x60))
+#define HWRM_RING_GRP_FREE             (UINT32_C(0x61))
+#define HWRM_VNIC_RSS_COS_LB_CTX_ALLOC (UINT32_C(0x70))
+#define HWRM_VNIC_RSS_COS_LB_CTX_FREE  (UINT32_C(0x71))
 #define HWRM_CFA_L2_FILTER_ALLOC       (UINT32_C(0x90))
 #define HWRM_CFA_L2_FILTER_FREE                (UINT32_C(0x91))
 #define HWRM_CFA_L2_FILTER_CFG         (UINT32_C(0x92))
 #define HWRM_CFA_L2_SET_RX_MASK                (UINT32_C(0x93))
+#define HWRM_STAT_CTX_ALLOC            (UINT32_C(0xb0))
+#define HWRM_STAT_CTX_FREE             (UINT32_C(0xb1))
 #define HWRM_STAT_CTX_CLR_STATS                (UINT32_C(0xb3))
 #define HWRM_EXEC_FWD_RESP             (UINT32_C(0xd0))
 
@@ -446,6 +460,79 @@ struct tx_bd_long_hi {
        uint32_t cfa_meta;
 } __attribute__((packed));
 
+/* RX Producer Packet BD (16 bytes) */
+struct rx_prod_pkt_bd {
+       /* This value identifies the type of buffer descriptor. */
+       #define RX_PROD_PKT_BD_TYPE_MASK                UINT32_C(0x3f)
+       #define RX_PROD_PKT_BD_TYPE_SFT                 0
+               /*
+                * Indicates that this BD is 16B long and is an RX Producer (ie.
+                * empty) buffer descriptor.
+                */
+       #define RX_PROD_PKT_BD_TYPE_RX_PROD_PKT         (UINT32_C(0x4) << 0)
+       /*
+        * If set to 1, the packet will be placed at the address plus 2B. The 2
+        * Bytes of padding will be written as zero.
+        */
+       /*
+        * This is intended to be used when the host buffer is cache-line
+        * aligned to produce packets that are easy to parse in host memory
+        * while still allowing writes to be cache line aligned.
+        */
+       #define RX_PROD_PKT_BD_FLAGS_SOP_PAD            UINT32_C(0x40)
+       /*
+        * If set to 1, the packet write will be padded out to the nearest
+        * cache-line with zero value padding.
+        */
+       /*
+        * If receive buffers start/end on cache-line boundaries, this feature
+        * will ensure that all data writes on the PCI bus start/end on cache
+        * line boundaries.
+        */
+       #define RX_PROD_PKT_BD_FLAGS_EOP_PAD            UINT32_C(0x80)
+       /*
+        * This value is the number of additional buffers in the ring that
+        * describe the buffer space to be consumed for the this packet. If the
+        * value is zero, then the packet must fit within the space described by
+        * this BD. If this value is 1 or more, it indicates how many additional
+        * "buffer" BDs are in the ring immediately following this BD to be used
+        * for the same network packet. Even if the packet to be placed does not
+        * need all the additional buffers, they will be consumed anyway.
+        */
+       #define RX_PROD_PKT_BD_FLAGS_BUFFERS_MASK       UINT32_C(0x300)
+       #define RX_PROD_PKT_BD_FLAGS_BUFFERS_SFT        8
+       #define RX_PROD_PKT_BD_FLAGS_MASK               UINT32_C(0xffc0)
+       #define RX_PROD_PKT_BD_FLAGS_SFT                6
+       uint16_t flags_type;
+
+       /*
+        * This is the length in Bytes of the host physical buffer where data
+        * for the packet may be placed in host memory.
+        */
+       /*
+        * While this is a Byte resolution value, it is often advantageous to
+        * ensure that the buffers provided end on a host cache line.
+        */
+       uint16_t len;
+
+       /*
+        * The opaque data field is pass through to the completion and can be
+        * used for any data that the driver wants to associate with this
+        * receive buffer set.
+        */
+       uint32_t opaque;
+
+       /*
+        * This is the host physical address where data for the packet may by
+        * placed in host memory.
+        */
+       /*
+        * While this is a Byte resolution value, it is often advantageous to
+        * ensure that the buffers provide start on a host cache line.
+        */
+       uint64_t addr;
+} __attribute__((packed));
+
 /* Completion Ring Structures */
 /* Note: This structure is used by the HWRM to communicate HWRM Error. */
 /* Base Completion Record (16 bytes) */
@@ -611,6 +698,407 @@ struct tx_cmpl {
        uint32_t unused_2;
 } __attribute__((packed)) tx_cmpl_t, *ptx_cmpl_t;
 
+/* RX Packet Completion Record (32 bytes split to 2 16-byte struct) */
+struct rx_pkt_cmpl {
+       /*
+        * This field indicates the exact type of the completion. By convention,
+        * the LSB identifies the length of the record in 16B units. Even values
+        * indicate 16B records. Odd values indicate 32B records.
+        */
+       #define RX_PKT_CMPL_TYPE_MASK                   UINT32_C(0x3f)
+       #define RX_PKT_CMPL_TYPE_SFT                    0
+               /*
+                * RX L2 completion: Completion of and L2 RX packet.
+                * Length = 32B
+                */
+       #define RX_PKT_CMPL_TYPE_RX_L2                  (UINT32_C(0x11) << 0)
+       /*
+        * When this bit is '1', it indicates a packet that has an error of some
+        * type. Type of error is indicated in error_flags.
+        */
+       #define RX_PKT_CMPL_FLAGS_ERROR                 UINT32_C(0x40)
+       /* This field indicates how the packet was placed in the buffer. */
+       #define RX_PKT_CMPL_FLAGS_PLACEMENT_MASK        UINT32_C(0x380)
+       #define RX_PKT_CMPL_FLAGS_PLACEMENT_SFT         7
+               /* Normal: Packet was placed using normal algorithm. */
+       #define RX_PKT_CMPL_FLAGS_PLACEMENT_NORMAL      (UINT32_C(0x0) << 7)
+               /* Jumbo: Packet was placed using jumbo algorithm. */
+       #define RX_PKT_CMPL_FLAGS_PLACEMENT_JUMBO       (UINT32_C(0x1) << 7)
+               /*
+                * Header/Data Separation: Packet was placed using Header/Data
+                * separation algorithm. The separation location is indicated by
+                * the itype field.
+                */
+       #define RX_PKT_CMPL_FLAGS_PLACEMENT_HDS         (UINT32_C(0x2) << 7)
+       #define RX_PKT_CMPL_FLAGS_PLACEMENT_LAST \
+                                               RX_PKT_CMPL_FLAGS_PLACEMENT_HDS
+       /* This bit is '1' if the RSS field in this completion is valid. */
+       #define RX_PKT_CMPL_FLAGS_RSS_VALID             UINT32_C(0x400)
+       /*
+        * This value indicates what the inner packet determined for the packet
+        * was.
+        */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_MASK            UINT32_C(0xf000)
+       #define RX_PKT_CMPL_FLAGS_ITYPE_SFT             12
+               /* Not Known: Indicates that the packet type was not known. */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_NOT_KNOWN       (UINT32_C(0x0) << 12)
+               /*
+                * IP Packet: Indicates that the packet was an IP packet, but
+                * further classification was not possible.
+                */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_IP              (UINT32_C(0x1) << 12)
+               /*
+                * TCP Packet: Indicates that the packet was IP and TCP. This
+                * indicates that the payload_offset field is valid.
+                */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_TCP             (UINT32_C(0x2) << 12)
+               /*
+                * UDP Packet: Indicates that the packet was IP and UDP. This
+                * indicates that the payload_offset field is valid.
+                */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_UDP             (UINT32_C(0x3) << 12)
+               /*
+                * FCoE Packet: Indicates that the packet was recognized as a
+                * FCoE. This also indicates that the payload_offset field is
+                * valid.
+                */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_FCOE            (UINT32_C(0x4) << 12)
+               /*
+                * RoCE Packet: Indicates that the packet was recognized as a
+                * RoCE. This also indicates that the payload_offset field is
+                * valid.
+                */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_ROCE            (UINT32_C(0x5) << 12)
+               /*
+                * ICMP Packet: Indicates that the packet was recognized as
+                * ICMP. This indicates that the payload_offset field is valid.
+                */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_ICMP            (UINT32_C(0x7) << 12)
+               /*
+                * PtP packet wo/timestamp: Indicates that the packet was
+                * recognized as a PtP packet.
+                */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_PTP_WO_TIMESTAMP \
+                                                       (UINT32_C(0x8) << 12)
+               /*
+                * PtP packet w/timestamp: Indicates that the packet was
+                * recognized as a PtP packet and that a timestamp was taken for
+                * the packet.
+                */
+       #define RX_PKT_CMPL_FLAGS_ITYPE_PTP_W_TIMESTAMP (UINT32_C(0x9) << 12)
+       #define RX_PKT_CMPL_FLAGS_ITYPE_LAST \
+                                       RX_PKT_CMPL_FLAGS_ITYPE_PTP_W_TIMESTAMP
+       #define RX_PKT_CMPL_FLAGS_MASK                  UINT32_C(0xffc0)
+       #define RX_PKT_CMPL_FLAGS_SFT                   6
+       uint16_t flags_type;
+
+       /*
+        * This is the length of the data for the packet stored in the buffer(s)
+        * identified by the opaque value. This includes the packet BD and any
+        * associated buffer BDs. This does not include the the length of any
+        * data places in aggregation BDs.
+        */
+       uint16_t len;
+
+       /*
+        * This is a copy of the opaque field from the RX BD this completion
+        * corresponds to.
+        */
+       uint32_t opaque;
+
+       /*
+        * This value is written by the NIC such that it will be different for
+        * each pass through the completion queue. The even passes will write 1.
+        * The odd passes will write 0.
+        */
+       #define RX_PKT_CMPL_V1                          UINT32_C(0x1)
+       /*
+        * This value is the number of aggregation buffers that follow this
+        * entry in the completion ring that are a part of this packet. If the
+        * value is zero, then the packet is completely contained in the buffer
+        * space provided for the packet in the RX ring.
+        */
+       #define RX_PKT_CMPL_AGG_BUFS_MASK               UINT32_C(0x3e)
+       #define RX_PKT_CMPL_AGG_BUFS_SFT                1
+       uint8_t agg_bufs_v1;
+
+       /*
+        * This is the RSS hash type for the packet. The value is packed
+        * {tuple_extrac_op[1:0],rss_profile_id[4:0],tuple_extrac_op[2]}.
+        */
+       uint8_t rss_hash_type;
+
+       /*
+        * This value indicates the offset from the beginning of the packet
+        * where the inner payload starts. This value is valid for TCP, UDP,
+        * FCoE, and RoCE packets.
+        */
+       uint8_t payload_offset;
+
+       uint8_t unused_1;
+
+       /*
+        * This value is the RSS hash value calculated for the packet based on
+        * the mode bits and key value in the VNIC.
+        */
+       uint32_t rss_hash;
+} __attribute__((packed));
+
+/* last 16 bytes of RX Packet Completion Record */
+struct rx_pkt_cmpl_hi {
+       /*
+        * This indicates that the ip checksum was calculated for the inner
+        * packet and that the ip_cs_error field indicates if there was an
+        * error.
+        */
+       #define RX_PKT_CMPL_FLAGS2_IP_CS_CALC           UINT32_C(0x1)
+       /*
+        * This indicates that the TCP, UDP or ICMP checksum was calculated for
+        * the inner packet and that the l4_cs_error field indicates if there
+        * was an error.
+        */
+       #define RX_PKT_CMPL_FLAGS2_L4_CS_CALC           UINT32_C(0x2)
+       /*
+        * This indicates that the ip checksum was calculated for the tunnel
+        * header and that the t_ip_cs_error field indicates if there was an
+        * error.
+        */
+       #define RX_PKT_CMPL_FLAGS2_T_IP_CS_CALC         UINT32_C(0x4)
+       /*
+        * This indicates that the UDP checksum was calculated for the tunnel
+        * packet and that the t_l4_cs_error field indicates if there was an
+        * error.
+        */
+       #define RX_PKT_CMPL_FLAGS2_T_L4_CS_CALC         UINT32_C(0x8)
+       /* This value indicates what format the metadata field is. */
+       #define RX_PKT_CMPL_FLAGS2_META_FORMAT_MASK     UINT32_C(0xf0)
+       #define RX_PKT_CMPL_FLAGS2_META_FORMAT_SFT      4
+               /* No metadata informtaion. Value is zero. */
+       #define RX_PKT_CMPL_FLAGS2_META_FORMAT_NONE     (UINT32_C(0x0) << 4)
+               /*
+                * The metadata field contains the VLAN tag and TPID value. -
+                * metadata[11:0] contains the vlan VID value. - metadata[12]
+                * contains the vlan DE value. - metadata[15:13] contains the
+                * vlan PRI value. - metadata[31:16] contains the vlan TPID
+                * value.
+                */
+       #define RX_PKT_CMPL_FLAGS2_META_FORMAT_VLAN     (UINT32_C(0x1) << 4)
+       #define RX_PKT_CMPL_FLAGS2_META_FORMAT_LAST \
+                                       RX_PKT_CMPL_FLAGS2_META_FORMAT_VLAN
+       /*
+        * This field indicates the IP type for the inner-most IP header. A
+        * value of '0' indicates IPv4. A value of '1' indicates IPv6. This
+        * value is only valid if itype indicates a packet with an IP header.
+        */
+       #define RX_PKT_CMPL_FLAGS2_IP_TYPE              UINT32_C(0x100)
+       uint32_t flags2;
+
+       /*
+        * This is data from the CFA block as indicated by the meta_format
+        * field.
+        */
+       /* When meta_format=1, this value is the VLAN VID. */
+       #define RX_PKT_CMPL_METADATA_VID_MASK           UINT32_C(0xfff)
+       #define RX_PKT_CMPL_METADATA_VID_SFT            0
+       /* When meta_format=1, this value is the VLAN DE. */
+       #define RX_PKT_CMPL_METADATA_DE                 UINT32_C(0x1000)
+       /* When meta_format=1, this value is the VLAN PRI. */
+       #define RX_PKT_CMPL_METADATA_PRI_MASK           UINT32_C(0xe000)
+       #define RX_PKT_CMPL_METADATA_PRI_SFT            13
+       /* When meta_format=1, this value is the VLAN TPID. */
+       #define RX_PKT_CMPL_METADATA_TPID_MASK          UINT32_C(0xffff0000)
+       #define RX_PKT_CMPL_METADATA_TPID_SFT           16
+       uint32_t metadata;
+
+       /*
+        * This value is written by the NIC such that it will be different for
+        * each pass through the completion queue. The even passes will write 1.
+        * The odd passes will write 0.
+        */
+       #define RX_PKT_CMPL_V2                          UINT32_C(0x1)
+       /*
+        * This error indicates that there was some sort of problem with the BDs
+        * for the packet that was found after part of the packet was already
+        * placed. The packet should be treated as invalid.
+        */
+       #define RX_PKT_CMPL_ERRORS_BUFFER_ERROR_MASK    UINT32_C(0xe)
+       #define RX_PKT_CMPL_ERRORS_BUFFER_ERROR_SFT     1
+               /* No buffer error */
+       #define RX_PKT_CMPL_ERRORS_BUFFER_ERROR_NO_BUFFER \
+                                                       (UINT32_C(0x0) << 1)
+               /*
+                * Did Not Fit: Packet did not fit into packet buffer provided.
+                * For regular placement, this means the packet did not fit in
+                * the buffer provided. For HDS and jumbo placement, this means
+                * that the packet could not be placed into 7 physical buffers
+                * or less.
+                */
+       #define RX_PKT_CMPL_ERRORS_BUFFER_ERROR_DID_NOT_FIT \
+                                                       (UINT32_C(0x1) << 1)
+               /*
+                * Not On Chip: All BDs needed for the packet were not on-chip
+                * when the packet arrived.
+                */
+       #define RX_PKT_CMPL_ERRORS_BUFFER_ERROR_NOT_ON_CHIP \
+                                                       (UINT32_C(0x2) << 1)
+               /* Bad Format: BDs were not formatted correctly. */
+       #define RX_PKT_CMPL_ERRORS_BUFFER_ERROR_BAD_FORMAT \
+                                                       (UINT32_C(0x3) << 1)
+       #define RX_PKT_CMPL_ERRORS_BUFFER_ERROR_LAST \
+                               RX_PKT_CMPL_ERRORS_BUFFER_ERROR_BAD_FORMAT
+       /* This indicates that there was an error in the IP header checksum. */
+       #define RX_PKT_CMPL_ERRORS_IP_CS_ERROR          UINT32_C(0x10)
+       /*
+        * This indicates that there was an error in the TCP, UDP or ICMP
+        * checksum.
+        */
+       #define RX_PKT_CMPL_ERRORS_L4_CS_ERROR          UINT32_C(0x20)
+       /*
+        * This indicates that there was an error in the tunnel IP header
+        * checksum.
+        */
+       #define RX_PKT_CMPL_ERRORS_T_IP_CS_ERROR        UINT32_C(0x40)
+       /* This indicates that there was an error in the tunnel UDP checksum. */
+       #define RX_PKT_CMPL_ERRORS_T_L4_CS_ERROR        UINT32_C(0x80)
+       /*
+        * This indicates that there was a CRC error on either an FCoE or RoCE
+        * packet. The itype indicates the packet type.
+        */
+       #define RX_PKT_CMPL_ERRORS_CRC_ERROR            UINT32_C(0x100)
+       /*
+        * This indicates that there was an error in the tunnel portion of the
+        * packet when this field is non-zero.
+        */
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_MASK     UINT32_C(0xe00)
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_SFT      9
+               /*
+                * No additional error occurred on the tunnel portion of the
+                * packet of the packet does not have a tunnel.
+                */
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_NO_ERROR (UINT32_C(0x0) << 9)
+               /*
+                * Indicates that IP header version does not match expectation
+                * from L2 Ethertype for IPv4 and IPv6 in the tunnel header.
+                */
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_T_L3_BAD_VERSION \
+                                                       (UINT32_C(0x1) << 9)
+               /*
+                * Indicates that header length is out of range in the tunnel
+                * header. Valid for IPv4.
+                */
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_T_L3_BAD_HDR_LEN \
+                                                       (UINT32_C(0x2) << 9)
+               /*
+                * Indicates that the physical packet is shorter than that
+                * claimed by the PPPoE header length for a tunnel PPPoE packet.
+                */
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_TUNNEL_TOTAL_ERROR \
+                                                       (UINT32_C(0x3) << 9)
+               /*
+                * Indicates that physical packet is shorter than that claimed
+                * by the tunnel l3 header length. Valid for IPv4, or IPv6
+                * tunnel packet packets.
+                */
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_T_IP_TOTAL_ERROR \
+                                                       (UINT32_C(0x4) << 9)
+               /*
+                * Indicates that the physical packet is shorter than that
+                * claimed by the tunnel UDP header length for a tunnel UDP
+                * packet that is not fragmented.
+                */
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_T_UDP_TOTAL_ERROR \
+                                                       (UINT32_C(0x5) << 9)
+               /*
+                * indicates that the IPv4 TTL or IPv6 hop limit check have
+                * failed (e.g. TTL = 0) in the tunnel header. Valid for IPv4,
+                * and IPv6.
+                */
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_T_L3_BAD_TTL \
+                                                       (UINT32_C(0x6) << 9)
+       #define RX_PKT_CMPL_ERRORS_T_PKT_ERROR_LAST \
+                               RX_PKT_CMPL_ERRORS_T_PKT_ERROR_T_L3_BAD_TTL
+       /*
+        * This indicates that there was an error in the inner portion of the
+        * packet when this field is non-zero.
+        */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_MASK       UINT32_C(0xf000)
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_SFT        12
+               /*
+                * No additional error occurred on the tunnel portion of the
+                * packet of the packet does not have a tunnel.
+                */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_NO_ERROR   (UINT32_C(0x0) << 12)
+               /*
+                * Indicates that IP header version does not match expectation
+                * from L2 Ethertype for IPv4 and IPv6 or that option other than
+                * VFT was parsed on FCoE packet.
+                */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_L3_BAD_VERSION \
+                                                       (UINT32_C(0x1) << 12)
+               /*
+                * indicates that header length is out of range. Valid for IPv4
+                * and RoCE
+                */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_L3_BAD_HDR_LEN \
+                                                       (UINT32_C(0x2) << 12)
+               /*
+                * indicates that the IPv4 TTL or IPv6 hop limit check have
+                * failed (e.g. TTL = 0). Valid for IPv4, and IPv6
+                */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_L3_BAD_TTL (UINT32_C(0x3) << 12)
+               /*
+                * Indicates that physical packet is shorter than that claimed
+                * by the l3 header length. Valid for IPv4, IPv6 packet or RoCE
+                * packets.
+                */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_IP_TOTAL_ERROR \
+                                                       (UINT32_C(0x4) << 12)
+               /*
+                * Indicates that the physical packet is shorter than that
+                * claimed by the UDP header length for a UDP packet that is not
+                * fragmented.
+                */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_UDP_TOTAL_ERROR \
+                                                       (UINT32_C(0x5) << 12)
+               /*
+                * Indicates that TCP header length > IP payload. Valid for TCP
+                * packets only.
+                */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_L4_BAD_HDR_LEN \
+                                                       (UINT32_C(0x6) << 12)
+               /* Indicates that TCP header length < 5. Valid for TCP. */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_L4_BAD_HDR_LEN_TOO_SMALL \
+                                                       (UINT32_C(0x7) << 12)
+               /*
+                * Indicates that TCP option headers result in a TCP header size
+                * that does not match data offset in TCP header. Valid for TCP.
+                */
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_L4_BAD_OPT_LEN \
+                                                       (UINT32_C(0x8) << 12)
+       #define RX_PKT_CMPL_ERRORS_PKT_ERROR_LAST \
+                               RX_PKT_CMPL_ERRORS_PKT_ERROR_L4_BAD_OPT_LEN
+       #define RX_PKT_CMPL_ERRORS_MASK                 UINT32_C(0xfffe)
+       #define RX_PKT_CMPL_ERRORS_SFT                  1
+       uint16_t errors_v2;
+
+       /*
+        * This field identifies the CFA action rule that was used for this
+        * packet.
+        */
+       uint16_t cfa_code;
+
+       /*
+        * This value holds the reordering sequence number for the packet. If
+        * the reordering sequence is not valid, then this value is zero. The
+        * reordering domain for the packet is in the bottom 8 to 10b of the
+        * rss_hash value. The bottom 20b of this value contain the ordering
+        * domain value for the packet.
+        */
+       #define RX_PKT_CMPL_REORDER_MASK                UINT32_C(0xffffff)
+       #define RX_PKT_CMPL_REORDER_SFT                 0
+       uint32_t reorder;
+} __attribute__((packed));
+
 /* HWRM Forwarded Request (16 bytes) */
 struct hwrm_fwd_req_cmpl {
        /* Length of forwarded request in bytes. */
@@ -1251,19 +1739,11 @@ struct hwrm_cfa_l2_filter_free_output {
        uint8_t valid;
 } __attribute__((packed));
 
-/* hwrm_exec_fwd_resp */
-/*
- * Description: This command is used to send an encapsulated request to the
- * HWRM. This command instructs the HWRM to execute the request and forward the
- * response of the encapsulated request to the location specified in the
- * original request that is encapsulated. The target id of this command shall be
- * set to 0xFFFF (HWRM). The response location in this command shall be used to
- * acknowledge the receipt of the encapsulated request and forwarding of the
- * response.
- */
+/* hwrm_cfa_l2_set_rx_mask */
+/* Description: This command will set rx mask of the function. */
 
-/* Input (128 bytes) */
-struct hwrm_exec_fwd_resp_input {
+/* Input (40 bytes) */
+struct hwrm_cfa_l2_set_rx_mask_input {
        /*
         * This value indicates what type of request this is. The format for the
         * rest of the command is determined by this field.
@@ -1294,25 +1774,72 @@ struct hwrm_exec_fwd_resp_input {
         */
        uint64_t resp_addr;
 
+       /* VNIC ID */
+       uint32_t vnic_id;
+
+       /* Reserved for future use. */
+       #define HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_RESERVED     UINT32_C(0x1)
        /*
-        * This is an encapsulated request. This request should be executed by
-        * the HWRM and the response should be provided in the response buffer
-        * inside the encapsulated request.
+        * When this bit is '1', the function is requested to accept multi-cast
+        * packets specified by the multicast addr table.
         */
-       uint32_t encap_request[26];
+       #define HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_MCAST        UINT32_C(0x2)
+       /*
+        * When this bit is '1', the function is requested to accept all multi-
+        * cast packets.
+        */
+       #define HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_ALL_MCAST    UINT32_C(0x4)
+       /*
+        * When this bit is '1', the function is requested to accept broadcast
+        * packets.
+        */
+       #define HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_BCAST        UINT32_C(0x8)
+       /*
+        * When this bit is '1', the function is requested to be put in the
+        * promiscuous mode. The HWRM should accept any function to set up
+        * promiscuous mode. The HWRM shall follow the semantics below for the
+        * promiscuous mode support. # When partitioning is not enabled on a
+        * port (i.e. single PF on the port), then the PF shall be allowed to be
+        * in the promiscuous mode. When the PF is in the promiscuous mode, then
+        * it shall receive all host bound traffic on that port. # When
+        * partitioning is enabled on a port (i.e. multiple PFs per port) and a
+        * PF on that port is in the promiscuous mode, then the PF receives all
+        * traffic within that partition as identified by a unique identifier
+        * for the PF (e.g. S-Tag). If a unique outer VLAN for the PF is
+        * specified, then the setting of promiscuous mode on that PF shall
+        * result in the PF receiving all host bound traffic with matching outer
+        * VLAN. # A VF shall can be set in the promiscuous mode. In the
+        * promiscuous mode, the VF does not receive any traffic unless a unique
+        * outer VLAN for the VF is specified. If a unique outer VLAN for the VF
+        * is specified, then the setting of promiscuous mode on that VF shall
+        * result in the VF receiving all host bound traffic with the matching
+        * outer VLAN. # The HWRM shall allow the setting of promiscuous mode on
+        * a function independently from the promiscuous mode settings on other
+        * functions.
+        */
+       #define HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_PROMISCUOUS  UINT32_C(0x10)
+       /*
+        * If this flag is set, the corresponding RX filters shall be set up to
+        * cover multicast/broadcast filters for the outermost Layer 2
+        * destination MAC address field.
+        */
+       #define HWRM_CFA_L2_SET_RX_MASK_INPUT_MASK_OUTERMOST    UINT32_C(0x20)
+       uint32_t mask;
+
+       /* This is the address for mcast address tbl. */
+       uint64_t mc_tbl_addr;
 
        /*
-        * This value indicates the target id of the response to the
-        * encapsulated request. 0x0 - 0xFFF8 - Used for function ids 0xFFF8 -
-        * 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        * This value indicates how many entries in mc_tbl are valid. Each entry
+        * is 6 bytes.
         */
-       uint16_t encap_resp_target_id;
+       uint32_t num_mc_entries;
 
-       uint16_t unused_0[3];
+       uint32_t unused_0;
 } __attribute__((packed));
 
 /* Output (16 bytes) */
-struct hwrm_exec_fwd_resp_output {
+struct hwrm_cfa_l2_set_rx_mask_output {
        /*
         * Pass/Fail or error type Note: receiver to verify the in parameters,
         * and fail the call with an error when appropriate
@@ -1347,17 +1874,19 @@ struct hwrm_exec_fwd_resp_output {
        uint8_t valid;
 } __attribute__((packed));
 
-/* hwrm_func_qcaps */
+/* hwrm_exec_fwd_resp */
 /*
- * Description: This command returns capabilities of a function. The input FID
- * value is used to indicate what function is being queried. This allows a
- * physical function driver to query virtual functions that are children of the
- * physical function. The output FID value is needed to configure Rings and
- * MSI-X vectors so their DMA operations appear correctly on the PCI bus.
+ * Description: This command is used to send an encapsulated request to the
+ * HWRM. This command instructs the HWRM to execute the request and forward the
+ * response of the encapsulated request to the location specified in the
+ * original request that is encapsulated. The target id of this command shall be
+ * set to 0xFFFF (HWRM). The response location in this command shall be used to
+ * acknowledge the receipt of the encapsulated request and forwarding of the
+ * response.
  */
 
-/* Input (24 bytes) */
-struct hwrm_func_qcaps_input {
+/* Input (128 bytes) */
+struct hwrm_exec_fwd_resp_input {
        /*
         * This value indicates what type of request this is. The format for the
         * rest of the command is determined by this field.
@@ -1389,16 +1918,24 @@ struct hwrm_func_qcaps_input {
        uint64_t resp_addr;
 
        /*
-        * Function ID of the function that is being queried. 0xFF... (All Fs)
-        * if the query is for the requesting function.
+        * This is an encapsulated request. This request should be executed by
+        * the HWRM and the response should be provided in the response buffer
+        * inside the encapsulated request.
         */
-       uint16_t fid;
+       uint32_t encap_request[26];
+
+       /*
+        * This value indicates the target id of the response to the
+        * encapsulated request. 0x0 - 0xFFF8 - Used for function ids 0xFFF8 -
+        * 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t encap_resp_target_id;
 
        uint16_t unused_0[3];
 } __attribute__((packed));
 
-/* Output (80 bytes) */
-struct hwrm_func_qcaps_output {
+/* Output (16 bytes) */
+struct hwrm_exec_fwd_resp_output {
        /*
         * Pass/Fail or error type Note: receiver to verify the in parameters,
         * and fail the call with an error when appropriate
@@ -1418,11 +1955,97 @@ struct hwrm_func_qcaps_output {
         */
        uint16_t resp_len;
 
+       uint32_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+       uint8_t unused_3;
+
        /*
-        * FID value. This value is used to identify operations on the PCI bus
-        * as belonging to a particular PCI function.
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
         */
-       uint16_t fid;
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_func_qcaps */
+/*
+ * Description: This command returns capabilities of a function. The input FID
+ * value is used to indicate what function is being queried. This allows a
+ * physical function driver to query virtual functions that are children of the
+ * physical function. The output FID value is needed to configure Rings and
+ * MSI-X vectors so their DMA operations appear correctly on the PCI bus.
+ */
+
+/* Input (24 bytes) */
+struct hwrm_func_qcaps_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /*
+        * Function ID of the function that is being queried. 0xFF... (All Fs)
+        * if the query is for the requesting function.
+        */
+       uint16_t fid;
+
+       uint16_t unused_0[3];
+} __attribute__((packed));
+
+/* Output (80 bytes) */
+struct hwrm_func_qcaps_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
+
+       /*
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
+        */
+       uint16_t resp_len;
+
+       /*
+        * FID value. This value is used to identify operations on the PCI bus
+        * as belonging to a particular PCI function.
+        */
+       uint16_t fid;
 
        /*
         * Port ID of port that this function is associated with. Valid only for
@@ -1574,6 +2197,134 @@ struct hwrm_func_qcaps_output {
        uint8_t valid;
 } __attribute__((packed));
 
+/* hwrm_func_reset */
+/*
+ * Description: This command resets a hardware function (PCIe function) and
+ * frees any resources used by the function. This command shall be initiated by
+ * the driver after an FLR has occurred to prepare the function for re-use. This
+ * command may also be initiated by a driver prior to doing it's own
+ * configuration. This command puts the function into the reset state. In the
+ * reset state, global and port related features of the chip are not available.
+ */
+/*
+ * Note: This command will reset a function that has already been disabled or
+ * idled. The command returns all the resources owned by the function so a new
+ * driver may allocate and configure resources normally.
+ */
+
+/* Input (24 bytes) */
+struct hwrm_func_reset_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /* This bit must be '1' for the vf_id_valid field to be configured. */
+       #define HWRM_FUNC_RESET_INPUT_ENABLES_VF_ID_VALID \
+                                                       UINT32_C(0x1)
+       uint32_t enables;
+
+       /*
+        * The ID of the VF that this PF is trying to reset. Only the parent PF
+        * shall be allowed to reset a child VF. A parent PF driver shall use
+        * this field only when a specific child VF is requested to be reset.
+        */
+       uint16_t vf_id;
+
+       /* This value indicates the level of a function reset. */
+               /*
+                * Reset the caller function and its children VFs (if any). If
+                * no children functions exist, then reset the caller function
+                * only.
+                */
+       #define HWRM_FUNC_RESET_INPUT_FUNC_RESET_LEVEL_RESETALL \
+                                                       (UINT32_C(0x0) << 0)
+               /* Reset the caller function only */
+       #define HWRM_FUNC_RESET_INPUT_FUNC_RESET_LEVEL_RESETME \
+                                                       (UINT32_C(0x1) << 0)
+               /*
+                * Reset all children VFs of the caller function driver if the
+                * caller is a PF driver. It is an error to specify this level
+                * by a VF driver. It is an error to specify this level by a PF
+                * driver with no children VFs.
+                */
+       #define HWRM_FUNC_RESET_INPUT_FUNC_RESET_LEVEL_RESETCHILDREN \
+                                                       (UINT32_C(0x2) << 0)
+               /*
+                * Reset a specific VF of the caller function driver if the
+                * caller is the parent PF driver. It is an error to specify
+                * this level by a VF driver. It is an error to specify this
+                * level by a PF driver that is not the parent of the VF that is
+                * being requested to reset.
+                */
+       #define HWRM_FUNC_RESET_INPUT_FUNC_RESET_LEVEL_RESETVF \
+                                                       (UINT32_C(0x3) << 0)
+       uint8_t func_reset_level;
+
+       uint8_t unused_0;
+} __attribute__((packed));
+
+/* Output (16 bytes) */
+struct hwrm_func_reset_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
+
+       /*
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
+        */
+       uint16_t resp_len;
+
+       uint32_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+       uint8_t unused_3;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
 /* hwrm_port_phy_cfg */
 /*
  * Description: This command configures the PHY device for the port. It allows
@@ -2043,18 +2794,11 @@ struct hwrm_port_phy_cfg_output {
        uint8_t valid;
 } __attribute__((packed));
 
-/* hwrm_ver_get */
-/*
- * Description: This function is called by a driver to determine the HWRM
- * interface version supported by the HWRM firmware, the version of HWRM
- * firmware implementation, the name of HWRM firmware, the versions of other
- * embedded firmwares, and the names of other embedded firmwares, etc. Any
- * interface or firmware version with major = 0, minor = 0, and update = 0 shall
- * be considered an invalid version.
- */
-
+/* hwrm_port_phy_qcfg */
+/* Description: This command queries the PHY configuration for the port. */
 /* Input (24 bytes) */
-struct hwrm_ver_get_input {
+
+struct hwrm_port_phy_qcfg_input {
        /*
         * This value indicates what type of request this is. The format for the
         * rest of the command is determined by this field.
@@ -2085,38 +2829,14 @@ struct hwrm_ver_get_input {
         */
        uint64_t resp_addr;
 
-       /*
-        * This field represents the major version of HWRM interface
-        * specification supported by the driver HWRM implementation. The
-        * interface major version is intended to change only when non backward
-        * compatible changes are made to the HWRM interface specification.
-        */
-       uint8_t hwrm_intf_maj;
-
-       /*
-        * This field represents the minor version of HWRM interface
-        * specification supported by the driver HWRM implementation. A change
-        * in interface minor version is used to reflect significant backward
-        * compatible modification to HWRM interface specification. This can be
-        * due to addition or removal of functionality. HWRM interface
-        * specifications with the same major version but different minor
-        * versions are compatible.
-        */
-       uint8_t hwrm_intf_min;
-
-       /*
-        * This field represents the update version of HWRM interface
-        * specification supported by the driver HWRM implementation. The
-        * interface update version is used to reflect minor changes or bug
-        * fixes to a released HWRM interface specification.
-        */
-       uint8_t hwrm_intf_upd;
+       /* Port ID of port that is to be queried. */
+       uint16_t port_id;
 
-       uint8_t unused_0[5];
+       uint16_t unused_0[3];
 } __attribute__((packed));
 
-/* Output (128 bytes) */
-struct hwrm_ver_get_output {
+/* Output (96 bytes) */
+struct hwrm_port_phy_qcfg_output {
        /*
         * Pass/Fail or error type Note: receiver to verify the in parameters,
         * and fail the call with an error when appropriate
@@ -2136,28 +2856,848 @@ struct hwrm_ver_get_output {
         */
        uint16_t resp_len;
 
-       /*
-        * This field represents the major version of HWRM interface
-        * specification supported by the HWRM implementation. The interface
-        * major version is intended to change only when non backward compatible
-        * changes are made to the HWRM interface specification. A HWRM
-        * implementation that is compliant with this specification shall
-        * provide value of 1 in this field.
-        */
-       uint8_t hwrm_intf_maj;
+       /* This value indicates the current link status. */
+               /* There is no link or cable detected. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_NO_LINK  (UINT32_C(0x0) << 0)
+               /* There is no link, but a cable has been detected. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SIGNAL   (UINT32_C(0x1) << 0)
+               /* There is a link. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_LINK     (UINT32_C(0x2) << 0)
+       uint8_t link;
+
+       uint8_t unused_0;
+
+       /* This value indicates the current link speed of the connection. */
+               /* 100Mb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_100MB \
+                                                       (UINT32_C(0x1) << 0)
+               /* 1Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_1GB \
+                                                       (UINT32_C(0xa) << 0)
+               /* 2Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_2GB \
+                                                       (UINT32_C(0x14) << 0)
+               /* 2.5Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_2_5GB \
+                                                       (UINT32_C(0x19) << 0)
+               /* 10Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_10GB \
+                                                       (UINT32_C(0x64) << 0)
+               /* 20Mb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_20GB \
+                                                       (UINT32_C(0xc8) << 0)
+               /* 25Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_25GB \
+                                                       (UINT32_C(0xfa) << 0)
+               /* 40Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_40GB \
+                                                       (UINT32_C(0x190) << 0)
+               /* 50Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_50GB \
+                                                       (UINT32_C(0x1f4) << 0)
+               /* 100Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_100GB \
+                                                       (UINT32_C(0x3e8) << 0)
+               /* 10Mb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_SPEED_10MB \
+                                                       (UINT32_C(0xffff) << 0)
+       uint16_t link_speed;
+
+       /* This value is indicates the duplex of the current connection. */
+               /* Half Duplex connection. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_DUPLEX_HALF   (UINT32_C(0x0) << 0)
+               /* Full duplex connection. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_DUPLEX_FULL   (UINT32_C(0x1) << 0)
+       uint8_t duplex;
 
        /*
-        * This field represents the minor version of HWRM interface
-        * specification supported by the HWRM implementation. A change in
-        * interface minor version is used to reflect significant backward
-        * compatible modification to HWRM interface specification. This can be
-        * due to addition or removal of functionality. HWRM interface
-        * specifications with the same major version but different minor
-        * versions are compatible. A HWRM implementation that is compliant with
-        * this specification shall provide value of 0 in this field.
+        * This value is used to indicate the current pause configuration. When
+        * autoneg is enabled, this value represents the autoneg results of
+        * pause configuration.
         */
-       uint8_t hwrm_intf_min;
-
+       /*
+        * When this bit is '1', Generation of tx pause messages is supported.
+        * Disabled otherwise.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PAUSE_TX      UINT32_C(0x1)
+       /*
+        * When this bit is '1', Reception of rx pause messages is supported.
+        * Disabled otherwise.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PAUSE_RX      UINT32_C(0x2)
+       uint8_t pause;
+
+       /*
+        * The supported speeds for the port. This is a bit mask. For each speed
+        * that is supported, the corrresponding bit will be set to '1'.
+        */
+       /* 100Mb link speed (Half-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_100MBHD \
+                                                       UINT32_C(0x1)
+       /* 100Mb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_100MB \
+                                                       UINT32_C(0x2)
+       /* 1Gb link speed (Half-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_1GBHD \
+                                                       UINT32_C(0x4)
+       /* 1Gb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_1GB \
+                                                       UINT32_C(0x8)
+       /* 2Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_2GB \
+                                                       UINT32_C(0x10)
+       /* 2.5Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_2_5GB \
+                                                       UINT32_C(0x20)
+       /* 10Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_10GB \
+                                                       UINT32_C(0x40)
+       /* 20Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_20GB \
+                                                       UINT32_C(0x80)
+       /* 25Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_25GB \
+                                                       UINT32_C(0x100)
+       /* 40Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_40GB \
+                                                       UINT32_C(0x200)
+       /* 50Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_50GB \
+                                                       UINT32_C(0x400)
+       /* 100Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_100GB \
+                                                       UINT32_C(0x800)
+       /* 10Mb link speed (Half-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_10MBHD \
+                                                       UINT32_C(0x1000)
+       /* 10Mb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_SUPPORT_SPEEDS_10MB \
+                                                       UINT32_C(0x2000)
+       uint16_t support_speeds;
+
+       /*
+        * Current setting of forced link speed. When the link speed is not
+        * being forced, this value shall be set to 0.
+        */
+               /* 100Mb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_100MB \
+                                                       (UINT32_C(0x1) << 0)
+               /* 1Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_1GB \
+                                                       (UINT32_C(0xa) << 0)
+               /* 2Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_2GB \
+                                                       (UINT32_C(0x14) << 0)
+               /* 2.5Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_2_5GB \
+                                                       (UINT32_C(0x19) << 0)
+               /* 10Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_10GB \
+                                                       (UINT32_C(0x64) << 0)
+               /* 20Mb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_20GB \
+                                                       (UINT32_C(0xc8) << 0)
+               /* 25Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_25GB \
+                                                       (UINT32_C(0xfa) << 0)
+               /* 40Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_40GB \
+                                                       (UINT32_C(0x190) << 0)
+               /* 50Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_50GB \
+                                                       (UINT32_C(0x1f4) << 0)
+               /* 100Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_100GB \
+                                                       (UINT32_C(0x3e8) << 0)
+               /* 10Mb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_LINK_SPEED_10MB \
+                                                       (UINT32_C(0xffff) << 0)
+       uint16_t force_link_speed;
+
+       /* Current setting of auto negotiation mode. */
+               /*
+                * Disable autoneg or autoneg disabled. No speeds are selected.
+                */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_MODE_NONE \
+                                                       (UINT32_C(0x0) << 0)
+               /* Select all possible speeds for autoneg mode. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_MODE_ALL_SPEEDS \
+                                                       (UINT32_C(0x1) << 0)
+               /*
+                * Select only the auto_link_speed speed for autoneg mode. This
+                * mode has been DEPRECATED. An HWRM client should not use this
+                * mode.
+                */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_MODE_ONE_SPEED \
+                                                       (UINT32_C(0x2) << 0)
+               /*
+                * Select the auto_link_speed or any speed below that speed for
+                * autoneg. This mode has been DEPRECATED. An HWRM client should
+                * not use this mode.
+                */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_MODE_ONE_OR_BELOW \
+                                                       (UINT32_C(0x3) << 0)
+               /*
+                * Select the speeds based on the corresponding link speed mask
+                * value that is provided.
+                */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_MODE_SPEED_MASK \
+                                                       (UINT32_C(0x4) << 0)
+       uint8_t auto_mode;
+
+       /*
+        * Current setting of pause autonegotiation. Move autoneg_pause flag
+        * here.
+        */
+       /*
+        * When this bit is '1', Generation of tx pause messages has been
+        * requested. Disabled otherwise.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_PAUSE_TX UINT32_C(0x1)
+       /*
+        * When this bit is '1', Reception of rx pause messages has been
+        * requested. Disabled otherwise.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_PAUSE_RX UINT32_C(0x2)
+       /*
+        * When set to 1, the advertisement of pause is enabled. # When the
+        * auto_mode is not set to none and this flag is set to 1, then the
+        * auto_pause bits on this port are being advertised and autoneg pause
+        * results are being interpreted. # When the auto_mode is not set to
+        * none and this flag is set to 0, the pause is forced as indicated in
+        * force_pause, and also advertised as auto_pause bits, but the autoneg
+        * results are not interpreted since the pause configuration is being
+        * forced. # When the auto_mode is set to none and this flag is set to
+        * 1, auto_pause bits should be ignored and should be set to 0.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_PAUSE_AUTONEG_PAUSE \
+                                                       UINT32_C(0x4)
+       uint8_t auto_pause;
+
+       /*
+        * Current setting for auto_link_speed. This field is only valid when
+        * auto_mode is set to "one_speed" or "one_or_below".
+        */
+               /* 100Mb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_100MB \
+                                                       (UINT32_C(0x1) << 0)
+               /* 1Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_1GB \
+                                                       (UINT32_C(0xa) << 0)
+               /* 2Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_2GB \
+                                                       (UINT32_C(0x14) << 0)
+               /* 2.5Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_2_5GB \
+                                                       (UINT32_C(0x19) << 0)
+               /* 10Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_10GB \
+                                                       (UINT32_C(0x64) << 0)
+               /* 20Mb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_20GB \
+                                                       (UINT32_C(0xc8) << 0)
+               /* 25Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_25GB \
+                                                       (UINT32_C(0xfa) << 0)
+               /* 40Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_40GB \
+                                                       (UINT32_C(0x190) << 0)
+               /* 50Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_50GB \
+                                                       (UINT32_C(0x1f4) << 0)
+               /* 100Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_100GB \
+                                                       (UINT32_C(0x3e8) << 0)
+               /* 10Mb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_10MB \
+                                                       (UINT32_C(0xffff) << 0)
+       uint16_t auto_link_speed;
+
+       /*
+        * Current setting for auto_link_speed_mask that is used to advertise
+        * speeds during autonegotiation. This field is only valid when
+        * auto_mode is set to "mask". The speeds specified in this field shall
+        * be a subset of supported speeds on this port.
+        */
+       /* 100Mb link speed (Half-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_100MBHD \
+                                                       UINT32_C(0x1)
+       /* 100Mb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_100MB \
+                                                       UINT32_C(0x2)
+       /* 1Gb link speed (Half-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_1GBHD \
+                                                       UINT32_C(0x4)
+       /* 1Gb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_1GB \
+                                                       UINT32_C(0x8)
+       /* 2Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_2GB \
+                                                       UINT32_C(0x10)
+       /* 2.5Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_2_5GB \
+                                                       UINT32_C(0x20)
+       /* 10Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_10GB \
+                                                       UINT32_C(0x40)
+       /* 20Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_20GB \
+                                                       UINT32_C(0x80)
+       /* 25Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_25GB \
+                                                       UINT32_C(0x100)
+       /* 40Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_40GB \
+                                                       UINT32_C(0x200)
+       /* 50Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_50GB \
+                                                       UINT32_C(0x400)
+       /* 100Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_100GB \
+                                                       UINT32_C(0x800)
+       /* 10Mb link speed (Half-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_10MBHD \
+                                                       UINT32_C(0x1000)
+       /* 10Mb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_AUTO_LINK_SPEED_MASK_10MB \
+                                                       UINT32_C(0x2000)
+       uint16_t auto_link_speed_mask;
+
+       /* Current setting for wirespeed. */
+               /* Wirespeed feature is disabled. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_WIRESPEED_OFF (UINT32_C(0x0) << 0)
+               /* Wirespeed feature is enabled. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_WIRESPEED_ON  (UINT32_C(0x1) << 0)
+       uint8_t wirespeed;
+
+       /* Current setting for loopback. */
+               /* No loopback is selected. Normal operation. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LPBK_NONE     (UINT32_C(0x0) << 0)
+               /*
+                * The HW will be configured with local loopback such that host
+                * data is sent back to the host without modification.
+                */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LPBK_LOCAL    (UINT32_C(0x1) << 0)
+               /*
+                * The HW will be configured with remote loopback such that port
+                * logic will send packets back out the transmitter that are
+                * received.
+                */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LPBK_REMOTE   (UINT32_C(0x2) << 0)
+       uint8_t lpbk;
+
+       /*
+        * Current setting of forced pause. When the pause configuration is not
+        * being forced, then this value shall be set to 0.
+        */
+       /*
+        * When this bit is '1', Generation of tx pause messages is supported.
+        * Disabled otherwise.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_PAUSE_TX \
+                                                       UINT32_C(0x1)
+       /*
+        * When this bit is '1', Reception of rx pause messages is supported.
+        * Disabled otherwise.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_FORCE_PAUSE_RX \
+                                                       UINT32_C(0x2)
+       uint8_t force_pause;
+
+       /*
+        * This value indicates the current status of the optics module on this
+        * port.
+        */
+               /* Module is inserted and accepted */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MODULE_STATUS_NONE \
+                                                       (UINT32_C(0x0) << 0)
+               /* Module is rejected and transmit side Laser is disabled. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MODULE_STATUS_DISABLETX \
+                                                       (UINT32_C(0x1) << 0)
+               /* Module mismatch warning. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MODULE_STATUS_WARNINGMSG \
+                                                       (UINT32_C(0x2) << 0)
+               /* Module is rejected and powered down. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MODULE_STATUS_PWRDOWN \
+                                                       (UINT32_C(0x3) << 0)
+               /* Module is not inserted. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MODULE_STATUS_NOTINSERTED \
+                                                       (UINT32_C(0x4) << 0)
+               /* Module status is not applicable. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MODULE_STATUS_NOTAPPLICABLE \
+                                                       (UINT32_C(0xff) << 0)
+       uint8_t module_status;
+
+       /* Current setting for preemphasis. */
+       uint32_t preemphasis;
+
+       /* This field represents the major version of the PHY. */
+       uint8_t phy_maj;
+
+       /* This field represents the minor version of the PHY. */
+       uint8_t phy_min;
+
+       /* This field represents the build version of the PHY. */
+       uint8_t phy_bld;
+
+       /* This value represents a PHY type. */
+               /* Unknown */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_UNKNOWN \
+                                                       (UINT32_C(0x0) << 0)
+               /* BASE-CR */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASECR \
+                                                       (UINT32_C(0x1) << 0)
+               /* BASE-KR4 (Deprecated) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASEKR4 \
+                                                       (UINT32_C(0x2) << 0)
+               /* BASE-LR */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASELR \
+                                                       (UINT32_C(0x3) << 0)
+               /* BASE-SR */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASESR \
+                                                       (UINT32_C(0x4) << 0)
+               /* BASE-KR2 (Deprecated) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASEKR2 \
+                                                       (UINT32_C(0x5) << 0)
+               /* BASE-KX */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASEKX \
+                                                       (UINT32_C(0x6) << 0)
+               /* BASE-KR */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASEKR \
+                                                       (UINT32_C(0x7) << 0)
+               /* BASE-T */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASET \
+                                                       (UINT32_C(0x8) << 0)
+               /* EEE capable BASE-T */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_BASETE \
+                                                       (UINT32_C(0x9) << 0)
+               /* SGMII connected external PHY */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_SGMIIEXTPHY \
+                                                       (UINT32_C(0xa) << 0)
+       uint8_t phy_type;
+
+       /* This value represents a media type. */
+               /* Unknown */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MEDIA_TYPE_UNKNOWN \
+                                                       (UINT32_C(0x0) << 0)
+               /* Twisted Pair */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MEDIA_TYPE_TP (UINT32_C(0x1) << 0)
+               /* Direct Attached Copper */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MEDIA_TYPE_DAC \
+                                                       (UINT32_C(0x2) << 0)
+               /* Fiber */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_MEDIA_TYPE_FIBRE \
+                                                       (UINT32_C(0x3) << 0)
+       uint8_t media_type;
+
+       /* This value represents a transceiver type. */
+               /* PHY and MAC are in the same package */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_XCVR_PKG_TYPE_XCVR_INTERNAL \
+                                                       (UINT32_C(0x1) << 0)
+               /* PHY and MAC are in different packages */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_XCVR_PKG_TYPE_XCVR_EXTERNAL \
+                                                       (UINT32_C(0x2) << 0)
+       uint8_t xcvr_pkg_type;
+
+       /*
+        * This field represents flags related to EEE configuration. These EEE
+        * configuration flags are valid only when the auto_mode is not set to
+        * none (in other words autonegotiation is enabled).
+        */
+       /* This field represents PHY address. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_ADDR_MASK UINT32_C(0x1f)
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PHY_ADDR_SFT  0
+       /*
+        * When set to 1, Energy Efficient Ethernet (EEE) mode is enabled.
+        * Speeds for autoneg with EEE mode enabled are based on
+        * eee_link_speed_mask.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_EEE_CONFIG_EEE_ENABLED \
+                                                       UINT32_C(0x20)
+       /*
+        * This flag is valid only when eee_enabled is set to 1. # If
+        * eee_enabled is set to 0, then EEE mode is disabled and this flag
+        * shall be ignored. # If eee_enabled is set to 1 and this flag is set
+        * to 1, then Energy Efficient Ethernet (EEE) mode is enabled and in
+        * use. # If eee_enabled is set to 1 and this flag is set to 0, then
+        * Energy Efficient Ethernet (EEE) mode is enabled but is currently not
+        * in use.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_EEE_CONFIG_EEE_ACTIVE \
+                                                       UINT32_C(0x40)
+       /*
+        * This flag is valid only when eee_enabled is set to 1. # If
+        * eee_enabled is set to 0, then EEE mode is disabled and this flag
+        * shall be ignored. # If eee_enabled is set to 1 and this flag is set
+        * to 1, then Energy Efficient Ethernet (EEE) mode is enabled and TX LPI
+        * is enabled. # If eee_enabled is set to 1 and this flag is set to 0,
+        * then Energy Efficient Ethernet (EEE) mode is enabled but TX LPI is
+        * disabled.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_EEE_CONFIG_EEE_TX_LPI \
+                                                       UINT32_C(0x80)
+       /*
+        * This field represents flags related to EEE configuration. These EEE
+        * configuration flags are valid only when the auto_mode is not set to
+        * none (in other words autonegotiation is enabled).
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_EEE_CONFIG_MASK \
+                                                       UINT32_C(0xe0)
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_EEE_CONFIG_SFT        5
+       uint8_t eee_config_phy_addr;
+
+       /* Reserved field, set to 0 */
+       /*
+        * When set to 1, the parallel detection is used to determine the speed
+        * of the link partner. Parallel detection is used when a
+        * autonegotiation capable device is connected to a link parter that is
+        * not capable of autonegotiation.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_PARALLEL_DETECT \
+                                                       UINT32_C(0x1)
+       /* Reserved field, set to 0 */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_RESERVED_MASK UINT32_C(0xfe)
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_RESERVED_SFT  1
+       uint8_t parallel_detect;
+
+       /*
+        * The advertised speeds for the port by the link partner. Each
+        * advertised speed will be set to '1'.
+        */
+       /* 100Mb link speed (Half-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_100MBHD \
+                                                       UINT32_C(0x1)
+       /* 100Mb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_100MB \
+                                                       UINT32_C(0x2)
+       /* 1Gb link speed (Half-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_1GBHD \
+                                                       UINT32_C(0x4)
+       /* 1Gb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_1GB \
+                                                       UINT32_C(0x8)
+       /* 2Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_2GB \
+                                                       UINT32_C(0x10)
+       /* 2.5Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_2_5GB \
+                                                       UINT32_C(0x20)
+       /* 10Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_10GB \
+                                                       UINT32_C(0x40)
+       /* 20Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_20GB \
+                                                       UINT32_C(0x80)
+       /* 25Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_25GB \
+                                                       UINT32_C(0x100)
+       /* 40Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_40GB \
+                                                       UINT32_C(0x200)
+       /* 50Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_50GB \
+                                                       UINT32_C(0x400)
+       /* 100Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_100GB \
+                                                       UINT32_C(0x800)
+       /* 10Mb link speed (Half-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_10MBHD \
+                                                       UINT32_C(0x1000)
+       /* 10Mb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_SPEEDS_10MB \
+                                                       UINT32_C(0x2000)
+       uint16_t link_partner_adv_speeds;
+
+       /*
+        * The advertised autoneg for the port by the link partner. This field
+        * is deprecated and should be set to 0.
+        */
+               /*
+                * Disable autoneg or autoneg disabled. No speeds are selected.
+                */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_AUTO_MODE_NONE \
+                                                       (UINT32_C(0x0) << 0)
+               /* Select all possible speeds for autoneg mode. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_AUTO_MODE_ALL_SPEEDS\
+                                                       (UINT32_C(0x1) << 0)
+               /*
+                * Select only the auto_link_speed speed for autoneg mode. This
+                * mode has been DEPRECATED. An HWRM client should not use this
+                * mode.
+                */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_AUTO_MODE_ONE_SPEED \
+                                                       (UINT32_C(0x2) << 0)
+               /*
+                * Select the auto_link_speed or any speed below that speed for
+                * autoneg. This mode has been DEPRECATED. An HWRM client should
+                * not use this mode.
+                */
+       #define \
+       HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_AUTO_MODE_ONE_OR_BELOW \
+                                                       (UINT32_C(0x3) << 0)
+               /*
+                * Select the speeds based on the corresponding link speed mask
+                * value that is provided.
+                */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_AUTO_MODE_SPEED_MASK\
+                                                       (UINT32_C(0x4) << 0)
+       uint8_t link_partner_adv_auto_mode;
+
+       /* The advertised pause settings on the port by the link partner. */
+       /*
+        * When this bit is '1', Generation of tx pause messages is supported.
+        * Disabled otherwise.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_PAUSE_TX \
+                                                       UINT32_C(0x1)
+       /*
+        * When this bit is '1', Reception of rx pause messages is supported.
+        * Disabled otherwise.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_PAUSE_RX \
+                                                       UINT32_C(0x2)
+       uint8_t link_partner_adv_pause;
+
+       /*
+        * Current setting for link speed mask that is used to advertise speeds
+        * during autonegotiation when EEE is enabled. This field is valid only
+        * when eee_enabled flags is set to 1. The speeds specified in this
+        * field shall be a subset of speeds specified in auto_link_speed_mask.
+        */
+       /* Reserved */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_ADV_EEE_LINK_SPEED_MASK_RSVD1 \
+                                                       UINT32_C(0x1)
+       /* 100Mb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_ADV_EEE_LINK_SPEED_MASK_100MB \
+                                                       UINT32_C(0x2)
+       /* Reserved */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_ADV_EEE_LINK_SPEED_MASK_RSVD2 \
+                                                       UINT32_C(0x4)
+       /* 1Gb link speed (Full-duplex) */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_ADV_EEE_LINK_SPEED_MASK_1GB \
+                                                       UINT32_C(0x8)
+       /* Reserved */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_ADV_EEE_LINK_SPEED_MASK_RSVD3 \
+                                                       UINT32_C(0x10)
+       /* Reserved */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_ADV_EEE_LINK_SPEED_MASK_RSVD4 \
+                                                       UINT32_C(0x20)
+       /* 10Gb link speed */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_ADV_EEE_LINK_SPEED_MASK_10GB \
+                                                       UINT32_C(0x40)
+       uint16_t adv_eee_link_speed_mask;
+
+       /*
+        * Current setting for link speed mask that is advertised by the link
+        * partner when EEE is enabled. This field is valid only when
+        * eee_enabled flags is set to 1.
+        */
+       /* Reserved */
+       #define \
+       HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_RSVD1 \
+                                                       UINT32_C(0x1)
+       /* 100Mb link speed (Full-duplex) */
+       #define \
+       HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_100MB \
+                                                       UINT32_C(0x2)
+       /* Reserved */
+       #define \
+       HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_RSVD2 \
+                                                       UINT32_C(0x4)
+       /* 1Gb link speed (Full-duplex) */
+       #define \
+       HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_1GB \
+                                                       UINT32_C(0x8)
+       /* Reserved */
+       #define \
+       HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_RSVD3 \
+                                                       UINT32_C(0x10)
+       /* Reserved */
+       #define \
+       HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_RSVD4 \
+                                                       UINT32_C(0x20)
+       /* 10Gb link speed */
+       #define \
+       HWRM_PORT_PHY_QCFG_OUTPUT_LINK_PARTNER_ADV_EEE_LINK_SPEED_MASK_10GB \
+                                                       UINT32_C(0x40)
+       uint16_t link_partner_adv_eee_link_speed_mask;
+
+       /* This value represents transceiver identifier type. */
+       /*
+        * Current setting of TX LPI timer in microseconds. This field is valid
+        * only when_eee_enabled flag is set to 1 and tx_lpi_enabled is set to
+        * 1.
+        */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_TX_LPI_TIMER_MASK \
+                                                       UINT32_C(0xffffff)
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_TX_LPI_TIMER_SFT         0
+       /* This value represents transceiver identifier type. */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_XCVR_IDENTIFIER_TYPE_MASK \
+                                                       UINT32_C(0xff000000)
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_XCVR_IDENTIFIER_TYPE_SFT \
+                                                       24
+               /* Unknown */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_XCVR_IDENTIFIER_TYPE_UNKNOWN \
+                                                       (UINT32_C(0x0) << 24)
+               /* SFP/SFP+/SFP28 */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_XCVR_IDENTIFIER_TYPE_SFP \
+                                                       (UINT32_C(0x3) << 24)
+               /* QSFP */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_XCVR_IDENTIFIER_TYPE_QSFP \
+                                                       (UINT32_C(0xc) << 24)
+               /* QSFP+ */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_XCVR_IDENTIFIER_TYPE_QSFPPLUS \
+                                                       (UINT32_C(0xd) << 24)
+               /* QSFP28 */
+       #define HWRM_PORT_PHY_QCFG_OUTPUT_XCVR_IDENTIFIER_TYPE_QSFP28 \
+                                                       (UINT32_C(0x11) << 24)
+       uint32_t xcvr_identifier_type_tx_lpi_timer;
+
+       uint32_t unused_1;
+
+       /*
+        * Up to 16 bytes of null padded ASCII string representing PHY vendor.
+        * If the string is set to null, then the vendor name is not available.
+        */
+       char phy_vendor_name[16];
+
+       /*
+        * Up to 16 bytes of null padded ASCII string that identifies vendor
+        * specific part number of the PHY. If the string is set to null, then
+        * the vendor specific part number is not available.
+        */
+       char phy_vendor_partnumber[16];
+
+       uint32_t unused_2;
+       uint8_t unused_3;
+       uint8_t unused_4;
+       uint8_t unused_5;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_ver_get */
+/*
+ * Description: This function is called by a driver to determine the HWRM
+ * interface version supported by the HWRM firmware, the version of HWRM
+ * firmware implementation, the name of HWRM firmware, the versions of other
+ * embedded firmwares, and the names of other embedded firmwares, etc. Any
+ * interface or firmware version with major = 0, minor = 0, and update = 0 shall
+ * be considered an invalid version.
+ */
+
+/* Input (24 bytes) */
+struct hwrm_ver_get_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /*
+        * This field represents the major version of HWRM interface
+        * specification supported by the driver HWRM implementation. The
+        * interface major version is intended to change only when non backward
+        * compatible changes are made to the HWRM interface specification.
+        */
+       uint8_t hwrm_intf_maj;
+
+       /*
+        * This field represents the minor version of HWRM interface
+        * specification supported by the driver HWRM implementation. A change
+        * in interface minor version is used to reflect significant backward
+        * compatible modification to HWRM interface specification. This can be
+        * due to addition or removal of functionality. HWRM interface
+        * specifications with the same major version but different minor
+        * versions are compatible.
+        */
+       uint8_t hwrm_intf_min;
+
+       /*
+        * This field represents the update version of HWRM interface
+        * specification supported by the driver HWRM implementation. The
+        * interface update version is used to reflect minor changes or bug
+        * fixes to a released HWRM interface specification.
+        */
+       uint8_t hwrm_intf_upd;
+
+       uint8_t unused_0[5];
+} __attribute__((packed));
+
+/* Output (128 bytes) */
+struct hwrm_ver_get_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
+
+       /*
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
+        */
+       uint16_t resp_len;
+
+       /*
+        * This field represents the major version of HWRM interface
+        * specification supported by the HWRM implementation. The interface
+        * major version is intended to change only when non backward compatible
+        * changes are made to the HWRM interface specification. A HWRM
+        * implementation that is compliant with this specification shall
+        * provide value of 1 in this field.
+        */
+       uint8_t hwrm_intf_maj;
+
+       /*
+        * This field represents the minor version of HWRM interface
+        * specification supported by the HWRM implementation. A change in
+        * interface minor version is used to reflect significant backward
+        * compatible modification to HWRM interface specification. This can be
+        * due to addition or removal of functionality. HWRM interface
+        * specifications with the same major version but different minor
+        * versions are compatible. A HWRM implementation that is compliant with
+        * this specification shall provide value of 0 in this field.
+        */
+       uint8_t hwrm_intf_min;
+
        /*
         * This field represents the update version of HWRM interface
         * specification supported by the HWRM implementation. The interface
@@ -2166,194 +3706,1093 @@ struct hwrm_ver_get_output {
         * compliant with this specification shall provide value of 1 in this
         * field.
         */
-       uint8_t hwrm_intf_upd;
+       uint8_t hwrm_intf_upd;
+
+       uint8_t hwrm_intf_rsvd;
+
+       /*
+        * This field represents the major version of HWRM firmware. A change in
+        * firmware major version represents a major firmware release.
+        */
+       uint8_t hwrm_fw_maj;
+
+       /*
+        * This field represents the minor version of HWRM firmware. A change in
+        * firmware minor version represents significant firmware functionality
+        * changes.
+        */
+       uint8_t hwrm_fw_min;
+
+       /*
+        * This field represents the build version of HWRM firmware. A change in
+        * firmware build version represents bug fixes to a released firmware.
+        */
+       uint8_t hwrm_fw_bld;
+
+       /*
+        * This field is a reserved field. This field can be used to represent
+        * firmware branches or customer specific releases tied to a specific
+        * (major,minor,update) version of the HWRM firmware.
+        */
+       uint8_t hwrm_fw_rsvd;
+
+       /*
+        * This field represents the major version of mgmt firmware. A change in
+        * major version represents a major release.
+        */
+       uint8_t mgmt_fw_maj;
+
+       /*
+        * This field represents the minor version of mgmt firmware. A change in
+        * minor version represents significant functionality changes.
+        */
+       uint8_t mgmt_fw_min;
+
+       /*
+        * This field represents the build version of mgmt firmware. A change in
+        * update version represents bug fixes.
+        */
+       uint8_t mgmt_fw_bld;
+
+       /*
+        * This field is a reserved field. This field can be used to represent
+        * firmware branches or customer specific releases tied to a specific
+        * (major,minor,update) version
+        */
+       uint8_t mgmt_fw_rsvd;
+
+       /*
+        * This field represents the major version of network control firmware.
+        * A change in major version represents a major release.
+        */
+       uint8_t netctrl_fw_maj;
+
+       /*
+        * This field represents the minor version of network control firmware.
+        * A change in minor version represents significant functionality
+        * changes.
+        */
+       uint8_t netctrl_fw_min;
+
+       /*
+        * This field represents the build version of network control firmware.
+        * A change in update version represents bug fixes.
+        */
+       uint8_t netctrl_fw_bld;
+
+       /*
+        * This field is a reserved field. This field can be used to represent
+        * firmware branches or customer specific releases tied to a specific
+        * (major,minor,update) version
+        */
+       uint8_t netctrl_fw_rsvd;
+
+       /*
+        * This field is reserved for future use. The responder should set it to
+        * 0. The requester should ignore this field.
+        */
+       uint32_t reserved1;
+
+       /*
+        * This field represents the major version of RoCE firmware. A change in
+        * major version represents a major release.
+        */
+       uint8_t roce_fw_maj;
+
+       /*
+        * This field represents the minor version of RoCE firmware. A change in
+        * minor version represents significant functionality changes.
+        */
+       uint8_t roce_fw_min;
+
+       /*
+        * This field represents the build version of RoCE firmware. A change in
+        * update version represents bug fixes.
+        */
+       uint8_t roce_fw_bld;
+
+       /*
+        * This field is a reserved field. This field can be used to represent
+        * firmware branches or customer specific releases tied to a specific
+        * (major,minor,update) version
+        */
+       uint8_t roce_fw_rsvd;
+
+       /*
+        * This field represents the name of HWRM FW (ASCII chars without NULL
+        * at the end).
+        */
+       char hwrm_fw_name[16];
+
+       /*
+        * This field represents the name of mgmt FW (ASCII chars without NULL
+        * at the end).
+        */
+       char mgmt_fw_name[16];
+
+       /*
+        * This field represents the name of network control firmware (ASCII
+        * chars without NULL at the end).
+        */
+       char netctrl_fw_name[16];
+
+       /*
+        * This field is reserved for future use. The responder should set it to
+        * 0. The requester should ignore this field.
+        */
+       uint32_t reserved2[4];
+
+       /*
+        * This field represents the name of RoCE FW (ASCII chars without NULL
+        * at the end).
+        */
+       char roce_fw_name[16];
+
+       /* This field returns the chip number. */
+       uint16_t chip_num;
+
+       /* This field returns the revision of chip. */
+       uint8_t chip_rev;
+
+       /* This field returns the chip metal number. */
+       uint8_t chip_metal;
+
+       /* This field returns the bond id of the chip. */
+       uint8_t chip_bond_id;
+
+       /*
+        * This value indicates the type of platform used for chip
+        * implementation.
+        */
+       /* ASIC */
+       #define HWRM_VER_GET_OUTPUT_CHIP_PLATFORM_TYPE_ASIC \
+                                                       (UINT32_C(0x0) << 0)
+       /* FPGA platform of the chip. */
+       #define HWRM_VER_GET_OUTPUT_CHIP_PLATFORM_TYPE_FPGA \
+                                                       (UINT32_C(0x1) << 0)
+       /* Palladium platform of the chip. */
+       #define HWRM_VER_GET_OUTPUT_CHIP_PLATFORM_TYPE_PALLADIUM \
+                                                       (UINT32_C(0x2) << 0)
+       uint8_t chip_platform_type;
+
+       /*
+        * This field returns the maximum value of request window that is
+        * supported by the HWRM. The request window is mapped into device
+        * address space using MMIO.
+        */
+       uint16_t max_req_win_len;
+
+       /*
+        * This field returns the maximum value of response buffer in bytes. If
+        * a request specifies the response buffer length that is greater than
+        * this value, then the HWRM should fail it. The value of this field
+        * shall be 4KB or more.
+        */
+       uint16_t max_resp_len;
+
+       /*
+        * This field returns the default request timeout value in milliseconds.
+        */
+       uint16_t def_req_timeout;
+
+       uint8_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_queue_qportcfg */
+/*
+ * Description: This function is called by a driver to query queue configuration
+ * of a port. # The HWRM shall at least advertise one queue with lossy service
+ * profile. # The driver shall use this command to query queue ids before
+ * configuring or using any queues. # If a service profile is not set for a
+ * queue, then the driver shall not use that queue without configuring a service
+ * profile for it. # If the driver is not allowed to configure service profiles,
+ * then the driver shall only use queues for which service profiles are pre-
+ * configured.
+ */
+
+/* Input (24 bytes) */
+struct hwrm_queue_qportcfg_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /*
+        * Enumeration denoting the RX, TX type of the resource. This
+        * enumeration is used for resources that are similar for both TX and RX
+        * paths of the chip.
+        */
+       #define HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH \
+                                                       UINT32_C(0x1)
+               /* tx path */
+       #define HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_TX \
+                                                       (UINT32_C(0x0) << 0)
+               /* rx path */
+       #define HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_RX \
+                                                       (UINT32_C(0x1) << 0)
+       #define HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_LAST \
+                                       HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_RX
+       uint32_t flags;
+
+       /*
+        * Port ID of port for which the queue configuration is being queried.
+        * This field is only required when sent by IPC.
+        */
+       uint16_t port_id;
+
+       uint16_t unused_0;
+} __attribute__((packed));
+
+/* hwrm_ring_alloc */
+/*
+ * Description: This command allocates and does basic preparation for a ring.
+ */
+
+/* Input (80 bytes) */
+struct hwrm_ring_alloc_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /* This bit must be '1' for the Reserved1 field to be configured. */
+       #define HWRM_RING_ALLOC_INPUT_ENABLES_RESERVED1         UINT32_C(0x1)
+       /* This bit must be '1' for the Reserved2 field to be configured. */
+       #define HWRM_RING_ALLOC_INPUT_ENABLES_RESERVED2         UINT32_C(0x2)
+       /* This bit must be '1' for the Reserved3 field to be configured. */
+       #define HWRM_RING_ALLOC_INPUT_ENABLES_RESERVED3         UINT32_C(0x4)
+       /*
+        * This bit must be '1' for the stat_ctx_id_valid field to be
+        * configured.
+        */
+       #define HWRM_RING_ALLOC_INPUT_ENABLES_STAT_CTX_ID_VALID UINT32_C(0x8)
+       /* This bit must be '1' for the Reserved4 field to be configured. */
+       #define HWRM_RING_ALLOC_INPUT_ENABLES_RESERVED4         UINT32_C(0x10)
+       /* This bit must be '1' for the max_bw_valid field to be configured. */
+       #define HWRM_RING_ALLOC_INPUT_ENABLES_MAX_BW_VALID      UINT32_C(0x20)
+       uint32_t enables;
+
+       /* Ring Type. */
+               /* Completion Ring (CR) */
+       #define HWRM_RING_ALLOC_INPUT_RING_TYPE_CMPL    (UINT32_C(0x0) << 0)
+               /* TX Ring (TR) */
+       #define HWRM_RING_ALLOC_INPUT_RING_TYPE_TX      (UINT32_C(0x1) << 0)
+               /* RX Ring (RR) */
+       #define HWRM_RING_ALLOC_INPUT_RING_TYPE_RX      (UINT32_C(0x2) << 0)
+       uint8_t ring_type;
+
+       uint8_t unused_0;
+       uint16_t unused_1;
+
+       /* This value is a pointer to the page table for the Ring. */
+       uint64_t page_tbl_addr;
+
+       /* First Byte Offset of the first entry in the first page. */
+       uint32_t fbo;
+
+       /*
+        * Actual page size in 2^page_size. The supported range is increments in
+        * powers of 2 from 16 bytes to 1GB. - 4 = 16 B Page size is 16 B. - 12
+        * = 4 KB Page size is 4 KB. - 13 = 8 KB Page size is 8 KB. - 16 = 64 KB
+        * Page size is 64 KB. - 22 = 2 MB Page size is 2 MB. - 23 = 4 MB Page
+        * size is 4 MB. - 31 = 1 GB Page size is 1 GB.
+        */
+       uint8_t page_size;
+
+       /*
+        * This value indicates the depth of page table. For this version of the
+        * specification, value other than 0 or 1 shall be considered as an
+        * invalid value. When the page_tbl_depth = 0, then it is treated as a
+        * special case with the following. 1. FBO and page size fields are not
+        * valid. 2. page_tbl_addr is the physical address of the first element
+        * of the ring.
+        */
+       uint8_t page_tbl_depth;
+
+       uint8_t unused_2;
+       uint8_t unused_3;
+
+       /*
+        * Number of 16B units in the ring. Minimum size for a ring is 16 16B
+        * entries.
+        */
+       uint32_t length;
+
+       /*
+        * Logical ring number for the ring to be allocated. This value
+        * determines the position in the doorbell area where the update to the
+        * ring will be made. For completion rings, this value is also the MSI-X
+        * vector number for the function the completion ring is associated
+        * with.
+        */
+       uint16_t logical_id;
+
+       /*
+        * This field is used only when ring_type is a TX ring. This value
+        * indicates what completion ring the TX ring is associated with.
+        */
+       uint16_t cmpl_ring_id;
+
+       /*
+        * This field is used only when ring_type is a TX ring. This value
+        * indicates what CoS queue the TX ring is associated with.
+        */
+       uint16_t queue_id;
+
+       uint8_t unused_4;
+       uint8_t unused_5;
+
+       /* This field is reserved for the future use. It shall be set to 0. */
+       uint32_t reserved1;
+       /* This field is reserved for the future use. It shall be set to 0. */
+       uint16_t reserved2;
+
+       uint8_t unused_6;
+       uint8_t unused_7;
+       /* This field is reserved for the future use. It shall be set to 0. */
+       uint32_t reserved3;
+
+       /*
+        * This field is used only when ring_type is a TX ring. This input
+        * indicates what statistics context this ring should be associated
+        * with.
+        */
+       uint32_t stat_ctx_id;
+
+       /* This field is reserved for the future use. It shall be set to 0. */
+       uint32_t reserved4;
+
+       /*
+        * This field is used only when ring_type is a TX ring. Maximum BW
+        * allocated to this TX ring in Mbps. The HWRM will translate this value
+        * into byte counter and time interval used for this ring inside the
+        * device.
+        */
+       uint32_t max_bw;
+
+       /*
+        * This field is used only when ring_type is a Completion ring. This
+        * value indicates what interrupt mode should be used on this completion
+        * ring. Note: In the legacy interrupt mode, no more than 16 completion
+        * rings are allowed.
+        */
+               /* Legacy INTA */
+       #define HWRM_RING_ALLOC_INPUT_INT_MODE_LEGACY   (UINT32_C(0x0) << 0)
+               /* Reserved */
+       #define HWRM_RING_ALLOC_INPUT_INT_MODE_RSVD     (UINT32_C(0x1) << 0)
+               /* MSI-X */
+       #define HWRM_RING_ALLOC_INPUT_INT_MODE_MSIX     (UINT32_C(0x2) << 0)
+               /* No Interrupt - Polled mode */
+       #define HWRM_RING_ALLOC_INPUT_INT_MODE_POLL     (UINT32_C(0x3) << 0)
+       uint8_t int_mode;
+
+       uint8_t unused_8[3];
+} __attribute__((packed));
+
+/* Output (16 bytes) */
+
+struct hwrm_ring_alloc_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
+
+       /*
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
+        */
+       uint16_t resp_len;
+
+       /* Physical number of ring allocated. */
+       uint16_t ring_id;
+
+       /* Logical number of ring allocated. */
+       uint16_t logical_ring_id;
+
+       uint8_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_ring_free */
+/*
+ * Description: This command is used to free a ring and associated resources.
+ */
+/* Input (24 bytes) */
+
+struct hwrm_ring_free_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
 
-       uint8_t hwrm_intf_rsvd;
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /* Ring Type. */
+               /* Completion Ring (CR) */
+       #define HWRM_RING_FREE_INPUT_RING_TYPE_CMPL     (UINT32_C(0x0) << 0)
+               /* TX Ring (TR) */
+       #define HWRM_RING_FREE_INPUT_RING_TYPE_TX       (UINT32_C(0x1) << 0)
+               /* RX Ring (RR) */
+       #define HWRM_RING_FREE_INPUT_RING_TYPE_RX       (UINT32_C(0x2) << 0)
+       uint8_t ring_type;
+
+       uint8_t unused_0;
 
+       /* Physical number of ring allocated. */
+       uint16_t ring_id;
+
+       uint32_t unused_1;
+} __attribute__((packed));
+
+/* Output (16 bytes) */
+struct hwrm_ring_free_output {
        /*
-        * This field represents the major version of HWRM firmware. A change in
-        * firmware major version represents a major firmware release.
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
         */
-       uint8_t hwrm_fw_maj;
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
 
        /*
-        * This field represents the minor version of HWRM firmware. A change in
-        * firmware minor version represents significant firmware functionality
-        * changes.
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
         */
-       uint8_t hwrm_fw_min;
+       uint16_t resp_len;
+
+       uint32_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+       uint8_t unused_3;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_ring_grp_alloc */
+/*
+ * Description: This API allocates and does basic preparation for a ring group.
+ */
+
+/* Input (24 bytes) */
+struct hwrm_ring_grp_alloc_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /* This value identifies the CR associated with the ring group. */
+       uint16_t cr;
+
+       /* This value identifies the main RR associated with the ring group. */
+       uint16_t rr;
+
+       /*
+        * This value identifies the aggregation RR associated with the ring
+        * group. If this value is 0xFF... (All Fs), then no Aggregation ring
+        * will be set.
+        */
+       uint16_t ar;
+
+       /*
+        * This value identifies the statistics context associated with the ring
+        * group.
+        */
+       uint16_t sc;
+} __attribute__((packed));
+
+/* Output (16 bytes) */
+struct hwrm_ring_grp_alloc_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
+
+       /*
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
+        */
+       uint16_t resp_len;
+
+       /*
+        * This is the ring group ID value. Use this value to program the
+        * default ring group for the VNIC or as table entries in an RSS/COS
+        * context.
+        */
+       uint32_t ring_group_id;
+
+       uint8_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_ring_grp_free */
+/*
+ * Description: This API frees a ring group and associated resources. # If a
+ * ring in the ring group is reset or free, then the associated rings in the
+ * ring group shall also be reset/free using hwrm_ring_free. # A function driver
+ * shall always use hwrm_ring_grp_free after freeing all rings in a group. # As
+ * a part of executing this command, the HWRM shall reset all associated ring
+ * group resources.
+ */
+
+/* Input (24 bytes) */
+struct hwrm_ring_grp_free_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /* This is the ring group ID value. */
+       uint32_t ring_group_id;
+
+       uint32_t unused_0;
+} __attribute__((packed));
+
+/* Output (16 bytes) */
+struct hwrm_ring_grp_free_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
+
+       /*
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
+        */
+       uint16_t resp_len;
+
+       uint32_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+       uint8_t unused_3;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_stat_ctx_alloc */
+/*
+ * Description: This command allocates and does basic preparation for a stat
+ * context.
+ */
+
+/* Input (32 bytes) */
+struct hwrm_stat_ctx_alloc_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /* This is the address for statistic block. */
+       uint64_t stats_dma_addr;
+
+       /*
+        * The statistic block update period in ms. e.g. 250ms, 500ms, 750ms,
+        * 1000ms.
+        */
+       uint32_t update_period_ms;
+
+       uint32_t unused_0;
+} __attribute__((packed));
+
+/* Output (16 bytes) */
+struct hwrm_stat_ctx_alloc_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
 
        /*
-        * This field represents the build version of HWRM firmware. A change in
-        * firmware build version represents bug fixes to a released firmware.
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
         */
-       uint8_t hwrm_fw_bld;
+       uint16_t resp_len;
 
-       /*
-        * This field is a reserved field. This field can be used to represent
-        * firmware branches or customer specific releases tied to a specific
-        * (major,minor,update) version of the HWRM firmware.
-        */
-       uint8_t hwrm_fw_rsvd;
+       /* This is the statistics context ID value. */
+       uint32_t stat_ctx_id;
 
-       /*
-        * This field represents the major version of mgmt firmware. A change in
-        * major version represents a major release.
-        */
-       uint8_t mgmt_fw_maj;
+       uint8_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
 
        /*
-        * This field represents the minor version of mgmt firmware. A change in
-        * minor version represents significant functionality changes.
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
         */
-       uint8_t mgmt_fw_min;
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_stat_ctx_clr_stats */
+/* Description: This command clears statistics of a context. */
 
+/* Input (24 bytes) */
+struct hwrm_stat_ctx_clr_stats_input {
        /*
-        * This field represents the build version of mgmt firmware. A change in
-        * update version represents bug fixes.
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
         */
-       uint8_t mgmt_fw_bld;
+       uint16_t req_type;
 
        /*
-        * This field is a reserved field. This field can be used to represent
-        * firmware branches or customer specific releases tied to a specific
-        * (major,minor,update) version
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
         */
-       uint8_t mgmt_fw_rsvd;
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
 
        /*
-        * This field represents the major version of network control firmware.
-        * A change in major version represents a major release.
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
         */
-       uint8_t netctrl_fw_maj;
+       uint16_t target_id;
 
        /*
-        * This field represents the minor version of network control firmware.
-        * A change in minor version represents significant functionality
-        * changes.
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
         */
-       uint8_t netctrl_fw_min;
+       uint64_t resp_addr;
+
+       /* ID of the statistics context that is being queried. */
+       uint32_t stat_ctx_id;
+
+       uint32_t unused_0;
+} __attribute__((packed));
 
+/* Output (16 bytes) */
+struct hwrm_stat_ctx_clr_stats_output {
        /*
-        * This field represents the build version of network control firmware.
-        * A change in update version represents bug fixes.
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
         */
-       uint8_t netctrl_fw_bld;
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
 
        /*
-        * This field is a reserved field. This field can be used to represent
-        * firmware branches or customer specific releases tied to a specific
-        * (major,minor,update) version
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
         */
-       uint8_t netctrl_fw_rsvd;
+       uint16_t resp_len;
+
+       uint32_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+       uint8_t unused_3;
 
        /*
-        * This field is reserved for future use. The responder should set it to
-        * 0. The requester should ignore this field.
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
         */
-       uint32_t reserved1;
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_stat_ctx_free */
+/* Description: This command is used to free a stat context. */
+/* Input (24 bytes) */
 
+struct hwrm_stat_ctx_free_input {
        /*
-        * This field represents the major version of RoCE firmware. A change in
-        * major version represents a major release.
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
         */
-       uint8_t roce_fw_maj;
+       uint16_t req_type;
 
        /*
-        * This field represents the minor version of RoCE firmware. A change in
-        * minor version represents significant functionality changes.
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
         */
-       uint8_t roce_fw_min;
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
 
        /*
-        * This field represents the build version of RoCE firmware. A change in
-        * update version represents bug fixes.
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
         */
-       uint8_t roce_fw_bld;
+       uint16_t target_id;
 
        /*
-        * This field is a reserved field. This field can be used to represent
-        * firmware branches or customer specific releases tied to a specific
-        * (major,minor,update) version
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
         */
-       uint8_t roce_fw_rsvd;
+       uint64_t resp_addr;
+
+       /* ID of the statistics context that is being queried. */
+       uint32_t stat_ctx_id;
+
+       uint32_t unused_0;
+} __attribute__((packed));
+
+/* Output (16 bytes) */
 
+struct hwrm_stat_ctx_free_output {
        /*
-        * This field represents the name of HWRM FW (ASCII chars without NULL
-        * at the end).
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
         */
-       char hwrm_fw_name[16];
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
 
        /*
-        * This field represents the name of mgmt FW (ASCII chars without NULL
-        * at the end).
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
         */
-       char mgmt_fw_name[16];
+       uint16_t resp_len;
+
+       /* This is the statistics context ID value. */
+       uint32_t stat_ctx_id;
+
+       uint8_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
 
        /*
-        * This field represents the name of network control firmware (ASCII
-        * chars without NULL at the end).
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
         */
-       char netctrl_fw_name[16];
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_vnic_alloc */
+/*
+ * Description: This VNIC is a resource in the RX side of the chip that is used
+ * to represent a virtual host "interface". # At the time of VNIC allocation or
+ * configuration, the function can specify whether it wants the requested VNIC
+ * to be the default VNIC for the function or not. # If a function requests
+ * allocation of a VNIC for the first time and a VNIC is successfully allocated
+ * by the HWRM, then the HWRM shall make the allocated VNIC as the default VNIC
+ * for that function. # The default VNIC shall be used for the default action
+ * for a partition or function. # For each VNIC allocated on a function, a
+ * mapping on the RX side to map the allocated VNIC to source virtual interface
+ * shall be performed by the HWRM. This should be hidden to the function driver
+ * requesting the VNIC allocation. This enables broadcast/multicast replication
+ * with source knockout. # If multicast replication with source knockout is
+ * enabled, then the internal VNIC to SVIF mapping data structures shall be
+ * programmed at the time of VNIC allocation.
+ */
 
+/* Input (24 bytes) */
+struct hwrm_vnic_alloc_input {
        /*
-        * This field is reserved for future use. The responder should set it to
-        * 0. The requester should ignore this field.
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
         */
-       uint32_t reserved2[4];
+       uint16_t req_type;
 
        /*
-        * This field represents the name of RoCE FW (ASCII chars without NULL
-        * at the end).
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
         */
-       char roce_fw_name[16];
-
-       /* This field returns the chip number. */
-       uint16_t chip_num;
-
-       /* This field returns the revision of chip. */
-       uint8_t chip_rev;
-
-       /* This field returns the chip metal number. */
-       uint8_t chip_metal;
+       uint16_t cmpl_ring;
 
-       /* This field returns the bond id of the chip. */
-       uint8_t chip_bond_id;
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
 
        /*
-        * This value indicates the type of platform used for chip
-        * implementation.
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
         */
-       /* ASIC */
-       #define HWRM_VER_GET_OUTPUT_CHIP_PLATFORM_TYPE_ASIC \
-                                                       (UINT32_C(0x0) << 0)
-       /* FPGA platform of the chip. */
-       #define HWRM_VER_GET_OUTPUT_CHIP_PLATFORM_TYPE_FPGA \
-                                                       (UINT32_C(0x1) << 0)
-       /* Palladium platform of the chip. */
-       #define HWRM_VER_GET_OUTPUT_CHIP_PLATFORM_TYPE_PALLADIUM \
-                                                       (UINT32_C(0x2) << 0)
-       uint8_t chip_platform_type;
+       uint16_t target_id;
 
        /*
-        * This field returns the maximum value of request window that is
-        * supported by the HWRM. The request window is mapped into device
-        * address space using MMIO.
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
         */
-       uint16_t max_req_win_len;
+       uint64_t resp_addr;
 
        /*
-        * This field returns the maximum value of response buffer in bytes. If
-        * a request specifies the response buffer length that is greater than
-        * this value, then the HWRM should fail it. The value of this field
-        * shall be 4KB or more.
+        * When this bit is '1', this VNIC is requested to be the default VNIC
+        * for this function.
+        */
+       #define HWRM_VNIC_ALLOC_INPUT_FLAGS_DEFAULT                UINT32_C(0x1)
+       uint32_t flags;
+
+       uint32_t unused_0;
+} __attribute__((packed));
+
+/* Output (16 bytes) */
+struct hwrm_vnic_alloc_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
         */
-       uint16_t max_resp_len;
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
 
        /*
-        * This field returns the default request timeout value in milliseconds.
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
         */
-       uint16_t def_req_timeout;
+       uint16_t resp_len;
+
+       /* Logical vnic ID */
+       uint32_t vnic_id;
 
        uint8_t unused_0;
        uint8_t unused_1;
@@ -2369,20 +4808,11 @@ struct hwrm_ver_get_output {
        uint8_t valid;
 } __attribute__((packed));
 
-/* hwrm_queue_qportcfg */
-/*
- * Description: This function is called by a driver to query queue configuration
- * of a port. # The HWRM shall at least advertise one queue with lossy service
- * profile. # The driver shall use this command to query queue ids before
- * configuring or using any queues. # If a service profile is not set for a
- * queue, then the driver shall not use that queue without configuring a service
- * profile for it. # If the driver is not allowed to configure service profiles,
- * then the driver shall only use queues for which service profiles are pre-
- * configured.
- */
+/* hwrm_vnic_cfg */
+/* Description: Configure the RX VNIC structure. */
 
-/* Input (24 bytes) */
-struct hwrm_queue_qportcfg_input {
+/* Input (40 bytes) */
+struct hwrm_vnic_cfg_input {
        /*
         * This value indicates what type of request this is. The format for the
         * rest of the command is determined by this field.
@@ -2414,36 +4844,133 @@ struct hwrm_queue_qportcfg_input {
        uint64_t resp_addr;
 
        /*
-        * Enumeration denoting the RX, TX type of the resource. This
-        * enumeration is used for resources that are similar for both TX and RX
-        * paths of the chip.
+        * When this bit is '1', the VNIC is requested to be the default VNIC
+        * for the function.
         */
-       #define HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH \
-                                                       UINT32_C(0x1)
-               /* tx path */
-       #define HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_TX \
-                                                       (UINT32_C(0x0) << 0)
-               /* rx path */
-       #define HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_RX \
-                                                       (UINT32_C(0x1) << 0)
-       #define HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_LAST \
-                                       HWRM_QUEUE_QPORTCFG_INPUT_FLAGS_PATH_RX
+       #define HWRM_VNIC_CFG_INPUT_FLAGS_DEFAULT               UINT32_C(0x1)
+       /*
+        * When this bit is '1', the VNIC is being configured to strip VLAN in
+        * the RX path. If set to '0', then VLAN stripping is disabled on this
+        * VNIC.
+        */
+       #define HWRM_VNIC_CFG_INPUT_FLAGS_VLAN_STRIP_MODE       UINT32_C(0x2)
+       /*
+        * When this bit is '1', the VNIC is being configured to buffer receive
+        * packets in the hardware until the host posts new receive buffers. If
+        * set to '0', then bd_stall is being configured to be disabled on this
+        * VNIC.
+        */
+       #define HWRM_VNIC_CFG_INPUT_FLAGS_BD_STALL_MODE         UINT32_C(0x4)
+       /*
+        * When this bit is '1', the VNIC is being configured to receive both
+        * RoCE and non-RoCE traffic. If set to '0', then this VNIC is not
+        * configured to be operating in dual VNIC mode.
+        */
+       #define HWRM_VNIC_CFG_INPUT_FLAGS_ROCE_DUAL_VNIC_MODE   UINT32_C(0x8)
+       /*
+        * When this flag is set to '1', the VNIC is requested to be configured
+        * to receive only RoCE traffic. If this flag is set to '0', then this
+        * flag shall be ignored by the HWRM. If roce_dual_vnic_mode flag is set
+        * to '1', then the HWRM client shall not set this flag to '1'.
+        */
+       #define HWRM_VNIC_CFG_INPUT_FLAGS_ROCE_ONLY_VNIC_MODE   UINT32_C(0x10)
        uint32_t flags;
 
+       /* This bit must be '1' for the dflt_ring_grp field to be configured. */
+       #define HWRM_VNIC_CFG_INPUT_ENABLES_DFLT_RING_GRP       UINT32_C(0x1)
+       /* This bit must be '1' for the rss_rule field to be configured. */
+       #define HWRM_VNIC_CFG_INPUT_ENABLES_RSS_RULE            UINT32_C(0x2)
+       /* This bit must be '1' for the cos_rule field to be configured. */
+       #define HWRM_VNIC_CFG_INPUT_ENABLES_COS_RULE            UINT32_C(0x4)
+       /* This bit must be '1' for the lb_rule field to be configured. */
+       #define HWRM_VNIC_CFG_INPUT_ENABLES_LB_RULE             UINT32_C(0x8)
+       /* This bit must be '1' for the mru field to be configured. */
+       #define HWRM_VNIC_CFG_INPUT_ENABLES_MRU                 UINT32_C(0x10)
+       uint32_t enables;
+
+       /* Logical vnic ID */
+       uint16_t vnic_id;
+
        /*
-        * Port ID of port for which the queue configuration is being queried.
-        * This field is only required when sent by IPC.
+        * Default Completion ring for the VNIC. This ring will be chosen if
+        * packet does not match any RSS rules and if there is no COS rule.
         */
-       uint16_t port_id;
+       uint16_t dflt_ring_grp;
 
-       uint16_t unused_0;
+       /*
+        * RSS ID for RSS rule/table structure. 0xFF... (All Fs) if there is no
+        * RSS rule.
+        */
+       uint16_t rss_rule;
+
+       /*
+        * RSS ID for COS rule/table structure. 0xFF... (All Fs) if there is no
+        * COS rule.
+        */
+       uint16_t cos_rule;
+
+       /*
+        * RSS ID for load balancing rule/table structure. 0xFF... (All Fs) if
+        * there is no LB rule.
+        */
+       uint16_t lb_rule;
+
+       /*
+        * The maximum receive unit of the vnic. Each vnic is associated with a
+        * function. The vnic mru value overwrites the mru setting of the
+        * associated function. The HWRM shall make sure that vnic mru does not
+        * exceed the mru of the port the function is associated with.
+        */
+       uint16_t mru;
+
+       uint32_t unused_0;
 } __attribute__((packed));
 
-/* hwrm_stat_ctx_clr_stats */
-/* Description: This command clears statistics of a context. */
+/* Output (16 bytes) */
+struct hwrm_vnic_cfg_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
+
+       /*
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
+        */
+       uint16_t resp_len;
+
+       uint32_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+       uint8_t unused_3;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_vnic_free */
+/*
+ * Description: Free a VNIC resource. Idle any resources associated with the
+ * VNIC as well as the VNIC. Reset and release all resources associated with the
+ * VNIC.
+ */
 
 /* Input (24 bytes) */
-struct hwrm_stat_ctx_clr_stats_input {
+struct hwrm_vnic_free_input {
        /*
         * This value indicates what type of request this is. The format for the
         * rest of the command is determined by this field.
@@ -2474,14 +5001,14 @@ struct hwrm_stat_ctx_clr_stats_input {
         */
        uint64_t resp_addr;
 
-       /* ID of the statistics context that is being queried. */
-       uint32_t stat_ctx_id;
+       /* Logical vnic ID */
+       uint32_t vnic_id;
 
        uint32_t unused_0;
 } __attribute__((packed));
 
 /* Output (16 bytes) */
-struct hwrm_stat_ctx_clr_stats_output {
+struct hwrm_vnic_free_output {
        /*
         * Pass/Fail or error type Note: receiver to verify the in parameters,
         * and fail the call with an error when appropriate
@@ -2637,6 +5164,157 @@ struct hwrm_vnic_rss_cfg_output {
        uint8_t valid;
 } __attribute__((packed));
 
+/* Input (16 bytes) */
+struct hwrm_vnic_rss_cos_lb_ctx_alloc_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+} __attribute__((packed));
+
+/* Output (16 bytes) */
+
+struct hwrm_vnic_rss_cos_lb_ctx_alloc_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
+
+       /*
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
+        */
+       uint16_t resp_len;
+
+       /* rss_cos_lb_ctx_id is 16 b */
+       uint16_t rss_cos_lb_ctx_id;
+
+       uint8_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+       uint8_t unused_3;
+       uint8_t unused_4;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
+/* hwrm_vnic_rss_cos_lb_ctx_free */
+/* Description: This function can be used to free COS/Load Balance context. */
+/* Input (24 bytes) */
+
+struct hwrm_vnic_rss_cos_lb_ctx_free_input {
+       /*
+        * This value indicates what type of request this is. The format for the
+        * rest of the command is determined by this field.
+        */
+       uint16_t req_type;
+
+       /*
+        * This value indicates the what completion ring the request will be
+        * optionally completed on. If the value is -1, then no CR completion
+        * will be generated. Any other value must be a valid CR ring_id value
+        * for this function.
+        */
+       uint16_t cmpl_ring;
+
+       /* This value indicates the command sequence number. */
+       uint16_t seq_id;
+
+       /*
+        * Target ID of this command. 0x0 - 0xFFF8 - Used for function ids
+        * 0xFFF8 - 0xFFFE - Reserved for internal processors 0xFFFF - HWRM
+        */
+       uint16_t target_id;
+
+       /*
+        * This is the host address where the response will be written when the
+        * request is complete. This area must be 16B aligned and must be
+        * cleared to zero before the request is made.
+        */
+       uint64_t resp_addr;
+
+       /* rss_cos_lb_ctx_id is 16 b */
+       uint16_t rss_cos_lb_ctx_id;
+
+       uint16_t unused_0[3];
+} __attribute__((packed));
+
+/* Output (16 bytes) */
+struct hwrm_vnic_rss_cos_lb_ctx_free_output {
+       /*
+        * Pass/Fail or error type Note: receiver to verify the in parameters,
+        * and fail the call with an error when appropriate
+        */
+       uint16_t error_code;
+
+       /* This field returns the type of original request. */
+       uint16_t req_type;
+
+       /* This field provides original sequence number of the command. */
+       uint16_t seq_id;
+
+       /*
+        * This field is the length of the response in bytes. The last byte of
+        * the response is a valid flag that will read as '1' when the command
+        * has been completely written to memory.
+        */
+       uint16_t resp_len;
+
+       uint32_t unused_0;
+       uint8_t unused_1;
+       uint8_t unused_2;
+       uint8_t unused_3;
+
+       /*
+        * This field is used in Output records to indicate that the output is
+        * completely written to RAM. This field should be read as '1' to
+        * indicate that the output has been completely written. When writing a
+        * command completion or response to an internal processor, the order of
+        * writes has to be such that this field is written last.
+        */
+       uint8_t valid;
+} __attribute__((packed));
+
 /* Output (32 bytes) */
 struct hwrm_queue_qportcfg_output {
        /*