xref: /linux/drivers/net/ethernet/ibm/Kconfig (revision 1b98f357dadd6ea613a435fbaef1a5dd7b35fd21)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# IBM device configuration.
4#
5
6config NET_VENDOR_IBM
7	bool "IBM devices"
8	default y
9	depends on PPC_PSERIES || PPC_DCR || (IBMEBUS && SPARSEMEM)
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 IBM devices. If you say Y, you will be asked for
16	  your specific card in the following questions.
17
18if NET_VENDOR_IBM
19
20config IBMVETH
21	tristate "IBM LAN Virtual Ethernet support"
22	depends on PPC_PSERIES
23	help
24	  This driver supports virtual ethernet adapters on newer IBM iSeries
25	  and pSeries systems.
26
27	  To compile this driver as a module, choose M here. The module will
28	  be called ibmveth.
29
30config IBMVETH_KUNIT_TEST
31	bool "KUnit test for IBM LAN Virtual Ethernet support" if !KUNIT_ALL_TESTS
32	depends on KUNIT
33	depends on KUNIT=y && IBMVETH=y
34	default KUNIT_ALL_TESTS
35	help
36	  This builds unit tests for the IBM LAN Virtual Ethernet driver.
37
38	  For more information on KUnit and unit tests in general, please refer
39	  to the KUnit documentation in Documentation/dev-tools/kunit/.
40
41	  If unsure, say N.
42
43source "drivers/net/ethernet/ibm/emac/Kconfig"
44
45config EHEA
46	tristate "eHEA Ethernet support"
47	depends on IBMEBUS && SPARSEMEM
48	help
49	  This driver supports the IBM pSeries eHEA ethernet adapter.
50
51	  To compile the driver as a module, choose M here. The module
52	  will be called ehea.
53
54config IBMVNIC
55	tristate "IBM Virtual NIC support"
56	depends on PPC_PSERIES
57	help
58	  This driver supports Virtual NIC adapters on IBM i and IBM System p
59	  systems.
60
61	  To compile this driver as a module, choose M here. The module will
62	  be called ibmvnic.
63
64endif # NET_VENDOR_IBM
65