atlx.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  1. /* atlx_hw.h -- common hardware definitions for Attansic network drivers
  2. *
  3. * Copyright(c) 2005 - 2006 Attansic Corporation. All rights reserved.
  4. * Copyright(c) 2006 - 2007 Chris Snook <csnook@redhat.com>
  5. * Copyright(c) 2006 - 2008 Jay Cliburn <jcliburn@gmail.com>
  6. * Copyright(c) 2007 Atheros Corporation. All rights reserved.
  7. *
  8. * Derived from Intel e1000 driver
  9. * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the Free
  13. * Software Foundation; either version 2 of the License, or (at your option)
  14. * any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful, but WITHOUT
  17. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  18. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  19. * more details.
  20. *
  21. * You should have received a copy of the GNU General Public License along with
  22. * this program; if not, write to the Free Software Foundation, Inc., 59
  23. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  24. */
  25. #ifndef ATLX_H
  26. #define ATLX_H
  27. #include <linux/module.h>
  28. #include <linux/types.h>
  29. #define ATLX_DRIVER_VERSION "2.1.3"
  30. MODULE_AUTHOR("Xiong Huang <xiong.huang@atheros.com>, \
  31. Chris Snook <csnook@redhat.com>, Jay Cliburn <jcliburn@gmail.com>");
  32. MODULE_LICENSE("GPL");
  33. MODULE_VERSION(ATLX_DRIVER_VERSION);
  34. #define ATLX_ERR_PHY 2
  35. #define ATLX_ERR_PHY_SPEED 7
  36. #define ATLX_ERR_PHY_RES 8
  37. #define SPEED_0 0xffff
  38. #define SPEED_10 10
  39. #define SPEED_100 100
  40. #define SPEED_1000 1000
  41. #define HALF_DUPLEX 1
  42. #define FULL_DUPLEX 2
  43. #define MEDIA_TYPE_AUTO_SENSOR 0
  44. /* register definitions */
  45. #define REG_PM_CTRLSTAT 0x44
  46. #define REG_PCIE_CAP_LIST 0x58
  47. #define REG_VPD_CAP 0x6C
  48. #define VPD_CAP_ID_MASK 0xFF
  49. #define VPD_CAP_ID_SHIFT 0
  50. #define VPD_CAP_NEXT_PTR_MASK 0xFF
  51. #define VPD_CAP_NEXT_PTR_SHIFT 8
  52. #define VPD_CAP_VPD_ADDR_MASK 0x7FFF
  53. #define VPD_CAP_VPD_ADDR_SHIFT 16
  54. #define VPD_CAP_VPD_FLAG 0x80000000
  55. #define REG_VPD_DATA 0x70
  56. #define REG_SPI_FLASH_CTRL 0x200
  57. #define SPI_FLASH_CTRL_STS_NON_RDY 0x1
  58. #define SPI_FLASH_CTRL_STS_WEN 0x2
  59. #define SPI_FLASH_CTRL_STS_WPEN 0x80
  60. #define SPI_FLASH_CTRL_DEV_STS_MASK 0xFF
  61. #define SPI_FLASH_CTRL_DEV_STS_SHIFT 0
  62. #define SPI_FLASH_CTRL_INS_MASK 0x7
  63. #define SPI_FLASH_CTRL_INS_SHIFT 8
  64. #define SPI_FLASH_CTRL_START 0x800
  65. #define SPI_FLASH_CTRL_EN_VPD 0x2000
  66. #define SPI_FLASH_CTRL_LDSTART 0x8000
  67. #define SPI_FLASH_CTRL_CS_HI_MASK 0x3
  68. #define SPI_FLASH_CTRL_CS_HI_SHIFT 16
  69. #define SPI_FLASH_CTRL_CS_HOLD_MASK 0x3
  70. #define SPI_FLASH_CTRL_CS_HOLD_SHIFT 18
  71. #define SPI_FLASH_CTRL_CLK_LO_MASK 0x3
  72. #define SPI_FLASH_CTRL_CLK_LO_SHIFT 20
  73. #define SPI_FLASH_CTRL_CLK_HI_MASK 0x3
  74. #define SPI_FLASH_CTRL_CLK_HI_SHIFT 22
  75. #define SPI_FLASH_CTRL_CS_SETUP_MASK 0x3
  76. #define SPI_FLASH_CTRL_CS_SETUP_SHIFT 24
  77. #define SPI_FLASH_CTRL_EROM_PGSZ_MASK 0x3
  78. #define SPI_FLASH_CTRL_EROM_PGSZ_SHIFT 26
  79. #define SPI_FLASH_CTRL_WAIT_READY 0x10000000
  80. #define REG_SPI_ADDR 0x204
  81. #define REG_SPI_DATA 0x208
  82. #define REG_SPI_FLASH_CONFIG 0x20C
  83. #define SPI_FLASH_CONFIG_LD_ADDR_MASK 0xFFFFFF
  84. #define SPI_FLASH_CONFIG_LD_ADDR_SHIFT 0
  85. #define SPI_FLASH_CONFIG_VPD_ADDR_MASK 0x3
  86. #define SPI_FLASH_CONFIG_VPD_ADDR_SHIFT 24
  87. #define SPI_FLASH_CONFIG_LD_EXIST 0x4000000
  88. #define REG_SPI_FLASH_OP_PROGRAM 0x210
  89. #define REG_SPI_FLASH_OP_SC_ERASE 0x211
  90. #define REG_SPI_FLASH_OP_CHIP_ERASE 0x212
  91. #define REG_SPI_FLASH_OP_RDID 0x213
  92. #define REG_SPI_FLASH_OP_WREN 0x214
  93. #define REG_SPI_FLASH_OP_RDSR 0x215
  94. #define REG_SPI_FLASH_OP_WRSR 0x216
  95. #define REG_SPI_FLASH_OP_READ 0x217
  96. #define REG_TWSI_CTRL 0x218
  97. #define TWSI_CTRL_LD_OFFSET_MASK 0xFF
  98. #define TWSI_CTRL_LD_OFFSET_SHIFT 0
  99. #define TWSI_CTRL_LD_SLV_ADDR_MASK 0x7
  100. #define TWSI_CTRL_LD_SLV_ADDR_SHIFT 8
  101. #define TWSI_CTRL_SW_LDSTART 0x800
  102. #define TWSI_CTRL_HW_LDSTART 0x1000
  103. #define TWSI_CTRL_SMB_SLV_ADDR_MASK 0x7F
  104. #define TWSI_CTRL_SMB_SLV_ADDR_SHIFT 15
  105. #define TWSI_CTRL_LD_EXIST 0x400000
  106. #define TWSI_CTRL_READ_FREQ_SEL_MASK 0x3
  107. #define TWSI_CTRL_READ_FREQ_SEL_SHIFT 23
  108. #define TWSI_CTRL_FREQ_SEL_100K 0
  109. #define TWSI_CTRL_FREQ_SEL_200K 1
  110. #define TWSI_CTRL_FREQ_SEL_300K 2
  111. #define TWSI_CTRL_FREQ_SEL_400K 3
  112. #define TWSI_CTRL_SMB_SLV_ADDR /* FIXME: define or remove */
  113. #define TWSI_CTRL_WRITE_FREQ_SEL_MASK 0x3
  114. #define TWSI_CTRL_WRITE_FREQ_SEL_SHIFT 24
  115. #define REG_PCIE_DEV_MISC_CTRL 0x21C
  116. #define PCIE_DEV_MISC_CTRL_EXT_PIPE 0x2
  117. #define PCIE_DEV_MISC_CTRL_RETRY_BUFDIS 0x1
  118. #define PCIE_DEV_MISC_CTRL_SPIROM_EXIST 0x4
  119. #define PCIE_DEV_MISC_CTRL_SERDES_ENDIAN 0x8
  120. #define PCIE_DEV_MISC_CTRL_SERDES_SEL_DIN 0x10
  121. #define REG_PCIE_PHYMISC 0x1000
  122. #define PCIE_PHYMISC_FORCE_RCV_DET 0x4
  123. #define REG_PCIE_DLL_TX_CTRL1 0x1104
  124. #define PCIE_DLL_TX_CTRL1_SEL_NOR_CLK 0x400
  125. #define PCIE_DLL_TX_CTRL1_DEF 0x568
  126. #define REG_LTSSM_TEST_MODE 0x12FC
  127. #define LTSSM_TEST_MODE_DEF 0x6500
  128. /* Master Control Register */
  129. #define REG_MASTER_CTRL 0x1400
  130. #define MASTER_CTRL_SOFT_RST 0x1
  131. #define MASTER_CTRL_MTIMER_EN 0x2
  132. #define MASTER_CTRL_ITIMER_EN 0x4
  133. #define MASTER_CTRL_MANUAL_INT 0x8
  134. #define MASTER_CTRL_REV_NUM_SHIFT 16
  135. #define MASTER_CTRL_REV_NUM_MASK 0xFF
  136. #define MASTER_CTRL_DEV_ID_SHIFT 24
  137. #define MASTER_CTRL_DEV_ID_MASK 0xFF
  138. /* Timer Initial Value Register */
  139. #define REG_MANUAL_TIMER_INIT 0x1404
  140. /* IRQ Moderator Timer Initial Value Register */
  141. #define REG_IRQ_MODU_TIMER_INIT 0x1408
  142. #define REG_PHY_ENABLE 0x140C
  143. /* IRQ Anti-Lost Timer Initial Value Register */
  144. #define REG_CMBDISDMA_TIMER 0x140E
  145. /* Block IDLE Status Register */
  146. #define REG_IDLE_STATUS 0x1410
  147. /* MDIO Control Register */
  148. #define REG_MDIO_CTRL 0x1414
  149. #define MDIO_DATA_MASK 0xFFFF
  150. #define MDIO_DATA_SHIFT 0
  151. #define MDIO_REG_ADDR_MASK 0x1F
  152. #define MDIO_REG_ADDR_SHIFT 16
  153. #define MDIO_RW 0x200000
  154. #define MDIO_SUP_PREAMBLE 0x400000
  155. #define MDIO_START 0x800000
  156. #define MDIO_CLK_SEL_SHIFT 24
  157. #define MDIO_CLK_25_4 0
  158. #define MDIO_CLK_25_6 2
  159. #define MDIO_CLK_25_8 3
  160. #define MDIO_CLK_25_10 4
  161. #define MDIO_CLK_25_14 5
  162. #define MDIO_CLK_25_20 6
  163. #define MDIO_CLK_25_28 7
  164. #define MDIO_BUSY 0x8000000
  165. /* MII PHY Status Register */
  166. #define REG_PHY_STATUS 0x1418
  167. /* BIST Control and Status Register0 (for the Packet Memory) */
  168. #define REG_BIST0_CTRL 0x141C
  169. #define BIST0_NOW 0x1
  170. #define BIST0_SRAM_FAIL 0x2
  171. #define BIST0_FUSE_FLAG 0x4
  172. #define REG_BIST1_CTRL 0x1420
  173. #define BIST1_NOW 0x1
  174. #define BIST1_SRAM_FAIL 0x2
  175. #define BIST1_FUSE_FLAG 0x4
  176. /* SerDes Lock Detect Control and Status Register */
  177. #define REG_SERDES_LOCK 0x1424
  178. #define SERDES_LOCK_DETECT 1
  179. #define SERDES_LOCK_DETECT_EN 2
  180. /* MAC Control Register */
  181. #define REG_MAC_CTRL 0x1480
  182. #define MAC_CTRL_TX_EN 1
  183. #define MAC_CTRL_RX_EN 2
  184. #define MAC_CTRL_TX_FLOW 4
  185. #define MAC_CTRL_RX_FLOW 8
  186. #define MAC_CTRL_LOOPBACK 0x10
  187. #define MAC_CTRL_DUPLX 0x20
  188. #define MAC_CTRL_ADD_CRC 0x40
  189. #define MAC_CTRL_PAD 0x80
  190. #define MAC_CTRL_LENCHK 0x100
  191. #define MAC_CTRL_HUGE_EN 0x200
  192. #define MAC_CTRL_PRMLEN_SHIFT 10
  193. #define MAC_CTRL_PRMLEN_MASK 0xF
  194. #define MAC_CTRL_RMV_VLAN 0x4000
  195. #define MAC_CTRL_PROMIS_EN 0x8000
  196. #define MAC_CTRL_MC_ALL_EN 0x2000000
  197. #define MAC_CTRL_BC_EN 0x4000000
  198. /* MAC IPG/IFG Control Register */
  199. #define REG_MAC_IPG_IFG 0x1484
  200. #define MAC_IPG_IFG_IPGT_SHIFT 0
  201. #define MAC_IPG_IFG_IPGT_MASK 0x7F
  202. #define MAC_IPG_IFG_MIFG_SHIFT 8
  203. #define MAC_IPG_IFG_MIFG_MASK 0xFF
  204. #define MAC_IPG_IFG_IPGR1_SHIFT 16
  205. #define MAC_IPG_IFG_IPGR1_MASK 0x7F
  206. #define MAC_IPG_IFG_IPGR2_SHIFT 24
  207. #define MAC_IPG_IFG_IPGR2_MASK 0x7F
  208. /* MAC STATION ADDRESS */
  209. #define REG_MAC_STA_ADDR 0x1488
  210. /* Hash table for multicast address */
  211. #define REG_RX_HASH_TABLE 0x1490
  212. /* MAC Half-Duplex Control Register */
  213. #define REG_MAC_HALF_DUPLX_CTRL 0x1498
  214. #define MAC_HALF_DUPLX_CTRL_LCOL_SHIFT 0
  215. #define MAC_HALF_DUPLX_CTRL_LCOL_MASK 0x3FF
  216. #define MAC_HALF_DUPLX_CTRL_RETRY_SHIFT 12
  217. #define MAC_HALF_DUPLX_CTRL_RETRY_MASK 0xF
  218. #define MAC_HALF_DUPLX_CTRL_EXC_DEF_EN 0x10000
  219. #define MAC_HALF_DUPLX_CTRL_NO_BACK_C 0x20000
  220. #define MAC_HALF_DUPLX_CTRL_NO_BACK_P 0x40000
  221. #define MAC_HALF_DUPLX_CTRL_ABEBE 0x80000
  222. #define MAC_HALF_DUPLX_CTRL_ABEBT_SHIFT 20
  223. #define MAC_HALF_DUPLX_CTRL_ABEBT_MASK 0xF
  224. #define MAC_HALF_DUPLX_CTRL_JAMIPG_SHIFT 24
  225. #define MAC_HALF_DUPLX_CTRL_JAMIPG_MASK 0xF
  226. /* Maximum Frame Length Control Register */
  227. #define REG_MTU 0x149C
  228. /* Wake-On-Lan control register */
  229. #define REG_WOL_CTRL 0x14A0
  230. #define WOL_PATTERN_EN 0x1
  231. #define WOL_PATTERN_PME_EN 0x2
  232. #define WOL_MAGIC_EN 0x4
  233. #define WOL_MAGIC_PME_EN 0x8
  234. #define WOL_LINK_CHG_EN 0x10
  235. #define WOL_LINK_CHG_PME_EN 0x20
  236. #define WOL_PATTERN_ST 0x100
  237. #define WOL_MAGIC_ST 0x200
  238. #define WOL_LINKCHG_ST 0x400
  239. #define WOL_PT0_EN 0x10000
  240. #define WOL_PT1_EN 0x20000
  241. #define WOL_PT2_EN 0x40000
  242. #define WOL_PT3_EN 0x80000
  243. #define WOL_PT4_EN 0x100000
  244. #define WOL_PT0_MATCH 0x1000000
  245. #define WOL_PT1_MATCH 0x2000000
  246. #define WOL_PT2_MATCH 0x4000000
  247. #define WOL_PT3_MATCH 0x8000000
  248. #define WOL_PT4_MATCH 0x10000000
  249. /* Internal SRAM Partition Register, high 32 bits */
  250. #define REG_SRAM_RFD_ADDR 0x1500
  251. /* Descriptor Control register, high 32 bits */
  252. #define REG_DESC_BASE_ADDR_HI 0x1540
  253. /* Interrupt Status Register */
  254. #define REG_ISR 0x1600
  255. #define ISR_UR_DETECTED 0x1000000
  256. #define ISR_FERR_DETECTED 0x2000000
  257. #define ISR_NFERR_DETECTED 0x4000000
  258. #define ISR_CERR_DETECTED 0x8000000
  259. #define ISR_PHY_LINKDOWN 0x10000000
  260. #define ISR_DIS_INT 0x80000000
  261. /* Interrupt Mask Register */
  262. #define REG_IMR 0x1604
  263. #define REG_RFD_RRD_IDX 0x1800
  264. #define REG_TPD_IDX 0x1804
  265. /* MII definitions */
  266. /* PHY Common Register */
  267. #define MII_ATLX_CR 0x09
  268. #define MII_ATLX_SR 0x0A
  269. #define MII_ATLX_ESR 0x0F
  270. #define MII_ATLX_PSCR 0x10
  271. #define MII_ATLX_PSSR 0x11
  272. /* PHY Control Register */
  273. #define MII_CR_SPEED_SELECT_MSB 0x0040 /* bits 6,13: 10=1000, 01=100,
  274. * 00=10
  275. */
  276. #define MII_CR_COLL_TEST_ENABLE 0x0080 /* Collision test enable */
  277. #define MII_CR_FULL_DUPLEX 0x0100 /* FDX =1, half duplex =0 */
  278. #define MII_CR_RESTART_AUTO_NEG 0x0200 /* Restart auto negotiation */
  279. #define MII_CR_ISOLATE 0x0400 /* Isolate PHY from MII */
  280. #define MII_CR_POWER_DOWN 0x0800 /* Power down */
  281. #define MII_CR_AUTO_NEG_EN 0x1000 /* Auto Neg Enable */
  282. #define MII_CR_SPEED_SELECT_LSB 0x2000 /* bits 6,13: 10=1000, 01=100,
  283. * 00=10
  284. */
  285. #define MII_CR_LOOPBACK 0x4000 /* 0 = normal, 1 = loopback */
  286. #define MII_CR_RESET 0x8000 /* 0 = normal, 1 = PHY reset */
  287. #define MII_CR_SPEED_MASK 0x2040
  288. #define MII_CR_SPEED_1000 0x0040
  289. #define MII_CR_SPEED_100 0x2000
  290. #define MII_CR_SPEED_10 0x0000
  291. /* PHY Status Register */
  292. #define MII_SR_EXTENDED_CAPS 0x0001 /* Ext register capabilities */
  293. #define MII_SR_JABBER_DETECT 0x0002 /* Jabber Detected */
  294. #define MII_SR_LINK_STATUS 0x0004 /* Link Status 1 = link */
  295. #define MII_SR_AUTONEG_CAPS 0x0008 /* Auto Neg Capable */
  296. #define MII_SR_REMOTE_FAULT 0x0010 /* Remote Fault Detect */
  297. #define MII_SR_AUTONEG_COMPLETE 0x0020 /* Auto Neg Complete */
  298. #define MII_SR_PREAMBLE_SUPPRESS 0x0040 /* Preamble may be suppressed */
  299. #define MII_SR_EXTENDED_STATUS 0x0100 /* Ext stat info in Reg 0x0F */
  300. #define MII_SR_100T2_HD_CAPS 0x0200 /* 100T2 Half Duplex Capable */
  301. #define MII_SR_100T2_FD_CAPS 0x0400 /* 100T2 Full Duplex Capable */
  302. #define MII_SR_10T_HD_CAPS 0x0800 /* 10T Half Duplex Capable */
  303. #define MII_SR_10T_FD_CAPS 0x1000 /* 10T Full Duplex Capable */
  304. #define MII_SR_100X_HD_CAPS 0x2000 /* 100X Half Duplex Capable */
  305. #define MII_SR_100X_FD_CAPS 0x4000 /* 100X Full Duplex Capable */
  306. #define MII_SR_100T4_CAPS 0x8000 /* 100T4 Capable */
  307. /* Link partner ability register */
  308. #define MII_LPA_SLCT 0x001f /* Same as advertise selector */
  309. #define MII_LPA_10HALF 0x0020 /* Can do 10mbps half-duplex */
  310. #define MII_LPA_10FULL 0x0040 /* Can do 10mbps full-duplex */
  311. #define MII_LPA_100HALF 0x0080 /* Can do 100mbps half-duplex */
  312. #define MII_LPA_100FULL 0x0100 /* Can do 100mbps full-duplex */
  313. #define MII_LPA_100BASE4 0x0200 /* 100BASE-T4 */
  314. #define MII_LPA_PAUSE 0x0400 /* PAUSE */
  315. #define MII_LPA_ASYPAUSE 0x0800 /* Asymmetrical PAUSE */
  316. #define MII_LPA_RFAULT 0x2000 /* Link partner faulted */
  317. #define MII_LPA_LPACK 0x4000 /* Link partner acked us */
  318. #define MII_LPA_NPAGE 0x8000 /* Next page bit */
  319. /* Autoneg Advertisement Register */
  320. #define MII_AR_SELECTOR_FIELD 0x0001 /* IEEE 802.3 CSMA/CD */
  321. #define MII_AR_10T_HD_CAPS 0x0020 /* 10T Half Duplex Capable */
  322. #define MII_AR_10T_FD_CAPS 0x0040 /* 10T Full Duplex Capable */
  323. #define MII_AR_100TX_HD_CAPS 0x0080 /* 100TX Half Duplex Capable */
  324. #define MII_AR_100TX_FD_CAPS 0x0100 /* 100TX Full Duplex Capable */
  325. #define MII_AR_100T4_CAPS 0x0200 /* 100T4 Capable */
  326. #define MII_AR_PAUSE 0x0400 /* Pause operation desired */
  327. #define MII_AR_ASM_DIR 0x0800 /* Asymmetric Pause Dir bit */
  328. #define MII_AR_REMOTE_FAULT 0x2000 /* Remote Fault detected */
  329. #define MII_AR_NEXT_PAGE 0x8000 /* Next Page ability support */
  330. #define MII_AR_SPEED_MASK 0x01E0
  331. #define MII_AR_DEFAULT_CAP_MASK 0x0DE0
  332. /* 1000BASE-T Control Register */
  333. #define MII_ATLX_CR_1000T_HD_CAPS 0x0100 /* Adv 1000T HD cap */
  334. #define MII_ATLX_CR_1000T_FD_CAPS 0x0200 /* Adv 1000T FD cap */
  335. #define MII_ATLX_CR_1000T_REPEATER_DTE 0x0400 /* 1=Repeater/switch device,
  336. * 0=DTE device */
  337. #define MII_ATLX_CR_1000T_MS_VALUE 0x0800 /* 1=Config PHY as Master,
  338. * 0=Configure PHY as Slave */
  339. #define MII_ATLX_CR_1000T_MS_ENABLE 0x1000 /* 1=Man Master/Slave config,
  340. * 0=Auto Master/Slave config
  341. */
  342. #define MII_ATLX_CR_1000T_TEST_MODE_NORMAL 0x0000 /* Normal Operation */
  343. #define MII_ATLX_CR_1000T_TEST_MODE_1 0x2000 /* Transmit Waveform test */
  344. #define MII_ATLX_CR_1000T_TEST_MODE_2 0x4000 /* Master Xmit Jitter test */
  345. #define MII_ATLX_CR_1000T_TEST_MODE_3 0x6000 /* Slave Xmit Jitter test */
  346. #define MII_ATLX_CR_1000T_TEST_MODE_4 0x8000 /* Xmitter Distortion test */
  347. #define MII_ATLX_CR_1000T_SPEED_MASK 0x0300
  348. #define MII_ATLX_CR_1000T_DEFAULT_CAP_MASK 0x0300
  349. /* 1000BASE-T Status Register */
  350. #define MII_ATLX_SR_1000T_LP_HD_CAPS 0x0400 /* LP is 1000T HD capable */
  351. #define MII_ATLX_SR_1000T_LP_FD_CAPS 0x0800 /* LP is 1000T FD capable */
  352. #define MII_ATLX_SR_1000T_REMOTE_RX_STATUS 0x1000 /* Remote receiver OK */
  353. #define MII_ATLX_SR_1000T_LOCAL_RX_STATUS 0x2000 /* Local receiver OK */
  354. #define MII_ATLX_SR_1000T_MS_CONFIG_RES 0x4000 /* 1=Local TX is Master
  355. * 0=Slave
  356. */
  357. #define MII_ATLX_SR_1000T_MS_CONFIG_FAULT 0x8000 /* Master/Slave config
  358. * fault */
  359. #define MII_ATLX_SR_1000T_REMOTE_RX_STATUS_SHIFT 12
  360. #define MII_ATLX_SR_1000T_LOCAL_RX_STATUS_SHIFT 13
  361. /* Extended Status Register */
  362. #define MII_ATLX_ESR_1000T_HD_CAPS 0x1000 /* 1000T HD capable */
  363. #define MII_ATLX_ESR_1000T_FD_CAPS 0x2000 /* 1000T FD capable */
  364. #define MII_ATLX_ESR_1000X_HD_CAPS 0x4000 /* 1000X HD capable */
  365. #define MII_ATLX_ESR_1000X_FD_CAPS 0x8000 /* 1000X FD capable */
  366. /* ATLX PHY Specific Control Register */
  367. #define MII_ATLX_PSCR_JABBER_DISABLE 0x0001 /* 1=Jabber Func disabled */
  368. #define MII_ATLX_PSCR_POLARITY_REVERSAL 0x0002 /* 1=Polarity Reversal enbld */
  369. #define MII_ATLX_PSCR_SQE_TEST 0x0004 /* 1=SQE Test enabled */
  370. #define MII_ATLX_PSCR_MAC_POWERDOWN 0x0008
  371. #define MII_ATLX_PSCR_CLK125_DISABLE 0x0010 /* 1=CLK125 low
  372. * 0=CLK125 toggling
  373. */
  374. #define MII_ATLX_PSCR_MDI_MANUAL_MODE 0x0000 /* MDI Crossover Mode bits 6:5,
  375. * Manual MDI configuration
  376. */
  377. #define MII_ATLX_PSCR_MDIX_MANUAL_MODE 0x0020 /* Manual MDIX configuration */
  378. #define MII_ATLX_PSCR_AUTO_X_1000T 0x0040 /* 1000BASE-T: Auto crossover
  379. * 100BASE-TX/10BASE-T: MDI
  380. * Mode */
  381. #define MII_ATLX_PSCR_AUTO_X_MODE 0x0060 /* Auto crossover enabled
  382. * all speeds.
  383. */
  384. #define MII_ATLX_PSCR_10BT_EXT_DIST_ENABLE 0x0080 /* 1=Enable Extended
  385. * 10BASE-T distance
  386. * (Lower 10BASE-T RX
  387. * Threshold)
  388. * 0=Normal 10BASE-T RX
  389. * Threshold
  390. */
  391. #define MII_ATLX_PSCR_MII_5BIT_ENABLE 0x0100 /* 1=5-Bit interface in
  392. * 100BASE-TX
  393. * 0=MII interface in
  394. * 100BASE-TX
  395. */
  396. #define MII_ATLX_PSCR_SCRAMBLER_DISABLE 0x0200 /* 1=Scrambler dsbl */
  397. #define MII_ATLX_PSCR_FORCE_LINK_GOOD 0x0400 /* 1=Force link good */
  398. #define MII_ATLX_PSCR_ASSERT_CRS_ON_TX 0x0800 /* 1=Assert CRS on Transmit */
  399. #define MII_ATLX_PSCR_POLARITY_REVERSAL_SHIFT 1
  400. #define MII_ATLX_PSCR_AUTO_X_MODE_SHIFT 5
  401. #define MII_ATLX_PSCR_10BT_EXT_DIST_ENABLE_SHIFT 7
  402. /* ATLX PHY Specific Status Register */
  403. #define MII_ATLX_PSSR_SPD_DPLX_RESOLVED 0x0800 /* 1=Speed & Duplex resolved */
  404. #define MII_ATLX_PSSR_DPLX 0x2000 /* 1=Duplex 0=Half Duplex */
  405. #define MII_ATLX_PSSR_SPEED 0xC000 /* Speed, bits 14:15 */
  406. #define MII_ATLX_PSSR_10MBS 0x0000 /* 00=10Mbs */
  407. #define MII_ATLX_PSSR_100MBS 0x4000 /* 01=100Mbs */
  408. #define MII_ATLX_PSSR_1000MBS 0x8000 /* 10=1000Mbs */
  409. #define MII_DBG_ADDR 0x1D
  410. #define MII_DBG_DATA 0x1E
  411. /* PCI Command Register Bit Definitions */
  412. #define PCI_REG_COMMAND 0x04 /* PCI Command Register */
  413. #define CMD_IO_SPACE 0x0001
  414. #define CMD_MEMORY_SPACE 0x0002
  415. #define CMD_BUS_MASTER 0x0004
  416. /* Wake Up Filter Control */
  417. #define ATLX_WUFC_LNKC 0x00000001 /* Link Status Change Wakeup Enable */
  418. #define ATLX_WUFC_MAG 0x00000002 /* Magic Packet Wakeup Enable */
  419. #define ATLX_WUFC_EX 0x00000004 /* Directed Exact Wakeup Enable */
  420. #define ATLX_WUFC_MC 0x00000008 /* Multicast Wakeup Enable */
  421. #define ATLX_WUFC_BC 0x00000010 /* Broadcast Wakeup Enable */
  422. #define ADVERTISE_10_HALF 0x0001
  423. #define ADVERTISE_10_FULL 0x0002
  424. #define ADVERTISE_100_HALF 0x0004
  425. #define ADVERTISE_100_FULL 0x0008
  426. #define ADVERTISE_1000_HALF 0x0010
  427. #define ADVERTISE_1000_FULL 0x0020
  428. #define AUTONEG_ADVERTISE_10_100_ALL 0x000F /* All 10/100 speeds */
  429. #define AUTONEG_ADVERTISE_10_ALL 0x0003 /* 10Mbps Full & Half speeds */
  430. #define PHY_AUTO_NEG_TIME 45 /* 4.5 Seconds */
  431. #define PHY_FORCE_TIME 20 /* 2.0 Seconds */
  432. /* For checksumming, the sum of all words in the EEPROM should equal 0xBABA */
  433. #define EEPROM_SUM 0xBABA
  434. #define NODE_ADDRESS_SIZE 6
  435. struct atlx_spi_flash_dev {
  436. const char *manu_name; /* manufacturer id */
  437. /* op-code */
  438. u8 cmd_wrsr;
  439. u8 cmd_read;
  440. u8 cmd_program;
  441. u8 cmd_wren;
  442. u8 cmd_wrdi;
  443. u8 cmd_rdsr;
  444. u8 cmd_rdid;
  445. u8 cmd_sector_erase;
  446. u8 cmd_chip_erase;
  447. };
  448. #endif /* ATLX_H */