fec_mpc52xx.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /*
  2. * drivers/drivers/net/fec_mpc52xx/fec.h
  3. *
  4. * Driver for the MPC5200 Fast Ethernet Controller
  5. *
  6. * Author: Dale Farnsworth <dfarnsworth@mvista.com>
  7. *
  8. * 2003-2004 (c) MontaVista, Software, Inc. This file is licensed under
  9. * the terms of the GNU General Public License version 2. This program
  10. * is licensed "as is" without any warranty of any kind, whether express
  11. * or implied.
  12. */
  13. #ifndef __DRIVERS_NET_MPC52XX_FEC_H__
  14. #define __DRIVERS_NET_MPC52XX_FEC_H__
  15. #include <linux/phy.h>
  16. /* Tunable constant */
  17. /* FEC_RX_BUFFER_SIZE includes 4 bytes for CRC32 */
  18. #define FEC_RX_BUFFER_SIZE 1522 /* max receive packet size */
  19. #define FEC_RX_NUM_BD 256
  20. #define FEC_TX_NUM_BD 64
  21. #define FEC_RESET_DELAY 50 /* uS */
  22. #define FEC_WATCHDOG_TIMEOUT ((400*HZ)/1000)
  23. struct mpc52xx_fec_priv {
  24. int duplex;
  25. int r_irq;
  26. int t_irq;
  27. struct mpc52xx_fec __iomem *fec;
  28. struct bcom_task *rx_dmatsk;
  29. struct bcom_task *tx_dmatsk;
  30. spinlock_t lock;
  31. int msg_enable;
  32. int has_phy;
  33. unsigned int phy_speed;
  34. unsigned int phy_addr;
  35. struct phy_device *phydev;
  36. enum phy_state link;
  37. int speed;
  38. };
  39. /* ======================================================================== */
  40. /* Hardware register sets & bits */
  41. /* ======================================================================== */
  42. struct mpc52xx_fec {
  43. u32 fec_id; /* FEC + 0x000 */
  44. u32 ievent; /* FEC + 0x004 */
  45. u32 imask; /* FEC + 0x008 */
  46. u32 reserved0[1]; /* FEC + 0x00C */
  47. u32 r_des_active; /* FEC + 0x010 */
  48. u32 x_des_active; /* FEC + 0x014 */
  49. u32 r_des_active_cl; /* FEC + 0x018 */
  50. u32 x_des_active_cl; /* FEC + 0x01C */
  51. u32 ivent_set; /* FEC + 0x020 */
  52. u32 ecntrl; /* FEC + 0x024 */
  53. u32 reserved1[6]; /* FEC + 0x028-03C */
  54. u32 mii_data; /* FEC + 0x040 */
  55. u32 mii_speed; /* FEC + 0x044 */
  56. u32 mii_status; /* FEC + 0x048 */
  57. u32 reserved2[5]; /* FEC + 0x04C-05C */
  58. u32 mib_data; /* FEC + 0x060 */
  59. u32 mib_control; /* FEC + 0x064 */
  60. u32 reserved3[6]; /* FEC + 0x068-7C */
  61. u32 r_activate; /* FEC + 0x080 */
  62. u32 r_cntrl; /* FEC + 0x084 */
  63. u32 r_hash; /* FEC + 0x088 */
  64. u32 r_data; /* FEC + 0x08C */
  65. u32 ar_done; /* FEC + 0x090 */
  66. u32 r_test; /* FEC + 0x094 */
  67. u32 r_mib; /* FEC + 0x098 */
  68. u32 r_da_low; /* FEC + 0x09C */
  69. u32 r_da_high; /* FEC + 0x0A0 */
  70. u32 reserved4[7]; /* FEC + 0x0A4-0BC */
  71. u32 x_activate; /* FEC + 0x0C0 */
  72. u32 x_cntrl; /* FEC + 0x0C4 */
  73. u32 backoff; /* FEC + 0x0C8 */
  74. u32 x_data; /* FEC + 0x0CC */
  75. u32 x_status; /* FEC + 0x0D0 */
  76. u32 x_mib; /* FEC + 0x0D4 */
  77. u32 x_test; /* FEC + 0x0D8 */
  78. u32 fdxfc_da1; /* FEC + 0x0DC */
  79. u32 fdxfc_da2; /* FEC + 0x0E0 */
  80. u32 paddr1; /* FEC + 0x0E4 */
  81. u32 paddr2; /* FEC + 0x0E8 */
  82. u32 op_pause; /* FEC + 0x0EC */
  83. u32 reserved5[4]; /* FEC + 0x0F0-0FC */
  84. u32 instr_reg; /* FEC + 0x100 */
  85. u32 context_reg; /* FEC + 0x104 */
  86. u32 test_cntrl; /* FEC + 0x108 */
  87. u32 acc_reg; /* FEC + 0x10C */
  88. u32 ones; /* FEC + 0x110 */
  89. u32 zeros; /* FEC + 0x114 */
  90. u32 iaddr1; /* FEC + 0x118 */
  91. u32 iaddr2; /* FEC + 0x11C */
  92. u32 gaddr1; /* FEC + 0x120 */
  93. u32 gaddr2; /* FEC + 0x124 */
  94. u32 random; /* FEC + 0x128 */
  95. u32 rand1; /* FEC + 0x12C */
  96. u32 tmp; /* FEC + 0x130 */
  97. u32 reserved6[3]; /* FEC + 0x134-13C */
  98. u32 fifo_id; /* FEC + 0x140 */
  99. u32 x_wmrk; /* FEC + 0x144 */
  100. u32 fcntrl; /* FEC + 0x148 */
  101. u32 r_bound; /* FEC + 0x14C */
  102. u32 r_fstart; /* FEC + 0x150 */
  103. u32 r_count; /* FEC + 0x154 */
  104. u32 r_lag; /* FEC + 0x158 */
  105. u32 r_read; /* FEC + 0x15C */
  106. u32 r_write; /* FEC + 0x160 */
  107. u32 x_count; /* FEC + 0x164 */
  108. u32 x_lag; /* FEC + 0x168 */
  109. u32 x_retry; /* FEC + 0x16C */
  110. u32 x_write; /* FEC + 0x170 */
  111. u32 x_read; /* FEC + 0x174 */
  112. u32 reserved7[2]; /* FEC + 0x178-17C */
  113. u32 fm_cntrl; /* FEC + 0x180 */
  114. u32 rfifo_data; /* FEC + 0x184 */
  115. u32 rfifo_status; /* FEC + 0x188 */
  116. u32 rfifo_cntrl; /* FEC + 0x18C */
  117. u32 rfifo_lrf_ptr; /* FEC + 0x190 */
  118. u32 rfifo_lwf_ptr; /* FEC + 0x194 */
  119. u32 rfifo_alarm; /* FEC + 0x198 */
  120. u32 rfifo_rdptr; /* FEC + 0x19C */
  121. u32 rfifo_wrptr; /* FEC + 0x1A0 */
  122. u32 tfifo_data; /* FEC + 0x1A4 */
  123. u32 tfifo_status; /* FEC + 0x1A8 */
  124. u32 tfifo_cntrl; /* FEC + 0x1AC */
  125. u32 tfifo_lrf_ptr; /* FEC + 0x1B0 */
  126. u32 tfifo_lwf_ptr; /* FEC + 0x1B4 */
  127. u32 tfifo_alarm; /* FEC + 0x1B8 */
  128. u32 tfifo_rdptr; /* FEC + 0x1BC */
  129. u32 tfifo_wrptr; /* FEC + 0x1C0 */
  130. u32 reset_cntrl; /* FEC + 0x1C4 */
  131. u32 xmit_fsm; /* FEC + 0x1C8 */
  132. u32 reserved8[3]; /* FEC + 0x1CC-1D4 */
  133. u32 rdes_data0; /* FEC + 0x1D8 */
  134. u32 rdes_data1; /* FEC + 0x1DC */
  135. u32 r_length; /* FEC + 0x1E0 */
  136. u32 x_length; /* FEC + 0x1E4 */
  137. u32 x_addr; /* FEC + 0x1E8 */
  138. u32 cdes_data; /* FEC + 0x1EC */
  139. u32 status; /* FEC + 0x1F0 */
  140. u32 dma_control; /* FEC + 0x1F4 */
  141. u32 des_cmnd; /* FEC + 0x1F8 */
  142. u32 data; /* FEC + 0x1FC */
  143. u32 rmon_t_drop; /* FEC + 0x200 */
  144. u32 rmon_t_packets; /* FEC + 0x204 */
  145. u32 rmon_t_bc_pkt; /* FEC + 0x208 */
  146. u32 rmon_t_mc_pkt; /* FEC + 0x20C */
  147. u32 rmon_t_crc_align; /* FEC + 0x210 */
  148. u32 rmon_t_undersize; /* FEC + 0x214 */
  149. u32 rmon_t_oversize; /* FEC + 0x218 */
  150. u32 rmon_t_frag; /* FEC + 0x21C */
  151. u32 rmon_t_jab; /* FEC + 0x220 */
  152. u32 rmon_t_col; /* FEC + 0x224 */
  153. u32 rmon_t_p64; /* FEC + 0x228 */
  154. u32 rmon_t_p65to127; /* FEC + 0x22C */
  155. u32 rmon_t_p128to255; /* FEC + 0x230 */
  156. u32 rmon_t_p256to511; /* FEC + 0x234 */
  157. u32 rmon_t_p512to1023; /* FEC + 0x238 */
  158. u32 rmon_t_p1024to2047; /* FEC + 0x23C */
  159. u32 rmon_t_p_gte2048; /* FEC + 0x240 */
  160. u32 rmon_t_octets; /* FEC + 0x244 */
  161. u32 ieee_t_drop; /* FEC + 0x248 */
  162. u32 ieee_t_frame_ok; /* FEC + 0x24C */
  163. u32 ieee_t_1col; /* FEC + 0x250 */
  164. u32 ieee_t_mcol; /* FEC + 0x254 */
  165. u32 ieee_t_def; /* FEC + 0x258 */
  166. u32 ieee_t_lcol; /* FEC + 0x25C */
  167. u32 ieee_t_excol; /* FEC + 0x260 */
  168. u32 ieee_t_macerr; /* FEC + 0x264 */
  169. u32 ieee_t_cserr; /* FEC + 0x268 */
  170. u32 ieee_t_sqe; /* FEC + 0x26C */
  171. u32 t_fdxfc; /* FEC + 0x270 */
  172. u32 ieee_t_octets_ok; /* FEC + 0x274 */
  173. u32 reserved9[2]; /* FEC + 0x278-27C */
  174. u32 rmon_r_drop; /* FEC + 0x280 */
  175. u32 rmon_r_packets; /* FEC + 0x284 */
  176. u32 rmon_r_bc_pkt; /* FEC + 0x288 */
  177. u32 rmon_r_mc_pkt; /* FEC + 0x28C */
  178. u32 rmon_r_crc_align; /* FEC + 0x290 */
  179. u32 rmon_r_undersize; /* FEC + 0x294 */
  180. u32 rmon_r_oversize; /* FEC + 0x298 */
  181. u32 rmon_r_frag; /* FEC + 0x29C */
  182. u32 rmon_r_jab; /* FEC + 0x2A0 */
  183. u32 rmon_r_resvd_0; /* FEC + 0x2A4 */
  184. u32 rmon_r_p64; /* FEC + 0x2A8 */
  185. u32 rmon_r_p65to127; /* FEC + 0x2AC */
  186. u32 rmon_r_p128to255; /* FEC + 0x2B0 */
  187. u32 rmon_r_p256to511; /* FEC + 0x2B4 */
  188. u32 rmon_r_p512to1023; /* FEC + 0x2B8 */
  189. u32 rmon_r_p1024to2047; /* FEC + 0x2BC */
  190. u32 rmon_r_p_gte2048; /* FEC + 0x2C0 */
  191. u32 rmon_r_octets; /* FEC + 0x2C4 */
  192. u32 ieee_r_drop; /* FEC + 0x2C8 */
  193. u32 ieee_r_frame_ok; /* FEC + 0x2CC */
  194. u32 ieee_r_crc; /* FEC + 0x2D0 */
  195. u32 ieee_r_align; /* FEC + 0x2D4 */
  196. u32 r_macerr; /* FEC + 0x2D8 */
  197. u32 r_fdxfc; /* FEC + 0x2DC */
  198. u32 ieee_r_octets_ok; /* FEC + 0x2E0 */
  199. u32 reserved10[7]; /* FEC + 0x2E4-2FC */
  200. u32 reserved11[64]; /* FEC + 0x300-3FF */
  201. };
  202. #define FEC_MIB_DISABLE 0x80000000
  203. #define FEC_IEVENT_HBERR 0x80000000
  204. #define FEC_IEVENT_BABR 0x40000000
  205. #define FEC_IEVENT_BABT 0x20000000
  206. #define FEC_IEVENT_GRA 0x10000000
  207. #define FEC_IEVENT_TFINT 0x08000000
  208. #define FEC_IEVENT_MII 0x00800000
  209. #define FEC_IEVENT_LATE_COL 0x00200000
  210. #define FEC_IEVENT_COL_RETRY_LIM 0x00100000
  211. #define FEC_IEVENT_XFIFO_UN 0x00080000
  212. #define FEC_IEVENT_XFIFO_ERROR 0x00040000
  213. #define FEC_IEVENT_RFIFO_ERROR 0x00020000
  214. #define FEC_IMASK_HBERR 0x80000000
  215. #define FEC_IMASK_BABR 0x40000000
  216. #define FEC_IMASK_BABT 0x20000000
  217. #define FEC_IMASK_GRA 0x10000000
  218. #define FEC_IMASK_MII 0x00800000
  219. #define FEC_IMASK_LATE_COL 0x00200000
  220. #define FEC_IMASK_COL_RETRY_LIM 0x00100000
  221. #define FEC_IMASK_XFIFO_UN 0x00080000
  222. #define FEC_IMASK_XFIFO_ERROR 0x00040000
  223. #define FEC_IMASK_RFIFO_ERROR 0x00020000
  224. /* all but MII, which is enabled separately */
  225. #define FEC_IMASK_ENABLE (FEC_IMASK_HBERR | FEC_IMASK_BABR | \
  226. FEC_IMASK_BABT | FEC_IMASK_GRA | FEC_IMASK_LATE_COL | \
  227. FEC_IMASK_COL_RETRY_LIM | FEC_IMASK_XFIFO_UN | \
  228. FEC_IMASK_XFIFO_ERROR | FEC_IMASK_RFIFO_ERROR)
  229. #define FEC_RCNTRL_MAX_FL_SHIFT 16
  230. #define FEC_RCNTRL_LOOP 0x01
  231. #define FEC_RCNTRL_DRT 0x02
  232. #define FEC_RCNTRL_MII_MODE 0x04
  233. #define FEC_RCNTRL_PROM 0x08
  234. #define FEC_RCNTRL_BC_REJ 0x10
  235. #define FEC_RCNTRL_FCE 0x20
  236. #define FEC_TCNTRL_GTS 0x00000001
  237. #define FEC_TCNTRL_HBC 0x00000002
  238. #define FEC_TCNTRL_FDEN 0x00000004
  239. #define FEC_TCNTRL_TFC_PAUSE 0x00000008
  240. #define FEC_TCNTRL_RFC_PAUSE 0x00000010
  241. #define FEC_ECNTRL_RESET 0x00000001
  242. #define FEC_ECNTRL_ETHER_EN 0x00000002
  243. #define FEC_MII_DATA_ST 0x40000000 /* Start frame */
  244. #define FEC_MII_DATA_OP_RD 0x20000000 /* Perform read */
  245. #define FEC_MII_DATA_OP_WR 0x10000000 /* Perform write */
  246. #define FEC_MII_DATA_PA_MSK 0x0f800000 /* PHY Address mask */
  247. #define FEC_MII_DATA_RA_MSK 0x007c0000 /* PHY Register mask */
  248. #define FEC_MII_DATA_TA 0x00020000 /* Turnaround */
  249. #define FEC_MII_DATA_DATAMSK 0x0000ffff /* PHY data mask */
  250. #define FEC_MII_READ_FRAME (FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA)
  251. #define FEC_MII_WRITE_FRAME (FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR | FEC_MII_DATA_TA)
  252. #define FEC_MII_DATA_RA_SHIFT 0x12 /* MII reg addr bits */
  253. #define FEC_MII_DATA_PA_SHIFT 0x17 /* MII PHY addr bits */
  254. #define FEC_PADDR2_TYPE 0x8808
  255. #define FEC_OP_PAUSE_OPCODE 0x00010000
  256. #define FEC_FIFO_WMRK_256B 0x3
  257. #define FEC_FIFO_STATUS_ERR 0x00400000
  258. #define FEC_FIFO_STATUS_UF 0x00200000
  259. #define FEC_FIFO_STATUS_OF 0x00100000
  260. #define FEC_FIFO_CNTRL_FRAME 0x08000000
  261. #define FEC_FIFO_CNTRL_LTG_7 0x07000000
  262. #define FEC_RESET_CNTRL_RESET_FIFO 0x02000000
  263. #define FEC_RESET_CNTRL_ENABLE_IS_RESET 0x01000000
  264. #define FEC_XMIT_FSM_APPEND_CRC 0x02000000
  265. #define FEC_XMIT_FSM_ENABLE_CRC 0x01000000
  266. extern struct of_platform_driver mpc52xx_fec_mdio_driver;
  267. #endif /* __DRIVERS_NET_MPC52XX_FEC_H__ */