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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/acorn/net/ether3.h
  3.  *
  4.  *  Copyright (C) 1995-2000 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  network driver for Acorn/ANT Ether3 cards
  11.  */
  12. #ifndef _LINUX_ether3_H
  13. #define _LINUX_ether3_H
  14. /* use 0 for production, 1 for verification, >2 for debug. debug flags: */
  15. #define DEBUG_TX  2
  16. #define DEBUG_RX  4
  17. #define DEBUG_INT  8
  18. #define DEBUG_IC 16
  19. #ifndef NET_DEBUG
  20. #define NET_DEBUG  0
  21. #endif
  22. /* Command register definitions & bits */
  23. #define REG_COMMAND (dev->base_addr + 0x00)
  24. #define CMD_ENINTDMA 0x0001
  25. #define CMD_ENINTRX 0x0002
  26. #define CMD_ENINTTX 0x0004
  27. #define CMD_ENINTBUFWIN 0x0008
  28. #define CMD_ACKINTDMA 0x0010
  29. #define CMD_ACKINTRX 0x0020
  30. #define CMD_ACKINTTX 0x0040
  31. #define CMD_ACKINTBUFWIN 0x0080
  32. #define CMD_DMAON 0x0100
  33. #define CMD_RXON 0x0200
  34. #define CMD_TXON 0x0400
  35. #define CMD_DMAOFF 0x0800
  36. #define CMD_RXOFF 0x1000
  37. #define CMD_TXOFF 0x2000
  38. #define CMD_FIFOREAD 0x4000
  39. #define CMD_FIFOWRITE 0x8000
  40. /* status register */
  41. #define REG_STATUS (dev->base_addr + 0x00)
  42. #define STAT_ENINTSTAT 0x0001
  43. #define STAT_ENINTRX 0x0002
  44. #define STAT_ENINTTX 0x0004
  45. #define STAT_ENINTBUFWIN 0x0008
  46. #define STAT_INTDMA 0x0010
  47. #define STAT_INTRX 0x0020
  48. #define STAT_INTTX 0x0040
  49. #define STAT_INTBUFWIN 0x0080
  50. #define STAT_DMAON 0x0100
  51. #define STAT_RXON 0x0200
  52. #define STAT_TXON 0x0400
  53. #define STAT_FIFOFULL 0x2000
  54. #define STAT_FIFOEMPTY 0x4000
  55. #define STAT_FIFODIR 0x8000
  56. /* configuration register 1 */
  57. #define REG_CONFIG1 (dev->base_addr + 0x10)
  58. #define CFG1_BUFSELSTAT0 0x0000
  59. #define CFG1_BUFSELSTAT1 0x0001
  60. #define CFG1_BUFSELSTAT2 0x0002
  61. #define CFG1_BUFSELSTAT3 0x0003
  62. #define CFG1_BUFSELSTAT4 0x0004
  63. #define CFG1_BUFSELSTAT5 0x0005
  64. #define CFG1_ADDRPROM 0x0006
  65. #define CFG1_TRANSEND 0x0007
  66. #define CFG1_LOCBUFMEM 0x0008
  67. #define CFG1_INTVECTOR 0x0009
  68. #define CFG1_RECVSPECONLY 0x0000
  69. #define CFG1_RECVSPECBROAD 0x4000
  70. #define CFG1_RECVSPECBRMULTI 0x8000
  71. #define CFG1_RECVPROMISC 0xC000
  72. /* The following aren't in 8004 */
  73. #define CFG1_DMABURSTCONT 0x0000
  74. #define CFG1_DMABURST800NS 0x0010
  75. #define CFG1_DMABURST1600NS 0x0020
  76. #define CFG1_DMABURST3200NS 0x0030
  77. #define CFG1_DMABURST1 0x0000
  78. #define CFG1_DMABURST4 0x0040
  79. #define CFG1_DMABURST8 0x0080
  80. #define CFG1_DMABURST16 0x00C0
  81. #define CFG1_RECVCOMPSTAT0 0x0100
  82. #define CFG1_RECVCOMPSTAT1 0x0200
  83. #define CFG1_RECVCOMPSTAT2 0x0400
  84. #define CFG1_RECVCOMPSTAT3 0x0800
  85. #define CFG1_RECVCOMPSTAT4 0x1000
  86. #define CFG1_RECVCOMPSTAT5 0x2000
  87. /* configuration register 2 */
  88. #define REG_CONFIG2 (dev->base_addr + 0x20)
  89. #define CFG2_BYTESWAP 0x0001
  90. #define CFG2_ERRENCRC 0x0008
  91. #define CFG2_ERRENDRIBBLE 0x0010
  92. #define CFG2_ERRSHORTFRAME 0x0020
  93. #define CFG2_SLOTSELECT 0x0040
  94. #define CFG2_PREAMSELECT 0x0080
  95. #define CFG2_ADDRLENGTH 0x0100
  96. #define CFG2_RECVCRC 0x0200
  97. #define CFG2_XMITNOCRC 0x0400
  98. #define CFG2_LOOPBACK 0x0800
  99. #define CFG2_CTRLO 0x1000
  100. #define CFG2_RESET 0x8000
  101. #define REG_RECVEND (dev->base_addr + 0x30)
  102. #define REG_BUFWIN (dev->base_addr + 0x40)
  103. #define REG_RECVPTR (dev->base_addr + 0x50)
  104. #define REG_TRANSMITPTR (dev->base_addr + 0x60)
  105. #define REG_DMAADDR (dev->base_addr + 0x70)
  106. /*
  107.  * Cards transmit/receive headers
  108.  */
  109. #define TX_NEXT (0xffff)
  110. #define TXHDR_ENBABBLEINT (1 << 16)
  111. #define TXHDR_ENCOLLISIONINT (1 << 17)
  112. #define TXHDR_EN16COLLISION (1 << 18)
  113. #define TXHDR_ENSUCCESS (1 << 19)
  114. #define TXHDR_DATAFOLLOWS (1 << 21)
  115. #define TXHDR_CHAINCONTINUE (1 << 22)
  116. #define TXHDR_TRANSMIT (1 << 23)
  117. #define TXSTAT_BABBLED (1 << 24)
  118. #define TXSTAT_COLLISION (1 << 25)
  119. #define TXSTAT_16COLLISIONS (1 << 26)
  120. #define TXSTAT_DONE (1 << 31)
  121. #define RX_NEXT (0xffff)
  122. #define RXHDR_CHAINCONTINUE (1 << 6)
  123. #define RXHDR_RECEIVE (1 << 7)
  124. #define RXSTAT_OVERSIZE (1 << 8)
  125. #define RXSTAT_CRCERROR (1 << 9)
  126. #define RXSTAT_DRIBBLEERROR (1 << 10)
  127. #define RXSTAT_SHORTPACKET (1 << 11)
  128. #define RXSTAT_DONE (1 << 15)
  129. #define TX_START 0x0000
  130. #define TX_END 0x6000
  131. #define RX_START 0x6000
  132. #define RX_LEN 0xA000
  133. #define RX_END 0x10000
  134. /* must be a power of 2 and greater than MAX_TX_BUFFERED */
  135. #define MAX_TXED 16
  136. #define MAX_TX_BUFFERED 10
  137. struct dev_priv {
  138.     struct {
  139. unsigned int command;
  140. unsigned int config1;
  141. unsigned int config2;
  142.     } regs;
  143.     unsigned char tx_head; /* buffer nr to insert next packet  */
  144.     unsigned char tx_tail; /* buffer nr of transmitting packet  */
  145.     unsigned int rx_head; /* address to fetch next packet from  */
  146.     struct net_device_stats stats;
  147.     struct timer_list timer;
  148.     int broken; /* 0 = ok, 1 = something went wrong  */
  149. };
  150. #endif