sk_g16.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*-
  2. *
  3. * This software may be used and distributed according to the terms
  4. * of the GNU Public License, incorporated herein by reference.
  5. *
  6. * Module : sk_g16.h
  7. * Version : $Revision$
  8. *
  9. * Author : M.Hipp (mhipp@student.uni-tuebingen.de)
  10. * changes by : Patrick J.D. Weichmann
  11. *
  12. * Date Created : 94/05/25
  13. *
  14. * Description : In here are all necessary definitions of
  15. * the am7990 (LANCE) chip used for writing a
  16. * network device driver which uses this chip
  17. *
  18. * $Log$
  19. * Revision 1.3 2000-07-29 19:22:54 okuji
  20. * update the network support to etherboot-4.6.4.
  21. *
  22. -*/
  23. #ifndef SK_G16_H
  24. #define SK_G16_H
  25. /*
  26. * Control and Status Register 0 (CSR0) bit definitions
  27. *
  28. * (R=Readable) (W=Writeable) (S=Set on write) (C-Clear on write)
  29. *
  30. */
  31. #define CSR0_ERR 0x8000 /* Error summary (R) */
  32. #define CSR0_BABL 0x4000 /* Babble transmitter timeout error (RC) */
  33. #define CSR0_CERR 0x2000 /* Collision Error (RC) */
  34. #define CSR0_MISS 0x1000 /* Missed packet (RC) */
  35. #define CSR0_MERR 0x0800 /* Memory Error (RC) */
  36. #define CSR0_RINT 0x0400 /* Receiver Interrupt (RC) */
  37. #define CSR0_TINT 0x0200 /* Transmit Interrupt (RC) */
  38. #define CSR0_IDON 0x0100 /* Initialization Done (RC) */
  39. #define CSR0_INTR 0x0080 /* Interrupt Flag (R) */
  40. #define CSR0_INEA 0x0040 /* Interrupt Enable (RW) */
  41. #define CSR0_RXON 0x0020 /* Receiver on (R) */
  42. #define CSR0_TXON 0x0010 /* Transmitter on (R) */
  43. #define CSR0_TDMD 0x0008 /* Transmit Demand (RS) */
  44. #define CSR0_STOP 0x0004 /* Stop (RS) */
  45. #define CSR0_STRT 0x0002 /* Start (RS) */
  46. #define CSR0_INIT 0x0001 /* Initialize (RS) */
  47. #define CSR0_CLRALL 0x7f00 /* mask for all clearable bits */
  48. /*
  49. * Control and Status Register 3 (CSR3) bit definitions
  50. *
  51. */
  52. #define CSR3_BSWAP 0x0004 /* Byte Swap (RW) */
  53. #define CSR3_ACON 0x0002 /* ALE Control (RW) */
  54. #define CSR3_BCON 0x0001 /* Byte Control (RW) */
  55. /*
  56. * Initialization Block Mode operation Bit Definitions.
  57. */
  58. #define MODE_PROM 0x8000 /* Promiscuous Mode */
  59. #define MODE_INTL 0x0040 /* Internal Loopback */
  60. #define MODE_DRTY 0x0020 /* Disable Retry */
  61. #define MODE_COLL 0x0010 /* Force Collision */
  62. #define MODE_DTCR 0x0008 /* Disable Transmit CRC) */
  63. #define MODE_LOOP 0x0004 /* Loopback */
  64. #define MODE_DTX 0x0002 /* Disable the Transmitter */
  65. #define MODE_DRX 0x0001 /* Disable the Receiver */
  66. #define MODE_NORMAL 0x0000 /* Normal operation mode */
  67. /*
  68. * Receive message descriptor status bit definitions.
  69. */
  70. #define RX_OWN 0x80 /* Owner bit 0 = host, 1 = lance */
  71. #define RX_ERR 0x40 /* Error Summary */
  72. #define RX_FRAM 0x20 /* Framing Error */
  73. #define RX_OFLO 0x10 /* Overflow Error */
  74. #define RX_CRC 0x08 /* CRC Error */
  75. #define RX_BUFF 0x04 /* Buffer Error */
  76. #define RX_STP 0x02 /* Start of Packet */
  77. #define RX_ENP 0x01 /* End of Packet */
  78. /*
  79. * Transmit message descriptor status bit definitions.
  80. */
  81. #define TX_OWN 0x80 /* Owner bit 0 = host, 1 = lance */
  82. #define TX_ERR 0x40 /* Error Summary */
  83. #define TX_MORE 0x10 /* More the 1 retry needed to Xmit */
  84. #define TX_ONE 0x08 /* One retry needed to Xmit */
  85. #define TX_DEF 0x04 /* Deferred */
  86. #define TX_STP 0x02 /* Start of Packet */
  87. #define TX_ENP 0x01 /* End of Packet */
  88. /*
  89. * Transmit status (2) (valid if TX_ERR == 1)
  90. */
  91. #define TX_BUFF 0x8000 /* Buffering error (no ENP) */
  92. #define TX_UFLO 0x4000 /* Underflow (late memory) */
  93. #define TX_LCOL 0x1000 /* Late collision */
  94. #define TX_LCAR 0x0400 /* Loss of Carrier */
  95. #define TX_RTRY 0x0200 /* Failed after 16 retransmissions */
  96. #define TX_TDR 0x003f /* Time-domain-reflectometer-value */
  97. /*
  98. * Structures used for Communication with the LANCE
  99. */
  100. /* LANCE Initialize Block */
  101. struct init_block
  102. {
  103. unsigned short mode; /* Mode Register */
  104. unsigned char paddr[6]; /* Physical Address (MAC) */
  105. unsigned char laddr[8]; /* Logical Filter Address (not used) */
  106. unsigned int rdrp; /* Receive Descriptor Ring pointer */
  107. unsigned int tdrp; /* Transmit Descriptor Ring pointer */
  108. };
  109. /* Receive Message Descriptor Entry */
  110. struct rmd
  111. {
  112. union rmd_u
  113. {
  114. unsigned long buffer; /* Address of buffer */
  115. struct rmd_s
  116. {
  117. unsigned char unused[3];
  118. unsigned volatile char status; /* Status Bits */
  119. } s;
  120. } u;
  121. volatile short blen; /* Buffer Length (two's complement) */
  122. unsigned short mlen; /* Message Byte Count */
  123. };
  124. /* Transmit Message Descriptor Entry */
  125. struct tmd
  126. {
  127. union tmd_u
  128. {
  129. unsigned long buffer; /* Address of buffer */
  130. struct tmd_s
  131. {
  132. unsigned char unused[3];
  133. unsigned volatile char status; /* Status Bits */
  134. } s;
  135. } u;
  136. unsigned short blen; /* Buffer Length (two's complement) */
  137. unsigned volatile short status2; /* Error Status Bits */
  138. };
  139. #endif /* End of SK_G16_H */