69 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Cirrus network device configuration4#5 6config NET_VENDOR_CIRRUS7 bool "Cirrus devices"8 default y9 depends on ISA || EISA || ARM || MAC || COMPILE_TEST10 help11 If you have a network (Ethernet) card belonging to this class, say Y.12 13 Note that the answer to this question doesn't directly affect the14 kernel: saying N will just cause the configurator to skip all15 the questions about Cirrus cards. If you say Y, you will be asked16 for your specific card in the following questions.17 18if NET_VENDOR_CIRRUS19 20config CS89x021 tristate22 23config CS89x0_ISA24 tristate "CS89x0 ISA driver support"25 depends on HAS_IOPORT_MAP26 depends on ISA27 depends on !PPC3228 depends on CS89x0_PLATFORM=n29 select NETDEV_LEGACY_INIT30 select CS89x031 help32 Support for CS89x0 chipset based Ethernet cards. If you have a33 network (Ethernet) card of this type, say Y and read the file34 <file:Documentation/networking/device_drivers/ethernet/cirrus/cs89x0.rst>.35 36 To compile this driver as a module, choose M here. The module37 will be called cs89x0.38 39config CS89x0_PLATFORM40 tristate "CS89x0 platform driver support"41 depends on ARM || (COMPILE_TEST && !PPC)42 select CS89x043 help44 Say Y to compile the cs89x0 platform driver. This makes this driver45 suitable for use on certain evaluation boards such as the iMX21ADS.46 47 To compile this driver as a module, choose M here. The module48 will be called cs89x0.49 50config EP93XX_ETH51 tristate "EP93xx Ethernet support"52 depends on (ARM && ARCH_EP93XX) || COMPILE_TEST53 select MII54 help55 This is a driver for the ethernet hardware included in EP93xx CPUs.56 Say Y if you are building a kernel for EP93xx based devices.57 58config MAC89x059 tristate "Macintosh CS89x0 based ethernet cards"60 depends on MAC61 help62 Support for CS89x0 chipset based Ethernet cards. If you have a63 Nubus or LC-PDS network (Ethernet) card of this type, say Y here.64 65 To compile this driver as a module, choose M here. This module will66 be called mac89x0.67 68endif # NET_VENDOR_CIRRUS69