Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #
  2. # Netronome device configuration
  3. #
  4. config NET_VENDOR_NETRONOME
  5. bool "Netronome(R) devices"
  6. default y
  7. ---help---
  8. If you have a Netronome(R) network (Ethernet) card or device, say Y.
  9. Note that the answer to this question doesn't directly affect the
  10. kernel: saying N will just cause the configurator to skip all
  11. the questions about Netronome(R) cards. If you say Y, you will be
  12. asked for your specific card in the following questions.
  13. if NET_VENDOR_NETRONOME
  14. config NFP
  15. tristate "Netronome(R) NFP4000/NFP6000 NIC driver"
  16. depends on PCI && PCI_MSI
  17. depends on VXLAN || VXLAN=n
  18. depends on MAY_USE_DEVLINK
  19. ---help---
  20. This driver supports the Netronome(R) NFP4000/NFP6000 based
  21. cards working as a advanced Ethernet NIC. It works with both
  22. SR-IOV physical and virtual functions.
  23. config NFP_APP_FLOWER
  24. bool "NFP4000/NFP6000 TC Flower offload support"
  25. depends on NFP
  26. depends on NET_SWITCHDEV
  27. default y
  28. ---help---
  29. Enable driver support for TC Flower offload on NFP4000 and NFP6000.
  30. Say Y, if you are planning to make use of TC Flower offload
  31. either directly, with Open vSwitch, or any other way. Note that
  32. TC Flower offload requires specific FW to work.
  33. config NFP_APP_ABM_NIC
  34. bool "NFP4000/NFP6000 Advanced buffer management NIC support"
  35. depends on NFP
  36. depends on NET_SWITCHDEV
  37. default y
  38. help
  39. Enable driver support for Advanced buffer management NIC on NFP.
  40. ABM NIC allows advanced configuration of queuing and scheduling
  41. of packets, including ECN marking. Say Y, if you are planning to
  42. use one of the NFP4000 and NFP6000 platforms which support this
  43. functionality.
  44. Code will be built into the nfp.ko driver.
  45. config NFP_DEBUG
  46. bool "Debug support for Netronome(R) NFP4000/NFP6000 NIC drivers"
  47. depends on NFP
  48. ---help---
  49. Enable extra sanity checks and debugfs support in
  50. Netronome(R) NFP4000/NFP6000 NIC drivers.
  51. Note: selecting this option may adversely impact
  52. performance.
  53. endif