3c505.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. The 3Com Etherlink Plus (3c505) driver.
  2. This driver now uses DMA. There is currently no support for PIO operation.
  3. The default DMA channel is 6; this is _not_ autoprobed, so you must
  4. make sure you configure it correctly. If loading the driver as a
  5. module, you can do this with "modprobe 3c505 dma=n". If the driver is
  6. linked statically into the kernel, you must either use an "ether="
  7. statement on the command line, or change the definition of ELP_DMA in 3c505.h.
  8. The driver will warn you if it has to fall back on the compiled in
  9. default DMA channel.
  10. If no base address is given at boot time, the driver will autoprobe
  11. ports 0x300, 0x280 and 0x310 (in that order). If no IRQ is given, the driver
  12. will try to probe for it.
  13. The driver can be used as a loadable module. See net-modules.txt for details
  14. of the parameters it can take.
  15. Theoretically, one instance of the driver can now run multiple cards,
  16. in the standard way (when loading a module, say "modprobe 3c505
  17. io=0x300,0x340 irq=10,11 dma=6,7" or whatever). I have not tested
  18. this, though.
  19. The driver may now support revision 2 hardware; the dependency on
  20. being able to read the host control register has been removed. This
  21. is also untested, since I don't have a suitable card.
  22. Known problems:
  23. I still see "DMA upload timed out" messages from time to time. These
  24. seem to be fairly non-fatal though.
  25. The card is old and slow.
  26. To do:
  27. Improve probe/setup code
  28. Test multicast and promiscuous operation
  29. Authors:
  30. The driver is mainly written by Craig Southeren, email
  31. <craigs@ineluki.apana.org.au>.
  32. Parts of the driver (adapting the driver to 1.1.4+ kernels,
  33. IRQ/address detection, some changes) and this README by
  34. Juha Laiho <jlaiho@ichaos.nullnet.fi>.
  35. DMA mode, more fixes, etc, by Philip Blundell <pjb27@cam.ac.uk>
  36. Multicard support, Software configurable DMA, etc., by
  37. Christopher Collins <ccollins@pcug.org.au>