sky2.h 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968
  1. /*
  2. * Definitions for the new Marvell Yukon 2 driver.
  3. */
  4. #ifndef _SKY2_H
  5. #define _SKY2_H
  6. /* PCI config registers */
  7. enum {
  8. PCI_DEV_REG1 = 0x40,
  9. PCI_DEV_REG2 = 0x44,
  10. PCI_DEV_STATUS = 0x7c,
  11. PCI_DEV_REG3 = 0x80,
  12. PCI_DEV_REG4 = 0x84,
  13. PCI_DEV_REG5 = 0x88,
  14. };
  15. enum {
  16. PEX_DEV_CAP = 0xe4,
  17. PEX_DEV_CTRL = 0xe8,
  18. PEX_DEV_STA = 0xea,
  19. PEX_LNK_STAT = 0xf2,
  20. PEX_UNC_ERR_STAT= 0x104,
  21. };
  22. /* Yukon-2 */
  23. enum pci_dev_reg_1 {
  24. PCI_Y2_PIG_ENA = 1<<31, /* Enable Plug-in-Go (YUKON-2) */
  25. PCI_Y2_DLL_DIS = 1<<30, /* Disable PCI DLL (YUKON-2) */
  26. PCI_Y2_PHY2_COMA = 1<<29, /* Set PHY 2 to Coma Mode (YUKON-2) */
  27. PCI_Y2_PHY1_COMA = 1<<28, /* Set PHY 1 to Coma Mode (YUKON-2) */
  28. PCI_Y2_PHY2_POWD = 1<<27, /* Set PHY 2 to Power Down (YUKON-2) */
  29. PCI_Y2_PHY1_POWD = 1<<26, /* Set PHY 1 to Power Down (YUKON-2) */
  30. };
  31. enum pci_dev_reg_2 {
  32. PCI_VPD_WR_THR = 0xffL<<24, /* Bit 31..24: VPD Write Threshold */
  33. PCI_DEV_SEL = 0x7fL<<17, /* Bit 23..17: EEPROM Device Select */
  34. PCI_VPD_ROM_SZ = 7L<<14, /* Bit 16..14: VPD ROM Size */
  35. PCI_PATCH_DIR = 0xfL<<8, /* Bit 11.. 8: Ext Patches dir 3..0 */
  36. PCI_EXT_PATCHS = 0xfL<<4, /* Bit 7.. 4: Extended Patches 3..0 */
  37. PCI_EN_DUMMY_RD = 1<<3, /* Enable Dummy Read */
  38. PCI_REV_DESC = 1<<2, /* Reverse Desc. Bytes */
  39. PCI_USEDATA64 = 1<<0, /* Use 64Bit Data bus ext */
  40. };
  41. /* PCI_OUR_REG_4 32 bit Our Register 4 (Yukon-ECU only) */
  42. enum pci_dev_reg_4 {
  43. /* (Link Training & Status State Machine) */
  44. P_TIMER_VALUE_MSK = 0xffL<<16, /* Bit 23..16: Timer Value Mask */
  45. /* (Active State Power Management) */
  46. P_FORCE_ASPM_REQUEST = 1<<15, /* Force ASPM Request (A1 only) */
  47. P_ASPM_GPHY_LINK_DOWN = 1<<14, /* GPHY Link Down (A1 only) */
  48. P_ASPM_INT_FIFO_EMPTY = 1<<13, /* Internal FIFO Empty (A1 only) */
  49. P_ASPM_CLKRUN_REQUEST = 1<<12, /* CLKRUN Request (A1 only) */
  50. P_ASPM_FORCE_CLKREQ_ENA = 1<<4, /* Force CLKREQ Enable (A1b only) */
  51. P_ASPM_CLKREQ_PAD_CTL = 1<<3, /* CLKREQ PAD Control (A1 only) */
  52. P_ASPM_A1_MODE_SELECT = 1<<2, /* A1 Mode Select (A1 only) */
  53. P_CLK_GATE_PEX_UNIT_ENA = 1<<1, /* Enable Gate PEX Unit Clock */
  54. P_CLK_GATE_ROOT_COR_ENA = 1<<0, /* Enable Gate Root Core Clock */
  55. P_ASPM_CONTROL_MSK = P_FORCE_ASPM_REQUEST | P_ASPM_GPHY_LINK_DOWN
  56. | P_ASPM_CLKRUN_REQUEST | P_ASPM_INT_FIFO_EMPTY,
  57. };
  58. #define PCI_STATUS_ERROR_BITS (PCI_STATUS_DETECTED_PARITY | \
  59. PCI_STATUS_SIG_SYSTEM_ERROR | \
  60. PCI_STATUS_REC_MASTER_ABORT | \
  61. PCI_STATUS_REC_TARGET_ABORT | \
  62. PCI_STATUS_PARITY)
  63. enum pex_dev_ctrl {
  64. PEX_DC_MAX_RRS_MSK = 7<<12, /* Bit 14..12: Max. Read Request Size */
  65. PEX_DC_EN_NO_SNOOP = 1<<11,/* Enable No Snoop */
  66. PEX_DC_EN_AUX_POW = 1<<10,/* Enable AUX Power */
  67. PEX_DC_EN_PHANTOM = 1<<9, /* Enable Phantom Functions */
  68. PEX_DC_EN_EXT_TAG = 1<<8, /* Enable Extended Tag Field */
  69. PEX_DC_MAX_PLS_MSK = 7<<5, /* Bit 7.. 5: Max. Payload Size Mask */
  70. PEX_DC_EN_REL_ORD = 1<<4, /* Enable Relaxed Ordering */
  71. PEX_DC_EN_UNS_RQ_RP = 1<<3, /* Enable Unsupported Request Reporting */
  72. PEX_DC_EN_FAT_ER_RP = 1<<2, /* Enable Fatal Error Reporting */
  73. PEX_DC_EN_NFA_ER_RP = 1<<1, /* Enable Non-Fatal Error Reporting */
  74. PEX_DC_EN_COR_ER_RP = 1<<0, /* Enable Correctable Error Reporting */
  75. };
  76. #define PEX_DC_MAX_RD_RQ_SIZE(x) (((x)<<12) & PEX_DC_MAX_RRS_MSK)
  77. /* PEX_UNC_ERR_STAT PEX Uncorrectable Errors Status Register (Yukon-2) */
  78. enum pex_err {
  79. PEX_UNSUP_REQ = 1<<20, /* Unsupported Request Error */
  80. PEX_MALFOR_TLP = 1<<18, /* Malformed TLP */
  81. PEX_UNEXP_COMP = 1<<16, /* Unexpected Completion */
  82. PEX_COMP_TO = 1<<14, /* Completion Timeout */
  83. PEX_FLOW_CTRL_P = 1<<13, /* Flow Control Protocol Error */
  84. PEX_POIS_TLP = 1<<12, /* Poisoned TLP */
  85. PEX_DATA_LINK_P = 1<<4, /* Data Link Protocol Error */
  86. PEX_FATAL_ERRORS= (PEX_MALFOR_TLP | PEX_FLOW_CTRL_P | PEX_DATA_LINK_P),
  87. };
  88. enum csr_regs {
  89. B0_RAP = 0x0000,
  90. B0_CTST = 0x0004,
  91. B0_Y2LED = 0x0005,
  92. B0_POWER_CTRL = 0x0007,
  93. B0_ISRC = 0x0008,
  94. B0_IMSK = 0x000c,
  95. B0_HWE_ISRC = 0x0010,
  96. B0_HWE_IMSK = 0x0014,
  97. /* Special ISR registers (Yukon-2 only) */
  98. B0_Y2_SP_ISRC2 = 0x001c,
  99. B0_Y2_SP_ISRC3 = 0x0020,
  100. B0_Y2_SP_EISR = 0x0024,
  101. B0_Y2_SP_LISR = 0x0028,
  102. B0_Y2_SP_ICR = 0x002c,
  103. B2_MAC_1 = 0x0100,
  104. B2_MAC_2 = 0x0108,
  105. B2_MAC_3 = 0x0110,
  106. B2_CONN_TYP = 0x0118,
  107. B2_PMD_TYP = 0x0119,
  108. B2_MAC_CFG = 0x011a,
  109. B2_CHIP_ID = 0x011b,
  110. B2_E_0 = 0x011c,
  111. B2_Y2_CLK_GATE = 0x011d,
  112. B2_Y2_HW_RES = 0x011e,
  113. B2_E_3 = 0x011f,
  114. B2_Y2_CLK_CTRL = 0x0120,
  115. B2_TI_INI = 0x0130,
  116. B2_TI_VAL = 0x0134,
  117. B2_TI_CTRL = 0x0138,
  118. B2_TI_TEST = 0x0139,
  119. B2_TST_CTRL1 = 0x0158,
  120. B2_TST_CTRL2 = 0x0159,
  121. B2_GP_IO = 0x015c,
  122. B2_I2C_CTRL = 0x0160,
  123. B2_I2C_DATA = 0x0164,
  124. B2_I2C_IRQ = 0x0168,
  125. B2_I2C_SW = 0x016c,
  126. B3_RAM_ADDR = 0x0180,
  127. B3_RAM_DATA_LO = 0x0184,
  128. B3_RAM_DATA_HI = 0x0188,
  129. /* RAM Interface Registers */
  130. /* Yukon-2: use RAM_BUFFER() to access the RAM buffer */
  131. /*
  132. * The HW-Spec. calls this registers Timeout Value 0..11. But this names are
  133. * not usable in SW. Please notice these are NOT real timeouts, these are
  134. * the number of qWords transferred continuously.
  135. */
  136. #define RAM_BUFFER(port, reg) (reg | (port <<6))
  137. B3_RI_WTO_R1 = 0x0190,
  138. B3_RI_WTO_XA1 = 0x0191,
  139. B3_RI_WTO_XS1 = 0x0192,
  140. B3_RI_RTO_R1 = 0x0193,
  141. B3_RI_RTO_XA1 = 0x0194,
  142. B3_RI_RTO_XS1 = 0x0195,
  143. B3_RI_WTO_R2 = 0x0196,
  144. B3_RI_WTO_XA2 = 0x0197,
  145. B3_RI_WTO_XS2 = 0x0198,
  146. B3_RI_RTO_R2 = 0x0199,
  147. B3_RI_RTO_XA2 = 0x019a,
  148. B3_RI_RTO_XS2 = 0x019b,
  149. B3_RI_TO_VAL = 0x019c,
  150. B3_RI_CTRL = 0x01a0,
  151. B3_RI_TEST = 0x01a2,
  152. B3_MA_TOINI_RX1 = 0x01b0,
  153. B3_MA_TOINI_RX2 = 0x01b1,
  154. B3_MA_TOINI_TX1 = 0x01b2,
  155. B3_MA_TOINI_TX2 = 0x01b3,
  156. B3_MA_TOVAL_RX1 = 0x01b4,
  157. B3_MA_TOVAL_RX2 = 0x01b5,
  158. B3_MA_TOVAL_TX1 = 0x01b6,
  159. B3_MA_TOVAL_TX2 = 0x01b7,
  160. B3_MA_TO_CTRL = 0x01b8,
  161. B3_MA_TO_TEST = 0x01ba,
  162. B3_MA_RCINI_RX1 = 0x01c0,
  163. B3_MA_RCINI_RX2 = 0x01c1,
  164. B3_MA_RCINI_TX1 = 0x01c2,
  165. B3_MA_RCINI_TX2 = 0x01c3,
  166. B3_MA_RCVAL_RX1 = 0x01c4,
  167. B3_MA_RCVAL_RX2 = 0x01c5,
  168. B3_MA_RCVAL_TX1 = 0x01c6,
  169. B3_MA_RCVAL_TX2 = 0x01c7,
  170. B3_MA_RC_CTRL = 0x01c8,
  171. B3_MA_RC_TEST = 0x01ca,
  172. B3_PA_TOINI_RX1 = 0x01d0,
  173. B3_PA_TOINI_RX2 = 0x01d4,
  174. B3_PA_TOINI_TX1 = 0x01d8,
  175. B3_PA_TOINI_TX2 = 0x01dc,
  176. B3_PA_TOVAL_RX1 = 0x01e0,
  177. B3_PA_TOVAL_RX2 = 0x01e4,
  178. B3_PA_TOVAL_TX1 = 0x01e8,
  179. B3_PA_TOVAL_TX2 = 0x01ec,
  180. B3_PA_CTRL = 0x01f0,
  181. B3_PA_TEST = 0x01f2,
  182. Y2_CFG_SPC = 0x1c00,
  183. };
  184. /* B0_CTST 16 bit Control/Status register */
  185. enum {
  186. Y2_VMAIN_AVAIL = 1<<17,/* VMAIN available (YUKON-2 only) */
  187. Y2_VAUX_AVAIL = 1<<16,/* VAUX available (YUKON-2 only) */
  188. Y2_ASF_ENABLE = 1<<13,/* ASF Unit Enable (YUKON-2 only) */
  189. Y2_ASF_DISABLE = 1<<12,/* ASF Unit Disable (YUKON-2 only) */
  190. Y2_CLK_RUN_ENA = 1<<11,/* CLK_RUN Enable (YUKON-2 only) */
  191. Y2_CLK_RUN_DIS = 1<<10,/* CLK_RUN Disable (YUKON-2 only) */
  192. Y2_LED_STAT_ON = 1<<9, /* Status LED On (YUKON-2 only) */
  193. Y2_LED_STAT_OFF = 1<<8, /* Status LED Off (YUKON-2 only) */
  194. CS_ST_SW_IRQ = 1<<7, /* Set IRQ SW Request */
  195. CS_CL_SW_IRQ = 1<<6, /* Clear IRQ SW Request */
  196. CS_STOP_DONE = 1<<5, /* Stop Master is finished */
  197. CS_STOP_MAST = 1<<4, /* Command Bit to stop the master */
  198. CS_MRST_CLR = 1<<3, /* Clear Master reset */
  199. CS_MRST_SET = 1<<2, /* Set Master reset */
  200. CS_RST_CLR = 1<<1, /* Clear Software reset */
  201. CS_RST_SET = 1, /* Set Software reset */
  202. };
  203. /* B0_LED 8 Bit LED register */
  204. enum {
  205. /* Bit 7.. 2: reserved */
  206. LED_STAT_ON = 1<<1, /* Status LED on */
  207. LED_STAT_OFF = 1, /* Status LED off */
  208. };
  209. /* B0_POWER_CTRL 8 Bit Power Control reg (YUKON only) */
  210. enum {
  211. PC_VAUX_ENA = 1<<7, /* Switch VAUX Enable */
  212. PC_VAUX_DIS = 1<<6, /* Switch VAUX Disable */
  213. PC_VCC_ENA = 1<<5, /* Switch VCC Enable */
  214. PC_VCC_DIS = 1<<4, /* Switch VCC Disable */
  215. PC_VAUX_ON = 1<<3, /* Switch VAUX On */
  216. PC_VAUX_OFF = 1<<2, /* Switch VAUX Off */
  217. PC_VCC_ON = 1<<1, /* Switch VCC On */
  218. PC_VCC_OFF = 1<<0, /* Switch VCC Off */
  219. };
  220. /* B2_IRQM_MSK 32 bit IRQ Moderation Mask */
  221. /* B0_Y2_SP_ISRC2 32 bit Special Interrupt Source Reg 2 */
  222. /* B0_Y2_SP_ISRC3 32 bit Special Interrupt Source Reg 3 */
  223. /* B0_Y2_SP_EISR 32 bit Enter ISR Reg */
  224. /* B0_Y2_SP_LISR 32 bit Leave ISR Reg */
  225. enum {
  226. Y2_IS_HW_ERR = 1<<31, /* Interrupt HW Error */
  227. Y2_IS_STAT_BMU = 1<<30, /* Status BMU Interrupt */
  228. Y2_IS_ASF = 1<<29, /* ASF subsystem Interrupt */
  229. Y2_IS_POLL_CHK = 1<<27, /* Check IRQ from polling unit */
  230. Y2_IS_TWSI_RDY = 1<<26, /* IRQ on end of TWSI Tx */
  231. Y2_IS_IRQ_SW = 1<<25, /* SW forced IRQ */
  232. Y2_IS_TIMINT = 1<<24, /* IRQ from Timer */
  233. Y2_IS_IRQ_PHY2 = 1<<12, /* Interrupt from PHY 2 */
  234. Y2_IS_IRQ_MAC2 = 1<<11, /* Interrupt from MAC 2 */
  235. Y2_IS_CHK_RX2 = 1<<10, /* Descriptor error Rx 2 */
  236. Y2_IS_CHK_TXS2 = 1<<9, /* Descriptor error TXS 2 */
  237. Y2_IS_CHK_TXA2 = 1<<8, /* Descriptor error TXA 2 */
  238. Y2_IS_IRQ_PHY1 = 1<<4, /* Interrupt from PHY 1 */
  239. Y2_IS_IRQ_MAC1 = 1<<3, /* Interrupt from MAC 1 */
  240. Y2_IS_CHK_RX1 = 1<<2, /* Descriptor error Rx 1 */
  241. Y2_IS_CHK_TXS1 = 1<<1, /* Descriptor error TXS 1 */
  242. Y2_IS_CHK_TXA1 = 1<<0, /* Descriptor error TXA 1 */
  243. Y2_IS_BASE = Y2_IS_HW_ERR | Y2_IS_STAT_BMU,
  244. Y2_IS_PORT_1 = Y2_IS_IRQ_PHY1 | Y2_IS_IRQ_MAC1
  245. | Y2_IS_CHK_TXA1 | Y2_IS_CHK_RX1,
  246. Y2_IS_PORT_2 = Y2_IS_IRQ_PHY2 | Y2_IS_IRQ_MAC2
  247. | Y2_IS_CHK_TXA2 | Y2_IS_CHK_RX2,
  248. };
  249. /* B2_IRQM_HWE_MSK 32 bit IRQ Moderation HW Error Mask */
  250. enum {
  251. IS_ERR_MSK = 0x00003fff,/* All Error bits */
  252. IS_IRQ_TIST_OV = 1<<13, /* Time Stamp Timer Overflow (YUKON only) */
  253. IS_IRQ_SENSOR = 1<<12, /* IRQ from Sensor (YUKON only) */
  254. IS_IRQ_MST_ERR = 1<<11, /* IRQ master error detected */
  255. IS_IRQ_STAT = 1<<10, /* IRQ status exception */
  256. IS_NO_STAT_M1 = 1<<9, /* No Rx Status from MAC 1 */
  257. IS_NO_STAT_M2 = 1<<8, /* No Rx Status from MAC 2 */
  258. IS_NO_TIST_M1 = 1<<7, /* No Time Stamp from MAC 1 */
  259. IS_NO_TIST_M2 = 1<<6, /* No Time Stamp from MAC 2 */
  260. IS_RAM_RD_PAR = 1<<5, /* RAM Read Parity Error */
  261. IS_RAM_WR_PAR = 1<<4, /* RAM Write Parity Error */
  262. IS_M1_PAR_ERR = 1<<3, /* MAC 1 Parity Error */
  263. IS_M2_PAR_ERR = 1<<2, /* MAC 2 Parity Error */
  264. IS_R1_PAR_ERR = 1<<1, /* Queue R1 Parity Error */
  265. IS_R2_PAR_ERR = 1<<0, /* Queue R2 Parity Error */
  266. };
  267. /* Hardware error interrupt mask for Yukon 2 */
  268. enum {
  269. Y2_IS_TIST_OV = 1<<29,/* Time Stamp Timer overflow interrupt */
  270. Y2_IS_SENSOR = 1<<28, /* Sensor interrupt */
  271. Y2_IS_MST_ERR = 1<<27, /* Master error interrupt */
  272. Y2_IS_IRQ_STAT = 1<<26, /* Status exception interrupt */
  273. Y2_IS_PCI_EXP = 1<<25, /* PCI-Express interrupt */
  274. Y2_IS_PCI_NEXP = 1<<24, /* PCI-Express error similar to PCI error */
  275. /* Link 2 */
  276. Y2_IS_PAR_RD2 = 1<<13, /* Read RAM parity error interrupt */
  277. Y2_IS_PAR_WR2 = 1<<12, /* Write RAM parity error interrupt */
  278. Y2_IS_PAR_MAC2 = 1<<11, /* MAC hardware fault interrupt */
  279. Y2_IS_PAR_RX2 = 1<<10, /* Parity Error Rx Queue 2 */
  280. Y2_IS_TCP_TXS2 = 1<<9, /* TCP length mismatch sync Tx queue IRQ */
  281. Y2_IS_TCP_TXA2 = 1<<8, /* TCP length mismatch async Tx queue IRQ */
  282. /* Link 1 */
  283. Y2_IS_PAR_RD1 = 1<<5, /* Read RAM parity error interrupt */
  284. Y2_IS_PAR_WR1 = 1<<4, /* Write RAM parity error interrupt */
  285. Y2_IS_PAR_MAC1 = 1<<3, /* MAC hardware fault interrupt */
  286. Y2_IS_PAR_RX1 = 1<<2, /* Parity Error Rx Queue 1 */
  287. Y2_IS_TCP_TXS1 = 1<<1, /* TCP length mismatch sync Tx queue IRQ */
  288. Y2_IS_TCP_TXA1 = 1<<0, /* TCP length mismatch async Tx queue IRQ */
  289. Y2_HWE_L1_MASK = Y2_IS_PAR_RD1 | Y2_IS_PAR_WR1 | Y2_IS_PAR_MAC1 |
  290. Y2_IS_PAR_RX1 | Y2_IS_TCP_TXS1| Y2_IS_TCP_TXA1,
  291. Y2_HWE_L2_MASK = Y2_IS_PAR_RD2 | Y2_IS_PAR_WR2 | Y2_IS_PAR_MAC2 |
  292. Y2_IS_PAR_RX2 | Y2_IS_TCP_TXS2| Y2_IS_TCP_TXA2,
  293. Y2_HWE_ALL_MASK = Y2_IS_TIST_OV | Y2_IS_MST_ERR | Y2_IS_IRQ_STAT |
  294. Y2_IS_PCI_EXP |
  295. Y2_HWE_L1_MASK | Y2_HWE_L2_MASK,
  296. };
  297. /* B28_DPT_CTRL 8 bit Descriptor Poll Timer Ctrl Reg */
  298. enum {
  299. DPT_START = 1<<1,
  300. DPT_STOP = 1<<0,
  301. };
  302. /* B2_TST_CTRL1 8 bit Test Control Register 1 */
  303. enum {
  304. TST_FRC_DPERR_MR = 1<<7, /* force DATAPERR on MST RD */
  305. TST_FRC_DPERR_MW = 1<<6, /* force DATAPERR on MST WR */
  306. TST_FRC_DPERR_TR = 1<<5, /* force DATAPERR on TRG RD */
  307. TST_FRC_DPERR_TW = 1<<4, /* force DATAPERR on TRG WR */
  308. TST_FRC_APERR_M = 1<<3, /* force ADDRPERR on MST */
  309. TST_FRC_APERR_T = 1<<2, /* force ADDRPERR on TRG */
  310. TST_CFG_WRITE_ON = 1<<1, /* Enable Config Reg WR */
  311. TST_CFG_WRITE_OFF= 1<<0, /* Disable Config Reg WR */
  312. };
  313. /* B2_MAC_CFG 8 bit MAC Configuration / Chip Revision */
  314. enum {
  315. CFG_CHIP_R_MSK = 0xf<<4, /* Bit 7.. 4: Chip Revision */
  316. /* Bit 3.. 2: reserved */
  317. CFG_DIS_M2_CLK = 1<<1, /* Disable Clock for 2nd MAC */
  318. CFG_SNG_MAC = 1<<0, /* MAC Config: 0=2 MACs / 1=1 MAC*/
  319. };
  320. /* B2_CHIP_ID 8 bit Chip Identification Number */
  321. enum {
  322. CHIP_ID_GENESIS = 0x0a, /* Chip ID for GENESIS */
  323. CHIP_ID_YUKON = 0xb0, /* Chip ID for YUKON */
  324. CHIP_ID_YUKON_LITE = 0xb1, /* Chip ID for YUKON-Lite (Rev. A1-A3) */
  325. CHIP_ID_YUKON_LP = 0xb2, /* Chip ID for YUKON-LP */
  326. CHIP_ID_YUKON_XL = 0xb3, /* Chip ID for YUKON-2 XL */
  327. CHIP_ID_YUKON_EC_U = 0xb4, /* Chip ID for YUKON-2 EC Ultra */
  328. CHIP_ID_YUKON_EC = 0xb6, /* Chip ID for YUKON-2 EC */
  329. CHIP_ID_YUKON_FE = 0xb7, /* Chip ID for YUKON-2 FE */
  330. CHIP_REV_YU_EC_A1 = 0, /* Chip Rev. for Yukon-EC A1/A0 */
  331. CHIP_REV_YU_EC_A2 = 1, /* Chip Rev. for Yukon-EC A2 */
  332. CHIP_REV_YU_EC_A3 = 2, /* Chip Rev. for Yukon-EC A3 */
  333. };
  334. /* B2_Y2_CLK_GATE 8 bit Clock Gating (Yukon-2 only) */
  335. enum {
  336. Y2_STATUS_LNK2_INAC = 1<<7, /* Status Link 2 inactive (0 = active) */
  337. Y2_CLK_GAT_LNK2_DIS = 1<<6, /* Disable clock gating Link 2 */
  338. Y2_COR_CLK_LNK2_DIS = 1<<5, /* Disable Core clock Link 2 */
  339. Y2_PCI_CLK_LNK2_DIS = 1<<4, /* Disable PCI clock Link 2 */
  340. Y2_STATUS_LNK1_INAC = 1<<3, /* Status Link 1 inactive (0 = active) */
  341. Y2_CLK_GAT_LNK1_DIS = 1<<2, /* Disable clock gating Link 1 */
  342. Y2_COR_CLK_LNK1_DIS = 1<<1, /* Disable Core clock Link 1 */
  343. Y2_PCI_CLK_LNK1_DIS = 1<<0, /* Disable PCI clock Link 1 */
  344. };
  345. /* B2_Y2_HW_RES 8 bit HW Resources (Yukon-2 only) */
  346. enum {
  347. CFG_LED_MODE_MSK = 7<<2, /* Bit 4.. 2: LED Mode Mask */
  348. CFG_LINK_2_AVAIL = 1<<1, /* Link 2 available */
  349. CFG_LINK_1_AVAIL = 1<<0, /* Link 1 available */
  350. };
  351. #define CFG_LED_MODE(x) (((x) & CFG_LED_MODE_MSK) >> 2)
  352. #define CFG_DUAL_MAC_MSK (CFG_LINK_2_AVAIL | CFG_LINK_1_AVAIL)
  353. /* B2_Y2_CLK_CTRL 32 bit Clock Frequency Control Register (Yukon-2/EC) */
  354. enum {
  355. Y2_CLK_DIV_VAL_MSK = 0xff<<16,/* Bit 23..16: Clock Divisor Value */
  356. #define Y2_CLK_DIV_VAL(x) (((x)<<16) & Y2_CLK_DIV_VAL_MSK)
  357. Y2_CLK_DIV_VAL2_MSK = 7<<21, /* Bit 23..21: Clock Divisor Value */
  358. Y2_CLK_SELECT2_MSK = 0x1f<<16,/* Bit 20..16: Clock Select */
  359. #define Y2_CLK_DIV_VAL_2(x) (((x)<<21) & Y2_CLK_DIV_VAL2_MSK)
  360. #define Y2_CLK_SEL_VAL_2(x) (((x)<<16) & Y2_CLK_SELECT2_MSK)
  361. Y2_CLK_DIV_ENA = 1<<1, /* Enable Core Clock Division */
  362. Y2_CLK_DIV_DIS = 1<<0, /* Disable Core Clock Division */
  363. };
  364. /* B2_TI_CTRL 8 bit Timer control */
  365. /* B2_IRQM_CTRL 8 bit IRQ Moderation Timer Control */
  366. enum {
  367. TIM_START = 1<<2, /* Start Timer */
  368. TIM_STOP = 1<<1, /* Stop Timer */
  369. TIM_CLR_IRQ = 1<<0, /* Clear Timer IRQ (!IRQM) */
  370. };
  371. /* B2_TI_TEST 8 Bit Timer Test */
  372. /* B2_IRQM_TEST 8 bit IRQ Moderation Timer Test */
  373. /* B28_DPT_TST 8 bit Descriptor Poll Timer Test Reg */
  374. enum {
  375. TIM_T_ON = 1<<2, /* Test mode on */
  376. TIM_T_OFF = 1<<1, /* Test mode off */
  377. TIM_T_STEP = 1<<0, /* Test step */
  378. };
  379. /* B3_RAM_ADDR 32 bit RAM Address, to read or write */
  380. /* Bit 31..19: reserved */
  381. #define RAM_ADR_RAN 0x0007ffffL /* Bit 18.. 0: RAM Address Range */
  382. /* RAM Interface Registers */
  383. /* B3_RI_CTRL 16 bit RAM Interface Control Register */
  384. enum {
  385. RI_CLR_RD_PERR = 1<<9, /* Clear IRQ RAM Read Parity Err */
  386. RI_CLR_WR_PERR = 1<<8, /* Clear IRQ RAM Write Parity Err*/
  387. RI_RST_CLR = 1<<1, /* Clear RAM Interface Reset */
  388. RI_RST_SET = 1<<0, /* Set RAM Interface Reset */
  389. };
  390. #define SK_RI_TO_53 36 /* RAM interface timeout */
  391. /* Port related registers FIFO, and Arbiter */
  392. #define SK_REG(port,reg) (((port)<<7)+(reg))
  393. /* Transmit Arbiter Registers MAC 1 and 2, use SK_REG() to access */
  394. /* TXA_ITI_INI 32 bit Tx Arb Interval Timer Init Val */
  395. /* TXA_ITI_VAL 32 bit Tx Arb Interval Timer Value */
  396. /* TXA_LIM_INI 32 bit Tx Arb Limit Counter Init Val */
  397. /* TXA_LIM_VAL 32 bit Tx Arb Limit Counter Value */
  398. #define TXA_MAX_VAL 0x00ffffffUL /* Bit 23.. 0: Max TXA Timer/Cnt Val */
  399. /* TXA_CTRL 8 bit Tx Arbiter Control Register */
  400. enum {
  401. TXA_ENA_FSYNC = 1<<7, /* Enable force of sync Tx queue */
  402. TXA_DIS_FSYNC = 1<<6, /* Disable force of sync Tx queue */
  403. TXA_ENA_ALLOC = 1<<5, /* Enable alloc of free bandwidth */
  404. TXA_DIS_ALLOC = 1<<4, /* Disable alloc of free bandwidth */
  405. TXA_START_RC = 1<<3, /* Start sync Rate Control */
  406. TXA_STOP_RC = 1<<2, /* Stop sync Rate Control */
  407. TXA_ENA_ARB = 1<<1, /* Enable Tx Arbiter */
  408. TXA_DIS_ARB = 1<<0, /* Disable Tx Arbiter */
  409. };
  410. /*
  411. * Bank 4 - 5
  412. */
  413. /* Transmit Arbiter Registers MAC 1 and 2, use SK_REG() to access */
  414. enum {
  415. TXA_ITI_INI = 0x0200,/* 32 bit Tx Arb Interval Timer Init Val*/
  416. TXA_ITI_VAL = 0x0204,/* 32 bit Tx Arb Interval Timer Value */
  417. TXA_LIM_INI = 0x0208,/* 32 bit Tx Arb Limit Counter Init Val */
  418. TXA_LIM_VAL = 0x020c,/* 32 bit Tx Arb Limit Counter Value */
  419. TXA_CTRL = 0x0210,/* 8 bit Tx Arbiter Control Register */
  420. TXA_TEST = 0x0211,/* 8 bit Tx Arbiter Test Register */
  421. TXA_STAT = 0x0212,/* 8 bit Tx Arbiter Status Register */
  422. };
  423. enum {
  424. B6_EXT_REG = 0x0300,/* External registers (GENESIS only) */
  425. B7_CFG_SPC = 0x0380,/* copy of the Configuration register */
  426. B8_RQ1_REGS = 0x0400,/* Receive Queue 1 */
  427. B8_RQ2_REGS = 0x0480,/* Receive Queue 2 */
  428. B8_TS1_REGS = 0x0600,/* Transmit sync queue 1 */
  429. B8_TA1_REGS = 0x0680,/* Transmit async queue 1 */
  430. B8_TS2_REGS = 0x0700,/* Transmit sync queue 2 */
  431. B8_TA2_REGS = 0x0780,/* Transmit sync queue 2 */
  432. B16_RAM_REGS = 0x0800,/* RAM Buffer Registers */
  433. };
  434. /* Queue Register Offsets, use Q_ADDR() to access */
  435. enum {
  436. B8_Q_REGS = 0x0400, /* base of Queue registers */
  437. Q_D = 0x00, /* 8*32 bit Current Descriptor */
  438. Q_DA_L = 0x20, /* 32 bit Current Descriptor Address Low dWord */
  439. Q_DA_H = 0x24, /* 32 bit Current Descriptor Address High dWord */
  440. Q_AC_L = 0x28, /* 32 bit Current Address Counter Low dWord */
  441. Q_AC_H = 0x2c, /* 32 bit Current Address Counter High dWord */
  442. Q_BC = 0x30, /* 32 bit Current Byte Counter */
  443. Q_CSR = 0x34, /* 32 bit BMU Control/Status Register */
  444. Q_F = 0x38, /* 32 bit Flag Register */
  445. Q_T1 = 0x3c, /* 32 bit Test Register 1 */
  446. Q_T1_TR = 0x3c, /* 8 bit Test Register 1 Transfer SM */
  447. Q_T1_WR = 0x3d, /* 8 bit Test Register 1 Write Descriptor SM */
  448. Q_T1_RD = 0x3e, /* 8 bit Test Register 1 Read Descriptor SM */
  449. Q_T1_SV = 0x3f, /* 8 bit Test Register 1 Supervisor SM */
  450. Q_T2 = 0x40, /* 32 bit Test Register 2 */
  451. Q_T3 = 0x44, /* 32 bit Test Register 3 */
  452. /* Yukon-2 */
  453. Q_DONE = 0x24, /* 16 bit Done Index (Yukon-2 only) */
  454. Q_WM = 0x40, /* 16 bit FIFO Watermark */
  455. Q_AL = 0x42, /* 8 bit FIFO Alignment */
  456. Q_RSP = 0x44, /* 16 bit FIFO Read Shadow Pointer */
  457. Q_RSL = 0x46, /* 8 bit FIFO Read Shadow Level */
  458. Q_RP = 0x48, /* 8 bit FIFO Read Pointer */
  459. Q_RL = 0x4a, /* 8 bit FIFO Read Level */
  460. Q_WP = 0x4c, /* 8 bit FIFO Write Pointer */
  461. Q_WSP = 0x4d, /* 8 bit FIFO Write Shadow Pointer */
  462. Q_WL = 0x4e, /* 8 bit FIFO Write Level */
  463. Q_WSL = 0x4f, /* 8 bit FIFO Write Shadow Level */
  464. };
  465. #define Q_ADDR(reg, offs) (B8_Q_REGS + (reg) + (offs))
  466. /* Q_F 32 bit Flag Register */
  467. enum {
  468. F_ALM_FULL = 1<<27, /* Rx FIFO: almost full */
  469. F_EMPTY = 1<<27, /* Tx FIFO: empty flag */
  470. F_FIFO_EOF = 1<<26, /* Tag (EOF Flag) bit in FIFO */
  471. F_WM_REACHED = 1<<25, /* Watermark reached */
  472. F_M_RX_RAM_DIS = 1<<24, /* MAC Rx RAM Read Port disable */
  473. F_FIFO_LEVEL = 0x1fL<<16, /* Bit 23..16: # of Qwords in FIFO */
  474. F_WATER_MARK = 0x0007ffL, /* Bit 10.. 0: Watermark */
  475. };
  476. /* Queue Prefetch Unit Offsets, use Y2_QADDR() to address (Yukon-2 only)*/
  477. enum {
  478. Y2_B8_PREF_REGS = 0x0450,
  479. PREF_UNIT_CTRL = 0x00, /* 32 bit Control register */
  480. PREF_UNIT_LAST_IDX = 0x04, /* 16 bit Last Index */
  481. PREF_UNIT_ADDR_LO = 0x08, /* 32 bit List start addr, low part */
  482. PREF_UNIT_ADDR_HI = 0x0c, /* 32 bit List start addr, high part*/
  483. PREF_UNIT_GET_IDX = 0x10, /* 16 bit Get Index */
  484. PREF_UNIT_PUT_IDX = 0x14, /* 16 bit Put Index */
  485. PREF_UNIT_FIFO_WP = 0x20, /* 8 bit FIFO write pointer */
  486. PREF_UNIT_FIFO_RP = 0x24, /* 8 bit FIFO read pointer */
  487. PREF_UNIT_FIFO_WM = 0x28, /* 8 bit FIFO watermark */
  488. PREF_UNIT_FIFO_LEV = 0x2c, /* 8 bit FIFO level */
  489. PREF_UNIT_MASK_IDX = 0x0fff,
  490. };
  491. #define Y2_QADDR(q,reg) (Y2_B8_PREF_REGS + (q) + (reg))
  492. /* RAM Buffer Register Offsets */
  493. enum {
  494. RB_START = 0x00,/* 32 bit RAM Buffer Start Address */
  495. RB_END = 0x04,/* 32 bit RAM Buffer End Address */
  496. RB_WP = 0x08,/* 32 bit RAM Buffer Write Pointer */
  497. RB_RP = 0x0c,/* 32 bit RAM Buffer Read Pointer */
  498. RB_RX_UTPP = 0x10,/* 32 bit Rx Upper Threshold, Pause Packet */
  499. RB_RX_LTPP = 0x14,/* 32 bit Rx Lower Threshold, Pause Packet */
  500. RB_RX_UTHP = 0x18,/* 32 bit Rx Upper Threshold, High Prio */
  501. RB_RX_LTHP = 0x1c,/* 32 bit Rx Lower Threshold, High Prio */
  502. /* 0x10 - 0x1f: reserved at Tx RAM Buffer Registers */
  503. RB_PC = 0x20,/* 32 bit RAM Buffer Packet Counter */
  504. RB_LEV = 0x24,/* 32 bit RAM Buffer Level Register */
  505. RB_CTRL = 0x28,/* 32 bit RAM Buffer Control Register */
  506. RB_TST1 = 0x29,/* 8 bit RAM Buffer Test Register 1 */
  507. RB_TST2 = 0x2a,/* 8 bit RAM Buffer Test Register 2 */
  508. };
  509. /* Receive and Transmit Queues */
  510. enum {
  511. Q_R1 = 0x0000, /* Receive Queue 1 */
  512. Q_R2 = 0x0080, /* Receive Queue 2 */
  513. Q_XS1 = 0x0200, /* Synchronous Transmit Queue 1 */
  514. Q_XA1 = 0x0280, /* Asynchronous Transmit Queue 1 */
  515. Q_XS2 = 0x0300, /* Synchronous Transmit Queue 2 */
  516. Q_XA2 = 0x0380, /* Asynchronous Transmit Queue 2 */
  517. };
  518. /* Different PHY Types */
  519. enum {
  520. PHY_ADDR_MARV = 0,
  521. };
  522. #define RB_ADDR(offs, queue) (B16_RAM_REGS + (queue) + (offs))
  523. enum {
  524. LNK_SYNC_INI = 0x0c30,/* 32 bit Link Sync Cnt Init Value */
  525. LNK_SYNC_VAL = 0x0c34,/* 32 bit Link Sync Cnt Current Value */
  526. LNK_SYNC_CTRL = 0x0c38,/* 8 bit Link Sync Cnt Control Register */
  527. LNK_SYNC_TST = 0x0c39,/* 8 bit Link Sync Cnt Test Register */
  528. LNK_LED_REG = 0x0c3c,/* 8 bit Link LED Register */
  529. /* Receive GMAC FIFO (YUKON and Yukon-2) */
  530. RX_GMF_EA = 0x0c40,/* 32 bit Rx GMAC FIFO End Address */
  531. RX_GMF_AF_THR = 0x0c44,/* 32 bit Rx GMAC FIFO Almost Full Thresh. */
  532. RX_GMF_CTRL_T = 0x0c48,/* 32 bit Rx GMAC FIFO Control/Test */
  533. RX_GMF_FL_MSK = 0x0c4c,/* 32 bit Rx GMAC FIFO Flush Mask */
  534. RX_GMF_FL_THR = 0x0c50,/* 32 bit Rx GMAC FIFO Flush Threshold */
  535. RX_GMF_TR_THR = 0x0c54,/* 32 bit Rx Truncation Threshold (Yukon-2) */
  536. RX_GMF_UP_THR = 0x0c58,/* 8 bit Rx Upper Pause Thr (Yukon-EC_U) */
  537. RX_GMF_LP_THR = 0x0c5a,/* 8 bit Rx Lower Pause Thr (Yukon-EC_U) */
  538. RX_GMF_VLAN = 0x0c5c,/* 32 bit Rx VLAN Type Register (Yukon-2) */
  539. RX_GMF_WP = 0x0c60,/* 32 bit Rx GMAC FIFO Write Pointer */
  540. RX_GMF_WLEV = 0x0c68,/* 32 bit Rx GMAC FIFO Write Level */
  541. RX_GMF_RP = 0x0c70,/* 32 bit Rx GMAC FIFO Read Pointer */
  542. RX_GMF_RLEV = 0x0c78,/* 32 bit Rx GMAC FIFO Read Level */
  543. };
  544. /* Q_BC 32 bit Current Byte Counter */
  545. /* BMU Control Status Registers */
  546. /* B0_R1_CSR 32 bit BMU Ctrl/Stat Rx Queue 1 */
  547. /* B0_R2_CSR 32 bit BMU Ctrl/Stat Rx Queue 2 */
  548. /* B0_XA1_CSR 32 bit BMU Ctrl/Stat Sync Tx Queue 1 */
  549. /* B0_XS1_CSR 32 bit BMU Ctrl/Stat Async Tx Queue 1 */
  550. /* B0_XA2_CSR 32 bit BMU Ctrl/Stat Sync Tx Queue 2 */
  551. /* B0_XS2_CSR 32 bit BMU Ctrl/Stat Async Tx Queue 2 */
  552. /* Q_CSR 32 bit BMU Control/Status Register */
  553. /* Rx BMU Control / Status Registers (Yukon-2) */
  554. enum {
  555. BMU_IDLE = 1<<31, /* BMU Idle State */
  556. BMU_RX_TCP_PKT = 1<<30, /* Rx TCP Packet (when RSS Hash enabled) */
  557. BMU_RX_IP_PKT = 1<<29, /* Rx IP Packet (when RSS Hash enabled) */
  558. BMU_ENA_RX_RSS_HASH = 1<<15, /* Enable Rx RSS Hash */
  559. BMU_DIS_RX_RSS_HASH = 1<<14, /* Disable Rx RSS Hash */
  560. BMU_ENA_RX_CHKSUM = 1<<13, /* Enable Rx TCP/IP Checksum Check */
  561. BMU_DIS_RX_CHKSUM = 1<<12, /* Disable Rx TCP/IP Checksum Check */
  562. BMU_CLR_IRQ_PAR = 1<<11, /* Clear IRQ on Parity errors (Rx) */
  563. BMU_CLR_IRQ_TCP = 1<<11, /* Clear IRQ on TCP segment. error (Tx) */
  564. BMU_CLR_IRQ_CHK = 1<<10, /* Clear IRQ Check */
  565. BMU_STOP = 1<<9, /* Stop Rx/Tx Queue */
  566. BMU_START = 1<<8, /* Start Rx/Tx Queue */
  567. BMU_FIFO_OP_ON = 1<<7, /* FIFO Operational On */
  568. BMU_FIFO_OP_OFF = 1<<6, /* FIFO Operational Off */
  569. BMU_FIFO_ENA = 1<<5, /* Enable FIFO */
  570. BMU_FIFO_RST = 1<<4, /* Reset FIFO */
  571. BMU_OP_ON = 1<<3, /* BMU Operational On */
  572. BMU_OP_OFF = 1<<2, /* BMU Operational Off */
  573. BMU_RST_CLR = 1<<1, /* Clear BMU Reset (Enable) */
  574. BMU_RST_SET = 1<<0, /* Set BMU Reset */
  575. BMU_CLR_RESET = BMU_FIFO_RST | BMU_OP_OFF | BMU_RST_CLR,
  576. BMU_OPER_INIT = BMU_CLR_IRQ_PAR | BMU_CLR_IRQ_CHK | BMU_START |
  577. BMU_FIFO_ENA | BMU_OP_ON,
  578. BMU_WM_DEFAULT = 0x600,
  579. };
  580. /* Tx BMU Control / Status Registers (Yukon-2) */
  581. /* Bit 31: same as for Rx */
  582. enum {
  583. BMU_TX_IPIDINCR_ON = 1<<13, /* Enable IP ID Increment */
  584. BMU_TX_IPIDINCR_OFF = 1<<12, /* Disable IP ID Increment */
  585. BMU_TX_CLR_IRQ_TCP = 1<<11, /* Clear IRQ on TCP segment length mismatch */
  586. };
  587. /* Queue Prefetch Unit Offsets, use Y2_QADDR() to address (Yukon-2 only)*/
  588. /* PREF_UNIT_CTRL 32 bit Prefetch Control register */
  589. enum {
  590. PREF_UNIT_OP_ON = 1<<3, /* prefetch unit operational */
  591. PREF_UNIT_OP_OFF = 1<<2, /* prefetch unit not operational */
  592. PREF_UNIT_RST_CLR = 1<<1, /* Clear Prefetch Unit Reset */
  593. PREF_UNIT_RST_SET = 1<<0, /* Set Prefetch Unit Reset */
  594. };
  595. /* RAM Buffer Register Offsets, use RB_ADDR(Queue, Offs) to access */
  596. /* RB_START 32 bit RAM Buffer Start Address */
  597. /* RB_END 32 bit RAM Buffer End Address */
  598. /* RB_WP 32 bit RAM Buffer Write Pointer */
  599. /* RB_RP 32 bit RAM Buffer Read Pointer */
  600. /* RB_RX_UTPP 32 bit Rx Upper Threshold, Pause Pack */
  601. /* RB_RX_LTPP 32 bit Rx Lower Threshold, Pause Pack */
  602. /* RB_RX_UTHP 32 bit Rx Upper Threshold, High Prio */
  603. /* RB_RX_LTHP 32 bit Rx Lower Threshold, High Prio */
  604. /* RB_PC 32 bit RAM Buffer Packet Counter */
  605. /* RB_LEV 32 bit RAM Buffer Level Register */
  606. #define RB_MSK 0x0007ffff /* Bit 18.. 0: RAM Buffer Pointer Bits */
  607. /* RB_TST2 8 bit RAM Buffer Test Register 2 */
  608. /* RB_TST1 8 bit RAM Buffer Test Register 1 */
  609. /* RB_CTRL 8 bit RAM Buffer Control Register */
  610. enum {
  611. RB_ENA_STFWD = 1<<5, /* Enable Store & Forward */
  612. RB_DIS_STFWD = 1<<4, /* Disable Store & Forward */
  613. RB_ENA_OP_MD = 1<<3, /* Enable Operation Mode */
  614. RB_DIS_OP_MD = 1<<2, /* Disable Operation Mode */
  615. RB_RST_CLR = 1<<1, /* Clear RAM Buf STM Reset */
  616. RB_RST_SET = 1<<0, /* Set RAM Buf STM Reset */
  617. };
  618. /* Transmit GMAC FIFO (YUKON only) */
  619. enum {
  620. TX_GMF_EA = 0x0d40,/* 32 bit Tx GMAC FIFO End Address */
  621. TX_GMF_AE_THR = 0x0d44,/* 32 bit Tx GMAC FIFO Almost Empty Thresh.*/
  622. TX_GMF_CTRL_T = 0x0d48,/* 32 bit Tx GMAC FIFO Control/Test */
  623. TX_GMF_WP = 0x0d60,/* 32 bit Tx GMAC FIFO Write Pointer */
  624. TX_GMF_WSP = 0x0d64,/* 32 bit Tx GMAC FIFO Write Shadow Ptr. */
  625. TX_GMF_WLEV = 0x0d68,/* 32 bit Tx GMAC FIFO Write Level */
  626. TX_GMF_RP = 0x0d70,/* 32 bit Tx GMAC FIFO Read Pointer */
  627. TX_GMF_RSTP = 0x0d74,/* 32 bit Tx GMAC FIFO Restart Pointer */
  628. TX_GMF_RLEV = 0x0d78,/* 32 bit Tx GMAC FIFO Read Level */
  629. };
  630. /* Descriptor Poll Timer Registers */
  631. enum {
  632. B28_DPT_INI = 0x0e00,/* 24 bit Descriptor Poll Timer Init Val */
  633. B28_DPT_VAL = 0x0e04,/* 24 bit Descriptor Poll Timer Curr Val */
  634. B28_DPT_CTRL = 0x0e08,/* 8 bit Descriptor Poll Timer Ctrl Reg */
  635. B28_DPT_TST = 0x0e0a,/* 8 bit Descriptor Poll Timer Test Reg */
  636. };
  637. /* Time Stamp Timer Registers (YUKON only) */
  638. enum {
  639. GMAC_TI_ST_VAL = 0x0e14,/* 32 bit Time Stamp Timer Curr Val */
  640. GMAC_TI_ST_CTRL = 0x0e18,/* 8 bit Time Stamp Timer Ctrl Reg */
  641. GMAC_TI_ST_TST = 0x0e1a,/* 8 bit Time Stamp Timer Test Reg */
  642. };
  643. /* Polling Unit Registers (Yukon-2 only) */
  644. enum {
  645. POLL_CTRL = 0x0e20, /* 32 bit Polling Unit Control Reg */
  646. POLL_LAST_IDX = 0x0e24,/* 16 bit Polling Unit List Last Index */
  647. POLL_LIST_ADDR_LO= 0x0e28,/* 32 bit Poll. List Start Addr (low) */
  648. POLL_LIST_ADDR_HI= 0x0e2c,/* 32 bit Poll. List Start Addr (high) */
  649. };
  650. /* ASF Subsystem Registers (Yukon-2 only) */
  651. enum {
  652. B28_Y2_SMB_CONFIG = 0x0e40,/* 32 bit ASF SMBus Config Register */
  653. B28_Y2_SMB_CSD_REG = 0x0e44,/* 32 bit ASF SMB Control/Status/Data */
  654. B28_Y2_ASF_IRQ_V_BASE=0x0e60,/* 32 bit ASF IRQ Vector Base */
  655. B28_Y2_ASF_STAT_CMD= 0x0e68,/* 32 bit ASF Status and Command Reg */
  656. B28_Y2_ASF_HOST_COM= 0x0e6c,/* 32 bit ASF Host Communication Reg */
  657. B28_Y2_DATA_REG_1 = 0x0e70,/* 32 bit ASF/Host Data Register 1 */
  658. B28_Y2_DATA_REG_2 = 0x0e74,/* 32 bit ASF/Host Data Register 2 */
  659. B28_Y2_DATA_REG_3 = 0x0e78,/* 32 bit ASF/Host Data Register 3 */
  660. B28_Y2_DATA_REG_4 = 0x0e7c,/* 32 bit ASF/Host Data Register 4 */
  661. };
  662. /* Status BMU Registers (Yukon-2 only)*/
  663. enum {
  664. STAT_CTRL = 0x0e80,/* 32 bit Status BMU Control Reg */
  665. STAT_LAST_IDX = 0x0e84,/* 16 bit Status BMU Last Index */
  666. STAT_LIST_ADDR_LO= 0x0e88,/* 32 bit Status List Start Addr (low) */
  667. STAT_LIST_ADDR_HI= 0x0e8c,/* 32 bit Status List Start Addr (high) */
  668. STAT_TXA1_RIDX = 0x0e90,/* 16 bit Status TxA1 Report Index Reg */
  669. STAT_TXS1_RIDX = 0x0e92,/* 16 bit Status TxS1 Report Index Reg */
  670. STAT_TXA2_RIDX = 0x0e94,/* 16 bit Status TxA2 Report Index Reg */
  671. STAT_TXS2_RIDX = 0x0e96,/* 16 bit Status TxS2 Report Index Reg */
  672. STAT_TX_IDX_TH = 0x0e98,/* 16 bit Status Tx Index Threshold Reg */
  673. STAT_PUT_IDX = 0x0e9c,/* 16 bit Status Put Index Reg */
  674. /* FIFO Control/Status Registers (Yukon-2 only)*/
  675. STAT_FIFO_WP = 0x0ea0,/* 8 bit Status FIFO Write Pointer Reg */
  676. STAT_FIFO_RP = 0x0ea4,/* 8 bit Status FIFO Read Pointer Reg */
  677. STAT_FIFO_RSP = 0x0ea6,/* 8 bit Status FIFO Read Shadow Ptr */
  678. STAT_FIFO_LEVEL = 0x0ea8,/* 8 bit Status FIFO Level Reg */
  679. STAT_FIFO_SHLVL = 0x0eaa,/* 8 bit Status FIFO Shadow Level Reg */
  680. STAT_FIFO_WM = 0x0eac,/* 8 bit Status FIFO Watermark Reg */
  681. STAT_FIFO_ISR_WM= 0x0ead,/* 8 bit Status FIFO ISR Watermark Reg */
  682. /* Level and ISR Timer Registers (Yukon-2 only)*/
  683. STAT_LEV_TIMER_INI= 0x0eb0,/* 32 bit Level Timer Init. Value Reg */
  684. STAT_LEV_TIMER_CNT= 0x0eb4,/* 32 bit Level Timer Counter Reg */
  685. STAT_LEV_TIMER_CTRL= 0x0eb8,/* 8 bit Level Timer Control Reg */
  686. STAT_LEV_TIMER_TEST= 0x0eb9,/* 8 bit Level Timer Test Reg */
  687. STAT_TX_TIMER_INI = 0x0ec0,/* 32 bit Tx Timer Init. Value Reg */
  688. STAT_TX_TIMER_CNT = 0x0ec4,/* 32 bit Tx Timer Counter Reg */
  689. STAT_TX_TIMER_CTRL = 0x0ec8,/* 8 bit Tx Timer Control Reg */
  690. STAT_TX_TIMER_TEST = 0x0ec9,/* 8 bit Tx Timer Test Reg */
  691. STAT_ISR_TIMER_INI = 0x0ed0,/* 32 bit ISR Timer Init. Value Reg */
  692. STAT_ISR_TIMER_CNT = 0x0ed4,/* 32 bit ISR Timer Counter Reg */
  693. STAT_ISR_TIMER_CTRL= 0x0ed8,/* 8 bit ISR Timer Control Reg */
  694. STAT_ISR_TIMER_TEST= 0x0ed9,/* 8 bit ISR Timer Test Reg */
  695. };
  696. enum {
  697. LINKLED_OFF = 0x01,
  698. LINKLED_ON = 0x02,
  699. LINKLED_LINKSYNC_OFF = 0x04,
  700. LINKLED_LINKSYNC_ON = 0x08,
  701. LINKLED_BLINK_OFF = 0x10,
  702. LINKLED_BLINK_ON = 0x20,
  703. };
  704. /* GMAC and GPHY Control Registers (YUKON only) */
  705. enum {
  706. GMAC_CTRL = 0x0f00,/* 32 bit GMAC Control Reg */
  707. GPHY_CTRL = 0x0f04,/* 32 bit GPHY Control Reg */
  708. GMAC_IRQ_SRC = 0x0f08,/* 8 bit GMAC Interrupt Source Reg */
  709. GMAC_IRQ_MSK = 0x0f0c,/* 8 bit GMAC Interrupt Mask Reg */
  710. GMAC_LINK_CTRL = 0x0f10,/* 16 bit Link Control Reg */
  711. /* Wake-up Frame Pattern Match Control Registers (YUKON only) */
  712. WOL_REG_OFFS = 0x20,/* HW-Bug: Address is + 0x20 against spec. */
  713. WOL_CTRL_STAT = 0x0f20,/* 16 bit WOL Control/Status Reg */
  714. WOL_MATCH_CTL = 0x0f22,/* 8 bit WOL Match Control Reg */
  715. WOL_MATCH_RES = 0x0f23,/* 8 bit WOL Match Result Reg */
  716. WOL_MAC_ADDR = 0x0f24,/* 32 bit WOL MAC Address */
  717. WOL_PATT_PME = 0x0f2a,/* 8 bit WOL PME Match Enable (Yukon-2) */
  718. WOL_PATT_ASFM = 0x0f2b,/* 8 bit WOL ASF Match Enable (Yukon-2) */
  719. WOL_PATT_RPTR = 0x0f2c,/* 8 bit WOL Pattern Read Pointer */
  720. /* WOL Pattern Length Registers (YUKON only) */
  721. WOL_PATT_LEN_LO = 0x0f30,/* 32 bit WOL Pattern Length 3..0 */
  722. WOL_PATT_LEN_HI = 0x0f34,/* 24 bit WOL Pattern Length 6..4 */
  723. /* WOL Pattern Counter Registers (YUKON only) */
  724. WOL_PATT_CNT_0 = 0x0f38,/* 32 bit WOL Pattern Counter 3..0 */
  725. WOL_PATT_CNT_4 = 0x0f3c,/* 24 bit WOL Pattern Counter 6..4 */
  726. };
  727. enum {
  728. WOL_PATT_RAM_1 = 0x1000,/* WOL Pattern RAM Link 1 */
  729. WOL_PATT_RAM_2 = 0x1400,/* WOL Pattern RAM Link 2 */
  730. };
  731. enum {
  732. BASE_GMAC_1 = 0x2800,/* GMAC 1 registers */
  733. BASE_GMAC_2 = 0x3800,/* GMAC 2 registers */
  734. };
  735. /*
  736. * Marvel-PHY Registers, indirect addressed over GMAC
  737. */
  738. enum {
  739. PHY_MARV_CTRL = 0x00,/* 16 bit r/w PHY Control Register */
  740. PHY_MARV_STAT = 0x01,/* 16 bit r/o PHY Status Register */
  741. PHY_MARV_ID0 = 0x02,/* 16 bit r/o PHY ID0 Register */
  742. PHY_MARV_ID1 = 0x03,/* 16 bit r/o PHY ID1 Register */
  743. PHY_MARV_AUNE_ADV = 0x04,/* 16 bit r/w Auto-Neg. Advertisement */
  744. PHY_MARV_AUNE_LP = 0x05,/* 16 bit r/o Link Part Ability Reg */
  745. PHY_MARV_AUNE_EXP = 0x06,/* 16 bit r/o Auto-Neg. Expansion Reg */
  746. PHY_MARV_NEPG = 0x07,/* 16 bit r/w Next Page Register */
  747. PHY_MARV_NEPG_LP = 0x08,/* 16 bit r/o Next Page Link Partner */
  748. /* Marvel-specific registers */
  749. PHY_MARV_1000T_CTRL = 0x09,/* 16 bit r/w 1000Base-T Control Reg */
  750. PHY_MARV_1000T_STAT = 0x0a,/* 16 bit r/o 1000Base-T Status Reg */
  751. PHY_MARV_EXT_STAT = 0x0f,/* 16 bit r/o Extended Status Reg */
  752. PHY_MARV_PHY_CTRL = 0x10,/* 16 bit r/w PHY Specific Ctrl Reg */
  753. PHY_MARV_PHY_STAT = 0x11,/* 16 bit r/o PHY Specific Stat Reg */
  754. PHY_MARV_INT_MASK = 0x12,/* 16 bit r/w Interrupt Mask Reg */
  755. PHY_MARV_INT_STAT = 0x13,/* 16 bit r/o Interrupt Status Reg */
  756. PHY_MARV_EXT_CTRL = 0x14,/* 16 bit r/w Ext. PHY Specific Ctrl */
  757. PHY_MARV_RXE_CNT = 0x15,/* 16 bit r/w Receive Error Counter */
  758. PHY_MARV_EXT_ADR = 0x16,/* 16 bit r/w Ext. Ad. for Cable Diag. */
  759. PHY_MARV_PORT_IRQ = 0x17,/* 16 bit r/o Port 0 IRQ (88E1111 only) */
  760. PHY_MARV_LED_CTRL = 0x18,/* 16 bit r/w LED Control Reg */
  761. PHY_MARV_LED_OVER = 0x19,/* 16 bit r/w Manual LED Override Reg */
  762. PHY_MARV_EXT_CTRL_2 = 0x1a,/* 16 bit r/w Ext. PHY Specific Ctrl 2 */
  763. PHY_MARV_EXT_P_STAT = 0x1b,/* 16 bit r/w Ext. PHY Spec. Stat Reg */
  764. PHY_MARV_CABLE_DIAG = 0x1c,/* 16 bit r/o Cable Diagnostic Reg */
  765. PHY_MARV_PAGE_ADDR = 0x1d,/* 16 bit r/w Extended Page Address Reg */
  766. PHY_MARV_PAGE_DATA = 0x1e,/* 16 bit r/w Extended Page Data Reg */
  767. /* for 10/100 Fast Ethernet PHY (88E3082 only) */
  768. PHY_MARV_FE_LED_PAR = 0x16,/* 16 bit r/w LED Parallel Select Reg. */
  769. PHY_MARV_FE_LED_SER = 0x17,/* 16 bit r/w LED Stream Select S. LED */
  770. PHY_MARV_FE_VCT_TX = 0x1a,/* 16 bit r/w VCT Reg. for TXP/N Pins */
  771. PHY_MARV_FE_VCT_RX = 0x1b,/* 16 bit r/o VCT Reg. for RXP/N Pins */
  772. PHY_MARV_FE_SPEC_2 = 0x1c,/* 16 bit r/w Specific Control Reg. 2 */
  773. };
  774. enum {
  775. PHY_CT_RESET = 1<<15, /* Bit 15: (sc) clear all PHY related regs */
  776. PHY_CT_LOOP = 1<<14, /* Bit 14: enable Loopback over PHY */
  777. PHY_CT_SPS_LSB = 1<<13, /* Bit 13: Speed select, lower bit */
  778. PHY_CT_ANE = 1<<12, /* Bit 12: Auto-Negotiation Enabled */
  779. PHY_CT_PDOWN = 1<<11, /* Bit 11: Power Down Mode */
  780. PHY_CT_ISOL = 1<<10, /* Bit 10: Isolate Mode */
  781. PHY_CT_RE_CFG = 1<<9, /* Bit 9: (sc) Restart Auto-Negotiation */
  782. PHY_CT_DUP_MD = 1<<8, /* Bit 8: Duplex Mode */
  783. PHY_CT_COL_TST = 1<<7, /* Bit 7: Collision Test enabled */
  784. PHY_CT_SPS_MSB = 1<<6, /* Bit 6: Speed select, upper bit */
  785. };
  786. enum {
  787. PHY_CT_SP1000 = PHY_CT_SPS_MSB, /* enable speed of 1000 Mbps */
  788. PHY_CT_SP100 = PHY_CT_SPS_LSB, /* enable speed of 100 Mbps */
  789. PHY_CT_SP10 = 0, /* enable speed of 10 Mbps */
  790. };
  791. enum {
  792. PHY_ST_EXT_ST = 1<<8, /* Bit 8: Extended Status Present */
  793. PHY_ST_PRE_SUP = 1<<6, /* Bit 6: Preamble Suppression */
  794. PHY_ST_AN_OVER = 1<<5, /* Bit 5: Auto-Negotiation Over */
  795. PHY_ST_REM_FLT = 1<<4, /* Bit 4: Remote Fault Condition Occured */
  796. PHY_ST_AN_CAP = 1<<3, /* Bit 3: Auto-Negotiation Capability */
  797. PHY_ST_LSYNC = 1<<2, /* Bit 2: Link Synchronized */
  798. PHY_ST_JAB_DET = 1<<1, /* Bit 1: Jabber Detected */
  799. PHY_ST_EXT_REG = 1<<0, /* Bit 0: Extended Register available */
  800. };
  801. enum {
  802. PHY_I1_OUI_MSK = 0x3f<<10, /* Bit 15..10: Organization Unique ID */
  803. PHY_I1_MOD_NUM = 0x3f<<4, /* Bit 9.. 4: Model Number */
  804. PHY_I1_REV_MSK = 0xf, /* Bit 3.. 0: Revision Number */
  805. };
  806. /* different Marvell PHY Ids */
  807. enum {
  808. PHY_MARV_ID0_VAL= 0x0141, /* Marvell Unique Identifier */
  809. PHY_BCOM_ID1_A1 = 0x6041,
  810. PHY_BCOM_ID1_B2 = 0x6043,
  811. PHY_BCOM_ID1_C0 = 0x6044,
  812. PHY_BCOM_ID1_C5 = 0x6047,
  813. PHY_MARV_ID1_B0 = 0x0C23, /* Yukon (PHY 88E1011) */
  814. PHY_MARV_ID1_B2 = 0x0C25, /* Yukon-Plus (PHY 88E1011) */
  815. PHY_MARV_ID1_C2 = 0x0CC2, /* Yukon-EC (PHY 88E1111) */
  816. PHY_MARV_ID1_Y2 = 0x0C91, /* Yukon-2 (PHY 88E1112) */
  817. PHY_MARV_ID1_FE = 0x0C83, /* Yukon-FE (PHY 88E3082 Rev.A1) */
  818. PHY_MARV_ID1_ECU= 0x0CB0, /* Yukon-ECU (PHY 88E1149 Rev.B2?) */
  819. };
  820. /* Advertisement register bits */
  821. enum {
  822. PHY_AN_NXT_PG = 1<<15, /* Bit 15: Request Next Page */
  823. PHY_AN_ACK = 1<<14, /* Bit 14: (ro) Acknowledge Received */
  824. PHY_AN_RF = 1<<13, /* Bit 13: Remote Fault Bits */
  825. PHY_AN_PAUSE_ASYM = 1<<11,/* Bit 11: Try for asymmetric */
  826. PHY_AN_PAUSE_CAP = 1<<10, /* Bit 10: Try for pause */
  827. PHY_AN_100BASE4 = 1<<9, /* Bit 9: Try for 100mbps 4k packets */
  828. PHY_AN_100FULL = 1<<8, /* Bit 8: Try for 100mbps full-duplex */
  829. PHY_AN_100HALF = 1<<7, /* Bit 7: Try for 100mbps half-duplex */
  830. PHY_AN_10FULL = 1<<6, /* Bit 6: Try for 10mbps full-duplex */
  831. PHY_AN_10HALF = 1<<5, /* Bit 5: Try for 10mbps half-duplex */
  832. PHY_AN_CSMA = 1<<0, /* Bit 0: Only selector supported */
  833. PHY_AN_SEL = 0x1f, /* Bit 4..0: Selector Field, 00001=Ethernet*/
  834. PHY_AN_FULL = PHY_AN_100FULL | PHY_AN_10FULL | PHY_AN_CSMA,
  835. PHY_AN_ALL = PHY_AN_10HALF | PHY_AN_10FULL |
  836. PHY_AN_100HALF | PHY_AN_100FULL,
  837. };
  838. /***** PHY_BCOM_1000T_STAT 16 bit r/o 1000Base-T Status Reg *****/
  839. /***** PHY_MARV_1000T_STAT 16 bit r/o 1000Base-T Status Reg *****/
  840. enum {
  841. PHY_B_1000S_MSF = 1<<15, /* Bit 15: Master/Slave Fault */
  842. PHY_B_1000S_MSR = 1<<14, /* Bit 14: Master/Slave Result */
  843. PHY_B_1000S_LRS = 1<<13, /* Bit 13: Local Receiver Status */
  844. PHY_B_1000S_RRS = 1<<12, /* Bit 12: Remote Receiver Status */
  845. PHY_B_1000S_LP_FD = 1<<11, /* Bit 11: Link Partner can FD */
  846. PHY_B_1000S_LP_HD = 1<<10, /* Bit 10: Link Partner can HD */
  847. /* Bit 9..8: reserved */
  848. PHY_B_1000S_IEC = 0xff, /* Bit 7..0: Idle Error Count */
  849. };
  850. /** Marvell-Specific */
  851. enum {
  852. PHY_M_AN_NXT_PG = 1<<15, /* Request Next Page */
  853. PHY_M_AN_ACK = 1<<14, /* (ro) Acknowledge Received */
  854. PHY_M_AN_RF = 1<<13, /* Remote Fault */
  855. PHY_M_AN_ASP = 1<<11, /* Asymmetric Pause */
  856. PHY_M_AN_PC = 1<<10, /* MAC Pause implemented */
  857. PHY_M_AN_100_T4 = 1<<9, /* Not cap. 100Base-T4 (always 0) */
  858. PHY_M_AN_100_FD = 1<<8, /* Advertise 100Base-TX Full Duplex */
  859. PHY_M_AN_100_HD = 1<<7, /* Advertise 100Base-TX Half Duplex */
  860. PHY_M_AN_10_FD = 1<<6, /* Advertise 10Base-TX Full Duplex */
  861. PHY_M_AN_10_HD = 1<<5, /* Advertise 10Base-TX Half Duplex */
  862. PHY_M_AN_SEL_MSK =0x1f<<4, /* Bit 4.. 0: Selector Field Mask */
  863. };
  864. /* special defines for FIBER (88E1011S only) */
  865. enum {
  866. PHY_M_AN_ASP_X = 1<<8, /* Asymmetric Pause */
  867. PHY_M_AN_PC_X = 1<<7, /* MAC Pause implemented */
  868. PHY_M_AN_1000X_AHD = 1<<6, /* Advertise 10000Base-X Half Duplex */
  869. PHY_M_AN_1000X_AFD = 1<<5, /* Advertise 10000Base-X Full Duplex */
  870. };
  871. /* Pause Bits (PHY_M_AN_ASP_X and PHY_M_AN_PC_X) encoding */
  872. enum {
  873. PHY_M_P_NO_PAUSE_X = 0<<7,/* Bit 8.. 7: no Pause Mode */
  874. PHY_M_P_SYM_MD_X = 1<<7, /* Bit 8.. 7: symmetric Pause Mode */
  875. PHY_M_P_ASYM_MD_X = 2<<7,/* Bit 8.. 7: asymmetric Pause Mode */
  876. PHY_M_P_BOTH_MD_X = 3<<7,/* Bit 8.. 7: both Pause Mode */
  877. };
  878. /***** PHY_MARV_1000T_CTRL 16 bit r/w 1000Base-T Control Reg *****/
  879. enum {
  880. PHY_M_1000C_TEST = 7<<13,/* Bit 15..13: Test Modes */
  881. PHY_M_1000C_MSE = 1<<12, /* Manual Master/Slave Enable */
  882. PHY_M_1000C_MSC = 1<<11, /* M/S Configuration (1=Master) */
  883. PHY_M_1000C_MPD = 1<<10, /* Multi-Port Device */
  884. PHY_M_1000C_AFD = 1<<9, /* Advertise Full Duplex */
  885. PHY_M_1000C_AHD = 1<<8, /* Advertise Half Duplex */
  886. };
  887. /***** PHY_MARV_PHY_CTRL 16 bit r/w PHY Specific Ctrl Reg *****/
  888. enum {
  889. PHY_M_PC_TX_FFD_MSK = 3<<14,/* Bit 15..14: Tx FIFO Depth Mask */
  890. PHY_M_PC_RX_FFD_MSK = 3<<12,/* Bit 13..12: Rx FIFO Depth Mask */
  891. PHY_M_PC_ASS_CRS_TX = 1<<11, /* Assert CRS on Transmit */
  892. PHY_M_PC_FL_GOOD = 1<<10, /* Force Link Good */
  893. PHY_M_PC_EN_DET_MSK = 3<<8,/* Bit 9.. 8: Energy Detect Mask */
  894. PHY_M_PC_ENA_EXT_D = 1<<7, /* Enable Ext. Distance (10BT) */
  895. PHY_M_PC_MDIX_MSK = 3<<5,/* Bit 6.. 5: MDI/MDIX Config. Mask */
  896. PHY_M_PC_DIS_125CLK = 1<<4, /* Disable 125 CLK */
  897. PHY_M_PC_MAC_POW_UP = 1<<3, /* MAC Power up */
  898. PHY_M_PC_SQE_T_ENA = 1<<2, /* SQE Test Enabled */
  899. PHY_M_PC_POL_R_DIS = 1<<1, /* Polarity Reversal Disabled */
  900. PHY_M_PC_DIS_JABBER = 1<<0, /* Disable Jabber */
  901. };
  902. enum {
  903. PHY_M_PC_EN_DET = 2<<8, /* Energy Detect (Mode 1) */
  904. PHY_M_PC_EN_DET_PLUS = 3<<8, /* Energy Detect Plus (Mode 2) */
  905. };
  906. #define PHY_M_PC_MDI_XMODE(x) (((x)<<5) & PHY_M_PC_MDIX_MSK)
  907. enum {
  908. PHY_M_PC_MAN_MDI = 0, /* 00 = Manual MDI configuration */
  909. PHY_M_PC_MAN_MDIX = 1, /* 01 = Manual MDIX configuration */
  910. PHY_M_PC_ENA_AUTO = 3, /* 11 = Enable Automatic Crossover */
  911. };
  912. /* for 10/100 Fast Ethernet PHY (88E3082 only) */
  913. enum {
  914. PHY_M_PC_ENA_DTE_DT = 1<<15, /* Enable Data Terminal Equ. (DTE) Detect */
  915. PHY_M_PC_ENA_ENE_DT = 1<<14, /* Enable Energy Detect (sense & pulse) */
  916. PHY_M_PC_DIS_NLP_CK = 1<<13, /* Disable Normal Link Puls (NLP) Check */
  917. PHY_M_PC_ENA_LIP_NP = 1<<12, /* Enable Link Partner Next Page Reg. */
  918. PHY_M_PC_DIS_NLP_GN = 1<<11, /* Disable Normal Link Puls Generation */
  919. PHY_M_PC_DIS_SCRAMB = 1<<9, /* Disable Scrambler */
  920. PHY_M_PC_DIS_FEFI = 1<<8, /* Disable Far End Fault Indic. (FEFI) */
  921. PHY_M_PC_SH_TP_SEL = 1<<6, /* Shielded Twisted Pair Select */
  922. PHY_M_PC_RX_FD_MSK = 3<<2,/* Bit 3.. 2: Rx FIFO Depth Mask */
  923. };
  924. /***** PHY_MARV_PHY_STAT 16 bit r/o PHY Specific Status Reg *****/
  925. enum {
  926. PHY_M_PS_SPEED_MSK = 3<<14, /* Bit 15..14: Speed Mask */
  927. PHY_M_PS_SPEED_1000 = 1<<15, /* 10 = 1000 Mbps */
  928. PHY_M_PS_SPEED_100 = 1<<14, /* 01 = 100 Mbps */
  929. PHY_M_PS_SPEED_10 = 0, /* 00 = 10 Mbps */
  930. PHY_M_PS_FULL_DUP = 1<<13, /* Full Duplex */
  931. PHY_M_PS_PAGE_REC = 1<<12, /* Page Received */
  932. PHY_M_PS_SPDUP_RES = 1<<11, /* Speed & Duplex Resolved */
  933. PHY_M_PS_LINK_UP = 1<<10, /* Link Up */
  934. PHY_M_PS_CABLE_MSK = 7<<7, /* Bit 9.. 7: Cable Length Mask */
  935. PHY_M_PS_MDI_X_STAT = 1<<6, /* MDI Crossover Stat (1=MDIX) */
  936. PHY_M_PS_DOWNS_STAT = 1<<5, /* Downshift Status (1=downsh.) */
  937. PHY_M_PS_ENDET_STAT = 1<<4, /* Energy Detect Status (1=act) */
  938. PHY_M_PS_TX_P_EN = 1<<3, /* Tx Pause Enabled */
  939. PHY_M_PS_RX_P_EN = 1<<2, /* Rx Pause Enabled */
  940. PHY_M_PS_POL_REV = 1<<1, /* Polarity Reversed */
  941. PHY_M_PS_JABBER = 1<<0, /* Jabber */
  942. };
  943. #define PHY_M_PS_PAUSE_MSK (PHY_M_PS_TX_P_EN | PHY_M_PS_RX_P_EN)
  944. /* for 10/100 Fast Ethernet PHY (88E3082 only) */
  945. enum {
  946. PHY_M_PS_DTE_DETECT = 1<<15, /* Data Terminal Equipment (DTE) Detected */
  947. PHY_M_PS_RES_SPEED = 1<<14, /* Resolved Speed (1=100 Mbps, 0=10 Mbps */
  948. };
  949. enum {
  950. PHY_M_IS_AN_ERROR = 1<<15, /* Auto-Negotiation Error */
  951. PHY_M_IS_LSP_CHANGE = 1<<14, /* Link Speed Changed */
  952. PHY_M_IS_DUP_CHANGE = 1<<13, /* Duplex Mode Changed */
  953. PHY_M_IS_AN_PR = 1<<12, /* Page Received */
  954. PHY_M_IS_AN_COMPL = 1<<11, /* Auto-Negotiation Completed */
  955. PHY_M_IS_LST_CHANGE = 1<<10, /* Link Status Changed */
  956. PHY_M_IS_SYMB_ERROR = 1<<9, /* Symbol Error */
  957. PHY_M_IS_FALSE_CARR = 1<<8, /* False Carrier */
  958. PHY_M_IS_FIFO_ERROR = 1<<7, /* FIFO Overflow/Underrun Error */
  959. PHY_M_IS_MDI_CHANGE = 1<<6, /* MDI Crossover Changed */
  960. PHY_M_IS_DOWNSH_DET = 1<<5, /* Downshift Detected */
  961. PHY_M_IS_END_CHANGE = 1<<4, /* Energy Detect Changed */
  962. PHY_M_IS_DTE_CHANGE = 1<<2, /* DTE Power Det. Status Changed */
  963. PHY_M_IS_POL_CHANGE = 1<<1, /* Polarity Changed */
  964. PHY_M_IS_JABBER = 1<<0, /* Jabber */
  965. PHY_M_DEF_MSK = PHY_M_IS_LSP_CHANGE | PHY_M_IS_LST_CHANGE
  966. | PHY_M_IS_FIFO_ERROR,
  967. PHY_M_AN_MSK = PHY_M_IS_AN_ERROR | PHY_M_IS_AN_COMPL,
  968. };
  969. /***** PHY_MARV_EXT_CTRL 16 bit r/w Ext. PHY Specific Ctrl *****/
  970. enum {
  971. PHY_M_EC_ENA_BC_EXT = 1<<15, /* Enable Block Carr. Ext. (88E1111 only) */
  972. PHY_M_EC_ENA_LIN_LB = 1<<14, /* Enable Line Loopback (88E1111 only) */
  973. PHY_M_EC_DIS_LINK_P = 1<<12, /* Disable Link Pulses (88E1111 only) */
  974. PHY_M_EC_M_DSC_MSK = 3<<10, /* Bit 11..10: Master Downshift Counter */
  975. /* (88E1011 only) */
  976. PHY_M_EC_S_DSC_MSK = 3<<8,/* Bit 9.. 8: Slave Downshift Counter */
  977. /* (88E1011 only) */
  978. PHY_M_EC_M_DSC_MSK2 = 7<<9,/* Bit 11.. 9: Master Downshift Counter */
  979. /* (88E1111 only) */
  980. PHY_M_EC_DOWN_S_ENA = 1<<8, /* Downshift Enable (88E1111 only) */
  981. /* !!! Errata in spec. (1 = disable) */
  982. PHY_M_EC_RX_TIM_CT = 1<<7, /* RGMII Rx Timing Control*/
  983. PHY_M_EC_MAC_S_MSK = 7<<4,/* Bit 6.. 4: Def. MAC interface speed */
  984. PHY_M_EC_FIB_AN_ENA = 1<<3, /* Fiber Auto-Neg. Enable (88E1011S only) */
  985. PHY_M_EC_DTE_D_ENA = 1<<2, /* DTE Detect Enable (88E1111 only) */
  986. PHY_M_EC_TX_TIM_CT = 1<<1, /* RGMII Tx Timing Control */
  987. PHY_M_EC_TRANS_DIS = 1<<0, /* Transmitter Disable (88E1111 only) */};
  988. #define PHY_M_EC_M_DSC(x) ((x)<<10 & PHY_M_EC_M_DSC_MSK)
  989. /* 00=1x; 01=2x; 10=3x; 11=4x */
  990. #define PHY_M_EC_S_DSC(x) ((x)<<8 & PHY_M_EC_S_DSC_MSK)
  991. /* 00=dis; 01=1x; 10=2x; 11=3x */
  992. #define PHY_M_EC_DSC_2(x) ((x)<<9 & PHY_M_EC_M_DSC_MSK2)
  993. /* 000=1x; 001=2x; 010=3x; 011=4x */
  994. #define PHY_M_EC_MAC_S(x) ((x)<<4 & PHY_M_EC_MAC_S_MSK)
  995. /* 01X=0; 110=2.5; 111=25 (MHz) */
  996. /* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */
  997. enum {
  998. PHY_M_PC_DIS_LINK_Pa = 1<<15,/* Disable Link Pulses */
  999. PHY_M_PC_DSC_MSK = 7<<12,/* Bit 14..12: Downshift Counter */
  1000. PHY_M_PC_DOWN_S_ENA = 1<<11,/* Downshift Enable */
  1001. };
  1002. /* !!! Errata in spec. (1 = disable) */
  1003. #define PHY_M_PC_DSC(x) (((x)<<12) & PHY_M_PC_DSC_MSK)
  1004. /* 100=5x; 101=6x; 110=7x; 111=8x */
  1005. enum {
  1006. MAC_TX_CLK_0_MHZ = 2,
  1007. MAC_TX_CLK_2_5_MHZ = 6,
  1008. MAC_TX_CLK_25_MHZ = 7,
  1009. };
  1010. /***** PHY_MARV_LED_CTRL 16 bit r/w LED Control Reg *****/
  1011. enum {
  1012. PHY_M_LEDC_DIS_LED = 1<<15, /* Disable LED */
  1013. PHY_M_LEDC_PULS_MSK = 7<<12,/* Bit 14..12: Pulse Stretch Mask */
  1014. PHY_M_LEDC_F_INT = 1<<11, /* Force Interrupt */
  1015. PHY_M_LEDC_BL_R_MSK = 7<<8,/* Bit 10.. 8: Blink Rate Mask */
  1016. PHY_M_LEDC_DP_C_LSB = 1<<7, /* Duplex Control (LSB, 88E1111 only) */
  1017. PHY_M_LEDC_TX_C_LSB = 1<<6, /* Tx Control (LSB, 88E1111 only) */
  1018. PHY_M_LEDC_LK_C_MSK = 7<<3,/* Bit 5.. 3: Link Control Mask */
  1019. /* (88E1111 only) */
  1020. };
  1021. enum {
  1022. PHY_M_LEDC_LINK_MSK = 3<<3,/* Bit 4.. 3: Link Control Mask */
  1023. /* (88E1011 only) */
  1024. PHY_M_LEDC_DP_CTRL = 1<<2, /* Duplex Control */
  1025. PHY_M_LEDC_DP_C_MSB = 1<<2, /* Duplex Control (MSB, 88E1111 only) */
  1026. PHY_M_LEDC_RX_CTRL = 1<<1, /* Rx Activity / Link */
  1027. PHY_M_LEDC_TX_CTRL = 1<<0, /* Tx Activity / Link */
  1028. PHY_M_LEDC_TX_C_MSB = 1<<0, /* Tx Control (MSB, 88E1111 only) */
  1029. };
  1030. #define PHY_M_LED_PULS_DUR(x) (((x)<<12) & PHY_M_LEDC_PULS_MSK)
  1031. /***** PHY_MARV_PHY_STAT (page 3)16 bit r/w Polarity Control Reg. *****/
  1032. enum {
  1033. PHY_M_POLC_LS1M_MSK = 0xf<<12, /* Bit 15..12: LOS,STAT1 Mix % Mask */
  1034. PHY_M_POLC_IS0M_MSK = 0xf<<8, /* Bit 11.. 8: INIT,STAT0 Mix % Mask */
  1035. PHY_M_POLC_LOS_MSK = 0x3<<6, /* Bit 7.. 6: LOS Pol. Ctrl. Mask */
  1036. PHY_M_POLC_INIT_MSK = 0x3<<4, /* Bit 5.. 4: INIT Pol. Ctrl. Mask */
  1037. PHY_M_POLC_STA1_MSK = 0x3<<2, /* Bit 3.. 2: STAT1 Pol. Ctrl. Mask */
  1038. PHY_M_POLC_STA0_MSK = 0x3, /* Bit 1.. 0: STAT0 Pol. Ctrl. Mask */
  1039. };
  1040. #define PHY_M_POLC_LS1_P_MIX(x) (((x)<<12) & PHY_M_POLC_LS1M_MSK)
  1041. #define PHY_M_POLC_IS0_P_MIX(x) (((x)<<8) & PHY_M_POLC_IS0M_MSK)
  1042. #define PHY_M_POLC_LOS_CTRL(x) (((x)<<6) & PHY_M_POLC_LOS_MSK)
  1043. #define PHY_M_POLC_INIT_CTRL(x) (((x)<<4) & PHY_M_POLC_INIT_MSK)
  1044. #define PHY_M_POLC_STA1_CTRL(x) (((x)<<2) & PHY_M_POLC_STA1_MSK)
  1045. #define PHY_M_POLC_STA0_CTRL(x) (((x)<<0) & PHY_M_POLC_STA0_MSK)
  1046. enum {
  1047. PULS_NO_STR = 0,/* no pulse stretching */
  1048. PULS_21MS = 1,/* 21 ms to 42 ms */
  1049. PULS_42MS = 2,/* 42 ms to 84 ms */
  1050. PULS_84MS = 3,/* 84 ms to 170 ms */
  1051. PULS_170MS = 4,/* 170 ms to 340 ms */
  1052. PULS_340MS = 5,/* 340 ms to 670 ms */
  1053. PULS_670MS = 6,/* 670 ms to 1.3 s */
  1054. PULS_1300MS = 7,/* 1.3 s to 2.7 s */
  1055. };
  1056. #define PHY_M_LED_BLINK_RT(x) (((x)<<8) & PHY_M_LEDC_BL_R_MSK)
  1057. enum {
  1058. BLINK_42MS = 0,/* 42 ms */
  1059. BLINK_84MS = 1,/* 84 ms */
  1060. BLINK_170MS = 2,/* 170 ms */
  1061. BLINK_340MS = 3,/* 340 ms */
  1062. BLINK_670MS = 4,/* 670 ms */
  1063. };
  1064. /***** PHY_MARV_LED_OVER 16 bit r/w Manual LED Override Reg *****/
  1065. #define PHY_M_LED_MO_SGMII(x) ((x)<<14) /* Bit 15..14: SGMII AN Timer */
  1066. /* Bit 13..12: reserved */
  1067. #define PHY_M_LED_MO_DUP(x) ((x)<<10) /* Bit 11..10: Duplex */
  1068. #define PHY_M_LED_MO_10(x) ((x)<<8) /* Bit 9.. 8: Link 10 */
  1069. #define PHY_M_LED_MO_100(x) ((x)<<6) /* Bit 7.. 6: Link 100 */
  1070. #define PHY_M_LED_MO_1000(x) ((x)<<4) /* Bit 5.. 4: Link 1000 */
  1071. #define PHY_M_LED_MO_RX(x) ((x)<<2) /* Bit 3.. 2: Rx */
  1072. #define PHY_M_LED_MO_TX(x) ((x)<<0) /* Bit 1.. 0: Tx */
  1073. enum {
  1074. MO_LED_NORM = 0,
  1075. MO_LED_BLINK = 1,
  1076. MO_LED_OFF = 2,
  1077. MO_LED_ON = 3,
  1078. };
  1079. /***** PHY_MARV_EXT_CTRL_2 16 bit r/w Ext. PHY Specific Ctrl 2 *****/
  1080. enum {
  1081. PHY_M_EC2_FI_IMPED = 1<<6, /* Fiber Input Impedance */
  1082. PHY_M_EC2_FO_IMPED = 1<<5, /* Fiber Output Impedance */
  1083. PHY_M_EC2_FO_M_CLK = 1<<4, /* Fiber Mode Clock Enable */
  1084. PHY_M_EC2_FO_BOOST = 1<<3, /* Fiber Output Boost */
  1085. PHY_M_EC2_FO_AM_MSK = 7,/* Bit 2.. 0: Fiber Output Amplitude */
  1086. };
  1087. /***** PHY_MARV_EXT_P_STAT 16 bit r/w Ext. PHY Specific Status *****/
  1088. enum {
  1089. PHY_M_FC_AUTO_SEL = 1<<15, /* Fiber/Copper Auto Sel. Dis. */
  1090. PHY_M_FC_AN_REG_ACC = 1<<14, /* Fiber/Copper AN Reg. Access */
  1091. PHY_M_FC_RESOLUTION = 1<<13, /* Fiber/Copper Resolution */
  1092. PHY_M_SER_IF_AN_BP = 1<<12, /* Ser. IF AN Bypass Enable */
  1093. PHY_M_SER_IF_BP_ST = 1<<11, /* Ser. IF AN Bypass Status */
  1094. PHY_M_IRQ_POLARITY = 1<<10, /* IRQ polarity */
  1095. PHY_M_DIS_AUT_MED = 1<<9, /* Disable Aut. Medium Reg. Selection */
  1096. /* (88E1111 only) */
  1097. PHY_M_UNDOC1 = 1<<7, /* undocumented bit !! */
  1098. PHY_M_DTE_POW_STAT = 1<<4, /* DTE Power Status (88E1111 only) */
  1099. PHY_M_MODE_MASK = 0xf, /* Bit 3.. 0: copy of HWCFG MODE[3:0] */
  1100. };
  1101. /* for 10/100 Fast Ethernet PHY (88E3082 only) */
  1102. /***** PHY_MARV_FE_LED_PAR 16 bit r/w LED Parallel Select Reg. *****/
  1103. /* Bit 15..12: reserved (used internally) */
  1104. enum {
  1105. PHY_M_FELP_LED2_MSK = 0xf<<8, /* Bit 11.. 8: LED2 Mask (LINK) */
  1106. PHY_M_FELP_LED1_MSK = 0xf<<4, /* Bit 7.. 4: LED1 Mask (ACT) */
  1107. PHY_M_FELP_LED0_MSK = 0xf, /* Bit 3.. 0: LED0 Mask (SPEED) */
  1108. };
  1109. #define PHY_M_FELP_LED2_CTRL(x) (((x)<<8) & PHY_M_FELP_LED2_MSK)
  1110. #define PHY_M_FELP_LED1_CTRL(x) (((x)<<4) & PHY_M_FELP_LED1_MSK)
  1111. #define PHY_M_FELP_LED0_CTRL(x) (((x)<<0) & PHY_M_FELP_LED0_MSK)
  1112. enum {
  1113. LED_PAR_CTRL_COLX = 0x00,
  1114. LED_PAR_CTRL_ERROR = 0x01,
  1115. LED_PAR_CTRL_DUPLEX = 0x02,
  1116. LED_PAR_CTRL_DP_COL = 0x03,
  1117. LED_PAR_CTRL_SPEED = 0x04,
  1118. LED_PAR_CTRL_LINK = 0x05,
  1119. LED_PAR_CTRL_TX = 0x06,
  1120. LED_PAR_CTRL_RX = 0x07,
  1121. LED_PAR_CTRL_ACT = 0x08,
  1122. LED_PAR_CTRL_LNK_RX = 0x09,
  1123. LED_PAR_CTRL_LNK_AC = 0x0a,
  1124. LED_PAR_CTRL_ACT_BL = 0x0b,
  1125. LED_PAR_CTRL_TX_BL = 0x0c,
  1126. LED_PAR_CTRL_RX_BL = 0x0d,
  1127. LED_PAR_CTRL_COL_BL = 0x0e,
  1128. LED_PAR_CTRL_INACT = 0x0f
  1129. };
  1130. /*****,PHY_MARV_FE_SPEC_2 16 bit r/w Specific Control Reg. 2 *****/
  1131. enum {
  1132. PHY_M_FESC_DIS_WAIT = 1<<2, /* Disable TDR Waiting Period */
  1133. PHY_M_FESC_ENA_MCLK = 1<<1, /* Enable MAC Rx Clock in sleep mode */
  1134. PHY_M_FESC_SEL_CL_A = 1<<0, /* Select Class A driver (100B-TX) */
  1135. };
  1136. /* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */
  1137. /***** PHY_MARV_PHY_CTRL (page 2) 16 bit r/w MAC Specific Ctrl *****/
  1138. enum {
  1139. PHY_M_MAC_MD_MSK = 7<<7, /* Bit 9.. 7: Mode Select Mask */
  1140. PHY_M_MAC_MD_AUTO = 3,/* Auto Copper/1000Base-X */
  1141. PHY_M_MAC_MD_COPPER = 5,/* Copper only */
  1142. PHY_M_MAC_MD_1000BX = 7,/* 1000Base-X only */
  1143. };
  1144. #define PHY_M_MAC_MODE_SEL(x) (((x)<<7) & PHY_M_MAC_MD_MSK)
  1145. /***** PHY_MARV_PHY_CTRL (page 3) 16 bit r/w LED Control Reg. *****/
  1146. enum {
  1147. PHY_M_LEDC_LOS_MSK = 0xf<<12,/* Bit 15..12: LOS LED Ctrl. Mask */
  1148. PHY_M_LEDC_INIT_MSK = 0xf<<8, /* Bit 11.. 8: INIT LED Ctrl. Mask */
  1149. PHY_M_LEDC_STA1_MSK = 0xf<<4,/* Bit 7.. 4: STAT1 LED Ctrl. Mask */
  1150. PHY_M_LEDC_STA0_MSK = 0xf, /* Bit 3.. 0: STAT0 LED Ctrl. Mask */
  1151. };
  1152. #define PHY_M_LEDC_LOS_CTRL(x) (((x)<<12) & PHY_M_LEDC_LOS_MSK)
  1153. #define PHY_M_LEDC_INIT_CTRL(x) (((x)<<8) & PHY_M_LEDC_INIT_MSK)
  1154. #define PHY_M_LEDC_STA1_CTRL(x) (((x)<<4) & PHY_M_LEDC_STA1_MSK)
  1155. #define PHY_M_LEDC_STA0_CTRL(x) (((x)<<0) & PHY_M_LEDC_STA0_MSK)
  1156. /* GMAC registers */
  1157. /* Port Registers */
  1158. enum {
  1159. GM_GP_STAT = 0x0000, /* 16 bit r/o General Purpose Status */
  1160. GM_GP_CTRL = 0x0004, /* 16 bit r/w General Purpose Control */
  1161. GM_TX_CTRL = 0x0008, /* 16 bit r/w Transmit Control Reg. */
  1162. GM_RX_CTRL = 0x000c, /* 16 bit r/w Receive Control Reg. */
  1163. GM_TX_FLOW_CTRL = 0x0010, /* 16 bit r/w Transmit Flow-Control */
  1164. GM_TX_PARAM = 0x0014, /* 16 bit r/w Transmit Parameter Reg. */
  1165. GM_SERIAL_MODE = 0x0018, /* 16 bit r/w Serial Mode Register */
  1166. /* Source Address Registers */
  1167. GM_SRC_ADDR_1L = 0x001c, /* 16 bit r/w Source Address 1 (low) */
  1168. GM_SRC_ADDR_1M = 0x0020, /* 16 bit r/w Source Address 1 (middle) */
  1169. GM_SRC_ADDR_1H = 0x0024, /* 16 bit r/w Source Address 1 (high) */
  1170. GM_SRC_ADDR_2L = 0x0028, /* 16 bit r/w Source Address 2 (low) */
  1171. GM_SRC_ADDR_2M = 0x002c, /* 16 bit r/w Source Address 2 (middle) */
  1172. GM_SRC_ADDR_2H = 0x0030, /* 16 bit r/w Source Address 2 (high) */
  1173. /* Multicast Address Hash Registers */
  1174. GM_MC_ADDR_H1 = 0x0034, /* 16 bit r/w Multicast Address Hash 1 */
  1175. GM_MC_ADDR_H2 = 0x0038, /* 16 bit r/w Multicast Address Hash 2 */
  1176. GM_MC_ADDR_H3 = 0x003c, /* 16 bit r/w Multicast Address Hash 3 */
  1177. GM_MC_ADDR_H4 = 0x0040, /* 16 bit r/w Multicast Address Hash 4 */
  1178. /* Interrupt Source Registers */
  1179. GM_TX_IRQ_SRC = 0x0044, /* 16 bit r/o Tx Overflow IRQ Source */
  1180. GM_RX_IRQ_SRC = 0x0048, /* 16 bit r/o Rx Overflow IRQ Source */
  1181. GM_TR_IRQ_SRC = 0x004c, /* 16 bit r/o Tx/Rx Over. IRQ Source */
  1182. /* Interrupt Mask Registers */
  1183. GM_TX_IRQ_MSK = 0x0050, /* 16 bit r/w Tx Overflow IRQ Mask */
  1184. GM_RX_IRQ_MSK = 0x0054, /* 16 bit r/w Rx Overflow IRQ Mask */
  1185. GM_TR_IRQ_MSK = 0x0058, /* 16 bit r/w Tx/Rx Over. IRQ Mask */
  1186. /* Serial Management Interface (SMI) Registers */
  1187. GM_SMI_CTRL = 0x0080, /* 16 bit r/w SMI Control Register */
  1188. GM_SMI_DATA = 0x0084, /* 16 bit r/w SMI Data Register */
  1189. GM_PHY_ADDR = 0x0088, /* 16 bit r/w GPHY Address Register */
  1190. /* MIB Counters */
  1191. GM_MIB_CNT_BASE = 0x0100, /* Base Address of MIB Counters */
  1192. GM_MIB_CNT_END = 0x025C, /* Last MIB counter */
  1193. };
  1194. /*
  1195. * MIB Counters base address definitions (low word) -
  1196. * use offset 4 for access to high word (32 bit r/o)
  1197. */
  1198. enum {
  1199. GM_RXF_UC_OK = GM_MIB_CNT_BASE + 0, /* Unicast Frames Received OK */
  1200. GM_RXF_BC_OK = GM_MIB_CNT_BASE + 8, /* Broadcast Frames Received OK */
  1201. GM_RXF_MPAUSE = GM_MIB_CNT_BASE + 16, /* Pause MAC Ctrl Frames Received */
  1202. GM_RXF_MC_OK = GM_MIB_CNT_BASE + 24, /* Multicast Frames Received OK */
  1203. GM_RXF_FCS_ERR = GM_MIB_CNT_BASE + 32, /* Rx Frame Check Seq. Error */
  1204. GM_RXO_OK_LO = GM_MIB_CNT_BASE + 48, /* Octets Received OK Low */
  1205. GM_RXO_OK_HI = GM_MIB_CNT_BASE + 56, /* Octets Received OK High */
  1206. GM_RXO_ERR_LO = GM_MIB_CNT_BASE + 64, /* Octets Received Invalid Low */
  1207. GM_RXO_ERR_HI = GM_MIB_CNT_BASE + 72, /* Octets Received Invalid High */
  1208. GM_RXF_SHT = GM_MIB_CNT_BASE + 80, /* Frames <64 Byte Received OK */
  1209. GM_RXE_FRAG = GM_MIB_CNT_BASE + 88, /* Frames <64 Byte Received with FCS Err */
  1210. GM_RXF_64B = GM_MIB_CNT_BASE + 96, /* 64 Byte Rx Frame */
  1211. GM_RXF_127B = GM_MIB_CNT_BASE + 104,/* 65-127 Byte Rx Frame */
  1212. GM_RXF_255B = GM_MIB_CNT_BASE + 112,/* 128-255 Byte Rx Frame */
  1213. GM_RXF_511B = GM_MIB_CNT_BASE + 120,/* 256-511 Byte Rx Frame */
  1214. GM_RXF_1023B = GM_MIB_CNT_BASE + 128,/* 512-1023 Byte Rx Frame */
  1215. GM_RXF_1518B = GM_MIB_CNT_BASE + 136,/* 1024-1518 Byte Rx Frame */
  1216. GM_RXF_MAX_SZ = GM_MIB_CNT_BASE + 144,/* 1519-MaxSize Byte Rx Frame */
  1217. GM_RXF_LNG_ERR = GM_MIB_CNT_BASE + 152,/* Rx Frame too Long Error */
  1218. GM_RXF_JAB_PKT = GM_MIB_CNT_BASE + 160,/* Rx Jabber Packet Frame */
  1219. GM_RXE_FIFO_OV = GM_MIB_CNT_BASE + 176,/* Rx FIFO overflow Event */
  1220. GM_TXF_UC_OK = GM_MIB_CNT_BASE + 192,/* Unicast Frames Xmitted OK */
  1221. GM_TXF_BC_OK = GM_MIB_CNT_BASE + 200,/* Broadcast Frames Xmitted OK */
  1222. GM_TXF_MPAUSE = GM_MIB_CNT_BASE + 208,/* Pause MAC Ctrl Frames Xmitted */
  1223. GM_TXF_MC_OK = GM_MIB_CNT_BASE + 216,/* Multicast Frames Xmitted OK */
  1224. GM_TXO_OK_LO = GM_MIB_CNT_BASE + 224,/* Octets Transmitted OK Low */
  1225. GM_TXO_OK_HI = GM_MIB_CNT_BASE + 232,/* Octets Transmitted OK High */
  1226. GM_TXF_64B = GM_MIB_CNT_BASE + 240,/* 64 Byte Tx Frame */
  1227. GM_TXF_127B = GM_MIB_CNT_BASE + 248,/* 65-127 Byte Tx Frame */
  1228. GM_TXF_255B = GM_MIB_CNT_BASE + 256,/* 128-255 Byte Tx Frame */
  1229. GM_TXF_511B = GM_MIB_CNT_BASE + 264,/* 256-511 Byte Tx Frame */
  1230. GM_TXF_1023B = GM_MIB_CNT_BASE + 272,/* 512-1023 Byte Tx Frame */
  1231. GM_TXF_1518B = GM_MIB_CNT_BASE + 280,/* 1024-1518 Byte Tx Frame */
  1232. GM_TXF_MAX_SZ = GM_MIB_CNT_BASE + 288,/* 1519-MaxSize Byte Tx Frame */
  1233. GM_TXF_COL = GM_MIB_CNT_BASE + 304,/* Tx Collision */
  1234. GM_TXF_LAT_COL = GM_MIB_CNT_BASE + 312,/* Tx Late Collision */
  1235. GM_TXF_ABO_COL = GM_MIB_CNT_BASE + 320,/* Tx aborted due to Exces. Col. */
  1236. GM_TXF_MUL_COL = GM_MIB_CNT_BASE + 328,/* Tx Multiple Collision */
  1237. GM_TXF_SNG_COL = GM_MIB_CNT_BASE + 336,/* Tx Single Collision */
  1238. GM_TXE_FIFO_UR = GM_MIB_CNT_BASE + 344,/* Tx FIFO Underrun Event */
  1239. };
  1240. /* GMAC Bit Definitions */
  1241. /* GM_GP_STAT 16 bit r/o General Purpose Status Register */
  1242. enum {
  1243. GM_GPSR_SPEED = 1<<15, /* Bit 15: Port Speed (1 = 100 Mbps) */
  1244. GM_GPSR_DUPLEX = 1<<14, /* Bit 14: Duplex Mode (1 = Full) */
  1245. GM_GPSR_FC_TX_DIS = 1<<13, /* Bit 13: Tx Flow-Control Mode Disabled */
  1246. GM_GPSR_LINK_UP = 1<<12, /* Bit 12: Link Up Status */
  1247. GM_GPSR_PAUSE = 1<<11, /* Bit 11: Pause State */
  1248. GM_GPSR_TX_ACTIVE = 1<<10, /* Bit 10: Tx in Progress */
  1249. GM_GPSR_EXC_COL = 1<<9, /* Bit 9: Excessive Collisions Occured */
  1250. GM_GPSR_LAT_COL = 1<<8, /* Bit 8: Late Collisions Occured */
  1251. GM_GPSR_PHY_ST_CH = 1<<5, /* Bit 5: PHY Status Change */
  1252. GM_GPSR_GIG_SPEED = 1<<4, /* Bit 4: Gigabit Speed (1 = 1000 Mbps) */
  1253. GM_GPSR_PART_MODE = 1<<3, /* Bit 3: Partition mode */
  1254. GM_GPSR_FC_RX_DIS = 1<<2, /* Bit 2: Rx Flow-Control Mode Disabled */
  1255. GM_GPSR_PROM_EN = 1<<1, /* Bit 1: Promiscuous Mode Enabled */
  1256. };
  1257. /* GM_GP_CTRL 16 bit r/w General Purpose Control Register */
  1258. enum {
  1259. GM_GPCR_PROM_ENA = 1<<14, /* Bit 14: Enable Promiscuous Mode */
  1260. GM_GPCR_FC_TX_DIS = 1<<13, /* Bit 13: Disable Tx Flow-Control Mode */
  1261. GM_GPCR_TX_ENA = 1<<12, /* Bit 12: Enable Transmit */
  1262. GM_GPCR_RX_ENA = 1<<11, /* Bit 11: Enable Receive */
  1263. GM_GPCR_BURST_ENA = 1<<10, /* Bit 10: Enable Burst Mode */
  1264. GM_GPCR_LOOP_ENA = 1<<9, /* Bit 9: Enable MAC Loopback Mode */
  1265. GM_GPCR_PART_ENA = 1<<8, /* Bit 8: Enable Partition Mode */
  1266. GM_GPCR_GIGS_ENA = 1<<7, /* Bit 7: Gigabit Speed (1000 Mbps) */
  1267. GM_GPCR_FL_PASS = 1<<6, /* Bit 6: Force Link Pass */
  1268. GM_GPCR_DUP_FULL = 1<<5, /* Bit 5: Full Duplex Mode */
  1269. GM_GPCR_FC_RX_DIS = 1<<4, /* Bit 4: Disable Rx Flow-Control Mode */
  1270. GM_GPCR_SPEED_100 = 1<<3, /* Bit 3: Port Speed 100 Mbps */
  1271. GM_GPCR_AU_DUP_DIS = 1<<2, /* Bit 2: Disable Auto-Update Duplex */
  1272. GM_GPCR_AU_FCT_DIS = 1<<1, /* Bit 1: Disable Auto-Update Flow-C. */
  1273. GM_GPCR_AU_SPD_DIS = 1<<0, /* Bit 0: Disable Auto-Update Speed */
  1274. };
  1275. #define GM_GPCR_SPEED_1000 (GM_GPCR_GIGS_ENA | GM_GPCR_SPEED_100)
  1276. #define GM_GPCR_AU_ALL_DIS (GM_GPCR_AU_DUP_DIS | GM_GPCR_AU_FCT_DIS|GM_GPCR_AU_SPD_DIS)
  1277. /* GM_TX_CTRL 16 bit r/w Transmit Control Register */
  1278. enum {
  1279. GM_TXCR_FORCE_JAM = 1<<15, /* Bit 15: Force Jam / Flow-Control */
  1280. GM_TXCR_CRC_DIS = 1<<14, /* Bit 14: Disable insertion of CRC */
  1281. GM_TXCR_PAD_DIS = 1<<13, /* Bit 13: Disable padding of packets */
  1282. GM_TXCR_COL_THR_MSK = 1<<10, /* Bit 12..10: Collision Threshold */
  1283. };
  1284. #define TX_COL_THR(x) (((x)<<10) & GM_TXCR_COL_THR_MSK)
  1285. #define TX_COL_DEF 0x04
  1286. /* GM_RX_CTRL 16 bit r/w Receive Control Register */
  1287. enum {
  1288. GM_RXCR_UCF_ENA = 1<<15, /* Bit 15: Enable Unicast filtering */
  1289. GM_RXCR_MCF_ENA = 1<<14, /* Bit 14: Enable Multicast filtering */
  1290. GM_RXCR_CRC_DIS = 1<<13, /* Bit 13: Remove 4-byte CRC */
  1291. GM_RXCR_PASS_FC = 1<<12, /* Bit 12: Pass FC packets to FIFO */
  1292. };
  1293. /* GM_TX_PARAM 16 bit r/w Transmit Parameter Register */
  1294. enum {
  1295. GM_TXPA_JAMLEN_MSK = 0x03<<14, /* Bit 15..14: Jam Length */
  1296. GM_TXPA_JAMIPG_MSK = 0x1f<<9, /* Bit 13..9: Jam IPG */
  1297. GM_TXPA_JAMDAT_MSK = 0x1f<<4, /* Bit 8..4: IPG Jam to Data */
  1298. GM_TXPA_BO_LIM_MSK = 0x0f, /* Bit 3.. 0: Backoff Limit Mask */
  1299. TX_JAM_LEN_DEF = 0x03,
  1300. TX_JAM_IPG_DEF = 0x0b,
  1301. TX_IPG_JAM_DEF = 0x1c,
  1302. TX_BOF_LIM_DEF = 0x04,
  1303. };
  1304. #define TX_JAM_LEN_VAL(x) (((x)<<14) & GM_TXPA_JAMLEN_MSK)
  1305. #define TX_JAM_IPG_VAL(x) (((x)<<9) & GM_TXPA_JAMIPG_MSK)
  1306. #define TX_IPG_JAM_DATA(x) (((x)<<4) & GM_TXPA_JAMDAT_MSK)
  1307. #define TX_BACK_OFF_LIM(x) ((x) & GM_TXPA_BO_LIM_MSK)
  1308. /* GM_SERIAL_MODE 16 bit r/w Serial Mode Register */
  1309. enum {
  1310. GM_SMOD_DATABL_MSK = 0x1f<<11, /* Bit 15..11: Data Blinder (r/o) */
  1311. GM_SMOD_LIMIT_4 = 1<<10, /* Bit 10: 4 consecutive Tx trials */
  1312. GM_SMOD_VLAN_ENA = 1<<9, /* Bit 9: Enable VLAN (Max. Frame Len) */
  1313. GM_SMOD_JUMBO_ENA = 1<<8, /* Bit 8: Enable Jumbo (Max. Frame Len) */
  1314. GM_SMOD_IPG_MSK = 0x1f /* Bit 4..0: Inter-Packet Gap (IPG) */
  1315. };
  1316. #define DATA_BLIND_VAL(x) (((x)<<11) & GM_SMOD_DATABL_MSK)
  1317. #define DATA_BLIND_DEF 0x04
  1318. #define IPG_DATA_VAL(x) (x & GM_SMOD_IPG_MSK)
  1319. #define IPG_DATA_DEF 0x1e
  1320. /* GM_SMI_CTRL 16 bit r/w SMI Control Register */
  1321. enum {
  1322. GM_SMI_CT_PHY_A_MSK = 0x1f<<11,/* Bit 15..11: PHY Device Address */
  1323. GM_SMI_CT_REG_A_MSK = 0x1f<<6,/* Bit 10.. 6: PHY Register Address */
  1324. GM_SMI_CT_OP_RD = 1<<5, /* Bit 5: OpCode Read (0=Write)*/
  1325. GM_SMI_CT_RD_VAL = 1<<4, /* Bit 4: Read Valid (Read completed) */
  1326. GM_SMI_CT_BUSY = 1<<3, /* Bit 3: Busy (Operation in progress) */
  1327. };
  1328. #define GM_SMI_CT_PHY_AD(x) (((x)<<11) & GM_SMI_CT_PHY_A_MSK)
  1329. #define GM_SMI_CT_REG_AD(x) (((x)<<6) & GM_SMI_CT_REG_A_MSK)
  1330. /* GM_PHY_ADDR 16 bit r/w GPHY Address Register */
  1331. enum {
  1332. GM_PAR_MIB_CLR = 1<<5, /* Bit 5: Set MIB Clear Counter Mode */
  1333. GM_PAR_MIB_TST = 1<<4, /* Bit 4: MIB Load Counter (Test Mode) */
  1334. };
  1335. /* Receive Frame Status Encoding */
  1336. enum {
  1337. GMR_FS_LEN = 0xffff<<16, /* Bit 31..16: Rx Frame Length */
  1338. GMR_FS_VLAN = 1<<13, /* VLAN Packet */
  1339. GMR_FS_JABBER = 1<<12, /* Jabber Packet */
  1340. GMR_FS_UN_SIZE = 1<<11, /* Undersize Packet */
  1341. GMR_FS_MC = 1<<10, /* Multicast Packet */
  1342. GMR_FS_BC = 1<<9, /* Broadcast Packet */
  1343. GMR_FS_RX_OK = 1<<8, /* Receive OK (Good Packet) */
  1344. GMR_FS_GOOD_FC = 1<<7, /* Good Flow-Control Packet */
  1345. GMR_FS_BAD_FC = 1<<6, /* Bad Flow-Control Packet */
  1346. GMR_FS_MII_ERR = 1<<5, /* MII Error */
  1347. GMR_FS_LONG_ERR = 1<<4, /* Too Long Packet */
  1348. GMR_FS_FRAGMENT = 1<<3, /* Fragment */
  1349. GMR_FS_CRC_ERR = 1<<1, /* CRC Error */
  1350. GMR_FS_RX_FF_OV = 1<<0, /* Rx FIFO Overflow */
  1351. GMR_FS_ANY_ERR = GMR_FS_RX_FF_OV | GMR_FS_CRC_ERR |
  1352. GMR_FS_FRAGMENT | GMR_FS_LONG_ERR |
  1353. GMR_FS_MII_ERR | GMR_FS_BAD_FC | GMR_FS_GOOD_FC |
  1354. GMR_FS_UN_SIZE | GMR_FS_JABBER,
  1355. };
  1356. /* RX_GMF_CTRL_T 32 bit Rx GMAC FIFO Control/Test */
  1357. enum {
  1358. RX_TRUNC_ON = 1<<27, /* enable packet truncation */
  1359. RX_TRUNC_OFF = 1<<26, /* disable packet truncation */
  1360. RX_VLAN_STRIP_ON = 1<<25, /* enable VLAN stripping */
  1361. RX_VLAN_STRIP_OFF = 1<<24, /* disable VLAN stripping */
  1362. GMF_WP_TST_ON = 1<<14, /* Write Pointer Test On */
  1363. GMF_WP_TST_OFF = 1<<13, /* Write Pointer Test Off */
  1364. GMF_WP_STEP = 1<<12, /* Write Pointer Step/Increment */
  1365. GMF_RP_TST_ON = 1<<10, /* Read Pointer Test On */
  1366. GMF_RP_TST_OFF = 1<<9, /* Read Pointer Test Off */
  1367. GMF_RP_STEP = 1<<8, /* Read Pointer Step/Increment */
  1368. GMF_RX_F_FL_ON = 1<<7, /* Rx FIFO Flush Mode On */
  1369. GMF_RX_F_FL_OFF = 1<<6, /* Rx FIFO Flush Mode Off */
  1370. GMF_CLI_RX_FO = 1<<5, /* Clear IRQ Rx FIFO Overrun */
  1371. GMF_CLI_RX_C = 1<<4, /* Clear IRQ Rx Frame Complete */
  1372. GMF_OPER_ON = 1<<3, /* Operational Mode On */
  1373. GMF_OPER_OFF = 1<<2, /* Operational Mode Off */
  1374. GMF_RST_CLR = 1<<1, /* Clear GMAC FIFO Reset */
  1375. GMF_RST_SET = 1<<0, /* Set GMAC FIFO Reset */
  1376. RX_GMF_FL_THR_DEF = 0xa, /* flush threshold (default) */
  1377. GMF_RX_CTRL_DEF = GMF_OPER_ON | GMF_RX_F_FL_ON,
  1378. };
  1379. /* TX_GMF_CTRL_T 32 bit Tx GMAC FIFO Control/Test */
  1380. enum {
  1381. TX_STFW_DIS = 1<<31,/* Disable Store & Forward (Yukon-EC Ultra) */
  1382. TX_STFW_ENA = 1<<30,/* Enable Store & Forward (Yukon-EC Ultra) */
  1383. TX_VLAN_TAG_ON = 1<<25,/* enable VLAN tagging */
  1384. TX_VLAN_TAG_OFF = 1<<24,/* disable VLAN tagging */
  1385. GMF_WSP_TST_ON = 1<<18,/* Write Shadow Pointer Test On */
  1386. GMF_WSP_TST_OFF = 1<<17,/* Write Shadow Pointer Test Off */
  1387. GMF_WSP_STEP = 1<<16,/* Write Shadow Pointer Step/Increment */
  1388. GMF_CLI_TX_FU = 1<<6, /* Clear IRQ Tx FIFO Underrun */
  1389. GMF_CLI_TX_FC = 1<<5, /* Clear IRQ Tx Frame Complete */
  1390. GMF_CLI_TX_PE = 1<<4, /* Clear IRQ Tx Parity Error */
  1391. };
  1392. /* GMAC_TI_ST_CTRL 8 bit Time Stamp Timer Ctrl Reg (YUKON only) */
  1393. enum {
  1394. GMT_ST_START = 1<<2, /* Start Time Stamp Timer */
  1395. GMT_ST_STOP = 1<<1, /* Stop Time Stamp Timer */
  1396. GMT_ST_CLR_IRQ = 1<<0, /* Clear Time Stamp Timer IRQ */
  1397. };
  1398. /* B28_Y2_ASF_STAT_CMD 32 bit ASF Status and Command Reg */
  1399. enum {
  1400. Y2_ASF_OS_PRES = 1<<4, /* ASF operation system present */
  1401. Y2_ASF_RESET = 1<<3, /* ASF system in reset state */
  1402. Y2_ASF_RUNNING = 1<<2, /* ASF system operational */
  1403. Y2_ASF_CLR_HSTI = 1<<1, /* Clear ASF IRQ */
  1404. Y2_ASF_IRQ = 1<<0, /* Issue an IRQ to ASF system */
  1405. Y2_ASF_UC_STATE = 3<<2, /* ASF uC State */
  1406. Y2_ASF_CLK_HALT = 0, /* ASF system clock stopped */
  1407. };
  1408. /* B28_Y2_ASF_HOST_COM 32 bit ASF Host Communication Reg */
  1409. enum {
  1410. Y2_ASF_CLR_ASFI = 1<<1, /* Clear host IRQ */
  1411. Y2_ASF_HOST_IRQ = 1<<0, /* Issue an IRQ to HOST system */
  1412. };
  1413. /* STAT_CTRL 32 bit Status BMU control register (Yukon-2 only) */
  1414. enum {
  1415. SC_STAT_CLR_IRQ = 1<<4, /* Status Burst IRQ clear */
  1416. SC_STAT_OP_ON = 1<<3, /* Operational Mode On */
  1417. SC_STAT_OP_OFF = 1<<2, /* Operational Mode Off */
  1418. SC_STAT_RST_CLR = 1<<1, /* Clear Status Unit Reset (Enable) */
  1419. SC_STAT_RST_SET = 1<<0, /* Set Status Unit Reset */
  1420. };
  1421. /* GMAC_CTRL 32 bit GMAC Control Reg (YUKON only) */
  1422. enum {
  1423. GMC_H_BURST_ON = 1<<7, /* Half Duplex Burst Mode On */
  1424. GMC_H_BURST_OFF = 1<<6, /* Half Duplex Burst Mode Off */
  1425. GMC_F_LOOPB_ON = 1<<5, /* FIFO Loopback On */
  1426. GMC_F_LOOPB_OFF = 1<<4, /* FIFO Loopback Off */
  1427. GMC_PAUSE_ON = 1<<3, /* Pause On */
  1428. GMC_PAUSE_OFF = 1<<2, /* Pause Off */
  1429. GMC_RST_CLR = 1<<1, /* Clear GMAC Reset */
  1430. GMC_RST_SET = 1<<0, /* Set GMAC Reset */
  1431. };
  1432. /* GPHY_CTRL 32 bit GPHY Control Reg (YUKON only) */
  1433. enum {
  1434. GPC_SEL_BDT = 1<<28, /* Select Bi-Dir. Transfer for MDC/MDIO */
  1435. GPC_INT_POL_HI = 1<<27, /* IRQ Polarity is Active HIGH */
  1436. GPC_75_OHM = 1<<26, /* Use 75 Ohm Termination instead of 50 */
  1437. GPC_DIS_FC = 1<<25, /* Disable Automatic Fiber/Copper Detection */
  1438. GPC_DIS_SLEEP = 1<<24, /* Disable Energy Detect */
  1439. GPC_HWCFG_M_3 = 1<<23, /* HWCFG_MODE[3] */
  1440. GPC_HWCFG_M_2 = 1<<22, /* HWCFG_MODE[2] */
  1441. GPC_HWCFG_M_1 = 1<<21, /* HWCFG_MODE[1] */
  1442. GPC_HWCFG_M_0 = 1<<20, /* HWCFG_MODE[0] */
  1443. GPC_ANEG_0 = 1<<19, /* ANEG[0] */
  1444. GPC_ENA_XC = 1<<18, /* Enable MDI crossover */
  1445. GPC_DIS_125 = 1<<17, /* Disable 125 MHz clock */
  1446. GPC_ANEG_3 = 1<<16, /* ANEG[3] */
  1447. GPC_ANEG_2 = 1<<15, /* ANEG[2] */
  1448. GPC_ANEG_1 = 1<<14, /* ANEG[1] */
  1449. GPC_ENA_PAUSE = 1<<13, /* Enable Pause (SYM_OR_REM) */
  1450. GPC_PHYADDR_4 = 1<<12, /* Bit 4 of Phy Addr */
  1451. GPC_PHYADDR_3 = 1<<11, /* Bit 3 of Phy Addr */
  1452. GPC_PHYADDR_2 = 1<<10, /* Bit 2 of Phy Addr */
  1453. GPC_PHYADDR_1 = 1<<9, /* Bit 1 of Phy Addr */
  1454. GPC_PHYADDR_0 = 1<<8, /* Bit 0 of Phy Addr */
  1455. /* Bits 7..2: reserved */
  1456. GPC_RST_CLR = 1<<1, /* Clear GPHY Reset */
  1457. GPC_RST_SET = 1<<0, /* Set GPHY Reset */
  1458. };
  1459. /* GMAC_IRQ_SRC 8 bit GMAC Interrupt Source Reg (YUKON only) */
  1460. /* GMAC_IRQ_MSK 8 bit GMAC Interrupt Mask Reg (YUKON only) */
  1461. enum {
  1462. GM_IS_TX_CO_OV = 1<<5, /* Transmit Counter Overflow IRQ */
  1463. GM_IS_RX_CO_OV = 1<<4, /* Receive Counter Overflow IRQ */
  1464. GM_IS_TX_FF_UR = 1<<3, /* Transmit FIFO Underrun */
  1465. GM_IS_TX_COMPL = 1<<2, /* Frame Transmission Complete */
  1466. GM_IS_RX_FF_OR = 1<<1, /* Receive FIFO Overrun */
  1467. GM_IS_RX_COMPL = 1<<0, /* Frame Reception Complete */
  1468. #define GMAC_DEF_MSK GM_IS_TX_FF_UR
  1469. /* GMAC_LINK_CTRL 16 bit GMAC Link Control Reg (YUKON only) */
  1470. /* Bits 15.. 2: reserved */
  1471. GMLC_RST_CLR = 1<<1, /* Clear GMAC Link Reset */
  1472. GMLC_RST_SET = 1<<0, /* Set GMAC Link Reset */
  1473. /* WOL_CTRL_STAT 16 bit WOL Control/Status Reg */
  1474. WOL_CTL_LINK_CHG_OCC = 1<<15,
  1475. WOL_CTL_MAGIC_PKT_OCC = 1<<14,
  1476. WOL_CTL_PATTERN_OCC = 1<<13,
  1477. WOL_CTL_CLEAR_RESULT = 1<<12,
  1478. WOL_CTL_ENA_PME_ON_LINK_CHG = 1<<11,
  1479. WOL_CTL_DIS_PME_ON_LINK_CHG = 1<<10,
  1480. WOL_CTL_ENA_PME_ON_MAGIC_PKT = 1<<9,
  1481. WOL_CTL_DIS_PME_ON_MAGIC_PKT = 1<<8,
  1482. WOL_CTL_ENA_PME_ON_PATTERN = 1<<7,
  1483. WOL_CTL_DIS_PME_ON_PATTERN = 1<<6,
  1484. WOL_CTL_ENA_LINK_CHG_UNIT = 1<<5,
  1485. WOL_CTL_DIS_LINK_CHG_UNIT = 1<<4,
  1486. WOL_CTL_ENA_MAGIC_PKT_UNIT = 1<<3,
  1487. WOL_CTL_DIS_MAGIC_PKT_UNIT = 1<<2,
  1488. WOL_CTL_ENA_PATTERN_UNIT = 1<<1,
  1489. WOL_CTL_DIS_PATTERN_UNIT = 1<<0,
  1490. };
  1491. #define WOL_CTL_DEFAULT \
  1492. (WOL_CTL_DIS_PME_ON_LINK_CHG | \
  1493. WOL_CTL_DIS_PME_ON_PATTERN | \
  1494. WOL_CTL_DIS_PME_ON_MAGIC_PKT | \
  1495. WOL_CTL_DIS_LINK_CHG_UNIT | \
  1496. WOL_CTL_DIS_PATTERN_UNIT | \
  1497. WOL_CTL_DIS_MAGIC_PKT_UNIT)
  1498. /* WOL_MATCH_CTL 8 bit WOL Match Control Reg */
  1499. #define WOL_CTL_PATT_ENA(x) (1 << (x))
  1500. /* Control flags */
  1501. enum {
  1502. UDPTCP = 1<<0,
  1503. CALSUM = 1<<1,
  1504. WR_SUM = 1<<2,
  1505. INIT_SUM= 1<<3,
  1506. LOCK_SUM= 1<<4,
  1507. INS_VLAN= 1<<5,
  1508. FRC_STAT= 1<<6,
  1509. EOP = 1<<7,
  1510. };
  1511. enum {
  1512. HW_OWNER = 1<<7,
  1513. OP_TCPWRITE = 0x11,
  1514. OP_TCPSTART = 0x12,
  1515. OP_TCPINIT = 0x14,
  1516. OP_TCPLCK = 0x18,
  1517. OP_TCPCHKSUM = OP_TCPSTART,
  1518. OP_TCPIS = OP_TCPINIT | OP_TCPSTART,
  1519. OP_TCPLW = OP_TCPLCK | OP_TCPWRITE,
  1520. OP_TCPLSW = OP_TCPLCK | OP_TCPSTART | OP_TCPWRITE,
  1521. OP_TCPLISW = OP_TCPLCK | OP_TCPINIT | OP_TCPSTART | OP_TCPWRITE,
  1522. OP_ADDR64 = 0x21,
  1523. OP_VLAN = 0x22,
  1524. OP_ADDR64VLAN = OP_ADDR64 | OP_VLAN,
  1525. OP_LRGLEN = 0x24,
  1526. OP_LRGLENVLAN = OP_LRGLEN | OP_VLAN,
  1527. OP_BUFFER = 0x40,
  1528. OP_PACKET = 0x41,
  1529. OP_LARGESEND = 0x43,
  1530. /* YUKON-2 STATUS opcodes defines */
  1531. OP_RXSTAT = 0x60,
  1532. OP_RXTIMESTAMP = 0x61,
  1533. OP_RXVLAN = 0x62,
  1534. OP_RXCHKS = 0x64,
  1535. OP_RXCHKSVLAN = OP_RXCHKS | OP_RXVLAN,
  1536. OP_RXTIMEVLAN = OP_RXTIMESTAMP | OP_RXVLAN,
  1537. OP_RSS_HASH = 0x65,
  1538. OP_TXINDEXLE = 0x68,
  1539. };
  1540. /* Yukon 2 hardware interface
  1541. * Not tested on big endian
  1542. */
  1543. struct sky2_tx_le {
  1544. union {
  1545. __le32 addr;
  1546. struct {
  1547. __le16 offset;
  1548. __le16 start;
  1549. } csum __attribute((packed));
  1550. struct {
  1551. __le16 size;
  1552. __le16 rsvd;
  1553. } tso __attribute((packed));
  1554. } tx;
  1555. __le16 length; /* also vlan tag or checksum start */
  1556. u8 ctrl;
  1557. u8 opcode;
  1558. } __attribute((packed));
  1559. struct sky2_rx_le {
  1560. __le32 addr;
  1561. __le16 length;
  1562. u8 ctrl;
  1563. u8 opcode;
  1564. } __attribute((packed));
  1565. struct sky2_status_le {
  1566. __le32 status; /* also checksum */
  1567. __le16 length; /* also vlan tag */
  1568. u8 link;
  1569. u8 opcode;
  1570. } __attribute((packed));
  1571. struct tx_ring_info {
  1572. struct sk_buff *skb;
  1573. DECLARE_PCI_UNMAP_ADDR(mapaddr);
  1574. u16 idx;
  1575. };
  1576. struct ring_info {
  1577. struct sk_buff *skb;
  1578. dma_addr_t mapaddr;
  1579. };
  1580. struct sky2_port {
  1581. struct sky2_hw *hw;
  1582. struct net_device *netdev;
  1583. unsigned port;
  1584. u32 msg_enable;
  1585. spinlock_t phy_lock;
  1586. spinlock_t tx_lock ____cacheline_aligned_in_smp;
  1587. struct tx_ring_info *tx_ring;
  1588. struct sky2_tx_le *tx_le;
  1589. u16 tx_cons; /* next le to check */
  1590. u16 tx_prod; /* next le to use */
  1591. u32 tx_addr64;
  1592. u16 tx_pending;
  1593. u16 tx_last_mss;
  1594. struct ring_info *rx_ring ____cacheline_aligned_in_smp;
  1595. struct sky2_rx_le *rx_le;
  1596. u32 rx_addr64;
  1597. u16 rx_next; /* next re to check */
  1598. u16 rx_put; /* next le index to use */
  1599. u16 rx_pending;
  1600. u16 rx_bufsize;
  1601. #ifdef SKY2_VLAN_TAG_USED
  1602. u16 rx_tag;
  1603. struct vlan_group *vlgrp;
  1604. #endif
  1605. dma_addr_t rx_le_map;
  1606. dma_addr_t tx_le_map;
  1607. u32 advertising; /* ADVERTISED_ bits */
  1608. u16 speed; /* SPEED_1000, SPEED_100, ... */
  1609. u8 autoneg; /* AUTONEG_ENABLE, AUTONEG_DISABLE */
  1610. u8 duplex; /* DUPLEX_HALF, DUPLEX_FULL */
  1611. u8 rx_pause;
  1612. u8 tx_pause;
  1613. u8 rx_csum;
  1614. struct net_device_stats net_stats;
  1615. };
  1616. struct sky2_hw {
  1617. void __iomem *regs;
  1618. struct pci_dev *pdev;
  1619. struct net_device *dev[2];
  1620. int pm_cap;
  1621. u8 chip_id;
  1622. u8 chip_rev;
  1623. u8 copper;
  1624. u8 ports;
  1625. struct sky2_status_le *st_le;
  1626. u32 st_idx;
  1627. dma_addr_t st_dma;
  1628. int msi_detected;
  1629. wait_queue_head_t msi_wait;
  1630. };
  1631. /* Register accessor for memory mapped device */
  1632. static inline u32 sky2_read32(const struct sky2_hw *hw, unsigned reg)
  1633. {
  1634. return readl(hw->regs + reg);
  1635. }
  1636. static inline u16 sky2_read16(const struct sky2_hw *hw, unsigned reg)
  1637. {
  1638. return readw(hw->regs + reg);
  1639. }
  1640. static inline u8 sky2_read8(const struct sky2_hw *hw, unsigned reg)
  1641. {
  1642. return readb(hw->regs + reg);
  1643. }
  1644. static inline void sky2_write32(const struct sky2_hw *hw, unsigned reg, u32 val)
  1645. {
  1646. writel(val, hw->regs + reg);
  1647. }
  1648. static inline void sky2_write16(const struct sky2_hw *hw, unsigned reg, u16 val)
  1649. {
  1650. writew(val, hw->regs + reg);
  1651. }
  1652. static inline void sky2_write8(const struct sky2_hw *hw, unsigned reg, u8 val)
  1653. {
  1654. writeb(val, hw->regs + reg);
  1655. }
  1656. /* Yukon PHY related registers */
  1657. #define SK_GMAC_REG(port,reg) \
  1658. (BASE_GMAC_1 + (port) * (BASE_GMAC_2-BASE_GMAC_1) + (reg))
  1659. #define GM_PHY_RETRIES 100
  1660. static inline u16 gma_read16(const struct sky2_hw *hw, unsigned port, unsigned reg)
  1661. {
  1662. return sky2_read16(hw, SK_GMAC_REG(port,reg));
  1663. }
  1664. static inline u32 gma_read32(struct sky2_hw *hw, unsigned port, unsigned reg)
  1665. {
  1666. unsigned base = SK_GMAC_REG(port, reg);
  1667. return (u32) sky2_read16(hw, base)
  1668. | (u32) sky2_read16(hw, base+4) << 16;
  1669. }
  1670. static inline void gma_write16(const struct sky2_hw *hw, unsigned port, int r, u16 v)
  1671. {
  1672. sky2_write16(hw, SK_GMAC_REG(port,r), v);
  1673. }
  1674. static inline void gma_set_addr(struct sky2_hw *hw, unsigned port, unsigned reg,
  1675. const u8 *addr)
  1676. {
  1677. gma_write16(hw, port, reg, (u16) addr[0] | ((u16) addr[1] << 8));
  1678. gma_write16(hw, port, reg+4,(u16) addr[2] | ((u16) addr[3] << 8));
  1679. gma_write16(hw, port, reg+8,(u16) addr[4] | ((u16) addr[5] << 8));
  1680. }
  1681. /* PCI config space access */
  1682. static inline u32 sky2_pci_read32(const struct sky2_hw *hw, unsigned reg)
  1683. {
  1684. return sky2_read32(hw, Y2_CFG_SPC + reg);
  1685. }
  1686. static inline u16 sky2_pci_read16(const struct sky2_hw *hw, unsigned reg)
  1687. {
  1688. return sky2_read16(hw, Y2_CFG_SPC + reg);
  1689. }
  1690. static inline void sky2_pci_write32(struct sky2_hw *hw, unsigned reg, u32 val)
  1691. {
  1692. sky2_write32(hw, Y2_CFG_SPC + reg, val);
  1693. }
  1694. static inline void sky2_pci_write16(struct sky2_hw *hw, unsigned reg, u16 val)
  1695. {
  1696. sky2_write16(hw, Y2_CFG_SPC + reg, val);
  1697. }
  1698. #endif