1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 2 /* Copyright (c) 2021, Microsoft Corporation. */ 3 4 #ifndef _MANA_H 5 #define _MANA_H 6 7 #include "gdma.h" 8 #include "hw_channel.h" 9 10 /* Microsoft Azure Network Adapter (MANA)'s definitions 11 * 12 * Structures labeled with "HW DATA" are exchanged with the hardware. All of 13 * them are naturally aligned and hence don't need __packed. 14 */ 15 16 /* MANA protocol version */ 17 #define MANA_MAJOR_VERSION 0 18 #define MANA_MINOR_VERSION 1 19 #define MANA_MICRO_VERSION 1 20 21 typedef u64 mana_handle_t; 22 #define INVALID_MANA_HANDLE ((mana_handle_t)-1) 23 24 enum TRI_STATE { 25 TRI_STATE_UNKNOWN = -1, 26 TRI_STATE_FALSE = 0, 27 TRI_STATE_TRUE = 1 28 }; 29 30 /* Number of entries for hardware indirection table must be in power of 2 */ 31 #define MANA_INDIRECT_TABLE_SIZE 64 32 #define MANA_INDIRECT_TABLE_MASK (MANA_INDIRECT_TABLE_SIZE - 1) 33 34 /* The Toeplitz hash key's length in bytes: should be multiple of 8 */ 35 #define MANA_HASH_KEY_SIZE 40 36 37 #define COMP_ENTRY_SIZE 64 38 39 #define ADAPTER_MTU_SIZE 1500 40 #define MAX_FRAME_SIZE (ADAPTER_MTU_SIZE + 14) 41 42 #define RX_BUFFERS_PER_QUEUE 512 43 44 #define MAX_SEND_BUFFERS_PER_QUEUE 256 45 46 #define EQ_SIZE (8 * PAGE_SIZE) 47 #define LOG2_EQ_THROTTLE 3 48 49 #define MAX_PORTS_IN_MANA_DEV 256 50 51 /* Update this count whenever the respective structures are changed */ 52 #define MANA_STATS_RX_COUNT 5 53 #define MANA_STATS_TX_COUNT 11 54 55 struct mana_stats_rx { 56 u64 packets; 57 u64 bytes; 58 u64 xdp_drop; 59 u64 xdp_tx; 60 u64 xdp_redirect; 61 struct u64_stats_sync syncp; 62 }; 63 64 struct mana_stats_tx { 65 u64 packets; 66 u64 bytes; 67 u64 xdp_xmit; 68 u64 tso_packets; 69 u64 tso_bytes; 70 u64 tso_inner_packets; 71 u64 tso_inner_bytes; 72 u64 short_pkt_fmt; 73 u64 long_pkt_fmt; 74 u64 csum_partial; 75 u64 mana_map_err; 76 struct u64_stats_sync syncp; 77 }; 78 79 struct mana_txq { 80 struct gdma_queue *gdma_sq; 81 82 union { 83 u32 gdma_txq_id; 84 struct { 85 u32 reserved1 : 10; 86 u32 vsq_frame : 14; 87 u32 reserved2 : 8; 88 }; 89 }; 90 91 u16 vp_offset; 92 93 struct net_device *ndev; 94 95 /* The SKBs are sent to the HW and we are waiting for the CQEs. */ 96 struct sk_buff_head pending_skbs; 97 struct netdev_queue *net_txq; 98 99 atomic_t pending_sends; 100 101 struct mana_stats_tx stats; 102 }; 103 104 /* skb data and frags dma mappings */ 105 struct mana_skb_head { 106 dma_addr_t dma_handle[MAX_SKB_FRAGS + 1]; 107 108 u32 size[MAX_SKB_FRAGS + 1]; 109 }; 110 111 #define MANA_HEADROOM sizeof(struct mana_skb_head) 112 113 enum mana_tx_pkt_format { 114 MANA_SHORT_PKT_FMT = 0, 115 MANA_LONG_PKT_FMT = 1, 116 }; 117 118 struct mana_tx_short_oob { 119 u32 pkt_fmt : 2; 120 u32 is_outer_ipv4 : 1; 121 u32 is_outer_ipv6 : 1; 122 u32 comp_iphdr_csum : 1; 123 u32 comp_tcp_csum : 1; 124 u32 comp_udp_csum : 1; 125 u32 supress_txcqe_gen : 1; 126 u32 vcq_num : 24; 127 128 u32 trans_off : 10; /* Transport header offset */ 129 u32 vsq_frame : 14; 130 u32 short_vp_offset : 8; 131 }; /* HW DATA */ 132 133 struct mana_tx_long_oob { 134 u32 is_encap : 1; 135 u32 inner_is_ipv6 : 1; 136 u32 inner_tcp_opt : 1; 137 u32 inject_vlan_pri_tag : 1; 138 u32 reserved1 : 12; 139 u32 pcp : 3; /* 802.1Q */ 140 u32 dei : 1; /* 802.1Q */ 141 u32 vlan_id : 12; /* 802.1Q */ 142 143 u32 inner_frame_offset : 10; 144 u32 inner_ip_rel_offset : 6; 145 u32 long_vp_offset : 12; 146 u32 reserved2 : 4; 147 148 u32 reserved3; 149 u32 reserved4; 150 }; /* HW DATA */ 151 152 struct mana_tx_oob { 153 struct mana_tx_short_oob s_oob; 154 struct mana_tx_long_oob l_oob; 155 }; /* HW DATA */ 156 157 enum mana_cq_type { 158 MANA_CQ_TYPE_RX, 159 MANA_CQ_TYPE_TX, 160 }; 161 162 enum mana_cqe_type { 163 CQE_INVALID = 0, 164 CQE_RX_OKAY = 1, 165 CQE_RX_COALESCED_4 = 2, 166 CQE_RX_OBJECT_FENCE = 3, 167 CQE_RX_TRUNCATED = 4, 168 169 CQE_TX_OKAY = 32, 170 CQE_TX_SA_DROP = 33, 171 CQE_TX_MTU_DROP = 34, 172 CQE_TX_INVALID_OOB = 35, 173 CQE_TX_INVALID_ETH_TYPE = 36, 174 CQE_TX_HDR_PROCESSING_ERROR = 37, 175 CQE_TX_VF_DISABLED = 38, 176 CQE_TX_VPORT_IDX_OUT_OF_RANGE = 39, 177 CQE_TX_VPORT_DISABLED = 40, 178 CQE_TX_VLAN_TAGGING_VIOLATION = 41, 179 }; 180 181 #define MANA_CQE_COMPLETION 1 182 183 struct mana_cqe_header { 184 u32 cqe_type : 6; 185 u32 client_type : 2; 186 u32 vendor_err : 24; 187 }; /* HW DATA */ 188 189 /* NDIS HASH Types */ 190 #define NDIS_HASH_IPV4 BIT(0) 191 #define NDIS_HASH_TCP_IPV4 BIT(1) 192 #define NDIS_HASH_UDP_IPV4 BIT(2) 193 #define NDIS_HASH_IPV6 BIT(3) 194 #define NDIS_HASH_TCP_IPV6 BIT(4) 195 #define NDIS_HASH_UDP_IPV6 BIT(5) 196 #define NDIS_HASH_IPV6_EX BIT(6) 197 #define NDIS_HASH_TCP_IPV6_EX BIT(7) 198 #define NDIS_HASH_UDP_IPV6_EX BIT(8) 199 200 #define MANA_HASH_L3 (NDIS_HASH_IPV4 | NDIS_HASH_IPV6 | NDIS_HASH_IPV6_EX) 201 #define MANA_HASH_L4 \ 202 (NDIS_HASH_TCP_IPV4 | NDIS_HASH_UDP_IPV4 | NDIS_HASH_TCP_IPV6 | \ 203 NDIS_HASH_UDP_IPV6 | NDIS_HASH_TCP_IPV6_EX | NDIS_HASH_UDP_IPV6_EX) 204 205 struct mana_rxcomp_perpkt_info { 206 u32 pkt_len : 16; 207 u32 reserved1 : 16; 208 u32 reserved2; 209 u32 pkt_hash; 210 }; /* HW DATA */ 211 212 #define MANA_RXCOMP_OOB_NUM_PPI 4 213 214 /* Receive completion OOB */ 215 struct mana_rxcomp_oob { 216 struct mana_cqe_header cqe_hdr; 217 218 u32 rx_vlan_id : 12; 219 u32 rx_vlantag_present : 1; 220 u32 rx_outer_iphdr_csum_succeed : 1; 221 u32 rx_outer_iphdr_csum_fail : 1; 222 u32 reserved1 : 1; 223 u32 rx_hashtype : 9; 224 u32 rx_iphdr_csum_succeed : 1; 225 u32 rx_iphdr_csum_fail : 1; 226 u32 rx_tcp_csum_succeed : 1; 227 u32 rx_tcp_csum_fail : 1; 228 u32 rx_udp_csum_succeed : 1; 229 u32 rx_udp_csum_fail : 1; 230 u32 reserved2 : 1; 231 232 struct mana_rxcomp_perpkt_info ppi[MANA_RXCOMP_OOB_NUM_PPI]; 233 234 u32 rx_wqe_offset; 235 }; /* HW DATA */ 236 237 struct mana_tx_comp_oob { 238 struct mana_cqe_header cqe_hdr; 239 240 u32 tx_data_offset; 241 242 u32 tx_sgl_offset : 5; 243 u32 tx_wqe_offset : 27; 244 245 u32 reserved[12]; 246 }; /* HW DATA */ 247 248 struct mana_rxq; 249 250 #define CQE_POLLING_BUFFER 512 251 252 struct mana_cq { 253 struct gdma_queue *gdma_cq; 254 255 /* Cache the CQ id (used to verify if each CQE comes to the right CQ. */ 256 u32 gdma_id; 257 258 /* Type of the CQ: TX or RX */ 259 enum mana_cq_type type; 260 261 /* Pointer to the mana_rxq that is pushing RX CQEs to the queue. 262 * Only and must be non-NULL if type is MANA_CQ_TYPE_RX. 263 */ 264 struct mana_rxq *rxq; 265 266 /* Pointer to the mana_txq that is pushing TX CQEs to the queue. 267 * Only and must be non-NULL if type is MANA_CQ_TYPE_TX. 268 */ 269 struct mana_txq *txq; 270 271 /* Buffer which the CQ handler can copy the CQE's into. */ 272 struct gdma_comp gdma_comp_buf[CQE_POLLING_BUFFER]; 273 274 /* NAPI data */ 275 struct napi_struct napi; 276 int work_done; 277 int budget; 278 }; 279 280 struct mana_recv_buf_oob { 281 /* A valid GDMA work request representing the data buffer. */ 282 struct gdma_wqe_request wqe_req; 283 284 void *buf_va; 285 dma_addr_t buf_dma_addr; 286 287 /* SGL of the buffer going to be sent has part of the work request. */ 288 u32 num_sge; 289 struct gdma_sge sgl[MAX_RX_WQE_SGL_ENTRIES]; 290 291 /* Required to store the result of mana_gd_post_work_request. 292 * gdma_posted_wqe_info.wqe_size_in_bu is required for progressing the 293 * work queue when the WQE is consumed. 294 */ 295 struct gdma_posted_wqe_info wqe_inf; 296 }; 297 298 struct mana_rxq { 299 struct gdma_queue *gdma_rq; 300 /* Cache the gdma receive queue id */ 301 u32 gdma_id; 302 303 /* Index of RQ in the vPort, not gdma receive queue id */ 304 u32 rxq_idx; 305 306 u32 datasize; 307 308 mana_handle_t rxobj; 309 310 struct mana_cq rx_cq; 311 312 struct completion fence_event; 313 314 struct net_device *ndev; 315 316 /* Total number of receive buffers to be allocated */ 317 u32 num_rx_buf; 318 319 u32 buf_index; 320 321 struct mana_stats_rx stats; 322 323 struct bpf_prog __rcu *bpf_prog; 324 struct xdp_rxq_info xdp_rxq; 325 struct page *xdp_save_page; 326 bool xdp_flush; 327 int xdp_rc; /* XDP redirect return code */ 328 329 /* MUST BE THE LAST MEMBER: 330 * Each receive buffer has an associated mana_recv_buf_oob. 331 */ 332 struct mana_recv_buf_oob rx_oobs[]; 333 }; 334 335 struct mana_tx_qp { 336 struct mana_txq txq; 337 338 struct mana_cq tx_cq; 339 340 mana_handle_t tx_object; 341 }; 342 343 struct mana_ethtool_stats { 344 u64 stop_queue; 345 u64 wake_queue; 346 u64 tx_cqes; 347 u64 tx_cqe_err; 348 u64 tx_cqe_unknown_type; 349 u64 rx_cqes; 350 u64 rx_coalesced_err; 351 u64 rx_cqe_unknown_type; 352 }; 353 354 struct mana_context { 355 struct gdma_dev *gdma_dev; 356 357 u16 num_ports; 358 359 struct mana_eq *eqs; 360 361 struct net_device *ports[MAX_PORTS_IN_MANA_DEV]; 362 }; 363 364 struct mana_port_context { 365 struct mana_context *ac; 366 struct net_device *ndev; 367 368 u8 mac_addr[ETH_ALEN]; 369 370 enum TRI_STATE rss_state; 371 372 mana_handle_t default_rxobj; 373 bool tx_shortform_allowed; 374 u16 tx_vp_offset; 375 376 struct mana_tx_qp *tx_qp; 377 378 /* Indirection Table for RX & TX. The values are queue indexes */ 379 u32 indir_table[MANA_INDIRECT_TABLE_SIZE]; 380 381 /* Indirection table containing RxObject Handles */ 382 mana_handle_t rxobj_table[MANA_INDIRECT_TABLE_SIZE]; 383 384 /* Hash key used by the NIC */ 385 u8 hashkey[MANA_HASH_KEY_SIZE]; 386 387 /* This points to an array of num_queues of RQ pointers. */ 388 struct mana_rxq **rxqs; 389 390 struct bpf_prog *bpf_prog; 391 392 /* Create num_queues EQs, SQs, SQ-CQs, RQs and RQ-CQs, respectively. */ 393 unsigned int max_queues; 394 unsigned int num_queues; 395 396 mana_handle_t port_handle; 397 mana_handle_t pf_filter_handle; 398 399 /* Mutex for sharing access to vport_use_count */ 400 struct mutex vport_mutex; 401 int vport_use_count; 402 403 u16 port_idx; 404 405 bool port_is_up; 406 bool port_st_save; /* Saved port state */ 407 408 struct mana_ethtool_stats eth_stats; 409 }; 410 411 netdev_tx_t mana_start_xmit(struct sk_buff *skb, struct net_device *ndev); 412 int mana_config_rss(struct mana_port_context *ac, enum TRI_STATE rx, 413 bool update_hash, bool update_tab); 414 415 int mana_alloc_queues(struct net_device *ndev); 416 int mana_attach(struct net_device *ndev); 417 int mana_detach(struct net_device *ndev, bool from_close); 418 419 int mana_probe(struct gdma_dev *gd, bool resuming); 420 void mana_remove(struct gdma_dev *gd, bool suspending); 421 422 void mana_xdp_tx(struct sk_buff *skb, struct net_device *ndev); 423 int mana_xdp_xmit(struct net_device *ndev, int n, struct xdp_frame **frames, 424 u32 flags); 425 u32 mana_run_xdp(struct net_device *ndev, struct mana_rxq *rxq, 426 struct xdp_buff *xdp, void *buf_va, uint pkt_len); 427 struct bpf_prog *mana_xdp_get(struct mana_port_context *apc); 428 void mana_chn_setxdp(struct mana_port_context *apc, struct bpf_prog *prog); 429 int mana_bpf(struct net_device *ndev, struct netdev_bpf *bpf); 430 431 extern const struct ethtool_ops mana_ethtool_ops; 432 433 /* A CQ can be created not associated with any EQ */ 434 #define GDMA_CQ_NO_EQ 0xffff 435 436 struct mana_obj_spec { 437 u32 queue_index; 438 u64 gdma_region; 439 u32 queue_size; 440 u32 attached_eq; 441 u32 modr_ctx_id; 442 }; 443 444 enum mana_command_code { 445 MANA_QUERY_DEV_CONFIG = 0x20001, 446 MANA_QUERY_GF_STAT = 0x20002, 447 MANA_CONFIG_VPORT_TX = 0x20003, 448 MANA_CREATE_WQ_OBJ = 0x20004, 449 MANA_DESTROY_WQ_OBJ = 0x20005, 450 MANA_FENCE_RQ = 0x20006, 451 MANA_CONFIG_VPORT_RX = 0x20007, 452 MANA_QUERY_VPORT_CONFIG = 0x20008, 453 454 /* Privileged commands for the PF mode */ 455 MANA_REGISTER_FILTER = 0x28000, 456 MANA_DEREGISTER_FILTER = 0x28001, 457 MANA_REGISTER_HW_PORT = 0x28003, 458 MANA_DEREGISTER_HW_PORT = 0x28004, 459 }; 460 461 /* Query Device Configuration */ 462 struct mana_query_device_cfg_req { 463 struct gdma_req_hdr hdr; 464 465 /* MANA Nic Driver Capability flags */ 466 u64 mn_drv_cap_flags1; 467 u64 mn_drv_cap_flags2; 468 u64 mn_drv_cap_flags3; 469 u64 mn_drv_cap_flags4; 470 471 u32 proto_major_ver; 472 u32 proto_minor_ver; 473 u32 proto_micro_ver; 474 475 u32 reserved; 476 }; /* HW DATA */ 477 478 struct mana_query_device_cfg_resp { 479 struct gdma_resp_hdr hdr; 480 481 u64 pf_cap_flags1; 482 u64 pf_cap_flags2; 483 u64 pf_cap_flags3; 484 u64 pf_cap_flags4; 485 486 u16 max_num_vports; 487 u16 reserved; 488 u32 max_num_eqs; 489 }; /* HW DATA */ 490 491 /* Query vPort Configuration */ 492 struct mana_query_vport_cfg_req { 493 struct gdma_req_hdr hdr; 494 u32 vport_index; 495 }; /* HW DATA */ 496 497 struct mana_query_vport_cfg_resp { 498 struct gdma_resp_hdr hdr; 499 u32 max_num_sq; 500 u32 max_num_rq; 501 u32 num_indirection_ent; 502 u32 reserved1; 503 u8 mac_addr[6]; 504 u8 reserved2[2]; 505 mana_handle_t vport; 506 }; /* HW DATA */ 507 508 /* Configure vPort */ 509 struct mana_config_vport_req { 510 struct gdma_req_hdr hdr; 511 mana_handle_t vport; 512 u32 pdid; 513 u32 doorbell_pageid; 514 }; /* HW DATA */ 515 516 struct mana_config_vport_resp { 517 struct gdma_resp_hdr hdr; 518 u16 tx_vport_offset; 519 u8 short_form_allowed; 520 u8 reserved; 521 }; /* HW DATA */ 522 523 /* Create WQ Object */ 524 struct mana_create_wqobj_req { 525 struct gdma_req_hdr hdr; 526 mana_handle_t vport; 527 u32 wq_type; 528 u32 reserved; 529 u64 wq_gdma_region; 530 u64 cq_gdma_region; 531 u32 wq_size; 532 u32 cq_size; 533 u32 cq_moderation_ctx_id; 534 u32 cq_parent_qid; 535 }; /* HW DATA */ 536 537 struct mana_create_wqobj_resp { 538 struct gdma_resp_hdr hdr; 539 u32 wq_id; 540 u32 cq_id; 541 mana_handle_t wq_obj; 542 }; /* HW DATA */ 543 544 /* Destroy WQ Object */ 545 struct mana_destroy_wqobj_req { 546 struct gdma_req_hdr hdr; 547 u32 wq_type; 548 u32 reserved; 549 mana_handle_t wq_obj_handle; 550 }; /* HW DATA */ 551 552 struct mana_destroy_wqobj_resp { 553 struct gdma_resp_hdr hdr; 554 }; /* HW DATA */ 555 556 /* Fence RQ */ 557 struct mana_fence_rq_req { 558 struct gdma_req_hdr hdr; 559 mana_handle_t wq_obj_handle; 560 }; /* HW DATA */ 561 562 struct mana_fence_rq_resp { 563 struct gdma_resp_hdr hdr; 564 }; /* HW DATA */ 565 566 /* Configure vPort Rx Steering */ 567 struct mana_cfg_rx_steer_req { 568 struct gdma_req_hdr hdr; 569 mana_handle_t vport; 570 u16 num_indir_entries; 571 u16 indir_tab_offset; 572 u32 rx_enable; 573 u32 rss_enable; 574 u8 update_default_rxobj; 575 u8 update_hashkey; 576 u8 update_indir_tab; 577 u8 reserved; 578 mana_handle_t default_rxobj; 579 u8 hashkey[MANA_HASH_KEY_SIZE]; 580 }; /* HW DATA */ 581 582 struct mana_cfg_rx_steer_resp { 583 struct gdma_resp_hdr hdr; 584 }; /* HW DATA */ 585 586 /* Register HW vPort */ 587 struct mana_register_hw_vport_req { 588 struct gdma_req_hdr hdr; 589 u16 attached_gfid; 590 u8 is_pf_default_vport; 591 u8 reserved1; 592 u8 allow_all_ether_types; 593 u8 reserved2; 594 u8 reserved3; 595 u8 reserved4; 596 }; /* HW DATA */ 597 598 struct mana_register_hw_vport_resp { 599 struct gdma_resp_hdr hdr; 600 mana_handle_t hw_vport_handle; 601 }; /* HW DATA */ 602 603 /* Deregister HW vPort */ 604 struct mana_deregister_hw_vport_req { 605 struct gdma_req_hdr hdr; 606 mana_handle_t hw_vport_handle; 607 }; /* HW DATA */ 608 609 struct mana_deregister_hw_vport_resp { 610 struct gdma_resp_hdr hdr; 611 }; /* HW DATA */ 612 613 /* Register filter */ 614 struct mana_register_filter_req { 615 struct gdma_req_hdr hdr; 616 mana_handle_t vport; 617 u8 mac_addr[6]; 618 u8 reserved1; 619 u8 reserved2; 620 u8 reserved3; 621 u8 reserved4; 622 u16 reserved5; 623 u32 reserved6; 624 u32 reserved7; 625 u32 reserved8; 626 }; /* HW DATA */ 627 628 struct mana_register_filter_resp { 629 struct gdma_resp_hdr hdr; 630 mana_handle_t filter_handle; 631 }; /* HW DATA */ 632 633 /* Deregister filter */ 634 struct mana_deregister_filter_req { 635 struct gdma_req_hdr hdr; 636 mana_handle_t filter_handle; 637 }; /* HW DATA */ 638 639 struct mana_deregister_filter_resp { 640 struct gdma_resp_hdr hdr; 641 }; /* HW DATA */ 642 643 #define MANA_MAX_NUM_QUEUES 64 644 645 #define MANA_SHORT_VPORT_OFFSET_MAX ((1U << 8) - 1) 646 647 struct mana_tx_package { 648 struct gdma_wqe_request wqe_req; 649 struct gdma_sge sgl_array[5]; 650 struct gdma_sge *sgl_ptr; 651 652 struct mana_tx_oob tx_oob; 653 654 struct gdma_posted_wqe_info wqe_info; 655 }; 656 657 int mana_create_wq_obj(struct mana_port_context *apc, 658 mana_handle_t vport, 659 u32 wq_type, struct mana_obj_spec *wq_spec, 660 struct mana_obj_spec *cq_spec, 661 mana_handle_t *wq_obj); 662 663 void mana_destroy_wq_obj(struct mana_port_context *apc, u32 wq_type, 664 mana_handle_t wq_obj); 665 666 int mana_cfg_vport(struct mana_port_context *apc, u32 protection_dom_id, 667 u32 doorbell_pg_id); 668 void mana_uncfg_vport(struct mana_port_context *apc); 669 #endif /* _MANA_H */ 670