blob: 8006c227fda25fbd150e183a622b94afd9defd86 [file] [log] [blame]
Ismail Donmez1db1a872005-06-20 15:32:52 -07001Davicom DM9102(A)/DM9132/DM9801 fast ethernet driver for Linux.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
Ismail Donmez1db1a872005-06-20 15:32:52 -07003This program is free software; you can redistribute it and/or
4modify it under the terms of the GNU General Public License
5as published by the Free Software Foundation; either version 2
6of the License, or (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Ismail Donmez1db1a872005-06-20 15:32:52 -07008This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13
Ismail Donmez1db1a872005-06-20 15:32:52 -070014This driver provides kernel support for Davicom DM9102(A)/DM9132/DM9801 ethernet cards ( CNET
1510/100 ethernet cards uses Davicom chipset too, so this driver supports CNET cards too ).If you
16didn't compile this driver as a module, it will automatically load itself on boot and print a
17line similar to :
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Ismail Donmez1db1a872005-06-20 15:32:52 -070019 dmfe: Davicom DM9xxx net driver, version 1.36.4 (2002-01-17)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Ismail Donmez1db1a872005-06-20 15:32:52 -070021If you compiled this driver as a module, you have to load it on boot.You can load it with command :
22
23 insmod dmfe
24
25This way it will autodetect the device mode.This is the suggested way to load the module.Or you can pass
26a mode= setting to module while loading, like :
27
28 insmod dmfe mode=0 # Force 10M Half Duplex
29 insmod dmfe mode=1 # Force 100M Half Duplex
30 insmod dmfe mode=4 # Force 10M Full Duplex
31 insmod dmfe mode=5 # Force 100M Full Duplex
32
33Next you should configure your network interface with a command similar to :
34
35 ifconfig eth0 172.22.3.18
36 ^^^^^^^^^^^
Matt LaPlante3f6dee92006-10-03 22:45:33 +020037 Your IP Address
Ismail Donmez1db1a872005-06-20 15:32:52 -070038
39Then you may have to modify the default routing table with command :
40
41 route add default eth0
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43
Ismail Donmez1db1a872005-06-20 15:32:52 -070044Now your ethernet card should be up and running.
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46
Ismail Donmez1db1a872005-06-20 15:32:52 -070047TODO:
48
49Implement pci_driver::suspend() and pci_driver::resume() power management methods.
50Check on 64 bit boxes.
51Check and fix on big endian boxes.
52Test and make sure PCI latency is now correct for all cases.
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54
Ismail Donmez1db1a872005-06-20 15:32:52 -070055Authors:
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Ismail Donmez1db1a872005-06-20 15:32:52 -070057Sten Wang <sten_wang@davicom.com.tw > : Original Author
58Tobias Ringstrom <tori@unhappy.mine.nu> : Current Maintainer
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Ismail Donmez1db1a872005-06-20 15:32:52 -070060Contributors:
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Ismail Donmez1db1a872005-06-20 15:32:52 -070062Marcelo Tosatti <marcelo@conectiva.com.br>
Alan Cox89a056d2008-10-29 14:01:14 -070063Alan Cox <alan@lxorguk.ukuu.org.uk>
Ismail Donmez1db1a872005-06-20 15:32:52 -070064Jeff Garzik <jgarzik@pobox.com>
65Vojtech Pavlik <vojtech@suse.cz>