smc911x.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. /*
  2. * SMSC LAN9[12]1[567] Network driver
  3. *
  4. * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <common.h>
  25. #include <command.h>
  26. #include <net.h>
  27. #include <miiphy.h>
  28. #if defined (CONFIG_DRIVER_SMC911X_32_BIT) && \
  29. defined (CONFIG_DRIVER_SMC911X_16_BIT)
  30. #error "SMC911X: Only one of CONFIG_DRIVER_SMC911X_32_BIT and \
  31. CONFIG_DRIVER_SMC911X_16_BIT shall be set"
  32. #endif
  33. #if defined (CONFIG_DRIVER_SMC911X_32_BIT)
  34. static inline u32 __smc911x_reg_read(u32 addr)
  35. {
  36. return *(volatile u32*)addr;
  37. }
  38. u32 smc911x_reg_read(u32 addr) __attribute__((weak, alias("__smc911x_reg_read")));
  39. static inline void __smc911x_reg_write(u32 addr, u32 val)
  40. {
  41. *(volatile u32*)addr = val;
  42. }
  43. void smc911x_reg_write(u32 addr, u32 val) __attribute__((weak, alias("__smc911x_reg_write")));
  44. #elif defined (CONFIG_DRIVER_SMC911X_16_BIT)
  45. static inline u32 smc911x_reg_read(u32 addr)
  46. {
  47. volatile u16 *addr_16 = (u16 *)addr;
  48. return ((*addr_16 & 0x0000ffff) | (*(addr_16 + 1) << 16));
  49. }
  50. static inline void smc911x_reg_write(u32 addr, u32 val)
  51. {
  52. *(volatile u16*)addr = (u16)val;
  53. *(volatile u16*)(addr + 2) = (u16)(val >> 16);
  54. }
  55. #else
  56. #error "SMC911X: undefined bus width"
  57. #endif /* CONFIG_DRIVER_SMC911X_16_BIT */
  58. u32 pkt_data_pull(u32 addr) \
  59. __attribute__ ((weak, alias ("smc911x_reg_read")));
  60. void pkt_data_push(u32 addr, u32 val) \
  61. __attribute__ ((weak, alias ("smc911x_reg_write")));
  62. #define mdelay(n) udelay((n)*1000)
  63. /* Below are the register offsets and bit definitions
  64. * of the Lan911x memory space
  65. */
  66. #define RX_DATA_FIFO (CONFIG_DRIVER_SMC911X_BASE + 0x00)
  67. #define TX_DATA_FIFO (CONFIG_DRIVER_SMC911X_BASE + 0x20)
  68. #define TX_CMD_A_INT_ON_COMP 0x80000000
  69. #define TX_CMD_A_INT_BUF_END_ALGN 0x03000000
  70. #define TX_CMD_A_INT_4_BYTE_ALGN 0x00000000
  71. #define TX_CMD_A_INT_16_BYTE_ALGN 0x01000000
  72. #define TX_CMD_A_INT_32_BYTE_ALGN 0x02000000
  73. #define TX_CMD_A_INT_DATA_OFFSET 0x001F0000
  74. #define TX_CMD_A_INT_FIRST_SEG 0x00002000
  75. #define TX_CMD_A_INT_LAST_SEG 0x00001000
  76. #define TX_CMD_A_BUF_SIZE 0x000007FF
  77. #define TX_CMD_B_PKT_TAG 0xFFFF0000
  78. #define TX_CMD_B_ADD_CRC_DISABLE 0x00002000
  79. #define TX_CMD_B_DISABLE_PADDING 0x00001000
  80. #define TX_CMD_B_PKT_BYTE_LENGTH 0x000007FF
  81. #define RX_STATUS_FIFO (CONFIG_DRIVER_SMC911X_BASE + 0x40)
  82. #define RX_STS_PKT_LEN 0x3FFF0000
  83. #define RX_STS_ES 0x00008000
  84. #define RX_STS_BCST 0x00002000
  85. #define RX_STS_LEN_ERR 0x00001000
  86. #define RX_STS_RUNT_ERR 0x00000800
  87. #define RX_STS_MCAST 0x00000400
  88. #define RX_STS_TOO_LONG 0x00000080
  89. #define RX_STS_COLL 0x00000040
  90. #define RX_STS_ETH_TYPE 0x00000020
  91. #define RX_STS_WDOG_TMT 0x00000010
  92. #define RX_STS_MII_ERR 0x00000008
  93. #define RX_STS_DRIBBLING 0x00000004
  94. #define RX_STS_CRC_ERR 0x00000002
  95. #define RX_STATUS_FIFO_PEEK (CONFIG_DRIVER_SMC911X_BASE + 0x44)
  96. #define TX_STATUS_FIFO (CONFIG_DRIVER_SMC911X_BASE + 0x48)
  97. #define TX_STS_TAG 0xFFFF0000
  98. #define TX_STS_ES 0x00008000
  99. #define TX_STS_LOC 0x00000800
  100. #define TX_STS_NO_CARR 0x00000400
  101. #define TX_STS_LATE_COLL 0x00000200
  102. #define TX_STS_MANY_COLL 0x00000100
  103. #define TX_STS_COLL_CNT 0x00000078
  104. #define TX_STS_MANY_DEFER 0x00000004
  105. #define TX_STS_UNDERRUN 0x00000002
  106. #define TX_STS_DEFERRED 0x00000001
  107. #define TX_STATUS_FIFO_PEEK (CONFIG_DRIVER_SMC911X_BASE + 0x4C)
  108. #define ID_REV (CONFIG_DRIVER_SMC911X_BASE + 0x50)
  109. #define ID_REV_CHIP_ID 0xFFFF0000 /* RO */
  110. #define ID_REV_REV_ID 0x0000FFFF /* RO */
  111. #define INT_CFG (CONFIG_DRIVER_SMC911X_BASE + 0x54)
  112. #define INT_CFG_INT_DEAS 0xFF000000 /* R/W */
  113. #define INT_CFG_INT_DEAS_CLR 0x00004000
  114. #define INT_CFG_INT_DEAS_STS 0x00002000
  115. #define INT_CFG_IRQ_INT 0x00001000 /* RO */
  116. #define INT_CFG_IRQ_EN 0x00000100 /* R/W */
  117. #define INT_CFG_IRQ_POL 0x00000010 /* R/W Not Affected by SW Reset */
  118. #define INT_CFG_IRQ_TYPE 0x00000001 /* R/W Not Affected by SW Reset */
  119. #define INT_STS (CONFIG_DRIVER_SMC911X_BASE + 0x58)
  120. #define INT_STS_SW_INT 0x80000000 /* R/WC */
  121. #define INT_STS_TXSTOP_INT 0x02000000 /* R/WC */
  122. #define INT_STS_RXSTOP_INT 0x01000000 /* R/WC */
  123. #define INT_STS_RXDFH_INT 0x00800000 /* R/WC */
  124. #define INT_STS_RXDF_INT 0x00400000 /* R/WC */
  125. #define INT_STS_TX_IOC 0x00200000 /* R/WC */
  126. #define INT_STS_RXD_INT 0x00100000 /* R/WC */
  127. #define INT_STS_GPT_INT 0x00080000 /* R/WC */
  128. #define INT_STS_PHY_INT 0x00040000 /* RO */
  129. #define INT_STS_PME_INT 0x00020000 /* R/WC */
  130. #define INT_STS_TXSO 0x00010000 /* R/WC */
  131. #define INT_STS_RWT 0x00008000 /* R/WC */
  132. #define INT_STS_RXE 0x00004000 /* R/WC */
  133. #define INT_STS_TXE 0x00002000 /* R/WC */
  134. /*#define INT_STS_ERX 0x00001000*/ /* R/WC */
  135. #define INT_STS_TDFU 0x00000800 /* R/WC */
  136. #define INT_STS_TDFO 0x00000400 /* R/WC */
  137. #define INT_STS_TDFA 0x00000200 /* R/WC */
  138. #define INT_STS_TSFF 0x00000100 /* R/WC */
  139. #define INT_STS_TSFL 0x00000080 /* R/WC */
  140. /*#define INT_STS_RXDF 0x00000040*/ /* R/WC */
  141. #define INT_STS_RDFO 0x00000040 /* R/WC */
  142. #define INT_STS_RDFL 0x00000020 /* R/WC */
  143. #define INT_STS_RSFF 0x00000010 /* R/WC */
  144. #define INT_STS_RSFL 0x00000008 /* R/WC */
  145. #define INT_STS_GPIO2_INT 0x00000004 /* R/WC */
  146. #define INT_STS_GPIO1_INT 0x00000002 /* R/WC */
  147. #define INT_STS_GPIO0_INT 0x00000001 /* R/WC */
  148. #define INT_EN (CONFIG_DRIVER_SMC911X_BASE + 0x5C)
  149. #define INT_EN_SW_INT_EN 0x80000000 /* R/W */
  150. #define INT_EN_TXSTOP_INT_EN 0x02000000 /* R/W */
  151. #define INT_EN_RXSTOP_INT_EN 0x01000000 /* R/W */
  152. #define INT_EN_RXDFH_INT_EN 0x00800000 /* R/W */
  153. /*#define INT_EN_RXDF_INT_EN 0x00400000*/ /* R/W */
  154. #define INT_EN_TIOC_INT_EN 0x00200000 /* R/W */
  155. #define INT_EN_RXD_INT_EN 0x00100000 /* R/W */
  156. #define INT_EN_GPT_INT_EN 0x00080000 /* R/W */
  157. #define INT_EN_PHY_INT_EN 0x00040000 /* R/W */
  158. #define INT_EN_PME_INT_EN 0x00020000 /* R/W */
  159. #define INT_EN_TXSO_EN 0x00010000 /* R/W */
  160. #define INT_EN_RWT_EN 0x00008000 /* R/W */
  161. #define INT_EN_RXE_EN 0x00004000 /* R/W */
  162. #define INT_EN_TXE_EN 0x00002000 /* R/W */
  163. /*#define INT_EN_ERX_EN 0x00001000*/ /* R/W */
  164. #define INT_EN_TDFU_EN 0x00000800 /* R/W */
  165. #define INT_EN_TDFO_EN 0x00000400 /* R/W */
  166. #define INT_EN_TDFA_EN 0x00000200 /* R/W */
  167. #define INT_EN_TSFF_EN 0x00000100 /* R/W */
  168. #define INT_EN_TSFL_EN 0x00000080 /* R/W */
  169. /*#define INT_EN_RXDF_EN 0x00000040*/ /* R/W */
  170. #define INT_EN_RDFO_EN 0x00000040 /* R/W */
  171. #define INT_EN_RDFL_EN 0x00000020 /* R/W */
  172. #define INT_EN_RSFF_EN 0x00000010 /* R/W */
  173. #define INT_EN_RSFL_EN 0x00000008 /* R/W */
  174. #define INT_EN_GPIO2_INT 0x00000004 /* R/W */
  175. #define INT_EN_GPIO1_INT 0x00000002 /* R/W */
  176. #define INT_EN_GPIO0_INT 0x00000001 /* R/W */
  177. #define BYTE_TEST (CONFIG_DRIVER_SMC911X_BASE + 0x64)
  178. #define FIFO_INT (CONFIG_DRIVER_SMC911X_BASE + 0x68)
  179. #define FIFO_INT_TX_AVAIL_LEVEL 0xFF000000 /* R/W */
  180. #define FIFO_INT_TX_STS_LEVEL 0x00FF0000 /* R/W */
  181. #define FIFO_INT_RX_AVAIL_LEVEL 0x0000FF00 /* R/W */
  182. #define FIFO_INT_RX_STS_LEVEL 0x000000FF /* R/W */
  183. #define RX_CFG (CONFIG_DRIVER_SMC911X_BASE + 0x6C)
  184. #define RX_CFG_RX_END_ALGN 0xC0000000 /* R/W */
  185. #define RX_CFG_RX_END_ALGN4 0x00000000 /* R/W */
  186. #define RX_CFG_RX_END_ALGN16 0x40000000 /* R/W */
  187. #define RX_CFG_RX_END_ALGN32 0x80000000 /* R/W */
  188. #define RX_CFG_RX_DMA_CNT 0x0FFF0000 /* R/W */
  189. #define RX_CFG_RX_DUMP 0x00008000 /* R/W */
  190. #define RX_CFG_RXDOFF 0x00001F00 /* R/W */
  191. /*#define RX_CFG_RXBAD 0x00000001*/ /* R/W */
  192. #define TX_CFG (CONFIG_DRIVER_SMC911X_BASE + 0x70)
  193. /*#define TX_CFG_TX_DMA_LVL 0xE0000000*/ /* R/W */
  194. /*#define TX_CFG_TX_DMA_CNT 0x0FFF0000*/ /* R/W Self Clearing */
  195. #define TX_CFG_TXS_DUMP 0x00008000 /* Self Clearing */
  196. #define TX_CFG_TXD_DUMP 0x00004000 /* Self Clearing */
  197. #define TX_CFG_TXSAO 0x00000004 /* R/W */
  198. #define TX_CFG_TX_ON 0x00000002 /* R/W */
  199. #define TX_CFG_STOP_TX 0x00000001 /* Self Clearing */
  200. #define HW_CFG (CONFIG_DRIVER_SMC911X_BASE + 0x74)
  201. #define HW_CFG_TTM 0x00200000 /* R/W */
  202. #define HW_CFG_SF 0x00100000 /* R/W */
  203. #define HW_CFG_TX_FIF_SZ 0x000F0000 /* R/W */
  204. #define HW_CFG_TR 0x00003000 /* R/W */
  205. #define HW_CFG_PHY_CLK_SEL 0x00000060 /* R/W */
  206. #define HW_CFG_PHY_CLK_SEL_INT_PHY 0x00000000 /* R/W */
  207. #define HW_CFG_PHY_CLK_SEL_EXT_PHY 0x00000020 /* R/W */
  208. #define HW_CFG_PHY_CLK_SEL_CLK_DIS 0x00000040 /* R/W */
  209. #define HW_CFG_SMI_SEL 0x00000010 /* R/W */
  210. #define HW_CFG_EXT_PHY_DET 0x00000008 /* RO */
  211. #define HW_CFG_EXT_PHY_EN 0x00000004 /* R/W */
  212. #define HW_CFG_32_16_BIT_MODE 0x00000004 /* RO */
  213. #define HW_CFG_SRST_TO 0x00000002 /* RO */
  214. #define HW_CFG_SRST 0x00000001 /* Self Clearing */
  215. #define RX_DP_CTRL (CONFIG_DRIVER_SMC911X_BASE + 0x78)
  216. #define RX_DP_CTRL_RX_FFWD 0x80000000 /* R/W */
  217. #define RX_DP_CTRL_FFWD_BUSY 0x80000000 /* RO */
  218. #define RX_FIFO_INF (CONFIG_DRIVER_SMC911X_BASE + 0x7C)
  219. #define RX_FIFO_INF_RXSUSED 0x00FF0000 /* RO */
  220. #define RX_FIFO_INF_RXDUSED 0x0000FFFF /* RO */
  221. #define TX_FIFO_INF (CONFIG_DRIVER_SMC911X_BASE + 0x80)
  222. #define TX_FIFO_INF_TSUSED 0x00FF0000 /* RO */
  223. #define TX_FIFO_INF_TDFREE 0x0000FFFF /* RO */
  224. #define PMT_CTRL (CONFIG_DRIVER_SMC911X_BASE + 0x84)
  225. #define PMT_CTRL_PM_MODE 0x00003000 /* Self Clearing */
  226. #define PMT_CTRL_PHY_RST 0x00000400 /* Self Clearing */
  227. #define PMT_CTRL_WOL_EN 0x00000200 /* R/W */
  228. #define PMT_CTRL_ED_EN 0x00000100 /* R/W */
  229. #define PMT_CTRL_PME_TYPE 0x00000040 /* R/W Not Affected by SW Reset */
  230. #define PMT_CTRL_WUPS 0x00000030 /* R/WC */
  231. #define PMT_CTRL_WUPS_NOWAKE 0x00000000 /* R/WC */
  232. #define PMT_CTRL_WUPS_ED 0x00000010 /* R/WC */
  233. #define PMT_CTRL_WUPS_WOL 0x00000020 /* R/WC */
  234. #define PMT_CTRL_WUPS_MULTI 0x00000030 /* R/WC */
  235. #define PMT_CTRL_PME_IND 0x00000008 /* R/W */
  236. #define PMT_CTRL_PME_POL 0x00000004 /* R/W */
  237. #define PMT_CTRL_PME_EN 0x00000002 /* R/W Not Affected by SW Reset */
  238. #define PMT_CTRL_READY 0x00000001 /* RO */
  239. #define GPIO_CFG (CONFIG_DRIVER_SMC911X_BASE + 0x88)
  240. #define GPIO_CFG_LED3_EN 0x40000000 /* R/W */
  241. #define GPIO_CFG_LED2_EN 0x20000000 /* R/W */
  242. #define GPIO_CFG_LED1_EN 0x10000000 /* R/W */
  243. #define GPIO_CFG_GPIO2_INT_POL 0x04000000 /* R/W */
  244. #define GPIO_CFG_GPIO1_INT_POL 0x02000000 /* R/W */
  245. #define GPIO_CFG_GPIO0_INT_POL 0x01000000 /* R/W */
  246. #define GPIO_CFG_EEPR_EN 0x00700000 /* R/W */
  247. #define GPIO_CFG_GPIOBUF2 0x00040000 /* R/W */
  248. #define GPIO_CFG_GPIOBUF1 0x00020000 /* R/W */
  249. #define GPIO_CFG_GPIOBUF0 0x00010000 /* R/W */
  250. #define GPIO_CFG_GPIODIR2 0x00000400 /* R/W */
  251. #define GPIO_CFG_GPIODIR1 0x00000200 /* R/W */
  252. #define GPIO_CFG_GPIODIR0 0x00000100 /* R/W */
  253. #define GPIO_CFG_GPIOD4 0x00000010 /* R/W */
  254. #define GPIO_CFG_GPIOD3 0x00000008 /* R/W */
  255. #define GPIO_CFG_GPIOD2 0x00000004 /* R/W */
  256. #define GPIO_CFG_GPIOD1 0x00000002 /* R/W */
  257. #define GPIO_CFG_GPIOD0 0x00000001 /* R/W */
  258. #define GPT_CFG (CONFIG_DRIVER_SMC911X_BASE + 0x8C)
  259. #define GPT_CFG_TIMER_EN 0x20000000 /* R/W */
  260. #define GPT_CFG_GPT_LOAD 0x0000FFFF /* R/W */
  261. #define GPT_CNT (CONFIG_DRIVER_SMC911X_BASE + 0x90)
  262. #define GPT_CNT_GPT_CNT 0x0000FFFF /* RO */
  263. #define ENDIAN (CONFIG_DRIVER_SMC911X_BASE + 0x98)
  264. #define FREE_RUN (CONFIG_DRIVER_SMC911X_BASE + 0x9C)
  265. #define RX_DROP (CONFIG_DRIVER_SMC911X_BASE + 0xA0)
  266. #define MAC_CSR_CMD (CONFIG_DRIVER_SMC911X_BASE + 0xA4)
  267. #define MAC_CSR_CMD_CSR_BUSY 0x80000000 /* Self Clearing */
  268. #define MAC_CSR_CMD_R_NOT_W 0x40000000 /* R/W */
  269. #define MAC_CSR_CMD_CSR_ADDR 0x000000FF /* R/W */
  270. #define MAC_CSR_DATA (CONFIG_DRIVER_SMC911X_BASE + 0xA8)
  271. #define AFC_CFG (CONFIG_DRIVER_SMC911X_BASE + 0xAC)
  272. #define AFC_CFG_AFC_HI 0x00FF0000 /* R/W */
  273. #define AFC_CFG_AFC_LO 0x0000FF00 /* R/W */
  274. #define AFC_CFG_BACK_DUR 0x000000F0 /* R/W */
  275. #define AFC_CFG_FCMULT 0x00000008 /* R/W */
  276. #define AFC_CFG_FCBRD 0x00000004 /* R/W */
  277. #define AFC_CFG_FCADD 0x00000002 /* R/W */
  278. #define AFC_CFG_FCANY 0x00000001 /* R/W */
  279. #define E2P_CMD (CONFIG_DRIVER_SMC911X_BASE + 0xB0)
  280. #define E2P_CMD_EPC_BUSY 0x80000000 /* Self Clearing */
  281. #define E2P_CMD_EPC_CMD 0x70000000 /* R/W */
  282. #define E2P_CMD_EPC_CMD_READ 0x00000000 /* R/W */
  283. #define E2P_CMD_EPC_CMD_EWDS 0x10000000 /* R/W */
  284. #define E2P_CMD_EPC_CMD_EWEN 0x20000000 /* R/W */
  285. #define E2P_CMD_EPC_CMD_WRITE 0x30000000 /* R/W */
  286. #define E2P_CMD_EPC_CMD_WRAL 0x40000000 /* R/W */
  287. #define E2P_CMD_EPC_CMD_ERASE 0x50000000 /* R/W */
  288. #define E2P_CMD_EPC_CMD_ERAL 0x60000000 /* R/W */
  289. #define E2P_CMD_EPC_CMD_RELOAD 0x70000000 /* R/W */
  290. #define E2P_CMD_EPC_TIMEOUT 0x00000200 /* RO */
  291. #define E2P_CMD_MAC_ADDR_LOADED 0x00000100 /* RO */
  292. #define E2P_CMD_EPC_ADDR 0x000000FF /* R/W */
  293. #define E2P_DATA (CONFIG_DRIVER_SMC911X_BASE + 0xB4)
  294. #define E2P_DATA_EEPROM_DATA 0x000000FF /* R/W */
  295. /* end of LAN register offsets and bit definitions */
  296. /* MAC Control and Status registers */
  297. #define MAC_CR 0x01 /* R/W */
  298. /* MAC_CR - MAC Control Register */
  299. #define MAC_CR_RXALL 0x80000000
  300. /* TODO: delete this bit? It is not described in the data sheet. */
  301. #define MAC_CR_HBDIS 0x10000000
  302. #define MAC_CR_RCVOWN 0x00800000
  303. #define MAC_CR_LOOPBK 0x00200000
  304. #define MAC_CR_FDPX 0x00100000
  305. #define MAC_CR_MCPAS 0x00080000
  306. #define MAC_CR_PRMS 0x00040000
  307. #define MAC_CR_INVFILT 0x00020000
  308. #define MAC_CR_PASSBAD 0x00010000
  309. #define MAC_CR_HFILT 0x00008000
  310. #define MAC_CR_HPFILT 0x00002000
  311. #define MAC_CR_LCOLL 0x00001000
  312. #define MAC_CR_BCAST 0x00000800
  313. #define MAC_CR_DISRTY 0x00000400
  314. #define MAC_CR_PADSTR 0x00000100
  315. #define MAC_CR_BOLMT_MASK 0x000000C0
  316. #define MAC_CR_DFCHK 0x00000020
  317. #define MAC_CR_TXEN 0x00000008
  318. #define MAC_CR_RXEN 0x00000004
  319. #define ADDRH 0x02 /* R/W mask 0x0000FFFFUL */
  320. #define ADDRL 0x03 /* R/W mask 0xFFFFFFFFUL */
  321. #define HASHH 0x04 /* R/W */
  322. #define HASHL 0x05 /* R/W */
  323. #define MII_ACC 0x06 /* R/W */
  324. #define MII_ACC_PHY_ADDR 0x0000F800
  325. #define MII_ACC_MIIRINDA 0x000007C0
  326. #define MII_ACC_MII_WRITE 0x00000002
  327. #define MII_ACC_MII_BUSY 0x00000001
  328. #define MII_DATA 0x07 /* R/W mask 0x0000FFFFUL */
  329. #define FLOW 0x08 /* R/W */
  330. #define FLOW_FCPT 0xFFFF0000
  331. #define FLOW_FCPASS 0x00000004
  332. #define FLOW_FCEN 0x00000002
  333. #define FLOW_FCBSY 0x00000001
  334. #define VLAN1 0x09 /* R/W mask 0x0000FFFFUL */
  335. #define VLAN1_VTI1 0x0000ffff
  336. #define VLAN2 0x0A /* R/W mask 0x0000FFFFUL */
  337. #define VLAN2_VTI2 0x0000ffff
  338. #define WUFF 0x0B /* WO */
  339. #define WUCSR 0x0C /* R/W */
  340. #define WUCSR_GUE 0x00000200
  341. #define WUCSR_WUFR 0x00000040
  342. #define WUCSR_MPR 0x00000020
  343. #define WUCSR_WAKE_EN 0x00000004
  344. #define WUCSR_MPEN 0x00000002
  345. /* Chip ID values */
  346. #define CHIP_9115 0x115
  347. #define CHIP_9116 0x116
  348. #define CHIP_9117 0x117
  349. #define CHIP_9118 0x118
  350. #define CHIP_9215 0x115a
  351. #define CHIP_9216 0x116a
  352. #define CHIP_9217 0x117a
  353. #define CHIP_9218 0x118a
  354. struct chip_id {
  355. u16 id;
  356. char *name;
  357. };
  358. static const struct chip_id chip_ids[] = {
  359. { CHIP_9115, "LAN9115" },
  360. { CHIP_9116, "LAN9116" },
  361. { CHIP_9117, "LAN9117" },
  362. { CHIP_9118, "LAN9118" },
  363. { CHIP_9215, "LAN9215" },
  364. { CHIP_9216, "LAN9216" },
  365. { CHIP_9217, "LAN9217" },
  366. { CHIP_9218, "LAN9218" },
  367. { 0, NULL },
  368. };
  369. #define DRIVERNAME "smc911x"
  370. u32 smc911x_get_mac_csr(u8 reg)
  371. {
  372. while (smc911x_reg_read(MAC_CSR_CMD) & MAC_CSR_CMD_CSR_BUSY)
  373. ;
  374. smc911x_reg_write(MAC_CSR_CMD, MAC_CSR_CMD_CSR_BUSY | MAC_CSR_CMD_R_NOT_W | reg);
  375. while (smc911x_reg_read(MAC_CSR_CMD) & MAC_CSR_CMD_CSR_BUSY)
  376. ;
  377. return smc911x_reg_read(MAC_CSR_DATA);
  378. }
  379. void smc911x_set_mac_csr(u8 reg, u32 data)
  380. {
  381. while (smc911x_reg_read(MAC_CSR_CMD) & MAC_CSR_CMD_CSR_BUSY)
  382. ;
  383. smc911x_reg_write(MAC_CSR_DATA, data);
  384. smc911x_reg_write(MAC_CSR_CMD, MAC_CSR_CMD_CSR_BUSY | reg);
  385. while (smc911x_reg_read(MAC_CSR_CMD) & MAC_CSR_CMD_CSR_BUSY)
  386. ;
  387. }
  388. static int smx911x_handle_mac_address(bd_t *bd)
  389. {
  390. unsigned long addrh, addrl;
  391. unsigned char *m = bd->bi_enetaddr;
  392. /* if the environment has a valid mac address then use it */
  393. if ((m[0] | m[1] | m[2] | m[3] | m[4] | m[5])) {
  394. addrl = m[0] | m[1] << 8 | m[2] << 16 | m[3] << 24;
  395. addrh = m[4] | m[5] << 8;
  396. smc911x_set_mac_csr(ADDRH, addrh);
  397. smc911x_set_mac_csr(ADDRL, addrl);
  398. } else {
  399. /* if not, try to get one from the eeprom */
  400. addrh = smc911x_get_mac_csr(ADDRH);
  401. addrl = smc911x_get_mac_csr(ADDRL);
  402. m[0] = (addrl ) & 0xff;
  403. m[1] = (addrl >> 8 ) & 0xff;
  404. m[2] = (addrl >> 16 ) & 0xff;
  405. m[3] = (addrl >> 24 ) & 0xff;
  406. m[4] = (addrh ) & 0xff;
  407. m[5] = (addrh >> 8 ) & 0xff;
  408. /* we get 0xff when there is no eeprom connected */
  409. if ((m[0] & m[1] & m[2] & m[3] & m[4] & m[5]) == 0xff) {
  410. printf(DRIVERNAME ": no valid mac address in environment "
  411. "and no eeprom found\n");
  412. return -1;
  413. }
  414. }
  415. printf(DRIVERNAME ": MAC %02x:%02x:%02x:%02x:%02x:%02x\n",
  416. m[0], m[1], m[2], m[3], m[4], m[5]);
  417. return 0;
  418. }
  419. static int smc911x_miiphy_read(u8 phy, u8 reg, u16 *val)
  420. {
  421. while (smc911x_get_mac_csr(MII_ACC) & MII_ACC_MII_BUSY)
  422. ;
  423. smc911x_set_mac_csr(MII_ACC, phy << 11 | reg << 6 | MII_ACC_MII_BUSY);
  424. while (smc911x_get_mac_csr(MII_ACC) & MII_ACC_MII_BUSY)
  425. ;
  426. *val = smc911x_get_mac_csr(MII_DATA);
  427. return 0;
  428. }
  429. static int smc911x_miiphy_write(u8 phy, u8 reg, u16 val)
  430. {
  431. while (smc911x_get_mac_csr(MII_ACC) & MII_ACC_MII_BUSY)
  432. ;
  433. smc911x_set_mac_csr(MII_DATA, val);
  434. smc911x_set_mac_csr(MII_ACC,
  435. phy << 11 | reg << 6 | MII_ACC_MII_BUSY | MII_ACC_MII_WRITE);
  436. while (smc911x_get_mac_csr(MII_ACC) & MII_ACC_MII_BUSY)
  437. ;
  438. return 0;
  439. }
  440. static int smc911x_phy_reset(void)
  441. {
  442. u32 reg;
  443. reg = smc911x_reg_read(PMT_CTRL);
  444. reg &= ~0xfffff030;
  445. reg |= PMT_CTRL_PHY_RST;
  446. smc911x_reg_write(PMT_CTRL, reg);
  447. mdelay(100);
  448. return 0;
  449. }
  450. static void smc911x_phy_configure(void)
  451. {
  452. int timeout;
  453. u16 status;
  454. smc911x_phy_reset();
  455. smc911x_miiphy_write(1, PHY_BMCR, PHY_BMCR_RESET);
  456. mdelay(1);
  457. smc911x_miiphy_write(1, PHY_ANAR, 0x01e1);
  458. smc911x_miiphy_write(1, PHY_BMCR, PHY_BMCR_AUTON | PHY_BMCR_RST_NEG);
  459. timeout = 5000;
  460. do {
  461. mdelay(1);
  462. if ((timeout--) == 0)
  463. goto err_out;
  464. if (smc911x_miiphy_read(1, PHY_BMSR, &status) != 0)
  465. goto err_out;
  466. } while (!(status & PHY_BMSR_LS));
  467. printf(DRIVERNAME ": phy initialized\n");
  468. return;
  469. err_out:
  470. printf(DRIVERNAME ": autonegotiation timed out\n");
  471. }
  472. static void smc911x_reset(void)
  473. {
  474. int timeout;
  475. /* Take out of PM setting first */
  476. if (smc911x_reg_read(PMT_CTRL) & PMT_CTRL_READY) {
  477. /* Write to the bytetest will take out of powerdown */
  478. smc911x_reg_write(BYTE_TEST, 0x0);
  479. timeout = 10;
  480. while (timeout-- && !(smc911x_reg_read(PMT_CTRL) & PMT_CTRL_READY))
  481. udelay(10);
  482. if (!timeout) {
  483. printf(DRIVERNAME
  484. ": timeout waiting for PM restore\n");
  485. return;
  486. }
  487. }
  488. /* Disable interrupts */
  489. smc911x_reg_write(INT_EN, 0);
  490. smc911x_reg_write(HW_CFG, HW_CFG_SRST);
  491. timeout = 1000;
  492. while (timeout-- && smc911x_reg_read(E2P_CMD) & E2P_CMD_EPC_BUSY)
  493. udelay(10);
  494. if (!timeout) {
  495. printf(DRIVERNAME ": reset timeout\n");
  496. return;
  497. }
  498. /* Reset the FIFO level and flow control settings */
  499. smc911x_set_mac_csr(FLOW, FLOW_FCPT | FLOW_FCEN);
  500. smc911x_reg_write(AFC_CFG, 0x0050287F);
  501. /* Set to LED outputs */
  502. smc911x_reg_write(GPIO_CFG, 0x70070000);
  503. }
  504. static void smc911x_enable(void)
  505. {
  506. /* Enable TX */
  507. smc911x_reg_write(HW_CFG, 8 << 16 | HW_CFG_SF);
  508. smc911x_reg_write(GPT_CFG, GPT_CFG_TIMER_EN | 10000);
  509. smc911x_reg_write(TX_CFG, TX_CFG_TX_ON);
  510. /* no padding to start of packets */
  511. smc911x_reg_write(RX_CFG, 0);
  512. smc911x_set_mac_csr(MAC_CR, MAC_CR_TXEN | MAC_CR_RXEN | MAC_CR_HBDIS);
  513. }
  514. int eth_init(bd_t *bd)
  515. {
  516. unsigned long val, i;
  517. printf(DRIVERNAME ": initializing\n");
  518. val = smc911x_reg_read(BYTE_TEST);
  519. if (val != 0x87654321) {
  520. printf(DRIVERNAME ": Invalid chip endian 0x%08lx\n", val);
  521. goto err_out;
  522. }
  523. val = smc911x_reg_read(ID_REV) >> 16;
  524. for (i = 0; chip_ids[i].id != 0; i++) {
  525. if (chip_ids[i].id == val) break;
  526. }
  527. if (!chip_ids[i].id) {
  528. printf(DRIVERNAME ": Unknown chip ID %04lx\n", val);
  529. goto err_out;
  530. }
  531. printf(DRIVERNAME ": detected %s controller\n", chip_ids[i].name);
  532. smc911x_reset();
  533. /* Configure the PHY, initialize the link state */
  534. smc911x_phy_configure();
  535. if (smx911x_handle_mac_address(bd))
  536. goto err_out;
  537. /* Turn on Tx + Rx */
  538. smc911x_enable();
  539. return 0;
  540. err_out:
  541. return -1;
  542. }
  543. int eth_send(volatile void *packet, int length)
  544. {
  545. u32 *data = (u32*)packet;
  546. u32 tmplen;
  547. u32 status;
  548. smc911x_reg_write(TX_DATA_FIFO, TX_CMD_A_INT_FIRST_SEG | TX_CMD_A_INT_LAST_SEG | length);
  549. smc911x_reg_write(TX_DATA_FIFO, length);
  550. tmplen = (length + 3) / 4;
  551. while (tmplen--)
  552. pkt_data_push(TX_DATA_FIFO, *data++);
  553. /* wait for transmission */
  554. while (!((smc911x_reg_read(TX_FIFO_INF) & TX_FIFO_INF_TSUSED) >> 16));
  555. /* get status. Ignore 'no carrier' error, it has no meaning for
  556. * full duplex operation
  557. */
  558. status = smc911x_reg_read(TX_STATUS_FIFO) & (TX_STS_LOC | TX_STS_LATE_COLL |
  559. TX_STS_MANY_COLL | TX_STS_MANY_DEFER | TX_STS_UNDERRUN);
  560. if (!status)
  561. return 0;
  562. printf(DRIVERNAME ": failed to send packet: %s%s%s%s%s\n",
  563. status & TX_STS_LOC ? "TX_STS_LOC " : "",
  564. status & TX_STS_LATE_COLL ? "TX_STS_LATE_COLL " : "",
  565. status & TX_STS_MANY_COLL ? "TX_STS_MANY_COLL " : "",
  566. status & TX_STS_MANY_DEFER ? "TX_STS_MANY_DEFER " : "",
  567. status & TX_STS_UNDERRUN ? "TX_STS_UNDERRUN" : "");
  568. return -1;
  569. }
  570. void eth_halt(void)
  571. {
  572. smc911x_reset();
  573. }
  574. int eth_rx(void)
  575. {
  576. u32 *data = (u32 *)NetRxPackets[0];
  577. u32 pktlen, tmplen;
  578. u32 status;
  579. if ((smc911x_reg_read(RX_FIFO_INF) & RX_FIFO_INF_RXSUSED) >> 16) {
  580. status = smc911x_reg_read(RX_STATUS_FIFO);
  581. pktlen = (status & RX_STS_PKT_LEN) >> 16;
  582. smc911x_reg_write(RX_CFG, 0);
  583. tmplen = (pktlen + 2+ 3) / 4;
  584. while (tmplen--)
  585. *data++ = pkt_data_pull(RX_DATA_FIFO);
  586. if (status & RX_STS_ES)
  587. printf(DRIVERNAME
  588. ": dropped bad packet. Status: 0x%08x\n",
  589. status);
  590. else
  591. NetReceive(NetRxPackets[0], pktlen);
  592. }
  593. return 0;
  594. }