1644570b8SJeff Kirsher# 2644570b8SJeff Kirsher# 8390 device configuration 3644570b8SJeff Kirsher# 4644570b8SJeff Kirsher 5644570b8SJeff Kirsherconfig NET_VENDOR_8390 6644570b8SJeff Kirsher bool "National Semi-conductor 8390 devices" 788f07484SJeff Kirsher default y 8e8bf5c42SKees Cook depends on NET_VENDOR_NATSEMI 9644570b8SJeff Kirsher ---help--- 10138b15edSPaul Gortmaker If you have a network (Ethernet) card belonging to this class, say Y. 11644570b8SJeff Kirsher 12644570b8SJeff Kirsher Note that the answer to this question doesn't directly affect the 13644570b8SJeff Kirsher kernel: saying N will just cause the configurator to skip all 14644570b8SJeff Kirsher the questions about Western Digital cards. If you say Y, you will be 15644570b8SJeff Kirsher asked for your specific card in the following questions. 16644570b8SJeff Kirsher 17644570b8SJeff Kirsherif NET_VENDOR_8390 18644570b8SJeff Kirsher 19644570b8SJeff Kirsherconfig PCMCIA_AXNET 20644570b8SJeff Kirsher tristate "Asix AX88190 PCMCIA support" 21644570b8SJeff Kirsher depends on PCMCIA 22644570b8SJeff Kirsher ---help--- 23644570b8SJeff Kirsher Say Y here if you intend to attach an Asix AX88190-based PCMCIA 24644570b8SJeff Kirsher (PC-card) Fast Ethernet card to your computer. These cards are 25644570b8SJeff Kirsher nearly NE2000 compatible but need a separate driver due to a few 26644570b8SJeff Kirsher misfeatures. 27644570b8SJeff Kirsher 28644570b8SJeff Kirsher To compile this driver as a module, choose M here: the module will be 29644570b8SJeff Kirsher called axnet_cs. If unsure, say N. 30644570b8SJeff Kirsher 31644570b8SJeff Kirsherconfig AX88796 32644570b8SJeff Kirsher tristate "ASIX AX88796 NE2000 clone support" 33644570b8SJeff Kirsher depends on (ARM || MIPS || SUPERH) 3431f31204SArnd Bergmann select CRC32 35644570b8SJeff Kirsher select PHYLIB 36644570b8SJeff Kirsher select MDIO_BITBANG 37644570b8SJeff Kirsher ---help--- 38644570b8SJeff Kirsher AX88796 driver, using platform bus to provide 39644570b8SJeff Kirsher chip detection and resources 40644570b8SJeff Kirsher 41644570b8SJeff Kirsherconfig AX88796_93CX6 42644570b8SJeff Kirsher bool "ASIX AX88796 external 93CX6 eeprom support" 43644570b8SJeff Kirsher depends on AX88796 44644570b8SJeff Kirsher select EEPROM_93CX6 45644570b8SJeff Kirsher ---help--- 46644570b8SJeff Kirsher Select this if your platform comes with an external 93CX6 eeprom. 47644570b8SJeff Kirsher 48644570b8SJeff Kirsherconfig HYDRA 49644570b8SJeff Kirsher tristate "Hydra support" 50644570b8SJeff Kirsher depends on ZORRO 51644570b8SJeff Kirsher select CRC32 52644570b8SJeff Kirsher ---help--- 53644570b8SJeff Kirsher If you have a Hydra Ethernet adapter, say Y. Otherwise, say N. 54644570b8SJeff Kirsher 55644570b8SJeff Kirsher To compile this driver as a module, choose M here: the module 56644570b8SJeff Kirsher will be called hydra. 57644570b8SJeff Kirsher 58644570b8SJeff Kirsherconfig ARM_ETHERH 59644570b8SJeff Kirsher tristate "I-cubed EtherH/ANT EtherM support" 60644570b8SJeff Kirsher depends on ARM && ARCH_ACORN 61644570b8SJeff Kirsher select CRC32 62644570b8SJeff Kirsher ---help--- 63644570b8SJeff Kirsher If you have an Acorn system with one of these network cards, you 64644570b8SJeff Kirsher should say Y to this option if you wish to use it with Linux. 65644570b8SJeff Kirsher 66644570b8SJeff Kirsherconfig MAC8390 67644570b8SJeff Kirsher bool "Macintosh NS 8390 based ethernet cards" 68644570b8SJeff Kirsher depends on MAC 69644570b8SJeff Kirsher select CRC32 70644570b8SJeff Kirsher ---help--- 71644570b8SJeff Kirsher If you want to include a driver to support Nubus or LC-PDS 72138b15edSPaul Gortmaker Ethernet cards using an NS8390 chipset or its equivalent, say Y. 73644570b8SJeff Kirsher 74064bff1cSGreg Ungererconfig MCF8390 75064bff1cSGreg Ungerer tristate "ColdFire NS8390 based Ethernet support" 76064bff1cSGreg Ungerer depends on COLDFIRE 77064bff1cSGreg Ungerer select CRC32 78064bff1cSGreg Ungerer ---help--- 79064bff1cSGreg Ungerer This driver is for Ethernet devices using an NS8390-compatible 80064bff1cSGreg Ungerer chipset on many common ColdFire CPU based boards. Many of the older 81064bff1cSGreg Ungerer Freescale dev boards use this, and some other common boards like 82064bff1cSGreg Ungerer some SnapGear routers do as well. 83064bff1cSGreg Ungerer 84064bff1cSGreg Ungerer If you have one of these boards and want to use the network interface 85064bff1cSGreg Ungerer on them then choose Y. To compile this driver as a module, choose M 86064bff1cSGreg Ungerer here, the module will be called mcf8390. 87064bff1cSGreg Ungerer 88644570b8SJeff Kirsherconfig NE2000 89644570b8SJeff Kirsher tristate "NE2000/NE1000 support" 9065eca28dSMichael Schmitz depends on (ISA || (Q40 && m) || M32R || MACH_TX49XX || \ 9165eca28dSMichael Schmitz ATARI_ETHERNEC) 92644570b8SJeff Kirsher select CRC32 93644570b8SJeff Kirsher ---help--- 94138b15edSPaul Gortmaker If you have a network (Ethernet) card of this type, say Y here. 95138b15edSPaul Gortmaker Many Ethernet cards without a specific driver are compatible with 96138b15edSPaul Gortmaker the NE2000. 97644570b8SJeff Kirsher 98644570b8SJeff Kirsher If you have a PCI NE2000 card however, say N here and Y to "PCI 99bca94cffSPaul Gortmaker NE2000 and clone support" below. 100644570b8SJeff Kirsher 101644570b8SJeff Kirsher To compile this driver as a module, choose M here. The module 102644570b8SJeff Kirsher will be called ne. 103644570b8SJeff Kirsher 104644570b8SJeff Kirsherconfig NE2K_PCI 105644570b8SJeff Kirsher tristate "PCI NE2000 and clones support (see help)" 106644570b8SJeff Kirsher depends on PCI 107644570b8SJeff Kirsher select CRC32 108644570b8SJeff Kirsher ---help--- 109644570b8SJeff Kirsher This driver is for NE2000 compatible PCI cards. It will not work 110644570b8SJeff Kirsher with ISA NE2000 cards (they have their own driver, "NE2000/NE1000 111644570b8SJeff Kirsher support" below). If you have a PCI NE2000 network (Ethernet) card, 112138b15edSPaul Gortmaker say Y here. 113644570b8SJeff Kirsher 114644570b8SJeff Kirsher This driver also works for the following NE2000 clone cards: 115644570b8SJeff Kirsher RealTek RTL-8029 Winbond 89C940 Compex RL2000 KTI ET32P2 116644570b8SJeff Kirsher NetVin NV5000SC Via 86C926 SureCom NE34 Winbond 117644570b8SJeff Kirsher Holtek HT80232 Holtek HT80229 118644570b8SJeff Kirsher 119644570b8SJeff Kirsher To compile this driver as a module, choose M here. The module 120644570b8SJeff Kirsher will be called ne2k-pci. 121644570b8SJeff Kirsher 122644570b8SJeff Kirsherconfig APNE 123644570b8SJeff Kirsher tristate "PCMCIA NE2000 support" 124644570b8SJeff Kirsher depends on AMIGA_PCMCIA 125644570b8SJeff Kirsher select CRC32 126644570b8SJeff Kirsher ---help--- 127644570b8SJeff Kirsher If you have a PCMCIA NE2000 compatible adapter, say Y. Otherwise, 128644570b8SJeff Kirsher say N. 129644570b8SJeff Kirsher 130644570b8SJeff Kirsher To compile this driver as a module, choose M here: the module 131644570b8SJeff Kirsher will be called apne. 132644570b8SJeff Kirsher 133644570b8SJeff Kirsherconfig PCMCIA_PCNET 134644570b8SJeff Kirsher tristate "NE2000 compatible PCMCIA support" 135644570b8SJeff Kirsher depends on PCMCIA 136644570b8SJeff Kirsher select CRC32 137644570b8SJeff Kirsher ---help--- 138644570b8SJeff Kirsher Say Y here if you intend to attach an NE2000 compatible PCMCIA 139644570b8SJeff Kirsher (PC-card) Ethernet or Fast Ethernet card to your computer. 140644570b8SJeff Kirsher 141644570b8SJeff Kirsher To compile this driver as a module, choose M here: the module will be 142644570b8SJeff Kirsher called pcnet_cs. If unsure, say N. 143644570b8SJeff Kirsher 144644570b8SJeff Kirsherconfig STNIC 145644570b8SJeff Kirsher tristate "National DP83902AV support" 146644570b8SJeff Kirsher depends on SUPERH 147644570b8SJeff Kirsher select CRC32 148644570b8SJeff Kirsher ---help--- 149644570b8SJeff Kirsher Support for cards based on the National Semiconductor DP83902AV 150644570b8SJeff Kirsher ST-NIC Serial Network Interface Controller for Twisted Pair. This 151644570b8SJeff Kirsher is a 10Mbit/sec Ethernet controller. Product overview and specs at 152644570b8SJeff Kirsher <http://www.national.com/pf/DP/DP83902A.html>. 153644570b8SJeff Kirsher 154644570b8SJeff Kirsher If unsure, say N. 155644570b8SJeff Kirsher 156644570b8SJeff Kirsherconfig ULTRA 157644570b8SJeff Kirsher tristate "SMC Ultra support" 158ae150435SJeff Kirsher depends on ISA 159644570b8SJeff Kirsher select CRC32 160644570b8SJeff Kirsher ---help--- 161138b15edSPaul Gortmaker If you have a network (Ethernet) card of this type, say Y here. 162644570b8SJeff Kirsher 163644570b8SJeff Kirsher Important: There have been many reports that, with some motherboards 164644570b8SJeff Kirsher mixing an SMC Ultra and an Adaptec AHA154x SCSI card (or compatible, 165644570b8SJeff Kirsher such as some BusLogic models) causes corruption problems with many 166644570b8SJeff Kirsher operating systems. The Linux smc-ultra driver has a work-around for 167644570b8SJeff Kirsher this but keep it in mind if you have such a SCSI card and have 168644570b8SJeff Kirsher problems. 169644570b8SJeff Kirsher 170644570b8SJeff Kirsher To compile this driver as a module, choose M here. The module 171644570b8SJeff Kirsher will be called smc-ultra. 172644570b8SJeff Kirsher 173644570b8SJeff Kirsherconfig WD80x3 174644570b8SJeff Kirsher tristate "WD80*3 support" 175ae150435SJeff Kirsher depends on ISA 176644570b8SJeff Kirsher select CRC32 177644570b8SJeff Kirsher ---help--- 178138b15edSPaul Gortmaker If you have a network (Ethernet) card of this type, say Y here. 179644570b8SJeff Kirsher 180644570b8SJeff Kirsher To compile this driver as a module, choose M here. The module 181644570b8SJeff Kirsher will be called wd. 182644570b8SJeff Kirsher 183644570b8SJeff Kirsherconfig ZORRO8390 184644570b8SJeff Kirsher tristate "Zorro NS8390-based Ethernet support" 185644570b8SJeff Kirsher depends on ZORRO 186644570b8SJeff Kirsher select CRC32 187644570b8SJeff Kirsher ---help--- 188644570b8SJeff Kirsher This driver is for Zorro Ethernet cards using an NS8390-compatible 189644570b8SJeff Kirsher chipset, like the Village Tronic Ariadne II and the Individual 190644570b8SJeff Kirsher Computers X-Surf Ethernet cards. If you have such a card, say Y. 191644570b8SJeff Kirsher Otherwise, say N. 192644570b8SJeff Kirsher 193644570b8SJeff Kirsher To compile this driver as a module, choose M here: the module 194644570b8SJeff Kirsher will be called zorro8390. 195644570b8SJeff Kirsher 196644570b8SJeff Kirsherendif # NET_VENDOR_8390 197