Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Synopsys network device configuration
  4. #
  5. config NET_VENDOR_SYNOPSYS
  6. bool "Synopsys devices"
  7. default y
  8. help
  9. If you have a network (Ethernet) device 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 Synopsys devices. If you say Y, you will be asked
  13. for your specific device in the following questions.
  14. if NET_VENDOR_SYNOPSYS
  15. config DWC_XLGMAC
  16. tristate "Synopsys DWC Enterprise Ethernet (XLGMAC) driver support"
  17. depends on HAS_IOMEM && HAS_DMA
  18. select BITREVERSE
  19. select CRC32
  20. help
  21. This driver supports the Synopsys DesignWare Cores Enterprise
  22. Ethernet (dwc-xlgmac).
  23. if DWC_XLGMAC
  24. config DWC_XLGMAC_PCI
  25. tristate "XLGMAC PCI bus support"
  26. depends on DWC_XLGMAC && PCI
  27. help
  28. This selects the pci bus support for the dwc-xlgmac driver.
  29. This driver was tested on Synopsys XLGMAC IP Prototyping Kit.
  30. If you have a controller with this interface, say Y or M here.
  31. If unsure, say N.
  32. endif # DWC_XLGMAC
  33. endif # NET_VENDOR_SYNOPSYS