xref: /linux/drivers/net/ethernet/smsc/Kconfig (revision 9fdf9f61fa6d3cb31ba501f65522fcd9f5c8acd4)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Western Digital/SMC network device configuration
4#
5
6config NET_VENDOR_SMSC
7	bool "SMC (SMSC)/Western Digital devices"
8	default y
9	depends on ARM || ARM64 || ATARI_ETHERNAT || COLDFIRE || \
10		   ISA || MAC || MIPS || NIOS2 || PCI || \
11		   PCMCIA || SUPERH || XTENSA || COMPILE_TEST
12	help
13	  If you have a network (Ethernet) card belonging to this class, say Y.
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 SMC/Western Digital cards. If you say Y, you will
18	  be asked for your specific card in the following questions.
19
20if NET_VENDOR_SMSC
21
22config SMC91X
23	tristate "SMC 91C9x/91C1xxx support"
24	select CRC32
25	select MII
26	depends on !OF || GPIOLIB
27	depends on ARM || ARM64 || ATARI_ETHERNAT || COLDFIRE || \
28		   MIPS || NIOS2 || SUPERH || XTENSA || COMPILE_TEST
29	help
30	  This is a driver for SMC's 91x series of Ethernet chipsets,
31	  including the SMC91C94 and the SMC91C111. Say Y if you want it
32	  compiled into the kernel, and read the file
33	  <file:Documentation/networking/device_drivers/ethernet/smsc/smc9.rst>.
34
35	  This driver is also available as a module ( = code which can be
36	  inserted in and removed from the running kernel whenever you want).
37	  The module will be called smc91x.  If you want to compile it as a
38	  module, say M here and read <file:Documentation/kbuild/modules.rst>.
39
40config PCMCIA_SMC91C92
41	tristate "SMC 91Cxx PCMCIA support"
42	depends on PCMCIA && HAS_IOPORT
43	select CRC32
44	select MII
45	help
46	  Say Y here if you intend to attach an SMC 91Cxx compatible PCMCIA
47	  (PC-card) Ethernet or Fast Ethernet card to your computer.
48
49	  To compile this driver as a module, choose M here: the module will be
50	  called smc91c92_cs.  If unsure, say N.
51
52config EPIC100
53	tristate "SMC EtherPower II"
54	depends on PCI
55	select CRC32
56	select MII
57	help
58	  This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
59	  which is based on the SMC83c17x (EPIC/100).
60	  More specific information and updates are available from
61	  <http://www.scyld.com/network/epic100.html>.
62
63config SMSC911X
64	tristate "SMSC LAN911x/LAN921x families embedded ethernet support"
65	depends on HAS_IOMEM
66	select CRC32
67	select MII
68	select PHYLIB
69	help
70	  Say Y here if you want support for SMSC LAN911x and LAN921x families
71	  of ethernet controllers.
72
73	  To compile this driver as a module, choose M here. The module
74	  will be called smsc911x.
75
76config SMSC911X_ARCH_HOOKS
77	def_bool n
78	depends on SMSC911X
79	help
80	  If the arch enables this, it allows the arch to implement various
81	  hooks for more comprehensive interrupt control and also to override
82	  the source of the MAC address.
83
84config SMSC9420
85	tristate "SMSC LAN9420 PCI ethernet adapter support"
86	depends on PCI
87	select CRC32
88	select PHYLIB
89	select SMSC_PHY
90	help
91	  This is a driver for SMSC's LAN9420 PCI ethernet adapter.
92	  Say Y here if you want it compiled into the kernel.
93
94	  This driver is also available as a module. The module will be
95	  called smsc9420.  If you want to compile it as a module, say M
96	  here and read <file:Documentation/kbuild/modules.rst>
97
98endif # NET_VENDOR_SMSC
99