1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2016-2018 Microsoft Corporation 3 * Copyright(c) 2013-2016 Brocade Communications Systems, Inc. 4 * All rights reserved. 5 */ 6 7 #include <stdint.h> 8 #include <string.h> 9 #include <stdio.h> 10 #include <errno.h> 11 #include <unistd.h> 12 13 #include <rte_ethdev.h> 14 #include <rte_memcpy.h> 15 #include <rte_string_fns.h> 16 #include <rte_memzone.h> 17 #include <rte_devargs.h> 18 #include <rte_malloc.h> 19 #include <rte_kvargs.h> 20 #include <rte_atomic.h> 21 #include <rte_branch_prediction.h> 22 #include <rte_ether.h> 23 #include <rte_ethdev_driver.h> 24 #include <rte_cycles.h> 25 #include <rte_errno.h> 26 #include <rte_memory.h> 27 #include <rte_eal.h> 28 #include <rte_dev.h> 29 #include <rte_bus_vmbus.h> 30 31 #include "hn_logs.h" 32 #include "hn_var.h" 33 #include "hn_rndis.h" 34 #include "hn_nvs.h" 35 #include "ndis.h" 36 37 #define HN_TX_OFFLOAD_CAPS (DEV_TX_OFFLOAD_IPV4_CKSUM | \ 38 DEV_TX_OFFLOAD_TCP_CKSUM | \ 39 DEV_TX_OFFLOAD_UDP_CKSUM | \ 40 DEV_TX_OFFLOAD_TCP_TSO | \ 41 DEV_TX_OFFLOAD_MULTI_SEGS | \ 42 DEV_TX_OFFLOAD_VLAN_INSERT) 43 44 #define HN_RX_OFFLOAD_CAPS (DEV_RX_OFFLOAD_CHECKSUM | \ 45 DEV_RX_OFFLOAD_VLAN_STRIP | \ 46 DEV_RX_OFFLOAD_RSS_HASH) 47 48 int hn_logtype_init; 49 int hn_logtype_driver; 50 51 struct hn_xstats_name_off { 52 char name[RTE_ETH_XSTATS_NAME_SIZE]; 53 unsigned int offset; 54 }; 55 56 static const struct hn_xstats_name_off hn_stat_strings[] = { 57 { "good_packets", offsetof(struct hn_stats, packets) }, 58 { "good_bytes", offsetof(struct hn_stats, bytes) }, 59 { "errors", offsetof(struct hn_stats, errors) }, 60 { "ring full", offsetof(struct hn_stats, ring_full) }, 61 { "multicast_packets", offsetof(struct hn_stats, multicast) }, 62 { "broadcast_packets", offsetof(struct hn_stats, broadcast) }, 63 { "undersize_packets", offsetof(struct hn_stats, size_bins[0]) }, 64 { "size_64_packets", offsetof(struct hn_stats, size_bins[1]) }, 65 { "size_65_127_packets", offsetof(struct hn_stats, size_bins[2]) }, 66 { "size_128_255_packets", offsetof(struct hn_stats, size_bins[3]) }, 67 { "size_256_511_packets", offsetof(struct hn_stats, size_bins[4]) }, 68 { "size_512_1023_packets", offsetof(struct hn_stats, size_bins[5]) }, 69 { "size_1024_1518_packets", offsetof(struct hn_stats, size_bins[6]) }, 70 { "size_1519_max_packets", offsetof(struct hn_stats, size_bins[7]) }, 71 }; 72 73 /* The default RSS key. 74 * This value is the same as MLX5 so that flows will be 75 * received on same path for both VF and synthetic NIC. 76 */ 77 static const uint8_t rss_default_key[NDIS_HASH_KEYSIZE_TOEPLITZ] = { 78 0x2c, 0xc6, 0x81, 0xd1, 0x5b, 0xdb, 0xf4, 0xf7, 79 0xfc, 0xa2, 0x83, 0x19, 0xdb, 0x1a, 0x3e, 0x94, 80 0x6b, 0x9e, 0x38, 0xd9, 0x2c, 0x9c, 0x03, 0xd1, 81 0xad, 0x99, 0x44, 0xa7, 0xd9, 0x56, 0x3d, 0x59, 82 0x06, 0x3c, 0x25, 0xf3, 0xfc, 0x1f, 0xdc, 0x2a, 83 }; 84 85 static struct rte_eth_dev * 86 eth_dev_vmbus_allocate(struct rte_vmbus_device *dev, size_t private_data_size) 87 { 88 struct rte_eth_dev *eth_dev; 89 const char *name; 90 91 if (!dev) 92 return NULL; 93 94 name = dev->device.name; 95 96 if (rte_eal_process_type() == RTE_PROC_PRIMARY) { 97 eth_dev = rte_eth_dev_allocate(name); 98 if (!eth_dev) { 99 PMD_DRV_LOG(NOTICE, "can not allocate rte ethdev"); 100 return NULL; 101 } 102 103 if (private_data_size) { 104 eth_dev->data->dev_private = 105 rte_zmalloc_socket(name, private_data_size, 106 RTE_CACHE_LINE_SIZE, dev->device.numa_node); 107 if (!eth_dev->data->dev_private) { 108 PMD_DRV_LOG(NOTICE, "can not allocate driver data"); 109 rte_eth_dev_release_port(eth_dev); 110 return NULL; 111 } 112 } 113 } else { 114 eth_dev = rte_eth_dev_attach_secondary(name); 115 if (!eth_dev) { 116 PMD_DRV_LOG(NOTICE, "can not attach secondary"); 117 return NULL; 118 } 119 } 120 121 eth_dev->device = &dev->device; 122 123 /* interrupt is simulated */ 124 dev->intr_handle.type = RTE_INTR_HANDLE_EXT; 125 eth_dev->data->dev_flags |= RTE_ETH_DEV_INTR_LSC; 126 eth_dev->intr_handle = &dev->intr_handle; 127 128 /* allow ethdev to remove on close */ 129 eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE; 130 131 return eth_dev; 132 } 133 134 static void 135 eth_dev_vmbus_release(struct rte_eth_dev *eth_dev) 136 { 137 /* free ether device */ 138 rte_eth_dev_release_port(eth_dev); 139 140 eth_dev->device = NULL; 141 eth_dev->intr_handle = NULL; 142 } 143 144 /* handle "latency=X" from devargs */ 145 static int hn_set_latency(const char *key, const char *value, void *opaque) 146 { 147 struct hn_data *hv = opaque; 148 char *endp = NULL; 149 unsigned long lat; 150 151 errno = 0; 152 lat = strtoul(value, &endp, 0); 153 154 if (*value == '\0' || *endp != '\0') { 155 PMD_DRV_LOG(ERR, "invalid parameter %s=%s", key, value); 156 return -EINVAL; 157 } 158 159 PMD_DRV_LOG(DEBUG, "set latency %lu usec", lat); 160 161 hv->latency = lat * 1000; /* usec to nsec */ 162 return 0; 163 } 164 165 /* Parse device arguments */ 166 static int hn_parse_args(const struct rte_eth_dev *dev) 167 { 168 struct hn_data *hv = dev->data->dev_private; 169 struct rte_devargs *devargs = dev->device->devargs; 170 static const char * const valid_keys[] = { 171 "latency", 172 NULL 173 }; 174 struct rte_kvargs *kvlist; 175 int ret; 176 177 if (!devargs) 178 return 0; 179 180 PMD_INIT_LOG(DEBUG, "device args %s %s", 181 devargs->name, devargs->args); 182 183 kvlist = rte_kvargs_parse(devargs->args, valid_keys); 184 if (!kvlist) { 185 PMD_DRV_LOG(NOTICE, "invalid parameters"); 186 return -EINVAL; 187 } 188 189 ret = rte_kvargs_process(kvlist, "latency", hn_set_latency, hv); 190 if (ret) 191 PMD_DRV_LOG(ERR, "Unable to process latency arg\n"); 192 193 rte_kvargs_free(kvlist); 194 return ret; 195 } 196 197 /* Update link status. 198 * Note: the DPDK definition of "wait_to_complete" 199 * means block this call until link is up. 200 * which is not worth supporting. 201 */ 202 int 203 hn_dev_link_update(struct rte_eth_dev *dev, 204 int wait_to_complete) 205 { 206 struct hn_data *hv = dev->data->dev_private; 207 struct rte_eth_link link, old; 208 int error; 209 210 old = dev->data->dev_link; 211 212 error = hn_rndis_get_linkstatus(hv); 213 if (error) 214 return error; 215 216 hn_rndis_get_linkspeed(hv); 217 218 hn_vf_link_update(dev, wait_to_complete); 219 220 link = (struct rte_eth_link) { 221 .link_duplex = ETH_LINK_FULL_DUPLEX, 222 .link_autoneg = ETH_LINK_SPEED_FIXED, 223 .link_speed = hv->link_speed / 10000, 224 }; 225 226 if (hv->link_status == NDIS_MEDIA_STATE_CONNECTED) 227 link.link_status = ETH_LINK_UP; 228 else 229 link.link_status = ETH_LINK_DOWN; 230 231 if (old.link_status == link.link_status) 232 return 0; 233 234 PMD_INIT_LOG(DEBUG, "Port %d is %s", dev->data->port_id, 235 (link.link_status == ETH_LINK_UP) ? "up" : "down"); 236 237 return rte_eth_linkstatus_set(dev, &link); 238 } 239 240 static int hn_dev_info_get(struct rte_eth_dev *dev, 241 struct rte_eth_dev_info *dev_info) 242 { 243 struct hn_data *hv = dev->data->dev_private; 244 int rc; 245 246 dev_info->speed_capa = ETH_LINK_SPEED_10G; 247 dev_info->min_rx_bufsize = HN_MIN_RX_BUF_SIZE; 248 dev_info->max_rx_pktlen = HN_MAX_XFER_LEN; 249 dev_info->max_mac_addrs = 1; 250 251 dev_info->hash_key_size = NDIS_HASH_KEYSIZE_TOEPLITZ; 252 dev_info->flow_type_rss_offloads = hv->rss_offloads; 253 dev_info->reta_size = ETH_RSS_RETA_SIZE_128; 254 255 dev_info->max_rx_queues = hv->max_queues; 256 dev_info->max_tx_queues = hv->max_queues; 257 258 dev_info->tx_desc_lim.nb_min = 1; 259 dev_info->tx_desc_lim.nb_max = 4096; 260 261 if (rte_eal_process_type() != RTE_PROC_PRIMARY) 262 return 0; 263 264 /* fills in rx and tx offload capability */ 265 rc = hn_rndis_get_offload(hv, dev_info); 266 if (rc != 0) 267 return rc; 268 269 /* merges the offload and queues of vf */ 270 return hn_vf_info_get(hv, dev_info); 271 } 272 273 static int hn_rss_reta_update(struct rte_eth_dev *dev, 274 struct rte_eth_rss_reta_entry64 *reta_conf, 275 uint16_t reta_size) 276 { 277 struct hn_data *hv = dev->data->dev_private; 278 unsigned int i; 279 int err; 280 281 PMD_INIT_FUNC_TRACE(); 282 283 if (reta_size != NDIS_HASH_INDCNT) { 284 PMD_DRV_LOG(ERR, "Hash lookup table size does not match NDIS"); 285 return -EINVAL; 286 } 287 288 for (i = 0; i < NDIS_HASH_INDCNT; i++) { 289 uint16_t idx = i / RTE_RETA_GROUP_SIZE; 290 uint16_t shift = i % RTE_RETA_GROUP_SIZE; 291 uint64_t mask = (uint64_t)1 << shift; 292 293 if (reta_conf[idx].mask & mask) 294 hv->rss_ind[i] = reta_conf[idx].reta[shift]; 295 } 296 297 err = hn_rndis_conf_rss(hv, NDIS_RSS_FLAG_DISABLE); 298 if (err) { 299 PMD_DRV_LOG(NOTICE, 300 "rss disable failed"); 301 return err; 302 } 303 304 err = hn_rndis_conf_rss(hv, 0); 305 if (err) { 306 PMD_DRV_LOG(NOTICE, 307 "reta reconfig failed"); 308 return err; 309 } 310 311 return hn_vf_reta_hash_update(dev, reta_conf, reta_size); 312 } 313 314 static int hn_rss_reta_query(struct rte_eth_dev *dev, 315 struct rte_eth_rss_reta_entry64 *reta_conf, 316 uint16_t reta_size) 317 { 318 struct hn_data *hv = dev->data->dev_private; 319 unsigned int i; 320 321 PMD_INIT_FUNC_TRACE(); 322 323 if (reta_size != NDIS_HASH_INDCNT) { 324 PMD_DRV_LOG(ERR, "Hash lookup table size does not match NDIS"); 325 return -EINVAL; 326 } 327 328 for (i = 0; i < NDIS_HASH_INDCNT; i++) { 329 uint16_t idx = i / RTE_RETA_GROUP_SIZE; 330 uint16_t shift = i % RTE_RETA_GROUP_SIZE; 331 uint64_t mask = (uint64_t)1 << shift; 332 333 if (reta_conf[idx].mask & mask) 334 reta_conf[idx].reta[shift] = hv->rss_ind[i]; 335 } 336 return 0; 337 } 338 339 static void hn_rss_hash_init(struct hn_data *hv, 340 const struct rte_eth_rss_conf *rss_conf) 341 { 342 /* Convert from DPDK RSS hash flags to NDIS hash flags */ 343 hv->rss_hash = NDIS_HASH_FUNCTION_TOEPLITZ; 344 345 if (rss_conf->rss_hf & ETH_RSS_IPV4) 346 hv->rss_hash |= NDIS_HASH_IPV4; 347 if (rss_conf->rss_hf & ETH_RSS_NONFRAG_IPV4_TCP) 348 hv->rss_hash |= NDIS_HASH_TCP_IPV4; 349 if (rss_conf->rss_hf & ETH_RSS_IPV6) 350 hv->rss_hash |= NDIS_HASH_IPV6; 351 if (rss_conf->rss_hf & ETH_RSS_IPV6_EX) 352 hv->rss_hash |= NDIS_HASH_IPV6_EX; 353 if (rss_conf->rss_hf & ETH_RSS_NONFRAG_IPV6_TCP) 354 hv->rss_hash |= NDIS_HASH_TCP_IPV6; 355 if (rss_conf->rss_hf & ETH_RSS_IPV6_TCP_EX) 356 hv->rss_hash |= NDIS_HASH_TCP_IPV6_EX; 357 358 memcpy(hv->rss_key, rss_conf->rss_key ? : rss_default_key, 359 NDIS_HASH_KEYSIZE_TOEPLITZ); 360 } 361 362 static int hn_rss_hash_update(struct rte_eth_dev *dev, 363 struct rte_eth_rss_conf *rss_conf) 364 { 365 struct hn_data *hv = dev->data->dev_private; 366 int err; 367 368 PMD_INIT_FUNC_TRACE(); 369 370 err = hn_rndis_conf_rss(hv, NDIS_RSS_FLAG_DISABLE); 371 if (err) { 372 PMD_DRV_LOG(NOTICE, 373 "rss disable failed"); 374 return err; 375 } 376 377 hn_rss_hash_init(hv, rss_conf); 378 379 if (rss_conf->rss_hf != 0) { 380 err = hn_rndis_conf_rss(hv, 0); 381 if (err) { 382 PMD_DRV_LOG(NOTICE, 383 "rss reconfig failed (RSS disabled)"); 384 return err; 385 } 386 } 387 388 return hn_vf_rss_hash_update(dev, rss_conf); 389 } 390 391 static int hn_rss_hash_conf_get(struct rte_eth_dev *dev, 392 struct rte_eth_rss_conf *rss_conf) 393 { 394 struct hn_data *hv = dev->data->dev_private; 395 396 PMD_INIT_FUNC_TRACE(); 397 398 if (hv->ndis_ver < NDIS_VERSION_6_20) { 399 PMD_DRV_LOG(DEBUG, "RSS not supported on this host"); 400 return -EOPNOTSUPP; 401 } 402 403 rss_conf->rss_key_len = NDIS_HASH_KEYSIZE_TOEPLITZ; 404 if (rss_conf->rss_key) 405 memcpy(rss_conf->rss_key, hv->rss_key, 406 NDIS_HASH_KEYSIZE_TOEPLITZ); 407 408 rss_conf->rss_hf = 0; 409 if (hv->rss_hash & NDIS_HASH_IPV4) 410 rss_conf->rss_hf |= ETH_RSS_IPV4; 411 412 if (hv->rss_hash & NDIS_HASH_TCP_IPV4) 413 rss_conf->rss_hf |= ETH_RSS_NONFRAG_IPV4_TCP; 414 415 if (hv->rss_hash & NDIS_HASH_IPV6) 416 rss_conf->rss_hf |= ETH_RSS_IPV6; 417 418 if (hv->rss_hash & NDIS_HASH_IPV6_EX) 419 rss_conf->rss_hf |= ETH_RSS_IPV6_EX; 420 421 if (hv->rss_hash & NDIS_HASH_TCP_IPV6) 422 rss_conf->rss_hf |= ETH_RSS_NONFRAG_IPV6_TCP; 423 424 if (hv->rss_hash & NDIS_HASH_TCP_IPV6_EX) 425 rss_conf->rss_hf |= ETH_RSS_IPV6_TCP_EX; 426 427 return 0; 428 } 429 430 static int 431 hn_dev_promiscuous_enable(struct rte_eth_dev *dev) 432 { 433 struct hn_data *hv = dev->data->dev_private; 434 435 hn_rndis_set_rxfilter(hv, NDIS_PACKET_TYPE_PROMISCUOUS); 436 return hn_vf_promiscuous_enable(dev); 437 } 438 439 static int 440 hn_dev_promiscuous_disable(struct rte_eth_dev *dev) 441 { 442 struct hn_data *hv = dev->data->dev_private; 443 uint32_t filter; 444 445 filter = NDIS_PACKET_TYPE_DIRECTED | NDIS_PACKET_TYPE_BROADCAST; 446 if (dev->data->all_multicast) 447 filter |= NDIS_PACKET_TYPE_ALL_MULTICAST; 448 hn_rndis_set_rxfilter(hv, filter); 449 return hn_vf_promiscuous_disable(dev); 450 } 451 452 static int 453 hn_dev_allmulticast_enable(struct rte_eth_dev *dev) 454 { 455 struct hn_data *hv = dev->data->dev_private; 456 457 hn_rndis_set_rxfilter(hv, NDIS_PACKET_TYPE_DIRECTED | 458 NDIS_PACKET_TYPE_ALL_MULTICAST | 459 NDIS_PACKET_TYPE_BROADCAST); 460 return hn_vf_allmulticast_enable(dev); 461 } 462 463 static int 464 hn_dev_allmulticast_disable(struct rte_eth_dev *dev) 465 { 466 struct hn_data *hv = dev->data->dev_private; 467 468 hn_rndis_set_rxfilter(hv, NDIS_PACKET_TYPE_DIRECTED | 469 NDIS_PACKET_TYPE_BROADCAST); 470 return hn_vf_allmulticast_disable(dev); 471 } 472 473 static int 474 hn_dev_mc_addr_list(struct rte_eth_dev *dev, 475 struct rte_ether_addr *mc_addr_set, 476 uint32_t nb_mc_addr) 477 { 478 /* No filtering on the synthetic path, but can do it on VF */ 479 return hn_vf_mc_addr_list(dev, mc_addr_set, nb_mc_addr); 480 } 481 482 /* Setup shared rx/tx queue data */ 483 static int hn_subchan_configure(struct hn_data *hv, 484 uint32_t subchan) 485 { 486 struct vmbus_channel *primary = hn_primary_chan(hv); 487 int err; 488 unsigned int retry = 0; 489 490 PMD_DRV_LOG(DEBUG, 491 "open %u subchannels", subchan); 492 493 /* Send create sub channels command */ 494 err = hn_nvs_alloc_subchans(hv, &subchan); 495 if (err) 496 return err; 497 498 while (subchan > 0) { 499 struct vmbus_channel *new_sc; 500 uint16_t chn_index; 501 502 err = rte_vmbus_subchan_open(primary, &new_sc); 503 if (err == -ENOENT && ++retry < 1000) { 504 /* This can happen if not ready yet */ 505 rte_delay_ms(10); 506 continue; 507 } 508 509 if (err) { 510 PMD_DRV_LOG(ERR, 511 "open subchannel failed: %d", err); 512 return err; 513 } 514 515 rte_vmbus_set_latency(hv->vmbus, new_sc, hv->latency); 516 517 retry = 0; 518 chn_index = rte_vmbus_sub_channel_index(new_sc); 519 if (chn_index == 0 || chn_index > hv->max_queues) { 520 PMD_DRV_LOG(ERR, 521 "Invalid subchannel offermsg channel %u", 522 chn_index); 523 return -EIO; 524 } 525 526 PMD_DRV_LOG(DEBUG, "new sub channel %u", chn_index); 527 hv->channels[chn_index] = new_sc; 528 --subchan; 529 } 530 531 return err; 532 } 533 534 static int hn_dev_configure(struct rte_eth_dev *dev) 535 { 536 struct rte_eth_conf *dev_conf = &dev->data->dev_conf; 537 struct rte_eth_rss_conf *rss_conf = &dev_conf->rx_adv_conf.rss_conf; 538 const struct rte_eth_rxmode *rxmode = &dev_conf->rxmode; 539 const struct rte_eth_txmode *txmode = &dev_conf->txmode; 540 struct hn_data *hv = dev->data->dev_private; 541 uint64_t unsupported; 542 int i, err, subchan; 543 544 PMD_INIT_FUNC_TRACE(); 545 546 if (dev_conf->rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG) 547 dev_conf->rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH; 548 549 unsupported = txmode->offloads & ~HN_TX_OFFLOAD_CAPS; 550 if (unsupported) { 551 PMD_DRV_LOG(NOTICE, 552 "unsupported TX offload: %#" PRIx64, 553 unsupported); 554 return -EINVAL; 555 } 556 557 unsupported = rxmode->offloads & ~HN_RX_OFFLOAD_CAPS; 558 if (unsupported) { 559 PMD_DRV_LOG(NOTICE, 560 "unsupported RX offload: %#" PRIx64, 561 rxmode->offloads); 562 return -EINVAL; 563 } 564 565 hv->vlan_strip = !!(rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP); 566 567 err = hn_rndis_conf_offload(hv, txmode->offloads, 568 rxmode->offloads); 569 if (err) { 570 PMD_DRV_LOG(NOTICE, 571 "offload configure failed"); 572 return err; 573 } 574 575 hv->num_queues = RTE_MAX(dev->data->nb_rx_queues, 576 dev->data->nb_tx_queues); 577 578 for (i = 0; i < NDIS_HASH_INDCNT; i++) 579 hv->rss_ind[i] = i % dev->data->nb_rx_queues; 580 581 hn_rss_hash_init(hv, rss_conf); 582 583 subchan = hv->num_queues - 1; 584 if (subchan > 0) { 585 err = hn_subchan_configure(hv, subchan); 586 if (err) { 587 PMD_DRV_LOG(NOTICE, 588 "subchannel configuration failed"); 589 return err; 590 } 591 592 err = hn_rndis_conf_rss(hv, NDIS_RSS_FLAG_DISABLE); 593 if (err) { 594 PMD_DRV_LOG(NOTICE, 595 "rss disable failed"); 596 return err; 597 } 598 599 if (rss_conf->rss_hf != 0) { 600 err = hn_rndis_conf_rss(hv, 0); 601 if (err) { 602 PMD_DRV_LOG(NOTICE, 603 "initial RSS config failed"); 604 return err; 605 } 606 } 607 } 608 609 return hn_vf_configure(dev, dev_conf); 610 } 611 612 static int hn_dev_stats_get(struct rte_eth_dev *dev, 613 struct rte_eth_stats *stats) 614 { 615 unsigned int i; 616 617 hn_vf_stats_get(dev, stats); 618 619 for (i = 0; i < dev->data->nb_tx_queues; i++) { 620 const struct hn_tx_queue *txq = dev->data->tx_queues[i]; 621 622 if (!txq) 623 continue; 624 625 stats->opackets += txq->stats.packets; 626 stats->obytes += txq->stats.bytes; 627 stats->oerrors += txq->stats.errors; 628 629 if (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) { 630 stats->q_opackets[i] = txq->stats.packets; 631 stats->q_obytes[i] = txq->stats.bytes; 632 } 633 } 634 635 for (i = 0; i < dev->data->nb_rx_queues; i++) { 636 const struct hn_rx_queue *rxq = dev->data->rx_queues[i]; 637 638 if (!rxq) 639 continue; 640 641 stats->ipackets += rxq->stats.packets; 642 stats->ibytes += rxq->stats.bytes; 643 stats->ierrors += rxq->stats.errors; 644 stats->imissed += rxq->stats.ring_full; 645 646 if (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) { 647 stats->q_ipackets[i] = rxq->stats.packets; 648 stats->q_ibytes[i] = rxq->stats.bytes; 649 } 650 } 651 652 stats->rx_nombuf = dev->data->rx_mbuf_alloc_failed; 653 return 0; 654 } 655 656 static int 657 hn_dev_stats_reset(struct rte_eth_dev *dev) 658 { 659 unsigned int i; 660 661 PMD_INIT_FUNC_TRACE(); 662 663 for (i = 0; i < dev->data->nb_tx_queues; i++) { 664 struct hn_tx_queue *txq = dev->data->tx_queues[i]; 665 666 if (!txq) 667 continue; 668 memset(&txq->stats, 0, sizeof(struct hn_stats)); 669 } 670 671 for (i = 0; i < dev->data->nb_rx_queues; i++) { 672 struct hn_rx_queue *rxq = dev->data->rx_queues[i]; 673 674 if (!rxq) 675 continue; 676 677 memset(&rxq->stats, 0, sizeof(struct hn_stats)); 678 } 679 680 return 0; 681 } 682 683 static int 684 hn_dev_xstats_reset(struct rte_eth_dev *dev) 685 { 686 int ret; 687 688 ret = hn_dev_stats_reset(dev); 689 if (ret != 0) 690 return 0; 691 692 return hn_vf_xstats_reset(dev); 693 } 694 695 static int 696 hn_dev_xstats_count(struct rte_eth_dev *dev) 697 { 698 int ret, count; 699 700 count = dev->data->nb_tx_queues * RTE_DIM(hn_stat_strings); 701 count += dev->data->nb_rx_queues * RTE_DIM(hn_stat_strings); 702 703 ret = hn_vf_xstats_get_names(dev, NULL, 0); 704 if (ret < 0) 705 return ret; 706 707 return count + ret; 708 } 709 710 static int 711 hn_dev_xstats_get_names(struct rte_eth_dev *dev, 712 struct rte_eth_xstat_name *xstats_names, 713 unsigned int limit) 714 { 715 unsigned int i, t, count = 0; 716 int ret; 717 718 if (!xstats_names) 719 return hn_dev_xstats_count(dev); 720 721 /* Note: limit checked in rte_eth_xstats_names() */ 722 for (i = 0; i < dev->data->nb_tx_queues; i++) { 723 const struct hn_tx_queue *txq = dev->data->tx_queues[i]; 724 725 if (!txq) 726 continue; 727 728 if (count >= limit) 729 break; 730 731 for (t = 0; t < RTE_DIM(hn_stat_strings); t++) 732 snprintf(xstats_names[count++].name, 733 RTE_ETH_XSTATS_NAME_SIZE, 734 "tx_q%u_%s", i, hn_stat_strings[t].name); 735 } 736 737 for (i = 0; i < dev->data->nb_rx_queues; i++) { 738 const struct hn_rx_queue *rxq = dev->data->rx_queues[i]; 739 740 if (!rxq) 741 continue; 742 743 if (count >= limit) 744 break; 745 746 for (t = 0; t < RTE_DIM(hn_stat_strings); t++) 747 snprintf(xstats_names[count++].name, 748 RTE_ETH_XSTATS_NAME_SIZE, 749 "rx_q%u_%s", i, 750 hn_stat_strings[t].name); 751 } 752 753 ret = hn_vf_xstats_get_names(dev, xstats_names + count, 754 limit - count); 755 if (ret < 0) 756 return ret; 757 758 return count + ret; 759 } 760 761 static int 762 hn_dev_xstats_get(struct rte_eth_dev *dev, 763 struct rte_eth_xstat *xstats, 764 unsigned int n) 765 { 766 unsigned int i, t, count = 0; 767 const unsigned int nstats = hn_dev_xstats_count(dev); 768 const char *stats; 769 int ret; 770 771 PMD_INIT_FUNC_TRACE(); 772 773 if (n < nstats) 774 return nstats; 775 776 for (i = 0; i < dev->data->nb_tx_queues; i++) { 777 const struct hn_tx_queue *txq = dev->data->tx_queues[i]; 778 779 if (!txq) 780 continue; 781 782 stats = (const char *)&txq->stats; 783 for (t = 0; t < RTE_DIM(hn_stat_strings); t++, count++) { 784 xstats[count].id = count; 785 xstats[count].value = *(const uint64_t *) 786 (stats + hn_stat_strings[t].offset); 787 } 788 } 789 790 for (i = 0; i < dev->data->nb_rx_queues; i++) { 791 const struct hn_rx_queue *rxq = dev->data->rx_queues[i]; 792 793 if (!rxq) 794 continue; 795 796 stats = (const char *)&rxq->stats; 797 for (t = 0; t < RTE_DIM(hn_stat_strings); t++, count++) { 798 xstats[count].id = count; 799 xstats[count].value = *(const uint64_t *) 800 (stats + hn_stat_strings[t].offset); 801 } 802 } 803 804 ret = hn_vf_xstats_get(dev, xstats, count, n); 805 if (ret < 0) 806 return ret; 807 808 return count + ret; 809 } 810 811 static int 812 hn_dev_start(struct rte_eth_dev *dev) 813 { 814 struct hn_data *hv = dev->data->dev_private; 815 int error; 816 817 PMD_INIT_FUNC_TRACE(); 818 819 error = hn_rndis_set_rxfilter(hv, 820 NDIS_PACKET_TYPE_BROADCAST | 821 NDIS_PACKET_TYPE_ALL_MULTICAST | 822 NDIS_PACKET_TYPE_DIRECTED); 823 if (error) 824 return error; 825 826 error = hn_vf_start(dev); 827 if (error) 828 hn_rndis_set_rxfilter(hv, 0); 829 830 /* Initialize Link state */ 831 if (error == 0) 832 hn_dev_link_update(dev, 0); 833 834 return error; 835 } 836 837 static void 838 hn_dev_stop(struct rte_eth_dev *dev) 839 { 840 struct hn_data *hv = dev->data->dev_private; 841 842 PMD_INIT_FUNC_TRACE(); 843 844 hn_rndis_set_rxfilter(hv, 0); 845 hn_vf_stop(dev); 846 } 847 848 static void 849 hn_dev_close(struct rte_eth_dev *dev) 850 { 851 PMD_INIT_FUNC_TRACE(); 852 853 hn_vf_close(dev); 854 hn_dev_free_queues(dev); 855 } 856 857 static const struct eth_dev_ops hn_eth_dev_ops = { 858 .dev_configure = hn_dev_configure, 859 .dev_start = hn_dev_start, 860 .dev_stop = hn_dev_stop, 861 .dev_close = hn_dev_close, 862 .dev_infos_get = hn_dev_info_get, 863 .txq_info_get = hn_dev_tx_queue_info, 864 .rxq_info_get = hn_dev_rx_queue_info, 865 .dev_supported_ptypes_get = hn_vf_supported_ptypes, 866 .promiscuous_enable = hn_dev_promiscuous_enable, 867 .promiscuous_disable = hn_dev_promiscuous_disable, 868 .allmulticast_enable = hn_dev_allmulticast_enable, 869 .allmulticast_disable = hn_dev_allmulticast_disable, 870 .set_mc_addr_list = hn_dev_mc_addr_list, 871 .reta_update = hn_rss_reta_update, 872 .reta_query = hn_rss_reta_query, 873 .rss_hash_update = hn_rss_hash_update, 874 .rss_hash_conf_get = hn_rss_hash_conf_get, 875 .tx_queue_setup = hn_dev_tx_queue_setup, 876 .tx_queue_release = hn_dev_tx_queue_release, 877 .tx_done_cleanup = hn_dev_tx_done_cleanup, 878 .rx_queue_setup = hn_dev_rx_queue_setup, 879 .rx_queue_release = hn_dev_rx_queue_release, 880 .link_update = hn_dev_link_update, 881 .stats_get = hn_dev_stats_get, 882 .stats_reset = hn_dev_stats_reset, 883 .xstats_get = hn_dev_xstats_get, 884 .xstats_get_names = hn_dev_xstats_get_names, 885 .xstats_reset = hn_dev_xstats_reset, 886 }; 887 888 /* 889 * Setup connection between PMD and kernel. 890 */ 891 static int 892 hn_attach(struct hn_data *hv, unsigned int mtu) 893 { 894 int error; 895 896 /* Attach NVS */ 897 error = hn_nvs_attach(hv, mtu); 898 if (error) 899 goto failed_nvs; 900 901 /* Attach RNDIS */ 902 error = hn_rndis_attach(hv); 903 if (error) 904 goto failed_rndis; 905 906 /* 907 * NOTE: 908 * Under certain conditions on certain versions of Hyper-V, 909 * the RNDIS rxfilter is _not_ zero on the hypervisor side 910 * after the successful RNDIS initialization. 911 */ 912 hn_rndis_set_rxfilter(hv, NDIS_PACKET_TYPE_NONE); 913 return 0; 914 failed_rndis: 915 hn_nvs_detach(hv); 916 failed_nvs: 917 return error; 918 } 919 920 static void 921 hn_detach(struct hn_data *hv) 922 { 923 hn_nvs_detach(hv); 924 hn_rndis_detach(hv); 925 } 926 927 static int 928 eth_hn_dev_init(struct rte_eth_dev *eth_dev) 929 { 930 struct hn_data *hv = eth_dev->data->dev_private; 931 struct rte_device *device = eth_dev->device; 932 struct rte_vmbus_device *vmbus; 933 unsigned int rxr_cnt; 934 int err, max_chan; 935 936 PMD_INIT_FUNC_TRACE(); 937 938 vmbus = container_of(device, struct rte_vmbus_device, device); 939 eth_dev->dev_ops = &hn_eth_dev_ops; 940 eth_dev->tx_pkt_burst = &hn_xmit_pkts; 941 eth_dev->rx_pkt_burst = &hn_recv_pkts; 942 943 /* 944 * for secondary processes, we don't initialize any further as primary 945 * has already done this work. 946 */ 947 if (rte_eal_process_type() != RTE_PROC_PRIMARY) 948 return 0; 949 950 /* Since Hyper-V only supports one MAC address */ 951 eth_dev->data->mac_addrs = rte_calloc("hv_mac", HN_MAX_MAC_ADDRS, 952 sizeof(struct rte_ether_addr), 0); 953 if (eth_dev->data->mac_addrs == NULL) { 954 PMD_INIT_LOG(ERR, 955 "Failed to allocate memory store MAC addresses"); 956 return -ENOMEM; 957 } 958 959 hv->vmbus = vmbus; 960 hv->rxbuf_res = &vmbus->resource[HV_RECV_BUF_MAP]; 961 hv->chim_res = &vmbus->resource[HV_SEND_BUF_MAP]; 962 hv->port_id = eth_dev->data->port_id; 963 hv->latency = HN_CHAN_LATENCY_NS; 964 hv->max_queues = 1; 965 rte_rwlock_init(&hv->vf_lock); 966 hv->vf_port = HN_INVALID_PORT; 967 968 err = hn_parse_args(eth_dev); 969 if (err) 970 return err; 971 972 strlcpy(hv->owner.name, eth_dev->device->name, 973 RTE_ETH_MAX_OWNER_NAME_LEN); 974 err = rte_eth_dev_owner_new(&hv->owner.id); 975 if (err) { 976 PMD_INIT_LOG(ERR, "Can not get owner id"); 977 return err; 978 } 979 980 /* Initialize primary channel input for control operations */ 981 err = rte_vmbus_chan_open(vmbus, &hv->channels[0]); 982 if (err) 983 return err; 984 985 rte_vmbus_set_latency(hv->vmbus, hv->channels[0], hv->latency); 986 987 hv->primary = hn_rx_queue_alloc(hv, 0, 988 eth_dev->device->numa_node); 989 990 if (!hv->primary) 991 return -ENOMEM; 992 993 err = hn_attach(hv, RTE_ETHER_MTU); 994 if (err) 995 goto failed; 996 997 err = hn_chim_init(eth_dev); 998 if (err) 999 goto failed; 1000 1001 err = hn_rndis_get_eaddr(hv, eth_dev->data->mac_addrs->addr_bytes); 1002 if (err) 1003 goto failed; 1004 1005 /* Multi queue requires later versions of windows server */ 1006 if (hv->nvs_ver < NVS_VERSION_5) 1007 return 0; 1008 1009 max_chan = rte_vmbus_max_channels(vmbus); 1010 PMD_INIT_LOG(DEBUG, "VMBus max channels %d", max_chan); 1011 if (max_chan <= 0) 1012 goto failed; 1013 1014 if (hn_rndis_query_rsscaps(hv, &rxr_cnt) != 0) 1015 rxr_cnt = 1; 1016 1017 hv->max_queues = RTE_MIN(rxr_cnt, (unsigned int)max_chan); 1018 1019 /* If VF was reported but not added, do it now */ 1020 if (hv->vf_present && !hn_vf_attached(hv)) { 1021 PMD_INIT_LOG(DEBUG, "Adding VF device"); 1022 1023 err = hn_vf_add(eth_dev, hv); 1024 if (err) 1025 hv->vf_present = 0; 1026 } 1027 1028 return 0; 1029 1030 failed: 1031 PMD_INIT_LOG(NOTICE, "device init failed"); 1032 1033 hn_chim_uninit(eth_dev); 1034 hn_detach(hv); 1035 return err; 1036 } 1037 1038 static int 1039 eth_hn_dev_uninit(struct rte_eth_dev *eth_dev) 1040 { 1041 struct hn_data *hv = eth_dev->data->dev_private; 1042 int ret; 1043 1044 PMD_INIT_FUNC_TRACE(); 1045 1046 if (rte_eal_process_type() != RTE_PROC_PRIMARY) 1047 return 0; 1048 1049 hn_dev_stop(eth_dev); 1050 hn_dev_close(eth_dev); 1051 1052 eth_dev->dev_ops = NULL; 1053 eth_dev->tx_pkt_burst = NULL; 1054 eth_dev->rx_pkt_burst = NULL; 1055 1056 hn_detach(hv); 1057 hn_chim_uninit(eth_dev); 1058 rte_vmbus_chan_close(hv->primary->chan); 1059 rte_free(hv->primary); 1060 ret = rte_eth_dev_owner_delete(hv->owner.id); 1061 if (ret != 0) 1062 return ret; 1063 1064 return 0; 1065 } 1066 1067 static int eth_hn_probe(struct rte_vmbus_driver *drv __rte_unused, 1068 struct rte_vmbus_device *dev) 1069 { 1070 struct rte_eth_dev *eth_dev; 1071 int ret; 1072 1073 PMD_INIT_FUNC_TRACE(); 1074 1075 eth_dev = eth_dev_vmbus_allocate(dev, sizeof(struct hn_data)); 1076 if (!eth_dev) 1077 return -ENOMEM; 1078 1079 ret = eth_hn_dev_init(eth_dev); 1080 if (ret) 1081 eth_dev_vmbus_release(eth_dev); 1082 else 1083 rte_eth_dev_probing_finish(eth_dev); 1084 1085 return ret; 1086 } 1087 1088 static int eth_hn_remove(struct rte_vmbus_device *dev) 1089 { 1090 struct rte_eth_dev *eth_dev; 1091 int ret; 1092 1093 PMD_INIT_FUNC_TRACE(); 1094 1095 eth_dev = rte_eth_dev_allocated(dev->device.name); 1096 if (!eth_dev) 1097 return -ENODEV; 1098 1099 ret = eth_hn_dev_uninit(eth_dev); 1100 if (ret) 1101 return ret; 1102 1103 eth_dev_vmbus_release(eth_dev); 1104 return 0; 1105 } 1106 1107 /* Network device GUID */ 1108 static const rte_uuid_t hn_net_ids[] = { 1109 /* f8615163-df3e-46c5-913f-f2d2f965ed0e */ 1110 RTE_UUID_INIT(0xf8615163, 0xdf3e, 0x46c5, 0x913f, 0xf2d2f965ed0eULL), 1111 { 0 } 1112 }; 1113 1114 static struct rte_vmbus_driver rte_netvsc_pmd = { 1115 .id_table = hn_net_ids, 1116 .probe = eth_hn_probe, 1117 .remove = eth_hn_remove, 1118 }; 1119 1120 RTE_PMD_REGISTER_VMBUS(net_netvsc, rte_netvsc_pmd); 1121 RTE_PMD_REGISTER_KMOD_DEP(net_netvsc, "* uio_hv_generic"); 1122 1123 RTE_INIT(hn_init_log) 1124 { 1125 hn_logtype_init = rte_log_register("pmd.net.netvsc.init"); 1126 if (hn_logtype_init >= 0) 1127 rte_log_set_level(hn_logtype_init, RTE_LOG_NOTICE); 1128 hn_logtype_driver = rte_log_register("pmd.net.netvsc.driver"); 1129 if (hn_logtype_driver >= 0) 1130 rte_log_set_level(hn_logtype_driver, RTE_LOG_NOTICE); 1131 } 1132