1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Cirrus network device configuration 4# 5 6config NET_VENDOR_CIRRUS 7 bool "Cirrus devices" 8 default y 9 depends on ISA || EISA || ARM || MAC || COMPILE_TEST 10 help 11 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 the 14 kernel: saying N will just cause the configurator to skip all 15 the questions about Cirrus cards. If you say Y, you will be asked 16 for your specific card in the following questions. 17 18if NET_VENDOR_CIRRUS 19 20config CS89x0 21 tristate 22 23config CS89x0_ISA 24 tristate "CS89x0 ISA driver support" 25 depends on HAS_IOPORT_MAP 26 depends on ISA 27 depends on !PPC32 28 depends on CS89x0_PLATFORM=n 29 select CS89x0 30 help 31 Support for CS89x0 chipset based Ethernet cards. If you have a 32 network (Ethernet) card of this type, say Y and read the file 33 <file:Documentation/networking/device_drivers/ethernet/cirrus/cs89x0.rst>. 34 35 To compile this driver as a module, choose M here. The module 36 will be called cs89x0. 37 38config CS89x0_PLATFORM 39 tristate "CS89x0 platform driver support" 40 depends on ARM || COMPILE_TEST 41 select CS89x0 42 help 43 Say Y to compile the cs89x0 platform driver. This makes this driver 44 suitable for use on certain evaluation boards such as the iMX21ADS. 45 46 To compile this driver as a module, choose M here. The module 47 will be called cs89x0. 48 49config EP93XX_ETH 50 tristate "EP93xx Ethernet support" 51 depends on (ARM && ARCH_EP93XX) || COMPILE_TEST 52 select MII 53 help 54 This is a driver for the ethernet hardware included in EP93xx CPUs. 55 Say Y if you are building a kernel for EP93xx based devices. 56 57config MAC89x0 58 tristate "Macintosh CS89x0 based ethernet cards" 59 depends on MAC 60 help 61 Support for CS89x0 chipset based Ethernet cards. If you have a 62 Nubus or LC-PDS network (Ethernet) card of this type, say Y here. 63 64 To compile this driver as a module, choose M here. This module will 65 be called mac89x0. 66 67endif # NET_VENDOR_CIRRUS 68