brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · f2a4287 Raw
43 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Synopsys network device configuration4#5 6config NET_VENDOR_SYNOPSYS7	bool "Synopsys devices"8	default y9	help10	  If you have a network (Ethernet) device belonging to this class, say Y.11 12	  Note that the answer to this question doesn't directly affect the13	  kernel: saying N will just cause the configurator to skip all14	  the questions about Synopsys devices. If you say Y, you will be asked15	  for your specific device in the following questions.16 17if NET_VENDOR_SYNOPSYS18 19config DWC_XLGMAC20	tristate "Synopsys DWC Enterprise Ethernet (XLGMAC) driver support"21	depends on HAS_IOMEM && HAS_DMA22	select BITREVERSE23	select CRC3224	help25	  This driver supports the Synopsys DesignWare Cores Enterprise26	  Ethernet (dwc-xlgmac).27 28if DWC_XLGMAC29 30config DWC_XLGMAC_PCI31	tristate "XLGMAC PCI bus support"32	depends on DWC_XLGMAC && PCI33	help34	  This selects the pci bus support for the dwc-xlgmac driver.35	  This driver was tested on Synopsys XLGMAC IP Prototyping Kit.36 37	  If you have a controller with this interface, say Y or M here.38	  If unsure, say N.39 40endif # DWC_XLGMAC41 42endif # NET_VENDOR_SYNOPSYS43