Kconfig 1.1 KB

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