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