Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Meta Platforms network device configuration
  4. #
  5. config NET_VENDOR_META
  6. bool "Meta Platforms devices"
  7. default y
  8. help
  9. If you have a network (Ethernet) card designed by Meta, say Y.
  10. That's Meta as in the parent company of Facebook.
  11. Note that the answer to this question doesn't directly affect the
  12. kernel: saying N will just cause the configurator to skip all
  13. the questions about Meta cards. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_META
  16. config FBNIC
  17. tristate "Meta Platforms Host Network Interface"
  18. depends on 64BIT || COMPILE_TEST
  19. depends on !S390
  20. depends on MAX_SKB_FRAGS < 22
  21. depends on PCI_MSI
  22. depends on PTP_1588_CLOCK_OPTIONAL
  23. select NET_DEVLINK
  24. select PAGE_POOL
  25. select PCS_XPCS
  26. select PHYLINK
  27. select PLDMFW
  28. help
  29. This driver supports Meta Platforms Host Network Interface.
  30. To compile this driver as a module, choose M here. The module
  31. will be called fbnic. MSI-X interrupt support is required.
  32. endif # NET_VENDOR_META