Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Xilinx device configuration
  4. #
  5. config NET_VENDOR_XILINX
  6. bool "Xilinx devices"
  7. default y
  8. help
  9. If you have a network (Ethernet) card belonging to this class, say Y.
  10. Note that the answer to this question doesn't directly affect the
  11. kernel: saying N will just cause the configurator to skip all
  12. the questions about Xilinx devices. If you say Y, you will be asked
  13. for your specific card in the following questions.
  14. if NET_VENDOR_XILINX
  15. config XILINX_EMACLITE
  16. tristate "Xilinx 10/100 Ethernet Lite support"
  17. depends on HAS_IOMEM
  18. select PHYLIB
  19. help
  20. This driver supports the 10/100 Ethernet Lite from Xilinx.
  21. config XILINX_AXI_EMAC
  22. tristate "Xilinx 10/100/1000 AXI Ethernet support"
  23. depends on HAS_IOMEM
  24. depends on XILINX_DMA
  25. select PHYLINK
  26. select DIMLIB
  27. help
  28. This driver supports the 10/100/1000 Ethernet from Xilinx for the
  29. AXI bus interface used in Xilinx Virtex FPGAs and Soc's.
  30. config XILINX_LL_TEMAC
  31. tristate "Xilinx LL TEMAC (LocalLink Tri-mode Ethernet MAC) driver"
  32. depends on HAS_IOMEM
  33. select PHYLIB
  34. help
  35. This driver supports the Xilinx 10/100/1000 LocalLink TEMAC
  36. core used in Xilinx Spartan and Virtex FPGAs
  37. endif # NET_VENDOR_XILINX