xref: /openbmc/linux/drivers/net/ethernet/apple/Kconfig (revision f3a8b664)
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
9	---help---
10	  If you have a network (Ethernet) card belonging to this class, say Y.
11
12	  Note that the answer to this question doesn't directly affect the
13	  kernel: saying N will just cause the configurator to skip all
14	  the questions about IBM devices. If you say Y, you will be asked for
15	  your specific card in the following questions.
16
17if NET_VENDOR_APPLE
18
19config MACE
20	tristate "MACE (Power Mac ethernet) support"
21	depends on PPC_PMAC && PPC32
22	select CRC32
23	---help---
24	  Power Macintoshes and clones with Ethernet built-in on the
25	  motherboard will usually use a MACE (Medium Access Control for
26	  Ethernet) interface. Say Y to include support for the MACE chip.
27
28	  To compile this driver as a module, choose M here: the module
29	  will be called mace.
30
31config MACE_AAUI_PORT
32	bool "Use AAUI port instead of TP by default"
33	depends on MACE
34	---help---
35	  Some Apple machines (notably the Apple Network Server) which use the
36	  MACE ethernet chip have an Apple AUI port (small 15-pin connector),
37	  instead of an 8-pin RJ45 connector for twisted-pair ethernet.  Say
38	  Y here if you have such a machine.  If unsure, say N.
39	  The driver will default to AAUI on ANS anyway, and if you use it as
40	  a module, you can provide the port_aaui=0|1 to force the driver.
41
42config BMAC
43	tristate "BMAC (G3 ethernet) support"
44	depends on PPC_PMAC && PPC32
45	select CRC32
46	---help---
47	  Say Y for support of BMAC Ethernet interfaces. These are used on G3
48	  computers.
49
50	  To compile this driver as a module, choose M here: the module
51	  will be called bmac.
52
53config MACMACE
54	tristate "Macintosh (AV) onboard MACE ethernet"
55	depends on MAC
56	select CRC32
57	---help---
58	  Support for the onboard AMD 79C940 MACE Ethernet controller used in
59	  the 660AV and 840AV Macintosh.  If you have one of these Macintoshes
60	  say Y here.
61
62endif # NET_VENDOR_APPLE
63