smsc9420.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. /***************************************************************************
  2. *
  3. * Copyright (C) 2007,2008 SMSC
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  17. *
  18. ***************************************************************************
  19. */
  20. #ifndef _SMSC9420_H
  21. #define _SMSC9420_H
  22. #define TX_RING_SIZE (32)
  23. #define RX_RING_SIZE (128)
  24. /* interrupt deassertion in multiples of 10us */
  25. #define INT_DEAS_TIME (50)
  26. #define NAPI_WEIGHT (64)
  27. #define SMSC_BAR (3)
  28. #ifdef __BIG_ENDIAN
  29. /* Register set is duplicated for BE at an offset of 0x200 */
  30. #define LAN9420_CPSR_ENDIAN_OFFSET (0x200)
  31. #else
  32. #define LAN9420_CPSR_ENDIAN_OFFSET (0)
  33. #endif
  34. #define PCI_VENDOR_ID_9420 (0x1055)
  35. #define PCI_DEVICE_ID_9420 (0xE420)
  36. #define LAN_REGISTER_EXTENT (0x400)
  37. #define SMSC9420_EEPROM_SIZE ((u32)11)
  38. #define SMSC9420_EEPROM_MAGIC (0x9420)
  39. #define PKT_BUF_SZ (VLAN_ETH_FRAME_LEN + NET_IP_ALIGN + 4)
  40. /***********************************************/
  41. /* DMA Controller Control and Status Registers */
  42. /***********************************************/
  43. #define BUS_MODE (0x00)
  44. #define BUS_MODE_SWR_ (BIT(0))
  45. #define BUS_MODE_DMA_BURST_LENGTH_1 (BIT(8))
  46. #define BUS_MODE_DMA_BURST_LENGTH_2 (BIT(9))
  47. #define BUS_MODE_DMA_BURST_LENGTH_4 (BIT(10))
  48. #define BUS_MODE_DMA_BURST_LENGTH_8 (BIT(11))
  49. #define BUS_MODE_DMA_BURST_LENGTH_16 (BIT(12))
  50. #define BUS_MODE_DMA_BURST_LENGTH_32 (BIT(13))
  51. #define BUS_MODE_DBO_ (BIT(20))
  52. #define TX_POLL_DEMAND (0x04)
  53. #define RX_POLL_DEMAND (0x08)
  54. #define RX_BASE_ADDR (0x0C)
  55. #define TX_BASE_ADDR (0x10)
  56. #define DMAC_STATUS (0x14)
  57. #define DMAC_STS_TS_ (7 << 20)
  58. #define DMAC_STS_RS_ (7 << 17)
  59. #define DMAC_STS_NIS_ (BIT(16))
  60. #define DMAC_STS_AIS_ (BIT(15))
  61. #define DMAC_STS_RWT_ (BIT(9))
  62. #define DMAC_STS_RXPS_ (BIT(8))
  63. #define DMAC_STS_RXBU_ (BIT(7))
  64. #define DMAC_STS_RX_ (BIT(6))
  65. #define DMAC_STS_TXUNF_ (BIT(5))
  66. #define DMAC_STS_TXBU_ (BIT(2))
  67. #define DMAC_STS_TXPS_ (BIT(1))
  68. #define DMAC_STS_TX_ (BIT(0))
  69. #define DMAC_CONTROL (0x18)
  70. #define DMAC_CONTROL_TTM_ (BIT(22))
  71. #define DMAC_CONTROL_SF_ (BIT(21))
  72. #define DMAC_CONTROL_ST_ (BIT(13))
  73. #define DMAC_CONTROL_OSF_ (BIT(2))
  74. #define DMAC_CONTROL_SR_ (BIT(1))
  75. #define DMAC_INTR_ENA (0x1C)
  76. #define DMAC_INTR_ENA_NIS_ (BIT(16))
  77. #define DMAC_INTR_ENA_AIS_ (BIT(15))
  78. #define DMAC_INTR_ENA_RWT_ (BIT(9))
  79. #define DMAC_INTR_ENA_RXPS_ (BIT(8))
  80. #define DMAC_INTR_ENA_RXBU_ (BIT(7))
  81. #define DMAC_INTR_ENA_RX_ (BIT(6))
  82. #define DMAC_INTR_ENA_TXBU_ (BIT(2))
  83. #define DMAC_INTR_ENA_TXPS_ (BIT(1))
  84. #define DMAC_INTR_ENA_TX_ (BIT(0))
  85. #define MISS_FRAME_CNTR (0x20)
  86. #define TX_BUFF_ADDR (0x50)
  87. #define RX_BUFF_ADDR (0x54)
  88. /* Transmit Descriptor Bit Defs */
  89. #define TDES0_OWN_ (0x80000000)
  90. #define TDES0_ERROR_SUMMARY_ (0x00008000)
  91. #define TDES0_LOSS_OF_CARRIER_ (0x00000800)
  92. #define TDES0_NO_CARRIER_ (0x00000400)
  93. #define TDES0_LATE_COLLISION_ (0x00000200)
  94. #define TDES0_EXCESSIVE_COLLISIONS_ (0x00000100)
  95. #define TDES0_HEARTBEAT_FAIL_ (0x00000080)
  96. #define TDES0_COLLISION_COUNT_MASK_ (0x00000078)
  97. #define TDES0_COLLISION_COUNT_SHFT_ (3)
  98. #define TDES0_EXCESSIVE_DEFERRAL_ (0x00000004)
  99. #define TDES0_DEFERRED_ (0x00000001)
  100. #define TDES1_IC_ 0x80000000
  101. #define TDES1_LS_ 0x40000000
  102. #define TDES1_FS_ 0x20000000
  103. #define TDES1_TXCSEN_ 0x08000000
  104. #define TDES1_TER_ (BIT(25))
  105. #define TDES1_TCH_ 0x01000000
  106. /* Receive Descriptor 0 Bit Defs */
  107. #define RDES0_OWN_ (0x80000000)
  108. #define RDES0_FRAME_LENGTH_MASK_ (0x07FF0000)
  109. #define RDES0_FRAME_LENGTH_SHFT_ (16)
  110. #define RDES0_ERROR_SUMMARY_ (0x00008000)
  111. #define RDES0_DESCRIPTOR_ERROR_ (0x00004000)
  112. #define RDES0_LENGTH_ERROR_ (0x00001000)
  113. #define RDES0_RUNT_FRAME_ (0x00000800)
  114. #define RDES0_MULTICAST_FRAME_ (0x00000400)
  115. #define RDES0_FIRST_DESCRIPTOR_ (0x00000200)
  116. #define RDES0_LAST_DESCRIPTOR_ (0x00000100)
  117. #define RDES0_FRAME_TOO_LONG_ (0x00000080)
  118. #define RDES0_COLLISION_SEEN_ (0x00000040)
  119. #define RDES0_FRAME_TYPE_ (0x00000020)
  120. #define RDES0_WATCHDOG_TIMEOUT_ (0x00000010)
  121. #define RDES0_MII_ERROR_ (0x00000008)
  122. #define RDES0_DRIBBLING_BIT_ (0x00000004)
  123. #define RDES0_CRC_ERROR_ (0x00000002)
  124. /* Receive Descriptor 1 Bit Defs */
  125. #define RDES1_RER_ (0x02000000)
  126. /***********************************************/
  127. /* MAC Control and Status Registers */
  128. /***********************************************/
  129. #define MAC_CR (0x80)
  130. #define MAC_CR_RXALL_ (0x80000000)
  131. #define MAC_CR_DIS_RXOWN_ (0x00800000)
  132. #define MAC_CR_LOOPBK_ (0x00200000)
  133. #define MAC_CR_FDPX_ (0x00100000)
  134. #define MAC_CR_MCPAS_ (0x00080000)
  135. #define MAC_CR_PRMS_ (0x00040000)
  136. #define MAC_CR_INVFILT_ (0x00020000)
  137. #define MAC_CR_PASSBAD_ (0x00010000)
  138. #define MAC_CR_HFILT_ (0x00008000)
  139. #define MAC_CR_HPFILT_ (0x00002000)
  140. #define MAC_CR_LCOLL_ (0x00001000)
  141. #define MAC_CR_DIS_BCAST_ (0x00000800)
  142. #define MAC_CR_DIS_RTRY_ (0x00000400)
  143. #define MAC_CR_PADSTR_ (0x00000100)
  144. #define MAC_CR_BOLMT_MSK (0x000000C0)
  145. #define MAC_CR_MFCHK_ (0x00000020)
  146. #define MAC_CR_TXEN_ (0x00000008)
  147. #define MAC_CR_RXEN_ (0x00000004)
  148. #define ADDRH (0x84)
  149. #define ADDRL (0x88)
  150. #define HASHH (0x8C)
  151. #define HASHL (0x90)
  152. #define MII_ACCESS (0x94)
  153. #define MII_ACCESS_MII_BUSY_ (0x00000001)
  154. #define MII_ACCESS_MII_WRITE_ (0x00000002)
  155. #define MII_ACCESS_MII_READ_ (0x00000000)
  156. #define MII_ACCESS_INDX_MSK_ (0x000007C0)
  157. #define MII_ACCESS_PHYADDR_MSK_ (0x0000F8C0)
  158. #define MII_ACCESS_INDX_SHFT_CNT (6)
  159. #define MII_ACCESS_PHYADDR_SHFT_CNT (11)
  160. #define MII_DATA (0x98)
  161. #define FLOW (0x9C)
  162. #define VLAN1 (0xA0)
  163. #define VLAN2 (0xA4)
  164. #define WUFF (0xA8)
  165. #define WUCSR (0xAC)
  166. #define COE_CR (0xB0)
  167. #define TX_COE_EN (0x00010000)
  168. #define RX_COE_MODE (0x00000002)
  169. #define RX_COE_EN (0x00000001)
  170. /***********************************************/
  171. /* System Control and Status Registers */
  172. /***********************************************/
  173. #define ID_REV (0xC0)
  174. #define INT_CTL (0xC4)
  175. #define INT_CTL_SW_INT_EN_ (0x00008000)
  176. #define INT_CTL_SBERR_INT_EN_ (1 << 12)
  177. #define INT_CTL_MBERR_INT_EN_ (1 << 13)
  178. #define INT_CTL_GPT_INT_EN_ (0x00000008)
  179. #define INT_CTL_PHY_INT_EN_ (0x00000004)
  180. #define INT_CTL_WAKE_INT_EN_ (0x00000002)
  181. #define INT_STAT (0xC8)
  182. #define INT_STAT_SW_INT_ (1 << 15)
  183. #define INT_STAT_MBERR_INT_ (1 << 13)
  184. #define INT_STAT_SBERR_INT_ (1 << 12)
  185. #define INT_STAT_GPT_INT_ (1 << 3)
  186. #define INT_STAT_PHY_INT_ (0x00000004)
  187. #define INT_STAT_WAKE_INT_ (0x00000002)
  188. #define INT_STAT_DMAC_INT_ (0x00000001)
  189. #define INT_CFG (0xCC)
  190. #define INT_CFG_IRQ_INT_ (0x00080000)
  191. #define INT_CFG_IRQ_EN_ (0x00040000)
  192. #define INT_CFG_INT_DEAS_CLR_ (0x00000200)
  193. #define INT_CFG_INT_DEAS_MASK (0x000000FF)
  194. #define GPIO_CFG (0xD0)
  195. #define GPIO_CFG_LED_3_ (0x40000000)
  196. #define GPIO_CFG_LED_2_ (0x20000000)
  197. #define GPIO_CFG_LED_1_ (0x10000000)
  198. #define GPIO_CFG_EEPR_EN_ (0x00700000)
  199. #define GPT_CFG (0xD4)
  200. #define GPT_CFG_TIMER_EN_ (0x20000000)
  201. #define GPT_CNT (0xD8)
  202. #define BUS_CFG (0xDC)
  203. #define BUS_CFG_RXTXWEIGHT_1_1 (0 << 25)
  204. #define BUS_CFG_RXTXWEIGHT_2_1 (1 << 25)
  205. #define BUS_CFG_RXTXWEIGHT_3_1 (2 << 25)
  206. #define BUS_CFG_RXTXWEIGHT_4_1 (3 << 25)
  207. #define PMT_CTRL (0xE0)
  208. #define FREE_RUN (0xF4)
  209. #define E2P_CMD (0xF8)
  210. #define E2P_CMD_EPC_BUSY_ (0x80000000)
  211. #define E2P_CMD_EPC_CMD_ (0x70000000)
  212. #define E2P_CMD_EPC_CMD_READ_ (0x00000000)
  213. #define E2P_CMD_EPC_CMD_EWDS_ (0x10000000)
  214. #define E2P_CMD_EPC_CMD_EWEN_ (0x20000000)
  215. #define E2P_CMD_EPC_CMD_WRITE_ (0x30000000)
  216. #define E2P_CMD_EPC_CMD_WRAL_ (0x40000000)
  217. #define E2P_CMD_EPC_CMD_ERASE_ (0x50000000)
  218. #define E2P_CMD_EPC_CMD_ERAL_ (0x60000000)
  219. #define E2P_CMD_EPC_CMD_RELOAD_ (0x70000000)
  220. #define E2P_CMD_EPC_TIMEOUT_ (0x00000200)
  221. #define E2P_CMD_MAC_ADDR_LOADED_ (0x00000100)
  222. #define E2P_CMD_EPC_ADDR_ (0x000000FF)
  223. #define E2P_DATA (0xFC)
  224. #define E2P_DATA_EEPROM_DATA_ (0x000000FF)
  225. #endif /* _SMSC9420_H */