xref: /linux/drivers/s390/net/Kconfig (revision f423f73506ba8e837b5fdcd8c8be50078deb123d)
1menu "S/390 network device drivers"
2	depends on NETDEVICES && S390
3
4config LCS
5	tristate "Lan Channel Station Interface"
6	depends on CCW && NETDEVICES && (NET_ETHERNET || TR || FDDI)
7	help
8	   Select this option if you want to use LCS networking on IBM System z.
9	   This device driver supports Token Ring (IEEE 802.5),
10	   FDDI (IEEE 802.7) and Ethernet.
11	   To compile as a module, choose M. The module name is lcs.ko.
12	   If you do not know what it is, it's safe to choose Y.
13
14config CTC
15	tristate "CTC device support"
16	depends on CCW && NETDEVICES
17	help
18	  Select this option if you want to use channel-to-channel
19	  point-to-point networking on IBM System z.
20	  This device driver supports real CTC coupling using ESCON.
21	  It also supports virtual CTCs when running under VM.
22	  To compile as a module, choose M. The module name is ctc.ko.
23	  To compile into the kernel, choose Y.
24	  If you do not need any channel-to-channel connection, choose N.
25
26config NETIUCV
27	tristate "IUCV network device support (VM only)"
28	depends on IUCV && NETDEVICES
29	help
30	  Select this option if you want to use inter-user communication
31	  vehicle networking under VM or VIF. It enables a fast communication
32	  link between VM guests. Using ifconfig a point-to-point connection
33	  can be established to the Linux on IBM System z
34	  running on the other VM guest. To compile as a module, choose M.
35	  The module name is netiucv.ko. If unsure, choose Y.
36
37config SMSGIUCV
38	tristate "IUCV special message support (VM only)"
39	depends on IUCV
40	help
41	  Select this option if you want to be able to receive SMSG messages
42	  from other VM guest systems.
43
44config CLAW
45	tristate "CLAW device support"
46	depends on CCW && NETDEVICES
47	help
48	  This driver supports channel attached CLAW devices.
49	  CLAW is Common Link Access for Workstation.  Common devices
50          that use CLAW are RS/6000s, Cisco Routers (CIP) and 3172 devices.
51	  To compile as a module, choose M. The module name is claw.ko.
52	  To compile into the kernel, choose Y.
53
54config QETH
55	tristate "Gigabit Ethernet device support"
56	depends on CCW && NETDEVICES && IP_MULTICAST && QDIO
57	help
58	  This driver supports the IBM System z OSA Express adapters
59	  in QDIO mode (all media types), HiperSockets interfaces and VM GuestLAN
60	  interfaces in QDIO and HIPER mode.
61
62	  For details please refer to the documentation provided by IBM at
63	  <http://www.ibm.com/developerworks/linux/linux390>
64
65	  To compile this driver as a module, choose M.
66	  The module name is qeth.ko.
67
68
69comment "Gigabit Ethernet default settings"
70	depends on QETH
71
72config QETH_IPV6
73	bool "IPv6 support for gigabit ethernet"
74	depends on (QETH = IPV6) || (QETH && IPV6 = 'y')
75	help
76	  If CONFIG_QETH is switched on, this option will include IPv6
77	  support in the qeth device driver.
78
79config QETH_VLAN
80	bool "VLAN support for gigabit ethernet"
81	depends on (QETH = VLAN_8021Q) || (QETH && VLAN_8021Q = 'y')
82	help
83	  If CONFIG_QETH is switched on, this option will include IEEE
84	  802.1q VLAN support in the qeth device driver.
85
86config CCWGROUP
87 	tristate
88	default (LCS || CTC || QETH)
89
90endmenu
91