brintos

brintos / linux-shallow public Read only

0
0
Text · 1.4 KiB · 5b2a461 Raw
55 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Cadence device configuration4#5 6config NET_VENDOR_CADENCE7	bool "Cadence devices"8	depends on HAS_IOMEM9	default y10	help11	  If you have a network (Ethernet) card belonging to this class, say Y.12 13	  If unsure, say Y.14 15	  Note that the answer to this question doesn't directly affect the16	  kernel: saying N will just cause the configurator to skip all the17	  remaining Cadence network card questions. If you say Y, you will be18	  asked for your specific card in the following questions.19 20if NET_VENDOR_CADENCE21 22config MACB23	tristate "Cadence MACB/GEM support"24	depends on HAS_DMA && COMMON_CLK25	depends on PTP_1588_CLOCK_OPTIONAL26	select PHYLINK27	select CRC3228	help29	  The Cadence MACB ethernet interface is found on many Atmel AT32 and30	  AT91 parts.  This driver also supports the Cadence GEM (Gigabit31	  Ethernet MAC found in some ARM SoC devices).  Say Y to include32	  support for the MACB/GEM chip.33 34	  To compile this driver as a module, choose M here: the module35	  will be macb.36 37config MACB_USE_HWSTAMP38	bool "Use IEEE 1588 hwstamp"39	depends on MACB40	depends on PTP_1588_CLOCK41	default y42	help43	  Enable IEEE 1588 Precision Time Protocol (PTP) support for MACB.44 45config MACB_PCI46	tristate "Cadence PCI MACB/GEM support"47	depends on MACB && PCI48	help49	  This is PCI wrapper for MACB driver.50 51	  To compile this driver as a module, choose M here: the module52	  will be called macb_pci.53 54endif # NET_VENDOR_CADENCE55