xref: /openbmc/linux/drivers/net/ethernet/apple/Kconfig (revision 88f07484)
1#
2# Apple device configuration
3#
4
5config NET_VENDOR_APPLE
6	bool "Apple devices"
7	default y
8	depends on (PPC_PMAC && PPC32) || MAC || ISA || EISA || MACH_IXDP2351 \
9		   || ARCH_IXDP2X01 || MACH_MX31ADS || MACH_QQ2440
10	---help---
11	  If you have a network (Ethernet) card belonging to this class, say Y
12	  and read the Ethernet-HOWTO, available from
13	  <http://www.tldp.org/docs.html#howto>.
14
15	  Note that the answer to this question doesn't directly affect the
16	  kernel: saying N will just cause the configurator to skip all
17	  the questions about IBM devices. If you say Y, you will be asked for
18	  your specific card in the following questions.
19
20if NET_VENDOR_APPLE
21
22config MACE
23	tristate "MACE (Power Mac ethernet) support"
24	depends on PPC_PMAC && PPC32
25	select CRC32
26	---help---
27	  Power Macintoshes and clones with Ethernet built-in on the
28	  motherboard will usually use a MACE (Medium Access Control for
29	  Ethernet) interface. Say Y to include support for the MACE chip.
30
31	  To compile this driver as a module, choose M here: the module
32	  will be called mace.
33
34config MACE_AAUI_PORT
35	bool "Use AAUI port instead of TP by default"
36	depends on MACE
37	---help---
38	  Some Apple machines (notably the Apple Network Server) which use the
39	  MACE ethernet chip have an Apple AUI port (small 15-pin connector),
40	  instead of an 8-pin RJ45 connector for twisted-pair ethernet.  Say
41	  Y here if you have such a machine.  If unsure, say N.
42	  The driver will default to AAUI on ANS anyway, and if you use it as
43	  a module, you can provide the port_aaui=0|1 to force the driver.
44
45config BMAC
46	tristate "BMAC (G3 ethernet) support"
47	depends on PPC_PMAC && PPC32
48	select CRC32
49	---help---
50	  Say Y for support of BMAC Ethernet interfaces. These are used on G3
51	  computers.
52
53	  To compile this driver as a module, choose M here: the module
54	  will be called bmac.
55
56config MAC89x0
57	tristate "Macintosh CS89x0 based ethernet cards"
58	depends on MAC
59	---help---
60	  Support for CS89x0 chipset based Ethernet cards.  If you have a
61	  Nubus or LC-PDS network (Ethernet) card of this type, say Y and
62	  read the Ethernet-HOWTO, available from
63	  <http://www.tldp.org/docs.html#howto>.
64
65	  To compile this driver as a module, choose M here. This module will
66	  be called mac89x0.
67
68config MACMACE
69	bool "Macintosh (AV) onboard MACE ethernet"
70	depends on MAC
71	select CRC32
72	---help---
73	  Support for the onboard AMD 79C940 MACE Ethernet controller used in
74	  the 660AV and 840AV Macintosh.  If you have one of these Macintoshes
75	  say Y and read the Ethernet-HOWTO, available from
76	  <http://www.tldp.org/docs.html#howto>.
77
78config CS89x0
79	tristate "CS89x0 support"
80	depends on (ISA || EISA || MACH_IXDP2351 \
81		|| ARCH_IXDP2X01 || MACH_MX31ADS || MACH_QQ2440)
82	---help---
83	  Support for CS89x0 chipset based Ethernet cards. If you have a
84	  network (Ethernet) card of this type, say Y and read the
85	  Ethernet-HOWTO, available from
86	  <http://www.tldp.org/docs.html#howto> as well as
87	  <file:Documentation/networking/cs89x0.txt>.
88
89	  To compile this driver as a module, choose M here. The module
90	  will be called cs89x0.
91
92config CS89x0_NONISA_IRQ
93	def_bool y
94	depends on CS89x0 != n
95	depends on MACH_IXDP2351 || ARCH_IXDP2X01 || MACH_MX31ADS || MACH_QQ2440
96
97endif # NET_VENDOR_APPLE
98