56 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# D-Link device configuration4#5 6config NET_VENDOR_DLINK7 bool "D-Link devices"8 default y9 depends on PCI10 help11 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 the14 kernel: saying N will just cause the configurator to skip all15 the questions about D-Link devices. If you say Y, you will be asked for16 your specific card in the following questions.17 18if NET_VENDOR_DLINK19 20config DL2K21 tristate "DL2000/TC902x/IP1000A-based Gigabit Ethernet support"22 depends on PCI23 select CRC3224 help25 This driver supports DL2000/TC902x/IP1000A-based Gigabit ethernet cards,26 which includes27 D-Link DGE-550T Gigabit Ethernet Adapter.28 D-Link DL2000-based Gigabit Ethernet Adapter.29 Sundance/Tamarack TC902x Gigabit Ethernet Adapter.30 ICPlus IP1000A-based cards31 32 To compile this driver as a module, choose M here: the33 module will be called dl2k.34 35config SUNDANCE36 tristate "Sundance Alta support"37 depends on PCI38 select CRC3239 select MII40 help41 This driver is for the Sundance "Alta" chip.42 More specific information and updates are available from43 <http://www.scyld.com/network/sundance.html>.44 45config SUNDANCE_MMIO46 bool "Use MMIO instead of PIO"47 depends on SUNDANCE48 help49 Enable memory-mapped I/O for interaction with Sundance NIC registers.50 Do NOT enable this by default, PIO (enabled when MMIO is disabled)51 is known to solve bugs on certain chips.52 53 If unsure, say N.54 55endif # NET_VENDOR_DLINK56