at v5.9 27 kB view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/******************************************************************************* 3 * 4 * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver 5 * Copyright(c) 2013 - 2014 Intel Corporation. 6 * 7 * Contact Information: 8 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> 9 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 10 * 11 ******************************************************************************/ 12 13#ifndef _VIRTCHNL_H_ 14#define _VIRTCHNL_H_ 15 16/* Description: 17 * This header file describes the VF-PF communication protocol used 18 * by the drivers for all devices starting from our 40G product line 19 * 20 * Admin queue buffer usage: 21 * desc->opcode is always aqc_opc_send_msg_to_pf 22 * flags, retval, datalen, and data addr are all used normally. 23 * The Firmware copies the cookie fields when sending messages between the 24 * PF and VF, but uses all other fields internally. Due to this limitation, 25 * we must send all messages as "indirect", i.e. using an external buffer. 26 * 27 * All the VSI indexes are relative to the VF. Each VF can have maximum of 28 * three VSIs. All the queue indexes are relative to the VSI. Each VF can 29 * have a maximum of sixteen queues for all of its VSIs. 30 * 31 * The PF is required to return a status code in v_retval for all messages 32 * except RESET_VF, which does not require any response. The return value 33 * is of status_code type, defined in the shared type.h. 34 * 35 * In general, VF driver initialization should roughly follow the order of 36 * these opcodes. The VF driver must first validate the API version of the 37 * PF driver, then request a reset, then get resources, then configure 38 * queues and interrupts. After these operations are complete, the VF 39 * driver may start its queues, optionally add MAC and VLAN filters, and 40 * process traffic. 41 */ 42 43/* START GENERIC DEFINES 44 * Need to ensure the following enums and defines hold the same meaning and 45 * value in current and future projects 46 */ 47 48/* Error Codes */ 49enum virtchnl_status_code { 50 VIRTCHNL_STATUS_SUCCESS = 0, 51 VIRTCHNL_STATUS_ERR_PARAM = -5, 52 VIRTCHNL_STATUS_ERR_NO_MEMORY = -18, 53 VIRTCHNL_STATUS_ERR_OPCODE_MISMATCH = -38, 54 VIRTCHNL_STATUS_ERR_CQP_COMPL_ERROR = -39, 55 VIRTCHNL_STATUS_ERR_INVALID_VF_ID = -40, 56 VIRTCHNL_STATUS_ERR_ADMIN_QUEUE_ERROR = -53, 57 VIRTCHNL_STATUS_ERR_NOT_SUPPORTED = -64, 58}; 59 60/* Backward compatibility */ 61#define VIRTCHNL_ERR_PARAM VIRTCHNL_STATUS_ERR_PARAM 62#define VIRTCHNL_STATUS_NOT_SUPPORTED VIRTCHNL_STATUS_ERR_NOT_SUPPORTED 63 64#define VIRTCHNL_LINK_SPEED_2_5GB_SHIFT 0x0 65#define VIRTCHNL_LINK_SPEED_100MB_SHIFT 0x1 66#define VIRTCHNL_LINK_SPEED_1000MB_SHIFT 0x2 67#define VIRTCHNL_LINK_SPEED_10GB_SHIFT 0x3 68#define VIRTCHNL_LINK_SPEED_40GB_SHIFT 0x4 69#define VIRTCHNL_LINK_SPEED_20GB_SHIFT 0x5 70#define VIRTCHNL_LINK_SPEED_25GB_SHIFT 0x6 71#define VIRTCHNL_LINK_SPEED_5GB_SHIFT 0x7 72 73enum virtchnl_link_speed { 74 VIRTCHNL_LINK_SPEED_UNKNOWN = 0, 75 VIRTCHNL_LINK_SPEED_100MB = BIT(VIRTCHNL_LINK_SPEED_100MB_SHIFT), 76 VIRTCHNL_LINK_SPEED_1GB = BIT(VIRTCHNL_LINK_SPEED_1000MB_SHIFT), 77 VIRTCHNL_LINK_SPEED_10GB = BIT(VIRTCHNL_LINK_SPEED_10GB_SHIFT), 78 VIRTCHNL_LINK_SPEED_40GB = BIT(VIRTCHNL_LINK_SPEED_40GB_SHIFT), 79 VIRTCHNL_LINK_SPEED_20GB = BIT(VIRTCHNL_LINK_SPEED_20GB_SHIFT), 80 VIRTCHNL_LINK_SPEED_25GB = BIT(VIRTCHNL_LINK_SPEED_25GB_SHIFT), 81 VIRTCHNL_LINK_SPEED_2_5GB = BIT(VIRTCHNL_LINK_SPEED_2_5GB_SHIFT), 82 VIRTCHNL_LINK_SPEED_5GB = BIT(VIRTCHNL_LINK_SPEED_5GB_SHIFT), 83}; 84 85/* for hsplit_0 field of Rx HMC context */ 86/* deprecated with AVF 1.0 */ 87enum virtchnl_rx_hsplit { 88 VIRTCHNL_RX_HSPLIT_NO_SPLIT = 0, 89 VIRTCHNL_RX_HSPLIT_SPLIT_L2 = 1, 90 VIRTCHNL_RX_HSPLIT_SPLIT_IP = 2, 91 VIRTCHNL_RX_HSPLIT_SPLIT_TCP_UDP = 4, 92 VIRTCHNL_RX_HSPLIT_SPLIT_SCTP = 8, 93}; 94 95/* END GENERIC DEFINES */ 96 97/* Opcodes for VF-PF communication. These are placed in the v_opcode field 98 * of the virtchnl_msg structure. 99 */ 100enum virtchnl_ops { 101/* The PF sends status change events to VFs using 102 * the VIRTCHNL_OP_EVENT opcode. 103 * VFs send requests to the PF using the other ops. 104 * Use of "advanced opcode" features must be negotiated as part of capabilities 105 * exchange and are not considered part of base mode feature set. 106 */ 107 VIRTCHNL_OP_UNKNOWN = 0, 108 VIRTCHNL_OP_VERSION = 1, /* must ALWAYS be 1 */ 109 VIRTCHNL_OP_RESET_VF = 2, 110 VIRTCHNL_OP_GET_VF_RESOURCES = 3, 111 VIRTCHNL_OP_CONFIG_TX_QUEUE = 4, 112 VIRTCHNL_OP_CONFIG_RX_QUEUE = 5, 113 VIRTCHNL_OP_CONFIG_VSI_QUEUES = 6, 114 VIRTCHNL_OP_CONFIG_IRQ_MAP = 7, 115 VIRTCHNL_OP_ENABLE_QUEUES = 8, 116 VIRTCHNL_OP_DISABLE_QUEUES = 9, 117 VIRTCHNL_OP_ADD_ETH_ADDR = 10, 118 VIRTCHNL_OP_DEL_ETH_ADDR = 11, 119 VIRTCHNL_OP_ADD_VLAN = 12, 120 VIRTCHNL_OP_DEL_VLAN = 13, 121 VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE = 14, 122 VIRTCHNL_OP_GET_STATS = 15, 123 VIRTCHNL_OP_RSVD = 16, 124 VIRTCHNL_OP_EVENT = 17, /* must ALWAYS be 17 */ 125 VIRTCHNL_OP_IWARP = 20, /* advanced opcode */ 126 VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP = 21, /* advanced opcode */ 127 VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP = 22, /* advanced opcode */ 128 VIRTCHNL_OP_CONFIG_RSS_KEY = 23, 129 VIRTCHNL_OP_CONFIG_RSS_LUT = 24, 130 VIRTCHNL_OP_GET_RSS_HENA_CAPS = 25, 131 VIRTCHNL_OP_SET_RSS_HENA = 26, 132 VIRTCHNL_OP_ENABLE_VLAN_STRIPPING = 27, 133 VIRTCHNL_OP_DISABLE_VLAN_STRIPPING = 28, 134 VIRTCHNL_OP_REQUEST_QUEUES = 29, 135 VIRTCHNL_OP_ENABLE_CHANNELS = 30, 136 VIRTCHNL_OP_DISABLE_CHANNELS = 31, 137 VIRTCHNL_OP_ADD_CLOUD_FILTER = 32, 138 VIRTCHNL_OP_DEL_CLOUD_FILTER = 33, 139}; 140 141/* These macros are used to generate compilation errors if a structure/union 142 * is not exactly the correct length. It gives a divide by zero error if the 143 * structure/union is not of the correct size, otherwise it creates an enum 144 * that is never used. 145 */ 146#define VIRTCHNL_CHECK_STRUCT_LEN(n, X) enum virtchnl_static_assert_enum_##X \ 147 { virtchnl_static_assert_##X = (n)/((sizeof(struct X) == (n)) ? 1 : 0) } 148#define VIRTCHNL_CHECK_UNION_LEN(n, X) enum virtchnl_static_asset_enum_##X \ 149 { virtchnl_static_assert_##X = (n)/((sizeof(union X) == (n)) ? 1 : 0) } 150 151/* Virtual channel message descriptor. This overlays the admin queue 152 * descriptor. All other data is passed in external buffers. 153 */ 154 155struct virtchnl_msg { 156 u8 pad[8]; /* AQ flags/opcode/len/retval fields */ 157 enum virtchnl_ops v_opcode; /* avoid confusion with desc->opcode */ 158 enum virtchnl_status_code v_retval; /* ditto for desc->retval */ 159 u32 vfid; /* used by PF when sending to VF */ 160}; 161 162VIRTCHNL_CHECK_STRUCT_LEN(20, virtchnl_msg); 163 164/* Message descriptions and data structures. */ 165 166/* VIRTCHNL_OP_VERSION 167 * VF posts its version number to the PF. PF responds with its version number 168 * in the same format, along with a return code. 169 * Reply from PF has its major/minor versions also in param0 and param1. 170 * If there is a major version mismatch, then the VF cannot operate. 171 * If there is a minor version mismatch, then the VF can operate but should 172 * add a warning to the system log. 173 * 174 * This enum element MUST always be specified as == 1, regardless of other 175 * changes in the API. The PF must always respond to this message without 176 * error regardless of version mismatch. 177 */ 178#define VIRTCHNL_VERSION_MAJOR 1 179#define VIRTCHNL_VERSION_MINOR 1 180#define VIRTCHNL_VERSION_MINOR_NO_VF_CAPS 0 181 182struct virtchnl_version_info { 183 u32 major; 184 u32 minor; 185}; 186 187VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_version_info); 188 189#define VF_IS_V10(_v) (((_v)->major == 1) && ((_v)->minor == 0)) 190#define VF_IS_V11(_ver) (((_ver)->major == 1) && ((_ver)->minor == 1)) 191 192/* VIRTCHNL_OP_RESET_VF 193 * VF sends this request to PF with no parameters 194 * PF does NOT respond! VF driver must delay then poll VFGEN_RSTAT register 195 * until reset completion is indicated. The admin queue must be reinitialized 196 * after this operation. 197 * 198 * When reset is complete, PF must ensure that all queues in all VSIs associated 199 * with the VF are stopped, all queue configurations in the HMC are set to 0, 200 * and all MAC and VLAN filters (except the default MAC address) on all VSIs 201 * are cleared. 202 */ 203 204/* VSI types that use VIRTCHNL interface for VF-PF communication. VSI_SRIOV 205 * vsi_type should always be 6 for backward compatibility. Add other fields 206 * as needed. 207 */ 208enum virtchnl_vsi_type { 209 VIRTCHNL_VSI_TYPE_INVALID = 0, 210 VIRTCHNL_VSI_SRIOV = 6, 211}; 212 213/* VIRTCHNL_OP_GET_VF_RESOURCES 214 * Version 1.0 VF sends this request to PF with no parameters 215 * Version 1.1 VF sends this request to PF with u32 bitmap of its capabilities 216 * PF responds with an indirect message containing 217 * virtchnl_vf_resource and one or more 218 * virtchnl_vsi_resource structures. 219 */ 220 221struct virtchnl_vsi_resource { 222 u16 vsi_id; 223 u16 num_queue_pairs; 224 enum virtchnl_vsi_type vsi_type; 225 u16 qset_handle; 226 u8 default_mac_addr[ETH_ALEN]; 227}; 228 229VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_vsi_resource); 230 231/* VF capability flags 232 * VIRTCHNL_VF_OFFLOAD_L2 flag is inclusive of base mode L2 offloads including 233 * TX/RX Checksum offloading and TSO for non-tunnelled packets. 234 */ 235#define VIRTCHNL_VF_OFFLOAD_L2 0x00000001 236#define VIRTCHNL_VF_OFFLOAD_IWARP 0x00000002 237#define VIRTCHNL_VF_OFFLOAD_RSVD 0x00000004 238#define VIRTCHNL_VF_OFFLOAD_RSS_AQ 0x00000008 239#define VIRTCHNL_VF_OFFLOAD_RSS_REG 0x00000010 240#define VIRTCHNL_VF_OFFLOAD_WB_ON_ITR 0x00000020 241#define VIRTCHNL_VF_OFFLOAD_REQ_QUEUES 0x00000040 242#define VIRTCHNL_VF_OFFLOAD_VLAN 0x00010000 243#define VIRTCHNL_VF_OFFLOAD_RX_POLLING 0x00020000 244#define VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2 0x00040000 245#define VIRTCHNL_VF_OFFLOAD_RSS_PF 0X00080000 246#define VIRTCHNL_VF_OFFLOAD_ENCAP 0X00100000 247#define VIRTCHNL_VF_OFFLOAD_ENCAP_CSUM 0X00200000 248#define VIRTCHNL_VF_OFFLOAD_RX_ENCAP_CSUM 0X00400000 249#define VIRTCHNL_VF_OFFLOAD_ADQ 0X00800000 250 251/* Define below the capability flags that are not offloads */ 252#define VIRTCHNL_VF_CAP_ADV_LINK_SPEED 0x00000080 253#define VF_BASE_MODE_OFFLOADS (VIRTCHNL_VF_OFFLOAD_L2 | \ 254 VIRTCHNL_VF_OFFLOAD_VLAN | \ 255 VIRTCHNL_VF_OFFLOAD_RSS_PF) 256 257struct virtchnl_vf_resource { 258 u16 num_vsis; 259 u16 num_queue_pairs; 260 u16 max_vectors; 261 u16 max_mtu; 262 263 u32 vf_cap_flags; 264 u32 rss_key_size; 265 u32 rss_lut_size; 266 267 struct virtchnl_vsi_resource vsi_res[1]; 268}; 269 270VIRTCHNL_CHECK_STRUCT_LEN(36, virtchnl_vf_resource); 271 272/* VIRTCHNL_OP_CONFIG_TX_QUEUE 273 * VF sends this message to set up parameters for one TX queue. 274 * External data buffer contains one instance of virtchnl_txq_info. 275 * PF configures requested queue and returns a status code. 276 */ 277 278/* Tx queue config info */ 279struct virtchnl_txq_info { 280 u16 vsi_id; 281 u16 queue_id; 282 u16 ring_len; /* number of descriptors, multiple of 8 */ 283 u16 headwb_enabled; /* deprecated with AVF 1.0 */ 284 u64 dma_ring_addr; 285 u64 dma_headwb_addr; /* deprecated with AVF 1.0 */ 286}; 287 288VIRTCHNL_CHECK_STRUCT_LEN(24, virtchnl_txq_info); 289 290/* VIRTCHNL_OP_CONFIG_RX_QUEUE 291 * VF sends this message to set up parameters for one RX queue. 292 * External data buffer contains one instance of virtchnl_rxq_info. 293 * PF configures requested queue and returns a status code. 294 */ 295 296/* Rx queue config info */ 297struct virtchnl_rxq_info { 298 u16 vsi_id; 299 u16 queue_id; 300 u32 ring_len; /* number of descriptors, multiple of 32 */ 301 u16 hdr_size; 302 u16 splithdr_enabled; /* deprecated with AVF 1.0 */ 303 u32 databuffer_size; 304 u32 max_pkt_size; 305 u32 pad1; 306 u64 dma_ring_addr; 307 enum virtchnl_rx_hsplit rx_split_pos; /* deprecated with AVF 1.0 */ 308 u32 pad2; 309}; 310 311VIRTCHNL_CHECK_STRUCT_LEN(40, virtchnl_rxq_info); 312 313/* VIRTCHNL_OP_CONFIG_VSI_QUEUES 314 * VF sends this message to set parameters for all active TX and RX queues 315 * associated with the specified VSI. 316 * PF configures queues and returns status. 317 * If the number of queues specified is greater than the number of queues 318 * associated with the VSI, an error is returned and no queues are configured. 319 */ 320struct virtchnl_queue_pair_info { 321 /* NOTE: vsi_id and queue_id should be identical for both queues. */ 322 struct virtchnl_txq_info txq; 323 struct virtchnl_rxq_info rxq; 324}; 325 326VIRTCHNL_CHECK_STRUCT_LEN(64, virtchnl_queue_pair_info); 327 328struct virtchnl_vsi_queue_config_info { 329 u16 vsi_id; 330 u16 num_queue_pairs; 331 u32 pad; 332 struct virtchnl_queue_pair_info qpair[1]; 333}; 334 335VIRTCHNL_CHECK_STRUCT_LEN(72, virtchnl_vsi_queue_config_info); 336 337/* VIRTCHNL_OP_REQUEST_QUEUES 338 * VF sends this message to request the PF to allocate additional queues to 339 * this VF. Each VF gets a guaranteed number of queues on init but asking for 340 * additional queues must be negotiated. This is a best effort request as it 341 * is possible the PF does not have enough queues left to support the request. 342 * If the PF cannot support the number requested it will respond with the 343 * maximum number it is able to support. If the request is successful, PF will 344 * then reset the VF to institute required changes. 345 */ 346 347/* VF resource request */ 348struct virtchnl_vf_res_request { 349 u16 num_queue_pairs; 350}; 351 352/* VIRTCHNL_OP_CONFIG_IRQ_MAP 353 * VF uses this message to map vectors to queues. 354 * The rxq_map and txq_map fields are bitmaps used to indicate which queues 355 * are to be associated with the specified vector. 356 * The "other" causes are always mapped to vector 0. 357 * PF configures interrupt mapping and returns status. 358 */ 359struct virtchnl_vector_map { 360 u16 vsi_id; 361 u16 vector_id; 362 u16 rxq_map; 363 u16 txq_map; 364 u16 rxitr_idx; 365 u16 txitr_idx; 366}; 367 368VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_vector_map); 369 370struct virtchnl_irq_map_info { 371 u16 num_vectors; 372 struct virtchnl_vector_map vecmap[1]; 373}; 374 375VIRTCHNL_CHECK_STRUCT_LEN(14, virtchnl_irq_map_info); 376 377/* VIRTCHNL_OP_ENABLE_QUEUES 378 * VIRTCHNL_OP_DISABLE_QUEUES 379 * VF sends these message to enable or disable TX/RX queue pairs. 380 * The queues fields are bitmaps indicating which queues to act upon. 381 * (Currently, we only support 16 queues per VF, but we make the field 382 * u32 to allow for expansion.) 383 * PF performs requested action and returns status. 384 */ 385struct virtchnl_queue_select { 386 u16 vsi_id; 387 u16 pad; 388 u32 rx_queues; 389 u32 tx_queues; 390}; 391 392VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_queue_select); 393 394/* VIRTCHNL_OP_ADD_ETH_ADDR 395 * VF sends this message in order to add one or more unicast or multicast 396 * address filters for the specified VSI. 397 * PF adds the filters and returns status. 398 */ 399 400/* VIRTCHNL_OP_DEL_ETH_ADDR 401 * VF sends this message in order to remove one or more unicast or multicast 402 * filters for the specified VSI. 403 * PF removes the filters and returns status. 404 */ 405 406struct virtchnl_ether_addr { 407 u8 addr[ETH_ALEN]; 408 u8 pad[2]; 409}; 410 411VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_ether_addr); 412 413struct virtchnl_ether_addr_list { 414 u16 vsi_id; 415 u16 num_elements; 416 struct virtchnl_ether_addr list[1]; 417}; 418 419VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_ether_addr_list); 420 421/* VIRTCHNL_OP_ADD_VLAN 422 * VF sends this message to add one or more VLAN tag filters for receives. 423 * PF adds the filters and returns status. 424 * If a port VLAN is configured by the PF, this operation will return an 425 * error to the VF. 426 */ 427 428/* VIRTCHNL_OP_DEL_VLAN 429 * VF sends this message to remove one or more VLAN tag filters for receives. 430 * PF removes the filters and returns status. 431 * If a port VLAN is configured by the PF, this operation will return an 432 * error to the VF. 433 */ 434 435struct virtchnl_vlan_filter_list { 436 u16 vsi_id; 437 u16 num_elements; 438 u16 vlan_id[1]; 439}; 440 441VIRTCHNL_CHECK_STRUCT_LEN(6, virtchnl_vlan_filter_list); 442 443/* VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE 444 * VF sends VSI id and flags. 445 * PF returns status code in retval. 446 * Note: we assume that broadcast accept mode is always enabled. 447 */ 448struct virtchnl_promisc_info { 449 u16 vsi_id; 450 u16 flags; 451}; 452 453VIRTCHNL_CHECK_STRUCT_LEN(4, virtchnl_promisc_info); 454 455#define FLAG_VF_UNICAST_PROMISC 0x00000001 456#define FLAG_VF_MULTICAST_PROMISC 0x00000002 457 458/* VIRTCHNL_OP_GET_STATS 459 * VF sends this message to request stats for the selected VSI. VF uses 460 * the virtchnl_queue_select struct to specify the VSI. The queue_id 461 * field is ignored by the PF. 462 * 463 * PF replies with struct eth_stats in an external buffer. 464 */ 465 466/* VIRTCHNL_OP_CONFIG_RSS_KEY 467 * VIRTCHNL_OP_CONFIG_RSS_LUT 468 * VF sends these messages to configure RSS. Only supported if both PF 469 * and VF drivers set the VIRTCHNL_VF_OFFLOAD_RSS_PF bit during 470 * configuration negotiation. If this is the case, then the RSS fields in 471 * the VF resource struct are valid. 472 * Both the key and LUT are initialized to 0 by the PF, meaning that 473 * RSS is effectively disabled until set up by the VF. 474 */ 475struct virtchnl_rss_key { 476 u16 vsi_id; 477 u16 key_len; 478 u8 key[1]; /* RSS hash key, packed bytes */ 479 u8 pad[1]; 480}; 481 482VIRTCHNL_CHECK_STRUCT_LEN(6, virtchnl_rss_key); 483 484struct virtchnl_rss_lut { 485 u16 vsi_id; 486 u16 lut_entries; 487 u8 lut[1]; /* RSS lookup table */ 488 u8 pad[1]; 489}; 490 491VIRTCHNL_CHECK_STRUCT_LEN(6, virtchnl_rss_lut); 492 493/* VIRTCHNL_OP_GET_RSS_HENA_CAPS 494 * VIRTCHNL_OP_SET_RSS_HENA 495 * VF sends these messages to get and set the hash filter enable bits for RSS. 496 * By default, the PF sets these to all possible traffic types that the 497 * hardware supports. The VF can query this value if it wants to change the 498 * traffic types that are hashed by the hardware. 499 */ 500struct virtchnl_rss_hena { 501 u64 hena; 502}; 503 504VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_rss_hena); 505 506/* VIRTCHNL_OP_ENABLE_CHANNELS 507 * VIRTCHNL_OP_DISABLE_CHANNELS 508 * VF sends these messages to enable or disable channels based on 509 * the user specified queue count and queue offset for each traffic class. 510 * This struct encompasses all the information that the PF needs from 511 * VF to create a channel. 512 */ 513struct virtchnl_channel_info { 514 u16 count; /* number of queues in a channel */ 515 u16 offset; /* queues in a channel start from 'offset' */ 516 u32 pad; 517 u64 max_tx_rate; 518}; 519 520VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_channel_info); 521 522struct virtchnl_tc_info { 523 u32 num_tc; 524 u32 pad; 525 struct virtchnl_channel_info list[1]; 526}; 527 528VIRTCHNL_CHECK_STRUCT_LEN(24, virtchnl_tc_info); 529 530/* VIRTCHNL_ADD_CLOUD_FILTER 531 * VIRTCHNL_DEL_CLOUD_FILTER 532 * VF sends these messages to add or delete a cloud filter based on the 533 * user specified match and action filters. These structures encompass 534 * all the information that the PF needs from the VF to add/delete a 535 * cloud filter. 536 */ 537 538struct virtchnl_l4_spec { 539 u8 src_mac[ETH_ALEN]; 540 u8 dst_mac[ETH_ALEN]; 541 __be16 vlan_id; 542 __be16 pad; /* reserved for future use */ 543 __be32 src_ip[4]; 544 __be32 dst_ip[4]; 545 __be16 src_port; 546 __be16 dst_port; 547}; 548 549VIRTCHNL_CHECK_STRUCT_LEN(52, virtchnl_l4_spec); 550 551union virtchnl_flow_spec { 552 struct virtchnl_l4_spec tcp_spec; 553 u8 buffer[128]; /* reserved for future use */ 554}; 555 556VIRTCHNL_CHECK_UNION_LEN(128, virtchnl_flow_spec); 557 558enum virtchnl_action { 559 /* action types */ 560 VIRTCHNL_ACTION_DROP = 0, 561 VIRTCHNL_ACTION_TC_REDIRECT, 562}; 563 564enum virtchnl_flow_type { 565 /* flow types */ 566 VIRTCHNL_TCP_V4_FLOW = 0, 567 VIRTCHNL_TCP_V6_FLOW, 568}; 569 570struct virtchnl_filter { 571 union virtchnl_flow_spec data; 572 union virtchnl_flow_spec mask; 573 enum virtchnl_flow_type flow_type; 574 enum virtchnl_action action; 575 u32 action_meta; 576 u8 field_flags; 577 u8 pad[3]; 578}; 579 580VIRTCHNL_CHECK_STRUCT_LEN(272, virtchnl_filter); 581 582/* VIRTCHNL_OP_EVENT 583 * PF sends this message to inform the VF driver of events that may affect it. 584 * No direct response is expected from the VF, though it may generate other 585 * messages in response to this one. 586 */ 587enum virtchnl_event_codes { 588 VIRTCHNL_EVENT_UNKNOWN = 0, 589 VIRTCHNL_EVENT_LINK_CHANGE, 590 VIRTCHNL_EVENT_RESET_IMPENDING, 591 VIRTCHNL_EVENT_PF_DRIVER_CLOSE, 592}; 593 594#define PF_EVENT_SEVERITY_INFO 0 595#define PF_EVENT_SEVERITY_CERTAIN_DOOM 255 596 597struct virtchnl_pf_event { 598 enum virtchnl_event_codes event; 599 union { 600 /* If the PF driver does not support the new speed reporting 601 * capabilities then use link_event else use link_event_adv to 602 * get the speed and link information. The ability to understand 603 * new speeds is indicated by setting the capability flag 604 * VIRTCHNL_VF_CAP_ADV_LINK_SPEED in vf_cap_flags parameter 605 * in virtchnl_vf_resource struct and can be used to determine 606 * which link event struct to use below. 607 */ 608 struct { 609 enum virtchnl_link_speed link_speed; 610 bool link_status; 611 } link_event; 612 struct { 613 /* link_speed provided in Mbps */ 614 u32 link_speed; 615 u8 link_status; 616 u8 pad[3]; 617 } link_event_adv; 618 } event_data; 619 620 int severity; 621}; 622 623VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_pf_event); 624 625/* VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP 626 * VF uses this message to request PF to map IWARP vectors to IWARP queues. 627 * The request for this originates from the VF IWARP driver through 628 * a client interface between VF LAN and VF IWARP driver. 629 * A vector could have an AEQ and CEQ attached to it although 630 * there is a single AEQ per VF IWARP instance in which case 631 * most vectors will have an INVALID_IDX for aeq and valid idx for ceq. 632 * There will never be a case where there will be multiple CEQs attached 633 * to a single vector. 634 * PF configures interrupt mapping and returns status. 635 */ 636 637struct virtchnl_iwarp_qv_info { 638 u32 v_idx; /* msix_vector */ 639 u16 ceq_idx; 640 u16 aeq_idx; 641 u8 itr_idx; 642 u8 pad[3]; 643}; 644 645VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_iwarp_qv_info); 646 647struct virtchnl_iwarp_qvlist_info { 648 u32 num_vectors; 649 struct virtchnl_iwarp_qv_info qv_info[1]; 650}; 651 652VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_iwarp_qvlist_info); 653 654/* VF reset states - these are written into the RSTAT register: 655 * VFGEN_RSTAT on the VF 656 * When the PF initiates a reset, it writes 0 657 * When the reset is complete, it writes 1 658 * When the PF detects that the VF has recovered, it writes 2 659 * VF checks this register periodically to determine if a reset has occurred, 660 * then polls it to know when the reset is complete. 661 * If either the PF or VF reads the register while the hardware 662 * is in a reset state, it will return DEADBEEF, which, when masked 663 * will result in 3. 664 */ 665enum virtchnl_vfr_states { 666 VIRTCHNL_VFR_INPROGRESS = 0, 667 VIRTCHNL_VFR_COMPLETED, 668 VIRTCHNL_VFR_VFACTIVE, 669}; 670 671/** 672 * virtchnl_vc_validate_vf_msg 673 * @ver: Virtchnl version info 674 * @v_opcode: Opcode for the message 675 * @msg: pointer to the msg buffer 676 * @msglen: msg length 677 * 678 * validate msg format against struct for each opcode 679 */ 680static inline int 681virtchnl_vc_validate_vf_msg(struct virtchnl_version_info *ver, u32 v_opcode, 682 u8 *msg, u16 msglen) 683{ 684 bool err_msg_format = false; 685 int valid_len = 0; 686 687 /* Validate message length. */ 688 switch (v_opcode) { 689 case VIRTCHNL_OP_VERSION: 690 valid_len = sizeof(struct virtchnl_version_info); 691 break; 692 case VIRTCHNL_OP_RESET_VF: 693 break; 694 case VIRTCHNL_OP_GET_VF_RESOURCES: 695 if (VF_IS_V11(ver)) 696 valid_len = sizeof(u32); 697 break; 698 case VIRTCHNL_OP_CONFIG_TX_QUEUE: 699 valid_len = sizeof(struct virtchnl_txq_info); 700 break; 701 case VIRTCHNL_OP_CONFIG_RX_QUEUE: 702 valid_len = sizeof(struct virtchnl_rxq_info); 703 break; 704 case VIRTCHNL_OP_CONFIG_VSI_QUEUES: 705 valid_len = sizeof(struct virtchnl_vsi_queue_config_info); 706 if (msglen >= valid_len) { 707 struct virtchnl_vsi_queue_config_info *vqc = 708 (struct virtchnl_vsi_queue_config_info *)msg; 709 valid_len += (vqc->num_queue_pairs * 710 sizeof(struct 711 virtchnl_queue_pair_info)); 712 if (vqc->num_queue_pairs == 0) 713 err_msg_format = true; 714 } 715 break; 716 case VIRTCHNL_OP_CONFIG_IRQ_MAP: 717 valid_len = sizeof(struct virtchnl_irq_map_info); 718 if (msglen >= valid_len) { 719 struct virtchnl_irq_map_info *vimi = 720 (struct virtchnl_irq_map_info *)msg; 721 valid_len += (vimi->num_vectors * 722 sizeof(struct virtchnl_vector_map)); 723 if (vimi->num_vectors == 0) 724 err_msg_format = true; 725 } 726 break; 727 case VIRTCHNL_OP_ENABLE_QUEUES: 728 case VIRTCHNL_OP_DISABLE_QUEUES: 729 valid_len = sizeof(struct virtchnl_queue_select); 730 break; 731 case VIRTCHNL_OP_ADD_ETH_ADDR: 732 case VIRTCHNL_OP_DEL_ETH_ADDR: 733 valid_len = sizeof(struct virtchnl_ether_addr_list); 734 if (msglen >= valid_len) { 735 struct virtchnl_ether_addr_list *veal = 736 (struct virtchnl_ether_addr_list *)msg; 737 valid_len += veal->num_elements * 738 sizeof(struct virtchnl_ether_addr); 739 if (veal->num_elements == 0) 740 err_msg_format = true; 741 } 742 break; 743 case VIRTCHNL_OP_ADD_VLAN: 744 case VIRTCHNL_OP_DEL_VLAN: 745 valid_len = sizeof(struct virtchnl_vlan_filter_list); 746 if (msglen >= valid_len) { 747 struct virtchnl_vlan_filter_list *vfl = 748 (struct virtchnl_vlan_filter_list *)msg; 749 valid_len += vfl->num_elements * sizeof(u16); 750 if (vfl->num_elements == 0) 751 err_msg_format = true; 752 } 753 break; 754 case VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE: 755 valid_len = sizeof(struct virtchnl_promisc_info); 756 break; 757 case VIRTCHNL_OP_GET_STATS: 758 valid_len = sizeof(struct virtchnl_queue_select); 759 break; 760 case VIRTCHNL_OP_IWARP: 761 /* These messages are opaque to us and will be validated in 762 * the RDMA client code. We just need to check for nonzero 763 * length. The firmware will enforce max length restrictions. 764 */ 765 if (msglen) 766 valid_len = msglen; 767 else 768 err_msg_format = true; 769 break; 770 case VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP: 771 break; 772 case VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP: 773 valid_len = sizeof(struct virtchnl_iwarp_qvlist_info); 774 if (msglen >= valid_len) { 775 struct virtchnl_iwarp_qvlist_info *qv = 776 (struct virtchnl_iwarp_qvlist_info *)msg; 777 if (qv->num_vectors == 0) { 778 err_msg_format = true; 779 break; 780 } 781 valid_len += ((qv->num_vectors - 1) * 782 sizeof(struct virtchnl_iwarp_qv_info)); 783 } 784 break; 785 case VIRTCHNL_OP_CONFIG_RSS_KEY: 786 valid_len = sizeof(struct virtchnl_rss_key); 787 if (msglen >= valid_len) { 788 struct virtchnl_rss_key *vrk = 789 (struct virtchnl_rss_key *)msg; 790 valid_len += vrk->key_len - 1; 791 } 792 break; 793 case VIRTCHNL_OP_CONFIG_RSS_LUT: 794 valid_len = sizeof(struct virtchnl_rss_lut); 795 if (msglen >= valid_len) { 796 struct virtchnl_rss_lut *vrl = 797 (struct virtchnl_rss_lut *)msg; 798 valid_len += vrl->lut_entries - 1; 799 } 800 break; 801 case VIRTCHNL_OP_GET_RSS_HENA_CAPS: 802 break; 803 case VIRTCHNL_OP_SET_RSS_HENA: 804 valid_len = sizeof(struct virtchnl_rss_hena); 805 break; 806 case VIRTCHNL_OP_ENABLE_VLAN_STRIPPING: 807 case VIRTCHNL_OP_DISABLE_VLAN_STRIPPING: 808 break; 809 case VIRTCHNL_OP_REQUEST_QUEUES: 810 valid_len = sizeof(struct virtchnl_vf_res_request); 811 break; 812 case VIRTCHNL_OP_ENABLE_CHANNELS: 813 valid_len = sizeof(struct virtchnl_tc_info); 814 if (msglen >= valid_len) { 815 struct virtchnl_tc_info *vti = 816 (struct virtchnl_tc_info *)msg; 817 valid_len += (vti->num_tc - 1) * 818 sizeof(struct virtchnl_channel_info); 819 if (vti->num_tc == 0) 820 err_msg_format = true; 821 } 822 break; 823 case VIRTCHNL_OP_DISABLE_CHANNELS: 824 break; 825 case VIRTCHNL_OP_ADD_CLOUD_FILTER: 826 valid_len = sizeof(struct virtchnl_filter); 827 break; 828 case VIRTCHNL_OP_DEL_CLOUD_FILTER: 829 valid_len = sizeof(struct virtchnl_filter); 830 break; 831 /* These are always errors coming from the VF. */ 832 case VIRTCHNL_OP_EVENT: 833 case VIRTCHNL_OP_UNKNOWN: 834 default: 835 return VIRTCHNL_STATUS_ERR_PARAM; 836 } 837 /* few more checks */ 838 if (err_msg_format || valid_len != msglen) 839 return VIRTCHNL_STATUS_ERR_OPCODE_MISMATCH; 840 841 return 0; 842} 843#endif /* _VIRTCHNL_H_ */