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