1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*******************************************************************************
4 * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
5 * Copyright(c) 2013 - 2014 Intel Corporation.
9 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
11 ******************************************************************************/
17 * This header file describes the VF-PF communication protocol used
18 * by the drivers for all devices starting from our 40G product line
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.
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.
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.
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
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
49 enum 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,
60 /* Backward compatibility */
61 #define VIRTCHNL_ERR_PARAM VIRTCHNL_STATUS_ERR_PARAM
62 #define VIRTCHNL_STATUS_NOT_SUPPORTED VIRTCHNL_STATUS_ERR_NOT_SUPPORTED
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
73 enum 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),
85 /* for hsplit_0 field of Rx HMC context */
86 /* deprecated with AVF 1.0 */
87 enum 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,
95 /* END GENERIC DEFINES */
97 /* Opcodes for VF-PF communication. These are placed in the v_opcode field
98 * of the virtchnl_msg structure.
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.
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,
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.
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) }
151 /* Virtual channel message descriptor. This overlays the admin queue
152 * descriptor. All other data is passed in external buffers.
155 struct 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 */
162 VIRTCHNL_CHECK_STRUCT_LEN(20, virtchnl_msg);
164 /* Message descriptions and data structures. */
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.
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.
178 #define VIRTCHNL_VERSION_MAJOR 1
179 #define VIRTCHNL_VERSION_MINOR 1
180 #define VIRTCHNL_VERSION_MINOR_NO_VF_CAPS 0
182 struct virtchnl_version_info {
187 VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_version_info);
189 #define VF_IS_V10(_v) (((_v)->major == 1) && ((_v)->minor == 0))
190 #define VF_IS_V11(_ver) (((_ver)->major == 1) && ((_ver)->minor == 1))
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.
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
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
208 enum virtchnl_vsi_type {
209 VIRTCHNL_VSI_TYPE_INVALID = 0,
210 VIRTCHNL_VSI_SRIOV = 6,
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.
221 struct virtchnl_vsi_resource {
224 enum virtchnl_vsi_type vsi_type;
226 u8 default_mac_addr[ETH_ALEN];
229 VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_vsi_resource);
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.
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
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)
257 struct virtchnl_vf_resource {
267 struct virtchnl_vsi_resource vsi_res[1];
270 VIRTCHNL_CHECK_STRUCT_LEN(36, virtchnl_vf_resource);
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.
278 /* Tx queue config info */
279 struct virtchnl_txq_info {
282 u16 ring_len; /* number of descriptors, multiple of 8 */
283 u16 headwb_enabled; /* deprecated with AVF 1.0 */
285 u64 dma_headwb_addr; /* deprecated with AVF 1.0 */
288 VIRTCHNL_CHECK_STRUCT_LEN(24, virtchnl_txq_info);
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.
296 /* Rx queue config info */
297 struct virtchnl_rxq_info {
300 u32 ring_len; /* number of descriptors, multiple of 32 */
302 u16 splithdr_enabled; /* deprecated with AVF 1.0 */
307 enum virtchnl_rx_hsplit rx_split_pos; /* deprecated with AVF 1.0 */
311 VIRTCHNL_CHECK_STRUCT_LEN(40, virtchnl_rxq_info);
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.
320 struct 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;
326 VIRTCHNL_CHECK_STRUCT_LEN(64, virtchnl_queue_pair_info);
328 struct virtchnl_vsi_queue_config_info {
332 struct virtchnl_queue_pair_info qpair[1];
335 VIRTCHNL_CHECK_STRUCT_LEN(72, virtchnl_vsi_queue_config_info);
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.
347 /* VF resource request */
348 struct virtchnl_vf_res_request {
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.
359 struct virtchnl_vector_map {
368 VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_vector_map);
370 struct virtchnl_irq_map_info {
372 struct virtchnl_vector_map vecmap[1];
375 VIRTCHNL_CHECK_STRUCT_LEN(14, virtchnl_irq_map_info);
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.
385 struct virtchnl_queue_select {
392 VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_queue_select);
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.
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.
406 struct virtchnl_ether_addr {
411 VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_ether_addr);
413 struct virtchnl_ether_addr_list {
416 struct virtchnl_ether_addr list[1];
419 VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_ether_addr_list);
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
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
435 struct virtchnl_vlan_filter_list {
441 VIRTCHNL_CHECK_STRUCT_LEN(6, virtchnl_vlan_filter_list);
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.
448 struct virtchnl_promisc_info {
453 VIRTCHNL_CHECK_STRUCT_LEN(4, virtchnl_promisc_info);
455 #define FLAG_VF_UNICAST_PROMISC 0x00000001
456 #define FLAG_VF_MULTICAST_PROMISC 0x00000002
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.
463 * PF replies with struct eth_stats in an external buffer.
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.
475 struct virtchnl_rss_key {
478 u8 key[1]; /* RSS hash key, packed bytes */
482 VIRTCHNL_CHECK_STRUCT_LEN(6, virtchnl_rss_key);
484 struct virtchnl_rss_lut {
487 u8 lut[1]; /* RSS lookup table */
491 VIRTCHNL_CHECK_STRUCT_LEN(6, virtchnl_rss_lut);
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.
500 struct virtchnl_rss_hena {
504 VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_rss_hena);
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.
513 struct virtchnl_channel_info {
514 u16 count; /* number of queues in a channel */
515 u16 offset; /* queues in a channel start from 'offset' */
520 VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_channel_info);
522 struct virtchnl_tc_info {
525 struct virtchnl_channel_info list[1];
528 VIRTCHNL_CHECK_STRUCT_LEN(24, virtchnl_tc_info);
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
538 struct virtchnl_l4_spec {
539 u8 src_mac[ETH_ALEN];
540 u8 dst_mac[ETH_ALEN];
542 __be16 pad; /* reserved for future use */
549 VIRTCHNL_CHECK_STRUCT_LEN(52, virtchnl_l4_spec);
551 union virtchnl_flow_spec {
552 struct virtchnl_l4_spec tcp_spec;
553 u8 buffer[128]; /* reserved for future use */
556 VIRTCHNL_CHECK_UNION_LEN(128, virtchnl_flow_spec);
558 enum virtchnl_action {
560 VIRTCHNL_ACTION_DROP = 0,
561 VIRTCHNL_ACTION_TC_REDIRECT,
564 enum virtchnl_flow_type {
566 VIRTCHNL_TCP_V4_FLOW = 0,
567 VIRTCHNL_TCP_V6_FLOW,
570 struct 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;
580 VIRTCHNL_CHECK_STRUCT_LEN(272, virtchnl_filter);
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.
587 enum virtchnl_event_codes {
588 VIRTCHNL_EVENT_UNKNOWN = 0,
589 VIRTCHNL_EVENT_LINK_CHANGE,
590 VIRTCHNL_EVENT_RESET_IMPENDING,
591 VIRTCHNL_EVENT_PF_DRIVER_CLOSE,
594 #define PF_EVENT_SEVERITY_INFO 0
595 #define PF_EVENT_SEVERITY_CERTAIN_DOOM 255
597 struct virtchnl_pf_event {
598 enum virtchnl_event_codes event;
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.
609 enum virtchnl_link_speed link_speed;
613 /* link_speed provided in Mbps */
623 VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_pf_event);
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.
637 struct virtchnl_iwarp_qv_info {
638 u32 v_idx; /* msix_vector */
645 VIRTCHNL_CHECK_STRUCT_LEN(12, virtchnl_iwarp_qv_info);
647 struct virtchnl_iwarp_qvlist_info {
649 struct virtchnl_iwarp_qv_info qv_info[1];
652 VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_iwarp_qvlist_info);
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
665 enum virtchnl_vfr_states {
666 VIRTCHNL_VFR_INPROGRESS = 0,
667 VIRTCHNL_VFR_COMPLETED,
668 VIRTCHNL_VFR_VFACTIVE,
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
678 * validate msg format against struct for each opcode
681 virtchnl_vc_validate_vf_msg(struct virtchnl_version_info *ver, u32 v_opcode,
684 bool err_msg_format = false;
687 /* Validate message length. */
689 case VIRTCHNL_OP_VERSION:
690 valid_len = sizeof(struct virtchnl_version_info);
692 case VIRTCHNL_OP_RESET_VF:
694 case VIRTCHNL_OP_GET_VF_RESOURCES:
696 valid_len = sizeof(u32);
698 case VIRTCHNL_OP_CONFIG_TX_QUEUE:
699 valid_len = sizeof(struct virtchnl_txq_info);
701 case VIRTCHNL_OP_CONFIG_RX_QUEUE:
702 valid_len = sizeof(struct virtchnl_rxq_info);
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 *
711 virtchnl_queue_pair_info));
712 if (vqc->num_queue_pairs == 0)
713 err_msg_format = true;
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;
727 case VIRTCHNL_OP_ENABLE_QUEUES:
728 case VIRTCHNL_OP_DISABLE_QUEUES:
729 valid_len = sizeof(struct virtchnl_queue_select);
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;
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;
754 case VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
755 valid_len = sizeof(struct virtchnl_promisc_info);
757 case VIRTCHNL_OP_GET_STATS:
758 valid_len = sizeof(struct virtchnl_queue_select);
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.
768 err_msg_format = true;
770 case VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP:
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;
781 valid_len += ((qv->num_vectors - 1) *
782 sizeof(struct virtchnl_iwarp_qv_info));
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;
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;
801 case VIRTCHNL_OP_GET_RSS_HENA_CAPS:
803 case VIRTCHNL_OP_SET_RSS_HENA:
804 valid_len = sizeof(struct virtchnl_rss_hena);
806 case VIRTCHNL_OP_ENABLE_VLAN_STRIPPING:
807 case VIRTCHNL_OP_DISABLE_VLAN_STRIPPING:
809 case VIRTCHNL_OP_REQUEST_QUEUES:
810 valid_len = sizeof(struct virtchnl_vf_res_request);
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;
823 case VIRTCHNL_OP_DISABLE_CHANNELS:
825 case VIRTCHNL_OP_ADD_CLOUD_FILTER:
826 valid_len = sizeof(struct virtchnl_filter);
828 case VIRTCHNL_OP_DEL_CLOUD_FILTER:
829 valid_len = sizeof(struct virtchnl_filter);
831 /* These are always errors coming from the VF. */
832 case VIRTCHNL_OP_EVENT:
833 case VIRTCHNL_OP_UNKNOWN:
835 return VIRTCHNL_STATUS_ERR_PARAM;
837 /* few more checks */
838 if (err_msg_format || valid_len != msglen)
839 return VIRTCHNL_STATUS_ERR_OPCODE_MISMATCH;
843 #endif /* _VIRTCHNL_H_ */