PageRenderTime 70ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

/boot/u-boot-1.1.4/include/ppc4xx_enet.h

http://snake-os.googlecode.com/
C Header | 478 lines | 345 code | 59 blank | 74 comment | 5 complexity | a4a74c09a9066241b75abe2e4e06827d MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, 0BSD, BSD-3-Clause, GPL-3.0, AGPL-1.0, CC-BY-SA-3.0
  1. /*----------------------------------------------------------------------------+
  2. |
  3. | This source code has been made available to you by IBM on an AS-IS
  4. | basis. Anyone receiving this source is licensed under IBM
  5. | copyrights to use it in any way he or she deems fit, including
  6. | copying it, modifying it, compiling it, and redistributing it either
  7. | with or without modifications. No license under IBM patents or
  8. | patent applications is to be implied by the copyright license.
  9. |
  10. | Any user of this software should understand that IBM cannot provide
  11. | technical support for this software and will not be responsible for
  12. | any consequences resulting from the use of this software.
  13. |
  14. | Any person who transfers this source code or any derivative work
  15. | must include the IBM copyright notice, this paragraph, and the
  16. | preceding two paragraphs in the transferred software.
  17. |
  18. | COPYRIGHT I B M CORPORATION 1999
  19. | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
  20. +----------------------------------------------------------------------------*/
  21. /*----------------------------------------------------------------------------+
  22. |
  23. | File Name: enetemac.h
  24. |
  25. | Function: Header file for the EMAC3 macro on the 405GP.
  26. |
  27. | Author: Mark Wisner
  28. |
  29. | Change Activity-
  30. |
  31. | Date Description of Change BY
  32. | --------- --------------------- ---
  33. | 29-Apr-99 Created MKW
  34. |
  35. +----------------------------------------------------------------------------*/
  36. /*----------------------------------------------------------------------------+
  37. | 19-Nov-03 Travis Sawyer, Sandburst Corporation, tsawyer@sandburst.com
  38. | ported to handle 440GP and 440GX multiple EMACs
  39. +----------------------------------------------------------------------------*/
  40. #ifndef _PPC4XX_ENET_H_
  41. #define _PPC4XX_ENET_H_
  42. #include <net.h>
  43. #include "405_mal.h"
  44. /*-----------------------------------------------------------------------------+
  45. | General enternet defines. 802 frames are not supported.
  46. +-----------------------------------------------------------------------------*/
  47. #define ENET_ADDR_LENGTH 6
  48. #define ENET_ARPTYPE 0x806
  49. #define ARP_REQUEST 1
  50. #define ARP_REPLY 2
  51. #define ENET_IPTYPE 0x800
  52. #define ARP_CACHE_SIZE 5
  53. #define NUM_TX_BUFF 1
  54. #define NUM_RX_BUFF PKTBUFSRX
  55. struct enet_frame {
  56. unsigned char dest_addr[ENET_ADDR_LENGTH];
  57. unsigned char source_addr[ENET_ADDR_LENGTH];
  58. unsigned short type;
  59. unsigned char enet_data[1];
  60. };
  61. struct arp_entry {
  62. unsigned long inet_address;
  63. unsigned char mac_address[ENET_ADDR_LENGTH];
  64. unsigned long valid;
  65. unsigned long sec;
  66. unsigned long nsec;
  67. };
  68. /* Statistic Areas */
  69. #define MAX_ERR_LOG 10
  70. typedef struct emac_stats_st{ /* Statistic Block */
  71. int data_len_err;
  72. int rx_frames;
  73. int rx;
  74. int rx_prot_err;
  75. int int_err;
  76. int pkts_tx;
  77. int pkts_rx;
  78. int pkts_handled;
  79. short tx_err_log[MAX_ERR_LOG];
  80. short rx_err_log[MAX_ERR_LOG];
  81. } EMAC_STATS_ST, *EMAC_STATS_PST;
  82. /* Structure containing variables used by the shared code (4xx_enet.c) */
  83. typedef struct emac_4xx_hw_st {
  84. uint32_t hw_addr; /* EMAC offset */
  85. uint32_t tah_addr; /* TAH offset */
  86. uint32_t phy_id;
  87. uint32_t phy_addr;
  88. uint32_t original_fc;
  89. uint32_t txcw;
  90. uint32_t autoneg_failed;
  91. uint32_t emac_ier;
  92. volatile mal_desc_t *tx;
  93. volatile mal_desc_t *rx;
  94. bd_t *bis; /* for eth_init upon mal error */
  95. mal_desc_t *alloc_tx_buf;
  96. mal_desc_t *alloc_rx_buf;
  97. char *txbuf_ptr;
  98. uint16_t devnum;
  99. int get_link_status;
  100. int tbi_compatibility_en;
  101. int tbi_compatibility_on;
  102. int fc_send_xon;
  103. int report_tx_early;
  104. int first_init;
  105. int tx_err_index;
  106. int rx_err_index;
  107. int rx_slot; /* MAL Receive Slot */
  108. int rx_i_index; /* Receive Interrupt Queue Index */
  109. int rx_u_index; /* Receive User Queue Index */
  110. int tx_slot; /* MAL Transmit Slot */
  111. int tx_i_index; /* Transmit Interrupt Queue Index */
  112. int tx_u_index; /* Transmit User Queue Index */
  113. int rx_ready[NUM_RX_BUFF]; /* Receive Ready Queue */
  114. int tx_run[NUM_TX_BUFF]; /* Transmit Running Queue */
  115. int is_receiving; /* sync with eth interrupt */
  116. int print_speed; /* print speed message upon start */
  117. EMAC_STATS_ST stats;
  118. } EMAC_4XX_HW_ST, *EMAC_4XX_HW_PST;
  119. #if defined(CONFIG_440GX)
  120. #define EMAC_NUM_DEV 4
  121. #elif (defined(CONFIG_440) || defined(CONFIG_405EP)) && \
  122. defined(CONFIG_NET_MULTI) && \
  123. !defined(CONFIG_440SP)
  124. #define EMAC_NUM_DEV 2
  125. #else
  126. #define EMAC_NUM_DEV 1
  127. #endif
  128. /*ZMII Bridge Register addresses */
  129. #if defined(CONFIG_440EP) || defined(CONFIG_440GR)
  130. #define ZMII_BASE (CFG_PERIPHERAL_BASE + 0x0D00)
  131. #else
  132. #define ZMII_BASE (CFG_PERIPHERAL_BASE + 0x0780)
  133. #endif
  134. #define ZMII_FER (ZMII_BASE)
  135. #define ZMII_SSR (ZMII_BASE + 4)
  136. #define ZMII_SMIISR (ZMII_BASE + 8)
  137. #define ZMII_RMII 0x22000000
  138. #define ZMII_MDI0 0x80000000
  139. /* ZMII FER Register Bit Definitions */
  140. #define ZMII_FER_MDI (0x8)
  141. #define ZMII_FER_SMII (0x4)
  142. #define ZMII_FER_RMII (0x2)
  143. #define ZMII_FER_MII (0x1)
  144. #define ZMII_FER_RSVD11 (0x00200000)
  145. #define ZMII_FER_RSVD10 (0x00100000)
  146. #define ZMII_FER_RSVD14_31 (0x0003FFFF)
  147. #define ZMII_FER_V(__x) (((3 - __x) * 4) + 16)
  148. /* ZMII Speed Selection Register Bit Definitions */
  149. #define ZMII_SSR_SCI (0x4)
  150. #define ZMII_SSR_FSS (0x2)
  151. #define ZMII_SSR_SP (0x1)
  152. #define ZMII_SSR_RSVD16_31 (0x0000FFFF)
  153. #define ZMII_SSR_V(__x) (((3 - __x) * 4) + 16)
  154. /* ZMII SMII Status Register Bit Definitions */
  155. #define ZMII_SMIISR_E1 (0x80)
  156. #define ZMII_SMIISR_EC (0x40)
  157. #define ZMII_SMIISR_EN (0x20)
  158. #define ZMII_SMIISR_EJ (0x10)
  159. #define ZMII_SMIISR_EL (0x08)
  160. #define ZMII_SMIISR_ED (0x04)
  161. #define ZMII_SMIISR_ES (0x02)
  162. #define ZMII_SMIISR_EF (0x01)
  163. #define ZMII_SMIISR_V(__x) ((3 - __x) * 8)
  164. /* RGMII Register Addresses */
  165. #define RGMII_BASE (CFG_PERIPHERAL_BASE + 0x0790)
  166. #define RGMII_FER (RGMII_BASE + 0x00)
  167. #define RGMII_SSR (RGMII_BASE + 0x04)
  168. /* RGMII Function Enable (FER) Register Bit Definitions */
  169. /* Note: for EMAC 2 and 3 only, 440GX only */
  170. #define RGMII_FER_DIS (0x00)
  171. #define RGMII_FER_RTBI (0x04)
  172. #define RGMII_FER_RGMII (0x05)
  173. #define RGMII_FER_TBI (0x06)
  174. #define RGMII_FER_GMII (0x07)
  175. #define RGMII_FER_V(__x) ((__x - 2) * 4)
  176. /* RGMII Speed Selection Register Bit Definitions */
  177. #define RGMII_SSR_SP_10MBPS (0x00)
  178. #define RGMII_SSR_SP_100MBPS (0x02)
  179. #define RGMII_SSR_SP_1000MBPS (0x04)
  180. #define RGMII_SSR_V(__x) ((__x -2) * 8)
  181. /*---------------------------------------------------------------------------+
  182. | TCP/IP Acceleration Hardware (TAH) 440GX Only
  183. +---------------------------------------------------------------------------*/
  184. #if defined(CONFIG_440GX)
  185. #define TAH_BASE (CFG_PERIPHERAL_BASE + 0x0B50)
  186. #define TAH_REVID (TAH_BASE + 0x0) /* Revision ID (RO)*/
  187. #define TAH_MR (TAH_BASE + 0x10) /* Mode Register (R/W) */
  188. #define TAH_SSR0 (TAH_BASE + 0x14) /* Segment Size Reg 0 (R/W) */
  189. #define TAH_SSR1 (TAH_BASE + 0x18) /* Segment Size Reg 1 (R/W) */
  190. #define TAH_SSR2 (TAH_BASE + 0x1C) /* Segment Size Reg 2 (R/W) */
  191. #define TAH_SSR3 (TAH_BASE + 0x20) /* Segment Size Reg 3 (R/W) */
  192. #define TAH_SSR4 (TAH_BASE + 0x24) /* Segment Size Reg 4 (R/W) */
  193. #define TAH_SSR5 (TAH_BASE + 0x28) /* Segment Size Reg 5 (R/W) */
  194. #define TAH_TSR (TAH_BASE + 0x2C) /* Transmit Status Register (RO) */
  195. /* TAH Revision */
  196. #define TAH_REV_RN_M (0x000FFF00) /* Revision Number */
  197. #define TAH_REV_BN_M (0x000000FF) /* Branch Revision Number */
  198. #define TAH_REV_RN_V (8)
  199. #define TAH_REV_BN_V (0)
  200. /* TAH Mode Register */
  201. #define TAH_MR_CVR (0x80000000) /* Checksum verification on RX */
  202. #define TAH_MR_SR (0x40000000) /* Software reset */
  203. #define TAH_MR_ST (0x3F000000) /* Send Threshold */
  204. #define TAH_MR_TFS (0x00E00000) /* Transmit FIFO size */
  205. #define TAH_MR_DTFP (0x00100000) /* Disable TX FIFO parity */
  206. #define TAH_MR_DIG (0x00080000) /* Disable interrupt generation */
  207. #define TAH_MR_RSVD (0x0007FFFF) /* Reserved */
  208. #define TAH_MR_ST_V (20)
  209. #define TAH_MR_TFS_V (17)
  210. #define TAH_MR_TFS_2K (0x1) /* Transmit FIFO size 2Kbyte */
  211. #define TAH_MR_TFS_4K (0x2) /* Transmit FIFO size 4Kbyte */
  212. #define TAH_MR_TFS_6K (0x3) /* Transmit FIFO size 6Kbyte */
  213. #define TAH_MR_TFS_8K (0x4) /* Transmit FIFO size 8Kbyte */
  214. #define TAH_MR_TFS_10K (0x5) /* Transmit FIFO size 10Kbyte (max)*/
  215. /* TAH Segment Size Registers 0:5 */
  216. #define TAH_SSR_RSVD0 (0xC0000000) /* Reserved */
  217. #define TAH_SSR_SS (0x3FFE0000) /* Segment size in multiples of 2 */
  218. #define TAH_SSR_RSVD1 (0x0001FFFF) /* Reserved */
  219. /* TAH Transmit Status Register */
  220. #define TAH_TSR_TFTS (0x80000000) /* Transmit FIFO too small */
  221. #define TAH_TSR_UH (0x40000000) /* Unrecognized header */
  222. #define TAH_TSR_NIPF (0x20000000) /* Not IPv4 */
  223. #define TAH_TSR_IPOP (0x10000000) /* IP option present */
  224. #define TAH_TSR_NISF (0x08000000) /* No IEEE SNAP format */
  225. #define TAH_TSR_ILTS (0x04000000) /* IP length too short */
  226. #define TAH_TSR_IPFP (0x02000000) /* IP fragment present */
  227. #define TAH_TSR_UP (0x01000000) /* Unsupported protocol */
  228. #define TAH_TSR_TFP (0x00800000) /* TCP flags present */
  229. #define TAH_TSR_SUDP (0x00400000) /* Segmentation for UDP */
  230. #define TAH_TSR_DLM (0x00200000) /* Data length mismatch */
  231. #define TAH_TSR_SIEEE (0x00100000) /* Segmentation for IEEE */
  232. #define TAH_TSR_TFPE (0x00080000) /* Transmit FIFO parity error */
  233. #define TAH_TSR_SSTS (0x00040000) /* Segment size too small */
  234. #define TAH_TSR_RSVD (0x0003FFFF) /* Reserved */
  235. #endif /* CONFIG_440GX */
  236. /* Ethernet MAC Regsiter Addresses */
  237. #if defined(CONFIG_440)
  238. #if defined(CONFIG_440EP) || defined(CONFIG_440GR)
  239. #define EMAC_BASE (CFG_PERIPHERAL_BASE + 0x0E00)
  240. #else
  241. #define EMAC_BASE (CFG_PERIPHERAL_BASE + 0x0800)
  242. #endif
  243. #else
  244. #define EMAC_BASE 0xEF600800
  245. #endif
  246. #define EMAC_M0 (EMAC_BASE)
  247. #define EMAC_M1 (EMAC_BASE + 4)
  248. #define EMAC_TXM0 (EMAC_BASE + 8)
  249. #define EMAC_TXM1 (EMAC_BASE + 12)
  250. #define EMAC_RXM (EMAC_BASE + 16)
  251. #define EMAC_ISR (EMAC_BASE + 20)
  252. #define EMAC_IER (EMAC_BASE + 24)
  253. #define EMAC_IAH (EMAC_BASE + 28)
  254. #define EMAC_IAL (EMAC_BASE + 32)
  255. #define EMAC_VLAN_TPID_REG (EMAC_BASE + 36)
  256. #define EMAC_VLAN_TCI_REG (EMAC_BASE + 40)
  257. #define EMAC_PAUSE_TIME_REG (EMAC_BASE + 44)
  258. #define EMAC_IND_HASH_1 (EMAC_BASE + 48)
  259. #define EMAC_IND_HASH_2 (EMAC_BASE + 52)
  260. #define EMAC_IND_HASH_3 (EMAC_BASE + 56)
  261. #define EMAC_IND_HASH_4 (EMAC_BASE + 60)
  262. #define EMAC_GRP_HASH_1 (EMAC_BASE + 64)
  263. #define EMAC_GRP_HASH_2 (EMAC_BASE + 68)
  264. #define EMAC_GRP_HASH_3 (EMAC_BASE + 72)
  265. #define EMAC_GRP_HASH_4 (EMAC_BASE + 76)
  266. #define EMAC_LST_SRC_LOW (EMAC_BASE + 80)
  267. #define EMAC_LST_SRC_HI (EMAC_BASE + 84)
  268. #define EMAC_I_FRAME_GAP_REG (EMAC_BASE + 88)
  269. #define EMAC_STACR (EMAC_BASE + 92)
  270. #define EMAC_TRTR (EMAC_BASE + 96)
  271. #define EMAC_RX_HI_LO_WMARK (EMAC_BASE + 100)
  272. /* bit definitions */
  273. /* MODE REG 0 */
  274. #define EMAC_M0_RXI (0x80000000)
  275. #define EMAC_M0_TXI (0x40000000)
  276. #define EMAC_M0_SRST (0x20000000)
  277. #define EMAC_M0_TXE (0x10000000)
  278. #define EMAC_M0_RXE (0x08000000)
  279. #define EMAC_M0_WKE (0x04000000)
  280. /* on 440GX EMAC_MR1 has a different layout! */
  281. #if defined(CONFIG_440GX) || defined(CONFIG_440SP)
  282. /* MODE Reg 1 */
  283. #define EMAC_M1_FDE (0x80000000)
  284. #define EMAC_M1_ILE (0x40000000)
  285. #define EMAC_M1_VLE (0x20000000)
  286. #define EMAC_M1_EIFC (0x10000000)
  287. #define EMAC_M1_APP (0x08000000)
  288. #define EMAC_M1_RSVD (0x06000000)
  289. #define EMAC_M1_IST (0x01000000)
  290. #define EMAC_M1_MF_1000MBPS (0x00800000) /* 0's for 10MBPS */
  291. #define EMAC_M1_MF_100MBPS (0x00400000)
  292. #define EMAC_M1_RFS_16K (0x00280000) /* ~4k for 512 byte */
  293. #define EMAC_M1_RFS_8K (0x00200000) /* ~4k for 512 byte */
  294. #define EMAC_M1_RFS_4K (0x00180000) /* ~4k for 512 byte */
  295. #define EMAC_M1_RFS_2K (0x00100000)
  296. #define EMAC_M1_RFS_1K (0x00080000)
  297. #define EMAC_M1_TX_FIFO_16K (0x00050000) /* 0's for 512 byte */
  298. #define EMAC_M1_TX_FIFO_8K (0x00040000)
  299. #define EMAC_M1_TX_FIFO_4K (0x00030000)
  300. #define EMAC_M1_TX_FIFO_2K (0x00020000)
  301. #define EMAC_M1_TX_FIFO_1K (0x00010000)
  302. #define EMAC_M1_TR_MULTI (0x00008000) /* 0'x for single packet */
  303. #define EMAC_M1_MWSW (0x00007000)
  304. #define EMAC_M1_JUMBO_ENABLE (0x00000800)
  305. #define EMAC_M1_IPPA (0x000007c0)
  306. #define EMAC_M1_OBCI_GT100 (0x00000020)
  307. #define EMAC_M1_OBCI_100 (0x00000018)
  308. #define EMAC_M1_OBCI_83 (0x00000010)
  309. #define EMAC_M1_OBCI_66 (0x00000008)
  310. #define EMAC_M1_RSVD1 (0x00000007)
  311. #else /* defined(CONFIG_440GX) */
  312. /* EMAC_MR1 is the same on 405GP, 405GPr, 405EP, 440GP, 440EP */
  313. #define EMAC_M1_FDE 0x80000000
  314. #define EMAC_M1_ILE 0x40000000
  315. #define EMAC_M1_VLE 0x20000000
  316. #define EMAC_M1_EIFC 0x10000000
  317. #define EMAC_M1_APP 0x08000000
  318. #define EMAC_M1_AEMI 0x02000000
  319. #define EMAC_M1_IST 0x01000000
  320. #define EMAC_M1_MF_1000MBPS 0x00800000 /* 0's for 10MBPS */
  321. #define EMAC_M1_MF_100MBPS 0x00400000
  322. #define EMAC_M1_RFS_4K 0x00300000 /* ~4k for 512 byte */
  323. #define EMAC_M1_RFS_2K 0x00200000
  324. #define EMAC_M1_RFS_1K 0x00100000
  325. #define EMAC_M1_TX_FIFO_2K 0x00080000 /* 0's for 512 byte */
  326. #define EMAC_M1_TX_FIFO_1K 0x00040000
  327. #define EMAC_M1_TR0_DEPEND 0x00010000 /* 0'x for single packet */
  328. #define EMAC_M1_TR0_MULTI 0x00008000
  329. #define EMAC_M1_TR1_DEPEND 0x00004000
  330. #define EMAC_M1_TR1_MULTI 0x00002000
  331. #if defined(CONFIG_440EP) || defined(CONFIG_440GR)
  332. #define EMAC_M1_JUMBO_ENABLE 0x00001000
  333. #endif /* defined(CONFIG_440EP) || defined(CONFIG_440GR) */
  334. #endif /* defined(CONFIG_440GX) */
  335. /* Transmit Mode Register 0 */
  336. #define EMAC_TXM0_GNP0 (0x80000000)
  337. #define EMAC_TXM0_GNP1 (0x40000000)
  338. #define EMAC_TXM0_GNPD (0x20000000)
  339. #define EMAC_TXM0_FC (0x10000000)
  340. /* Receive Mode Register */
  341. #define EMAC_RMR_SP (0x80000000)
  342. #define EMAC_RMR_SFCS (0x40000000)
  343. #define EMAC_RMR_ARRP (0x20000000)
  344. #define EMAC_RMR_ARP (0x10000000)
  345. #define EMAC_RMR_AROP (0x08000000)
  346. #define EMAC_RMR_ARPI (0x04000000)
  347. #define EMAC_RMR_PPP (0x02000000)
  348. #define EMAC_RMR_PME (0x01000000)
  349. #define EMAC_RMR_PMME (0x00800000)
  350. #define EMAC_RMR_IAE (0x00400000)
  351. #define EMAC_RMR_MIAE (0x00200000)
  352. #define EMAC_RMR_BAE (0x00100000)
  353. #define EMAC_RMR_MAE (0x00080000)
  354. /* Interrupt Status & enable Regs */
  355. #define EMAC_ISR_OVR (0x02000000)
  356. #define EMAC_ISR_PP (0x01000000)
  357. #define EMAC_ISR_BP (0x00800000)
  358. #define EMAC_ISR_RP (0x00400000)
  359. #define EMAC_ISR_SE (0x00200000)
  360. #define EMAC_ISR_SYE (0x00100000)
  361. #define EMAC_ISR_BFCS (0x00080000)
  362. #define EMAC_ISR_PTLE (0x00040000)
  363. #define EMAC_ISR_ORE (0x00020000)
  364. #define EMAC_ISR_IRE (0x00010000)
  365. #define EMAC_ISR_DBDM (0x00000200)
  366. #define EMAC_ISR_DB0 (0x00000100)
  367. #define EMAC_ISR_SE0 (0x00000080)
  368. #define EMAC_ISR_TE0 (0x00000040)
  369. #define EMAC_ISR_DB1 (0x00000020)
  370. #define EMAC_ISR_SE1 (0x00000010)
  371. #define EMAC_ISR_TE1 (0x00000008)
  372. #define EMAC_ISR_MOS (0x00000002)
  373. #define EMAC_ISR_MOF (0x00000001)
  374. /* STA CONTROL REG */
  375. #define EMAC_STACR_OC (0x00008000)
  376. #define EMAC_STACR_PHYE (0x00004000)
  377. #define EMAC_STACR_WRITE (0x00002000)
  378. #define EMAC_STACR_READ (0x00001000)
  379. #define EMAC_STACR_CLK_83MHZ (0x00000800) /* 0's for 50Mhz */
  380. #define EMAC_STACR_CLK_66MHZ (0x00000400)
  381. #define EMAC_STACR_CLK_100MHZ (0x00000C00)
  382. /* Transmit Request Threshold Register */
  383. #define EMAC_TRTR_256 (0x18000000) /* 0's for 64 Bytes */
  384. #define EMAC_TRTR_192 (0x10000000)
  385. #define EMAC_TRTR_128 (0x01000000)
  386. /* the follwing defines are for the MadMAL status and control registers. */
  387. /* For bits 0..5 look at the mal.h file */
  388. #define EMAC_TX_CTRL_GFCS (0x0200)
  389. #define EMAC_TX_CTRL_GP (0x0100)
  390. #define EMAC_TX_CTRL_ISA (0x0080)
  391. #define EMAC_TX_CTRL_RSA (0x0040)
  392. #define EMAC_TX_CTRL_IVT (0x0020)
  393. #define EMAC_TX_CTRL_RVT (0x0010)
  394. #define EMAC_TX_CTRL_DEFAULT (EMAC_TX_CTRL_GFCS |EMAC_TX_CTRL_GP)
  395. #define EMAC_TX_ST_BFCS (0x0200)
  396. #define EMAC_TX_ST_BPP (0x0100)
  397. #define EMAC_TX_ST_LCS (0x0080)
  398. #define EMAC_TX_ST_ED (0x0040)
  399. #define EMAC_TX_ST_EC (0x0020)
  400. #define EMAC_TX_ST_LC (0x0010)
  401. #define EMAC_TX_ST_MC (0x0008)
  402. #define EMAC_TX_ST_SC (0x0004)
  403. #define EMAC_TX_ST_UR (0x0002)
  404. #define EMAC_TX_ST_SQE (0x0001)
  405. #define EMAC_TX_ST_DEFAULT (0x03F3)
  406. /* madmal receive status / Control bits */
  407. #define EMAC_RX_ST_OE (0x0200)
  408. #define EMAC_RX_ST_PP (0x0100)
  409. #define EMAC_RX_ST_BP (0x0080)
  410. #define EMAC_RX_ST_RP (0x0040)
  411. #define EMAC_RX_ST_SE (0x0020)
  412. #define EMAC_RX_ST_AE (0x0010)
  413. #define EMAC_RX_ST_BFCS (0x0008)
  414. #define EMAC_RX_ST_PTL (0x0004)
  415. #define EMAC_RX_ST_ORE (0x0002)
  416. #define EMAC_RX_ST_IRE (0x0001)
  417. /* all the errors we care about */
  418. #define EMAC_RX_ERRORS (0x03FF)
  419. #endif /* _PPC4XX_ENET_H_ */