ibm_emac.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. /*
  2. * drivers/net/ibm_emac/ibm_emac.h
  3. *
  4. * Register definitions for PowerPC 4xx on-chip ethernet contoller
  5. *
  6. * Copyright (c) 2004, 2005 Zultys Technologies.
  7. * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
  8. *
  9. * Based on original work by
  10. * Matt Porter <mporter@kernel.crashing.org>
  11. * Armin Kuster <akuster@mvista.com>
  12. * Copyright 2002-2004 MontaVista Software Inc.
  13. *
  14. * This program is free software; you can redistribute it and/or modify it
  15. * under the terms of the GNU General Public License as published by the
  16. * Free Software Foundation; either version 2 of the License, or (at your
  17. * option) any later version.
  18. *
  19. */
  20. #ifndef __IBM_EMAC_H_
  21. #define __IBM_EMAC_H_
  22. #include <linux/types.h>
  23. /* This is a simple check to prevent use of this driver on non-tested SoCs */
  24. #if !defined(CONFIG_405GP) && !defined(CONFIG_405GPR) && !defined(CONFIG_405EP) && \
  25. !defined(CONFIG_440GP) && !defined(CONFIG_440GX) && !defined(CONFIG_440SP) && \
  26. !defined(CONFIG_440EP) && !defined(CONFIG_NP405H) && !defined(CONFIG_440SPE) && \
  27. !defined(CONFIG_440GR)
  28. #error "Unknown SoC. Please, check chip user manual and make sure EMAC defines are OK"
  29. #endif
  30. /* EMAC registers Write Access rules */
  31. struct emac_regs {
  32. u32 mr0; /* special */
  33. u32 mr1; /* Reset */
  34. u32 tmr0; /* special */
  35. u32 tmr1; /* special */
  36. u32 rmr; /* Reset */
  37. u32 isr; /* Always */
  38. u32 iser; /* Reset */
  39. u32 iahr; /* Reset, R, T */
  40. u32 ialr; /* Reset, R, T */
  41. u32 vtpid; /* Reset, R, T */
  42. u32 vtci; /* Reset, R, T */
  43. u32 ptr; /* Reset, T */
  44. u32 iaht1; /* Reset, R */
  45. u32 iaht2; /* Reset, R */
  46. u32 iaht3; /* Reset, R */
  47. u32 iaht4; /* Reset, R */
  48. u32 gaht1; /* Reset, R */
  49. u32 gaht2; /* Reset, R */
  50. u32 gaht3; /* Reset, R */
  51. u32 gaht4; /* Reset, R */
  52. u32 lsah;
  53. u32 lsal;
  54. u32 ipgvr; /* Reset, T */
  55. u32 stacr; /* special */
  56. u32 trtr; /* special */
  57. u32 rwmr; /* Reset */
  58. u32 octx;
  59. u32 ocrx;
  60. u32 ipcr;
  61. };
  62. #if !defined(CONFIG_IBM_EMAC4)
  63. #define EMAC_ETHTOOL_REGS_VER 0
  64. #define EMAC_ETHTOOL_REGS_SIZE (sizeof(struct emac_regs) - sizeof(u32))
  65. #else
  66. #define EMAC_ETHTOOL_REGS_VER 1
  67. #define EMAC_ETHTOOL_REGS_SIZE sizeof(struct emac_regs)
  68. #endif
  69. /* EMACx_MR0 */
  70. #define EMAC_MR0_RXI 0x80000000
  71. #define EMAC_MR0_TXI 0x40000000
  72. #define EMAC_MR0_SRST 0x20000000
  73. #define EMAC_MR0_TXE 0x10000000
  74. #define EMAC_MR0_RXE 0x08000000
  75. #define EMAC_MR0_WKE 0x04000000
  76. /* EMACx_MR1 */
  77. #define EMAC_MR1_FDE 0x80000000
  78. #define EMAC_MR1_ILE 0x40000000
  79. #define EMAC_MR1_VLE 0x20000000
  80. #define EMAC_MR1_EIFC 0x10000000
  81. #define EMAC_MR1_APP 0x08000000
  82. #define EMAC_MR1_IST 0x01000000
  83. #define EMAC_MR1_MF_MASK 0x00c00000
  84. #define EMAC_MR1_MF_10 0x00000000
  85. #define EMAC_MR1_MF_100 0x00400000
  86. #if !defined(CONFIG_IBM_EMAC4)
  87. #define EMAC_MR1_MF_1000 0x00000000
  88. #define EMAC_MR1_MF_1000GPCS 0x00000000
  89. #define EMAC_MR1_MF_IPPA(id) 0x00000000
  90. #else
  91. #define EMAC_MR1_MF_1000 0x00800000
  92. #define EMAC_MR1_MF_1000GPCS 0x00c00000
  93. #define EMAC_MR1_MF_IPPA(id) (((id) & 0x1f) << 6)
  94. #endif
  95. #define EMAC_TX_FIFO_SIZE 2048
  96. #if !defined(CONFIG_IBM_EMAC4)
  97. #define EMAC_MR1_RFS_4K 0x00300000
  98. #define EMAC_MR1_RFS_16K 0x00000000
  99. #define EMAC_RX_FIFO_SIZE(gige) 4096
  100. #define EMAC_MR1_TFS_2K 0x00080000
  101. #define EMAC_MR1_TR0_MULT 0x00008000
  102. #define EMAC_MR1_JPSM 0x00000000
  103. #define EMAC_MR1_MWSW_001 0x00000000
  104. #define EMAC_MR1_BASE(opb) (EMAC_MR1_TFS_2K | EMAC_MR1_TR0_MULT)
  105. #else
  106. #define EMAC_MR1_RFS_4K 0x00180000
  107. #define EMAC_MR1_RFS_16K 0x00280000
  108. #define EMAC_RX_FIFO_SIZE(gige) ((gige) ? 16384 : 4096)
  109. #define EMAC_MR1_TFS_2K 0x00020000
  110. #define EMAC_MR1_TR 0x00008000
  111. #define EMAC_MR1_MWSW_001 0x00001000
  112. #define EMAC_MR1_JPSM 0x00000800
  113. #define EMAC_MR1_OBCI_MASK 0x00000038
  114. #define EMAC_MR1_OBCI_50 0x00000000
  115. #define EMAC_MR1_OBCI_66 0x00000008
  116. #define EMAC_MR1_OBCI_83 0x00000010
  117. #define EMAC_MR1_OBCI_100 0x00000018
  118. #define EMAC_MR1_OBCI_100P 0x00000020
  119. #define EMAC_MR1_OBCI(freq) ((freq) <= 50 ? EMAC_MR1_OBCI_50 : \
  120. (freq) <= 66 ? EMAC_MR1_OBCI_66 : \
  121. (freq) <= 83 ? EMAC_MR1_OBCI_83 : \
  122. (freq) <= 100 ? EMAC_MR1_OBCI_100 : EMAC_MR1_OBCI_100P)
  123. #define EMAC_MR1_BASE(opb) (EMAC_MR1_TFS_2K | EMAC_MR1_TR | \
  124. EMAC_MR1_OBCI(opb))
  125. #endif
  126. /* EMACx_TMR0 */
  127. #define EMAC_TMR0_GNP 0x80000000
  128. #if !defined(CONFIG_IBM_EMAC4)
  129. #define EMAC_TMR0_DEFAULT 0x00000000
  130. #else
  131. #define EMAC_TMR0_TFAE_2_32 0x00000001
  132. #define EMAC_TMR0_TFAE_4_64 0x00000002
  133. #define EMAC_TMR0_TFAE_8_128 0x00000003
  134. #define EMAC_TMR0_TFAE_16_256 0x00000004
  135. #define EMAC_TMR0_TFAE_32_512 0x00000005
  136. #define EMAC_TMR0_TFAE_64_1024 0x00000006
  137. #define EMAC_TMR0_TFAE_128_2048 0x00000007
  138. #define EMAC_TMR0_DEFAULT EMAC_TMR0_TFAE_2_32
  139. #endif
  140. #define EMAC_TMR0_XMIT (EMAC_TMR0_GNP | EMAC_TMR0_DEFAULT)
  141. /* EMACx_TMR1 */
  142. /* IBM manuals are not very clear here.
  143. * This is my interpretation of how things are. --ebs
  144. */
  145. #if defined(CONFIG_40x)
  146. #define EMAC_FIFO_ENTRY_SIZE 8
  147. #define EMAC_MAL_BURST_SIZE (16 * 4)
  148. #else
  149. #define EMAC_FIFO_ENTRY_SIZE 16
  150. #define EMAC_MAL_BURST_SIZE (64 * 4)
  151. #endif
  152. #if !defined(CONFIG_IBM_EMAC4)
  153. #define EMAC_TMR1(l,h) (((l) << 27) | (((h) & 0xff) << 16))
  154. #else
  155. #define EMAC_TMR1(l,h) (((l) << 27) | (((h) & 0x3ff) << 14))
  156. #endif
  157. /* EMACx_RMR */
  158. #define EMAC_RMR_SP 0x80000000
  159. #define EMAC_RMR_SFCS 0x40000000
  160. #define EMAC_RMR_RRP 0x20000000
  161. #define EMAC_RMR_RFP 0x10000000
  162. #define EMAC_RMR_ROP 0x08000000
  163. #define EMAC_RMR_RPIR 0x04000000
  164. #define EMAC_RMR_PPP 0x02000000
  165. #define EMAC_RMR_PME 0x01000000
  166. #define EMAC_RMR_PMME 0x00800000
  167. #define EMAC_RMR_IAE 0x00400000
  168. #define EMAC_RMR_MIAE 0x00200000
  169. #define EMAC_RMR_BAE 0x00100000
  170. #define EMAC_RMR_MAE 0x00080000
  171. #if !defined(CONFIG_IBM_EMAC4)
  172. #define EMAC_RMR_BASE 0x00000000
  173. #else
  174. #define EMAC_RMR_RFAF_2_32 0x00000001
  175. #define EMAC_RMR_RFAF_4_64 0x00000002
  176. #define EMAC_RMR_RFAF_8_128 0x00000003
  177. #define EMAC_RMR_RFAF_16_256 0x00000004
  178. #define EMAC_RMR_RFAF_32_512 0x00000005
  179. #define EMAC_RMR_RFAF_64_1024 0x00000006
  180. #define EMAC_RMR_RFAF_128_2048 0x00000007
  181. #define EMAC_RMR_BASE EMAC_RMR_RFAF_128_2048
  182. #endif
  183. /* EMACx_ISR & EMACx_ISER */
  184. #if !defined(CONFIG_IBM_EMAC4)
  185. #define EMAC_ISR_TXPE 0x00000000
  186. #define EMAC_ISR_RXPE 0x00000000
  187. #define EMAC_ISR_TXUE 0x00000000
  188. #define EMAC_ISR_RXOE 0x00000000
  189. #else
  190. #define EMAC_ISR_TXPE 0x20000000
  191. #define EMAC_ISR_RXPE 0x10000000
  192. #define EMAC_ISR_TXUE 0x08000000
  193. #define EMAC_ISR_RXOE 0x04000000
  194. #endif
  195. #define EMAC_ISR_OVR 0x02000000
  196. #define EMAC_ISR_PP 0x01000000
  197. #define EMAC_ISR_BP 0x00800000
  198. #define EMAC_ISR_RP 0x00400000
  199. #define EMAC_ISR_SE 0x00200000
  200. #define EMAC_ISR_ALE 0x00100000
  201. #define EMAC_ISR_BFCS 0x00080000
  202. #define EMAC_ISR_PTLE 0x00040000
  203. #define EMAC_ISR_ORE 0x00020000
  204. #define EMAC_ISR_IRE 0x00010000
  205. #define EMAC_ISR_SQE 0x00000080
  206. #define EMAC_ISR_TE 0x00000040
  207. #define EMAC_ISR_MOS 0x00000002
  208. #define EMAC_ISR_MOF 0x00000001
  209. /* EMACx_STACR */
  210. #define EMAC_STACR_PHYD_MASK 0xffff
  211. #define EMAC_STACR_PHYD_SHIFT 16
  212. #define EMAC_STACR_OC 0x00008000
  213. #define EMAC_STACR_PHYE 0x00004000
  214. #define EMAC_STACR_STAC_MASK 0x00003000
  215. #define EMAC_STACR_STAC_READ 0x00001000
  216. #define EMAC_STACR_STAC_WRITE 0x00002000
  217. #if !defined(CONFIG_IBM_EMAC4)
  218. #define EMAC_STACR_OPBC_MASK 0x00000C00
  219. #define EMAC_STACR_OPBC_50 0x00000000
  220. #define EMAC_STACR_OPBC_66 0x00000400
  221. #define EMAC_STACR_OPBC_83 0x00000800
  222. #define EMAC_STACR_OPBC_100 0x00000C00
  223. #define EMAC_STACR_OPBC(freq) ((freq) <= 50 ? EMAC_STACR_OPBC_50 : \
  224. (freq) <= 66 ? EMAC_STACR_OPBC_66 : \
  225. (freq) <= 83 ? EMAC_STACR_OPBC_83 : EMAC_STACR_OPBC_100)
  226. #define EMAC_STACR_BASE(opb) EMAC_STACR_OPBC(opb)
  227. #else
  228. #define EMAC_STACR_BASE(opb) 0x00000000
  229. #endif
  230. #define EMAC_STACR_PCDA_MASK 0x1f
  231. #define EMAC_STACR_PCDA_SHIFT 5
  232. #define EMAC_STACR_PRA_MASK 0x1f
  233. /*
  234. * For the 440SPe, AMCC inexplicably changed the polarity of
  235. * the "operation complete" bit in the MII control register.
  236. */
  237. #if defined(CONFIG_440SPE)
  238. static inline int emac_phy_done(u32 stacr)
  239. {
  240. return !(stacr & EMAC_STACR_OC);
  241. };
  242. #define EMAC_STACR_START EMAC_STACR_OC
  243. #else /* CONFIG_440SPE */
  244. static inline int emac_phy_done(u32 stacr)
  245. {
  246. return stacr & EMAC_STACR_OC;
  247. };
  248. #define EMAC_STACR_START 0
  249. #endif /* !CONFIG_440SPE */
  250. /* EMACx_TRTR */
  251. #if !defined(CONFIG_IBM_EMAC4)
  252. #define EMAC_TRTR_SHIFT 27
  253. #else
  254. #define EMAC_TRTR_SHIFT 24
  255. #endif
  256. #define EMAC_TRTR(size) ((((size) >> 6) - 1) << EMAC_TRTR_SHIFT)
  257. /* EMACx_RWMR */
  258. #if !defined(CONFIG_IBM_EMAC4)
  259. #define EMAC_RWMR(l,h) (((l) << 23) | ( ((h) & 0x1ff) << 7))
  260. #else
  261. #define EMAC_RWMR(l,h) (((l) << 22) | ( ((h) & 0x3ff) << 6))
  262. #endif
  263. /* EMAC specific TX descriptor control fields (write access) */
  264. #define EMAC_TX_CTRL_GFCS 0x0200
  265. #define EMAC_TX_CTRL_GP 0x0100
  266. #define EMAC_TX_CTRL_ISA 0x0080
  267. #define EMAC_TX_CTRL_RSA 0x0040
  268. #define EMAC_TX_CTRL_IVT 0x0020
  269. #define EMAC_TX_CTRL_RVT 0x0010
  270. #define EMAC_TX_CTRL_TAH_CSUM 0x000e
  271. /* EMAC specific TX descriptor status fields (read access) */
  272. #define EMAC_TX_ST_BFCS 0x0200
  273. #define EMAC_TX_ST_LCS 0x0080
  274. #define EMAC_TX_ST_ED 0x0040
  275. #define EMAC_TX_ST_EC 0x0020
  276. #define EMAC_TX_ST_LC 0x0010
  277. #define EMAC_TX_ST_MC 0x0008
  278. #define EMAC_TX_ST_SC 0x0004
  279. #define EMAC_TX_ST_UR 0x0002
  280. #define EMAC_TX_ST_SQE 0x0001
  281. #if !defined(CONFIG_IBM_EMAC_TAH)
  282. #define EMAC_IS_BAD_TX(v) ((v) & (EMAC_TX_ST_LCS | EMAC_TX_ST_ED | \
  283. EMAC_TX_ST_EC | EMAC_TX_ST_LC | \
  284. EMAC_TX_ST_MC | EMAC_TX_ST_UR))
  285. #else
  286. #define EMAC_IS_BAD_TX(v) ((v) & (EMAC_TX_ST_LCS | EMAC_TX_ST_ED | \
  287. EMAC_TX_ST_EC | EMAC_TX_ST_LC))
  288. #endif
  289. /* EMAC specific RX descriptor status fields (read access) */
  290. #define EMAC_RX_ST_OE 0x0200
  291. #define EMAC_RX_ST_PP 0x0100
  292. #define EMAC_RX_ST_BP 0x0080
  293. #define EMAC_RX_ST_RP 0x0040
  294. #define EMAC_RX_ST_SE 0x0020
  295. #define EMAC_RX_ST_AE 0x0010
  296. #define EMAC_RX_ST_BFCS 0x0008
  297. #define EMAC_RX_ST_PTL 0x0004
  298. #define EMAC_RX_ST_ORE 0x0002
  299. #define EMAC_RX_ST_IRE 0x0001
  300. #define EMAC_RX_TAH_BAD_CSUM 0x0003
  301. #define EMAC_BAD_RX_MASK (EMAC_RX_ST_OE | EMAC_RX_ST_BP | \
  302. EMAC_RX_ST_RP | EMAC_RX_ST_SE | \
  303. EMAC_RX_ST_AE | EMAC_RX_ST_BFCS | \
  304. EMAC_RX_ST_PTL | EMAC_RX_ST_ORE | \
  305. EMAC_RX_ST_IRE )
  306. #endif /* __IBM_EMAC_H_ */