am79c961a.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/net/am79c961.h
  3.  *
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License version 2 as
  6.  * published by the Free Software Foundation.
  7.  */
  8. #ifndef _LINUX_am79c961a_H
  9. #define _LINUX_am79c961a_H
  10. /* use 0 for production, 1 for verification, >2 for debug. debug flags: */
  11. #define DEBUG_TX  2
  12. #define DEBUG_RX  4
  13. #define DEBUG_INT  8
  14. #define DEBUG_IC 16
  15. #ifndef NET_DEBUG
  16. #define NET_DEBUG  0
  17. #endif
  18. #define NET_UID 0
  19. #define NET_RDP 0x10
  20. #define NET_RAP 0x12
  21. #define NET_RESET 0x14
  22. #define NET_IDP 0x16
  23. /*
  24.  * RAP registers
  25.  */
  26. #define CSR0 0
  27. #define CSR0_INIT 0x0001
  28. #define CSR0_STRT 0x0002
  29. #define CSR0_STOP 0x0004
  30. #define CSR0_TDMD 0x0008
  31. #define CSR0_TXON 0x0010
  32. #define CSR0_RXON 0x0020
  33. #define CSR0_IENA 0x0040
  34. #define CSR0_INTR 0x0080
  35. #define CSR0_IDON 0x0100
  36. #define CSR0_TINT 0x0200
  37. #define CSR0_RINT 0x0400
  38. #define CSR0_MERR 0x0800
  39. #define CSR0_MISS 0x1000
  40. #define CSR0_CERR 0x2000
  41. #define CSR0_BABL 0x4000
  42. #define CSR0_ERR 0x8000
  43. #define CSR3 3
  44. #define CSR3_EMBA 0x0008
  45. #define CSR3_DXMT2PD 0x0010
  46. #define CSR3_LAPPEN 0x0020
  47. #define CSR3_DXSUFLO 0x0040
  48. #define CSR3_IDONM 0x0100
  49. #define CSR3_TINTM 0x0200
  50. #define CSR3_RINTM 0x0400
  51. #define CSR3_MERRM 0x0800
  52. #define CSR3_MISSM 0x1000
  53. #define CSR3_BABLM 0x4000
  54. #define CSR3_MASKALL 0x5F00
  55. #define CTRL1 5
  56. #define CTRL1_SPND 0x0001
  57. #define LADRL 8
  58. #define LADRM1 9
  59. #define LADRM2 10
  60. #define LADRH 11
  61. #define PADRL 12
  62. #define PADRM 13
  63. #define PADRH 14
  64. #define MODE 15
  65. #define MODE_DISRX 0x0001
  66. #define MODE_DISTX 0x0002
  67. #define MODE_LOOP 0x0004
  68. #define MODE_DTCRC 0x0008
  69. #define MODE_COLL 0x0010
  70. #define MODE_DRETRY 0x0020
  71. #define MODE_INTLOOP 0x0040
  72. #define MODE_PORT_AUI 0x0000
  73. #define MODE_PORT_10BT 0x0080
  74. #define MODE_DRXPA 0x2000
  75. #define MODE_DRXBA 0x4000
  76. #define MODE_PROMISC 0x8000
  77. #define BASERXL 24
  78. #define BASERXH 25
  79. #define BASETXL 30
  80. #define BASETXH 31
  81. #define POLLINT 47
  82. #define SIZERXR 76
  83. #define SIZETXR 78
  84. #define RMD_ENP 0x0100
  85. #define RMD_STP 0x0200
  86. #define RMD_CRC 0x0800
  87. #define RMD_FRAM 0x2000
  88. #define RMD_ERR 0x4000
  89. #define RMD_OWN 0x8000
  90. #define TMD_ENP 0x0100
  91. #define TMD_STP 0x0200
  92. #define TMD_MORE 0x1000
  93. #define TMD_ERR 0x4000
  94. #define TMD_OWN 0x8000
  95. #define TST_RTRY 0x0400
  96. #define TST_LCAR 0x0800
  97. #define TST_LCOL 0x1000
  98. #define TST_UFLO 0x4000
  99. #define TST_BUFF 0x8000
  100. #define ISALED0 0x0004
  101. #define ISALED0_LNKST 0x8000
  102. struct dev_priv {
  103.     struct net_device_stats stats;
  104.     unsigned long rxbuffer[RX_BUFFERS];
  105.     unsigned long txbuffer[TX_BUFFERS];
  106.     unsigned char txhead;
  107.     unsigned char txtail;
  108.     unsigned char rxhead;
  109.     unsigned char rxtail;
  110.     unsigned long rxhdr;
  111.     unsigned long txhdr;
  112.     spinlock_t chip_lock;
  113.     struct timer_list timer;
  114. };
  115. extern int am79c961_probe (struct net_device *dev);
  116. #endif