dmfe.txt 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. Note: This driver doesn't have a maintainer.
  2. Davicom DM9102(A)/DM9132/DM9801 fast ethernet driver for Linux.
  3. This program is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU General Public License
  5. as published by the Free Software Foundation; either version 2
  6. of the License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. This driver provides kernel support for Davicom DM9102(A)/DM9132/DM9801 ethernet cards ( CNET
  12. 10/100 ethernet cards uses Davicom chipset too, so this driver supports CNET cards too ).If you
  13. didn't compile this driver as a module, it will automatically load itself on boot and print a
  14. line similar to :
  15. dmfe: Davicom DM9xxx net driver, version 1.36.4 (2002-01-17)
  16. If you compiled this driver as a module, you have to load it on boot.You can load it with command :
  17. insmod dmfe
  18. This way it will autodetect the device mode.This is the suggested way to load the module.Or you can pass
  19. a mode= setting to module while loading, like :
  20. insmod dmfe mode=0 # Force 10M Half Duplex
  21. insmod dmfe mode=1 # Force 100M Half Duplex
  22. insmod dmfe mode=4 # Force 10M Full Duplex
  23. insmod dmfe mode=5 # Force 100M Full Duplex
  24. Next you should configure your network interface with a command similar to :
  25. ifconfig eth0 172.22.3.18
  26. ^^^^^^^^^^^
  27. Your IP Address
  28. Then you may have to modify the default routing table with command :
  29. route add default eth0
  30. Now your ethernet card should be up and running.
  31. TODO:
  32. Implement pci_driver::suspend() and pci_driver::resume() power management methods.
  33. Check on 64 bit boxes.
  34. Check and fix on big endian boxes.
  35. Test and make sure PCI latency is now correct for all cases.
  36. Authors:
  37. Sten Wang <sten_wang@davicom.com.tw > : Original Author
  38. Contributors:
  39. Marcelo Tosatti <marcelo@conectiva.com.br>
  40. Alan Cox <alan@lxorguk.ukuu.org.uk>
  41. Jeff Garzik <jgarzik@pobox.com>
  42. Vojtech Pavlik <vojtech@suse.cz>