60 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# VIA device configuration4#5 6config NET_VENDOR_VIA7 bool "VIA devices"8 default y9 help10 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 the13 kernel: saying N will just cause the configurator to skip all14 the questions about VIA devices. If you say Y, you will be asked for15 your specific card in the following questions.16 17if NET_VENDOR_VIA18 19config VIA_RHINE20 tristate "VIA Rhine support"21 depends on PCI || (OF_IRQ && GENERIC_PCI_IOMAP)22 depends on PCI || ARCH_VT8500 || COMPILE_TEST23 depends on HAS_IOPORT24 depends on HAS_DMA25 select CRC3226 select MII27 help28 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),29 Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type30 Ethernet functions can also be found integrated on South Bridges31 (e.g. VT8235).32 33 To compile this driver as a module, choose M here. The module34 will be called via-rhine.35 36config VIA_RHINE_MMIO37 bool "Use MMIO instead of PIO"38 depends on VIA_RHINE39 help40 This instructs the driver to use PCI shared memory (MMIO) instead of41 programmed I/O ports (PIO). Enabling this gives an improvement in42 processing time in parts of the driver.43 44 If unsure, say Y.45 46config VIA_VELOCITY47 tristate "VIA Velocity support"48 depends on (PCI || (OF_ADDRESS && OF_IRQ))49 depends on HAS_DMA50 select CRC3251 select CRC_CCITT52 select MII53 help54 If you have a VIA "Velocity" based network card say Y here.55 56 To compile this driver as a module, choose M here. The module57 will be called via-velocity.58 59endif # NET_VENDOR_VIA60