Commit 1b897e7d authored by Shannon Nelson's avatar Shannon Nelson Committed by David S. Miller

ionic: interface file updates

Add some new interface values and update a few more descriptions.
Signed-off-by: default avatarShannon Nelson <snelson@pensando.io>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6a6014e2
...@@ -59,6 +59,8 @@ enum ionic_cmd_opcode { ...@@ -59,6 +59,8 @@ enum ionic_cmd_opcode {
IONIC_CMD_QOS_CLASS_INIT = 241, IONIC_CMD_QOS_CLASS_INIT = 241,
IONIC_CMD_QOS_CLASS_RESET = 242, IONIC_CMD_QOS_CLASS_RESET = 242,
IONIC_CMD_QOS_CLASS_UPDATE = 243, IONIC_CMD_QOS_CLASS_UPDATE = 243,
IONIC_CMD_QOS_CLEAR_STATS = 244,
IONIC_CMD_QOS_RESET = 245,
/* Firmware commands */ /* Firmware commands */
IONIC_CMD_FW_DOWNLOAD = 254, IONIC_CMD_FW_DOWNLOAD = 254,
...@@ -90,8 +92,8 @@ enum ionic_status_code { ...@@ -90,8 +92,8 @@ enum ionic_status_code {
IONIC_RC_DEV_CMD = 18, /* Device cmd attempted on AdminQ */ IONIC_RC_DEV_CMD = 18, /* Device cmd attempted on AdminQ */
IONIC_RC_ENOSUPP = 19, /* Operation not supported */ IONIC_RC_ENOSUPP = 19, /* Operation not supported */
IONIC_RC_ERROR = 29, /* Generic error */ IONIC_RC_ERROR = 29, /* Generic error */
IONIC_RC_ERDMA = 30, /* Generic RDMA error */ IONIC_RC_ERDMA = 30, /* Generic RDMA error */
IONIC_RC_EVFID = 31, /* VF ID does not exist */
}; };
enum ionic_notifyq_opcode { enum ionic_notifyq_opcode {
...@@ -103,7 +105,7 @@ enum ionic_notifyq_opcode { ...@@ -103,7 +105,7 @@ enum ionic_notifyq_opcode {
}; };
/** /**
* struct cmd - General admin command format * struct ionic_admin_cmd - General admin command format
* @opcode: Opcode for the command * @opcode: Opcode for the command
* @lif_index: LIF index * @lif_index: LIF index
* @cmd_data: Opcode-specific command bytes * @cmd_data: Opcode-specific command bytes
...@@ -167,7 +169,7 @@ struct ionic_dev_init_cmd { ...@@ -167,7 +169,7 @@ struct ionic_dev_init_cmd {
}; };
/** /**
* struct init_comp - Device init command completion * struct ionic_dev_init_comp - Device init command completion
* @status: Status of the command (enum ionic_status_code) * @status: Status of the command (enum ionic_status_code)
*/ */
struct ionic_dev_init_comp { struct ionic_dev_init_comp {
...@@ -185,7 +187,7 @@ struct ionic_dev_reset_cmd { ...@@ -185,7 +187,7 @@ struct ionic_dev_reset_cmd {
}; };
/** /**
* struct reset_comp - Reset command completion * struct ionic_dev_reset_comp - Reset command completion
* @status: Status of the command (enum ionic_status_code) * @status: Status of the command (enum ionic_status_code)
*/ */
struct ionic_dev_reset_comp { struct ionic_dev_reset_comp {
...@@ -357,12 +359,12 @@ struct ionic_lif_logical_qtype { ...@@ -357,12 +359,12 @@ struct ionic_lif_logical_qtype {
* enum ionic_lif_state - LIF state * enum ionic_lif_state - LIF state
* @IONIC_LIF_DISABLE: LIF disabled * @IONIC_LIF_DISABLE: LIF disabled
* @IONIC_LIF_ENABLE: LIF enabled * @IONIC_LIF_ENABLE: LIF enabled
* @IONIC_LIF_HANG_RESET: LIF hung, being reset * @IONIC_LIF_QUIESCE: LIF Quiesced
*/ */
enum ionic_lif_state { enum ionic_lif_state {
IONIC_LIF_DISABLE = 0, IONIC_LIF_QUIESCE = 0,
IONIC_LIF_ENABLE = 1, IONIC_LIF_ENABLE = 1,
IONIC_LIF_HANG_RESET = 2, IONIC_LIF_DISABLE = 2,
}; };
/** /**
...@@ -371,6 +373,7 @@ enum ionic_lif_state { ...@@ -371,6 +373,7 @@ enum ionic_lif_state {
* @name: LIF name * @name: LIF name
* @mtu: MTU * @mtu: MTU
* @mac: Station MAC address * @mac: Station MAC address
* @vlan: Default Vlan ID
* @features: Features (enum ionic_eth_hw_features) * @features: Features (enum ionic_eth_hw_features)
* @queue_count: Queue counts per queue-type * @queue_count: Queue counts per queue-type
*/ */
...@@ -381,7 +384,7 @@ union ionic_lif_config { ...@@ -381,7 +384,7 @@ union ionic_lif_config {
char name[IONIC_IFNAMSIZ]; char name[IONIC_IFNAMSIZ];
__le32 mtu; __le32 mtu;
u8 mac[6]; u8 mac[6];
u8 rsvd2[2]; __le16 vlan;
__le64 features; __le64 features;
__le32 queue_count[IONIC_QTYPE_MAX]; __le32 queue_count[IONIC_QTYPE_MAX];
} __packed; } __packed;
...@@ -489,7 +492,7 @@ struct ionic_lif_init_comp { ...@@ -489,7 +492,7 @@ struct ionic_lif_init_comp {
u8 rsvd2[12]; u8 rsvd2[12];
}; };
/** /**
* struct ionic_q_identify_cmd - queue identify command * struct ionic_q_identify_cmd - queue identify command
* @opcode: opcode * @opcode: opcode
* @lif_type: LIF type (enum ionic_lif_type) * @lif_type: LIF type (enum ionic_lif_type)
...@@ -983,6 +986,14 @@ enum ionic_pkt_type { ...@@ -983,6 +986,14 @@ enum ionic_pkt_type {
IONIC_PKT_TYPE_IPV6 = 0x008, IONIC_PKT_TYPE_IPV6 = 0x008,
IONIC_PKT_TYPE_IPV6_TCP = 0x018, IONIC_PKT_TYPE_IPV6_TCP = 0x018,
IONIC_PKT_TYPE_IPV6_UDP = 0x028, IONIC_PKT_TYPE_IPV6_UDP = 0x028,
/* below types are only used if encap offloads are enabled on lif */
IONIC_PKT_TYPE_ENCAP_NON_IP = 0x40,
IONIC_PKT_TYPE_ENCAP_IPV4 = 0x41,
IONIC_PKT_TYPE_ENCAP_IPV4_TCP = 0x43,
IONIC_PKT_TYPE_ENCAP_IPV4_UDP = 0x45,
IONIC_PKT_TYPE_ENCAP_IPV6 = 0x48,
IONIC_PKT_TYPE_ENCAP_IPV6_TCP = 0x58,
IONIC_PKT_TYPE_ENCAP_IPV6_UDP = 0x68,
}; };
enum ionic_eth_hw_features { enum ionic_eth_hw_features {
...@@ -1003,6 +1014,9 @@ enum ionic_eth_hw_features { ...@@ -1003,6 +1014,9 @@ enum ionic_eth_hw_features {
IONIC_ETH_HW_TSO_IPXIP6 = BIT(14), IONIC_ETH_HW_TSO_IPXIP6 = BIT(14),
IONIC_ETH_HW_TSO_UDP = BIT(15), IONIC_ETH_HW_TSO_UDP = BIT(15),
IONIC_ETH_HW_TSO_UDP_CSUM = BIT(16), IONIC_ETH_HW_TSO_UDP_CSUM = BIT(16),
IONIC_ETH_HW_RX_CSUM_GENEVE = BIT(17),
IONIC_ETH_HW_TX_CSUM_GENEVE = BIT(18),
IONIC_ETH_HW_TSO_GENEVE = BIT(19)
}; };
/** /**
...@@ -1011,7 +1025,7 @@ enum ionic_eth_hw_features { ...@@ -1011,7 +1025,7 @@ enum ionic_eth_hw_features {
* @type: Queue type * @type: Queue type
* @lif_index: LIF index * @lif_index: LIF index
* @index: Queue index * @index: Queue index
* @oper: Operation (enum q_control_oper) * @oper: Operation (enum ionic_q_control_oper)
*/ */
struct ionic_q_control_cmd { struct ionic_q_control_cmd {
u8 opcode; u8 opcode;
...@@ -1172,7 +1186,7 @@ enum ionic_port_loopback_mode { ...@@ -1172,7 +1186,7 @@ enum ionic_port_loopback_mode {
* struct ionic_xcvr_status - Transceiver Status information * struct ionic_xcvr_status - Transceiver Status information
* @state: Transceiver status (enum ionic_xcvr_state) * @state: Transceiver status (enum ionic_xcvr_state)
* @phy: Physical connection type (enum ionic_phy_type) * @phy: Physical connection type (enum ionic_phy_type)
* @pid: Transceiver link mode (enum pid) * @pid: Transceiver link mode (enum ionic_xcvr_pid)
* @sprom: Transceiver sprom contents * @sprom: Transceiver sprom contents
*/ */
struct ionic_xcvr_status { struct ionic_xcvr_status {
...@@ -1186,7 +1200,7 @@ struct ionic_xcvr_status { ...@@ -1186,7 +1200,7 @@ struct ionic_xcvr_status {
* union ionic_port_config - Port configuration * union ionic_port_config - Port configuration
* @speed: port speed (in Mbps) * @speed: port speed (in Mbps)
* @mtu: mtu * @mtu: mtu
* @state: port admin state (enum port_admin_state) * @state: port admin state (enum ionic_port_admin_state)
* @an_enable: autoneg enable * @an_enable: autoneg enable
* @fec_type: fec type (enum ionic_port_fec_type) * @fec_type: fec type (enum ionic_port_fec_type)
* @pause_type: pause type (enum ionic_port_pause_type) * @pause_type: pause type (enum ionic_port_pause_type)
...@@ -1874,12 +1888,14 @@ struct ionic_qos_identify_comp { ...@@ -1874,12 +1888,14 @@ struct ionic_qos_identify_comp {
}; };
#define IONIC_QOS_TC_MAX 8 #define IONIC_QOS_TC_MAX 8
#define IONIC_QOS_ALL_TC 0xFF
/* Capri max supported, should be renamed. */ /* Capri max supported, should be renamed. */
#define IONIC_QOS_CLASS_MAX 7 #define IONIC_QOS_CLASS_MAX 7
#define IONIC_QOS_PCP_MAX 8 #define IONIC_QOS_PCP_MAX 8
#define IONIC_QOS_CLASS_NAME_SZ 32 #define IONIC_QOS_CLASS_NAME_SZ 32
#define IONIC_QOS_DSCP_MAX 64 #define IONIC_QOS_DSCP_MAX 64
#define IONIC_QOS_ALL_PCP 0xFF #define IONIC_QOS_ALL_PCP 0xFF
#define IONIC_DSCP_BLOCK_SIZE 8
/** /**
* enum ionic_qos_class * enum ionic_qos_class
...@@ -1923,6 +1939,7 @@ enum ionic_qos_sched_type { ...@@ -1923,6 +1939,7 @@ enum ionic_qos_sched_type {
* IONIC_QOS_CONFIG_F_NO_DROP drop/nodrop * IONIC_QOS_CONFIG_F_NO_DROP drop/nodrop
* IONIC_QOS_CONFIG_F_RW_DOT1Q_PCP enable dot1q pcp rewrite * IONIC_QOS_CONFIG_F_RW_DOT1Q_PCP enable dot1q pcp rewrite
* IONIC_QOS_CONFIG_F_RW_IP_DSCP enable ip dscp rewrite * IONIC_QOS_CONFIG_F_RW_IP_DSCP enable ip dscp rewrite
* IONIC_QOS_CONFIG_F_NON_DISRUPTIVE Non-disruptive TC update
* @sched_type: QoS class scheduling type (enum ionic_qos_sched_type) * @sched_type: QoS class scheduling type (enum ionic_qos_sched_type)
* @class_type: QoS class type (enum ionic_qos_class_type) * @class_type: QoS class type (enum ionic_qos_class_type)
* @pause_type: QoS pause type (enum ionic_qos_pause_type) * @pause_type: QoS pause type (enum ionic_qos_pause_type)
...@@ -1944,6 +1961,8 @@ union ionic_qos_config { ...@@ -1944,6 +1961,8 @@ union ionic_qos_config {
/* Used to rewrite PCP or DSCP value. */ /* Used to rewrite PCP or DSCP value. */
#define IONIC_QOS_CONFIG_F_RW_DOT1Q_PCP BIT(2) #define IONIC_QOS_CONFIG_F_RW_DOT1Q_PCP BIT(2)
#define IONIC_QOS_CONFIG_F_RW_IP_DSCP BIT(3) #define IONIC_QOS_CONFIG_F_RW_IP_DSCP BIT(3)
/* Non-disruptive TC update */
#define IONIC_QOS_CONFIG_F_NON_DISRUPTIVE BIT(4)
u8 flags; u8 flags;
u8 sched_type; u8 sched_type;
u8 class_type; u8 class_type;
...@@ -2019,6 +2038,16 @@ struct ionic_qos_reset_cmd { ...@@ -2019,6 +2038,16 @@ struct ionic_qos_reset_cmd {
u8 rsvd[62]; u8 rsvd[62];
}; };
/**
* struct ionic_qos_clear_port_stats_cmd - Qos config reset command
* @opcode: Opcode
*/
struct ionic_qos_clear_stats_cmd {
u8 opcode;
u8 group_bitmap;
u8 rsvd[62];
};
typedef struct ionic_admin_comp ionic_qos_reset_comp; typedef struct ionic_admin_comp ionic_qos_reset_comp;
/** /**
...@@ -2164,7 +2193,7 @@ struct ionic_notifyq_event { ...@@ -2164,7 +2193,7 @@ struct ionic_notifyq_event {
* struct ionic_link_change_event - Link change event notification * struct ionic_link_change_event - Link change event notification
* @eid: event number * @eid: event number
* @ecode: event code = IONIC_EVENT_LINK_CHANGE * @ecode: event code = IONIC_EVENT_LINK_CHANGE
* @link_status: link up or down, with error bits (enum port_status) * @link_status: link up/down, with error bits (enum ionic_port_status)
* @link_speed: speed of the network link * @link_speed: speed of the network link
* *
* Sent when the network link state changes between UP and DOWN * Sent when the network link state changes between UP and DOWN
...@@ -2377,6 +2406,16 @@ enum ionic_pb_buffer_drop_stats { ...@@ -2377,6 +2406,16 @@ enum ionic_pb_buffer_drop_stats {
IONIC_BUFFER_DROP_MAX, IONIC_BUFFER_DROP_MAX,
}; };
enum ionic_oflow_drop_stats {
IONIC_OFLOW_OCCUPANCY_DROP,
IONIC_OFLOW_EMERGENCY_STOP_DROP,
IONIC_OFLOW_WRITE_BUFFER_ACK_FILL_UP_DROP,
IONIC_OFLOW_WRITE_BUFFER_ACK_FULL_DROP,
IONIC_OFLOW_WRITE_BUFFER_FULL_DROP,
IONIC_OFLOW_CONTROL_FIFO_FULL_DROP,
IONIC_OFLOW_DROP_MAX,
};
/** /**
* struct port_pb_stats - packet buffers system stats * struct port_pb_stats - packet buffers system stats
* uses ionic_pb_buffer_drop_stats for drop_counts[] * uses ionic_pb_buffer_drop_stats for drop_counts[]
...@@ -2390,12 +2429,20 @@ struct ionic_port_pb_stats { ...@@ -2390,12 +2429,20 @@ struct ionic_port_pb_stats {
__le64 input_queue_buffer_occupancy[IONIC_QOS_TC_MAX]; __le64 input_queue_buffer_occupancy[IONIC_QOS_TC_MAX];
__le64 input_queue_port_monitor[IONIC_QOS_TC_MAX]; __le64 input_queue_port_monitor[IONIC_QOS_TC_MAX];
__le64 output_queue_port_monitor[IONIC_QOS_TC_MAX]; __le64 output_queue_port_monitor[IONIC_QOS_TC_MAX];
__le64 oflow_drop_counts[IONIC_OFLOW_DROP_MAX];
__le64 input_queue_good_pkts_in[IONIC_QOS_TC_MAX];
__le64 input_queue_good_pkts_out[IONIC_QOS_TC_MAX];
__le64 input_queue_err_pkts_in[IONIC_QOS_TC_MAX];
__le64 input_queue_fifo_depth[IONIC_QOS_TC_MAX];
__le64 input_queue_max_fifo_depth[IONIC_QOS_TC_MAX];
__le64 input_queue_peak_occupancy[IONIC_QOS_TC_MAX];
__le64 output_queue_buffer_occupancy[IONIC_QOS_TC_MAX];
}; };
/** /**
* struct ionic_port_identity - port identity structure * struct ionic_port_identity - port identity structure
* @version: identity structure version * @version: identity structure version
* @type: type of port (enum port_type) * @type: type of port (enum ionic_port_type)
* @num_lanes: number of lanes for the port * @num_lanes: number of lanes for the port
* @autoneg: autoneg supported * @autoneg: autoneg supported
* @min_frame_size: minimum frame size supported * @min_frame_size: minimum frame size supported
...@@ -2637,6 +2684,7 @@ union ionic_dev_cmd { ...@@ -2637,6 +2684,7 @@ union ionic_dev_cmd {
struct ionic_qos_identify_cmd qos_identify; struct ionic_qos_identify_cmd qos_identify;
struct ionic_qos_init_cmd qos_init; struct ionic_qos_init_cmd qos_init;
struct ionic_qos_reset_cmd qos_reset; struct ionic_qos_reset_cmd qos_reset;
struct ionic_qos_clear_stats_cmd qos_clear_stats;
struct ionic_q_identify_cmd q_identify; struct ionic_q_identify_cmd q_identify;
struct ionic_q_init_cmd q_init; struct ionic_q_init_cmd q_init;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment