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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/dp83840.h: definitions for DP83840 MII-compatible transceivers
  3.  *
  4.  * Copyright (C) 1996, 1999 David S. Miller (davem@redhat.com)
  5.  */
  6. #ifndef __LINUX_DP83840_H
  7. #define __LINUX_DP83840_H
  8. #include <linux/mii.h>
  9. /*
  10.  * Data sheets and programming docs for the DP83840 are available at
  11.  * from http://www.national.com/
  12.  *
  13.  * The DP83840 is capable of both 10 and 100Mbps ethernet, in both
  14.  * half and full duplex mode.  It also supports auto negotiation.
  15.  *
  16.  * But.... THIS THING IS A PAIN IN THE ASS TO PROGRAM!
  17.  * Debugging eeprom burnt code is more fun than programming this chip!
  18.  */
  19. /* First, the MII register numbers (actually DP83840 register numbers). */
  20. #define MII_CSCONFIG        0x17        /* CS configuration            */
  21. /* The Carrier Sense config register. */
  22. #define CSCONFIG_RESV1          0x0001  /* Unused...                   */
  23. #define CSCONFIG_LED4           0x0002  /* Pin for full-dplx LED4      */
  24. #define CSCONFIG_LED1           0x0004  /* Pin for conn-status LED1    */
  25. #define CSCONFIG_RESV2          0x0008  /* Unused...                   */
  26. #define CSCONFIG_TCVDISAB       0x0010  /* Turns off the transceiver   */
  27. #define CSCONFIG_DFBYPASS       0x0020  /* Bypass disconnect function  */
  28. #define CSCONFIG_GLFORCE        0x0040  /* Good link force for 100mbps */
  29. #define CSCONFIG_CLKTRISTATE    0x0080  /* Tristate 25m clock          */
  30. #define CSCONFIG_RESV3          0x0700  /* Unused...                   */
  31. #define CSCONFIG_ENCODE         0x0800  /* 1=MLT-3, 0=binary           */
  32. #define CSCONFIG_RENABLE        0x1000  /* Repeater mode enable        */
  33. #define CSCONFIG_TCDISABLE      0x2000  /* Disable timeout counter     */
  34. #define CSCONFIG_RESV4          0x4000  /* Unused...                   */
  35. #define CSCONFIG_NDISABLE       0x8000  /* Disable NRZI                */
  36. #endif /* __LINUX_DP83840_H */