You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3c509.h 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. /*
  2. * Copyright (c) 1993 Herb Peyerl (hpeyerl@novatel.ca) All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are
  6. * met: 1. Redistributions of source code must retain the above copyright
  7. * notice, this list of conditions and the following disclaimer. 2. The name
  8. * of the author may not be used to endorse or promote products derived from
  9. * this software withough specific prior written permission
  10. *
  11. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  12. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  13. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
  14. * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  15. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  16. * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  17. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  18. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  19. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  20. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  21. *
  22. * if_epreg.h,v 1.4 1994/11/13 10:12:37 gibbs Exp Modified by:
  23. *
  24. October 2, 1994
  25. Modified by: Andres Vega Garcia
  26. INRIA - Sophia Antipolis, France
  27. e-mail: avega@sophia.inria.fr
  28. finger: avega@pax.inria.fr
  29. */
  30. FILE_LICENCE ( BSD3 );
  31. #include "nic.h"
  32. /*
  33. * Ethernet software status per interface.
  34. */
  35. /*
  36. * Some global constants
  37. */
  38. #define TX_INIT_RATE 16
  39. #define TX_INIT_MAX_RATE 64
  40. #define RX_INIT_LATENCY 64
  41. #define RX_INIT_EARLY_THRESH 64
  42. #define MIN_RX_EARLY_THRESHF 16 /* not less than ether_header */
  43. #define MIN_RX_EARLY_THRESHL 4
  44. #define EEPROMSIZE 0x40
  45. #define MAX_EEPROMBUSY 1000
  46. #define EP_ID_PORT_START 0x110 /* avoid 0x100 to avoid conflict with SB16 */
  47. #define EP_ID_PORT_INC 0x10
  48. #define EP_ID_PORT_END 0x200
  49. #define EP_TAG_MAX 0x7 /* must be 2^n - 1 */
  50. /*
  51. * Commands to read/write EEPROM trough EEPROM command register (Window 0,
  52. * Offset 0xa)
  53. */
  54. #define EEPROM_CMD_RD 0x0080 /* Read: Address required (5 bits) */
  55. #define EEPROM_CMD_WR 0x0040 /* Write: Address required (5 bits) */
  56. #define EEPROM_CMD_ERASE 0x00c0 /* Erase: Address required (5 bits) */
  57. #define EEPROM_CMD_EWEN 0x0030 /* Erase/Write Enable: No data required */
  58. #define EEPROM_BUSY (1<<15)
  59. #define EEPROM_TST_MODE (1<<14)
  60. /*
  61. * Some short functions, worth to let them be a macro
  62. */
  63. #define is_eeprom_busy(b) (inw((b)+EP_W0_EEPROM_COMMAND)&EEPROM_BUSY)
  64. #define GO_WINDOW(b,x) outw(WINDOW_SELECT|(x), (b)+EP_COMMAND)
  65. /**************************************************************************
  66. *
  67. * These define the EEPROM data structure. They are used in the probe
  68. * function to verify the existence of the adapter after having sent
  69. * the ID_Sequence.
  70. *
  71. * There are others but only the ones we use are defined here.
  72. *
  73. **************************************************************************/
  74. #define EEPROM_NODE_ADDR_0 0x0 /* Word */
  75. #define EEPROM_NODE_ADDR_1 0x1 /* Word */
  76. #define EEPROM_NODE_ADDR_2 0x2 /* Word */
  77. #define EEPROM_PROD_ID 0x3 /* 0x9[0-f]50 */
  78. #define EEPROM_MFG_ID 0x7 /* 0x6d50 */
  79. #define EEPROM_ADDR_CFG 0x8 /* Base addr */
  80. #define EEPROM_RESOURCE_CFG 0x9 /* IRQ. Bits 12-15 */
  81. /**************************************************************************
  82. *
  83. * These are the registers for the 3Com 3c509 and their bit patterns when
  84. * applicable. They have been taken out the the "EtherLink III Parallel
  85. * Tasking EISA and ISA Technical Reference" "Beta Draft 10/30/92" manual
  86. * from 3com.
  87. *
  88. * Getting this document out of 3Com is almost impossible. However,
  89. * archived copies are available at
  90. * http://www.osdever.net/cottontail/downloads/docs/3c5x9b.zip and
  91. * several other places on the web (search for 3c5x9b.pdf).
  92. *
  93. **************************************************************************/
  94. #define EP_COMMAND 0x0e /* Write. BASE+0x0e is always a
  95. * command reg. */
  96. #define EP_STATUS 0x0e /* Read. BASE+0x0e is always status
  97. * reg. */
  98. #define EP_WINDOW 0x0f /* Read. BASE+0x0f is always window
  99. * reg. */
  100. /*
  101. * Window 0 registers. Setup.
  102. */
  103. /* Write */
  104. #define EP_W0_EEPROM_DATA 0x0c
  105. #define EP_W0_EEPROM_COMMAND 0x0a
  106. #define EP_W0_RESOURCE_CFG 0x08
  107. #define EP_W0_ADDRESS_CFG 0x06
  108. #define EP_W0_CONFIG_CTRL 0x04
  109. /* Read */
  110. #define EP_W0_PRODUCT_ID 0x02
  111. #define EP_W0_MFG_ID 0x00
  112. /*
  113. * Window 1 registers. Operating Set.
  114. */
  115. /* Write */
  116. #define EP_W1_TX_PIO_WR_2 0x02
  117. #define EP_W1_TX_PIO_WR_1 0x00
  118. /* Read */
  119. #define EP_W1_FREE_TX 0x0c
  120. #define EP_W1_TX_STATUS 0x0b /* byte */
  121. #define EP_W1_TIMER 0x0a /* byte */
  122. #define EP_W1_RX_STATUS 0x08
  123. #define EP_W1_RX_PIO_RD_2 0x02
  124. #define EP_W1_RX_PIO_RD_1 0x00
  125. /*
  126. * Window 2 registers. Station Address Setup/Read
  127. */
  128. /* Read/Write */
  129. #define EP_W2_ADDR_5 0x05
  130. #define EP_W2_ADDR_4 0x04
  131. #define EP_W2_ADDR_3 0x03
  132. #define EP_W2_ADDR_2 0x02
  133. #define EP_W2_ADDR_1 0x01
  134. #define EP_W2_ADDR_0 0x00
  135. /*
  136. * Window 3 registers. FIFO Management.
  137. */
  138. /* Read */
  139. #define EP_W3_FREE_TX 0x0c
  140. #define EP_W3_FREE_RX 0x0a
  141. /*
  142. * Window 4 registers. Diagnostics.
  143. */
  144. /* Read/Write */
  145. #define EP_W4_MEDIA_TYPE 0x0a
  146. #define EP_W4_CTRLR_STATUS 0x08
  147. #define EP_W4_NET_DIAG 0x06
  148. #define EP_W4_FIFO_DIAG 0x04
  149. #define EP_W4_HOST_DIAG 0x02
  150. #define EP_W4_TX_DIAG 0x00
  151. /*
  152. * Window 5 Registers. Results and Internal status.
  153. */
  154. /* Read */
  155. #define EP_W5_READ_0_MASK 0x0c
  156. #define EP_W5_INTR_MASK 0x0a
  157. #define EP_W5_RX_FILTER 0x08
  158. #define EP_W5_RX_EARLY_THRESH 0x06
  159. #define EP_W5_TX_AVAIL_THRESH 0x02
  160. #define EP_W5_TX_START_THRESH 0x00
  161. /*
  162. * Window 6 registers. Statistics.
  163. */
  164. /* Read/Write */
  165. #define TX_TOTAL_OK 0x0c
  166. #define RX_TOTAL_OK 0x0a
  167. #define TX_DEFERRALS 0x08
  168. #define RX_FRAMES_OK 0x07
  169. #define TX_FRAMES_OK 0x06
  170. #define RX_OVERRUNS 0x05
  171. #define TX_COLLISIONS 0x04
  172. #define TX_AFTER_1_COLLISION 0x03
  173. #define TX_AFTER_X_COLLISIONS 0x02
  174. #define TX_NO_SQE 0x01
  175. #define TX_CD_LOST 0x00
  176. /****************************************
  177. *
  178. * Register definitions.
  179. *
  180. ****************************************/
  181. /*
  182. * Command register. All windows.
  183. *
  184. * 16 bit register.
  185. * 15-11: 5-bit code for command to be executed.
  186. * 10-0: 11-bit arg if any. For commands with no args;
  187. * this can be set to anything.
  188. */
  189. #define GLOBAL_RESET (unsigned short) 0x0000 /* Wait at least 1ms
  190. * after issuing */
  191. #define WINDOW_SELECT (unsigned short) (0x1<<11)
  192. #define START_TRANSCEIVER (unsigned short) (0x2<<11) /* Read ADDR_CFG reg to
  193. * determine whether
  194. * this is needed. If
  195. * so; wait 800 uSec
  196. * before using trans-
  197. * ceiver. */
  198. #define RX_DISABLE (unsigned short) (0x3<<11) /* state disabled on
  199. * power-up */
  200. #define RX_ENABLE (unsigned short) (0x4<<11)
  201. #define RX_RESET (unsigned short) (0x5<<11)
  202. #define RX_DISCARD_TOP_PACK (unsigned short) (0x8<<11)
  203. #define TX_ENABLE (unsigned short) (0x9<<11)
  204. #define TX_DISABLE (unsigned short) (0xa<<11)
  205. #define TX_RESET (unsigned short) (0xb<<11)
  206. #define REQ_INTR (unsigned short) (0xc<<11)
  207. #define SET_INTR_MASK (unsigned short) (0xe<<11)
  208. #define SET_RD_0_MASK (unsigned short) (0xf<<11)
  209. #define SET_RX_FILTER (unsigned short) (0x10<<11)
  210. #define FIL_INDIVIDUAL (unsigned short) (0x1)
  211. #define FIL_GROUP (unsigned short) (0x2)
  212. #define FIL_BRDCST (unsigned short) (0x4)
  213. #define FIL_ALL (unsigned short) (0x8)
  214. #define SET_RX_EARLY_THRESH (unsigned short) (0x11<<11)
  215. #define SET_TX_AVAIL_THRESH (unsigned short) (0x12<<11)
  216. #define SET_TX_START_THRESH (unsigned short) (0x13<<11)
  217. #define STATS_ENABLE (unsigned short) (0x15<<11)
  218. #define STATS_DISABLE (unsigned short) (0x16<<11)
  219. #define STOP_TRANSCEIVER (unsigned short) (0x17<<11)
  220. /*
  221. * The following C_* acknowledge the various interrupts. Some of them don't
  222. * do anything. See the manual.
  223. */
  224. #define ACK_INTR (unsigned short) (0x6800)
  225. #define C_INTR_LATCH (unsigned short) (ACK_INTR|0x1)
  226. #define C_CARD_FAILURE (unsigned short) (ACK_INTR|0x2)
  227. #define C_TX_COMPLETE (unsigned short) (ACK_INTR|0x4)
  228. #define C_TX_AVAIL (unsigned short) (ACK_INTR|0x8)
  229. #define C_RX_COMPLETE (unsigned short) (ACK_INTR|0x10)
  230. #define C_RX_EARLY (unsigned short) (ACK_INTR|0x20)
  231. #define C_INT_RQD (unsigned short) (ACK_INTR|0x40)
  232. #define C_UPD_STATS (unsigned short) (ACK_INTR|0x80)
  233. /*
  234. * Status register. All windows.
  235. *
  236. * 15-13: Window number(0-7).
  237. * 12: Command_in_progress.
  238. * 11: reserved.
  239. * 10: reserved.
  240. * 9: reserved.
  241. * 8: reserved.
  242. * 7: Update Statistics.
  243. * 6: Interrupt Requested.
  244. * 5: RX Early.
  245. * 4: RX Complete.
  246. * 3: TX Available.
  247. * 2: TX Complete.
  248. * 1: Adapter Failure.
  249. * 0: Interrupt Latch.
  250. */
  251. #define S_INTR_LATCH (unsigned short) (0x1)
  252. #define S_CARD_FAILURE (unsigned short) (0x2)
  253. #define S_TX_COMPLETE (unsigned short) (0x4)
  254. #define S_TX_AVAIL (unsigned short) (0x8)
  255. #define S_RX_COMPLETE (unsigned short) (0x10)
  256. #define S_RX_EARLY (unsigned short) (0x20)
  257. #define S_INT_RQD (unsigned short) (0x40)
  258. #define S_UPD_STATS (unsigned short) (0x80)
  259. #define S_5_INTS (S_CARD_FAILURE|S_TX_COMPLETE|\
  260. S_TX_AVAIL|S_RX_COMPLETE|S_RX_EARLY)
  261. #define S_COMMAND_IN_PROGRESS (unsigned short) (0x1000)
  262. /*
  263. * FIFO Registers.
  264. * RX Status. Window 1/Port 08
  265. *
  266. * 15: Incomplete or FIFO empty.
  267. * 14: 1: Error in RX Packet 0: Incomplete or no error.
  268. * 13-11: Type of error.
  269. * 1000 = Overrun.
  270. * 1011 = Run Packet Error.
  271. * 1100 = Alignment Error.
  272. * 1101 = CRC Error.
  273. * 1001 = Oversize Packet Error (>1514 bytes)
  274. * 0010 = Dribble Bits.
  275. * (all other error codes, no errors.)
  276. *
  277. * 10-0: RX Bytes (0-1514)
  278. */
  279. #define ERR_RX_INCOMPLETE (unsigned short) (0x1<<15)
  280. #define ERR_RX (unsigned short) (0x1<<14)
  281. #define ERR_RX_OVERRUN (unsigned short) (0x8<<11)
  282. #define ERR_RX_RUN_PKT (unsigned short) (0xb<<11)
  283. #define ERR_RX_ALIGN (unsigned short) (0xc<<11)
  284. #define ERR_RX_CRC (unsigned short) (0xd<<11)
  285. #define ERR_RX_OVERSIZE (unsigned short) (0x9<<11)
  286. #define ERR_RX_DRIBBLE (unsigned short) (0x2<<11)
  287. /*
  288. * FIFO Registers.
  289. * TX Status. Window 1/Port 0B
  290. *
  291. * Reports the transmit status of a completed transmission. Writing this
  292. * register pops the transmit completion stack.
  293. *
  294. * Window 1/Port 0x0b.
  295. *
  296. * 7: Complete
  297. * 6: Interrupt on successful transmission requested.
  298. * 5: Jabber Error (TP Only, TX Reset required. )
  299. * 4: Underrun (TX Reset required. )
  300. * 3: Maximum Collisions.
  301. * 2: TX Status Overflow.
  302. * 1-0: Undefined.
  303. *
  304. */
  305. #define TXS_COMPLETE 0x80
  306. #define TXS_SUCCES_INTR_REQ 0x40
  307. #define TXS_JABBER 0x20
  308. #define TXS_UNDERRUN 0x10
  309. #define TXS_MAX_COLLISION 0x8
  310. #define TXS_STATUS_OVERFLOW 0x4
  311. /*
  312. * Configuration control register.
  313. * Window 0/Port 04
  314. */
  315. /* Read */
  316. #define IS_AUI (1<<13)
  317. #define IS_BNC (1<<12)
  318. #define IS_UTP (1<<9)
  319. /* Write */
  320. #define ENABLE_DRQ_IRQ 0x0001
  321. #define W0_P4_CMD_RESET_ADAPTER 0x4
  322. #define W0_P4_CMD_ENABLE_ADAPTER 0x1
  323. /*
  324. * Media type and status.
  325. * Window 4/Port 0A
  326. */
  327. #define ENABLE_UTP 0xc0
  328. #define DISABLE_UTP 0x0
  329. /*
  330. * Resource control register
  331. */
  332. #define SET_IRQ(i) ( ((i)<<12) | 0xF00) /* set IRQ i */
  333. /*
  334. * Receive status register
  335. */
  336. #define RX_BYTES_MASK (unsigned short) (0x07ff)
  337. #define RX_ERROR 0x4000
  338. #define RX_INCOMPLETE 0x8000
  339. /*
  340. * Misc defines for various things.
  341. */
  342. #define MFG_ID 0x6d50 /* in EEPROM and W0 ADDR_CONFIG */
  343. #define PROD_ID 0x9150
  344. #define AUI 0x1
  345. #define BNC 0x2
  346. #define UTP 0x4
  347. #define RX_BYTES_MASK (unsigned short) (0x07ff)
  348. /*
  349. * Function shared between 3c509.c and 3c529.c
  350. */
  351. extern int t5x9_probe ( struct nic *nic,
  352. uint16_t prod_id_check, uint16_t prod_id_mask );
  353. extern void t5x9_disable ( struct nic *nic );
  354. /*
  355. * Local variables:
  356. * c-basic-offset: 8
  357. * End:
  358. */