Loading...
1#
2# VIA device configuration
3#
4
5config NET_VENDOR_VIA
6 bool "VIA devices"
7 default y
8 ---help---
9 If you have a network (Ethernet) card belonging to this class, say Y.
10
11 Note that the answer to this question doesn't directly affect the
12 kernel: saying N will just cause the configurator to skip all
13 the questions about VIA devices. If you say Y, you will be asked for
14 your specific card in the following questions.
15
16if NET_VENDOR_VIA
17
18config VIA_RHINE
19 tristate "VIA Rhine support"
20 depends on PCI || (OF_IRQ && GENERIC_PCI_IOMAP)
21 depends on HAS_DMA
22 select CRC32
23 select MII
24 ---help---
25 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
26 Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
27 Ethernet functions can also be found integrated on South Bridges
28 (e.g. VT8235).
29
30 To compile this driver as a module, choose M here. The module
31 will be called via-rhine.
32
33config VIA_RHINE_MMIO
34 bool "Use MMIO instead of PIO"
35 depends on VIA_RHINE
36 ---help---
37 This instructs the driver to use PCI shared memory (MMIO) instead of
38 programmed I/O ports (PIO). Enabling this gives an improvement in
39 processing time in parts of the driver.
40
41 If unsure, say Y.
42
43config VIA_VELOCITY
44 tristate "VIA Velocity support"
45 depends on (PCI || (OF_ADDRESS && OF_IRQ))
46 depends on HAS_DMA
47 select CRC32
48 select CRC_CCITT
49 select MII
50 ---help---
51 If you have a VIA "Velocity" based network card say Y here.
52
53 To compile this driver as a module, choose M here. The module
54 will be called via-velocity.
55
56endif # NET_VENDOR_VIA
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# VIA device configuration
4#
5
6config NET_VENDOR_VIA
7 bool "VIA devices"
8 default y
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 VIA devices. If you say Y, you will be asked for
15 your specific card in the following questions.
16
17if NET_VENDOR_VIA
18
19config VIA_RHINE
20 tristate "VIA Rhine support"
21 depends on PCI || (OF_IRQ && GENERIC_PCI_IOMAP)
22 depends on PCI || ARCH_VT8500 || COMPILE_TEST
23 depends on HAS_DMA
24 select CRC32
25 select MII
26 help
27 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
28 Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
29 Ethernet functions can also be found integrated on South Bridges
30 (e.g. VT8235).
31
32 To compile this driver as a module, choose M here. The module
33 will be called via-rhine.
34
35config VIA_RHINE_MMIO
36 bool "Use MMIO instead of PIO"
37 depends on VIA_RHINE
38 help
39 This instructs the driver to use PCI shared memory (MMIO) instead of
40 programmed I/O ports (PIO). Enabling this gives an improvement in
41 processing time in parts of the driver.
42
43 If unsure, say Y.
44
45config VIA_VELOCITY
46 tristate "VIA Velocity support"
47 depends on (PCI || (OF_ADDRESS && OF_IRQ))
48 depends on HAS_DMA
49 select CRC32
50 select CRC_CCITT
51 select MII
52 help
53 If you have a VIA "Velocity" based network card say Y here.
54
55 To compile this driver as a module, choose M here. The module
56 will be called via-velocity.
57
58endif # NET_VENDOR_VIA