Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only
0002 #
0003 # D-Link device configuration
0004 #
0005 
0006 config NET_VENDOR_DLINK
0007         bool "D-Link devices"
0008         default y
0009         depends on PCI
0010         help
0011           If you have a network (Ethernet) card belonging to this class, say Y.
0012 
0013           Note that the answer to this question doesn't directly affect the
0014           kernel: saying N will just cause the configurator to skip all
0015           the questions about D-Link devices. If you say Y, you will be asked for
0016           your specific card in the following questions.
0017 
0018 if NET_VENDOR_DLINK
0019 
0020 config DL2K
0021         tristate "DL2000/TC902x/IP1000A-based Gigabit Ethernet support"
0022         depends on PCI
0023         select CRC32
0024         help
0025           This driver supports DL2000/TC902x/IP1000A-based Gigabit ethernet cards,
0026           which includes
0027           D-Link DGE-550T Gigabit Ethernet Adapter.
0028           D-Link DL2000-based Gigabit Ethernet Adapter.
0029           Sundance/Tamarack TC902x Gigabit Ethernet Adapter.
0030           ICPlus IP1000A-based cards
0031 
0032           To compile this driver as a module, choose M here: the
0033           module will be called dl2k.
0034 
0035 config SUNDANCE
0036         tristate "Sundance Alta support"
0037         depends on PCI
0038         select CRC32
0039         select MII
0040         help
0041           This driver is for the Sundance "Alta" chip.
0042           More specific information and updates are available from
0043           <http://www.scyld.com/network/sundance.html>.
0044 
0045 config SUNDANCE_MMIO
0046         bool "Use MMIO instead of PIO"
0047         depends on SUNDANCE
0048         help
0049           Enable memory-mapped I/O for interaction with Sundance NIC registers.
0050           Do NOT enable this by default, PIO (enabled when MMIO is disabled)
0051           is known to solve bugs on certain chips.
0052 
0053           If unsure, say N.
0054 
0055 endif # NET_VENDOR_DLINK