vortex.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:14k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. Documentation/networking/vortex.txt
  2. Andrew Morton <andrewm@uow.edu.au>
  3. 30 April 2000
  4. This document describes the usage and errata of the 3Com "Vortex" device
  5. driver for Linux, 3c59x.c.
  6. The driver was written by Donald Becker <becker@scyld.com>
  7. Don is no longer the prime maintainer of this version of the driver. 
  8. Please report problems to one or more of:
  9.   Andrew Morton <andrewm@uow.edu.au>
  10.   Netdev mailing list <netdev@oss.sgi.com>
  11.   Linux kernel mailing list <linux-kernel@vger.kernel.org>
  12. Please note the 'Reporting and Diagnosing Problems' section at the end
  13. of this file.
  14. Since kernel 2.3.99-pre6, this driver incorporates the support for the
  15. 3c575-series Cardbus cards which used to be handled by 3c575_cb.c.
  16. This driver supports the following hardware:
  17.    3c590 Vortex 10Mbps
  18.    3c592 EISA 10mbps Demon/Vortex
  19.    3c597 EISA Fast Demon/Vortex
  20.    3c595 Vortex 100baseTx
  21.    3c595 Vortex 100baseT4
  22.    3c595 Vortex 100base-MII
  23.    3Com Vortex
  24.    3c900 Boomerang 10baseT
  25.    3c900 Boomerang 10Mbps Combo
  26.    3c900 Cyclone 10Mbps TPO
  27.    3c900B Cyclone 10Mbps T
  28.    3c900 Cyclone 10Mbps Combo
  29.    3c900 Cyclone 10Mbps TPC
  30.    3c900B-FL Cyclone 10base-FL
  31.    3c905 Boomerang 100baseTx
  32.    3c905 Boomerang 100baseT4
  33.    3c905B Cyclone 100baseTx
  34.    3c905B Cyclone 10/100/BNC
  35.    3c905B-FX Cyclone 100baseFx
  36.    3c905C Tornado
  37.    3c980 Cyclone
  38.    3cSOHO100-TX Hurricane
  39.    3c555 Laptop Hurricane
  40.    3c575 Boomerang CardBus
  41.    3CCFE575 Cyclone CardBus
  42.    3CCFE575CT Cyclone CardBus
  43.    3CCFE656 Cyclone CardBus
  44.    3CCFEM656 Cyclone CardBus
  45.    3c450 Cyclone/unknown
  46. Module parameters
  47. =================
  48. There are several parameters which may be provided to the driver when
  49. its module is loaded.  These are usually placed in /etc/modules.conf
  50. (used to be conf.modules).  Example:
  51. options 3c59x debug=3 rx_copybreak=300
  52. If you are using the PCMCIA tools (cardmgr) then the options may be
  53. placed in /etc/pcmcia/config.opts:
  54. module "3c59x" opts "debug=3 rx_copybreak=300"
  55. The supported parameters are:
  56. debug=N
  57.   Where N is a number from 0 to 7.  Anything above 3 produces a lot
  58.   of output in your system logs.  debug=1 is default.
  59. options=N1,N2,N3,...
  60.   Each number in the list provides an option to the corresponding
  61.   network card.  So if you have two 3c905's and you wish to provide
  62.   them with option 0x204 you would use:
  63.     options=0x204,0x204
  64.   The individual options are composed of a number of bitfields which
  65.   have the following meanings:
  66.   Possible media type settings
  67. 0 10baseT
  68. 1 10Mbs AUI
  69. 2 undefined
  70. 3 10base2 (BNC)
  71. 4 100base-TX
  72. 5 100base-FX
  73. 6 MII (Media Independent Interface)
  74. 7 Use default setting from EEPROM
  75. 8       Autonegotiate
  76. 9       External MII
  77. 10      Use default setting from EEPROM
  78.   When generating a value for the 'options' setting, the above media
  79.   selection values may be OR'ed (or added to) the following:
  80.   0x8000  Set driver debugging level to 7
  81.   0x4000  Set driver debugging level to 2
  82.   0x0400  Enable Wake-on-LAN
  83.   0x0200  Force full duplex mode.
  84.   0x0010  Bus-master enable bit (Old Vortex cards only)
  85.   For example:
  86.     insmod 3c59x options=0x204
  87.   will force full-duplex 100base-TX, rather than allowing the usual
  88.   autonegotiation.
  89. full_duplex=N1,N2,N3...
  90.   Similar to bit 9 of 'options'.  Forces the corresponding card into
  91.   full-duplex mode.  Please use this in preference to the `options'
  92.   parameter.
  93.   In fact, please don't use this at all! You're better off getting
  94.   autonegotiation working properly.
  95. flow_ctrl=N1,N2,N3...
  96.   Use 802.3x MAC-layer flow control.  The 3com cards only support the
  97.   PAUSE command, which means that they will stop sending packets for a
  98.   short period if they receive a PAUSE frame from the link partner. 
  99.   The driver only allows flow control on a link which is operating in
  100.   full duplex mode.
  101.   This feature does not appear to work on the 3c905 - only 3c905B and
  102.   3c905C have been tested.
  103.   The 3com cards appear to only respond to PAUSE frames which are
  104.   sent to the reserved destination address of 01:80:c2:00:00:01.  They
  105.   do not honour PAUSE frames which are sent to the station MAC address.
  106. rx_copybreak=M
  107.   The driver preallocates 32 full-sized (1536 byte) network buffers
  108.   for receiving.  When a packet arrives, the driver has to decide
  109.   whether to leave the packet in its full-sized buffer, or to allocate
  110.   a smaller buffer and copy the packet across into it.
  111.   This is a speed/space tradeoff.
  112.   The value of rx_copybreak is used to decide when to make the copy. 
  113.   If the packet size is less than rx_copybreak, the packet is copied. 
  114.   The default value for rx_copybreak is 200 bytes.
  115. max_interrupt_work=N
  116.   The driver's interrupt service routine can handle many receive and
  117.   transmit packets in a single invocation.  It does this in a loop. 
  118.   The value of max_interrupt_work governs how mnay times the interrupt
  119.   service routine will loop.  The default value is 32 loops.  If this
  120.   is exceeded the interrupt service routine gives up and generates a
  121.   warning message "eth0: Too much work in interrupt".
  122. hw_checksums=N1,N2,N3,...
  123.   Recent 3com NICs are able to generate IPv4, TCP and UDP checksums
  124.   in hardware.  Linux has used the Rx checksumming for a long time. 
  125.   The "zero copy" patch which is planned for the 2.4 kernel series
  126.   allows you to make use of the NIC's DMA scatter/gather and transmit
  127.   checksumming as well.
  128.   The driver is set up so that, when the zerocopy patch is applied,
  129.   all Tornado and Cyclone devices will use S/G and Tx checksums.
  130.   This module parameter has been provided so you can override this
  131.   decision.  If you think that Tx checksums are causing a problem, you
  132.   may disable the feature with `hw_checksums=0'.
  133.   If you think your NIC should be performing Tx checksumming and the
  134.   driver isn't enabling it, you can force the use of hardware Tx
  135.   checksumming with `hw_checksums=1'.
  136.   The driver drops a message in the logfiles to indicate whether or
  137.   not it is using hardware scatter/gather and hardware Tx checksums.
  138.   Scatter/gather and hardware checksums provide considerable
  139.   performance improvement for the sendfile() system call, but a small
  140.   decrease in throughput for send().  There is no effect upon receive
  141.   efficiency.
  142. compaq_ioaddr=N
  143. compaq_irq=N
  144. compaq_device_id=N
  145.   "Variables to work-around the Compaq PCI BIOS32 problem"....
  146. watchdog=N
  147.   Sets the time duration (in milliseconds) after which the kernel
  148.   decides that the transmitter has become stuck and needs to be reset. 
  149.   This is mainly for debugging purposes, although it may be advantageous
  150.   to increase this value on LANs which have very high collision rates.
  151.   The default value is 5000 (5.0 seconds).
  152. enable_wol=N1,N2,N3,...
  153.   Enable Wake-on-LAN support for the relevant interface.  Donald
  154.   Becker's `ether-wake' application may be used to wake suspended
  155.   machines.
  156. Media selection
  157. ---------------
  158. A number of the older NICs such as the 3c590 and 3c900 series have
  159. 10base2 and AUI interfaces.
  160. Prior to January, 2001 this driver would autoeselect the 10base2 or AUI
  161. port if it didn't detect activity on the 10baseT port.  It would then
  162. get stuck on the 10base2 port and a driver reload was necessary to
  163. switch back to 10baseT.  This behaviour could not be prevented with a
  164. module option override.
  165. Later (current) versions of the driver _do_ support locking of the
  166. media type.  So if you load the driver module with
  167. modprobe 3c59x options=0
  168. it will permanently select the 10baseT port.  Automatic selection of
  169. other media types does not occur.
  170. Transmit error, Tx status register 82
  171. -------------------------------------
  172. This is a common error which is almost always caused by another host on
  173. the same network being in full-duplex mode, while this host is in
  174. half-duplex mode.  You need to find that other host and make it run in
  175. half-duplex mode or fix this host to run in full-duplex mode.
  176. As a last resort, you can force the 3c59x driver into full-duplex mode
  177. with
  178. options 3c59x full_duplex=1
  179. but this has to be viewed as a workaround for broken network gear and
  180. should only really be used for equipment which cannot autonegotiate.
  181. Additional resources
  182. --------------------
  183. Details of the device driver implementation are at the top of the source file.
  184. Additional documentation is available at Don Becker's Linux Drivers site:
  185.   http://www.scyld.com/network/vortex.html
  186. Donald Becker's driver development site:
  187.      http://www.scyld.com/network
  188. Donald's vortex-diag program is useful for inspecting the NIC's state:
  189.      http://www.scyld.com/diag/#pci-diags
  190. Donald's mii-diag program may be used for inspecting and manipulating
  191. the NIC's Media Independent Interface subsystem:
  192.      http://www.scyld.com/diag/#mii-diag
  193. Donald's wake-on-LAN page:
  194.      http://www.scyld.com/expert/wake-on-lan.html
  195. 3Com's documentation for many NICs, including the ones supported by
  196. this driver is available at 
  197.      http://support.3com.com/partners/developer/developer_form.html
  198. 3Com's DOS-based application for setting up the NICs EEPROMs:
  199. ftp://ftp.3com.com/pub/nic/3c90x/3c90xx2.exe
  200. Driver updates and a detailed changelog for the modifications which
  201. were made for the 2.3/2,4 series kernel is available at
  202.      http://www.uow.edu.au/~andrewm/linux/#3c59x-2.3
  203. Autonegotiation notes
  204. ---------------------
  205.   The driver uses a one-minute heartbeat for adapting to changes in
  206.   the external LAN environment.  This means that when, for example, a
  207.   machine is unplugged from a hubbed 10baseT LAN plugged into a
  208.   switched 100baseT LAN, the throughput will be quite dreadful for up
  209.   to sixty seconds.  Be patient.
  210.   Cisco interoperability note from Walter Wong <wcw+@CMU.EDU>:
  211.   On a side note, adding HAS_NWAY seems to share a problem with the
  212.   Cisco 6509 switch.  Specifically, you need to change the spanning
  213.   tree parameter for the port the machine is plugged into to 'portfast'
  214.   mode.  Otherwise, the negotiation fails.  This has been an issue
  215.   we've noticed for a while but haven't had the time to track down.
  216.   Cisco switches    (Jeff Busch <jbusch@deja.com>)
  217.     My "standard config" for ports to which PC's/servers connect directly:
  218.         interface FastEthernet0/N
  219.         description machinename
  220.         load-interval 30
  221.         spanning-tree portfast
  222.     If autonegotiation is a problem, you may need to specify "speed
  223.     100" and "duplex full" as well (or "speed 10" and "duplex half").
  224.     WARNING: DO NOT hook up hubs/switches/bridges to these
  225.     specially-configured ports! The switch will become very confused.
  226. Reporting and diagnosing problems
  227. ---------------------------------
  228. Maintainers find that accurate and complete problem reports are
  229. invaluable in resolving driver problems.  We are frequently not able to
  230. reproduce problems and must rely on your patience and efforts to get to
  231. the bottom of the problem.
  232. If you believe you have a driver problem here are some of the
  233. steps you should take:
  234. - Is it really a driver problem?
  235.    Eliminate some variables: try different cards, different
  236.    computers, different cables, different ports on the switch/hub,
  237.    different versions of the kernel or ofthe driver, etc.
  238. - OK, it's a driver problem.
  239.    You need to generate a report.  Typically this is an email to the
  240.    maintainer and/or linux-net@vger.kernel.org.  The maintainer's
  241.    email address will be inthe driver source or in the MAINTAINERS file.
  242. - The contents of your report will vary a lot depending upon the
  243.   problem.  If it's a kernel crash then you should refer to the
  244.   REPORTING-BUGS file.
  245.   But for most problems it is useful to provide the following:
  246.    o Kernel version, driver version
  247.    o A copy of the banner message which the driver generates when
  248.      it is initialised.  For example:
  249.      eth0: 3Com PCI 3c905C Tornado at 0xa400,  00:50:da:6a:88:f0, IRQ 19
  250.      8K byte-wide RAM 5:3 Rx:Tx split, autoselect/Autonegotiate interface.
  251.      MII transceiver found at address 24, status 782d.
  252.      Enabling bus-master transmits and whole-frame receives.
  253.      NOTE: You must provide the `debug=2' modprobe option to generate
  254.      a full detection message.  Please do this:
  255. modprobe 3c59x debug=2
  256.    o If it is a PCI device, the relevant output from 'lspci -vx', eg:
  257.      00:09.0 Ethernet controller: 3Com Corporation 3c905C-TX [Fast Etherlink] (rev 74)
  258.              Subsystem: 3Com Corporation: Unknown device 9200
  259.              Flags: bus master, medium devsel, latency 32, IRQ 19
  260.              I/O ports at a400 [size=128]
  261.              Memory at db000000 (32-bit, non-prefetchable) [size=128]
  262.              Expansion ROM at <unassigned> [disabled] [size=128K]
  263.              Capabilities: [dc] Power Management version 2
  264.      00: b7 10 00 92 07 00 10 02 74 00 00 02 08 20 00 00
  265.      10: 01 a4 00 00 00 00 00 db 00 00 00 00 00 00 00 00
  266.      20: 00 00 00 00 00 00 00 00 00 00 00 00 b7 10 00 10
  267.      30: 00 00 00 00 dc 00 00 00 00 00 00 00 05 01 0a 0a
  268.    o A description of the environment: 10baseT? 100baseT?
  269.      full/half duplex? switched or hubbed?
  270.    o Any additional module parameters which you may be providing to the driver.
  271.    o Any kernel logs which are produced.  The more the merrier. 
  272.      If this is a large file and you are sending your report to a
  273.      mailing list, mention that you have the logfile, but don't send
  274.      it.  If you're reporting direct to the maintainer then just send
  275.      it.
  276.      To ensure that all kernel logs are available, add the
  277.      following line to /etc/syslog.conf:
  278.          kern.* /var/log/messages
  279.      Then restart syslogd with:
  280.          /etc/rc.d/init.d/syslog restart
  281.      (The above may vary, depending upon which Linux distribution you use).
  282.     o If your problem is reproducible then that's great.  Try the
  283.       following:
  284.       1) Increase the debug level.  Usually this is done via:
  285.          a) modprobe driver.o debug=7
  286.          b) In /etc/conf.modules (or modules.conf):
  287.             options driver_name debug=7
  288.       2) Recreate the problem with the higher debug level,
  289.          send all logs to the maintainer.
  290.       3) Download you card's diagnostic tool from Donald
  291.          Backer's website http://www.scyld.com/diag.  Download
  292.          mii-diag.c as well.  Build these.
  293.          a) Run 'vortex-diag -aaee' and 'mii-diag -v' when the card is
  294.             working correctly.  Save the output.
  295.          b) Run the above commands when the card is malfunctioning.  Send
  296.             both sets of output.
  297. Finally, please be patient and be prepared to do some work.  You may end up working on
  298. this problem for a week or more as the maintainer asks more questions, asks for more
  299. tests, asks for patches to be applied, etc.  At the end of it all, the problem may even
  300. remain unresolved.