el3c90xEnd.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:31k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* el3c90xEnd.h - 3Com EtherLink PCI XL END network interface header*/ 
  2. /* Copyright 1999 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01b,11oct01,bur  Added more 3Com chip device ids.
  7. 01a,11jan99,mtl  written by teamF1 Inc.
  8. */
  9. #ifndef __INCel3c90xEndh
  10. #define __INCel3c90xEndh
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.     
  15. #ifndef _ASMLANGUAGE
  16. #if FALSE
  17. #define DRV_DEBUG /* temporary should be taken out */
  18. #endif    
  19.     
  20. #ifdef DRV_DEBUG
  21. #include "logLib.h"
  22. #define DRV_DEBUG_OFF 0x0000
  23. #define DRV_DEBUG_RX 0x0001
  24. #define DRV_DEBUG_TX 0x0002
  25. #define DRV_DEBUG_INT 0x0004
  26. #define DRV_DEBUG_POLL (DRV_DEBUG_POLL_RX | DRV_DEBUG_POLL_TX)
  27. #define DRV_DEBUG_POLL_RX 0x0008
  28. #define DRV_DEBUG_POLL_TX 0x0010
  29. #define DRV_DEBUG_LOAD 0x0020
  30. #define DRV_DEBUG_LOAD2 0x0040
  31. #define DRV_DEBUG_IOCTL 0x0080
  32. #define DRV_DEBUG_RESET 0x0100
  33. #define DRV_DEBUG_MCAST 0x0200
  34. #define DRV_DEBUG_CSR 0x0400
  35. #define DRV_DEBUG_RX_PKT        0x0800
  36. #define DRV_DEBUG_POLL_REDIR 0x10000
  37. #define DRV_DEBUG_LOG_NVRAM 0x20000
  38. #define DRV_DEBUG_ALL           0xfffff
  39. #endif /* DRV_DEBUG */
  40.     
  41. /* configuration items */
  42. #define EL3C90X_DEV_NAME  "elPci" /* device name */
  43. #define EL3C90X_DEV_NAME_LEN  6
  44. #define EA_SIZE          6       /* one Ethernet address */
  45. #define EH_SIZE          14      /* ethernet header size */
  46. #define EL3C90X_BUFSIZ 1536   /* aligned packet size */
  47. #define EL_MIN_FBUF     4      /* Minsize of first buffer in chain */
  48. #define EL_UPD_CNT 16 /* number of upload descriptors */
  49. #define EL_DND_CNT 16 /* number of download descriptors */
  50. /* Definitions for the drvCtrl specific flags field */
  51. #define EL_MEM_ALLOC_FLAG       0x01 /* allocating memory flag */
  52. #define EL_POLLING              0x02 /* polling flag */
  53. #define EL_MODE_MEM_IO_MAP 0x04 /* dev registers mem mapped */
  54. #define EL_PROMISCUOUS_FLAG     0x08 /* set the promiscuous mode */
  55. /* eeprom defines */
  56. #define EL_EE_WAIT 162 /* 162 usec */
  57. #define EL_EE_RETRY_CNT 100 /* retry count */    
  58. #define EL_EE_READ 0x0080 /* read, 5 bit address */
  59. #define EL_EE_WRITE 0x0040 /* write, 5 bit address */
  60. #define EL_EE_ERASE 0x00c0 /* erase, 5 bit address */
  61. #define EL_EE_EWEN 0x0030 /* erase, no data needed */
  62. #define EL_EE_BUSY 0x8000
  63. /* eeprom contents */
  64.     
  65. #define EL_EE_EADDR0 0x00 /* station address, first word */
  66. #define EL_EE_EADDR1 0x01 /* station address, next word, */
  67. #define EL_EE_EADDR2 0x02 /* station address, last word */
  68. #define EL_EE_PRODID 0x03 /* product ID code */
  69. #define EL_EE_MDATA_DATE 0x04 /* manufacturing data, date */
  70. #define EL_EE_MDATA_DIV 0x05 /* manufacturing data, division */
  71. #define EL_EE_MDATA_PCODE 0x06 /* manufacturing data, product code */
  72. #define EL_EE_MFG_ID 0x07
  73. #define EL_EE_PCI_PARM 0x08
  74. #define EL_EE_ROM_ONFO 0x09
  75. #define EL_EE_OEM_ADR0 0x0A
  76. #define EL_EE_OEM_ADR1 0x0B
  77. #define EL_EE_OEM_ADR2 0x0C
  78. #define EL_EE_SOFTINFO1 0x0D
  79. #define EL_EE_COMPAT 0x0E
  80. #define EL_EE_SOFTINFO2 0x0F
  81. #define EL_EE_CAPS 0x10 /* capabilities word */
  82. #define EL_EE_RSVD0 0x11
  83. #define EL_EE_ICFG_0 0x12
  84. #define EL_EE_ICFG_1 0x13
  85. #define EL_EE_RSVD1 0x14
  86. #define EL_EE_SOFTINFO3 0x15
  87. #define EL_EE_RSVD_2 0x16
  88.     
  89. /* Bits in the capabilities word */
  90. #define EL_CAPS_PNP 0x0001
  91. #define EL_CAPS_FULL_DUPLEX 0x0002
  92. #define EL_CAPS_LARGE_PKTS 0x0004
  93. #define EL_CAPS_SLAVE_DMA 0x0008
  94. #define EL_CAPS_SECOND_DMA 0x0010
  95. #define EL_CAPS_FULL_BM 0x0020
  96. #define EL_CAPS_FRAG_BM 0x0040
  97. #define EL_CAPS_CRC_PASSTHRU 0x0080
  98. #define EL_CAPS_TXDONE 0x0100
  99. #define EL_CAPS_NO_TXLENGTH 0x0200
  100. #define EL_CAPS_RX_REPEAT 0x0400
  101. #define EL_CAPS_SNOOPING 0x0800
  102. #define EL_CAPS_100MBPS 0x1000
  103. #define EL_CAPS_PWRMGMT 0x2000
  104. /* Register layouts. */
  105. #define EL_COMMAND 0x0E
  106. #define EL_STATUS 0x0E
  107. #define EL_TX_STATUS 0x1B
  108. #define EL_TX_FREE 0x1C
  109. #define EL_DMACTL 0x20
  110. #define EL_DOWNLIST_PTR 0x24
  111. #define EL_TX_FREETHRESH 0x2F
  112. #define EL_UPLIST_PTR 0x38
  113. #define EL_UPLIST_STATUS 0x30
  114. #define EL_PKTSTAT_UP_STALLED 0x00002000
  115. #define EL_PKTSTAT_UP_ERROR 0x00004000
  116. #define EL_PKTSTAT_UP_CMPLT 0x00008000
  117. #define EL_DMACTL_DN_CMPLT_REQ 0x00000002
  118. #define EL_DMACTL_DOWN_STALLED 0x00000004
  119. #define EL_DMACTL_UP_CMPLT 0x00000008
  120. #define EL_DMACTL_DOWN_CMPLT 0x00000010
  121. #define EL_DMACTL_UP_RX_EARLY 0x00000020
  122. #define EL_DMACTL_ARM_COUNTDOWN 0x00000040
  123. #define EL_DMACTL_DOWN_INPROG 0x00000080
  124. #define EL_DMACTL_COUNTER_SPEED 0x00000100
  125. #define EL_DMACTL_DOWNDOWN_MODE 0x00000200
  126. #define EL_DMACTL_TARGET_ABORT 0x40000000
  127. #define EL_DMACTL_MASTER_ABORT 0x80000000
  128. /*
  129.  * Command codes. Some command codes require that we wait for
  130.  * the CMD_BUSY flag to clear. Those codes are marked as 'mustwait.'
  131.  */
  132. #define EL_CMD_RESET 0x0000 /* mustwait */
  133. #define EL_CMD_WINSEL 0x0800
  134. #define EL_CMD_COAX_START 0x1000
  135. #define EL_CMD_RX_DISABLE 0x1800
  136. #define EL_CMD_RX_ENABLE 0x2000
  137. #define EL_CMD_RX_RESET 0x2800 /* mustwait */
  138. #define EL_CMD_UP_STALL 0x3000 /* mustwait */
  139. #define EL_CMD_UP_UNSTALL 0x3001
  140. #define EL_CMD_DOWN_STALL 0x3002 /* mustwait */
  141. #define EL_CMD_DOWN_UNSTALL 0x3003
  142. #define EL_CMD_RX_DISCARD 0x4000
  143. #define EL_CMD_TX_ENABLE 0x4800
  144. #define EL_CMD_TX_DISABLE 0x5000
  145. #define EL_CMD_TX_RESET 0x5800 /* mustwait */
  146. #define EL_CMD_INTR_FAKE 0x6000
  147. #define EL_CMD_INTR_ACK 0x6800
  148. #define EL_CMD_INTR_ENB 0x7000
  149. #define EL_CMD_STAT_ENB 0x7800
  150. #define EL_CMD_RX_SET_FILT 0x8000
  151. #define EL_CMD_RX_SET_THRESH 0x8800
  152. #define EL_CMD_TX_SET_THRESH 0x9000
  153. #define EL_CMD_TX_SET_START 0x9800
  154. #define EL_CMD_DMA_UP 0xA000
  155. #define EL_CMD_DMA_STOP 0xA001
  156. #define EL_CMD_STATS_ENABLE 0xA800
  157. #define EL_CMD_STATS_DISABLE 0xB000
  158. #define EL_CMD_COAX_STOP 0xB800
  159. #define EL_CMD_SET_TX_RECLAIM 0xC000 /* 3c905B only */
  160. #define EL_CMD_RX_SET_HASH 0xC800 /* 3c905B only */
  161. #define EL_HASH_SET 0x0400
  162. #define EL_HASHFILT_SIZE 256
  163. /*
  164.  * status codes
  165.  * Note that bits 15 to 13 indicate the currently visible register window
  166.  * which may be anything from 0 to 7.
  167.  */
  168. #define EL_STAT_INTLATCH 0x0001 /* 0 */
  169. #define EL_STAT_ADFAIL 0x0002 /* 1 */
  170. #define EL_STAT_TX_COMPLETE 0x0004 /* 2 */
  171. #define EL_STAT_TX_AVAIL 0x0008 /* 3 first generation */
  172. #define EL_STAT_RX_COMPLETE 0x0010  /* 4 */
  173. #define EL_STAT_RX_EARLY 0x0020 /* 5 */
  174. #define EL_STAT_INTREQ 0x0040  /* 6 */
  175. #define EL_STAT_STATSOFLOW 0x0080  /* 7 */
  176. #define EL_STAT_DMADONE 0x0100 /* 8 first generation */
  177. #define EL_STAT_LINKSTAT 0x0100 /* 8 3c509B */
  178. #define EL_STAT_DOWN_COMPLETE 0x0200 /* 9 */
  179. #define EL_STAT_UP_COMPLETE 0x0400 /* 10 */
  180. #define EL_STAT_DMABUSY 0x0800 /* 11 first generation */
  181. #define EL_STAT_CMDBUSY 0x1000  /* 12 */
  182. /* interrupts we normally want enabled. */
  183. #define EL_INTRS
  184. (EL_STAT_UP_COMPLETE|EL_STAT_STATSOFLOW|EL_STAT_ADFAIL|
  185.  EL_STAT_DOWN_COMPLETE|EL_STAT_TX_COMPLETE|EL_STAT_INTLATCH)
  186. #define EL_WIN_0     0
  187. #define EL_WIN_1     1
  188. #define EL_WIN_2     2
  189. #define EL_WIN_3     3
  190. #define EL_WIN_4     4
  191. #define EL_WIN_5     5
  192. #define EL_WIN_6     6
  193. #define EL_WIN_7     7
  194.     
  195. /* window 0 registers */
  196. #define EL_W0_EE_DATA 0x0C
  197. #define EL_W0_EE_CMD 0x0A
  198. #define EL_W0_RSRC_CFG 0x08
  199. #define EL_W0_ADDR_CFG 0x06
  200. #define EL_W0_CFG_CTRL 0x04
  201. #define EL_W0_PROD_ID 0x02
  202. #define EL_W0_MFG_ID 0x00
  203. /* window 1 */
  204. #define EL_W1_TX_FIFO 0x10
  205. #define EL_W1_FREE_TX 0x0C
  206. #define EL_W1_TX_STATUS 0x0B
  207. #define EL_W1_TX_TIMER 0x0A
  208. #define EL_W1_RX_STATUS 0x08
  209. #define EL_W1_RX_FIFO 0x00
  210. /* RX status codes */
  211. #define EL_RXSTATUS_OVERRUN 0x01
  212. #define EL_RXSTATUS_RUNT 0x02
  213. #define EL_RXSTATUS_ALIGN 0x04
  214. #define EL_RXSTATUS_CRC 0x08
  215. #define EL_RXSTATUS_OVERSIZE 0x10
  216. #define EL_RXSTATUS_DRIBBLE 0x20
  217. /* TX status codes */
  218. #define EL_TXSTATUS_RECLAIM 0x02  /* 3c905B only */
  219. #define EL_TXSTATUS_OVERFLOW 0x04
  220. #define EL_TXSTATUS_MAXCOLS 0x08
  221. #define EL_TXSTATUS_UNDERRUN 0x10
  222. #define EL_TXSTATUS_JABBER 0x20
  223. #define EL_TXSTATUS_INTREQ 0x40
  224. #define EL_TXSTATUS_COMPLETE 0x80
  225. /* window 2 */
  226. #define EL_W2_RESET_OPTIONS 0x0C /* 3c905B only */
  227. #define EL_W2_STATION_MASK_HI 0x0A
  228. #define EL_W2_STATION_MASK_MID 0x08
  229. #define EL_W2_STATION_MASK_LO 0x06
  230. #define EL_W2_STATION_ADDR_HI 0x04
  231. #define EL_W2_STATION_ADDR_MID 0x02
  232. #define EL_W2_STATION_ADDR_LO 0x00
  233. #define EL_RESETOPT_FEATUREMASK (0x0001 | 0x0002 | 0x004)
  234. #define EL_RESETOPT_D3RESETDIS 0x0008
  235. #define EL_RESETOPT_DISADVFD 0x0010
  236. #define EL_RESETOPT_DISADV100 0x0020
  237. #define EL_RESETOPT_DISAUTONEG 0x0040
  238. #define EL_RESETOPT_DEBUGMODE 0x0080
  239. #define EL_RESETOPT_FASTAUTO 0x0100
  240. #define EL_RESETOPT_FASTEE 0x0200
  241. #define EL_RESETOPT_FORCEDCONF 0x0400
  242. #define EL_RESETOPT_TESTPDTPDR 0x0800
  243. #define EL_RESETOPT_TEST100TX 0x1000
  244. #define EL_RESETOPT_TEST100RX 0x2000
  245. /* window 3 (fifo management) */
  246. #define EL_W3_INTERNAL_CFG 0x00
  247. #define EL_W3_RESET_OPT 0x08
  248. #define EL_W3_FREE_TX 0x0C
  249. #define EL_W3_FREE_RX 0x0A
  250. #define EL_W3_MAC_CTRL 0x06
  251. #define EL_ICFG_CONNECTOR_MASK 0x00F00000
  252. #define EL_ICFG_CONNECTOR_BITS 20
  253. #define EL_ICFG_RAMSIZE_MASK 0x00000007
  254. #define EL_ICFG_RAMWIDTH 0x00000008
  255. #define EL_ICFG_ROMSIZE_MASK (0x00000040 | 0x00000080)
  256. #define EL_ICFG_DISABLE_BASSD 0x00000100
  257. #define EL_ICFG_RAMLOC 0x00000200
  258. #define EL_ICFG_RAMPART (0x00010000 | 0x00020000)
  259. #define EL_ICFG_XCVRSEL (0x00100000 | 0x00200000 | 0x00400000)
  260. #define EL_ICFG_AUTOSEL 0x01000000
  261. #define EL_XCVR_10BT 0x00
  262. #define EL_XCVR_AUI 0x01
  263. #define EL_XCVR_RSVD_0 0x02
  264. #define EL_XCVR_COAX 0x03
  265. #define EL_XCVR_100BTX 0x04
  266. #define EL_XCVR_100BFX 0x05
  267. #define EL_XCVR_MII 0x06
  268. #define EL_XCVR_RSVD_1 0x07
  269. #define EL_XCVR_AUTO 0x08 /* 3c905B only */
  270. #define EL_MACCTRL_DEFER_EXT_END 0x0001
  271. #define EL_MACCTRL_DEFER_0 0x0002
  272. #define EL_MACCTRL_DEFER_1 0x0004
  273. #define EL_MACCTRL_DEFER_2 0x0008
  274. #define EL_MACCTRL_DEFER_3 0x0010
  275. #define EL_MACCTRL_DUPLEX 0x0020
  276. #define EL_MACCTRL_ALLOW_LARGE_PACK 0x0040
  277. #define EL_MACCTRL_EXTEND_AFTER_COL 0x0080 (3c905B only)
  278. #define EL_MACCTRL_FLOW_CONTROL_ENB 0x0100 (3c905B only)
  279. #define EL_MACCTRL_VLT_END 0x0200 (3c905B only)
  280. /*
  281.  * The 'reset options' register contains power-on reset values
  282.  * loaded from the EEPROM. This includes the supported media
  283.  * types on the card. It is also known as the media options register.
  284.  */
  285. #define EL_W3_MEDIA_OPT 0x08
  286. #define EL_MEDIAOPT_BT4 0x0001 /* MII */
  287. #define EL_MEDIAOPT_BTX 0x0002 /* on-chip */
  288. #define EL_MEDIAOPT_BFX 0x0004 /* on-chip */
  289. #define EL_MEDIAOPT_BT 0x0008 /* on-chip */
  290. #define EL_MEDIAOPT_BNC 0x0010 /* on-chip */
  291. #define EL_MEDIAOPT_AUI 0x0020 /* on-chip */
  292. #define EL_MEDIAOPT_MII 0x0040 /* MII */
  293. #define EL_MEDIAOPT_VCO 0x0100 /* 1st gen chip only */
  294. #define EL_MEDIAOPT_10FL 0x0100 /* 3x905B only, on-chip */
  295. #define EL_MEDIAOPT_MASK 0x01FF
  296. /* window 4 (diagnostics) */
  297. #define EL_W4_UPPERBYTESOK 0x0D
  298. #define EL_W4_BADSSD 0x0C
  299. #define EL_W4_MEDIA_STATUS 0x0A
  300. #define EL_W4_PHY_MGMT 0x08
  301. #define EL_W4_NET_DIAG 0x06
  302. #define EL_W4_FIFO_DIAG 0x04
  303. #define EL_W4_VCO_DIAG 0x02
  304. #define EL_W4_CTRLR_STAT 0x08
  305. #define EL_W4_TX_DIAG 0x00
  306. #define EL_MII_CLK 0x01
  307. #define EL_MII_DATA 0x02
  308. #define EL_MII_DIR 0x04
  309. #define EL_MEDIA_SQE 0x0008
  310. #define EL_MEDIA_10TP 0x00C0
  311. #define EL_MEDIA_LNK 0x0080
  312. #define EL_MEDIA_LNKBEAT 0x0800
  313. #define EL_MEDIASTAT_CRCSTRIP 0x0004
  314. #define EL_MEDIASTAT_SQEENB 0x0008
  315. #define EL_MEDIASTAT_COLDET 0x0010
  316. #define EL_MEDIASTAT_CARRIER 0x0020
  317. #define EL_MEDIASTAT_JABGUARD 0x0040
  318. #define EL_MEDIASTAT_LINKBEAT 0x0080
  319. #define EL_MEDIASTAT_JABDETECT 0x0200
  320. #define EL_MEDIASTAT_POLREVERS 0x0400
  321. #define EL_MEDIASTAT_LINKDETECT 0x0800
  322. #define EL_MEDIASTAT_TXINPROG 0x1000
  323. #define EL_MEDIASTAT_DCENB 0x4000
  324. #define EL_MEDIASTAT_AUIDIS 0x8000
  325. #define EL_NETDIAG_TEST_LOWVOLT 0x0001
  326. #define EL_NETDIAG_ASIC_REVMASK (0x0002|0x0004|0x0008|0x0010|0x0020)
  327. #define EL_NETDIAG_UPPER_BYTES_ENABLE 0x0040
  328. #define EL_NETDIAG_STATS_ENABLED 0x0080
  329. #define EL_NETDIAG_TX_FATALERR 0x0100
  330. #define EL_NETDIAG_TRANSMITTING 0x0200
  331. #define EL_NETDIAG_RX_ENABLED 0x0400
  332. #define EL_NETDIAG_TX_ENABLED 0x0800
  333. #define EL_NETDIAG_FIFO_LOOPBACK 0x1000
  334. #define EL_NETDIAG_MAC_LOOPBACK 0x2000
  335. #define EL_NETDIAG_ENDEC_LOOPBACK 0x4000
  336. #define EL_NETDIAG_EXTERNAL_LOOP 0x8000
  337. /* window 5 */
  338. #define EL_W5_STAT_ENB 0x0C
  339. #define EL_W5_INTR_ENB 0x0A
  340. #define EL_W5_RECLAIM_THRESH 0x09 /* 3c905B only */
  341. #define EL_W5_RX_FILTER 0x08
  342. #define EL_W5_RX_EARLYTHRESH 0x06
  343. #define EL_W5_TX_AVAILTHRESH 0x02
  344. #define EL_W5_TX_STARTTHRESH 0x00
  345. /* RX filter bits */
  346. #define EL_RXFILTER_INDIVIDUAL 0x01
  347. #define EL_RXFILTER_ALLMULTI 0x02
  348. #define EL_RXFILTER_BROADCAST 0x04
  349. #define EL_RXFILTER_ALLFRAMES 0x08
  350. #define EL_RXFILTER_MULTIHASH 0x10 /* 3c905B only */
  351. /* window 6 (stats) */
  352. #define EL_W6_TX_BYTES_OK 0x0C
  353. #define EL_W6_RX_BYTES_OK 0x0A
  354. #define EL_W6_UPPER_FRAMES_OK 0x09
  355. #define EL_W6_DEFERRED 0x08
  356. #define EL_W6_RX_OK 0x07
  357. #define EL_W6_TX_OK 0x06
  358. #define EL_W6_RX_OVERRUN 0x05
  359. #define EL_W6_COL_LATE 0x04
  360. #define EL_W6_COL_SINGLE 0x03
  361. #define EL_W6_COL_MULTIPLE 0x02
  362. #define EL_W6_SQE_ERRORS 0x01
  363. #define EL_W6_CARRIER_LOST 0x00
  364. /* window 7 (bus master control) */
  365. #define EL_W7_BM_ADDR 0x00
  366. #define EL_W7_BM_LEN 0x06
  367. #define EL_W7_BM_STATUS 0x0B
  368. #define EL_W7_BM_TIMEr 0x0A
  369. /* bus master control registers */
  370. #define EL_BM_PKTSTAT 0x20
  371. #define EL_BM_DOWNLISTPTR 0x24
  372. #define EL_BM_FRAGADDR 0x28
  373. #define EL_BM_FRAGLEN 0x2C
  374. #define EL_BM_TXFREETHRESH 0x2F
  375. #define EL_BM_UPPKTSTAT 0x30
  376. #define EL_BM_UPLISTPTR 0x38
  377. #define EL_LAST_FRAG 0x80000000
  378. /* descriptor registers and defines */    
  379. #define EL_MAXFRAGS 63
  380. #define EL_MIN_FRAMELEN 60
  381. #define EL_RXSTAT_LENMASK 0x00001FFF /* bits 0 to 12 length mask */
  382. #define EL_RXSTAT_UP_ERROR 0x00004000
  383. #define EL_RXSTAT_UP_CMPLT 0x00008000
  384. #define EL_RXSTAT_UP_OVERRUN 0x00010000
  385. #define EL_RXSTAT_RUNT 0x00020000
  386. #define EL_RXSTAT_ALIGN 0x00040000
  387. #define EL_RXSTAT_CRC 0x00080000
  388. #define EL_RXSTAT_OVERSIZE 0x00100000
  389. #define EL_RXSTAT_DRIBBLE 0x00800000
  390. #define EL_RXSTAT_UP_OFLOW 0x01000000
  391. #define EL_RXSTAT_IPCKERR 0x02000000 /* 3c905B only */
  392. #define EL_RXSTAT_TCPCKERR 0x04000000 /* 3c905B only */
  393. #define EL_RXSTAT_UDPCKERR 0x08000000 /* 3c905B only */
  394. #define EL_RXSTAT_BUFEN 0x10000000 /* 3c905B only */
  395. #define EL_RXSTAT_IPCKOK 0x20000000 /* 3c905B only */
  396. #define EL_RXSTAT_TCPCOK 0x40000000 /* 3c905B only */
  397. #define EL_RXSTAT_UDPCKOK 0x80000000 /* 3c905B only */
  398. #define EL_TXSTAT_LENMASK 0x00001FFF /* bits 0 to 12 length mask */
  399. #define EL_TXSTAT_CRCDIS 0x00002000
  400. #define EL_TXSTAT_TX_INTR 0x00008000
  401. #define EL_TXSTAT_DL_COMPLETE 0x00010000
  402. #define EL_TXSTAT_IPCKSUM 0x02000000 /* 3c905B only */
  403. #define EL_TXSTAT_TCPCKSUM 0x04000000 /* 3c905B only */
  404. #define EL_TXSTAT_UDPCKSUM 0x08000000 /* 3c905B only */
  405. #define EL_TXSTAT_DL_INTR 0x80000000
  406. #define EL_CAPABILITY_BM 0x20
  407. /* MII constants */
  408.     
  409. #define EL_MII_STARTDELIM 0x01
  410. #define EL_MII_READOP 0x02
  411. #define EL_MII_WRITEOP 0x01
  412. #define EL_MII_TURNAROUND 0x02
  413. /*
  414.  * The 3C905B adapters implement a few features that we want to
  415.  * take advantage of, namely the multicast hash filter. With older
  416.  * chips, you only have the option of turning on reception of all
  417.  * multicast frames.
  418.  */
  419.     
  420. #define EL_TYPE_905B 1
  421. #define EL_TYPE_90X 2
  422. #define EL_TIMEOUT 1000
  423. /* General constants . 3Com PCI vendor ID */
  424. #define TC_VENDORID 0x10B7
  425. /* 3Com chip device IDs.*/
  426.             
  427. #define TC_DEVICEID_BOOMERANG_10BT 0x9000
  428. #define TC_DEVICEID_BOOMERANG_10BT_COMBO 0x9001
  429. #define TC_DEVICEID_BOOMERANG_10_100BT 0x9050
  430. #define TC_DEVICEID_BOOMERANG_100BT4 0x9051
  431. #define TC_DEVICEID_CYCLONE_10BT 0x9004
  432. #define TC_DEVICEID_CYCLONE_10BT_COMBO 0x9005
  433. #define TC_DEVICEID_CYCLONE_10_100BT 0x9055
  434. #define TC_DEVICEID_CYCLONE_10_100BT4 0x9056
  435. #define TC_DEVICEID_CYCLONE_10_100FX 0x905A
  436. #define TC_DEVICEID_CYCLONE_10_100BT_SERV 0x9800
  437. #define TC_DEVICEID_CYCLONE_10FL 0x900A
  438. #define TC_DEVICEID_CYCLONE_10_100_COMBO 0x9058
  439. #define TC_DEVICEID_KRAKATOA_10BT_TPC 0x9006
  440. #define TC_DEVICEID_TORNADO_10_100BT 0x9200
  441. #define TC_DEVICEID_TORNADO_10_100BT_SERV 0x9805
  442. #define TC_DEVICEID_TORNADO_HOMECONNECT 0x4500
  443. #define TC_DEVICEID_HURRICANE_SOHO100TX 0x7646
  444. /*
  445.  * Texas Instruments PHY identifiers
  446.  *
  447.  * The ThunderLAN manual has a curious and confusing error in it.
  448.  * In chapter 7, which describes PHYs, it says that TI PHYs have
  449.  * the following ID codes, where xx denotes a revision:
  450.  *
  451.  * 0x4000501xx internal 10baseT PHY
  452.  * 0x4000502xx TNETE211 100VG-AnyLan PMI
  453.  *
  454.  * The problem here is that these are not valid 32-bit hex numbers:
  455.  * there's one digit too many. My guess is that they mean the internal
  456.  * 10baseT PHY is 0x4000501x and the TNETE211 is 0x4000502x since these
  457.  * are the only numbers that make sense.
  458.  */
  459. #define TI_PHY_VENDORID 0x4000
  460. #define TI_PHY_10BT 0x501F
  461. #define TI_PHY_100VGPMI 0x502F
  462. /*
  463.  * These ID values are for the NS DP83840A 10/100 PHY
  464.  */
  465. #define NS_PHY_VENDORID 0x2000
  466. #define NS_PHY_83840A 0x5C0F
  467. /*
  468.  * Level 1 10/100 PHY
  469.  */
  470. #define LEVEL1_PHY_VENDORID 0x7810
  471. #define LEVEL1_PHY_LXT970 0x000F
  472. /*
  473.  * Intel 82555 10/100 PHY
  474.  */
  475. #define INTEL_PHY_VENDORID 0x0A28
  476. #define INTEL_PHY_82555 0x015F
  477. /*
  478.  * SEEQ 80220 10/100 PHY
  479.  */
  480. #define SEEQ_PHY_VENDORID 0x0016
  481. #define SEEQ_PHY_80220 0xF83F
  482. /*
  483.  * PCI low memory base and low I/O base register, and
  484.  * other PCI registers. Note: some are only available on
  485.  * the 3c905B, in particular those that related to power management.
  486.  */
  487. #define EL_PCI_VENDOR_ID 0x00
  488. #define EL_PCI_DEVICE_ID 0x02
  489. #define EL_PCI_COMMAND 0x04
  490. #define EL_PCI_STATUS 0x06
  491. #define EL_PCI_CLASSCODE 0x09
  492. #define EL_PCI_LATENCY_TIMER 0x0D
  493. #define EL_PCI_HEADER_TYPE 0x0E
  494. #define EL_PCI_LOIO 0x10
  495. #define EL_PCI_LOMEM 0x14
  496. #define EL_PCI_BIOSROM 0x30
  497. #define EL_PCI_INTLINE 0x3C
  498. #define EL_PCI_INTPIN 0x3D
  499. #define EL_PCI_MINGNT 0x3E
  500. #define EL_PCI_MINLAT 0x0F
  501. #define EL_PCI_RESETOPT 0x48
  502. #define EL_PCI_EEPROM_DATA 0x4C
  503. /* 3c905B-only registers */
  504. #define EL_PCI_CAPID 0xDC /* 8 bits */
  505. #define EL_PCI_NEXTPTR 0xDD /* 8 bits */
  506. #define EL_PCI_PWRMGMTCAP 0xDE /* 16 bits */
  507. #define EL_PCI_PWRMGMTCTRL 0xE0 /* 16 bits */
  508. #define EL_PSTATE_MASK 0x0003
  509. #define EL_PSTATE_D0 0x0000
  510. #define EL_PSTATE_D1 0x0002
  511. #define EL_PSTATE_D2 0x0002
  512. #define EL_PSTATE_D3 0x0003
  513. #define EL_PME_EN 0x0010
  514. #define EL_PME_STATUS 0x8000
  515. #define PHY_UNKNOWN 6
  516. #define EL_PHYADDR_MIN 0x00
  517. #define EL_PHYADDR_MAX 0x1F
  518. #define EL_PHY_GENCTL 0x00
  519. #define EL_PHY_GENSTS 0x01
  520. #define EL_PHY_VENID 0x02
  521. #define EL_PHY_DEVID 0x03
  522. #define EL_PHY_ANAR 0x04
  523. #define EL_PHY_LPAR 0x05
  524. #define EL_PHY_ANEXP 0x06
  525. #define PHY_ANAR_NEXTPAGE 0x8000
  526. #define PHY_ANAR_RSVD0 0x4000
  527. #define PHY_ANAR_TLRFLT 0x2000
  528. #define PHY_ANAR_RSVD1 0x1000
  529. #define PHY_ANAR_RSVD2 0x0800
  530. #define PHY_ANAR_RSVD3 0x0400
  531. #define PHY_ANAR_100BT4 0x0200
  532. #define PHY_ANAR_100BTXFULL 0x0100
  533. #define PHY_ANAR_100BTXHALF 0x0080
  534. #define PHY_ANAR_10BTFULL 0x0040
  535. #define PHY_ANAR_10BTHALF 0x0020
  536. #define PHY_ANAR_PROTO4 0x0010
  537. #define PHY_ANAR_PROTO3 0x0008
  538. #define PHY_ANAR_PROTO2 0x0004
  539. #define PHY_ANAR_PROTO1 0x0002
  540. #define PHY_ANAR_PROTO0 0x0001
  541. /*
  542.  * These are the register definitions for the PHY (physical layer
  543.  * interface chip).
  544.  */
  545. /*
  546.  * PHY BMCR Basic Mode Control Register
  547.  */
  548. #define PHY_BMCR 0x00
  549. #define PHY_BMCR_RESET 0x8000
  550. #define PHY_BMCR_LOOPBK 0x4000
  551. #define PHY_BMCR_SPEEDSEL 0x2000
  552. #define PHY_BMCR_AUTONEGENBL 0x1000
  553. #define PHY_BMCR_RSVD0 0x0800 /* write as zero */
  554. #define PHY_BMCR_ISOLATE 0x0400
  555. #define PHY_BMCR_AUTONEGRSTR 0x0200
  556. #define PHY_BMCR_DUPLEX 0x0100
  557. #define PHY_BMCR_COLLTEST 0x0080
  558. #define PHY_BMCR_RSVD1 0x0040 /* write as zero, don't care */
  559. #define PHY_BMCR_RSVD2 0x0020 /* write as zero, don't care */
  560. #define PHY_BMCR_RSVD3 0x0010 /* write as zero, don't care */
  561. #define PHY_BMCR_RSVD4 0x0008 /* write as zero, don't care */
  562. #define PHY_BMCR_RSVD5 0x0004 /* write as zero, don't care */
  563. #define PHY_BMCR_RSVD6 0x0002 /* write as zero, don't care */
  564. #define PHY_BMCR_RSVD7 0x0001 /* write as zero, don't care */
  565. /*
  566.  * RESET: 1 == software reset, 0 == normal operation
  567.  * Resets status and control registers to default values.
  568.  * Relatches all hardware config values.
  569.  *
  570.  * LOOPBK: 1 == loopback operation enabled, 0 == normal operation
  571.  *
  572.  * SPEEDSEL: 1 == 100Mb/s, 0 == 10Mb/s
  573.  * Link speed is selected byt his bit or if auto-negotiation if bit
  574.  * 12 (AUTONEGENBL) is set (in which case the value of this register
  575.  * is ignored).
  576.  *
  577.  * AUTONEGENBL: 1 == Autonegotiation enabled, 0 == Autonegotiation disabled
  578.  * Bits 8 and 13 are ignored when autoneg is set, otherwise bits 8 and 13
  579.  * determine speed and mode. Should be cleared and then set if PHY configured
  580.  * for no autoneg on startup.
  581.  *
  582.  * ISOLATE: 1 == isolate PHY from MII, 0 == normal operation
  583.  *
  584.  * AUTONEGRSTR: 1 == restart autonegotiation, 0 = normal operation
  585.  *
  586.  * DUPLEX: 1 == full duplex mode, 0 == half duplex mode
  587.  *
  588.  * COLLTEST: 1 == collision test enabled, 0 == normal operation
  589.  */
  590. /* 
  591.  * PHY, BMSR Basic Mode Status Register 
  592.  */   
  593. #define PHY_BMSR 0x01
  594. #define PHY_BMSR_100BT4 0x8000
  595. #define PHY_BMSR_100BTXFULL 0x4000
  596. #define PHY_BMSR_100BTXHALF 0x2000
  597. #define PHY_BMSR_10BTFULL 0x1000
  598. #define PHY_BMSR_10BTHALF 0x0800
  599. #define PHY_BMSR_RSVD1 0x0400 /* write as zero, don't care */
  600. #define PHY_BMSR_RSVD2 0x0200 /* write as zero, don't care */
  601. #define PHY_BMSR_RSVD3 0x0100 /* write as zero, don't care */
  602. #define PHY_BMSR_RSVD4 0x0080 /* write as zero, don't care */
  603. #define PHY_BMSR_MFPRESUP 0x0040
  604. #define PHY_BMSR_AUTONEGCOMP 0x0020
  605. #define PHY_BMSR_REMFAULT 0x0010
  606. #define PHY_BMSR_CANAUTONEG 0x0008
  607. #define PHY_BMSR_LINKSTAT 0x0004
  608. #define PHY_BMSR_JABBER 0x0002
  609. #define PHY_BMSR_EXTENDED 0x0001
  610. /* ethernet media */
  611. #define IFM_ETHER 0x00000020
  612. #define IFM_10_T 3 /* 10BaseT - RJ45 */
  613. #define IFM_10_2 4 /* 10Base2 - Thinnet */
  614. #define IFM_10_5 5 /* 10Base5 - AUI */
  615. #define IFM_100_TX 6 /* 100BaseTX - RJ45 */
  616. #define IFM_100_FX 7 /* 100BaseFX - Fiber */
  617. #define IFM_100_T4 8 /* 100BaseT4 - 4 pair cat 3 */
  618. #define IFM_100_VG 9 /* 100VG-AnyLAN */
  619. #define IFM_100_T2 10 /* 100BaseT2 */
  620. /* Shared media sub-types */
  621. #define IFM_AUTO 0 /* Autoselect best media */
  622. #define IFM_MANUAL 1 /* Jumper/dipswitch selects media */
  623. #define IFM_NONE 2 /* Deselect all media */
  624. /* Shared options */
  625. #define IFM_FDX 0x00100000 /* Force full duplex */
  626. #define IFM_HDX 0x00200000 /* Force half duplex */
  627. #define IFM_FLAG0 0x01000000 /* Driver defined flag */
  628. #define IFM_FLAG1 0x02000000 /* Driver defined flag */
  629. #define IFM_FLAG2 0x04000000 /* Driver defined flag */
  630. #define IFM_LOOP 0x08000000 /* Put hardware in loopback */
  631. /* Masks */
  632. #define IFM_NMASK 0x000000e0 /* Network type */
  633. #define IFM_TMASK 0x0000000f /* Media sub-type */
  634. #define IFM_IMASK 0xf0000000 /* Instance */
  635. #define IFM_ISHIFT 28 /* Instance shift */
  636. #define IFM_OMASK 0x0000ff00 /* Type specific options */
  637. #define IFM_GMASK 0x0ff00000 /* Global options */
  638. /* Status bits */
  639. #define IFM_AVALID 0x00000001 /* Active bit valid */
  640. #define IFM_ACTIVE 0x00000002 /* Iface bound to working net */
  641.     
  642. /*
  643.  * fragment structure in a descriptor each descriptor can have upto
  644.  * 63 fragments
  645.  */
  646.     
  647. typedef struct elFrag
  648.     {
  649.     UINT32 fragAddr; /* fragment address */
  650.     UINT32 fragLen; /* fragment length */
  651.     } EL_FRAG;
  652. /* structure of a descriptor with multiple fragments */
  653.     
  654. typedef struct elDesc
  655.     {
  656.     UINT32 nextDesc; /* final entry has 0 nextptr */
  657.     UINT32 status; /* status of the descriptor */
  658.     EL_FRAG descFrag [EL_MAXFRAGS]; /* fragments */
  659.     } EL_DESC;
  660. /* structure of a descriptor with one fragment */
  661. typedef struct elDescOnefrag
  662.     {
  663.     UINT32 nextDesc; /* final entry has 0 nextptr */
  664.     UINT32 status; /* status of the descriptor */
  665.     EL_FRAG descFrag; /* one fragment only */
  666.     } EL_SIMPLE_DESC;
  667. /* structure of the recv and transmit descriptors laid out in memory */
  668.     
  669. typedef struct elDescBlk
  670.     {
  671.     EL_SIMPLE_DESC rxDescs [EL_UPD_CNT];
  672.     EL_DESC txDescs [EL_DND_CNT];
  673.     unsigned char descPad [EL_MIN_FRAMELEN];
  674.     } EL_DESC_BLK;
  675. /* structure of a linked list holding ptrs to descriptors */
  676.     
  677. typedef struct elChain
  678.     {
  679.     EL_DESC * pDesc;
  680.     M_BLK * pMblk;
  681.     struct elChain * pNextChain;
  682.     } EL_DESC_CHAIN;
  683. /* structure of a linked list holding ptrs to simple descriptors */    
  684. typedef struct elChainOnefrag
  685.     {
  686.     EL_SIMPLE_DESC * pDesc;
  687.     M_BLK * pMblk;
  688.     struct elChainOnefrag * pNextChain;
  689.     } EL_SIMPLE_DESC_CHAIN;
  690. /* structure of recv and transmit chains */
  691.     
  692. typedef struct elRxTxChain
  693.     {
  694.     EL_SIMPLE_DESC_CHAIN rxChain [EL_UPD_CNT];
  695.     EL_DESC_CHAIN txChain [EL_DND_CNT];
  696.     EL_SIMPLE_DESC_CHAIN * pRxHead;
  697.     EL_DESC_CHAIN * pTxHead;
  698.     EL_DESC_CHAIN * pTxTail;
  699.     EL_DESC_CHAIN * pTxFree;
  700.     } EL_RX_TX_CHAIN;
  701.     
  702. /* structure of the device type */
  703.     
  704. typedef struct elType
  705.     {
  706.     UINT16 vendorId;
  707.     UINT16 deviceId;
  708.     char * devName;
  709.     } EL_DEV_TYPE;
  710. /* structure of the media independant interface frame */
  711.     
  712. typedef struct elMiiFrame
  713.     {
  714.     UINT8 stDelim;
  715.     UINT8 opCode;
  716.     UINT8 phyAddr;
  717.     UINT8 regAddr;
  718.     UINT8 turnAround;
  719.     UINT16 data;
  720.     } EL_MII_FRAME;
  721. /* statistics structure */
  722.     
  723. typedef struct elStats
  724.     {
  725.     UINT8 carrierLost;
  726.     UINT8 sqeErrs;
  727.     UINT8 txMultiCollision;
  728.     UINT8 txSingleCollision;
  729.     UINT8 txLateCollision;
  730.     UINT8 rxOverrun;
  731.     UINT8 txFramesOk;
  732.     UINT8 rxFramesOk;
  733.     UINT8 txDeferred;
  734.     UINT8 upperFramesOk;
  735.     UINT16 rxBytesOk;
  736.     UINT16 txBytesOk;
  737.     UINT16 status;
  738.     } EL_STATS;
  739.     
  740. /* 3com 3c90x device control structure */
  741.     
  742. typedef struct el3c90xDevice
  743.     {
  744.     END_OBJ endObj;      /* The class we inherit from */
  745.     int  unit;      /* unit number of the device */
  746.     UINT32       flags;       /* Our local flags */
  747.     EL_DEV_TYPE * pPhyDevType; /* phy info */
  748.     UINT8 devType;     /* 3c90x or 3c905B */
  749.     UINT8 devPhyAddr;  /* PHY address */
  750.     UINT32 xCvr;      /* transciever */
  751.     UINT16 devMedia;    /* media */
  752.     UINT16 devCaps;     /* capabilities */
  753.     char * pDescMem;    /* descriptor memory pointer */
  754.     EL_DESC_BLK *   pDescBlk;    /* pointer to descriptor blk */
  755.     EL_RX_TX_CHAIN rxTxChain;   /* recv Transmit chains */
  756.     UINT32       devAdrs;     /* device structure address */
  757.     int                  ivec;        /* interrupt vector */
  758.     int                  intLevel;    /* interrupt level */
  759.     char * memAdrs;     /* 3COM memory pool base */
  760.     int          memSize;     /* 3COM memory pool size */
  761.     int          memWidth;    /* width of data port */
  762.     int          offset;      /* offset of data in the buffer */
  763.     int bufMtplr;   /* buffer multiplier */
  764.     UINT32 pciMemBase;  /* memory base as seen from PCI*/
  765.     UINT8 enetAddr[6]; /* ethernet address */
  766.     CACHE_FUNCS  cacheFuncs;  /* cache function pointers */
  767.     BOOL         txBlocked;   /* transmit flow control */
  768.     CL_POOL_ID   pClPoolId;   /* cluster pool Id */
  769.     M_CL_CONFIG mClCfg;      /* mBlk & cluster cfg structure */
  770.     CL_DESC clDesc;      /* cluster descriptor table */
  771.     } EL3C90X_DEVICE;
  772. #define EL_RX_GOODFRAMES(x) 
  773. ((x.upperFramesOk & 0x03) << 8) | x.rxFramesOk
  774. #define EL_TX_GOODFRAMES(x) 
  775. ((x.upperFramesOk & 0x30) << 4) | x.txFramesOk
  776. /*
  777.  * Macros to extract various bits of information from the media word.
  778.  */
  779. #define IFM_TYPE(x) ((x) & IFM_NMASK)
  780. #define IFM_SUBTYPE(x) ((x) & IFM_TMASK)
  781. #define IFM_INST(x) (((x) & IFM_IMASK) >> IFM_ISHIFT)
  782. /* macro to select a window */
  783.             
  784. #define EL_SEL_WIN(x)
  785. SYS_OUT_SHORT (pDrvCtrl, (pDrvCtrl->devAdrs + (UINT32)EL_COMMAND, 
  786.                                   EL_CMD_WINSEL | (x)))
  787. /*
  788.  * MII access routines are provided for adapters with external
  789.  * PHYs (3c905-TX, 3c905-T4, 3c905B-T4) and those with built-in
  790.  * autoneg logic that's faked up to look like a PHY (3c905B-TX).
  791.  * Note: if you don't perform the MDIO operations just right,
  792.  * it's possible to end up with code that works correctly with
  793.  * some chips/CPUs/processor speeds/bus speeds/etc but not
  794.  * with others.
  795.  */
  796. #define EL_MII_SET(x)                      
  797.         el3c90xCsrWriteWord (pDrvCtrl, EL_W4_PHY_MGMT,                       
  798.                              (el3c90xCsrReadWord(pDrvCtrl,                   
  799.                                                  EL_W4_PHY_MGMT,             
  800.                                                  EL_WIN_4) | (x)), EL_WIN_4)
  801.     
  802. #define EL_MII_CLR(x)                      
  803.         el3c90xCsrWriteWord (pDrvCtrl, EL_W4_PHY_MGMT,                       
  804.                              (el3c90xCsrReadWord(pDrvCtrl,                   
  805.                                                  EL_W4_PHY_MGMT,             
  806.                                                  EL_WIN_4) & ~(x)), EL_WIN_4)
  807.     
  808. /* board level/bus specific and architecture specific macros */
  809.     
  810. #if _BYTE_ORDER==_BIG_ENDIAN
  811. #define PCI_SWAP(x) LONGSWAP((int)(x))
  812. #define PCI_WORD_SWAP(x) ((LSB((USHORT)(x)) << 8) | MSB((USHORT)(x)))
  813. #else
  814. #define PCI_SWAP(x) (x)
  815. #define PCI_WORD_SWAP(x) (x)
  816. #endif
  817.     
  818. #if (CPU_FAMILY==I80X86)
  819. #ifndef EL3C90X_CACHE_VIRT_TO_PHYS
  820. #define EL3C90X_CACHE_VIRT_TO_PHYS(address) 
  821.         CACHE_DRV_VIRT_TO_PHYS (&pDrvCtrl->cacheFuncs, (address))
  822. #endif /* EL3C90X_CACHE_VIRT_TO_PHYS */
  823.     
  824. #ifndef SYS_OUT_LONG    
  825. #define SYS_OUT_LONG(pDrvCtrl,addr,value) 
  826.     { 
  827.     if (pDrvCtrl->flags & EL_MODE_MEM_IO_MAP) 
  828.         *((ULONG *)(addr)) = (value); 
  829.     else 
  830.         sysOutLong((int)(addr), (value)); 
  831.     }
  832. #endif /* SYS_OUT_LONG */
  833. #ifndef SYS_IN_LONG    
  834. #define SYS_IN_LONG(pDrvCtrl, addr, data) 
  835.     { 
  836.     if (pDrvCtrl->flags & EL_MODE_MEM_IO_MAP) 
  837.         ((data) = *((ULONG *)(addr))); 
  838.     else 
  839.         ((data) = sysInLong((int) (addr))); 
  840.     }
  841. #endif /* SYS_IN_LONG */
  842. #ifndef SYS_OUT_SHORT
  843. #define SYS_OUT_SHORT(pDrvCtrl,addr,value) 
  844.     { 
  845.     if (pDrvCtrl->flags & EL_MODE_MEM_IO_MAP) 
  846.         *((USHORT *)(addr)) = (value); 
  847.     else 
  848.         sysOutWord((int)(addr), (value)); 
  849.     }
  850. #endif /* SYS_OUT_SHORT */
  851. #ifndef SYS_IN_SHORT
  852. #define SYS_IN_SHORT(pDrvCtrl, addr, data) 
  853.     { 
  854.     if (pDrvCtrl->flags & EL_MODE_MEM_IO_MAP) 
  855.         ((data) = *((USHORT *)(addr)));
  856.     else 
  857.         ((data) = sysInWord((int) (addr))); 
  858.     }
  859. #endif /* SYS_IN_SHORT */
  860. #ifndef SYS_OUT_BYTE
  861. #define SYS_OUT_BYTE(pDrvCtrl,addr,value) 
  862.     { 
  863.     if (pDrvCtrl->flags & EL_MODE_MEM_IO_MAP) 
  864.         *((UCHAR *)(addr)) = (value); 
  865.     else 
  866.         sysOutByte((int)(addr), (value)); 
  867.     }
  868. #endif /* SYS_OUT_BYTE */
  869. #ifndef SYS_IN_BYTE
  870. #define SYS_IN_BYTE(pDrvCtrl, addr, data) 
  871.     { 
  872.     if (pDrvCtrl->flags & EL_MODE_MEM_IO_MAP) 
  873.         ((data) = *((UCHAR *)(addr))); 
  874.     else 
  875.         ((data) = sysInByte((int) (addr))); 
  876.     }
  877. #endif /* SYS_IN_BYTE */
  878. #endif /* CPU_FAMILY == I80x86 */
  879.     
  880. #if defined(__STDC__) || defined(__cplusplus)
  881. IMPORT END_OBJ * el3c90xEndLoad (char * initString);
  882. IMPORT STATUS   el3c90xInitParse (EL3C90X_DEVICE * pDrvCtrl,
  883.                                    char * initString);
  884. #else
  885. IMPORT END_OBJ * el3c90xEndLoad ();
  886. IMPORT STATUS  el3c90xInitParse ();
  887. #endif  /* __STDC__ */
  888.     
  889. #endif  /* _ASMLANGUAGE */
  890. #ifdef __cplusplus
  891. }
  892. #endif
  893. #endif  /* __INCel3c90xEndh */