1*1da177e4SLinus Torvalds# 2*1da177e4SLinus Torvalds# ATM device configuration 3*1da177e4SLinus Torvalds# 4*1da177e4SLinus Torvalds 5*1da177e4SLinus Torvaldsmenu "ATM drivers" 6*1da177e4SLinus Torvalds depends on NETDEVICES && ATM 7*1da177e4SLinus Torvalds 8*1da177e4SLinus Torvaldsconfig ATM_TCP 9*1da177e4SLinus Torvalds tristate "ATM over TCP" 10*1da177e4SLinus Torvalds depends on INET && ATM 11*1da177e4SLinus Torvalds help 12*1da177e4SLinus Torvalds ATM over TCP driver. Useful mainly for development and for 13*1da177e4SLinus Torvalds experiments. If unsure, say N. 14*1da177e4SLinus Torvalds 15*1da177e4SLinus Torvaldsconfig ATM_LANAI 16*1da177e4SLinus Torvalds tristate "Efficient Networks Speedstream 3010" 17*1da177e4SLinus Torvalds depends on PCI && ATM 18*1da177e4SLinus Torvalds help 19*1da177e4SLinus Torvalds Supports ATM cards based on the Efficient Networks "Lanai" 20*1da177e4SLinus Torvalds chipset such as the Speedstream 3010 and the ENI-25p. The 21*1da177e4SLinus Torvalds Speedstream 3060 is currently not supported since we don't 22*1da177e4SLinus Torvalds have the code to drive the on-board Alcatel DSL chipset (yet). 23*1da177e4SLinus Torvalds 24*1da177e4SLinus Torvaldsconfig ATM_ENI 25*1da177e4SLinus Torvalds tristate "Efficient Networks ENI155P" 26*1da177e4SLinus Torvalds depends on PCI && ATM 27*1da177e4SLinus Torvalds ---help--- 28*1da177e4SLinus Torvalds Driver for the Efficient Networks ENI155p series and SMC ATM 29*1da177e4SLinus Torvalds Power155 155 Mbps ATM adapters. Both, the versions with 512KB and 30*1da177e4SLinus Torvalds 2MB on-board RAM (Efficient calls them "C" and "S", respectively), 31*1da177e4SLinus Torvalds and the FPGA and the ASIC Tonga versions of the board are supported. 32*1da177e4SLinus Torvalds The driver works with MMF (-MF or ...F) and UTP-5 (-U5 or ...D) 33*1da177e4SLinus Torvalds adapters. 34*1da177e4SLinus Torvalds 35*1da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module will 36*1da177e4SLinus Torvalds be called eni. 37*1da177e4SLinus Torvalds 38*1da177e4SLinus Torvaldsconfig ATM_ENI_DEBUG 39*1da177e4SLinus Torvalds bool "Enable extended debugging" 40*1da177e4SLinus Torvalds depends on ATM_ENI 41*1da177e4SLinus Torvalds help 42*1da177e4SLinus Torvalds Extended debugging records various events and displays that list 43*1da177e4SLinus Torvalds when an inconsistency is detected. This mechanism is faster than 44*1da177e4SLinus Torvalds generally using printks, but still has some impact on performance. 45*1da177e4SLinus Torvalds Note that extended debugging may create certain race conditions 46*1da177e4SLinus Torvalds itself. Enable this ONLY if you suspect problems with the driver. 47*1da177e4SLinus Torvalds 48*1da177e4SLinus Torvaldsconfig ATM_ENI_TUNE_BURST 49*1da177e4SLinus Torvalds bool "Fine-tune burst settings" 50*1da177e4SLinus Torvalds depends on ATM_ENI 51*1da177e4SLinus Torvalds ---help--- 52*1da177e4SLinus Torvalds In order to obtain good throughput, the ENI NIC can transfer 53*1da177e4SLinus Torvalds multiple words of data per PCI bus access cycle. Such a multi-word 54*1da177e4SLinus Torvalds transfer is called a burst. 55*1da177e4SLinus Torvalds 56*1da177e4SLinus Torvalds The default settings for the burst sizes are suitable for most PCI 57*1da177e4SLinus Torvalds chipsets. However, in some cases, large bursts may overrun buffers 58*1da177e4SLinus Torvalds in the PCI chipset and cause data corruption. In such cases, large 59*1da177e4SLinus Torvalds bursts must be disabled and only (slower) small bursts can be used. 60*1da177e4SLinus Torvalds The burst sizes can be set independently in the send (TX) and 61*1da177e4SLinus Torvalds receive (RX) direction. 62*1da177e4SLinus Torvalds 63*1da177e4SLinus Torvalds Note that enabling many different burst sizes in the same direction 64*1da177e4SLinus Torvalds may increase the cost of setting up a transfer such that the 65*1da177e4SLinus Torvalds resulting throughput is lower than when using only the largest 66*1da177e4SLinus Torvalds available burst size. 67*1da177e4SLinus Torvalds 68*1da177e4SLinus Torvalds Also, sometimes larger bursts lead to lower throughput, e.g. on an 69*1da177e4SLinus Torvalds Intel 440FX board, a drop from 135 Mbps to 103 Mbps was observed 70*1da177e4SLinus Torvalds when going from 8W to 16W bursts. 71*1da177e4SLinus Torvalds 72*1da177e4SLinus Torvaldsconfig ATM_ENI_BURST_TX_16W 73*1da177e4SLinus Torvalds bool "Enable 16W TX bursts (discouraged)" 74*1da177e4SLinus Torvalds depends on ATM_ENI_TUNE_BURST 75*1da177e4SLinus Torvalds help 76*1da177e4SLinus Torvalds Burst sixteen words at once in the send direction. This may work 77*1da177e4SLinus Torvalds with recent PCI chipsets, but is known to fail with older chipsets. 78*1da177e4SLinus Torvalds 79*1da177e4SLinus Torvaldsconfig ATM_ENI_BURST_TX_8W 80*1da177e4SLinus Torvalds bool "Enable 8W TX bursts (recommended)" 81*1da177e4SLinus Torvalds depends on ATM_ENI_TUNE_BURST 82*1da177e4SLinus Torvalds help 83*1da177e4SLinus Torvalds Burst eight words at once in the send direction. This is the default 84*1da177e4SLinus Torvalds setting. 85*1da177e4SLinus Torvalds 86*1da177e4SLinus Torvaldsconfig ATM_ENI_BURST_TX_4W 87*1da177e4SLinus Torvalds bool "Enable 4W TX bursts (optional)" 88*1da177e4SLinus Torvalds depends on ATM_ENI_TUNE_BURST 89*1da177e4SLinus Torvalds help 90*1da177e4SLinus Torvalds Burst four words at once in the send direction. You may want to try 91*1da177e4SLinus Torvalds this if you have disabled 8W bursts. Enabling 4W if 8W is also set 92*1da177e4SLinus Torvalds may or may not improve throughput. 93*1da177e4SLinus Torvalds 94*1da177e4SLinus Torvaldsconfig ATM_ENI_BURST_TX_2W 95*1da177e4SLinus Torvalds bool "Enable 2W TX bursts (optional)" 96*1da177e4SLinus Torvalds depends on ATM_ENI_TUNE_BURST 97*1da177e4SLinus Torvalds help 98*1da177e4SLinus Torvalds Burst two words at once in the send direction. You may want to try 99*1da177e4SLinus Torvalds this if you have disabled 4W and 8W bursts. Enabling 2W if 4W or 8W 100*1da177e4SLinus Torvalds are also set may or may not improve throughput. 101*1da177e4SLinus Torvalds 102*1da177e4SLinus Torvaldsconfig ATM_ENI_BURST_RX_16W 103*1da177e4SLinus Torvalds bool "Enable 16W RX bursts (discouraged)" 104*1da177e4SLinus Torvalds depends on ATM_ENI_TUNE_BURST 105*1da177e4SLinus Torvalds help 106*1da177e4SLinus Torvalds Burst sixteen words at once in the receive direction. This may work 107*1da177e4SLinus Torvalds with recent PCI chipsets, but is known to fail with older chipsets. 108*1da177e4SLinus Torvalds 109*1da177e4SLinus Torvaldsconfig ATM_ENI_BURST_RX_8W 110*1da177e4SLinus Torvalds bool "Enable 8W RX bursts (discouraged)" 111*1da177e4SLinus Torvalds depends on ATM_ENI_TUNE_BURST 112*1da177e4SLinus Torvalds help 113*1da177e4SLinus Torvalds Burst eight words at once in the receive direction. This may work 114*1da177e4SLinus Torvalds with recent PCI chipsets, but is known to fail with older chipsets, 115*1da177e4SLinus Torvalds such as the Intel Neptune series. 116*1da177e4SLinus Torvalds 117*1da177e4SLinus Torvaldsconfig ATM_ENI_BURST_RX_4W 118*1da177e4SLinus Torvalds bool "Enable 4W RX bursts (recommended)" 119*1da177e4SLinus Torvalds depends on ATM_ENI_TUNE_BURST 120*1da177e4SLinus Torvalds help 121*1da177e4SLinus Torvalds Burst four words at once in the receive direction. This is the 122*1da177e4SLinus Torvalds default setting. Enabling 4W if 8W is also set may or may not 123*1da177e4SLinus Torvalds improve throughput. 124*1da177e4SLinus Torvalds 125*1da177e4SLinus Torvaldsconfig ATM_ENI_BURST_RX_2W 126*1da177e4SLinus Torvalds bool "Enable 2W RX bursts (optional)" 127*1da177e4SLinus Torvalds depends on ATM_ENI_TUNE_BURST 128*1da177e4SLinus Torvalds help 129*1da177e4SLinus Torvalds Burst two words at once in the receive direction. You may want to 130*1da177e4SLinus Torvalds try this if you have disabled 4W and 8W bursts. Enabling 2W if 4W or 131*1da177e4SLinus Torvalds 8W are also set may or may not improve throughput. 132*1da177e4SLinus Torvalds 133*1da177e4SLinus Torvaldsconfig ATM_FIRESTREAM 134*1da177e4SLinus Torvalds tristate "Fujitsu FireStream (FS50/FS155) " 135*1da177e4SLinus Torvalds depends on PCI && ATM 136*1da177e4SLinus Torvalds help 137*1da177e4SLinus Torvalds Driver for the Fujitsu FireStream 155 (MB86697) and 138*1da177e4SLinus Torvalds FireStream 50 (MB86695) ATM PCI chips. 139*1da177e4SLinus Torvalds 140*1da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module will 141*1da177e4SLinus Torvalds be called firestream. 142*1da177e4SLinus Torvalds 143*1da177e4SLinus Torvaldsconfig ATM_ZATM 144*1da177e4SLinus Torvalds tristate "ZeitNet ZN1221/ZN1225" 145*1da177e4SLinus Torvalds depends on PCI && ATM 146*1da177e4SLinus Torvalds help 147*1da177e4SLinus Torvalds Driver for the ZeitNet ZN1221 (MMF) and ZN1225 (UTP-5) 155 Mbps ATM 148*1da177e4SLinus Torvalds adapters. 149*1da177e4SLinus Torvalds 150*1da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module will 151*1da177e4SLinus Torvalds be called zatm. 152*1da177e4SLinus Torvalds 153*1da177e4SLinus Torvaldsconfig ATM_ZATM_DEBUG 154*1da177e4SLinus Torvalds bool "Enable extended debugging" 155*1da177e4SLinus Torvalds depends on ATM_ZATM 156*1da177e4SLinus Torvalds help 157*1da177e4SLinus Torvalds Extended debugging records various events and displays that list 158*1da177e4SLinus Torvalds when an inconsistency is detected. This mechanism is faster than 159*1da177e4SLinus Torvalds generally using printks, but still has some impact on performance. 160*1da177e4SLinus Torvalds Note that extended debugging may create certain race conditions 161*1da177e4SLinus Torvalds itself. Enable this ONLY if you suspect problems with the driver. 162*1da177e4SLinus Torvalds 163*1da177e4SLinus Torvalds# bool 'Rolfs TI TNETA1570' CONFIG_ATM_TNETA1570 y 164*1da177e4SLinus Torvalds# if [ "$CONFIG_ATM_TNETA1570" = "y" ]; then 165*1da177e4SLinus Torvalds# bool ' Enable extended debugging' CONFIG_ATM_TNETA1570_DEBUG n 166*1da177e4SLinus Torvalds# fi 167*1da177e4SLinus Torvaldsconfig ATM_NICSTAR 168*1da177e4SLinus Torvalds tristate "IDT 77201 (NICStAR) (ForeRunnerLE)" 169*1da177e4SLinus Torvalds depends on PCI && ATM && !64BIT 170*1da177e4SLinus Torvalds help 171*1da177e4SLinus Torvalds The NICStAR chipset family is used in a large number of ATM NICs for 172*1da177e4SLinus Torvalds 25 and for 155 Mbps, including IDT cards and the Fore ForeRunnerLE 173*1da177e4SLinus Torvalds series. Say Y if you have one of those. 174*1da177e4SLinus Torvalds 175*1da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module will 176*1da177e4SLinus Torvalds be called nicstar. 177*1da177e4SLinus Torvalds 178*1da177e4SLinus Torvaldsconfig ATM_NICSTAR_USE_SUNI 179*1da177e4SLinus Torvalds bool "Use suni PHY driver (155Mbps)" 180*1da177e4SLinus Torvalds depends on ATM_NICSTAR 181*1da177e4SLinus Torvalds help 182*1da177e4SLinus Torvalds Support for the S-UNI and compatible PHYsical layer chips. These are 183*1da177e4SLinus Torvalds found in most 155Mbps NICStAR based ATM cards, namely in the 184*1da177e4SLinus Torvalds ForeRunner LE155 cards. This driver provides detection of cable~ 185*1da177e4SLinus Torvalds removal and reinsertion and provides some statistics. This driver 186*1da177e4SLinus Torvalds doesn't have removal capability when compiled as a module, so if you 187*1da177e4SLinus Torvalds need that capability don't include S-UNI support (it's not needed to 188*1da177e4SLinus Torvalds make the card work). 189*1da177e4SLinus Torvalds 190*1da177e4SLinus Torvaldsconfig ATM_NICSTAR_USE_IDT77105 191*1da177e4SLinus Torvalds bool "Use IDT77015 PHY driver (25Mbps)" 192*1da177e4SLinus Torvalds depends on ATM_NICSTAR 193*1da177e4SLinus Torvalds help 194*1da177e4SLinus Torvalds Support for the PHYsical layer chip in ForeRunner LE25 cards. In 195*1da177e4SLinus Torvalds addition to cable removal/reinsertion detection, this driver allows 196*1da177e4SLinus Torvalds you to control the loopback mode of the chip via a dedicated IOCTL. 197*1da177e4SLinus Torvalds This driver is required for proper handling of temporary carrier 198*1da177e4SLinus Torvalds loss, so if you have a 25Mbps NICStAR based ATM card you must say Y. 199*1da177e4SLinus Torvalds 200*1da177e4SLinus Torvaldsconfig ATM_IDT77252 201*1da177e4SLinus Torvalds tristate "IDT 77252 (NICStAR II)" 202*1da177e4SLinus Torvalds depends on PCI && ATM 203*1da177e4SLinus Torvalds help 204*1da177e4SLinus Torvalds Driver for the IDT 77252 ATM PCI chips. 205*1da177e4SLinus Torvalds 206*1da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module will 207*1da177e4SLinus Torvalds be called idt77252. 208*1da177e4SLinus Torvalds 209*1da177e4SLinus Torvaldsconfig ATM_IDT77252_DEBUG 210*1da177e4SLinus Torvalds bool "Enable debugging messages" 211*1da177e4SLinus Torvalds depends on ATM_IDT77252 212*1da177e4SLinus Torvalds help 213*1da177e4SLinus Torvalds Somewhat useful debugging messages are available. The choice of 214*1da177e4SLinus Torvalds messages is controlled by a bitmap. This may be specified as a 215*1da177e4SLinus Torvalds module argument. See the file <file:drivers/atm/idt77252.h> for 216*1da177e4SLinus Torvalds the meanings of the bits in the mask. 217*1da177e4SLinus Torvalds 218*1da177e4SLinus Torvalds When active, these messages can have a significant impact on the 219*1da177e4SLinus Torvalds speed of the driver, and the size of your syslog files! When 220*1da177e4SLinus Torvalds inactive, they will have only a modest impact on performance. 221*1da177e4SLinus Torvalds 222*1da177e4SLinus Torvaldsconfig ATM_IDT77252_RCV_ALL 223*1da177e4SLinus Torvalds bool "Receive ALL cells in raw queue" 224*1da177e4SLinus Torvalds depends on ATM_IDT77252 225*1da177e4SLinus Torvalds help 226*1da177e4SLinus Torvalds Enable receiving of all cells on the ATM link, that do not match 227*1da177e4SLinus Torvalds an open connection in the raw cell queue of the driver. Useful 228*1da177e4SLinus Torvalds for debugging or special applications only, so the safe answer is N. 229*1da177e4SLinus Torvalds 230*1da177e4SLinus Torvaldsconfig ATM_IDT77252_USE_SUNI 231*1da177e4SLinus Torvalds bool 232*1da177e4SLinus Torvalds depends on ATM_IDT77252 233*1da177e4SLinus Torvalds default y 234*1da177e4SLinus Torvalds 235*1da177e4SLinus Torvaldsconfig ATM_AMBASSADOR 236*1da177e4SLinus Torvalds tristate "Madge Ambassador (Collage PCI 155 Server)" 237*1da177e4SLinus Torvalds depends on PCI && ATM 238*1da177e4SLinus Torvalds help 239*1da177e4SLinus Torvalds This is a driver for ATMizer based ATM card produced by Madge 240*1da177e4SLinus Torvalds Networks Ltd. Say Y (or M to compile as a module named ambassador) 241*1da177e4SLinus Torvalds here if you have one of these cards. 242*1da177e4SLinus Torvalds 243*1da177e4SLinus Torvaldsconfig ATM_AMBASSADOR_DEBUG 244*1da177e4SLinus Torvalds bool "Enable debugging messages" 245*1da177e4SLinus Torvalds depends on ATM_AMBASSADOR 246*1da177e4SLinus Torvalds ---help--- 247*1da177e4SLinus Torvalds Somewhat useful debugging messages are available. The choice of 248*1da177e4SLinus Torvalds messages is controlled by a bitmap. This may be specified as a 249*1da177e4SLinus Torvalds module argument (kernel command line argument as well?), changed 250*1da177e4SLinus Torvalds dynamically using an ioctl (not yet) or changed by sending the 251*1da177e4SLinus Torvalds string "Dxxxx" to VCI 1023 (where x is a hex digit). See the file 252*1da177e4SLinus Torvalds <file:drivers/atm/ambassador.h> for the meanings of the bits in the 253*1da177e4SLinus Torvalds mask. 254*1da177e4SLinus Torvalds 255*1da177e4SLinus Torvalds When active, these messages can have a significant impact on the 256*1da177e4SLinus Torvalds speed of the driver, and the size of your syslog files! When 257*1da177e4SLinus Torvalds inactive, they will have only a modest impact on performance. 258*1da177e4SLinus Torvalds 259*1da177e4SLinus Torvaldsconfig ATM_HORIZON 260*1da177e4SLinus Torvalds tristate "Madge Horizon [Ultra] (Collage PCI 25 and Collage PCI 155 Client)" 261*1da177e4SLinus Torvalds depends on PCI && ATM 262*1da177e4SLinus Torvalds help 263*1da177e4SLinus Torvalds This is a driver for the Horizon chipset ATM adapter cards once 264*1da177e4SLinus Torvalds produced by Madge Networks Ltd. Say Y (or M to compile as a module 265*1da177e4SLinus Torvalds named horizon) here if you have one of these cards. 266*1da177e4SLinus Torvalds 267*1da177e4SLinus Torvaldsconfig ATM_HORIZON_DEBUG 268*1da177e4SLinus Torvalds bool "Enable debugging messages" 269*1da177e4SLinus Torvalds depends on ATM_HORIZON 270*1da177e4SLinus Torvalds ---help--- 271*1da177e4SLinus Torvalds Somewhat useful debugging messages are available. The choice of 272*1da177e4SLinus Torvalds messages is controlled by a bitmap. This may be specified as a 273*1da177e4SLinus Torvalds module argument (kernel command line argument as well?), changed 274*1da177e4SLinus Torvalds dynamically using an ioctl (not yet) or changed by sending the 275*1da177e4SLinus Torvalds string "Dxxxx" to VCI 1023 (where x is a hex digit). See the file 276*1da177e4SLinus Torvalds <file:drivers/atm/horizon.h> for the meanings of the bits in the 277*1da177e4SLinus Torvalds mask. 278*1da177e4SLinus Torvalds 279*1da177e4SLinus Torvalds When active, these messages can have a significant impact on the 280*1da177e4SLinus Torvalds speed of the driver, and the size of your syslog files! When 281*1da177e4SLinus Torvalds inactive, they will have only a modest impact on performance. 282*1da177e4SLinus Torvalds 283*1da177e4SLinus Torvaldsconfig ATM_IA 284*1da177e4SLinus Torvalds tristate "Interphase ATM PCI x575/x525/x531" 285*1da177e4SLinus Torvalds depends on PCI && ATM && !64BIT 286*1da177e4SLinus Torvalds ---help--- 287*1da177e4SLinus Torvalds This is a driver for the Interphase (i)ChipSAR adapter cards 288*1da177e4SLinus Torvalds which include a variety of variants in term of the size of the 289*1da177e4SLinus Torvalds control memory (128K-1KVC, 512K-4KVC), the size of the packet 290*1da177e4SLinus Torvalds memory (128K, 512K, 1M), and the PHY type (Single/Multi mode OC3, 291*1da177e4SLinus Torvalds UTP155, UTP25, DS3 and E3). Go to: 292*1da177e4SLinus Torvalds <http://www.iphase.com/products/ClassSheet.cfm?ClassID=ATM> 293*1da177e4SLinus Torvalds for more info about the cards. Say Y (or M to compile as a module 294*1da177e4SLinus Torvalds named iphase) here if you have one of these cards. 295*1da177e4SLinus Torvalds 296*1da177e4SLinus Torvalds See the file <file:Documentation/networking/iphase.txt> for further 297*1da177e4SLinus Torvalds details. 298*1da177e4SLinus Torvalds 299*1da177e4SLinus Torvaldsconfig ATM_IA_DEBUG 300*1da177e4SLinus Torvalds bool "Enable debugging messages" 301*1da177e4SLinus Torvalds depends on ATM_IA 302*1da177e4SLinus Torvalds ---help--- 303*1da177e4SLinus Torvalds Somewhat useful debugging messages are available. The choice of 304*1da177e4SLinus Torvalds messages is controlled by a bitmap. This may be specified as a 305*1da177e4SLinus Torvalds module argument (kernel command line argument as well?), changed 306*1da177e4SLinus Torvalds dynamically using an ioctl (Get the debug utility, iadbg, from 307*1da177e4SLinus Torvalds <ftp://ftp.iphase.com/pub/atm/pci/>). 308*1da177e4SLinus Torvalds 309*1da177e4SLinus Torvalds See the file <file:drivers/atm/iphase.h> for the meanings of the 310*1da177e4SLinus Torvalds bits in the mask. 311*1da177e4SLinus Torvalds 312*1da177e4SLinus Torvalds When active, these messages can have a significant impact on the 313*1da177e4SLinus Torvalds speed of the driver, and the size of your syslog files! When 314*1da177e4SLinus Torvalds inactive, they will have only a modest impact on performance. 315*1da177e4SLinus Torvalds 316*1da177e4SLinus Torvaldsconfig ATM_FORE200E_MAYBE 317*1da177e4SLinus Torvalds tristate "FORE Systems 200E-series" 318*1da177e4SLinus Torvalds depends on (PCI || SBUS) && ATM 319*1da177e4SLinus Torvalds ---help--- 320*1da177e4SLinus Torvalds This is a driver for the FORE Systems 200E-series ATM adapter 321*1da177e4SLinus Torvalds cards. It simultaneously supports PCA-200E and SBA-200E models 322*1da177e4SLinus Torvalds on PCI and SBUS hosts. Say Y (or M to compile as a module 323*1da177e4SLinus Torvalds named fore_200e) here if you have one of these ATM adapters. 324*1da177e4SLinus Torvalds 325*1da177e4SLinus Torvalds Note that the driver will actually be compiled only if you 326*1da177e4SLinus Torvalds additionally enable the support for PCA-200E and/or SBA-200E 327*1da177e4SLinus Torvalds cards. 328*1da177e4SLinus Torvalds 329*1da177e4SLinus Torvalds See the file <file:Documentation/networking/fore200e.txt> for 330*1da177e4SLinus Torvalds further details. 331*1da177e4SLinus Torvalds 332*1da177e4SLinus Torvaldsconfig ATM_FORE200E_PCA 333*1da177e4SLinus Torvalds bool "PCA-200E support" 334*1da177e4SLinus Torvalds depends on ATM_FORE200E_MAYBE && PCI 335*1da177e4SLinus Torvalds help 336*1da177e4SLinus Torvalds Say Y here if you want your PCA-200E cards to be probed. 337*1da177e4SLinus Torvalds 338*1da177e4SLinus Torvaldsconfig ATM_FORE200E_PCA_DEFAULT_FW 339*1da177e4SLinus Torvalds bool "Use default PCA-200E firmware (normally enabled)" 340*1da177e4SLinus Torvalds depends on ATM_FORE200E_PCA 341*1da177e4SLinus Torvalds help 342*1da177e4SLinus Torvalds Use the default PCA-200E firmware data shipped with the driver. 343*1da177e4SLinus Torvalds 344*1da177e4SLinus Torvalds Normal users do not have to deal with the firmware stuff, so 345*1da177e4SLinus Torvalds they should say Y here. 346*1da177e4SLinus Torvalds 347*1da177e4SLinus Torvaldsconfig ATM_FORE200E_PCA_FW 348*1da177e4SLinus Torvalds string "Pathname of user-supplied binary firmware" 349*1da177e4SLinus Torvalds depends on ATM_FORE200E_PCA && !ATM_FORE200E_PCA_DEFAULT_FW 350*1da177e4SLinus Torvalds default "" 351*1da177e4SLinus Torvalds help 352*1da177e4SLinus Torvalds This defines the pathname of an alternative PCA-200E binary 353*1da177e4SLinus Torvalds firmware image supplied by the user. This pathname may be 354*1da177e4SLinus Torvalds absolute or relative to the drivers/atm directory. 355*1da177e4SLinus Torvalds 356*1da177e4SLinus Torvalds The driver comes with an adequate firmware image, so normal users do 357*1da177e4SLinus Torvalds not have to supply an alternative one. They just say Y to "Use 358*1da177e4SLinus Torvalds default PCA-200E firmware" instead. 359*1da177e4SLinus Torvalds 360*1da177e4SLinus Torvaldsconfig ATM_FORE200E_SBA 361*1da177e4SLinus Torvalds bool "SBA-200E support" 362*1da177e4SLinus Torvalds depends on ATM_FORE200E_MAYBE && SBUS 363*1da177e4SLinus Torvalds help 364*1da177e4SLinus Torvalds Say Y here if you want your SBA-200E cards to be probed. 365*1da177e4SLinus Torvalds 366*1da177e4SLinus Torvaldsconfig ATM_FORE200E_SBA_DEFAULT_FW 367*1da177e4SLinus Torvalds bool "Use default SBA-200E firmware (normally enabled)" 368*1da177e4SLinus Torvalds depends on ATM_FORE200E_SBA 369*1da177e4SLinus Torvalds help 370*1da177e4SLinus Torvalds Use the default SBA-200E firmware data shipped with the driver. 371*1da177e4SLinus Torvalds 372*1da177e4SLinus Torvalds Normal users do not have to deal with the firmware stuff, so 373*1da177e4SLinus Torvalds they should say Y here. 374*1da177e4SLinus Torvalds 375*1da177e4SLinus Torvaldsconfig ATM_FORE200E_SBA_FW 376*1da177e4SLinus Torvalds string "Pathname of user-supplied binary firmware" 377*1da177e4SLinus Torvalds depends on ATM_FORE200E_SBA && !ATM_FORE200E_SBA_DEFAULT_FW 378*1da177e4SLinus Torvalds default "" 379*1da177e4SLinus Torvalds help 380*1da177e4SLinus Torvalds This defines the pathname of an alternative SBA-200E binary 381*1da177e4SLinus Torvalds firmware image supplied by the user. This pathname may be 382*1da177e4SLinus Torvalds absolute or relative to the drivers/atm directory. 383*1da177e4SLinus Torvalds 384*1da177e4SLinus Torvalds The driver comes with an adequate firmware image, so normal users do 385*1da177e4SLinus Torvalds not have to supply an alternative one. They just say Y to "Use 386*1da177e4SLinus Torvalds default SBA-200E firmware", above. 387*1da177e4SLinus Torvalds 388*1da177e4SLinus Torvaldsconfig ATM_FORE200E_USE_TASKLET 389*1da177e4SLinus Torvalds bool "Defer interrupt work to a tasklet" 390*1da177e4SLinus Torvalds depends on (PCI || SBUS) && (ATM_FORE200E_PCA || ATM_FORE200E_SBA) 391*1da177e4SLinus Torvalds default n 392*1da177e4SLinus Torvalds help 393*1da177e4SLinus Torvalds This defers work to be done by the interrupt handler to a 394*1da177e4SLinus Torvalds tasklet instead of hanlding everything at interrupt time. This 395*1da177e4SLinus Torvalds may improve the responsive of the host. 396*1da177e4SLinus Torvalds 397*1da177e4SLinus Torvaldsconfig ATM_FORE200E_TX_RETRY 398*1da177e4SLinus Torvalds int "Maximum number of tx retries" 399*1da177e4SLinus Torvalds depends on (PCI || SBUS) && (ATM_FORE200E_PCA || ATM_FORE200E_SBA) 400*1da177e4SLinus Torvalds default "16" 401*1da177e4SLinus Torvalds ---help--- 402*1da177e4SLinus Torvalds Specifies the number of times the driver attempts to transmit 403*1da177e4SLinus Torvalds a message before giving up, if the transmit queue of the ATM card 404*1da177e4SLinus Torvalds is transiently saturated. 405*1da177e4SLinus Torvalds 406*1da177e4SLinus Torvalds Saturation of the transmit queue may occur only under extreme 407*1da177e4SLinus Torvalds conditions, e.g. when a fast host continuously submits very small 408*1da177e4SLinus Torvalds frames (<64 bytes) or raw AAL0 cells (48 bytes) to the ATM adapter. 409*1da177e4SLinus Torvalds 410*1da177e4SLinus Torvalds Note that under common conditions, it is unlikely that you encounter 411*1da177e4SLinus Torvalds a saturation of the transmit queue, so the retry mechanism never 412*1da177e4SLinus Torvalds comes into play. 413*1da177e4SLinus Torvalds 414*1da177e4SLinus Torvaldsconfig ATM_FORE200E_DEBUG 415*1da177e4SLinus Torvalds int "Debugging level (0-3)" 416*1da177e4SLinus Torvalds depends on (PCI || SBUS) && (ATM_FORE200E_PCA || ATM_FORE200E_SBA) 417*1da177e4SLinus Torvalds default "0" 418*1da177e4SLinus Torvalds help 419*1da177e4SLinus Torvalds Specifies the level of debugging messages issued by the driver. 420*1da177e4SLinus Torvalds The verbosity of the driver increases with the value of this 421*1da177e4SLinus Torvalds parameter. 422*1da177e4SLinus Torvalds 423*1da177e4SLinus Torvalds When active, these messages can have a significant impact on 424*1da177e4SLinus Torvalds the performances of the driver, and the size of your syslog files! 425*1da177e4SLinus Torvalds Keep the debugging level to 0 during normal operations. 426*1da177e4SLinus Torvalds 427*1da177e4SLinus Torvaldsconfig ATM_FORE200E 428*1da177e4SLinus Torvalds tristate 429*1da177e4SLinus Torvalds depends on (PCI || SBUS) && (ATM_FORE200E_PCA || ATM_FORE200E_SBA) 430*1da177e4SLinus Torvalds default m if ATM_FORE200E_MAYBE!=y 431*1da177e4SLinus Torvalds default y if ATM_FORE200E_MAYBE=y 432*1da177e4SLinus Torvalds 433*1da177e4SLinus Torvaldsconfig ATM_HE 434*1da177e4SLinus Torvalds tristate "ForeRunner HE Series" 435*1da177e4SLinus Torvalds depends on PCI && ATM 436*1da177e4SLinus Torvalds help 437*1da177e4SLinus Torvalds This is a driver for the Marconi ForeRunner HE-series ATM adapter 438*1da177e4SLinus Torvalds cards. It simultaneously supports the 155 and 622 versions. 439*1da177e4SLinus Torvalds 440*1da177e4SLinus Torvaldsconfig ATM_HE_USE_SUNI 441*1da177e4SLinus Torvalds bool "Use S/UNI PHY driver" 442*1da177e4SLinus Torvalds depends on ATM_HE 443*1da177e4SLinus Torvalds help 444*1da177e4SLinus Torvalds Support for the S/UNI-Ultra and S/UNI-622 found in the ForeRunner 445*1da177e4SLinus Torvalds HE cards. This driver provides carrier detection some statistics. 446*1da177e4SLinus Torvalds 447*1da177e4SLinus Torvaldsendmenu 448*1da177e4SLinus Torvalds 449