DLINK.txt
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. Released 1994-06-13
  2. CONTENTS:
  3. 1. Introduction.
  4. 2. License.
  5. 3. Files in this release.
  6. 4. Installation.
  7. 5. Problems and tuning.
  8. 6. Using the drivers with earlier releases.
  9. 7. Acknowledgments.
  10. 1. INTRODUCTION.
  11. This is a set of Ethernet drivers for the D-Link DE-600/DE-620
  12. pocket adapters, for the parallel port on a Linux based machine.
  13. Some adapter "clones" will also work.  Xircom is _not_ a clone...
  14. These drivers _can_ be used as loadable modules,
  15. and were developed for use on Linux 1.1.13 and above.
  16. For use on Linux 1.0.X, or earlier releases, see below.
  17. I have used these drivers for NFS, ftp, telnet and X-clients on
  18. remote machines. Transmissions with ftp seems to work as
  19. good as can be expected (i.e. > 80k bytes/sec) from a
  20. parallel port...:-)  Receive speeds will be about 60-80% of this.
  21. Depending on your machine, somewhat higher speeds can be achieved.
  22. All comments/fixes to Bjorn Ekwall (bj0rn@blox.se).
  23. 2. LICENSE.
  24. This program is free software; you can redistribute it
  25. and/or modify it under the terms of the GNU General Public
  26. License as published by the Free Software Foundation; either
  27. version 2, or (at your option) any later version.
  28. This program is distributed in the hope that it will be
  29. useful, but WITHOUT ANY WARRANTY; without even the implied
  30. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  31. PURPOSE. See the GNU General Public License for more
  32. details.
  33. You should have received a copy of the GNU General Public
  34. License along with this program; if not, write to the Free
  35. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA
  36. 02139, USA.
  37. 3. FILES IN THIS RELEASE.
  38. README.DLINK  This file.
  39. de600.c       The Source (may it be with You :-) for the DE-600
  40. de620.c       ditto for the DE-620
  41. de620.h       Macros for de620.c
  42. If you are upgrading from the d-link tar release, there will
  43. also be a "dlink-patches" file that will patch Linux 1.1.18:
  44. linux/drivers/net/Makefile
  45. linux/drivers/net/CONFIG
  46. linux/drivers/net/MODULES
  47. linux/drivers/net/Space.c
  48. linux/config.in
  49. Apply the patch by:
  50. "cd /usr/src; patch -p0 < linux/drivers/net/dlink-patches"
  51. The old source, "linux/drivers/net/d_link.c", can be removed.
  52. 4. INSTALLATION.
  53. o Get the latest net binaries, according to current net.wisdom.
  54. o Read the NET-2 and Ethernet HOWTOs and modify your setup.
  55. o If your parallel port has a strange address or irq,
  56.   modify "linux/drivers/net/CONFIG" accordingly, or adjust
  57.   the parameters in the "tuning" section in the sources.
  58. If you are going to use the drivers as loadable modules, do _not_
  59. enable them while doing "make config", but instead make sure that
  60. the drivers are included in "linux/drivers/net/MODULES".
  61. If you are _not_ going to use the driver(s) as loadable modules,
  62. but instead have them included in the kernel, remember to enable
  63. the drivers while doing "make config".
  64. o To include networking and DE600/DE620 support in your kernel:
  65.   # cd /linux
  66.   (as modules:)
  67.   #  make config (answer yes on CONFIG_NET and CONFIG_INET)
  68.   (else included in the kernel:)
  69.   #  make config (answer yes on CONFIG _NET, _INET and _DE600 or _DE620)
  70.   # make clean
  71.   # make depend
  72.   # make zImage (or whatever magic you usually do)
  73. o I use lilo to boot multiple kernels, so that I at least
  74.   can have one working kernel :-). If you do too, append
  75.   these lines to /etc/lilo/config:
  76. image = /linux/zImage
  77. label = newlinux
  78. root = /dev/hda2 (or whatever YOU have...)
  79.   # /etc/lilo/install
  80. o Do "sync" and reboot the new kernel with a D-Link
  81.   DE-600/DE-620 pocket adapter connected.
  82. o The adapter can be configured with ifconfig eth?
  83.   where the actual number is decided by the kernel
  84.   when the drivers are initialized.
  85. 5. "PROBLEMS" AND TUNING,
  86. o If you see error messages from the driver, and if the traffic
  87.   stops on the adapter, try to do "ifconfig" and "route" once
  88.   more, just as in "rc.inet1".  This should take care of most
  89.   problems, including effects from power loss, or adapters that
  90.   aren't connected to the printer port in some way or another.
  91.   You can somewhat change the behaviour by enabling/disabling
  92.   the macro  SHUTDOWN_WHEN_LOST  in the "tuning" section.
  93.   For the DE-600 there is another macro, CHECK_LOST_DE600,
  94.   that you might want to read about in the "tuning" section.
  95. o Some machines have trouble handling the parallel port and
  96.   the adapter at high speed. If you experience problems:
  97.   DE-600:
  98.   - The adapter is not recognized at boot, i.e. an Ethernet
  99.     address of 00:80:c8:... is not shown, try to add another
  100.       "; SLOW_DOWN_IO"
  101.     at DE600_SLOW_DOWN in the "tuning" section. As a last resort,
  102.     uncomment: "#define REALLY_SLOW_IO" (see <asm/io.h> for hints).
  103.   - You experience "timeout" messages: first try to add another
  104.       "; SLOW_DOWN_IO"
  105.     at DE600_SLOW_DOWN in the "tuning" section, _then_ try to
  106.     increase the value (original value: 5) at
  107.     "if (tickssofar < 5)" near line 422.
  108.   DE-620:
  109.   - Your parallel port might be "sluggish".  To cater for
  110.     this, there are the macros LOWSPEED and READ_DELAY/WRITE_DELAY
  111.     in the "tuning" section. Your first step should be to enable
  112.     LOWSPEED, and after that you can "tune" the XXX_DELAY values.
  113. o If the adapter _is_ recognized at boot but you get messages
  114.   about "Network Unreachable", then the problem is probably
  115.   _not_ with the driver.  Check your net configuration instead
  116.   (ifconfig and route) in "rc.inet1".
  117. o There is some rudimentary support for debugging, look at
  118.   the source. Use "-DDE600_DEBUG=3" or "-DDE620_DEBUG=3"
  119.   when compiling, or include it in "linux/drivers/net/CONFIG".
  120.   IF YOU HAVE PROBLEMS YOU CAN'T SOLVE: PLEASE COMPILE THE DRIVER
  121.   WITH DEBUGGING ENABLED, AND SEND ME THE RESULTING OUTPUT!
  122. 6. USING THE DRIVERS WITH EARLIER RELEASES.
  123. The later 1.1.X releases of the Linux kernel include some
  124. changes in the networking layer (a.k.a. NET3). This affects
  125. these drivers in a few places.  The hints that follow are
  126. _not_ tested by me, since I don't have the disk space to keep
  127. all releases on-line.
  128. Known needed changes to date:
  129. - release patchfile: some patches will fail, but they should
  130.   be easy to apply "by hand", since they are trivial.
  131.   (Space.c: d_link_init() is now called de600_probe())
  132. - de600.c: change  "mark_bh(NET_BH)" to  "mark_bh(INET_BH)".
  133. - de620.c: (maybe) change the code around "netif_rx(skb);" to be
  134.    similar to the code around "dev_rint(...)" in de600.c
  135. 7. ACKNOWLEDGMENTS.
  136. These drivers wouldn't have been done without the base
  137. (and support) from Ross Biro <bir7@leland.stanford.edu>,
  138. and D-Link Systems Inc.  The driver relies upon GPL-ed
  139. source from D-Link Systems Inc. and from Russel Nelson at
  140. Crynwr Software <nelson@crynwr.com>.
  141. Additional input also from:
  142. Donald Becker <becker@super.org>, Alan Cox <A.Cox@swansea.ac.uk>
  143. and Fred N. van Kempen <waltje@uWalt.NL.Mugnet.ORG>
  144. DE-600 alpha release primary victim^H^H^H^H^H^Htester:
  145. - Erik Proper <erikp@cs.kun.nl>.
  146. Good input also from several users, most notably
  147. - Mark Burton <markb@ordern.demon.co.uk>.
  148. DE-620 alpha release victims^H^H^H^H^H^H^Htesters:
  149. - J. Joshua Kopper <kopper@rtsg.mot.com>
  150. - Olav Kvittem <Olav.Kvittem@uninett.no>
  151. - Germano Caronni <caronni@nessie.cs.id.ethz.ch>
  152. - Jeremy Fitzhardinge <jeremy@suite.sw.oz.au>
  153. Happy hacking!
  154. Bjorn Ekwall == bj0rn@blox.se