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