You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tg3.h 81KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211
  1. /* $Id$
  2. * tg3.h: Definitions for Broadcom Tigon3 ethernet driver.
  3. *
  4. * Copyright (C) 2001, 2002 David S. Miller (davem@redhat.com)
  5. * Copyright (C) 2001 Jeff Garzik (jgarzik@mandrakesoft.com)
  6. */
  7. #ifndef _T3_H
  8. #define _T3_H
  9. #include "stdint.h"
  10. typedef unsigned long dma_addr_t;
  11. /* From mii.h */
  12. /* Indicates what features are advertised by the interface. */
  13. #define ADVERTISED_10baseT_Half (1 << 0)
  14. #define ADVERTISED_10baseT_Full (1 << 1)
  15. #define ADVERTISED_100baseT_Half (1 << 2)
  16. #define ADVERTISED_100baseT_Full (1 << 3)
  17. #define ADVERTISED_1000baseT_Half (1 << 4)
  18. #define ADVERTISED_1000baseT_Full (1 << 5)
  19. #define ADVERTISED_Autoneg (1 << 6)
  20. #define ADVERTISED_TP (1 << 7)
  21. #define ADVERTISED_AUI (1 << 8)
  22. #define ADVERTISED_MII (1 << 9)
  23. #define ADVERTISED_FIBRE (1 << 10)
  24. #define ADVERTISED_BNC (1 << 11)
  25. /* The following are all involved in forcing a particular link
  26. * mode for the device for setting things. When getting the
  27. * devices settings, these indicate the current mode and whether
  28. * it was foced up into this mode or autonegotiated.
  29. */
  30. /* The forced speed, 10Mb, 100Mb, gigabit. */
  31. #define SPEED_10 0
  32. #define SPEED_100 1
  33. #define SPEED_1000 2
  34. #define SPEED_INVALID 3
  35. /* Duplex, half or full. */
  36. #define DUPLEX_HALF 0x00
  37. #define DUPLEX_FULL 0x01
  38. #define DUPLEX_INVALID 0x02
  39. /* Which connector port. */
  40. #define PORT_TP 0x00
  41. #define PORT_AUI 0x01
  42. #define PORT_MII 0x02
  43. #define PORT_FIBRE 0x03
  44. #define PORT_BNC 0x04
  45. /* Which tranceiver to use. */
  46. #define XCVR_INTERNAL 0x00
  47. #define XCVR_EXTERNAL 0x01
  48. #define XCVR_DUMMY1 0x02
  49. #define XCVR_DUMMY2 0x03
  50. #define XCVR_DUMMY3 0x04
  51. /* Enable or disable autonegotiation. If this is set to enable,
  52. * the forced link modes above are completely ignored.
  53. */
  54. #define AUTONEG_DISABLE 0x00
  55. #define AUTONEG_ENABLE 0x01
  56. /* Wake-On-Lan options. */
  57. #define WAKE_PHY (1 << 0)
  58. #define WAKE_UCAST (1 << 1)
  59. #define WAKE_MCAST (1 << 2)
  60. #define WAKE_BCAST (1 << 3)
  61. #define WAKE_ARP (1 << 4)
  62. #define WAKE_MAGIC (1 << 5)
  63. #define WAKE_MAGICSECURE (1 << 6) /* only meaningful if WAKE_MAGIC */
  64. /* Generic MII registers. */
  65. #define MII_BMCR 0x00 /* Basic mode control register */
  66. #define MII_BMSR 0x01 /* Basic mode status register */
  67. #define MII_PHYSID1 0x02 /* PHYS ID 1 */
  68. #define MII_PHYSID2 0x03 /* PHYS ID 2 */
  69. #define MII_ADVERTISE 0x04 /* Advertisement control reg */
  70. #define MII_LPA 0x05 /* Link partner ability reg */
  71. #define MII_EXPANSION 0x06 /* Expansion register */
  72. #define MII_DCOUNTER 0x12 /* Disconnect counter */
  73. #define MII_FCSCOUNTER 0x13 /* False carrier counter */
  74. #define MII_NWAYTEST 0x14 /* N-way auto-neg test reg */
  75. #define MII_RERRCOUNTER 0x15 /* Receive error counter */
  76. #define MII_SREVISION 0x16 /* Silicon revision */
  77. #define MII_RESV1 0x17 /* Reserved... */
  78. #define MII_LBRERROR 0x18 /* Lpback, rx, bypass error */
  79. #define MII_PHYADDR 0x19 /* PHY address */
  80. #define MII_RESV2 0x1a /* Reserved... */
  81. #define MII_TPISTATUS 0x1b /* TPI status for 10mbps */
  82. #define MII_NCONFIG 0x1c /* Network interface config */
  83. /* Basic mode control register. */
  84. #define BMCR_RESV 0x007f /* Unused... */
  85. #define BMCR_CTST 0x0080 /* Collision test */
  86. #define BMCR_FULLDPLX 0x0100 /* Full duplex */
  87. #define BMCR_ANRESTART 0x0200 /* Auto negotiation restart */
  88. #define BMCR_ISOLATE 0x0400 /* Disconnect DP83840 from MII */
  89. #define BMCR_PDOWN 0x0800 /* Powerdown the DP83840 */
  90. #define BMCR_ANENABLE 0x1000 /* Enable auto negotiation */
  91. #define BMCR_SPEED100 0x2000 /* Select 100Mbps */
  92. #define BMCR_LOOPBACK 0x4000 /* TXD loopback bits */
  93. #define BMCR_RESET 0x8000 /* Reset the DP83840 */
  94. /* Basic mode status register. */
  95. #define BMSR_ERCAP 0x0001 /* Ext-reg capability */
  96. #define BMSR_JCD 0x0002 /* Jabber detected */
  97. #define BMSR_LSTATUS 0x0004 /* Link status */
  98. #define BMSR_ANEGCAPABLE 0x0008 /* Able to do auto-negotiation */
  99. #define BMSR_RFAULT 0x0010 /* Remote fault detected */
  100. #define BMSR_ANEGCOMPLETE 0x0020 /* Auto-negotiation complete */
  101. #define BMSR_RESV 0x07c0 /* Unused... */
  102. #define BMSR_10HALF 0x0800 /* Can do 10mbps, half-duplex */
  103. #define BMSR_10FULL 0x1000 /* Can do 10mbps, full-duplex */
  104. #define BMSR_100HALF 0x2000 /* Can do 100mbps, half-duplex */
  105. #define BMSR_100FULL 0x4000 /* Can do 100mbps, full-duplex */
  106. #define BMSR_100BASE4 0x8000 /* Can do 100mbps, 4k packets */
  107. /* Advertisement control register. */
  108. #define ADVERTISE_SLCT 0x001f /* Selector bits */
  109. #define ADVERTISE_CSMA 0x0001 /* Only selector supported */
  110. #define ADVERTISE_10HALF 0x0020 /* Try for 10mbps half-duplex */
  111. #define ADVERTISE_10FULL 0x0040 /* Try for 10mbps full-duplex */
  112. #define ADVERTISE_100HALF 0x0080 /* Try for 100mbps half-duplex */
  113. #define ADVERTISE_100FULL 0x0100 /* Try for 100mbps full-duplex */
  114. #define ADVERTISE_100BASE4 0x0200 /* Try for 100mbps 4k packets */
  115. #define ADVERTISE_RESV 0x1c00 /* Unused... */
  116. #define ADVERTISE_RFAULT 0x2000 /* Say we can detect faults */
  117. #define ADVERTISE_LPACK 0x4000 /* Ack link partners response */
  118. #define ADVERTISE_NPAGE 0x8000 /* Next page bit */
  119. #define ADVERTISE_FULL (ADVERTISE_100FULL | ADVERTISE_10FULL | \
  120. ADVERTISE_CSMA)
  121. #define ADVERTISE_ALL (ADVERTISE_10HALF | ADVERTISE_10FULL | \
  122. ADVERTISE_100HALF | ADVERTISE_100FULL)
  123. /* Link partner ability register. */
  124. #define LPA_SLCT 0x001f /* Same as advertise selector */
  125. #define LPA_10HALF 0x0020 /* Can do 10mbps half-duplex */
  126. #define LPA_10FULL 0x0040 /* Can do 10mbps full-duplex */
  127. #define LPA_100HALF 0x0080 /* Can do 100mbps half-duplex */
  128. #define LPA_100FULL 0x0100 /* Can do 100mbps full-duplex */
  129. #define LPA_100BASE4 0x0200 /* Can do 100mbps 4k packets */
  130. #define LPA_RESV 0x1c00 /* Unused... */
  131. #define LPA_RFAULT 0x2000 /* Link partner faulted */
  132. #define LPA_LPACK 0x4000 /* Link partner acked us */
  133. #define LPA_NPAGE 0x8000 /* Next page bit */
  134. #define LPA_DUPLEX (LPA_10FULL | LPA_100FULL)
  135. #define LPA_100 (LPA_100FULL | LPA_100HALF | LPA_100BASE4)
  136. /* Expansion register for auto-negotiation. */
  137. #define EXPANSION_NWAY 0x0001 /* Can do N-way auto-nego */
  138. #define EXPANSION_LCWP 0x0002 /* Got new RX page code word */
  139. #define EXPANSION_ENABLENPAGE 0x0004 /* This enables npage words */
  140. #define EXPANSION_NPCAPABLE 0x0008 /* Link partner supports npage */
  141. #define EXPANSION_MFAULTS 0x0010 /* Multiple faults detected */
  142. #define EXPANSION_RESV 0xffe0 /* Unused... */
  143. /* N-way test register. */
  144. #define NWAYTEST_RESV1 0x00ff /* Unused... */
  145. #define NWAYTEST_LOOPBACK 0x0100 /* Enable loopback for N-way */
  146. #define NWAYTEST_RESV2 0xfe00 /* Unused... */
  147. /* From tg3.h */
  148. #define TG3_64BIT_REG_HIGH 0x00UL
  149. #define TG3_64BIT_REG_LOW 0x04UL
  150. /* Descriptor block info. */
  151. #define TG3_BDINFO_HOST_ADDR 0x0UL /* 64-bit */
  152. #define TG3_BDINFO_MAXLEN_FLAGS 0x8UL /* 32-bit */
  153. #define BDINFO_FLAGS_USE_EXT_RECV 0x00000001 /* ext rx_buffer_desc */
  154. #define BDINFO_FLAGS_DISABLED 0x00000002
  155. #define BDINFO_FLAGS_MAXLEN_MASK 0xffff0000
  156. #define BDINFO_FLAGS_MAXLEN_SHIFT 16
  157. #define TG3_BDINFO_NIC_ADDR 0xcUL /* 32-bit */
  158. #define TG3_BDINFO_SIZE 0x10UL
  159. #define RX_COPY_THRESHOLD 256
  160. #define RX_STD_MAX_SIZE 1536
  161. #define RX_STD_MAX_SIZE_5705 512
  162. #define RX_JUMBO_MAX_SIZE 0xdeadbeef /* XXX */
  163. /* First 256 bytes are a mirror of PCI config space. */
  164. #define TG3PCI_VENDOR 0x00000000
  165. #define TG3PCI_VENDOR_BROADCOM 0x14e4
  166. #define TG3PCI_DEVICE 0x00000002
  167. #define TG3PCI_DEVICE_TIGON3_1 0x1644 /* BCM5700 */
  168. #define TG3PCI_DEVICE_TIGON3_2 0x1645 /* BCM5701 */
  169. #define TG3PCI_DEVICE_TIGON3_3 0x1646 /* BCM5702 */
  170. #define TG3PCI_DEVICE_TIGON3_4 0x1647 /* BCM5703 */
  171. #define TG3PCI_COMMAND 0x00000004
  172. #define TG3PCI_STATUS 0x00000006
  173. #define TG3PCI_CCREVID 0x00000008
  174. #define TG3PCI_CACHELINESZ 0x0000000c
  175. #define TG3PCI_LATTIMER 0x0000000d
  176. #define TG3PCI_HEADERTYPE 0x0000000e
  177. #define TG3PCI_BIST 0x0000000f
  178. #define TG3PCI_BASE0_LOW 0x00000010
  179. #define TG3PCI_BASE0_HIGH 0x00000014
  180. /* 0x18 --> 0x2c unused */
  181. #define TG3PCI_SUBSYSVENID 0x0000002c
  182. #define TG3PCI_SUBSYSID 0x0000002e
  183. #define TG3PCI_ROMADDR 0x00000030
  184. #define TG3PCI_CAPLIST 0x00000034
  185. /* 0x35 --> 0x3c unused */
  186. #define TG3PCI_IRQ_LINE 0x0000003c
  187. #define TG3PCI_IRQ_PIN 0x0000003d
  188. #define TG3PCI_MIN_GNT 0x0000003e
  189. #define TG3PCI_MAX_LAT 0x0000003f
  190. #define TG3PCI_X_CAPS 0x00000040
  191. #define PCIX_CAPS_RELAXED_ORDERING 0x00020000
  192. #define PCIX_CAPS_SPLIT_MASK 0x00700000
  193. #define PCIX_CAPS_SPLIT_SHIFT 20
  194. #define PCIX_CAPS_BURST_MASK 0x000c0000
  195. #define PCIX_CAPS_BURST_SHIFT 18
  196. #define PCIX_CAPS_MAX_BURST_CPIOB 2
  197. #define TG3PCI_PM_CAP_PTR 0x00000041
  198. #define TG3PCI_X_COMMAND 0x00000042
  199. #define TG3PCI_X_STATUS 0x00000044
  200. #define TG3PCI_PM_CAP_ID 0x00000048
  201. #define TG3PCI_VPD_CAP_PTR 0x00000049
  202. #define TG3PCI_PM_CAPS 0x0000004a
  203. #define TG3PCI_PM_CTRL_STAT 0x0000004c
  204. #define TG3PCI_BR_SUPP_EXT 0x0000004e
  205. #define TG3PCI_PM_DATA 0x0000004f
  206. #define TG3PCI_VPD_CAP_ID 0x00000050
  207. #define TG3PCI_MSI_CAP_PTR 0x00000051
  208. #define TG3PCI_VPD_ADDR_FLAG 0x00000052
  209. #define VPD_ADDR_FLAG_WRITE 0x00008000
  210. #define TG3PCI_VPD_DATA 0x00000054
  211. #define TG3PCI_MSI_CAP_ID 0x00000058
  212. #define TG3PCI_NXT_CAP_PTR 0x00000059
  213. #define TG3PCI_MSI_CTRL 0x0000005a
  214. #define TG3PCI_MSI_ADDR_LOW 0x0000005c
  215. #define TG3PCI_MSI_ADDR_HIGH 0x00000060
  216. #define TG3PCI_MSI_DATA 0x00000064
  217. /* 0x66 --> 0x68 unused */
  218. #define TG3PCI_MISC_HOST_CTRL 0x00000068
  219. #define MISC_HOST_CTRL_CLEAR_INT 0x00000001
  220. #define MISC_HOST_CTRL_MASK_PCI_INT 0x00000002
  221. #define MISC_HOST_CTRL_BYTE_SWAP 0x00000004
  222. #define MISC_HOST_CTRL_WORD_SWAP 0x00000008
  223. #define MISC_HOST_CTRL_PCISTATE_RW 0x00000010
  224. #define MISC_HOST_CTRL_CLKREG_RW 0x00000020
  225. #define MISC_HOST_CTRL_REGWORD_SWAP 0x00000040
  226. #define MISC_HOST_CTRL_INDIR_ACCESS 0x00000080
  227. #define MISC_HOST_CTRL_IRQ_MASK_MODE 0x00000100
  228. #define MISC_HOST_CTRL_TAGGED_STATUS 0x00000200
  229. #define MISC_HOST_CTRL_CHIPREV 0xffff0000
  230. #define MISC_HOST_CTRL_CHIPREV_SHIFT 16
  231. #define GET_CHIP_REV_ID(MISC_HOST_CTRL) \
  232. (((MISC_HOST_CTRL) & MISC_HOST_CTRL_CHIPREV) >> \
  233. MISC_HOST_CTRL_CHIPREV_SHIFT)
  234. #define CHIPREV_ID_5700_A0 0x7000
  235. #define CHIPREV_ID_5700_A1 0x7001
  236. #define CHIPREV_ID_5700_B0 0x7100
  237. #define CHIPREV_ID_5700_B1 0x7101
  238. #define CHIPREV_ID_5700_B3 0x7102
  239. #define CHIPREV_ID_5700_ALTIMA 0x7104
  240. #define CHIPREV_ID_5700_C0 0x7200
  241. #define CHIPREV_ID_5701_A0 0x0000
  242. #define CHIPREV_ID_5701_B0 0x0100
  243. #define CHIPREV_ID_5701_B2 0x0102
  244. #define CHIPREV_ID_5701_B5 0x0105
  245. #define CHIPREV_ID_5703_A0 0x1000
  246. #define CHIPREV_ID_5703_A1 0x1001
  247. #define CHIPREV_ID_5703_A2 0x1002
  248. #define CHIPREV_ID_5703_A3 0x1003
  249. #define CHIPREV_ID_5704_A0 0x2000
  250. #define CHIPREV_ID_5704_A1 0x2001
  251. #define CHIPREV_ID_5704_A2 0x2002
  252. #define CHIPREV_ID_5705_A0 0x3000
  253. #define CHIPREV_ID_5705_A1 0x3001
  254. #define CHIPREV_ID_5705_A2 0x3002
  255. #define CHIPREV_ID_5705_A3 0x3003
  256. #define CHIPREV_ID_5750_A0 0x4000
  257. #define CHIPREV_ID_5750_A1 0x4001
  258. #define CHIPREV_ID_5750_A3 0x4003
  259. #define GET_ASIC_REV(CHIP_REV_ID) ((CHIP_REV_ID) >> 12)
  260. #define ASIC_REV_5700 0x07
  261. #define ASIC_REV_5701 0x00
  262. #define ASIC_REV_5703 0x01
  263. #define ASIC_REV_5704 0x02
  264. #define ASIC_REV_5705 0x03
  265. #define ASIC_REV_5750 0x04
  266. #define GET_CHIP_REV(CHIP_REV_ID) ((CHIP_REV_ID) >> 8)
  267. #define CHIPREV_5700_AX 0x70
  268. #define CHIPREV_5700_BX 0x71
  269. #define CHIPREV_5700_CX 0x72
  270. #define CHIPREV_5701_AX 0x00
  271. #define GET_METAL_REV(CHIP_REV_ID) ((CHIP_REV_ID) & 0xff)
  272. #define METAL_REV_A0 0x00
  273. #define METAL_REV_A1 0x01
  274. #define METAL_REV_B0 0x00
  275. #define METAL_REV_B1 0x01
  276. #define METAL_REV_B2 0x02
  277. #define TG3PCI_DMA_RW_CTRL 0x0000006c
  278. #define DMA_RWCTRL_MIN_DMA 0x000000ff
  279. #define DMA_RWCTRL_MIN_DMA_SHIFT 0
  280. #define DMA_RWCTRL_READ_BNDRY_MASK 0x00000700
  281. #define DMA_RWCTRL_READ_BNDRY_DISAB 0x00000000
  282. #define DMA_RWCTRL_READ_BNDRY_16 0x00000100
  283. #define DMA_RWCTRL_READ_BNDRY_32 0x00000200
  284. #define DMA_RWCTRL_READ_BNDRY_64 0x00000300
  285. #define DMA_RWCTRL_READ_BNDRY_128 0x00000400
  286. #define DMA_RWCTRL_READ_BNDRY_256 0x00000500
  287. #define DMA_RWCTRL_READ_BNDRY_512 0x00000600
  288. #define DMA_RWCTRL_READ_BNDRY_1024 0x00000700
  289. #define DMA_RWCTRL_WRITE_BNDRY_MASK 0x00003800
  290. #define DMA_RWCTRL_WRITE_BNDRY_DISAB 0x00000000
  291. #define DMA_RWCTRL_WRITE_BNDRY_16 0x00000800
  292. #define DMA_RWCTRL_WRITE_BNDRY_32 0x00001000
  293. #define DMA_RWCTRL_WRITE_BNDRY_64 0x00001800
  294. #define DMA_RWCTRL_WRITE_BNDRY_128 0x00002000
  295. #define DMA_RWCTRL_WRITE_BNDRY_256 0x00002800
  296. #define DMA_RWCTRL_WRITE_BNDRY_512 0x00003000
  297. #define DMA_RWCTRL_WRITE_BNDRY_1024 0x00003800
  298. #define DMA_RWCTRL_ONE_DMA 0x00004000
  299. #define DMA_RWCTRL_READ_WATER 0x00070000
  300. #define DMA_RWCTRL_READ_WATER_SHIFT 16
  301. #define DMA_RWCTRL_WRITE_WATER 0x00380000
  302. #define DMA_RWCTRL_WRITE_WATER_SHIFT 19
  303. #define DMA_RWCTRL_USE_MEM_READ_MULT 0x00400000
  304. #define DMA_RWCTRL_ASSERT_ALL_BE 0x00800000
  305. #define DMA_RWCTRL_PCI_READ_CMD 0x0f000000
  306. #define DMA_RWCTRL_PCI_READ_CMD_SHIFT 24
  307. #define DMA_RWCTRL_PCI_WRITE_CMD 0xf0000000
  308. #define DMA_RWCTRL_PCI_WRITE_CMD_SHIFT 28
  309. #define TG3PCI_PCISTATE 0x00000070
  310. #define PCISTATE_FORCE_RESET 0x00000001
  311. #define PCISTATE_INT_NOT_ACTIVE 0x00000002
  312. #define PCISTATE_CONV_PCI_MODE 0x00000004
  313. #define PCISTATE_BUS_SPEED_HIGH 0x00000008
  314. #define PCISTATE_BUS_32BIT 0x00000010
  315. #define PCISTATE_ROM_ENABLE 0x00000020
  316. #define PCISTATE_ROM_RETRY_ENABLE 0x00000040
  317. #define PCISTATE_FLAT_VIEW 0x00000100
  318. #define PCISTATE_RETRY_SAME_DMA 0x00002000
  319. #define TG3PCI_CLOCK_CTRL 0x00000074
  320. #define CLOCK_CTRL_CORECLK_DISABLE 0x00000200
  321. #define CLOCK_CTRL_RXCLK_DISABLE 0x00000400
  322. #define CLOCK_CTRL_TXCLK_DISABLE 0x00000800
  323. #define CLOCK_CTRL_ALTCLK 0x00001000
  324. #define CLOCK_CTRL_PWRDOWN_PLL133 0x00008000
  325. #define CLOCK_CTRL_44MHZ_CORE 0x00040000
  326. #define CLOCK_CTRL_625_CORE 0x00100000
  327. #define CLOCK_CTRL_FORCE_CLKRUN 0x00200000
  328. #define CLOCK_CTRL_CLKRUN_OENABLE 0x00400000
  329. #define CLOCK_CTRL_DELAY_PCI_GRANT 0x80000000
  330. #define TG3PCI_REG_BASE_ADDR 0x00000078
  331. #define TG3PCI_MEM_WIN_BASE_ADDR 0x0000007c
  332. #define TG3PCI_REG_DATA 0x00000080
  333. #define TG3PCI_MEM_WIN_DATA 0x00000084
  334. #define TG3PCI_MODE_CTRL 0x00000088
  335. #define TG3PCI_MISC_CFG 0x0000008c
  336. #define TG3PCI_MISC_LOCAL_CTRL 0x00000090
  337. /* 0x94 --> 0x98 unused */
  338. #define TG3PCI_STD_RING_PROD_IDX 0x00000098 /* 64-bit */
  339. #define TG3PCI_RCV_RET_RING_CON_IDX 0x000000a0 /* 64-bit */
  340. #define TG3PCI_SND_PROD_IDX 0x000000a8 /* 64-bit */
  341. /* 0xb0 --> 0x100 unused */
  342. /* 0x100 --> 0x200 unused */
  343. /* Mailbox registers */
  344. #define MAILBOX_INTERRUPT_0 0x00000200 /* 64-bit */
  345. #define MAILBOX_INTERRUPT_1 0x00000208 /* 64-bit */
  346. #define MAILBOX_INTERRUPT_2 0x00000210 /* 64-bit */
  347. #define MAILBOX_INTERRUPT_3 0x00000218 /* 64-bit */
  348. #define MAILBOX_GENERAL_0 0x00000220 /* 64-bit */
  349. #define MAILBOX_GENERAL_1 0x00000228 /* 64-bit */
  350. #define MAILBOX_GENERAL_2 0x00000230 /* 64-bit */
  351. #define MAILBOX_GENERAL_3 0x00000238 /* 64-bit */
  352. #define MAILBOX_GENERAL_4 0x00000240 /* 64-bit */
  353. #define MAILBOX_GENERAL_5 0x00000248 /* 64-bit */
  354. #define MAILBOX_GENERAL_6 0x00000250 /* 64-bit */
  355. #define MAILBOX_GENERAL_7 0x00000258 /* 64-bit */
  356. #define MAILBOX_RELOAD_STAT 0x00000260 /* 64-bit */
  357. #define MAILBOX_RCV_STD_PROD_IDX 0x00000268 /* 64-bit */
  358. #define MAILBOX_RCV_JUMBO_PROD_IDX 0x00000270 /* 64-bit */
  359. #define MAILBOX_RCV_MINI_PROD_IDX 0x00000278 /* 64-bit */
  360. #define MAILBOX_RCVRET_CON_IDX_0 0x00000280 /* 64-bit */
  361. #define MAILBOX_RCVRET_CON_IDX_1 0x00000288 /* 64-bit */
  362. #define MAILBOX_RCVRET_CON_IDX_2 0x00000290 /* 64-bit */
  363. #define MAILBOX_RCVRET_CON_IDX_3 0x00000298 /* 64-bit */
  364. #define MAILBOX_RCVRET_CON_IDX_4 0x000002a0 /* 64-bit */
  365. #define MAILBOX_RCVRET_CON_IDX_5 0x000002a8 /* 64-bit */
  366. #define MAILBOX_RCVRET_CON_IDX_6 0x000002b0 /* 64-bit */
  367. #define MAILBOX_RCVRET_CON_IDX_7 0x000002b8 /* 64-bit */
  368. #define MAILBOX_RCVRET_CON_IDX_8 0x000002c0 /* 64-bit */
  369. #define MAILBOX_RCVRET_CON_IDX_9 0x000002c8 /* 64-bit */
  370. #define MAILBOX_RCVRET_CON_IDX_10 0x000002d0 /* 64-bit */
  371. #define MAILBOX_RCVRET_CON_IDX_11 0x000002d8 /* 64-bit */
  372. #define MAILBOX_RCVRET_CON_IDX_12 0x000002e0 /* 64-bit */
  373. #define MAILBOX_RCVRET_CON_IDX_13 0x000002e8 /* 64-bit */
  374. #define MAILBOX_RCVRET_CON_IDX_14 0x000002f0 /* 64-bit */
  375. #define MAILBOX_RCVRET_CON_IDX_15 0x000002f8 /* 64-bit */
  376. #define MAILBOX_SNDHOST_PROD_IDX_0 0x00000300 /* 64-bit */
  377. #define MAILBOX_SNDHOST_PROD_IDX_1 0x00000308 /* 64-bit */
  378. #define MAILBOX_SNDHOST_PROD_IDX_2 0x00000310 /* 64-bit */
  379. #define MAILBOX_SNDHOST_PROD_IDX_3 0x00000318 /* 64-bit */
  380. #define MAILBOX_SNDHOST_PROD_IDX_4 0x00000320 /* 64-bit */
  381. #define MAILBOX_SNDHOST_PROD_IDX_5 0x00000328 /* 64-bit */
  382. #define MAILBOX_SNDHOST_PROD_IDX_6 0x00000330 /* 64-bit */
  383. #define MAILBOX_SNDHOST_PROD_IDX_7 0x00000338 /* 64-bit */
  384. #define MAILBOX_SNDHOST_PROD_IDX_8 0x00000340 /* 64-bit */
  385. #define MAILBOX_SNDHOST_PROD_IDX_9 0x00000348 /* 64-bit */
  386. #define MAILBOX_SNDHOST_PROD_IDX_10 0x00000350 /* 64-bit */
  387. #define MAILBOX_SNDHOST_PROD_IDX_11 0x00000358 /* 64-bit */
  388. #define MAILBOX_SNDHOST_PROD_IDX_12 0x00000360 /* 64-bit */
  389. #define MAILBOX_SNDHOST_PROD_IDX_13 0x00000368 /* 64-bit */
  390. #define MAILBOX_SNDHOST_PROD_IDX_14 0x00000370 /* 64-bit */
  391. #define MAILBOX_SNDHOST_PROD_IDX_15 0x00000378 /* 64-bit */
  392. #define MAILBOX_SNDNIC_PROD_IDX_0 0x00000380 /* 64-bit */
  393. #define MAILBOX_SNDNIC_PROD_IDX_1 0x00000388 /* 64-bit */
  394. #define MAILBOX_SNDNIC_PROD_IDX_2 0x00000390 /* 64-bit */
  395. #define MAILBOX_SNDNIC_PROD_IDX_3 0x00000398 /* 64-bit */
  396. #define MAILBOX_SNDNIC_PROD_IDX_4 0x000003a0 /* 64-bit */
  397. #define MAILBOX_SNDNIC_PROD_IDX_5 0x000003a8 /* 64-bit */
  398. #define MAILBOX_SNDNIC_PROD_IDX_6 0x000003b0 /* 64-bit */
  399. #define MAILBOX_SNDNIC_PROD_IDX_7 0x000003b8 /* 64-bit */
  400. #define MAILBOX_SNDNIC_PROD_IDX_8 0x000003c0 /* 64-bit */
  401. #define MAILBOX_SNDNIC_PROD_IDX_9 0x000003c8 /* 64-bit */
  402. #define MAILBOX_SNDNIC_PROD_IDX_10 0x000003d0 /* 64-bit */
  403. #define MAILBOX_SNDNIC_PROD_IDX_11 0x000003d8 /* 64-bit */
  404. #define MAILBOX_SNDNIC_PROD_IDX_12 0x000003e0 /* 64-bit */
  405. #define MAILBOX_SNDNIC_PROD_IDX_13 0x000003e8 /* 64-bit */
  406. #define MAILBOX_SNDNIC_PROD_IDX_14 0x000003f0 /* 64-bit */
  407. #define MAILBOX_SNDNIC_PROD_IDX_15 0x000003f8 /* 64-bit */
  408. /* MAC control registers */
  409. #define MAC_MODE 0x00000400
  410. #define MAC_MODE_RESET 0x00000001
  411. #define MAC_MODE_HALF_DUPLEX 0x00000002
  412. #define MAC_MODE_PORT_MODE_MASK 0x0000000c
  413. #define MAC_MODE_PORT_MODE_TBI 0x0000000c
  414. #define MAC_MODE_PORT_MODE_GMII 0x00000008
  415. #define MAC_MODE_PORT_MODE_MII 0x00000004
  416. #define MAC_MODE_PORT_MODE_NONE 0x00000000
  417. #define MAC_MODE_PORT_INT_LPBACK 0x00000010
  418. #define MAC_MODE_TAGGED_MAC_CTRL 0x00000080
  419. #define MAC_MODE_TX_BURSTING 0x00000100
  420. #define MAC_MODE_MAX_DEFER 0x00000200
  421. #define MAC_MODE_LINK_POLARITY 0x00000400
  422. #define MAC_MODE_RXSTAT_ENABLE 0x00000800
  423. #define MAC_MODE_RXSTAT_CLEAR 0x00001000
  424. #define MAC_MODE_RXSTAT_FLUSH 0x00002000
  425. #define MAC_MODE_TXSTAT_ENABLE 0x00004000
  426. #define MAC_MODE_TXSTAT_CLEAR 0x00008000
  427. #define MAC_MODE_TXSTAT_FLUSH 0x00010000
  428. #define MAC_MODE_SEND_CONFIGS 0x00020000
  429. #define MAC_MODE_MAGIC_PKT_ENABLE 0x00040000
  430. #define MAC_MODE_ACPI_ENABLE 0x00080000
  431. #define MAC_MODE_MIP_ENABLE 0x00100000
  432. #define MAC_MODE_TDE_ENABLE 0x00200000
  433. #define MAC_MODE_RDE_ENABLE 0x00400000
  434. #define MAC_MODE_FHDE_ENABLE 0x00800000
  435. #define MAC_STATUS 0x00000404
  436. #define MAC_STATUS_PCS_SYNCED 0x00000001
  437. #define MAC_STATUS_SIGNAL_DET 0x00000002
  438. #define MAC_STATUS_RCVD_CFG 0x00000004
  439. #define MAC_STATUS_CFG_CHANGED 0x00000008
  440. #define MAC_STATUS_SYNC_CHANGED 0x00000010
  441. #define MAC_STATUS_PORT_DEC_ERR 0x00000400
  442. #define MAC_STATUS_LNKSTATE_CHANGED 0x00001000
  443. #define MAC_STATUS_MI_COMPLETION 0x00400000
  444. #define MAC_STATUS_MI_INTERRUPT 0x00800000
  445. #define MAC_STATUS_AP_ERROR 0x01000000
  446. #define MAC_STATUS_ODI_ERROR 0x02000000
  447. #define MAC_STATUS_RXSTAT_OVERRUN 0x04000000
  448. #define MAC_STATUS_TXSTAT_OVERRUN 0x08000000
  449. #define MAC_EVENT 0x00000408
  450. #define MAC_EVENT_PORT_DECODE_ERR 0x00000400
  451. #define MAC_EVENT_LNKSTATE_CHANGED 0x00001000
  452. #define MAC_EVENT_MI_COMPLETION 0x00400000
  453. #define MAC_EVENT_MI_INTERRUPT 0x00800000
  454. #define MAC_EVENT_AP_ERROR 0x01000000
  455. #define MAC_EVENT_ODI_ERROR 0x02000000
  456. #define MAC_EVENT_RXSTAT_OVERRUN 0x04000000
  457. #define MAC_EVENT_TXSTAT_OVERRUN 0x08000000
  458. #define MAC_LED_CTRL 0x0000040c
  459. #define LED_CTRL_LNKLED_OVERRIDE 0x00000001
  460. #define LED_CTRL_1000MBPS_ON 0x00000002
  461. #define LED_CTRL_100MBPS_ON 0x00000004
  462. #define LED_CTRL_10MBPS_ON 0x00000008
  463. #define LED_CTRL_TRAFFIC_OVERRIDE 0x00000010
  464. #define LED_CTRL_TRAFFIC_BLINK 0x00000020
  465. #define LED_CTRL_TRAFFIC_LED 0x00000040
  466. #define LED_CTRL_1000MBPS_STATUS 0x00000080
  467. #define LED_CTRL_100MBPS_STATUS 0x00000100
  468. #define LED_CTRL_10MBPS_STATUS 0x00000200
  469. #define LED_CTRL_TRAFFIC_STATUS 0x00000400
  470. #define LED_CTRL_MAC_MODE 0x00000000
  471. #define LED_CTRL_PHY_MODE_1 0x00000800
  472. #define LED_CTRL_PHY_MODE_2 0x00001000
  473. #define LED_CTRL_BLINK_RATE_MASK 0x7ff80000
  474. #define LED_CTRL_BLINK_RATE_SHIFT 19
  475. #define LED_CTRL_BLINK_PER_OVERRIDE 0x00080000
  476. #define LED_CTRL_BLINK_RATE_OVERRIDE 0x80000000
  477. #define MAC_ADDR_0_HIGH 0x00000410 /* upper 2 bytes */
  478. #define MAC_ADDR_0_LOW 0x00000414 /* lower 4 bytes */
  479. #define MAC_ADDR_1_HIGH 0x00000418 /* upper 2 bytes */
  480. #define MAC_ADDR_1_LOW 0x0000041c /* lower 4 bytes */
  481. #define MAC_ADDR_2_HIGH 0x00000420 /* upper 2 bytes */
  482. #define MAC_ADDR_2_LOW 0x00000424 /* lower 4 bytes */
  483. #define MAC_ADDR_3_HIGH 0x00000428 /* upper 2 bytes */
  484. #define MAC_ADDR_3_LOW 0x0000042c /* lower 4 bytes */
  485. #define MAC_ACPI_MBUF_PTR 0x00000430
  486. #define MAC_ACPI_LEN_OFFSET 0x00000434
  487. #define ACPI_LENOFF_LEN_MASK 0x0000ffff
  488. #define ACPI_LENOFF_LEN_SHIFT 0
  489. #define ACPI_LENOFF_OFF_MASK 0x0fff0000
  490. #define ACPI_LENOFF_OFF_SHIFT 16
  491. #define MAC_TX_BACKOFF_SEED 0x00000438
  492. #define TX_BACKOFF_SEED_MASK 0x000003ff
  493. #define MAC_RX_MTU_SIZE 0x0000043c
  494. #define RX_MTU_SIZE_MASK 0x0000ffff
  495. #define MAC_PCS_TEST 0x00000440
  496. #define PCS_TEST_PATTERN_MASK 0x000fffff
  497. #define PCS_TEST_PATTERN_SHIFT 0
  498. #define PCS_TEST_ENABLE 0x00100000
  499. #define MAC_TX_AUTO_NEG 0x00000444
  500. #define TX_AUTO_NEG_MASK 0x0000ffff
  501. #define TX_AUTO_NEG_SHIFT 0
  502. #define MAC_RX_AUTO_NEG 0x00000448
  503. #define RX_AUTO_NEG_MASK 0x0000ffff
  504. #define RX_AUTO_NEG_SHIFT 0
  505. #define MAC_MI_COM 0x0000044c
  506. #define MI_COM_CMD_MASK 0x0c000000
  507. #define MI_COM_CMD_WRITE 0x04000000
  508. #define MI_COM_CMD_READ 0x08000000
  509. #define MI_COM_READ_FAILED 0x10000000
  510. #define MI_COM_START 0x20000000
  511. #define MI_COM_BUSY 0x20000000
  512. #define MI_COM_PHY_ADDR_MASK 0x03e00000
  513. #define MI_COM_PHY_ADDR_SHIFT 21
  514. #define MI_COM_REG_ADDR_MASK 0x001f0000
  515. #define MI_COM_REG_ADDR_SHIFT 16
  516. #define MI_COM_DATA_MASK 0x0000ffff
  517. #define MAC_MI_STAT 0x00000450
  518. #define MAC_MI_STAT_LNKSTAT_ATTN_ENAB 0x00000001
  519. #define MAC_MI_MODE 0x00000454
  520. #define MAC_MI_MODE_CLK_10MHZ 0x00000001
  521. #define MAC_MI_MODE_SHORT_PREAMBLE 0x00000002
  522. #define MAC_MI_MODE_AUTO_POLL 0x00000010
  523. #define MAC_MI_MODE_CORE_CLK_62MHZ 0x00008000
  524. #define MAC_MI_MODE_BASE 0x000c0000 /* XXX magic values XXX */
  525. #define MAC_AUTO_POLL_STATUS 0x00000458
  526. #define MAC_AUTO_POLL_ERROR 0x00000001
  527. #define MAC_TX_MODE 0x0000045c
  528. #define TX_MODE_RESET 0x00000001
  529. #define TX_MODE_ENABLE 0x00000002
  530. #define TX_MODE_FLOW_CTRL_ENABLE 0x00000010
  531. #define TX_MODE_BIG_BCKOFF_ENABLE 0x00000020
  532. #define TX_MODE_LONG_PAUSE_ENABLE 0x00000040
  533. #define MAC_TX_STATUS 0x00000460
  534. #define TX_STATUS_XOFFED 0x00000001
  535. #define TX_STATUS_SENT_XOFF 0x00000002
  536. #define TX_STATUS_SENT_XON 0x00000004
  537. #define TX_STATUS_LINK_UP 0x00000008
  538. #define TX_STATUS_ODI_UNDERRUN 0x00000010
  539. #define TX_STATUS_ODI_OVERRUN 0x00000020
  540. #define MAC_TX_LENGTHS 0x00000464
  541. #define TX_LENGTHS_SLOT_TIME_MASK 0x000000ff
  542. #define TX_LENGTHS_SLOT_TIME_SHIFT 0
  543. #define TX_LENGTHS_IPG_MASK 0x00000f00
  544. #define TX_LENGTHS_IPG_SHIFT 8
  545. #define TX_LENGTHS_IPG_CRS_MASK 0x00003000
  546. #define TX_LENGTHS_IPG_CRS_SHIFT 12
  547. #define MAC_RX_MODE 0x00000468
  548. #define RX_MODE_RESET 0x00000001
  549. #define RX_MODE_ENABLE 0x00000002
  550. #define RX_MODE_FLOW_CTRL_ENABLE 0x00000004
  551. #define RX_MODE_KEEP_MAC_CTRL 0x00000008
  552. #define RX_MODE_KEEP_PAUSE 0x00000010
  553. #define RX_MODE_ACCEPT_OVERSIZED 0x00000020
  554. #define RX_MODE_ACCEPT_RUNTS 0x00000040
  555. #define RX_MODE_LEN_CHECK 0x00000080
  556. #define RX_MODE_PROMISC 0x00000100
  557. #define RX_MODE_NO_CRC_CHECK 0x00000200
  558. #define RX_MODE_KEEP_VLAN_TAG 0x00000400
  559. #define MAC_RX_STATUS 0x0000046c
  560. #define RX_STATUS_REMOTE_TX_XOFFED 0x00000001
  561. #define RX_STATUS_XOFF_RCVD 0x00000002
  562. #define RX_STATUS_XON_RCVD 0x00000004
  563. #define MAC_HASH_REG_0 0x00000470
  564. #define MAC_HASH_REG_1 0x00000474
  565. #define MAC_HASH_REG_2 0x00000478
  566. #define MAC_HASH_REG_3 0x0000047c
  567. #define MAC_RCV_RULE_0 0x00000480
  568. #define MAC_RCV_VALUE_0 0x00000484
  569. #define MAC_RCV_RULE_1 0x00000488
  570. #define MAC_RCV_VALUE_1 0x0000048c
  571. #define MAC_RCV_RULE_2 0x00000490
  572. #define MAC_RCV_VALUE_2 0x00000494
  573. #define MAC_RCV_RULE_3 0x00000498
  574. #define MAC_RCV_VALUE_3 0x0000049c
  575. #define MAC_RCV_RULE_4 0x000004a0
  576. #define MAC_RCV_VALUE_4 0x000004a4
  577. #define MAC_RCV_RULE_5 0x000004a8
  578. #define MAC_RCV_VALUE_5 0x000004ac
  579. #define MAC_RCV_RULE_6 0x000004b0
  580. #define MAC_RCV_VALUE_6 0x000004b4
  581. #define MAC_RCV_RULE_7 0x000004b8
  582. #define MAC_RCV_VALUE_7 0x000004bc
  583. #define MAC_RCV_RULE_8 0x000004c0
  584. #define MAC_RCV_VALUE_8 0x000004c4
  585. #define MAC_RCV_RULE_9 0x000004c8
  586. #define MAC_RCV_VALUE_9 0x000004cc
  587. #define MAC_RCV_RULE_10 0x000004d0
  588. #define MAC_RCV_VALUE_10 0x000004d4
  589. #define MAC_RCV_RULE_11 0x000004d8
  590. #define MAC_RCV_VALUE_11 0x000004dc
  591. #define MAC_RCV_RULE_12 0x000004e0
  592. #define MAC_RCV_VALUE_12 0x000004e4
  593. #define MAC_RCV_RULE_13 0x000004e8
  594. #define MAC_RCV_VALUE_13 0x000004ec
  595. #define MAC_RCV_RULE_14 0x000004f0
  596. #define MAC_RCV_VALUE_14 0x000004f4
  597. #define MAC_RCV_RULE_15 0x000004f8
  598. #define MAC_RCV_VALUE_15 0x000004fc
  599. #define RCV_RULE_DISABLE_MASK 0x7fffffff
  600. #define MAC_RCV_RULE_CFG 0x00000500
  601. #define RCV_RULE_CFG_DEFAULT_CLASS 0x00000008
  602. #define MAC_LOW_WMARK_MAX_RX_FRAME 0x00000504
  603. /* 0x508 --> 0x520 unused */
  604. #define MAC_HASHREGU_0 0x00000520
  605. #define MAC_HASHREGU_1 0x00000524
  606. #define MAC_HASHREGU_2 0x00000528
  607. #define MAC_HASHREGU_3 0x0000052c
  608. #define MAC_EXTADDR_0_HIGH 0x00000530
  609. #define MAC_EXTADDR_0_LOW 0x00000534
  610. #define MAC_EXTADDR_1_HIGH 0x00000538
  611. #define MAC_EXTADDR_1_LOW 0x0000053c
  612. #define MAC_EXTADDR_2_HIGH 0x00000540
  613. #define MAC_EXTADDR_2_LOW 0x00000544
  614. #define MAC_EXTADDR_3_HIGH 0x00000548
  615. #define MAC_EXTADDR_3_LOW 0x0000054c
  616. #define MAC_EXTADDR_4_HIGH 0x00000550
  617. #define MAC_EXTADDR_4_LOW 0x00000554
  618. #define MAC_EXTADDR_5_HIGH 0x00000558
  619. #define MAC_EXTADDR_5_LOW 0x0000055c
  620. #define MAC_EXTADDR_6_HIGH 0x00000560
  621. #define MAC_EXTADDR_6_LOW 0x00000564
  622. #define MAC_EXTADDR_7_HIGH 0x00000568
  623. #define MAC_EXTADDR_7_LOW 0x0000056c
  624. #define MAC_EXTADDR_8_HIGH 0x00000570
  625. #define MAC_EXTADDR_8_LOW 0x00000574
  626. #define MAC_EXTADDR_9_HIGH 0x00000578
  627. #define MAC_EXTADDR_9_LOW 0x0000057c
  628. #define MAC_EXTADDR_10_HIGH 0x00000580
  629. #define MAC_EXTADDR_10_LOW 0x00000584
  630. #define MAC_EXTADDR_11_HIGH 0x00000588
  631. #define MAC_EXTADDR_11_LOW 0x0000058c
  632. #define MAC_SERDES_CFG 0x00000590
  633. #define MAC_SERDES_STAT 0x00000594
  634. /* 0x598 --> 0x600 unused */
  635. #define MAC_TX_MAC_STATE_BASE 0x00000600 /* 16 bytes */
  636. #define MAC_RX_MAC_STATE_BASE 0x00000610 /* 20 bytes */
  637. /* 0x624 --> 0x800 unused */
  638. #define MAC_TX_STATS_OCTETS 0x00000800
  639. #define MAC_TX_STATS_RESV1 0x00000804
  640. #define MAC_TX_STATS_COLLISIONS 0x00000808
  641. #define MAC_TX_STATS_XON_SENT 0x0000080c
  642. #define MAC_TX_STATS_XOFF_SENT 0x00000810
  643. #define MAC_TX_STATS_RESV2 0x00000814
  644. #define MAC_TX_STATS_MAC_ERRORS 0x00000818
  645. #define MAC_TX_STATS_SINGLE_COLLISIONS 0x0000081c
  646. #define MAC_TX_STATS_MULT_COLLISIONS 0x00000820
  647. #define MAC_TX_STATS_DEFERRED 0x00000824
  648. #define MAC_TX_STATS_RESV3 0x00000828
  649. #define MAC_TX_STATS_EXCESSIVE_COL 0x0000082c
  650. #define MAC_TX_STATS_LATE_COL 0x00000830
  651. #define MAC_TX_STATS_RESV4_1 0x00000834
  652. #define MAC_TX_STATS_RESV4_2 0x00000838
  653. #define MAC_TX_STATS_RESV4_3 0x0000083c
  654. #define MAC_TX_STATS_RESV4_4 0x00000840
  655. #define MAC_TX_STATS_RESV4_5 0x00000844
  656. #define MAC_TX_STATS_RESV4_6 0x00000848
  657. #define MAC_TX_STATS_RESV4_7 0x0000084c
  658. #define MAC_TX_STATS_RESV4_8 0x00000850
  659. #define MAC_TX_STATS_RESV4_9 0x00000854
  660. #define MAC_TX_STATS_RESV4_10 0x00000858
  661. #define MAC_TX_STATS_RESV4_11 0x0000085c
  662. #define MAC_TX_STATS_RESV4_12 0x00000860
  663. #define MAC_TX_STATS_RESV4_13 0x00000864
  664. #define MAC_TX_STATS_RESV4_14 0x00000868
  665. #define MAC_TX_STATS_UCAST 0x0000086c
  666. #define MAC_TX_STATS_MCAST 0x00000870
  667. #define MAC_TX_STATS_BCAST 0x00000874
  668. #define MAC_TX_STATS_RESV5_1 0x00000878
  669. #define MAC_TX_STATS_RESV5_2 0x0000087c
  670. #define MAC_RX_STATS_OCTETS 0x00000880
  671. #define MAC_RX_STATS_RESV1 0x00000884
  672. #define MAC_RX_STATS_FRAGMENTS 0x00000888
  673. #define MAC_RX_STATS_UCAST 0x0000088c
  674. #define MAC_RX_STATS_MCAST 0x00000890
  675. #define MAC_RX_STATS_BCAST 0x00000894
  676. #define MAC_RX_STATS_FCS_ERRORS 0x00000898
  677. #define MAC_RX_STATS_ALIGN_ERRORS 0x0000089c
  678. #define MAC_RX_STATS_XON_PAUSE_RECVD 0x000008a0
  679. #define MAC_RX_STATS_XOFF_PAUSE_RECVD 0x000008a4
  680. #define MAC_RX_STATS_MAC_CTRL_RECVD 0x000008a8
  681. #define MAC_RX_STATS_XOFF_ENTERED 0x000008ac
  682. #define MAC_RX_STATS_FRAME_TOO_LONG 0x000008b0
  683. #define MAC_RX_STATS_JABBERS 0x000008b4
  684. #define MAC_RX_STATS_UNDERSIZE 0x000008b8
  685. /* 0x8bc --> 0xc00 unused */
  686. /* Send data initiator control registers */
  687. #define SNDDATAI_MODE 0x00000c00
  688. #define SNDDATAI_MODE_RESET 0x00000001
  689. #define SNDDATAI_MODE_ENABLE 0x00000002
  690. #define SNDDATAI_MODE_STAT_OFLOW_ENAB 0x00000004
  691. #define SNDDATAI_STATUS 0x00000c04
  692. #define SNDDATAI_STATUS_STAT_OFLOW 0x00000004
  693. #define SNDDATAI_STATSCTRL 0x00000c08
  694. #define SNDDATAI_SCTRL_ENABLE 0x00000001
  695. #define SNDDATAI_SCTRL_FASTUPD 0x00000002
  696. #define SNDDATAI_SCTRL_CLEAR 0x00000004
  697. #define SNDDATAI_SCTRL_FLUSH 0x00000008
  698. #define SNDDATAI_SCTRL_FORCE_ZERO 0x00000010
  699. #define SNDDATAI_STATSENAB 0x00000c0c
  700. #define SNDDATAI_STATSINCMASK 0x00000c10
  701. /* 0xc14 --> 0xc80 unused */
  702. #define SNDDATAI_COS_CNT_0 0x00000c80
  703. #define SNDDATAI_COS_CNT_1 0x00000c84
  704. #define SNDDATAI_COS_CNT_2 0x00000c88
  705. #define SNDDATAI_COS_CNT_3 0x00000c8c
  706. #define SNDDATAI_COS_CNT_4 0x00000c90
  707. #define SNDDATAI_COS_CNT_5 0x00000c94
  708. #define SNDDATAI_COS_CNT_6 0x00000c98
  709. #define SNDDATAI_COS_CNT_7 0x00000c9c
  710. #define SNDDATAI_COS_CNT_8 0x00000ca0
  711. #define SNDDATAI_COS_CNT_9 0x00000ca4
  712. #define SNDDATAI_COS_CNT_10 0x00000ca8
  713. #define SNDDATAI_COS_CNT_11 0x00000cac
  714. #define SNDDATAI_COS_CNT_12 0x00000cb0
  715. #define SNDDATAI_COS_CNT_13 0x00000cb4
  716. #define SNDDATAI_COS_CNT_14 0x00000cb8
  717. #define SNDDATAI_COS_CNT_15 0x00000cbc
  718. #define SNDDATAI_DMA_RDQ_FULL_CNT 0x00000cc0
  719. #define SNDDATAI_DMA_PRIO_RDQ_FULL_CNT 0x00000cc4
  720. #define SNDDATAI_SDCQ_FULL_CNT 0x00000cc8
  721. #define SNDDATAI_NICRNG_SSND_PIDX_CNT 0x00000ccc
  722. #define SNDDATAI_STATS_UPDATED_CNT 0x00000cd0
  723. #define SNDDATAI_INTERRUPTS_CNT 0x00000cd4
  724. #define SNDDATAI_AVOID_INTERRUPTS_CNT 0x00000cd8
  725. #define SNDDATAI_SND_THRESH_HIT_CNT 0x00000cdc
  726. /* 0xce0 --> 0x1000 unused */
  727. /* Send data completion control registers */
  728. #define SNDDATAC_MODE 0x00001000
  729. #define SNDDATAC_MODE_RESET 0x00000001
  730. #define SNDDATAC_MODE_ENABLE 0x00000002
  731. /* 0x1004 --> 0x1400 unused */
  732. /* Send BD ring selector */
  733. #define SNDBDS_MODE 0x00001400
  734. #define SNDBDS_MODE_RESET 0x00000001
  735. #define SNDBDS_MODE_ENABLE 0x00000002
  736. #define SNDBDS_MODE_ATTN_ENABLE 0x00000004
  737. #define SNDBDS_STATUS 0x00001404
  738. #define SNDBDS_STATUS_ERROR_ATTN 0x00000004
  739. #define SNDBDS_HWDIAG 0x00001408
  740. /* 0x140c --> 0x1440 */
  741. #define SNDBDS_SEL_CON_IDX_0 0x00001440
  742. #define SNDBDS_SEL_CON_IDX_1 0x00001444
  743. #define SNDBDS_SEL_CON_IDX_2 0x00001448
  744. #define SNDBDS_SEL_CON_IDX_3 0x0000144c
  745. #define SNDBDS_SEL_CON_IDX_4 0x00001450
  746. #define SNDBDS_SEL_CON_IDX_5 0x00001454
  747. #define SNDBDS_SEL_CON_IDX_6 0x00001458
  748. #define SNDBDS_SEL_CON_IDX_7 0x0000145c
  749. #define SNDBDS_SEL_CON_IDX_8 0x00001460
  750. #define SNDBDS_SEL_CON_IDX_9 0x00001464
  751. #define SNDBDS_SEL_CON_IDX_10 0x00001468
  752. #define SNDBDS_SEL_CON_IDX_11 0x0000146c
  753. #define SNDBDS_SEL_CON_IDX_12 0x00001470
  754. #define SNDBDS_SEL_CON_IDX_13 0x00001474
  755. #define SNDBDS_SEL_CON_IDX_14 0x00001478
  756. #define SNDBDS_SEL_CON_IDX_15 0x0000147c
  757. /* 0x1480 --> 0x1800 unused */
  758. /* Send BD initiator control registers */
  759. #define SNDBDI_MODE 0x00001800
  760. #define SNDBDI_MODE_RESET 0x00000001
  761. #define SNDBDI_MODE_ENABLE 0x00000002
  762. #define SNDBDI_MODE_ATTN_ENABLE 0x00000004
  763. #define SNDBDI_STATUS 0x00001804
  764. #define SNDBDI_STATUS_ERROR_ATTN 0x00000004
  765. #define SNDBDI_IN_PROD_IDX_0 0x00001808
  766. #define SNDBDI_IN_PROD_IDX_1 0x0000180c
  767. #define SNDBDI_IN_PROD_IDX_2 0x00001810
  768. #define SNDBDI_IN_PROD_IDX_3 0x00001814
  769. #define SNDBDI_IN_PROD_IDX_4 0x00001818
  770. #define SNDBDI_IN_PROD_IDX_5 0x0000181c
  771. #define SNDBDI_IN_PROD_IDX_6 0x00001820
  772. #define SNDBDI_IN_PROD_IDX_7 0x00001824
  773. #define SNDBDI_IN_PROD_IDX_8 0x00001828
  774. #define SNDBDI_IN_PROD_IDX_9 0x0000182c
  775. #define SNDBDI_IN_PROD_IDX_10 0x00001830
  776. #define SNDBDI_IN_PROD_IDX_11 0x00001834
  777. #define SNDBDI_IN_PROD_IDX_12 0x00001838
  778. #define SNDBDI_IN_PROD_IDX_13 0x0000183c
  779. #define SNDBDI_IN_PROD_IDX_14 0x00001840
  780. #define SNDBDI_IN_PROD_IDX_15 0x00001844
  781. /* 0x1848 --> 0x1c00 unused */
  782. /* Send BD completion control registers */
  783. #define SNDBDC_MODE 0x00001c00
  784. #define SNDBDC_MODE_RESET 0x00000001
  785. #define SNDBDC_MODE_ENABLE 0x00000002
  786. #define SNDBDC_MODE_ATTN_ENABLE 0x00000004
  787. /* 0x1c04 --> 0x2000 unused */
  788. /* Receive list placement control registers */
  789. #define RCVLPC_MODE 0x00002000
  790. #define RCVLPC_MODE_RESET 0x00000001
  791. #define RCVLPC_MODE_ENABLE 0x00000002
  792. #define RCVLPC_MODE_CLASS0_ATTN_ENAB 0x00000004
  793. #define RCVLPC_MODE_MAPOOR_AATTN_ENAB 0x00000008
  794. #define RCVLPC_MODE_STAT_OFLOW_ENAB 0x00000010
  795. #define RCVLPC_STATUS 0x00002004
  796. #define RCVLPC_STATUS_CLASS0 0x00000004
  797. #define RCVLPC_STATUS_MAPOOR 0x00000008
  798. #define RCVLPC_STATUS_STAT_OFLOW 0x00000010
  799. #define RCVLPC_LOCK 0x00002008
  800. #define RCVLPC_LOCK_REQ_MASK 0x0000ffff
  801. #define RCVLPC_LOCK_REQ_SHIFT 0
  802. #define RCVLPC_LOCK_GRANT_MASK 0xffff0000
  803. #define RCVLPC_LOCK_GRANT_SHIFT 16
  804. #define RCVLPC_NON_EMPTY_BITS 0x0000200c
  805. #define RCVLPC_NON_EMPTY_BITS_MASK 0x0000ffff
  806. #define RCVLPC_CONFIG 0x00002010
  807. #define RCVLPC_STATSCTRL 0x00002014
  808. #define RCVLPC_STATSCTRL_ENABLE 0x00000001
  809. #define RCVLPC_STATSCTRL_FASTUPD 0x00000002
  810. #define RCVLPC_STATS_ENABLE 0x00002018
  811. #define RCVLPC_STATSENAB_LNGBRST_RFIX 0x00400000
  812. #define RCVLPC_STATS_INCMASK 0x0000201c
  813. /* 0x2020 --> 0x2100 unused */
  814. #define RCVLPC_SELLST_BASE 0x00002100 /* 16 16-byte entries */
  815. #define SELLST_TAIL 0x00000004
  816. #define SELLST_CONT 0x00000008
  817. #define SELLST_UNUSED 0x0000000c
  818. #define RCVLPC_COS_CNTL_BASE 0x00002200 /* 16 4-byte entries */
  819. #define RCVLPC_DROP_FILTER_CNT 0x00002240
  820. #define RCVLPC_DMA_WQ_FULL_CNT 0x00002244
  821. #define RCVLPC_DMA_HIPRIO_WQ_FULL_CNT 0x00002248
  822. #define RCVLPC_NO_RCV_BD_CNT 0x0000224c
  823. #define RCVLPC_IN_DISCARDS_CNT 0x00002250
  824. #define RCVLPC_IN_ERRORS_CNT 0x00002254
  825. #define RCVLPC_RCV_THRESH_HIT_CNT 0x00002258
  826. /* 0x225c --> 0x2400 unused */
  827. /* Receive Data and Receive BD Initiator Control */
  828. #define RCVDBDI_MODE 0x00002400
  829. #define RCVDBDI_MODE_RESET 0x00000001
  830. #define RCVDBDI_MODE_ENABLE 0x00000002
  831. #define RCVDBDI_MODE_JUMBOBD_NEEDED 0x00000004
  832. #define RCVDBDI_MODE_FRM_TOO_BIG 0x00000008
  833. #define RCVDBDI_MODE_INV_RING_SZ 0x00000010
  834. #define RCVDBDI_STATUS 0x00002404
  835. #define RCVDBDI_STATUS_JUMBOBD_NEEDED 0x00000004
  836. #define RCVDBDI_STATUS_FRM_TOO_BIG 0x00000008
  837. #define RCVDBDI_STATUS_INV_RING_SZ 0x00000010
  838. #define RCVDBDI_SPLIT_FRAME_MINSZ 0x00002408
  839. /* 0x240c --> 0x2440 unused */
  840. #define RCVDBDI_JUMBO_BD 0x00002440 /* TG3_BDINFO_... */
  841. #define RCVDBDI_STD_BD 0x00002450 /* TG3_BDINFO_... */
  842. #define RCVDBDI_MINI_BD 0x00002460 /* TG3_BDINFO_... */
  843. #define RCVDBDI_JUMBO_CON_IDX 0x00002470
  844. #define RCVDBDI_STD_CON_IDX 0x00002474
  845. #define RCVDBDI_MINI_CON_IDX 0x00002478
  846. /* 0x247c --> 0x2480 unused */
  847. #define RCVDBDI_BD_PROD_IDX_0 0x00002480
  848. #define RCVDBDI_BD_PROD_IDX_1 0x00002484
  849. #define RCVDBDI_BD_PROD_IDX_2 0x00002488
  850. #define RCVDBDI_BD_PROD_IDX_3 0x0000248c
  851. #define RCVDBDI_BD_PROD_IDX_4 0x00002490
  852. #define RCVDBDI_BD_PROD_IDX_5 0x00002494
  853. #define RCVDBDI_BD_PROD_IDX_6 0x00002498
  854. #define RCVDBDI_BD_PROD_IDX_7 0x0000249c
  855. #define RCVDBDI_BD_PROD_IDX_8 0x000024a0
  856. #define RCVDBDI_BD_PROD_IDX_9 0x000024a4
  857. #define RCVDBDI_BD_PROD_IDX_10 0x000024a8
  858. #define RCVDBDI_BD_PROD_IDX_11 0x000024ac
  859. #define RCVDBDI_BD_PROD_IDX_12 0x000024b0
  860. #define RCVDBDI_BD_PROD_IDX_13 0x000024b4
  861. #define RCVDBDI_BD_PROD_IDX_14 0x000024b8
  862. #define RCVDBDI_BD_PROD_IDX_15 0x000024bc
  863. #define RCVDBDI_HWDIAG 0x000024c0
  864. /* 0x24c4 --> 0x2800 unused */
  865. /* Receive Data Completion Control */
  866. #define RCVDCC_MODE 0x00002800
  867. #define RCVDCC_MODE_RESET 0x00000001
  868. #define RCVDCC_MODE_ENABLE 0x00000002
  869. #define RCVDCC_MODE_ATTN_ENABLE 0x00000004
  870. /* 0x2804 --> 0x2c00 unused */
  871. /* Receive BD Initiator Control Registers */
  872. #define RCVBDI_MODE 0x00002c00
  873. #define RCVBDI_MODE_RESET 0x00000001
  874. #define RCVBDI_MODE_ENABLE 0x00000002
  875. #define RCVBDI_MODE_RCB_ATTN_ENAB 0x00000004
  876. #define RCVBDI_STATUS 0x00002c04
  877. #define RCVBDI_STATUS_RCB_ATTN 0x00000004
  878. #define RCVBDI_JUMBO_PROD_IDX 0x00002c08
  879. #define RCVBDI_STD_PROD_IDX 0x00002c0c
  880. #define RCVBDI_MINI_PROD_IDX 0x00002c10
  881. #define RCVBDI_MINI_THRESH 0x00002c14
  882. #define RCVBDI_STD_THRESH 0x00002c18
  883. #define RCVBDI_JUMBO_THRESH 0x00002c1c
  884. /* 0x2c20 --> 0x3000 unused */
  885. /* Receive BD Completion Control Registers */
  886. #define RCVCC_MODE 0x00003000
  887. #define RCVCC_MODE_RESET 0x00000001
  888. #define RCVCC_MODE_ENABLE 0x00000002
  889. #define RCVCC_MODE_ATTN_ENABLE 0x00000004
  890. #define RCVCC_STATUS 0x00003004
  891. #define RCVCC_STATUS_ERROR_ATTN 0x00000004
  892. #define RCVCC_JUMP_PROD_IDX 0x00003008
  893. #define RCVCC_STD_PROD_IDX 0x0000300c
  894. #define RCVCC_MINI_PROD_IDX 0x00003010
  895. /* 0x3014 --> 0x3400 unused */
  896. /* Receive list selector control registers */
  897. #define RCVLSC_MODE 0x00003400
  898. #define RCVLSC_MODE_RESET 0x00000001
  899. #define RCVLSC_MODE_ENABLE 0x00000002
  900. #define RCVLSC_MODE_ATTN_ENABLE 0x00000004
  901. #define RCVLSC_STATUS 0x00003404
  902. #define RCVLSC_STATUS_ERROR_ATTN 0x00000004
  903. /* 0x3408 --> 0x3800 unused */
  904. /* Mbuf cluster free registers */
  905. #define MBFREE_MODE 0x00003800
  906. #define MBFREE_MODE_RESET 0x00000001
  907. #define MBFREE_MODE_ENABLE 0x00000002
  908. #define MBFREE_STATUS 0x00003804
  909. /* 0x3808 --> 0x3c00 unused */
  910. /* Host coalescing control registers */
  911. #define HOSTCC_MODE 0x00003c00
  912. #define HOSTCC_MODE_RESET 0x00000001
  913. #define HOSTCC_MODE_ENABLE 0x00000002
  914. #define HOSTCC_MODE_ATTN 0x00000004
  915. #define HOSTCC_MODE_NOW 0x00000008
  916. #define HOSTCC_MODE_FULL_STATUS 0x00000000
  917. #define HOSTCC_MODE_64BYTE 0x00000080
  918. #define HOSTCC_MODE_32BYTE 0x00000100
  919. #define HOSTCC_MODE_CLRTICK_RXBD 0x00000200
  920. #define HOSTCC_MODE_CLRTICK_TXBD 0x00000400
  921. #define HOSTCC_MODE_NOINT_ON_NOW 0x00000800
  922. #define HOSTCC_MODE_NOINT_ON_FORCE 0x00001000
  923. #define HOSTCC_STATUS 0x00003c04
  924. #define HOSTCC_STATUS_ERROR_ATTN 0x00000004
  925. #define HOSTCC_RXCOL_TICKS 0x00003c08
  926. #define LOW_RXCOL_TICKS 0x00000032
  927. #define DEFAULT_RXCOL_TICKS 0x00000048
  928. #define HIGH_RXCOL_TICKS 0x00000096
  929. #define HOSTCC_TXCOL_TICKS 0x00003c0c
  930. #define LOW_TXCOL_TICKS 0x00000096
  931. #define DEFAULT_TXCOL_TICKS 0x0000012c
  932. #define HIGH_TXCOL_TICKS 0x00000145
  933. #define HOSTCC_RXMAX_FRAMES 0x00003c10
  934. #define LOW_RXMAX_FRAMES 0x00000005
  935. #define DEFAULT_RXMAX_FRAMES 0x00000008
  936. #define HIGH_RXMAX_FRAMES 0x00000012
  937. #define HOSTCC_TXMAX_FRAMES 0x00003c14
  938. #define LOW_TXMAX_FRAMES 0x00000035
  939. #define DEFAULT_TXMAX_FRAMES 0x0000004b
  940. #define HIGH_TXMAX_FRAMES 0x00000052
  941. #define HOSTCC_RXCOAL_TICK_INT 0x00003c18
  942. #define DEFAULT_RXCOAL_TICK_INT 0x00000019
  943. #define HOSTCC_TXCOAL_TICK_INT 0x00003c1c
  944. #define DEFAULT_TXCOAL_TICK_INT 0x00000019
  945. #define HOSTCC_RXCOAL_MAXF_INT 0x00003c20
  946. #define DEFAULT_RXCOAL_MAXF_INT 0x00000005
  947. #define HOSTCC_TXCOAL_MAXF_INT 0x00003c24
  948. #define DEFAULT_TXCOAL_MAXF_INT 0x00000005
  949. #define HOSTCC_STAT_COAL_TICKS 0x00003c28
  950. #define DEFAULT_STAT_COAL_TICKS 0x000f4240
  951. /* 0x3c2c --> 0x3c30 unused */
  952. #define HOSTCC_STATS_BLK_HOST_ADDR 0x00003c30 /* 64-bit */
  953. #define HOSTCC_STATUS_BLK_HOST_ADDR 0x00003c38 /* 64-bit */
  954. #define HOSTCC_STATS_BLK_NIC_ADDR 0x00003c40
  955. #define HOSTCC_STATUS_BLK_NIC_ADDR 0x00003c44
  956. #define HOSTCC_FLOW_ATTN 0x00003c48
  957. /* 0x3c4c --> 0x3c50 unused */
  958. #define HOSTCC_JUMBO_CON_IDX 0x00003c50
  959. #define HOSTCC_STD_CON_IDX 0x00003c54
  960. #define HOSTCC_MINI_CON_IDX 0x00003c58
  961. /* 0x3c5c --> 0x3c80 unused */
  962. #define HOSTCC_RET_PROD_IDX_0 0x00003c80
  963. #define HOSTCC_RET_PROD_IDX_1 0x00003c84
  964. #define HOSTCC_RET_PROD_IDX_2 0x00003c88
  965. #define HOSTCC_RET_PROD_IDX_3 0x00003c8c
  966. #define HOSTCC_RET_PROD_IDX_4 0x00003c90
  967. #define HOSTCC_RET_PROD_IDX_5 0x00003c94
  968. #define HOSTCC_RET_PROD_IDX_6 0x00003c98
  969. #define HOSTCC_RET_PROD_IDX_7 0x00003c9c
  970. #define HOSTCC_RET_PROD_IDX_8 0x00003ca0
  971. #define HOSTCC_RET_PROD_IDX_9 0x00003ca4
  972. #define HOSTCC_RET_PROD_IDX_10 0x00003ca8
  973. #define HOSTCC_RET_PROD_IDX_11 0x00003cac
  974. #define HOSTCC_RET_PROD_IDX_12 0x00003cb0
  975. #define HOSTCC_RET_PROD_IDX_13 0x00003cb4
  976. #define HOSTCC_RET_PROD_IDX_14 0x00003cb8
  977. #define HOSTCC_RET_PROD_IDX_15 0x00003cbc
  978. #define HOSTCC_SND_CON_IDX_0 0x00003cc0
  979. #define HOSTCC_SND_CON_IDX_1 0x00003cc4
  980. #define HOSTCC_SND_CON_IDX_2 0x00003cc8
  981. #define HOSTCC_SND_CON_IDX_3 0x00003ccc
  982. #define HOSTCC_SND_CON_IDX_4 0x00003cd0
  983. #define HOSTCC_SND_CON_IDX_5 0x00003cd4
  984. #define HOSTCC_SND_CON_IDX_6 0x00003cd8
  985. #define HOSTCC_SND_CON_IDX_7 0x00003cdc
  986. #define HOSTCC_SND_CON_IDX_8 0x00003ce0
  987. #define HOSTCC_SND_CON_IDX_9 0x00003ce4
  988. #define HOSTCC_SND_CON_IDX_10 0x00003ce8
  989. #define HOSTCC_SND_CON_IDX_11 0x00003cec
  990. #define HOSTCC_SND_CON_IDX_12 0x00003cf0
  991. #define HOSTCC_SND_CON_IDX_13 0x00003cf4
  992. #define HOSTCC_SND_CON_IDX_14 0x00003cf8
  993. #define HOSTCC_SND_CON_IDX_15 0x00003cfc
  994. /* 0x3d00 --> 0x4000 unused */
  995. /* Memory arbiter control registers */
  996. #define MEMARB_MODE 0x00004000
  997. #define MEMARB_MODE_RESET 0x00000001
  998. #define MEMARB_MODE_ENABLE 0x00000002
  999. #define MEMARB_STATUS 0x00004004
  1000. #define MEMARB_TRAP_ADDR_LOW 0x00004008
  1001. #define MEMARB_TRAP_ADDR_HIGH 0x0000400c
  1002. /* 0x4010 --> 0x4400 unused */
  1003. /* Buffer manager control registers */
  1004. #define BUFMGR_MODE 0x00004400
  1005. #define BUFMGR_MODE_RESET 0x00000001
  1006. #define BUFMGR_MODE_ENABLE 0x00000002
  1007. #define BUFMGR_MODE_ATTN_ENABLE 0x00000004
  1008. #define BUFMGR_MODE_BM_TEST 0x00000008
  1009. #define BUFMGR_MODE_MBLOW_ATTN_ENAB 0x00000010
  1010. #define BUFMGR_STATUS 0x00004404
  1011. #define BUFMGR_STATUS_ERROR 0x00000004
  1012. #define BUFMGR_STATUS_MBLOW 0x00000010
  1013. #define BUFMGR_MB_POOL_ADDR 0x00004408
  1014. #define BUFMGR_MB_POOL_SIZE 0x0000440c
  1015. #define BUFMGR_MB_RDMA_LOW_WATER 0x00004410
  1016. #define DEFAULT_MB_RDMA_LOW_WATER 0x00000050
  1017. #define DEFAULT_MB_RDMA_LOW_WATER_5705 0x00000000
  1018. #define DEFAULT_MB_RDMA_LOW_WATER_JUMBO 0x00000130
  1019. #define BUFMGR_MB_MACRX_LOW_WATER 0x00004414
  1020. #define DEFAULT_MB_MACRX_LOW_WATER 0x00000020
  1021. #define DEFAULT_MB_MACRX_LOW_WATER_5705 0x00000010
  1022. #define DEFAULT_MB_MACRX_LOW_WATER_JUMBO 0x00000098
  1023. #define BUFMGR_MB_HIGH_WATER 0x00004418
  1024. #define DEFAULT_MB_HIGH_WATER 0x00000060
  1025. #define DEFAULT_MB_HIGH_WATER_5705 0x00000060
  1026. #define DEFAULT_MB_HIGH_WATER_JUMBO 0x0000017c
  1027. #define BUFMGR_RX_MB_ALLOC_REQ 0x0000441c
  1028. #define BUFMGR_MB_ALLOC_BIT 0x10000000
  1029. #define BUFMGR_RX_MB_ALLOC_RESP 0x00004420
  1030. #define BUFMGR_TX_MB_ALLOC_REQ 0x00004424
  1031. #define BUFMGR_TX_MB_ALLOC_RESP 0x00004428
  1032. #define BUFMGR_DMA_DESC_POOL_ADDR 0x0000442c
  1033. #define BUFMGR_DMA_DESC_POOL_SIZE 0x00004430
  1034. #define BUFMGR_DMA_LOW_WATER 0x00004434
  1035. #define DEFAULT_DMA_LOW_WATER 0x00000005
  1036. #define BUFMGR_DMA_HIGH_WATER 0x00004438
  1037. #define DEFAULT_DMA_HIGH_WATER 0x0000000a
  1038. #define BUFMGR_RX_DMA_ALLOC_REQ 0x0000443c
  1039. #define BUFMGR_RX_DMA_ALLOC_RESP 0x00004440
  1040. #define BUFMGR_TX_DMA_ALLOC_REQ 0x00004444
  1041. #define BUFMGR_TX_DMA_ALLOC_RESP 0x00004448
  1042. #define BUFMGR_HWDIAG_0 0x0000444c
  1043. #define BUFMGR_HWDIAG_1 0x00004450
  1044. #define BUFMGR_HWDIAG_2 0x00004454
  1045. /* 0x4458 --> 0x4800 unused */
  1046. /* Read DMA control registers */
  1047. #define RDMAC_MODE 0x00004800
  1048. #define RDMAC_MODE_RESET 0x00000001
  1049. #define RDMAC_MODE_ENABLE 0x00000002
  1050. #define RDMAC_MODE_TGTABORT_ENAB 0x00000004
  1051. #define RDMAC_MODE_MSTABORT_ENAB 0x00000008
  1052. #define RDMAC_MODE_PARITYERR_ENAB 0x00000010
  1053. #define RDMAC_MODE_ADDROFLOW_ENAB 0x00000020
  1054. #define RDMAC_MODE_FIFOOFLOW_ENAB 0x00000040
  1055. #define RDMAC_MODE_FIFOURUN_ENAB 0x00000080
  1056. #define RDMAC_MODE_FIFOOREAD_ENAB 0x00000100
  1057. #define RDMAC_MODE_LNGREAD_ENAB 0x00000200
  1058. #define RDMAC_MODE_SPLIT_ENABLE 0x00000800
  1059. #define RDMAC_MODE_SPLIT_RESET 0x00001000
  1060. #define RDMAC_MODE_FIFO_SIZE_128 0x00020000
  1061. #define RDMAC_MODE_FIFO_LONG_BURST 0x00030000
  1062. #define RDMAC_STATUS 0x00004804
  1063. #define RDMAC_STATUS_TGTABORT 0x00000004
  1064. #define RDMAC_STATUS_MSTABORT 0x00000008
  1065. #define RDMAC_STATUS_PARITYERR 0x00000010
  1066. #define RDMAC_STATUS_ADDROFLOW 0x00000020
  1067. #define RDMAC_STATUS_FIFOOFLOW 0x00000040
  1068. #define RDMAC_STATUS_FIFOURUN 0x00000080
  1069. #define RDMAC_STATUS_FIFOOREAD 0x00000100
  1070. #define RDMAC_STATUS_LNGREAD 0x00000200
  1071. /* 0x4808 --> 0x4c00 unused */
  1072. /* Write DMA control registers */
  1073. #define WDMAC_MODE 0x00004c00
  1074. #define WDMAC_MODE_RESET 0x00000001
  1075. #define WDMAC_MODE_ENABLE 0x00000002
  1076. #define WDMAC_MODE_TGTABORT_ENAB 0x00000004
  1077. #define WDMAC_MODE_MSTABORT_ENAB 0x00000008
  1078. #define WDMAC_MODE_PARITYERR_ENAB 0x00000010
  1079. #define WDMAC_MODE_ADDROFLOW_ENAB 0x00000020
  1080. #define WDMAC_MODE_FIFOOFLOW_ENAB 0x00000040
  1081. #define WDMAC_MODE_FIFOURUN_ENAB 0x00000080
  1082. #define WDMAC_MODE_FIFOOREAD_ENAB 0x00000100
  1083. #define WDMAC_MODE_LNGREAD_ENAB 0x00000200
  1084. #define WDMAC_MODE_RX_ACCEL 0x00000400
  1085. #define WDMAC_STATUS 0x00004c04
  1086. #define WDMAC_STATUS_TGTABORT 0x00000004
  1087. #define WDMAC_STATUS_MSTABORT 0x00000008
  1088. #define WDMAC_STATUS_PARITYERR 0x00000010
  1089. #define WDMAC_STATUS_ADDROFLOW 0x00000020
  1090. #define WDMAC_STATUS_FIFOOFLOW 0x00000040
  1091. #define WDMAC_STATUS_FIFOURUN 0x00000080
  1092. #define WDMAC_STATUS_FIFOOREAD 0x00000100
  1093. #define WDMAC_STATUS_LNGREAD 0x00000200
  1094. /* 0x4c08 --> 0x5000 unused */
  1095. /* Per-cpu register offsets (arm9) */
  1096. #define CPU_MODE 0x00000000
  1097. #define CPU_MODE_RESET 0x00000001
  1098. #define CPU_MODE_HALT 0x00000400
  1099. #define CPU_STATE 0x00000004
  1100. #define CPU_EVTMASK 0x00000008
  1101. /* 0xc --> 0x1c reserved */
  1102. #define CPU_PC 0x0000001c
  1103. #define CPU_INSN 0x00000020
  1104. #define CPU_SPAD_UFLOW 0x00000024
  1105. #define CPU_WDOG_CLEAR 0x00000028
  1106. #define CPU_WDOG_VECTOR 0x0000002c
  1107. #define CPU_WDOG_PC 0x00000030
  1108. #define CPU_HW_BP 0x00000034
  1109. /* 0x38 --> 0x44 unused */
  1110. #define CPU_WDOG_SAVED_STATE 0x00000044
  1111. #define CPU_LAST_BRANCH_ADDR 0x00000048
  1112. #define CPU_SPAD_UFLOW_SET 0x0000004c
  1113. /* 0x50 --> 0x200 unused */
  1114. #define CPU_R0 0x00000200
  1115. #define CPU_R1 0x00000204
  1116. #define CPU_R2 0x00000208
  1117. #define CPU_R3 0x0000020c
  1118. #define CPU_R4 0x00000210
  1119. #define CPU_R5 0x00000214
  1120. #define CPU_R6 0x00000218
  1121. #define CPU_R7 0x0000021c
  1122. #define CPU_R8 0x00000220
  1123. #define CPU_R9 0x00000224
  1124. #define CPU_R10 0x00000228
  1125. #define CPU_R11 0x0000022c
  1126. #define CPU_R12 0x00000230
  1127. #define CPU_R13 0x00000234
  1128. #define CPU_R14 0x00000238
  1129. #define CPU_R15 0x0000023c
  1130. #define CPU_R16 0x00000240
  1131. #define CPU_R17 0x00000244
  1132. #define CPU_R18 0x00000248
  1133. #define CPU_R19 0x0000024c
  1134. #define CPU_R20 0x00000250
  1135. #define CPU_R21 0x00000254
  1136. #define CPU_R22 0x00000258
  1137. #define CPU_R23 0x0000025c
  1138. #define CPU_R24 0x00000260
  1139. #define CPU_R25 0x00000264
  1140. #define CPU_R26 0x00000268
  1141. #define CPU_R27 0x0000026c
  1142. #define CPU_R28 0x00000270
  1143. #define CPU_R29 0x00000274
  1144. #define CPU_R30 0x00000278
  1145. #define CPU_R31 0x0000027c
  1146. /* 0x280 --> 0x400 unused */
  1147. #define RX_CPU_BASE 0x00005000
  1148. #define TX_CPU_BASE 0x00005400
  1149. /* Mailboxes */
  1150. #define GRCMBOX_INTERRUPT_0 0x00005800 /* 64-bit */
  1151. #define GRCMBOX_INTERRUPT_1 0x00005808 /* 64-bit */
  1152. #define GRCMBOX_INTERRUPT_2 0x00005810 /* 64-bit */
  1153. #define GRCMBOX_INTERRUPT_3 0x00005818 /* 64-bit */
  1154. #define GRCMBOX_GENERAL_0 0x00005820 /* 64-bit */
  1155. #define GRCMBOX_GENERAL_1 0x00005828 /* 64-bit */
  1156. #define GRCMBOX_GENERAL_2 0x00005830 /* 64-bit */
  1157. #define GRCMBOX_GENERAL_3 0x00005838 /* 64-bit */
  1158. #define GRCMBOX_GENERAL_4 0x00005840 /* 64-bit */
  1159. #define GRCMBOX_GENERAL_5 0x00005848 /* 64-bit */
  1160. #define GRCMBOX_GENERAL_6 0x00005850 /* 64-bit */
  1161. #define GRCMBOX_GENERAL_7 0x00005858 /* 64-bit */
  1162. #define GRCMBOX_RELOAD_STAT 0x00005860 /* 64-bit */
  1163. #define GRCMBOX_RCVSTD_PROD_IDX 0x00005868 /* 64-bit */
  1164. #define GRCMBOX_RCVJUMBO_PROD_IDX 0x00005870 /* 64-bit */
  1165. #define GRCMBOX_RCVMINI_PROD_IDX 0x00005878 /* 64-bit */
  1166. #define GRCMBOX_RCVRET_CON_IDX_0 0x00005880 /* 64-bit */
  1167. #define GRCMBOX_RCVRET_CON_IDX_1 0x00005888 /* 64-bit */
  1168. #define GRCMBOX_RCVRET_CON_IDX_2 0x00005890 /* 64-bit */
  1169. #define GRCMBOX_RCVRET_CON_IDX_3 0x00005898 /* 64-bit */
  1170. #define GRCMBOX_RCVRET_CON_IDX_4 0x000058a0 /* 64-bit */
  1171. #define GRCMBOX_RCVRET_CON_IDX_5 0x000058a8 /* 64-bit */
  1172. #define GRCMBOX_RCVRET_CON_IDX_6 0x000058b0 /* 64-bit */
  1173. #define GRCMBOX_RCVRET_CON_IDX_7 0x000058b8 /* 64-bit */
  1174. #define GRCMBOX_RCVRET_CON_IDX_8 0x000058c0 /* 64-bit */
  1175. #define GRCMBOX_RCVRET_CON_IDX_9 0x000058c8 /* 64-bit */
  1176. #define GRCMBOX_RCVRET_CON_IDX_10 0x000058d0 /* 64-bit */
  1177. #define GRCMBOX_RCVRET_CON_IDX_11 0x000058d8 /* 64-bit */
  1178. #define GRCMBOX_RCVRET_CON_IDX_12 0x000058e0 /* 64-bit */
  1179. #define GRCMBOX_RCVRET_CON_IDX_13 0x000058e8 /* 64-bit */
  1180. #define GRCMBOX_RCVRET_CON_IDX_14 0x000058f0 /* 64-bit */
  1181. #define GRCMBOX_RCVRET_CON_IDX_15 0x000058f8 /* 64-bit */
  1182. #define GRCMBOX_SNDHOST_PROD_IDX_0 0x00005900 /* 64-bit */
  1183. #define GRCMBOX_SNDHOST_PROD_IDX_1 0x00005908 /* 64-bit */
  1184. #define GRCMBOX_SNDHOST_PROD_IDX_2 0x00005910 /* 64-bit */
  1185. #define GRCMBOX_SNDHOST_PROD_IDX_3 0x00005918 /* 64-bit */
  1186. #define GRCMBOX_SNDHOST_PROD_IDX_4 0x00005920 /* 64-bit */
  1187. #define GRCMBOX_SNDHOST_PROD_IDX_5 0x00005928 /* 64-bit */
  1188. #define GRCMBOX_SNDHOST_PROD_IDX_6 0x00005930 /* 64-bit */
  1189. #define GRCMBOX_SNDHOST_PROD_IDX_7 0x00005938 /* 64-bit */
  1190. #define GRCMBOX_SNDHOST_PROD_IDX_8 0x00005940 /* 64-bit */
  1191. #define GRCMBOX_SNDHOST_PROD_IDX_9 0x00005948 /* 64-bit */
  1192. #define GRCMBOX_SNDHOST_PROD_IDX_10 0x00005950 /* 64-bit */
  1193. #define GRCMBOX_SNDHOST_PROD_IDX_11 0x00005958 /* 64-bit */
  1194. #define GRCMBOX_SNDHOST_PROD_IDX_12 0x00005960 /* 64-bit */
  1195. #define GRCMBOX_SNDHOST_PROD_IDX_13 0x00005968 /* 64-bit */
  1196. #define GRCMBOX_SNDHOST_PROD_IDX_14 0x00005970 /* 64-bit */
  1197. #define GRCMBOX_SNDHOST_PROD_IDX_15 0x00005978 /* 64-bit */
  1198. #define GRCMBOX_SNDNIC_PROD_IDX_0 0x00005980 /* 64-bit */
  1199. #define GRCMBOX_SNDNIC_PROD_IDX_1 0x00005988 /* 64-bit */
  1200. #define GRCMBOX_SNDNIC_PROD_IDX_2 0x00005990 /* 64-bit */
  1201. #define GRCMBOX_SNDNIC_PROD_IDX_3 0x00005998 /* 64-bit */
  1202. #define GRCMBOX_SNDNIC_PROD_IDX_4 0x000059a0 /* 64-bit */
  1203. #define GRCMBOX_SNDNIC_PROD_IDX_5 0x000059a8 /* 64-bit */
  1204. #define GRCMBOX_SNDNIC_PROD_IDX_6 0x000059b0 /* 64-bit */
  1205. #define GRCMBOX_SNDNIC_PROD_IDX_7 0x000059b8 /* 64-bit */
  1206. #define GRCMBOX_SNDNIC_PROD_IDX_8 0x000059c0 /* 64-bit */
  1207. #define GRCMBOX_SNDNIC_PROD_IDX_9 0x000059c8 /* 64-bit */
  1208. #define GRCMBOX_SNDNIC_PROD_IDX_10 0x000059d0 /* 64-bit */
  1209. #define GRCMBOX_SNDNIC_PROD_IDX_11 0x000059d8 /* 64-bit */
  1210. #define GRCMBOX_SNDNIC_PROD_IDX_12 0x000059e0 /* 64-bit */
  1211. #define GRCMBOX_SNDNIC_PROD_IDX_13 0x000059e8 /* 64-bit */
  1212. #define GRCMBOX_SNDNIC_PROD_IDX_14 0x000059f0 /* 64-bit */
  1213. #define GRCMBOX_SNDNIC_PROD_IDX_15 0x000059f8 /* 64-bit */
  1214. #define GRCMBOX_HIGH_PRIO_EV_VECTOR 0x00005a00
  1215. #define GRCMBOX_HIGH_PRIO_EV_MASK 0x00005a04
  1216. #define GRCMBOX_LOW_PRIO_EV_VEC 0x00005a08
  1217. #define GRCMBOX_LOW_PRIO_EV_MASK 0x00005a0c
  1218. /* 0x5a10 --> 0x5c00 */
  1219. /* Flow Through queues */
  1220. #define FTQ_RESET 0x00005c00
  1221. /* 0x5c04 --> 0x5c10 unused */
  1222. #define FTQ_DMA_NORM_READ_CTL 0x00005c10
  1223. #define FTQ_DMA_NORM_READ_FULL_CNT 0x00005c14
  1224. #define FTQ_DMA_NORM_READ_FIFO_ENQDEQ 0x00005c18
  1225. #define FTQ_DMA_NORM_READ_WRITE_PEEK 0x00005c1c
  1226. #define FTQ_DMA_HIGH_READ_CTL 0x00005c20
  1227. #define FTQ_DMA_HIGH_READ_FULL_CNT 0x00005c24
  1228. #define FTQ_DMA_HIGH_READ_FIFO_ENQDEQ 0x00005c28
  1229. #define FTQ_DMA_HIGH_READ_WRITE_PEEK 0x00005c2c
  1230. #define FTQ_DMA_COMP_DISC_CTL 0x00005c30
  1231. #define FTQ_DMA_COMP_DISC_FULL_CNT 0x00005c34
  1232. #define FTQ_DMA_COMP_DISC_FIFO_ENQDEQ 0x00005c38
  1233. #define FTQ_DMA_COMP_DISC_WRITE_PEEK 0x00005c3c
  1234. #define FTQ_SEND_BD_COMP_CTL 0x00005c40
  1235. #define FTQ_SEND_BD_COMP_FULL_CNT 0x00005c44
  1236. #define FTQ_SEND_BD_COMP_FIFO_ENQDEQ 0x00005c48
  1237. #define FTQ_SEND_BD_COMP_WRITE_PEEK 0x00005c4c
  1238. #define FTQ_SEND_DATA_INIT_CTL 0x00005c50
  1239. #define FTQ_SEND_DATA_INIT_FULL_CNT 0x00005c54
  1240. #define FTQ_SEND_DATA_INIT_FIFO_ENQDEQ 0x00005c58
  1241. #define FTQ_SEND_DATA_INIT_WRITE_PEEK 0x00005c5c
  1242. #define FTQ_DMA_NORM_WRITE_CTL 0x00005c60
  1243. #define FTQ_DMA_NORM_WRITE_FULL_CNT 0x00005c64
  1244. #define FTQ_DMA_NORM_WRITE_FIFO_ENQDEQ 0x00005c68
  1245. #define FTQ_DMA_NORM_WRITE_WRITE_PEEK 0x00005c6c
  1246. #define FTQ_DMA_HIGH_WRITE_CTL 0x00005c70
  1247. #define FTQ_DMA_HIGH_WRITE_FULL_CNT 0x00005c74
  1248. #define FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ 0x00005c78
  1249. #define FTQ_DMA_HIGH_WRITE_WRITE_PEEK 0x00005c7c
  1250. #define FTQ_SWTYPE1_CTL 0x00005c80
  1251. #define FTQ_SWTYPE1_FULL_CNT 0x00005c84
  1252. #define FTQ_SWTYPE1_FIFO_ENQDEQ 0x00005c88
  1253. #define FTQ_SWTYPE1_WRITE_PEEK 0x00005c8c
  1254. #define FTQ_SEND_DATA_COMP_CTL 0x00005c90
  1255. #define FTQ_SEND_DATA_COMP_FULL_CNT 0x00005c94
  1256. #define FTQ_SEND_DATA_COMP_FIFO_ENQDEQ 0x00005c98
  1257. #define FTQ_SEND_DATA_COMP_WRITE_PEEK 0x00005c9c
  1258. #define FTQ_HOST_COAL_CTL 0x00005ca0
  1259. #define FTQ_HOST_COAL_FULL_CNT 0x00005ca4
  1260. #define FTQ_HOST_COAL_FIFO_ENQDEQ 0x00005ca8
  1261. #define FTQ_HOST_COAL_WRITE_PEEK 0x00005cac
  1262. #define FTQ_MAC_TX_CTL 0x00005cb0
  1263. #define FTQ_MAC_TX_FULL_CNT 0x00005cb4
  1264. #define FTQ_MAC_TX_FIFO_ENQDEQ 0x00005cb8
  1265. #define FTQ_MAC_TX_WRITE_PEEK 0x00005cbc
  1266. #define FTQ_MB_FREE_CTL 0x00005cc0
  1267. #define FTQ_MB_FREE_FULL_CNT 0x00005cc4
  1268. #define FTQ_MB_FREE_FIFO_ENQDEQ 0x00005cc8
  1269. #define FTQ_MB_FREE_WRITE_PEEK 0x00005ccc
  1270. #define FTQ_RCVBD_COMP_CTL 0x00005cd0
  1271. #define FTQ_RCVBD_COMP_FULL_CNT 0x00005cd4
  1272. #define FTQ_RCVBD_COMP_FIFO_ENQDEQ 0x00005cd8
  1273. #define FTQ_RCVBD_COMP_WRITE_PEEK 0x00005cdc
  1274. #define FTQ_RCVLST_PLMT_CTL 0x00005ce0
  1275. #define FTQ_RCVLST_PLMT_FULL_CNT 0x00005ce4
  1276. #define FTQ_RCVLST_PLMT_FIFO_ENQDEQ 0x00005ce8
  1277. #define FTQ_RCVLST_PLMT_WRITE_PEEK 0x00005cec
  1278. #define FTQ_RCVDATA_INI_CTL 0x00005cf0
  1279. #define FTQ_RCVDATA_INI_FULL_CNT 0x00005cf4
  1280. #define FTQ_RCVDATA_INI_FIFO_ENQDEQ 0x00005cf8
  1281. #define FTQ_RCVDATA_INI_WRITE_PEEK 0x00005cfc
  1282. #define FTQ_RCVDATA_COMP_CTL 0x00005d00
  1283. #define FTQ_RCVDATA_COMP_FULL_CNT 0x00005d04
  1284. #define FTQ_RCVDATA_COMP_FIFO_ENQDEQ 0x00005d08
  1285. #define FTQ_RCVDATA_COMP_WRITE_PEEK 0x00005d0c
  1286. #define FTQ_SWTYPE2_CTL 0x00005d10
  1287. #define FTQ_SWTYPE2_FULL_CNT 0x00005d14
  1288. #define FTQ_SWTYPE2_FIFO_ENQDEQ 0x00005d18
  1289. #define FTQ_SWTYPE2_WRITE_PEEK 0x00005d1c
  1290. /* 0x5d20 --> 0x6000 unused */
  1291. /* Message signaled interrupt registers */
  1292. #define MSGINT_MODE 0x00006000
  1293. #define MSGINT_MODE_RESET 0x00000001
  1294. #define MSGINT_MODE_ENABLE 0x00000002
  1295. #define MSGINT_STATUS 0x00006004
  1296. #define MSGINT_FIFO 0x00006008
  1297. /* 0x600c --> 0x6400 unused */
  1298. /* DMA completion registers */
  1299. #define DMAC_MODE 0x00006400
  1300. #define DMAC_MODE_RESET 0x00000001
  1301. #define DMAC_MODE_ENABLE 0x00000002
  1302. /* 0x6404 --> 0x6800 unused */
  1303. /* GRC registers */
  1304. #define GRC_MODE 0x00006800
  1305. #define GRC_MODE_UPD_ON_COAL 0x00000001
  1306. #define GRC_MODE_BSWAP_NONFRM_DATA 0x00000002
  1307. #define GRC_MODE_WSWAP_NONFRM_DATA 0x00000004
  1308. #define GRC_MODE_BSWAP_DATA 0x00000010
  1309. #define GRC_MODE_WSWAP_DATA 0x00000020
  1310. #define GRC_MODE_SPLITHDR 0x00000100
  1311. #define GRC_MODE_NOFRM_CRACKING 0x00000200
  1312. #define GRC_MODE_INCL_CRC 0x00000400
  1313. #define GRC_MODE_ALLOW_BAD_FRMS 0x00000800
  1314. #define GRC_MODE_NOIRQ_ON_SENDS 0x00002000
  1315. #define GRC_MODE_NOIRQ_ON_RCV 0x00004000
  1316. #define GRC_MODE_FORCE_PCI32BIT 0x00008000
  1317. #define GRC_MODE_HOST_STACKUP 0x00010000
  1318. #define GRC_MODE_HOST_SENDBDS 0x00020000
  1319. #define GRC_MODE_NO_TX_PHDR_CSUM 0x00100000
  1320. #define GRC_MODE_NO_RX_PHDR_CSUM 0x00800000
  1321. #define GRC_MODE_IRQ_ON_TX_CPU_ATTN 0x01000000
  1322. #define GRC_MODE_IRQ_ON_RX_CPU_ATTN 0x02000000
  1323. #define GRC_MODE_IRQ_ON_MAC_ATTN 0x04000000
  1324. #define GRC_MODE_IRQ_ON_DMA_ATTN 0x08000000
  1325. #define GRC_MODE_IRQ_ON_FLOW_ATTN 0x10000000
  1326. #define GRC_MODE_4X_NIC_SEND_RINGS 0x20000000
  1327. #define GRC_MODE_MCAST_FRM_ENABLE 0x40000000
  1328. #define GRC_MISC_CFG 0x00006804
  1329. #define GRC_MISC_CFG_CORECLK_RESET 0x00000001
  1330. #define GRC_MISC_CFG_PRESCALAR_MASK 0x000000fe
  1331. #define GRC_MISC_CFG_PRESCALAR_SHIFT 1
  1332. #define GRC_MISC_CFG_BOARD_ID_MASK 0x0001e000
  1333. #define GRC_MISC_CFG_BOARD_ID_5700 0x0001e000
  1334. #define GRC_MISC_CFG_BOARD_ID_5701 0x00000000
  1335. #define GRC_MISC_CFG_BOARD_ID_5702FE 0x00004000
  1336. #define GRC_MISC_CFG_BOARD_ID_5703 0x00000000
  1337. #define GRC_MISC_CFG_BOARD_ID_5703S 0x00002000
  1338. #define GRC_MISC_CFG_BOARD_ID_5704 0x00000000
  1339. #define GRC_MISC_CFG_BOARD_ID_5704CIOBE 0x00004000
  1340. #define GRC_MISC_CFG_BOARD_ID_5704_A2 0x00008000
  1341. #define GRC_MISC_CFG_BOARD_ID_5788 0x00010000
  1342. #define GRC_MISC_CFG_BOARD_ID_5788M 0x00018000
  1343. #define GRC_MISC_CFG_BOARD_ID_AC91002A1 0x00018000
  1344. #define GRC_MISC_CFG_KEEP_GPHY_POWER 0x04000000
  1345. #define GRC_LOCAL_CTRL 0x00006808
  1346. #define GRC_LCLCTRL_INT_ACTIVE 0x00000001
  1347. #define GRC_LCLCTRL_CLEARINT 0x00000002
  1348. #define GRC_LCLCTRL_SETINT 0x00000004
  1349. #define GRC_LCLCTRL_INT_ON_ATTN 0x00000008
  1350. #define GRC_LCLCTRL_GPIO_INPUT0 0x00000100
  1351. #define GRC_LCLCTRL_GPIO_INPUT1 0x00000200
  1352. #define GRC_LCLCTRL_GPIO_INPUT2 0x00000400
  1353. #define GRC_LCLCTRL_GPIO_OE0 0x00000800
  1354. #define GRC_LCLCTRL_GPIO_OE1 0x00001000
  1355. #define GRC_LCLCTRL_GPIO_OE2 0x00002000
  1356. #define GRC_LCLCTRL_GPIO_OUTPUT0 0x00004000
  1357. #define GRC_LCLCTRL_GPIO_OUTPUT1 0x00008000
  1358. #define GRC_LCLCTRL_GPIO_OUTPUT2 0x00010000
  1359. #define GRC_LCLCTRL_EXTMEM_ENABLE 0x00020000
  1360. #define GRC_LCLCTRL_MEMSZ_MASK 0x001c0000
  1361. #define GRC_LCLCTRL_MEMSZ_256K 0x00000000
  1362. #define GRC_LCLCTRL_MEMSZ_512K 0x00040000
  1363. #define GRC_LCLCTRL_MEMSZ_1M 0x00080000
  1364. #define GRC_LCLCTRL_MEMSZ_2M 0x000c0000
  1365. #define GRC_LCLCTRL_MEMSZ_4M 0x00100000
  1366. #define GRC_LCLCTRL_MEMSZ_8M 0x00140000
  1367. #define GRC_LCLCTRL_MEMSZ_16M 0x00180000
  1368. #define GRC_LCLCTRL_BANK_SELECT 0x00200000
  1369. #define GRC_LCLCTRL_SSRAM_TYPE 0x00400000
  1370. #define GRC_LCLCTRL_AUTO_SEEPROM 0x01000000
  1371. #define GRC_TIMER 0x0000680c
  1372. #define GRC_RX_CPU_EVENT 0x00006810
  1373. #define GRC_RX_TIMER_REF 0x00006814
  1374. #define GRC_RX_CPU_SEM 0x00006818
  1375. #define GRC_REMOTE_RX_CPU_ATTN 0x0000681c
  1376. #define GRC_TX_CPU_EVENT 0x00006820
  1377. #define GRC_TX_TIMER_REF 0x00006824
  1378. #define GRC_TX_CPU_SEM 0x00006828
  1379. #define GRC_REMOTE_TX_CPU_ATTN 0x0000682c
  1380. #define GRC_MEM_POWER_UP 0x00006830 /* 64-bit */
  1381. #define GRC_EEPROM_ADDR 0x00006838
  1382. #define EEPROM_ADDR_WRITE 0x00000000
  1383. #define EEPROM_ADDR_READ 0x80000000
  1384. #define EEPROM_ADDR_COMPLETE 0x40000000
  1385. #define EEPROM_ADDR_FSM_RESET 0x20000000
  1386. #define EEPROM_ADDR_DEVID_MASK 0x1c000000
  1387. #define EEPROM_ADDR_DEVID_SHIFT 26
  1388. #define EEPROM_ADDR_START 0x02000000
  1389. #define EEPROM_ADDR_CLKPERD_SHIFT 16
  1390. #define EEPROM_ADDR_ADDR_MASK 0x0000ffff
  1391. #define EEPROM_ADDR_ADDR_SHIFT 0
  1392. #define EEPROM_DEFAULT_CLOCK_PERIOD 0x60
  1393. #define EEPROM_CHIP_SIZE (64 * 1024)
  1394. #define GRC_EEPROM_DATA 0x0000683c
  1395. #define GRC_EEPROM_CTRL 0x00006840
  1396. #define GRC_MDI_CTRL 0x00006844
  1397. #define GRC_SEEPROM_DELAY 0x00006848
  1398. /* 0x684c --> 0x6c00 unused */
  1399. /* 0x6c00 --> 0x7000 unused */
  1400. /* NVRAM Control registers */
  1401. #define NVRAM_CMD 0x00007000
  1402. #define NVRAM_CMD_RESET 0x00000001
  1403. #define NVRAM_CMD_DONE 0x00000008
  1404. #define NVRAM_CMD_GO 0x00000010
  1405. #define NVRAM_CMD_WR 0x00000020
  1406. #define NVRAM_CMD_RD 0x00000000
  1407. #define NVRAM_CMD_ERASE 0x00000040
  1408. #define NVRAM_CMD_FIRST 0x00000080
  1409. #define NVRAM_CMD_LAST 0x00000100
  1410. #define NVRAM_STAT 0x00007004
  1411. #define NVRAM_WRDATA 0x00007008
  1412. #define NVRAM_ADDR 0x0000700c
  1413. #define NVRAM_ADDR_MSK 0x00ffffff
  1414. #define NVRAM_RDDATA 0x00007010
  1415. #define NVRAM_CFG1 0x00007014
  1416. #define NVRAM_CFG1_FLASHIF_ENAB 0x00000001
  1417. #define NVRAM_CFG1_BUFFERED_MODE 0x00000002
  1418. #define NVRAM_CFG1_PASS_THRU 0x00000004
  1419. #define NVRAM_CFG1_BIT_BANG 0x00000008
  1420. #define NVRAM_CFG1_COMPAT_BYPASS 0x80000000
  1421. #define NVRAM_CFG2 0x00007018
  1422. #define NVRAM_CFG3 0x0000701c
  1423. #define NVRAM_SWARB 0x00007020
  1424. #define SWARB_REQ_SET0 0x00000001
  1425. #define SWARB_REQ_SET1 0x00000002
  1426. #define SWARB_REQ_SET2 0x00000004
  1427. #define SWARB_REQ_SET3 0x00000008
  1428. #define SWARB_REQ_CLR0 0x00000010
  1429. #define SWARB_REQ_CLR1 0x00000020
  1430. #define SWARB_REQ_CLR2 0x00000040
  1431. #define SWARB_REQ_CLR3 0x00000080
  1432. #define SWARB_GNT0 0x00000100
  1433. #define SWARB_GNT1 0x00000200
  1434. #define SWARB_GNT2 0x00000400
  1435. #define SWARB_GNT3 0x00000800
  1436. #define SWARB_REQ0 0x00001000
  1437. #define SWARB_REQ1 0x00002000
  1438. #define SWARB_REQ2 0x00004000
  1439. #define SWARB_REQ3 0x00008000
  1440. #define NVRAM_BUFFERED_PAGE_SIZE 264
  1441. #define NVRAM_BUFFERED_PAGE_POS 9
  1442. /* 0x7024 --> 0x7400 unused */
  1443. /* 0x7400 --> 0x8000 unused */
  1444. /* 32K Window into NIC internal memory */
  1445. #define NIC_SRAM_WIN_BASE 0x00008000
  1446. /* Offsets into first 32k of NIC internal memory. */
  1447. #define NIC_SRAM_PAGE_ZERO 0x00000000
  1448. #define NIC_SRAM_SEND_RCB 0x00000100 /* 16 * TG3_BDINFO_... */
  1449. #define NIC_SRAM_RCV_RET_RCB 0x00000200 /* 16 * TG3_BDINFO_... */
  1450. #define NIC_SRAM_STATS_BLK 0x00000300
  1451. #define NIC_SRAM_STATUS_BLK 0x00000b00
  1452. #define NIC_SRAM_FIRMWARE_MBOX 0x00000b50
  1453. #define NIC_SRAM_FIRMWARE_MBOX_MAGIC1 0x4B657654
  1454. #define NIC_SRAM_FIRMWARE_MBOX_MAGIC2 0x4861764b /* !dma on linkchg */
  1455. #define NIC_SRAM_DATA_SIG 0x00000b54
  1456. #define NIC_SRAM_DATA_SIG_MAGIC 0x4b657654 /* ascii for 'KevT' */
  1457. #define NIC_SRAM_DATA_CFG 0x00000b58
  1458. #define NIC_SRAM_DATA_CFG_LED_MODE_MASK 0x0000000c
  1459. #define NIC_SRAM_DATA_CFG_LED_MODE_UNKNOWN 0x00000000
  1460. #define NIC_SRAM_DATA_CFG_LED_TRIPLE_SPD 0x00000004
  1461. #define NIC_SRAM_DATA_CFG_LED_OPEN_DRAIN 0x00000004
  1462. #define NIC_SRAM_DATA_CFG_LED_LINK_SPD 0x00000008
  1463. #define NIC_SRAM_DATA_CFG_LED_OUTPUT 0x00000008
  1464. #define NIC_SRAM_DATA_CFG_PHY_TYPE_MASK 0x00000030
  1465. #define NIC_SRAM_DATA_CFG_PHY_TYPE_UNKNOWN 0x00000000
  1466. #define NIC_SRAM_DATA_CFG_PHY_TYPE_COPPER 0x00000010
  1467. #define NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER 0x00000020
  1468. #define NIC_SRAM_DATA_CFG_WOL_ENABLE 0x00000040
  1469. #define NIC_SRAM_DATA_CFG_ASF_ENABLE 0x00000080
  1470. #define NIC_SRAM_DATA_CFG_EEPROM_WP 0x00000100
  1471. #define NIC_SRAM_DATA_CFG_MINI_PCI 0x00001000
  1472. #define NIC_SRAM_DATA_CFG_FIBER_WOL 0x00004000
  1473. #define NIC_SRAM_DATA_PHY_ID 0x00000b74
  1474. #define NIC_SRAM_DATA_PHY_ID1_MASK 0xffff0000
  1475. #define NIC_SRAM_DATA_PHY_ID2_MASK 0x0000ffff
  1476. #define NIC_SRAM_FW_CMD_MBOX 0x00000b78
  1477. #define FWCMD_NICDRV_ALIVE 0x00000001
  1478. #define FWCMD_NICDRV_PAUSE_FW 0x00000002
  1479. #define FWCMD_NICDRV_IPV4ADDR_CHG 0x00000003
  1480. #define FWCMD_NICDRV_IPV6ADDR_CHG 0x00000004
  1481. #define FWCMD_NICDRV_FIX_DMAR 0x00000005
  1482. #define FWCMD_NICDRV_FIX_DMAW 0x00000006
  1483. #define NIC_SRAM_FW_CMD_LEN_MBOX 0x00000b7c
  1484. #define NIC_SRAM_FW_CMD_DATA_MBOX 0x00000b80
  1485. #define NIC_SRAM_FW_ASF_STATUS_MBOX 0x00000c00
  1486. #define NIC_SRAM_FW_DRV_STATE_MBOX 0x00000c04
  1487. #define DRV_STATE_START 0x00000001
  1488. #define DRV_STATE_UNLOAD 0x00000002
  1489. #define DRV_STATE_WOL 0x00000003
  1490. #define DRV_STATE_SUSPEND 0x00000004
  1491. #define NIC_SRAM_FW_RESET_TYPE_MBOX 0x00000c08
  1492. #define NIC_SRAM_MAC_ADDR_HIGH_MBOX 0x00000c14
  1493. #define NIC_SRAM_MAC_ADDR_LOW_MBOX 0x00000c18
  1494. #define NIC_SRAM_RX_MINI_BUFFER_DESC 0x00001000
  1495. #define NIC_SRAM_DMA_DESC_POOL_BASE 0x00002000
  1496. #define NIC_SRAM_DMA_DESC_POOL_SIZE 0x00002000
  1497. #define NIC_SRAM_TX_BUFFER_DESC 0x00004000 /* 512 entries */
  1498. #define NIC_SRAM_RX_BUFFER_DESC 0x00006000 /* 256 entries */
  1499. #define NIC_SRAM_RX_JUMBO_BUFFER_DESC 0x00007000 /* 256 entries */
  1500. #define NIC_SRAM_MBUF_POOL_BASE 0x00008000
  1501. #define NIC_SRAM_MBUF_POOL_SIZE96 0x00018000
  1502. #define NIC_SRAM_MBUF_POOL_SIZE64 0x00010000
  1503. #define NIC_SRAM_MBUF_POOL_BASE5705 0x00010000
  1504. #define NIC_SRAM_MBUF_POOL_SIZE5705 0x0000e000
  1505. /* Currently this is fixed. */
  1506. #define PHY_ADDR 0x01
  1507. /* Tigon3 specific PHY MII registers. */
  1508. #define TG3_BMCR_SPEED1000 0x0040
  1509. #define MII_TG3_CTRL 0x09 /* 1000-baseT control register */
  1510. #define MII_TG3_CTRL_ADV_1000_HALF 0x0100
  1511. #define MII_TG3_CTRL_ADV_1000_FULL 0x0200
  1512. #define MII_TG3_CTRL_AS_MASTER 0x0800
  1513. #define MII_TG3_CTRL_ENABLE_AS_MASTER 0x1000
  1514. #define MII_TG3_EXT_CTRL 0x10 /* Extended control register */
  1515. #define MII_TG3_EXT_CTRL_LNK3_LED_MODE 0x0002
  1516. #define MII_TG3_EXT_CTRL_TBI 0x8000
  1517. #define MII_TG3_EXT_STAT 0x11 /* Extended status register */
  1518. #define MII_TG3_EXT_STAT_LPASS 0x0100
  1519. #define MII_TG3_DSP_RW_PORT 0x15 /* DSP coefficient read/write port */
  1520. #define MII_TG3_DSP_ADDRESS 0x17 /* DSP address register */
  1521. #define MII_TG3_AUX_CTRL 0x18 /* auxilliary control register */
  1522. #define MII_TG3_AUX_STAT 0x19 /* auxilliary status register */
  1523. #define MII_TG3_AUX_STAT_LPASS 0x0004
  1524. #define MII_TG3_AUX_STAT_SPDMASK 0x0700
  1525. #define MII_TG3_AUX_STAT_10HALF 0x0100
  1526. #define MII_TG3_AUX_STAT_10FULL 0x0200
  1527. #define MII_TG3_AUX_STAT_100HALF 0x0300
  1528. #define MII_TG3_AUX_STAT_100_4 0x0400
  1529. #define MII_TG3_AUX_STAT_100FULL 0x0500
  1530. #define MII_TG3_AUX_STAT_1000HALF 0x0600
  1531. #define MII_TG3_AUX_STAT_1000FULL 0x0700
  1532. #define MII_TG3_ISTAT 0x1a /* IRQ status register */
  1533. #define MII_TG3_IMASK 0x1b /* IRQ mask register */
  1534. /* ISTAT/IMASK event bits */
  1535. #define MII_TG3_INT_LINKCHG 0x0002
  1536. #define MII_TG3_INT_SPEEDCHG 0x0004
  1537. #define MII_TG3_INT_DUPLEXCHG 0x0008
  1538. #define MII_TG3_INT_ANEG_PAGE_RX 0x0400
  1539. /* XXX Add this to mii.h */
  1540. #ifndef ADVERTISE_PAUSE
  1541. #define ADVERTISE_PAUSE_CAP 0x0400
  1542. #endif
  1543. #ifndef ADVERTISE_PAUSE_ASYM
  1544. #define ADVERTISE_PAUSE_ASYM 0x0800
  1545. #endif
  1546. #ifndef LPA_PAUSE
  1547. #define LPA_PAUSE_CAP 0x0400
  1548. #endif
  1549. #ifndef LPA_PAUSE_ASYM
  1550. #define LPA_PAUSE_ASYM 0x0800
  1551. #endif
  1552. /* There are two ways to manage the TX descriptors on the tigon3.
  1553. * Either the descriptors are in host DMA'able memory, or they
  1554. * exist only in the cards on-chip SRAM. All 16 send bds are under
  1555. * the same mode, they may not be configured individually.
  1556. *
  1557. * The mode we use is controlled by TG3_FLAG_HOST_TXDS in tp->tg3_flags.
  1558. *
  1559. * To use host memory TX descriptors:
  1560. * 1) Set GRC_MODE_HOST_SENDBDS in GRC_MODE register.
  1561. * Make sure GRC_MODE_4X_NIC_SEND_RINGS is clear.
  1562. * 2) Allocate DMA'able memory.
  1563. * 3) In NIC_SRAM_SEND_RCB (of desired index) of on-chip SRAM:
  1564. * a) Set TG3_BDINFO_HOST_ADDR to DMA address of memory
  1565. * obtained in step 2
  1566. * b) Set TG3_BDINFO_NIC_ADDR to NIC_SRAM_TX_BUFFER_DESC.
  1567. * c) Set len field of TG3_BDINFO_MAXLEN_FLAGS to number
  1568. * of TX descriptors. Leave flags field clear.
  1569. * 4) Access TX descriptors via host memory. The chip
  1570. * will refetch into local SRAM as needed when producer
  1571. * index mailboxes are updated.
  1572. *
  1573. * To use on-chip TX descriptors:
  1574. * 1) Set GRC_MODE_4X_NIC_SEND_RINGS in GRC_MODE register.
  1575. * Make sure GRC_MODE_HOST_SENDBDS is clear.
  1576. * 2) In NIC_SRAM_SEND_RCB (of desired index) of on-chip SRAM:
  1577. * a) Set TG3_BDINFO_HOST_ADDR to zero.
  1578. * b) Set TG3_BDINFO_NIC_ADDR to NIC_SRAM_TX_BUFFER_DESC
  1579. * c) TG3_BDINFO_MAXLEN_FLAGS is don't care.
  1580. * 3) Access TX descriptors directly in on-chip SRAM
  1581. * using normal {read,write}l(). (and not using
  1582. * pointer dereferencing of ioremap()'d memory like
  1583. * the broken Broadcom driver does)
  1584. *
  1585. * Note that BDINFO_FLAGS_DISABLED should be set in the flags field of
  1586. * TG3_BDINFO_MAXLEN_FLAGS of all unused SEND_RCB indices.
  1587. */
  1588. struct tg3_tx_buffer_desc {
  1589. uint32_t addr_hi;
  1590. uint32_t addr_lo;
  1591. uint32_t len_flags;
  1592. #define TXD_FLAG_TCPUDP_CSUM 0x0001
  1593. #define TXD_FLAG_IP_CSUM 0x0002
  1594. #define TXD_FLAG_END 0x0004
  1595. #define TXD_FLAG_IP_FRAG 0x0008
  1596. #define TXD_FLAG_IP_FRAG_END 0x0010
  1597. #define TXD_FLAG_VLAN 0x0040
  1598. #define TXD_FLAG_COAL_NOW 0x0080
  1599. #define TXD_FLAG_CPU_PRE_DMA 0x0100
  1600. #define TXD_FLAG_CPU_POST_DMA 0x0200
  1601. #define TXD_FLAG_ADD_SRC_ADDR 0x1000
  1602. #define TXD_FLAG_CHOOSE_SRC_ADDR 0x6000
  1603. #define TXD_FLAG_NO_CRC 0x8000
  1604. #define TXD_LEN_SHIFT 16
  1605. uint32_t vlan_tag;
  1606. #define TXD_VLAN_TAG_SHIFT 0
  1607. #define TXD_MSS_SHIFT 16
  1608. };
  1609. #define TXD_ADDR 0x00UL /* 64-bit */
  1610. #define TXD_LEN_FLAGS 0x08UL /* 32-bit (upper 16-bits are len) */
  1611. #define TXD_VLAN_TAG 0x0cUL /* 32-bit (upper 16-bits are tag) */
  1612. #define TXD_SIZE 0x10UL
  1613. struct tg3_rx_buffer_desc {
  1614. uint32_t addr_hi;
  1615. uint32_t addr_lo;
  1616. uint32_t idx_len;
  1617. #define RXD_IDX_MASK 0xffff0000
  1618. #define RXD_IDX_SHIFT 16
  1619. #define RXD_LEN_MASK 0x0000ffff
  1620. #define RXD_LEN_SHIFT 0
  1621. uint32_t type_flags;
  1622. #define RXD_TYPE_SHIFT 16
  1623. #define RXD_FLAGS_SHIFT 0
  1624. #define RXD_FLAG_END 0x0004
  1625. #define RXD_FLAG_MINI 0x0800
  1626. #define RXD_FLAG_JUMBO 0x0020
  1627. #define RXD_FLAG_VLAN 0x0040
  1628. #define RXD_FLAG_ERROR 0x0400
  1629. #define RXD_FLAG_IP_CSUM 0x1000
  1630. #define RXD_FLAG_TCPUDP_CSUM 0x2000
  1631. #define RXD_FLAG_IS_TCP 0x4000
  1632. uint32_t ip_tcp_csum;
  1633. #define RXD_IPCSUM_MASK 0xffff0000
  1634. #define RXD_IPCSUM_SHIFT 16
  1635. #define RXD_TCPCSUM_MASK 0x0000ffff
  1636. #define RXD_TCPCSUM_SHIFT 0
  1637. uint32_t err_vlan;
  1638. #define RXD_VLAN_MASK 0x0000ffff
  1639. #define RXD_ERR_BAD_CRC 0x00010000
  1640. #define RXD_ERR_COLLISION 0x00020000
  1641. #define RXD_ERR_LINK_LOST 0x00040000
  1642. #define RXD_ERR_PHY_DECODE 0x00080000
  1643. #define RXD_ERR_ODD_NIBBLE_RCVD_MII 0x00100000
  1644. #define RXD_ERR_MAC_ABRT 0x00200000
  1645. #define RXD_ERR_TOO_SMALL 0x00400000
  1646. #define RXD_ERR_NO_RESOURCES 0x00800000
  1647. #define RXD_ERR_HUGE_FRAME 0x01000000
  1648. #define RXD_ERR_MASK 0xffff0000
  1649. uint32_t reserved;
  1650. uint32_t opaque;
  1651. #define RXD_OPAQUE_INDEX_MASK 0x0000ffff
  1652. #define RXD_OPAQUE_INDEX_SHIFT 0
  1653. #define RXD_OPAQUE_RING_STD 0x00010000
  1654. #define RXD_OPAQUE_RING_JUMBO 0x00020000
  1655. #define RXD_OPAQUE_RING_MINI 0x00040000
  1656. #define RXD_OPAQUE_RING_MASK 0x00070000
  1657. };
  1658. struct tg3_ext_rx_buffer_desc {
  1659. struct {
  1660. uint32_t addr_hi;
  1661. uint32_t addr_lo;
  1662. } addrlist[3];
  1663. uint32_t len2_len1;
  1664. uint32_t resv_len3;
  1665. struct tg3_rx_buffer_desc std;
  1666. };
  1667. /* We only use this when testing out the DMA engine
  1668. * at probe time. This is the internal format of buffer
  1669. * descriptors used by the chip at NIC_SRAM_DMA_DESCS.
  1670. */
  1671. struct tg3_internal_buffer_desc {
  1672. uint32_t addr_hi;
  1673. uint32_t addr_lo;
  1674. uint32_t nic_mbuf;
  1675. /* XXX FIX THIS */
  1676. #if __BYTE_ORDER == __BIG_ENDIAN
  1677. uint16_t cqid_sqid;
  1678. uint16_t len;
  1679. #else
  1680. uint16_t len;
  1681. uint16_t cqid_sqid;
  1682. #endif
  1683. uint32_t flags;
  1684. uint32_t __cookie1;
  1685. uint32_t __cookie2;
  1686. uint32_t __cookie3;
  1687. };
  1688. #define TG3_HW_STATUS_SIZE 0x50
  1689. struct tg3_hw_status {
  1690. uint32_t status;
  1691. #define SD_STATUS_UPDATED 0x00000001
  1692. #define SD_STATUS_LINK_CHG 0x00000002
  1693. #define SD_STATUS_ERROR 0x00000004
  1694. uint32_t status_tag;
  1695. #if __BYTE_ORDER == __BIG_ENDIAN
  1696. uint16_t rx_consumer;
  1697. uint16_t rx_jumbo_consumer;
  1698. #else
  1699. uint16_t rx_jumbo_consumer;
  1700. uint16_t rx_consumer;
  1701. #endif
  1702. #if __BYTE_ORDER == __BIG_ENDIAN
  1703. uint16_t reserved;
  1704. uint16_t rx_mini_consumer;
  1705. #else
  1706. uint16_t rx_mini_consumer;
  1707. uint16_t reserved;
  1708. #endif
  1709. struct {
  1710. #if __BYTE_ORDER == __BIG_ENDIAN
  1711. uint16_t tx_consumer;
  1712. uint16_t rx_producer;
  1713. #else
  1714. uint16_t rx_producer;
  1715. uint16_t tx_consumer;
  1716. #endif
  1717. } idx[16];
  1718. };
  1719. typedef struct {
  1720. uint32_t high, low;
  1721. } tg3_stat64_t;
  1722. struct tg3_hw_stats {
  1723. uint8_t __reserved0[0x400-0x300];
  1724. /* Statistics maintained by Receive MAC. */
  1725. tg3_stat64_t rx_octets;
  1726. uint64_t __reserved1;
  1727. tg3_stat64_t rx_fragments;
  1728. tg3_stat64_t rx_ucast_packets;
  1729. tg3_stat64_t rx_mcast_packets;
  1730. tg3_stat64_t rx_bcast_packets;
  1731. tg3_stat64_t rx_fcs_errors;
  1732. tg3_stat64_t rx_align_errors;
  1733. tg3_stat64_t rx_xon_pause_rcvd;
  1734. tg3_stat64_t rx_xoff_pause_rcvd;
  1735. tg3_stat64_t rx_mac_ctrl_rcvd;
  1736. tg3_stat64_t rx_xoff_entered;
  1737. tg3_stat64_t rx_frame_too_long_errors;
  1738. tg3_stat64_t rx_jabbers;
  1739. tg3_stat64_t rx_undersize_packets;
  1740. tg3_stat64_t rx_in_length_errors;
  1741. tg3_stat64_t rx_out_length_errors;
  1742. tg3_stat64_t rx_64_or_less_octet_packets;
  1743. tg3_stat64_t rx_65_to_127_octet_packets;
  1744. tg3_stat64_t rx_128_to_255_octet_packets;
  1745. tg3_stat64_t rx_256_to_511_octet_packets;
  1746. tg3_stat64_t rx_512_to_1023_octet_packets;
  1747. tg3_stat64_t rx_1024_to_1522_octet_packets;
  1748. tg3_stat64_t rx_1523_to_2047_octet_packets;
  1749. tg3_stat64_t rx_2048_to_4095_octet_packets;
  1750. tg3_stat64_t rx_4096_to_8191_octet_packets;
  1751. tg3_stat64_t rx_8192_to_9022_octet_packets;
  1752. uint64_t __unused0[37];
  1753. /* Statistics maintained by Transmit MAC. */
  1754. tg3_stat64_t tx_octets;
  1755. uint64_t __reserved2;
  1756. tg3_stat64_t tx_collisions;
  1757. tg3_stat64_t tx_xon_sent;
  1758. tg3_stat64_t tx_xoff_sent;
  1759. tg3_stat64_t tx_flow_control;
  1760. tg3_stat64_t tx_mac_errors;
  1761. tg3_stat64_t tx_single_collisions;
  1762. tg3_stat64_t tx_mult_collisions;
  1763. tg3_stat64_t tx_deferred;
  1764. uint64_t __reserved3;
  1765. tg3_stat64_t tx_excessive_collisions;
  1766. tg3_stat64_t tx_late_collisions;
  1767. tg3_stat64_t tx_collide_2times;
  1768. tg3_stat64_t tx_collide_3times;
  1769. tg3_stat64_t tx_collide_4times;
  1770. tg3_stat64_t tx_collide_5times;
  1771. tg3_stat64_t tx_collide_6times;
  1772. tg3_stat64_t tx_collide_7times;
  1773. tg3_stat64_t tx_collide_8times;
  1774. tg3_stat64_t tx_collide_9times;
  1775. tg3_stat64_t tx_collide_10times;
  1776. tg3_stat64_t tx_collide_11times;
  1777. tg3_stat64_t tx_collide_12times;
  1778. tg3_stat64_t tx_collide_13times;
  1779. tg3_stat64_t tx_collide_14times;
  1780. tg3_stat64_t tx_collide_15times;
  1781. tg3_stat64_t tx_ucast_packets;
  1782. tg3_stat64_t tx_mcast_packets;
  1783. tg3_stat64_t tx_bcast_packets;
  1784. tg3_stat64_t tx_carrier_sense_errors;
  1785. tg3_stat64_t tx_discards;
  1786. tg3_stat64_t tx_errors;
  1787. uint64_t __unused1[31];
  1788. /* Statistics maintained by Receive List Placement. */
  1789. tg3_stat64_t COS_rx_packets[16];
  1790. tg3_stat64_t COS_rx_filter_dropped;
  1791. tg3_stat64_t dma_writeq_full;
  1792. tg3_stat64_t dma_write_prioq_full;
  1793. tg3_stat64_t rxbds_empty;
  1794. tg3_stat64_t rx_discards;
  1795. tg3_stat64_t rx_errors;
  1796. tg3_stat64_t rx_threshold_hit;
  1797. uint64_t __unused2[9];
  1798. /* Statistics maintained by Send Data Initiator. */
  1799. tg3_stat64_t COS_out_packets[16];
  1800. tg3_stat64_t dma_readq_full;
  1801. tg3_stat64_t dma_read_prioq_full;
  1802. tg3_stat64_t tx_comp_queue_full;
  1803. /* Statistics maintained by Host Coalescing. */
  1804. tg3_stat64_t ring_set_send_prod_index;
  1805. tg3_stat64_t ring_status_update;
  1806. tg3_stat64_t nic_irqs;
  1807. tg3_stat64_t nic_avoided_irqs;
  1808. tg3_stat64_t nic_tx_threshold_hit;
  1809. uint8_t __reserved4[0xb00-0x9c0];
  1810. };
  1811. enum phy_led_mode {
  1812. led_mode_auto,
  1813. led_mode_three_link,
  1814. led_mode_link10
  1815. };
  1816. #if 0
  1817. /* 'mapping' is superfluous as the chip does not write into
  1818. * the tx/rx post rings so we could just fetch it from there.
  1819. * But the cache behavior is better how we are doing it now.
  1820. */
  1821. struct ring_info {
  1822. struct sk_buff *skb;
  1823. DECLARE_PCI_UNMAP_ADDR(mapping)
  1824. };
  1825. struct tx_ring_info {
  1826. struct sk_buff *skb;
  1827. DECLARE_PCI_UNMAP_ADDR(mapping)
  1828. uint32_t prev_vlan_tag;
  1829. };
  1830. #endif
  1831. struct tg3_config_info {
  1832. uint32_t flags;
  1833. };
  1834. struct tg3_link_config {
  1835. /* Describes what we're trying to get. */
  1836. uint32_t advertising;
  1837. #if 0
  1838. uint16_t speed;
  1839. uint8_t duplex;
  1840. uint8_t autoneg;
  1841. #define SPEED_INVALID 0xffff
  1842. #define DUPLEX_INVALID 0xff
  1843. #define AUTONEG_INVALID 0xff
  1844. #endif
  1845. /* Describes what we actually have. */
  1846. uint8_t active_speed;
  1847. uint8_t active_duplex;
  1848. /* When we go in and out of low power mode we need
  1849. * to swap with this state.
  1850. */
  1851. #if 0
  1852. int phy_is_low_power;
  1853. uint16_t orig_speed;
  1854. uint8_t orig_duplex;
  1855. uint8_t orig_autoneg;
  1856. #endif
  1857. };
  1858. struct tg3_bufmgr_config {
  1859. uint32_t mbuf_read_dma_low_water;
  1860. uint32_t mbuf_mac_rx_low_water;
  1861. uint32_t mbuf_high_water;
  1862. uint32_t mbuf_read_dma_low_water_jumbo;
  1863. uint32_t mbuf_mac_rx_low_water_jumbo;
  1864. uint32_t mbuf_high_water_jumbo;
  1865. uint32_t dma_low_water;
  1866. uint32_t dma_high_water;
  1867. };
  1868. struct tg3 {
  1869. #if 0
  1870. /* SMP locking strategy:
  1871. *
  1872. * lock: Held during all operations except TX packet
  1873. * processing.
  1874. *
  1875. * tx_lock: Held during tg3_start_xmit{,_4gbug} and tg3_tx
  1876. *
  1877. * If you want to shut up all asynchronous processing you must
  1878. * acquire both locks, 'lock' taken before 'tx_lock'. IRQs must
  1879. * be disabled to take 'lock' but only softirq disabling is
  1880. * necessary for acquisition of 'tx_lock'.
  1881. */
  1882. spinlock_t lock;
  1883. spinlock_t tx_lock;
  1884. #endif
  1885. uint32_t tx_prod;
  1886. #if 0
  1887. uint32_t tx_cons;
  1888. #endif
  1889. uint32_t rx_rcb_ptr;
  1890. uint32_t rx_std_ptr;
  1891. #if 0
  1892. uint32_t rx_jumbo_ptr;
  1893. spinlock_t indirect_lock;
  1894. struct net_device_stats net_stats;
  1895. struct net_device_stats net_stats_prev;
  1896. #endif
  1897. unsigned long phy_crc_errors;
  1898. #if 0
  1899. uint32_t rx_offset;
  1900. #endif
  1901. uint32_t tg3_flags;
  1902. #if 0
  1903. #define TG3_FLAG_HOST_TXDS 0x00000001
  1904. #endif
  1905. #define TG3_FLAG_TXD_MBOX_HWBUG 0x00000002
  1906. #define TG3_FLAG_RX_CHECKSUMS 0x00000004
  1907. #define TG3_FLAG_USE_LINKCHG_REG 0x00000008
  1908. #define TG3_FLAG_USE_MI_INTERRUPT 0x00000010
  1909. #define TG3_FLAG_ENABLE_ASF 0x00000020
  1910. #define TG3_FLAG_5701_REG_WRITE_BUG 0x00000040
  1911. #define TG3_FLAG_POLL_SERDES 0x00000080
  1912. #define TG3_FLAG_MBOX_WRITE_REORDER 0x00000100
  1913. #define TG3_FLAG_PCIX_TARGET_HWBUG 0x00000200
  1914. #define TG3_FLAG_WOL_SPEED_100MB 0x00000400
  1915. #define TG3_FLAG_WOL_ENABLE 0x00000800
  1916. #define TG3_FLAG_EEPROM_WRITE_PROT 0x00001000
  1917. #define TG3_FLAG_NVRAM 0x00002000
  1918. #define TG3_FLAG_NVRAM_BUFFERED 0x00004000
  1919. #define TG3_FLAG_RX_PAUSE 0x00008000
  1920. #define TG3_FLAG_TX_PAUSE 0x00010000
  1921. #define TG3_FLAG_PCIX_MODE 0x00020000
  1922. #define TG3_FLAG_PCI_HIGH_SPEED 0x00040000
  1923. #define TG3_FLAG_PCI_32BIT 0x00080000
  1924. #define TG3_FLAG_NO_TX_PSEUDO_CSUM 0x00100000
  1925. #define TG3_FLAG_NO_RX_PSEUDO_CSUM 0x00200000
  1926. #define TG3_FLAG_SERDES_WOL_CAP 0x00400000
  1927. #define TG3_FLAG_JUMBO_ENABLE 0x00800000
  1928. #define TG3_FLAG_10_100_ONLY 0x01000000
  1929. #define TG3_FLAG_PAUSE_AUTONEG 0x02000000
  1930. #define TG3_FLAG_PAUSE_RX 0x04000000
  1931. #define TG3_FLAG_PAUSE_TX 0x08000000
  1932. #define TG3_FLAG_BROKEN_CHECKSUMS 0x10000000
  1933. #define TG3_FLAG_GOT_SERDES_FLOWCTL 0x20000000
  1934. #define TG3_FLAG_SPLIT_MODE 0x40000000
  1935. #define TG3_FLAG_INIT_COMPLETE 0x80000000
  1936. uint32_t tg3_flags2;
  1937. #define TG3_FLG2_RESTART_TIMER 0x00000001
  1938. #define TG3_FLG2_SUN_5704 0x00000002
  1939. #define TG3_FLG2_NO_ETH_WIRE_SPEED 0x00000004
  1940. #define TG3_FLG2_IS_5788 0x00000008
  1941. #define TG3_FLG2_MAX_RXPEND_64 0x00000010
  1942. #define TG3_FLG2_TSO_CAPABLE 0x00000020
  1943. // Alf: Hope I'm not breaking anything here !
  1944. #define TG3_FLG2_PCI_EXPRESS 0x00000040
  1945. uint32_t split_mode_max_reqs;
  1946. #define SPLIT_MODE_5704_MAX_REQ 3
  1947. #if 0
  1948. struct timer_list timer;
  1949. uint16_t timer_counter;
  1950. uint16_t timer_multiplier;
  1951. uint32_t timer_offset;
  1952. uint16_t asf_counter;
  1953. uint16_t asf_multiplier;
  1954. #endif
  1955. struct tg3_link_config link_config;
  1956. struct tg3_bufmgr_config bufmgr_config;
  1957. #if 0
  1958. uint32_t rx_pending;
  1959. uint32_t rx_jumbo_pending;
  1960. uint32_t tx_pending;
  1961. #endif
  1962. /* cache h/w values, often passed straight to h/w */
  1963. uint32_t rx_mode;
  1964. uint32_t tx_mode;
  1965. uint32_t mac_mode;
  1966. uint32_t mi_mode;
  1967. uint32_t misc_host_ctrl;
  1968. uint32_t grc_mode;
  1969. uint32_t grc_local_ctrl;
  1970. uint32_t dma_rwctrl;
  1971. #if 0
  1972. uint32_t coalesce_mode;
  1973. #endif
  1974. /* PCI block */
  1975. uint16_t pci_chip_rev_id;
  1976. #if 0
  1977. uint8_t pci_cacheline_sz;
  1978. uint8_t pci_lat_timer;
  1979. uint8_t pci_hdr_type;
  1980. uint8_t pci_bist;
  1981. #endif
  1982. uint32_t pci_cfg_state[64 / sizeof(uint32_t)];
  1983. int pm_cap;
  1984. /* PHY info */
  1985. uint32_t phy_id;
  1986. #define PHY_ID_MASK 0xfffffff0
  1987. #define PHY_ID_BCM5400 0x60008040
  1988. #define PHY_ID_BCM5401 0x60008050
  1989. #define PHY_ID_BCM5411 0x60008070
  1990. #define PHY_ID_BCM5701 0x60008110
  1991. #define PHY_ID_BCM5703 0x60008160
  1992. #define PHY_ID_BCM5704 0x60008190
  1993. #define PHY_ID_BCM5705 0x600081a0
  1994. #define PHY_ID_BCM5750 0x60008180
  1995. #define PHY_ID_BCM8002 0x60010140
  1996. #define PHY_ID_BCM5751 0x00206180
  1997. #define PHY_ID_SERDES 0xfeedbee0
  1998. #define PHY_ID_INVALID 0xffffffff
  1999. #define PHY_ID_REV_MASK 0x0000000f
  2000. #define PHY_REV_BCM5401_B0 0x1
  2001. #define PHY_REV_BCM5401_B2 0x3
  2002. #define PHY_REV_BCM5401_C0 0x6
  2003. #define PHY_REV_BCM5411_X0 0x1 /* Found on Netgear GA302T */
  2004. enum phy_led_mode led_mode;
  2005. char board_part_number[24];
  2006. uint32_t nic_sram_data_cfg;
  2007. uint32_t pci_clock_ctrl;
  2008. #if 0
  2009. struct pci_device *pdev_peer;
  2010. #endif
  2011. /* This macro assumes the passed PHY ID is already masked
  2012. * with PHY_ID_MASK.
  2013. */
  2014. #define KNOWN_PHY_ID(X) \
  2015. ((X) == PHY_ID_BCM5400 || (X) == PHY_ID_BCM5401 || \
  2016. (X) == PHY_ID_BCM5411 || (X) == PHY_ID_BCM5701 || \
  2017. (X) == PHY_ID_BCM5703 || (X) == PHY_ID_BCM5704 || \
  2018. (X) == PHY_ID_BCM5705 || (X) == PHY_ID_BCM5750 || (X) == PHY_ID_BCM5751 || \
  2019. (X) == PHY_ID_BCM8002 || (X) == PHY_ID_SERDES)
  2020. unsigned long regs;
  2021. struct pci_device *pdev;
  2022. struct nic *nic;
  2023. #if 0
  2024. struct net_device *dev;
  2025. #endif
  2026. #if TG3_VLAN_TAG_USED
  2027. struct vlan_group *vlgrp;
  2028. #endif
  2029. struct tg3_rx_buffer_desc *rx_std;
  2030. #if 0
  2031. struct ring_info *rx_std_buffers;
  2032. dma_addr_t rx_std_mapping;
  2033. struct tg3_rx_buffer_desc *rx_jumbo;
  2034. struct ring_info *rx_jumbo_buffers;
  2035. dma_addr_t rx_jumbo_mapping;
  2036. #endif
  2037. struct tg3_rx_buffer_desc *rx_rcb;
  2038. #if 0
  2039. dma_addr_t rx_rcb_mapping;
  2040. #endif
  2041. /* TX descs are only used if TG3_FLAG_HOST_TXDS is set. */
  2042. struct tg3_tx_buffer_desc *tx_ring;
  2043. #if 0
  2044. struct tx_ring_info *tx_buffers;
  2045. dma_addr_t tx_desc_mapping;
  2046. #endif
  2047. struct tg3_hw_status *hw_status;
  2048. #if 0
  2049. dma_addr_t status_mapping;
  2050. #endif
  2051. #if 0
  2052. uint32_t msg_enable;
  2053. #endif
  2054. struct tg3_hw_stats *hw_stats;
  2055. #if 0
  2056. dma_addr_t stats_mapping;
  2057. #endif
  2058. int carrier_ok;
  2059. uint16_t subsystem_vendor;
  2060. uint16_t subsystem_device;
  2061. };
  2062. #endif /* !(_T3_H) */