mv643xx_eth.c 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943
  1. /*
  2. * Driver for Marvell Discovery (MV643XX) and Marvell Orion ethernet ports
  3. * Copyright (C) 2002 Matthew Dharm <mdharm@momenco.com>
  4. *
  5. * Based on the 64360 driver from:
  6. * Copyright (C) 2002 Rabeeh Khoury <rabeeh@galileo.co.il>
  7. * Rabeeh Khoury <rabeeh@marvell.com>
  8. *
  9. * Copyright (C) 2003 PMC-Sierra, Inc.,
  10. * written by Manish Lachwani
  11. *
  12. * Copyright (C) 2003 Ralf Baechle <ralf@linux-mips.org>
  13. *
  14. * Copyright (C) 2004-2006 MontaVista Software, Inc.
  15. * Dale Farnsworth <dale@farnsworth.org>
  16. *
  17. * Copyright (C) 2004 Steven J. Hill <sjhill1@rockwellcollins.com>
  18. * <sjhill@realitydiluted.com>
  19. *
  20. * Copyright (C) 2007-2008 Marvell Semiconductor
  21. * Lennert Buytenhek <buytenh@marvell.com>
  22. *
  23. * This program is free software; you can redistribute it and/or
  24. * modify it under the terms of the GNU General Public License
  25. * as published by the Free Software Foundation; either version 2
  26. * of the License, or (at your option) any later version.
  27. *
  28. * This program is distributed in the hope that it will be useful,
  29. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  30. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  31. * GNU General Public License for more details.
  32. *
  33. * You should have received a copy of the GNU General Public License
  34. * along with this program; if not, write to the Free Software
  35. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  36. */
  37. #include <linux/init.h>
  38. #include <linux/dma-mapping.h>
  39. #include <linux/in.h>
  40. #include <linux/ip.h>
  41. #include <linux/tcp.h>
  42. #include <linux/udp.h>
  43. #include <linux/etherdevice.h>
  44. #include <linux/delay.h>
  45. #include <linux/ethtool.h>
  46. #include <linux/platform_device.h>
  47. #include <linux/module.h>
  48. #include <linux/kernel.h>
  49. #include <linux/spinlock.h>
  50. #include <linux/workqueue.h>
  51. #include <linux/phy.h>
  52. #include <linux/mv643xx_eth.h>
  53. #include <linux/io.h>
  54. #include <linux/types.h>
  55. #include <asm/system.h>
  56. static char mv643xx_eth_driver_name[] = "mv643xx_eth";
  57. static char mv643xx_eth_driver_version[] = "1.4";
  58. /*
  59. * Registers shared between all ports.
  60. */
  61. #define PHY_ADDR 0x0000
  62. #define SMI_REG 0x0004
  63. #define SMI_BUSY 0x10000000
  64. #define SMI_READ_VALID 0x08000000
  65. #define SMI_OPCODE_READ 0x04000000
  66. #define SMI_OPCODE_WRITE 0x00000000
  67. #define ERR_INT_CAUSE 0x0080
  68. #define ERR_INT_SMI_DONE 0x00000010
  69. #define ERR_INT_MASK 0x0084
  70. #define WINDOW_BASE(w) (0x0200 + ((w) << 3))
  71. #define WINDOW_SIZE(w) (0x0204 + ((w) << 3))
  72. #define WINDOW_REMAP_HIGH(w) (0x0280 + ((w) << 2))
  73. #define WINDOW_BAR_ENABLE 0x0290
  74. #define WINDOW_PROTECT(w) (0x0294 + ((w) << 4))
  75. /*
  76. * Main per-port registers. These live at offset 0x0400 for
  77. * port #0, 0x0800 for port #1, and 0x0c00 for port #2.
  78. */
  79. #define PORT_CONFIG 0x0000
  80. #define UNICAST_PROMISCUOUS_MODE 0x00000001
  81. #define PORT_CONFIG_EXT 0x0004
  82. #define MAC_ADDR_LOW 0x0014
  83. #define MAC_ADDR_HIGH 0x0018
  84. #define SDMA_CONFIG 0x001c
  85. #define PORT_SERIAL_CONTROL 0x003c
  86. #define PORT_STATUS 0x0044
  87. #define TX_FIFO_EMPTY 0x00000400
  88. #define TX_IN_PROGRESS 0x00000080
  89. #define PORT_SPEED_MASK 0x00000030
  90. #define PORT_SPEED_1000 0x00000010
  91. #define PORT_SPEED_100 0x00000020
  92. #define PORT_SPEED_10 0x00000000
  93. #define FLOW_CONTROL_ENABLED 0x00000008
  94. #define FULL_DUPLEX 0x00000004
  95. #define LINK_UP 0x00000002
  96. #define TXQ_COMMAND 0x0048
  97. #define TXQ_FIX_PRIO_CONF 0x004c
  98. #define TX_BW_RATE 0x0050
  99. #define TX_BW_MTU 0x0058
  100. #define TX_BW_BURST 0x005c
  101. #define INT_CAUSE 0x0060
  102. #define INT_TX_END 0x07f80000
  103. #define INT_RX 0x000003fc
  104. #define INT_EXT 0x00000002
  105. #define INT_CAUSE_EXT 0x0064
  106. #define INT_EXT_LINK_PHY 0x00110000
  107. #define INT_EXT_TX 0x000000ff
  108. #define INT_MASK 0x0068
  109. #define INT_MASK_EXT 0x006c
  110. #define TX_FIFO_URGENT_THRESHOLD 0x0074
  111. #define TXQ_FIX_PRIO_CONF_MOVED 0x00dc
  112. #define TX_BW_RATE_MOVED 0x00e0
  113. #define TX_BW_MTU_MOVED 0x00e8
  114. #define TX_BW_BURST_MOVED 0x00ec
  115. #define RXQ_CURRENT_DESC_PTR(q) (0x020c + ((q) << 4))
  116. #define RXQ_COMMAND 0x0280
  117. #define TXQ_CURRENT_DESC_PTR(q) (0x02c0 + ((q) << 2))
  118. #define TXQ_BW_TOKENS(q) (0x0300 + ((q) << 4))
  119. #define TXQ_BW_CONF(q) (0x0304 + ((q) << 4))
  120. #define TXQ_BW_WRR_CONF(q) (0x0308 + ((q) << 4))
  121. /*
  122. * Misc per-port registers.
  123. */
  124. #define MIB_COUNTERS(p) (0x1000 + ((p) << 7))
  125. #define SPECIAL_MCAST_TABLE(p) (0x1400 + ((p) << 10))
  126. #define OTHER_MCAST_TABLE(p) (0x1500 + ((p) << 10))
  127. #define UNICAST_TABLE(p) (0x1600 + ((p) << 10))
  128. /*
  129. * SDMA configuration register.
  130. */
  131. #define RX_BURST_SIZE_4_64BIT (2 << 1)
  132. #define RX_BURST_SIZE_16_64BIT (4 << 1)
  133. #define BLM_RX_NO_SWAP (1 << 4)
  134. #define BLM_TX_NO_SWAP (1 << 5)
  135. #define TX_BURST_SIZE_4_64BIT (2 << 22)
  136. #define TX_BURST_SIZE_16_64BIT (4 << 22)
  137. #if defined(__BIG_ENDIAN)
  138. #define PORT_SDMA_CONFIG_DEFAULT_VALUE \
  139. (RX_BURST_SIZE_4_64BIT | \
  140. TX_BURST_SIZE_4_64BIT)
  141. #elif defined(__LITTLE_ENDIAN)
  142. #define PORT_SDMA_CONFIG_DEFAULT_VALUE \
  143. (RX_BURST_SIZE_4_64BIT | \
  144. BLM_RX_NO_SWAP | \
  145. BLM_TX_NO_SWAP | \
  146. TX_BURST_SIZE_4_64BIT)
  147. #else
  148. #error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
  149. #endif
  150. /*
  151. * Port serial control register.
  152. */
  153. #define SET_MII_SPEED_TO_100 (1 << 24)
  154. #define SET_GMII_SPEED_TO_1000 (1 << 23)
  155. #define SET_FULL_DUPLEX_MODE (1 << 21)
  156. #define MAX_RX_PACKET_9700BYTE (5 << 17)
  157. #define DISABLE_AUTO_NEG_SPEED_GMII (1 << 13)
  158. #define DO_NOT_FORCE_LINK_FAIL (1 << 10)
  159. #define SERIAL_PORT_CONTROL_RESERVED (1 << 9)
  160. #define DISABLE_AUTO_NEG_FOR_FLOW_CTRL (1 << 3)
  161. #define DISABLE_AUTO_NEG_FOR_DUPLEX (1 << 2)
  162. #define FORCE_LINK_PASS (1 << 1)
  163. #define SERIAL_PORT_ENABLE (1 << 0)
  164. #define DEFAULT_RX_QUEUE_SIZE 128
  165. #define DEFAULT_TX_QUEUE_SIZE 256
  166. /*
  167. * RX/TX descriptors.
  168. */
  169. #if defined(__BIG_ENDIAN)
  170. struct rx_desc {
  171. u16 byte_cnt; /* Descriptor buffer byte count */
  172. u16 buf_size; /* Buffer size */
  173. u32 cmd_sts; /* Descriptor command status */
  174. u32 next_desc_ptr; /* Next descriptor pointer */
  175. u32 buf_ptr; /* Descriptor buffer pointer */
  176. };
  177. struct tx_desc {
  178. u16 byte_cnt; /* buffer byte count */
  179. u16 l4i_chk; /* CPU provided TCP checksum */
  180. u32 cmd_sts; /* Command/status field */
  181. u32 next_desc_ptr; /* Pointer to next descriptor */
  182. u32 buf_ptr; /* pointer to buffer for this descriptor*/
  183. };
  184. #elif defined(__LITTLE_ENDIAN)
  185. struct rx_desc {
  186. u32 cmd_sts; /* Descriptor command status */
  187. u16 buf_size; /* Buffer size */
  188. u16 byte_cnt; /* Descriptor buffer byte count */
  189. u32 buf_ptr; /* Descriptor buffer pointer */
  190. u32 next_desc_ptr; /* Next descriptor pointer */
  191. };
  192. struct tx_desc {
  193. u32 cmd_sts; /* Command/status field */
  194. u16 l4i_chk; /* CPU provided TCP checksum */
  195. u16 byte_cnt; /* buffer byte count */
  196. u32 buf_ptr; /* pointer to buffer for this descriptor*/
  197. u32 next_desc_ptr; /* Pointer to next descriptor */
  198. };
  199. #else
  200. #error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
  201. #endif
  202. /* RX & TX descriptor command */
  203. #define BUFFER_OWNED_BY_DMA 0x80000000
  204. /* RX & TX descriptor status */
  205. #define ERROR_SUMMARY 0x00000001
  206. /* RX descriptor status */
  207. #define LAYER_4_CHECKSUM_OK 0x40000000
  208. #define RX_ENABLE_INTERRUPT 0x20000000
  209. #define RX_FIRST_DESC 0x08000000
  210. #define RX_LAST_DESC 0x04000000
  211. /* TX descriptor command */
  212. #define TX_ENABLE_INTERRUPT 0x00800000
  213. #define GEN_CRC 0x00400000
  214. #define TX_FIRST_DESC 0x00200000
  215. #define TX_LAST_DESC 0x00100000
  216. #define ZERO_PADDING 0x00080000
  217. #define GEN_IP_V4_CHECKSUM 0x00040000
  218. #define GEN_TCP_UDP_CHECKSUM 0x00020000
  219. #define UDP_FRAME 0x00010000
  220. #define MAC_HDR_EXTRA_4_BYTES 0x00008000
  221. #define MAC_HDR_EXTRA_8_BYTES 0x00000200
  222. #define TX_IHL_SHIFT 11
  223. /* global *******************************************************************/
  224. struct mv643xx_eth_shared_private {
  225. /*
  226. * Ethernet controller base address.
  227. */
  228. void __iomem *base;
  229. /*
  230. * Points at the right SMI instance to use.
  231. */
  232. struct mv643xx_eth_shared_private *smi;
  233. /*
  234. * Provides access to local SMI interface.
  235. */
  236. struct mii_bus *smi_bus;
  237. /*
  238. * If we have access to the error interrupt pin (which is
  239. * somewhat misnamed as it not only reflects internal errors
  240. * but also reflects SMI completion), use that to wait for
  241. * SMI access completion instead of polling the SMI busy bit.
  242. */
  243. int err_interrupt;
  244. wait_queue_head_t smi_busy_wait;
  245. /*
  246. * Per-port MBUS window access register value.
  247. */
  248. u32 win_protect;
  249. /*
  250. * Hardware-specific parameters.
  251. */
  252. unsigned int t_clk;
  253. int extended_rx_coal_limit;
  254. int tx_bw_control;
  255. };
  256. #define TX_BW_CONTROL_ABSENT 0
  257. #define TX_BW_CONTROL_OLD_LAYOUT 1
  258. #define TX_BW_CONTROL_NEW_LAYOUT 2
  259. static int mv643xx_eth_open(struct net_device *dev);
  260. static int mv643xx_eth_stop(struct net_device *dev);
  261. /* per-port *****************************************************************/
  262. struct mib_counters {
  263. u64 good_octets_received;
  264. u32 bad_octets_received;
  265. u32 internal_mac_transmit_err;
  266. u32 good_frames_received;
  267. u32 bad_frames_received;
  268. u32 broadcast_frames_received;
  269. u32 multicast_frames_received;
  270. u32 frames_64_octets;
  271. u32 frames_65_to_127_octets;
  272. u32 frames_128_to_255_octets;
  273. u32 frames_256_to_511_octets;
  274. u32 frames_512_to_1023_octets;
  275. u32 frames_1024_to_max_octets;
  276. u64 good_octets_sent;
  277. u32 good_frames_sent;
  278. u32 excessive_collision;
  279. u32 multicast_frames_sent;
  280. u32 broadcast_frames_sent;
  281. u32 unrec_mac_control_received;
  282. u32 fc_sent;
  283. u32 good_fc_received;
  284. u32 bad_fc_received;
  285. u32 undersize_received;
  286. u32 fragments_received;
  287. u32 oversize_received;
  288. u32 jabber_received;
  289. u32 mac_receive_error;
  290. u32 bad_crc_event;
  291. u32 collision;
  292. u32 late_collision;
  293. };
  294. struct rx_queue {
  295. int index;
  296. int rx_ring_size;
  297. int rx_desc_count;
  298. int rx_curr_desc;
  299. int rx_used_desc;
  300. struct rx_desc *rx_desc_area;
  301. dma_addr_t rx_desc_dma;
  302. int rx_desc_area_size;
  303. struct sk_buff **rx_skb;
  304. };
  305. struct tx_queue {
  306. int index;
  307. int tx_ring_size;
  308. int tx_desc_count;
  309. int tx_curr_desc;
  310. int tx_used_desc;
  311. struct tx_desc *tx_desc_area;
  312. dma_addr_t tx_desc_dma;
  313. int tx_desc_area_size;
  314. struct sk_buff_head tx_skb;
  315. unsigned long tx_packets;
  316. unsigned long tx_bytes;
  317. unsigned long tx_dropped;
  318. };
  319. struct mv643xx_eth_private {
  320. struct mv643xx_eth_shared_private *shared;
  321. void __iomem *base;
  322. int port_num;
  323. struct net_device *dev;
  324. struct phy_device *phy;
  325. struct timer_list mib_counters_timer;
  326. spinlock_t mib_counters_lock;
  327. struct mib_counters mib_counters;
  328. struct work_struct tx_timeout_task;
  329. struct napi_struct napi;
  330. u8 work_link;
  331. u8 work_tx;
  332. u8 work_tx_end;
  333. u8 work_rx;
  334. u8 work_rx_refill;
  335. u8 work_rx_oom;
  336. int skb_size;
  337. struct sk_buff_head rx_recycle;
  338. /*
  339. * RX state.
  340. */
  341. int rx_ring_size;
  342. unsigned long rx_desc_sram_addr;
  343. int rx_desc_sram_size;
  344. int rxq_count;
  345. struct timer_list rx_oom;
  346. struct rx_queue rxq[8];
  347. /*
  348. * TX state.
  349. */
  350. int tx_ring_size;
  351. unsigned long tx_desc_sram_addr;
  352. int tx_desc_sram_size;
  353. int txq_count;
  354. struct tx_queue txq[8];
  355. };
  356. /* port register accessors **************************************************/
  357. static inline u32 rdl(struct mv643xx_eth_private *mp, int offset)
  358. {
  359. return readl(mp->shared->base + offset);
  360. }
  361. static inline u32 rdlp(struct mv643xx_eth_private *mp, int offset)
  362. {
  363. return readl(mp->base + offset);
  364. }
  365. static inline void wrl(struct mv643xx_eth_private *mp, int offset, u32 data)
  366. {
  367. writel(data, mp->shared->base + offset);
  368. }
  369. static inline void wrlp(struct mv643xx_eth_private *mp, int offset, u32 data)
  370. {
  371. writel(data, mp->base + offset);
  372. }
  373. /* rxq/txq helper functions *************************************************/
  374. static struct mv643xx_eth_private *rxq_to_mp(struct rx_queue *rxq)
  375. {
  376. return container_of(rxq, struct mv643xx_eth_private, rxq[rxq->index]);
  377. }
  378. static struct mv643xx_eth_private *txq_to_mp(struct tx_queue *txq)
  379. {
  380. return container_of(txq, struct mv643xx_eth_private, txq[txq->index]);
  381. }
  382. static void rxq_enable(struct rx_queue *rxq)
  383. {
  384. struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
  385. wrlp(mp, RXQ_COMMAND, 1 << rxq->index);
  386. }
  387. static void rxq_disable(struct rx_queue *rxq)
  388. {
  389. struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
  390. u8 mask = 1 << rxq->index;
  391. wrlp(mp, RXQ_COMMAND, mask << 8);
  392. while (rdlp(mp, RXQ_COMMAND) & mask)
  393. udelay(10);
  394. }
  395. static void txq_reset_hw_ptr(struct tx_queue *txq)
  396. {
  397. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  398. u32 addr;
  399. addr = (u32)txq->tx_desc_dma;
  400. addr += txq->tx_curr_desc * sizeof(struct tx_desc);
  401. wrlp(mp, TXQ_CURRENT_DESC_PTR(txq->index), addr);
  402. }
  403. static void txq_enable(struct tx_queue *txq)
  404. {
  405. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  406. wrlp(mp, TXQ_COMMAND, 1 << txq->index);
  407. }
  408. static void txq_disable(struct tx_queue *txq)
  409. {
  410. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  411. u8 mask = 1 << txq->index;
  412. wrlp(mp, TXQ_COMMAND, mask << 8);
  413. while (rdlp(mp, TXQ_COMMAND) & mask)
  414. udelay(10);
  415. }
  416. static void txq_maybe_wake(struct tx_queue *txq)
  417. {
  418. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  419. struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index);
  420. if (netif_tx_queue_stopped(nq)) {
  421. __netif_tx_lock(nq, smp_processor_id());
  422. if (txq->tx_ring_size - txq->tx_desc_count >= MAX_SKB_FRAGS + 1)
  423. netif_tx_wake_queue(nq);
  424. __netif_tx_unlock(nq);
  425. }
  426. }
  427. /* rx napi ******************************************************************/
  428. static int rxq_process(struct rx_queue *rxq, int budget)
  429. {
  430. struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
  431. struct net_device_stats *stats = &mp->dev->stats;
  432. int rx;
  433. rx = 0;
  434. while (rx < budget && rxq->rx_desc_count) {
  435. struct rx_desc *rx_desc;
  436. unsigned int cmd_sts;
  437. struct sk_buff *skb;
  438. u16 byte_cnt;
  439. rx_desc = &rxq->rx_desc_area[rxq->rx_curr_desc];
  440. cmd_sts = rx_desc->cmd_sts;
  441. if (cmd_sts & BUFFER_OWNED_BY_DMA)
  442. break;
  443. rmb();
  444. skb = rxq->rx_skb[rxq->rx_curr_desc];
  445. rxq->rx_skb[rxq->rx_curr_desc] = NULL;
  446. rxq->rx_curr_desc++;
  447. if (rxq->rx_curr_desc == rxq->rx_ring_size)
  448. rxq->rx_curr_desc = 0;
  449. dma_unmap_single(NULL, rx_desc->buf_ptr,
  450. rx_desc->buf_size, DMA_FROM_DEVICE);
  451. rxq->rx_desc_count--;
  452. rx++;
  453. mp->work_rx_refill |= 1 << rxq->index;
  454. byte_cnt = rx_desc->byte_cnt;
  455. /*
  456. * Update statistics.
  457. *
  458. * Note that the descriptor byte count includes 2 dummy
  459. * bytes automatically inserted by the hardware at the
  460. * start of the packet (which we don't count), and a 4
  461. * byte CRC at the end of the packet (which we do count).
  462. */
  463. stats->rx_packets++;
  464. stats->rx_bytes += byte_cnt - 2;
  465. /*
  466. * In case we received a packet without first / last bits
  467. * on, or the error summary bit is set, the packet needs
  468. * to be dropped.
  469. */
  470. if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC | ERROR_SUMMARY))
  471. != (RX_FIRST_DESC | RX_LAST_DESC))
  472. goto err;
  473. /*
  474. * The -4 is for the CRC in the trailer of the
  475. * received packet
  476. */
  477. skb_put(skb, byte_cnt - 2 - 4);
  478. if (cmd_sts & LAYER_4_CHECKSUM_OK)
  479. skb->ip_summed = CHECKSUM_UNNECESSARY;
  480. skb->protocol = eth_type_trans(skb, mp->dev);
  481. netif_receive_skb(skb);
  482. continue;
  483. err:
  484. stats->rx_dropped++;
  485. if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
  486. (RX_FIRST_DESC | RX_LAST_DESC)) {
  487. if (net_ratelimit())
  488. dev_printk(KERN_ERR, &mp->dev->dev,
  489. "received packet spanning "
  490. "multiple descriptors\n");
  491. }
  492. if (cmd_sts & ERROR_SUMMARY)
  493. stats->rx_errors++;
  494. dev_kfree_skb(skb);
  495. }
  496. if (rx < budget)
  497. mp->work_rx &= ~(1 << rxq->index);
  498. return rx;
  499. }
  500. static int rxq_refill(struct rx_queue *rxq, int budget)
  501. {
  502. struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
  503. int refilled;
  504. refilled = 0;
  505. while (refilled < budget && rxq->rx_desc_count < rxq->rx_ring_size) {
  506. struct sk_buff *skb;
  507. int unaligned;
  508. int rx;
  509. struct rx_desc *rx_desc;
  510. skb = __skb_dequeue(&mp->rx_recycle);
  511. if (skb == NULL)
  512. skb = dev_alloc_skb(mp->skb_size +
  513. dma_get_cache_alignment() - 1);
  514. if (skb == NULL) {
  515. mp->work_rx_oom |= 1 << rxq->index;
  516. goto oom;
  517. }
  518. unaligned = (u32)skb->data & (dma_get_cache_alignment() - 1);
  519. if (unaligned)
  520. skb_reserve(skb, dma_get_cache_alignment() - unaligned);
  521. refilled++;
  522. rxq->rx_desc_count++;
  523. rx = rxq->rx_used_desc++;
  524. if (rxq->rx_used_desc == rxq->rx_ring_size)
  525. rxq->rx_used_desc = 0;
  526. rx_desc = rxq->rx_desc_area + rx;
  527. rx_desc->buf_ptr = dma_map_single(NULL, skb->data,
  528. mp->skb_size, DMA_FROM_DEVICE);
  529. rx_desc->buf_size = mp->skb_size;
  530. rxq->rx_skb[rx] = skb;
  531. wmb();
  532. rx_desc->cmd_sts = BUFFER_OWNED_BY_DMA | RX_ENABLE_INTERRUPT;
  533. wmb();
  534. /*
  535. * The hardware automatically prepends 2 bytes of
  536. * dummy data to each received packet, so that the
  537. * IP header ends up 16-byte aligned.
  538. */
  539. skb_reserve(skb, 2);
  540. }
  541. if (refilled < budget)
  542. mp->work_rx_refill &= ~(1 << rxq->index);
  543. oom:
  544. return refilled;
  545. }
  546. /* tx ***********************************************************************/
  547. static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
  548. {
  549. int frag;
  550. for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
  551. skb_frag_t *fragp = &skb_shinfo(skb)->frags[frag];
  552. if (fragp->size <= 8 && fragp->page_offset & 7)
  553. return 1;
  554. }
  555. return 0;
  556. }
  557. static void txq_submit_frag_skb(struct tx_queue *txq, struct sk_buff *skb)
  558. {
  559. int nr_frags = skb_shinfo(skb)->nr_frags;
  560. int frag;
  561. for (frag = 0; frag < nr_frags; frag++) {
  562. skb_frag_t *this_frag;
  563. int tx_index;
  564. struct tx_desc *desc;
  565. this_frag = &skb_shinfo(skb)->frags[frag];
  566. tx_index = txq->tx_curr_desc++;
  567. if (txq->tx_curr_desc == txq->tx_ring_size)
  568. txq->tx_curr_desc = 0;
  569. desc = &txq->tx_desc_area[tx_index];
  570. /*
  571. * The last fragment will generate an interrupt
  572. * which will free the skb on TX completion.
  573. */
  574. if (frag == nr_frags - 1) {
  575. desc->cmd_sts = BUFFER_OWNED_BY_DMA |
  576. ZERO_PADDING | TX_LAST_DESC |
  577. TX_ENABLE_INTERRUPT;
  578. } else {
  579. desc->cmd_sts = BUFFER_OWNED_BY_DMA;
  580. }
  581. desc->l4i_chk = 0;
  582. desc->byte_cnt = this_frag->size;
  583. desc->buf_ptr = dma_map_page(NULL, this_frag->page,
  584. this_frag->page_offset,
  585. this_frag->size,
  586. DMA_TO_DEVICE);
  587. }
  588. }
  589. static inline __be16 sum16_as_be(__sum16 sum)
  590. {
  591. return (__force __be16)sum;
  592. }
  593. static int txq_submit_skb(struct tx_queue *txq, struct sk_buff *skb)
  594. {
  595. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  596. int nr_frags = skb_shinfo(skb)->nr_frags;
  597. int tx_index;
  598. struct tx_desc *desc;
  599. u32 cmd_sts;
  600. u16 l4i_chk;
  601. int length;
  602. cmd_sts = TX_FIRST_DESC | GEN_CRC | BUFFER_OWNED_BY_DMA;
  603. l4i_chk = 0;
  604. if (skb->ip_summed == CHECKSUM_PARTIAL) {
  605. int tag_bytes;
  606. BUG_ON(skb->protocol != htons(ETH_P_IP) &&
  607. skb->protocol != htons(ETH_P_8021Q));
  608. tag_bytes = (void *)ip_hdr(skb) - (void *)skb->data - ETH_HLEN;
  609. if (unlikely(tag_bytes & ~12)) {
  610. if (skb_checksum_help(skb) == 0)
  611. goto no_csum;
  612. kfree_skb(skb);
  613. return 1;
  614. }
  615. if (tag_bytes & 4)
  616. cmd_sts |= MAC_HDR_EXTRA_4_BYTES;
  617. if (tag_bytes & 8)
  618. cmd_sts |= MAC_HDR_EXTRA_8_BYTES;
  619. cmd_sts |= GEN_TCP_UDP_CHECKSUM |
  620. GEN_IP_V4_CHECKSUM |
  621. ip_hdr(skb)->ihl << TX_IHL_SHIFT;
  622. switch (ip_hdr(skb)->protocol) {
  623. case IPPROTO_UDP:
  624. cmd_sts |= UDP_FRAME;
  625. l4i_chk = ntohs(sum16_as_be(udp_hdr(skb)->check));
  626. break;
  627. case IPPROTO_TCP:
  628. l4i_chk = ntohs(sum16_as_be(tcp_hdr(skb)->check));
  629. break;
  630. default:
  631. BUG();
  632. }
  633. } else {
  634. no_csum:
  635. /* Errata BTS #50, IHL must be 5 if no HW checksum */
  636. cmd_sts |= 5 << TX_IHL_SHIFT;
  637. }
  638. tx_index = txq->tx_curr_desc++;
  639. if (txq->tx_curr_desc == txq->tx_ring_size)
  640. txq->tx_curr_desc = 0;
  641. desc = &txq->tx_desc_area[tx_index];
  642. if (nr_frags) {
  643. txq_submit_frag_skb(txq, skb);
  644. length = skb_headlen(skb);
  645. } else {
  646. cmd_sts |= ZERO_PADDING | TX_LAST_DESC | TX_ENABLE_INTERRUPT;
  647. length = skb->len;
  648. }
  649. desc->l4i_chk = l4i_chk;
  650. desc->byte_cnt = length;
  651. desc->buf_ptr = dma_map_single(NULL, skb->data, length, DMA_TO_DEVICE);
  652. __skb_queue_tail(&txq->tx_skb, skb);
  653. /* ensure all other descriptors are written before first cmd_sts */
  654. wmb();
  655. desc->cmd_sts = cmd_sts;
  656. /* clear TX_END status */
  657. mp->work_tx_end &= ~(1 << txq->index);
  658. /* ensure all descriptors are written before poking hardware */
  659. wmb();
  660. txq_enable(txq);
  661. txq->tx_desc_count += nr_frags + 1;
  662. return 0;
  663. }
  664. static int mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev)
  665. {
  666. struct mv643xx_eth_private *mp = netdev_priv(dev);
  667. int queue;
  668. struct tx_queue *txq;
  669. struct netdev_queue *nq;
  670. queue = skb_get_queue_mapping(skb);
  671. txq = mp->txq + queue;
  672. nq = netdev_get_tx_queue(dev, queue);
  673. if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
  674. txq->tx_dropped++;
  675. dev_printk(KERN_DEBUG, &dev->dev,
  676. "failed to linearize skb with tiny "
  677. "unaligned fragment\n");
  678. return NETDEV_TX_BUSY;
  679. }
  680. if (txq->tx_ring_size - txq->tx_desc_count < MAX_SKB_FRAGS + 1) {
  681. if (net_ratelimit())
  682. dev_printk(KERN_ERR, &dev->dev, "tx queue full?!\n");
  683. kfree_skb(skb);
  684. return NETDEV_TX_OK;
  685. }
  686. if (!txq_submit_skb(txq, skb)) {
  687. int entries_left;
  688. txq->tx_bytes += skb->len;
  689. txq->tx_packets++;
  690. dev->trans_start = jiffies;
  691. entries_left = txq->tx_ring_size - txq->tx_desc_count;
  692. if (entries_left < MAX_SKB_FRAGS + 1)
  693. netif_tx_stop_queue(nq);
  694. }
  695. return NETDEV_TX_OK;
  696. }
  697. /* tx napi ******************************************************************/
  698. static void txq_kick(struct tx_queue *txq)
  699. {
  700. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  701. struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index);
  702. u32 hw_desc_ptr;
  703. u32 expected_ptr;
  704. __netif_tx_lock(nq, smp_processor_id());
  705. if (rdlp(mp, TXQ_COMMAND) & (1 << txq->index))
  706. goto out;
  707. hw_desc_ptr = rdlp(mp, TXQ_CURRENT_DESC_PTR(txq->index));
  708. expected_ptr = (u32)txq->tx_desc_dma +
  709. txq->tx_curr_desc * sizeof(struct tx_desc);
  710. if (hw_desc_ptr != expected_ptr)
  711. txq_enable(txq);
  712. out:
  713. __netif_tx_unlock(nq);
  714. mp->work_tx_end &= ~(1 << txq->index);
  715. }
  716. static int txq_reclaim(struct tx_queue *txq, int budget, int force)
  717. {
  718. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  719. struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index);
  720. int reclaimed;
  721. __netif_tx_lock(nq, smp_processor_id());
  722. reclaimed = 0;
  723. while (reclaimed < budget && txq->tx_desc_count > 0) {
  724. int tx_index;
  725. struct tx_desc *desc;
  726. u32 cmd_sts;
  727. struct sk_buff *skb;
  728. tx_index = txq->tx_used_desc;
  729. desc = &txq->tx_desc_area[tx_index];
  730. cmd_sts = desc->cmd_sts;
  731. if (cmd_sts & BUFFER_OWNED_BY_DMA) {
  732. if (!force)
  733. break;
  734. desc->cmd_sts = cmd_sts & ~BUFFER_OWNED_BY_DMA;
  735. }
  736. txq->tx_used_desc = tx_index + 1;
  737. if (txq->tx_used_desc == txq->tx_ring_size)
  738. txq->tx_used_desc = 0;
  739. reclaimed++;
  740. txq->tx_desc_count--;
  741. skb = NULL;
  742. if (cmd_sts & TX_LAST_DESC)
  743. skb = __skb_dequeue(&txq->tx_skb);
  744. if (cmd_sts & ERROR_SUMMARY) {
  745. dev_printk(KERN_INFO, &mp->dev->dev, "tx error\n");
  746. mp->dev->stats.tx_errors++;
  747. }
  748. if (cmd_sts & TX_FIRST_DESC) {
  749. dma_unmap_single(NULL, desc->buf_ptr,
  750. desc->byte_cnt, DMA_TO_DEVICE);
  751. } else {
  752. dma_unmap_page(NULL, desc->buf_ptr,
  753. desc->byte_cnt, DMA_TO_DEVICE);
  754. }
  755. if (skb != NULL) {
  756. if (skb_queue_len(&mp->rx_recycle) <
  757. mp->rx_ring_size &&
  758. skb_recycle_check(skb, mp->skb_size +
  759. dma_get_cache_alignment() - 1))
  760. __skb_queue_head(&mp->rx_recycle, skb);
  761. else
  762. dev_kfree_skb(skb);
  763. }
  764. }
  765. __netif_tx_unlock(nq);
  766. if (reclaimed < budget)
  767. mp->work_tx &= ~(1 << txq->index);
  768. return reclaimed;
  769. }
  770. /* tx rate control **********************************************************/
  771. /*
  772. * Set total maximum TX rate (shared by all TX queues for this port)
  773. * to 'rate' bits per second, with a maximum burst of 'burst' bytes.
  774. */
  775. static void tx_set_rate(struct mv643xx_eth_private *mp, int rate, int burst)
  776. {
  777. int token_rate;
  778. int mtu;
  779. int bucket_size;
  780. token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
  781. if (token_rate > 1023)
  782. token_rate = 1023;
  783. mtu = (mp->dev->mtu + 255) >> 8;
  784. if (mtu > 63)
  785. mtu = 63;
  786. bucket_size = (burst + 255) >> 8;
  787. if (bucket_size > 65535)
  788. bucket_size = 65535;
  789. switch (mp->shared->tx_bw_control) {
  790. case TX_BW_CONTROL_OLD_LAYOUT:
  791. wrlp(mp, TX_BW_RATE, token_rate);
  792. wrlp(mp, TX_BW_MTU, mtu);
  793. wrlp(mp, TX_BW_BURST, bucket_size);
  794. break;
  795. case TX_BW_CONTROL_NEW_LAYOUT:
  796. wrlp(mp, TX_BW_RATE_MOVED, token_rate);
  797. wrlp(mp, TX_BW_MTU_MOVED, mtu);
  798. wrlp(mp, TX_BW_BURST_MOVED, bucket_size);
  799. break;
  800. }
  801. }
  802. static void txq_set_rate(struct tx_queue *txq, int rate, int burst)
  803. {
  804. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  805. int token_rate;
  806. int bucket_size;
  807. token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
  808. if (token_rate > 1023)
  809. token_rate = 1023;
  810. bucket_size = (burst + 255) >> 8;
  811. if (bucket_size > 65535)
  812. bucket_size = 65535;
  813. wrlp(mp, TXQ_BW_TOKENS(txq->index), token_rate << 14);
  814. wrlp(mp, TXQ_BW_CONF(txq->index), (bucket_size << 10) | token_rate);
  815. }
  816. static void txq_set_fixed_prio_mode(struct tx_queue *txq)
  817. {
  818. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  819. int off;
  820. u32 val;
  821. /*
  822. * Turn on fixed priority mode.
  823. */
  824. off = 0;
  825. switch (mp->shared->tx_bw_control) {
  826. case TX_BW_CONTROL_OLD_LAYOUT:
  827. off = TXQ_FIX_PRIO_CONF;
  828. break;
  829. case TX_BW_CONTROL_NEW_LAYOUT:
  830. off = TXQ_FIX_PRIO_CONF_MOVED;
  831. break;
  832. }
  833. if (off) {
  834. val = rdlp(mp, off);
  835. val |= 1 << txq->index;
  836. wrlp(mp, off, val);
  837. }
  838. }
  839. static void txq_set_wrr(struct tx_queue *txq, int weight)
  840. {
  841. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  842. int off;
  843. u32 val;
  844. /*
  845. * Turn off fixed priority mode.
  846. */
  847. off = 0;
  848. switch (mp->shared->tx_bw_control) {
  849. case TX_BW_CONTROL_OLD_LAYOUT:
  850. off = TXQ_FIX_PRIO_CONF;
  851. break;
  852. case TX_BW_CONTROL_NEW_LAYOUT:
  853. off = TXQ_FIX_PRIO_CONF_MOVED;
  854. break;
  855. }
  856. if (off) {
  857. val = rdlp(mp, off);
  858. val &= ~(1 << txq->index);
  859. wrlp(mp, off, val);
  860. /*
  861. * Configure WRR weight for this queue.
  862. */
  863. val = rdlp(mp, off);
  864. val = (val & ~0xff) | (weight & 0xff);
  865. wrlp(mp, TXQ_BW_WRR_CONF(txq->index), val);
  866. }
  867. }
  868. /* mii management interface *************************************************/
  869. static irqreturn_t mv643xx_eth_err_irq(int irq, void *dev_id)
  870. {
  871. struct mv643xx_eth_shared_private *msp = dev_id;
  872. if (readl(msp->base + ERR_INT_CAUSE) & ERR_INT_SMI_DONE) {
  873. writel(~ERR_INT_SMI_DONE, msp->base + ERR_INT_CAUSE);
  874. wake_up(&msp->smi_busy_wait);
  875. return IRQ_HANDLED;
  876. }
  877. return IRQ_NONE;
  878. }
  879. static int smi_is_done(struct mv643xx_eth_shared_private *msp)
  880. {
  881. return !(readl(msp->base + SMI_REG) & SMI_BUSY);
  882. }
  883. static int smi_wait_ready(struct mv643xx_eth_shared_private *msp)
  884. {
  885. if (msp->err_interrupt == NO_IRQ) {
  886. int i;
  887. for (i = 0; !smi_is_done(msp); i++) {
  888. if (i == 10)
  889. return -ETIMEDOUT;
  890. msleep(10);
  891. }
  892. return 0;
  893. }
  894. if (!smi_is_done(msp)) {
  895. wait_event_timeout(msp->smi_busy_wait, smi_is_done(msp),
  896. msecs_to_jiffies(100));
  897. if (!smi_is_done(msp))
  898. return -ETIMEDOUT;
  899. }
  900. return 0;
  901. }
  902. static int smi_bus_read(struct mii_bus *bus, int addr, int reg)
  903. {
  904. struct mv643xx_eth_shared_private *msp = bus->priv;
  905. void __iomem *smi_reg = msp->base + SMI_REG;
  906. int ret;
  907. if (smi_wait_ready(msp)) {
  908. printk(KERN_WARNING "mv643xx_eth: SMI bus busy timeout\n");
  909. return -ETIMEDOUT;
  910. }
  911. writel(SMI_OPCODE_READ | (reg << 21) | (addr << 16), smi_reg);
  912. if (smi_wait_ready(msp)) {
  913. printk(KERN_WARNING "mv643xx_eth: SMI bus busy timeout\n");
  914. return -ETIMEDOUT;
  915. }
  916. ret = readl(smi_reg);
  917. if (!(ret & SMI_READ_VALID)) {
  918. printk(KERN_WARNING "mv643xx_eth: SMI bus read not valid\n");
  919. return -ENODEV;
  920. }
  921. return ret & 0xffff;
  922. }
  923. static int smi_bus_write(struct mii_bus *bus, int addr, int reg, u16 val)
  924. {
  925. struct mv643xx_eth_shared_private *msp = bus->priv;
  926. void __iomem *smi_reg = msp->base + SMI_REG;
  927. if (smi_wait_ready(msp)) {
  928. printk(KERN_WARNING "mv643xx_eth: SMI bus busy timeout\n");
  929. return -ETIMEDOUT;
  930. }
  931. writel(SMI_OPCODE_WRITE | (reg << 21) |
  932. (addr << 16) | (val & 0xffff), smi_reg);
  933. if (smi_wait_ready(msp)) {
  934. printk(KERN_WARNING "mv643xx_eth: SMI bus busy timeout\n");
  935. return -ETIMEDOUT;
  936. }
  937. return 0;
  938. }
  939. /* statistics ***************************************************************/
  940. static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *dev)
  941. {
  942. struct mv643xx_eth_private *mp = netdev_priv(dev);
  943. struct net_device_stats *stats = &dev->stats;
  944. unsigned long tx_packets = 0;
  945. unsigned long tx_bytes = 0;
  946. unsigned long tx_dropped = 0;
  947. int i;
  948. for (i = 0; i < mp->txq_count; i++) {
  949. struct tx_queue *txq = mp->txq + i;
  950. tx_packets += txq->tx_packets;
  951. tx_bytes += txq->tx_bytes;
  952. tx_dropped += txq->tx_dropped;
  953. }
  954. stats->tx_packets = tx_packets;
  955. stats->tx_bytes = tx_bytes;
  956. stats->tx_dropped = tx_dropped;
  957. return stats;
  958. }
  959. static inline u32 mib_read(struct mv643xx_eth_private *mp, int offset)
  960. {
  961. return rdl(mp, MIB_COUNTERS(mp->port_num) + offset);
  962. }
  963. static void mib_counters_clear(struct mv643xx_eth_private *mp)
  964. {
  965. int i;
  966. for (i = 0; i < 0x80; i += 4)
  967. mib_read(mp, i);
  968. }
  969. static void mib_counters_update(struct mv643xx_eth_private *mp)
  970. {
  971. struct mib_counters *p = &mp->mib_counters;
  972. spin_lock(&mp->mib_counters_lock);
  973. p->good_octets_received += mib_read(mp, 0x00);
  974. p->good_octets_received += (u64)mib_read(mp, 0x04) << 32;
  975. p->bad_octets_received += mib_read(mp, 0x08);
  976. p->internal_mac_transmit_err += mib_read(mp, 0x0c);
  977. p->good_frames_received += mib_read(mp, 0x10);
  978. p->bad_frames_received += mib_read(mp, 0x14);
  979. p->broadcast_frames_received += mib_read(mp, 0x18);
  980. p->multicast_frames_received += mib_read(mp, 0x1c);
  981. p->frames_64_octets += mib_read(mp, 0x20);
  982. p->frames_65_to_127_octets += mib_read(mp, 0x24);
  983. p->frames_128_to_255_octets += mib_read(mp, 0x28);
  984. p->frames_256_to_511_octets += mib_read(mp, 0x2c);
  985. p->frames_512_to_1023_octets += mib_read(mp, 0x30);
  986. p->frames_1024_to_max_octets += mib_read(mp, 0x34);
  987. p->good_octets_sent += mib_read(mp, 0x38);
  988. p->good_octets_sent += (u64)mib_read(mp, 0x3c) << 32;
  989. p->good_frames_sent += mib_read(mp, 0x40);
  990. p->excessive_collision += mib_read(mp, 0x44);
  991. p->multicast_frames_sent += mib_read(mp, 0x48);
  992. p->broadcast_frames_sent += mib_read(mp, 0x4c);
  993. p->unrec_mac_control_received += mib_read(mp, 0x50);
  994. p->fc_sent += mib_read(mp, 0x54);
  995. p->good_fc_received += mib_read(mp, 0x58);
  996. p->bad_fc_received += mib_read(mp, 0x5c);
  997. p->undersize_received += mib_read(mp, 0x60);
  998. p->fragments_received += mib_read(mp, 0x64);
  999. p->oversize_received += mib_read(mp, 0x68);
  1000. p->jabber_received += mib_read(mp, 0x6c);
  1001. p->mac_receive_error += mib_read(mp, 0x70);
  1002. p->bad_crc_event += mib_read(mp, 0x74);
  1003. p->collision += mib_read(mp, 0x78);
  1004. p->late_collision += mib_read(mp, 0x7c);
  1005. spin_unlock(&mp->mib_counters_lock);
  1006. mod_timer(&mp->mib_counters_timer, jiffies + 30 * HZ);
  1007. }
  1008. static void mib_counters_timer_wrapper(unsigned long _mp)
  1009. {
  1010. struct mv643xx_eth_private *mp = (void *)_mp;
  1011. mib_counters_update(mp);
  1012. }
  1013. /* interrupt coalescing *****************************************************/
  1014. /*
  1015. * Hardware coalescing parameters are set in units of 64 t_clk
  1016. * cycles. I.e.:
  1017. *
  1018. * coal_delay_in_usec = 64000000 * register_value / t_clk_rate
  1019. *
  1020. * register_value = coal_delay_in_usec * t_clk_rate / 64000000
  1021. *
  1022. * In the ->set*() methods, we round the computed register value
  1023. * to the nearest integer.
  1024. */
  1025. static unsigned int get_rx_coal(struct mv643xx_eth_private *mp)
  1026. {
  1027. u32 val = rdlp(mp, SDMA_CONFIG);
  1028. u64 temp;
  1029. if (mp->shared->extended_rx_coal_limit)
  1030. temp = ((val & 0x02000000) >> 10) | ((val & 0x003fff80) >> 7);
  1031. else
  1032. temp = (val & 0x003fff00) >> 8;
  1033. temp *= 64000000;
  1034. do_div(temp, mp->shared->t_clk);
  1035. return (unsigned int)temp;
  1036. }
  1037. static void set_rx_coal(struct mv643xx_eth_private *mp, unsigned int usec)
  1038. {
  1039. u64 temp;
  1040. u32 val;
  1041. temp = (u64)usec * mp->shared->t_clk;
  1042. temp += 31999999;
  1043. do_div(temp, 64000000);
  1044. val = rdlp(mp, SDMA_CONFIG);
  1045. if (mp->shared->extended_rx_coal_limit) {
  1046. if (temp > 0xffff)
  1047. temp = 0xffff;
  1048. val &= ~0x023fff80;
  1049. val |= (temp & 0x8000) << 10;
  1050. val |= (temp & 0x7fff) << 7;
  1051. } else {
  1052. if (temp > 0x3fff)
  1053. temp = 0x3fff;
  1054. val &= ~0x003fff00;
  1055. val |= (temp & 0x3fff) << 8;
  1056. }
  1057. wrlp(mp, SDMA_CONFIG, val);
  1058. }
  1059. static unsigned int get_tx_coal(struct mv643xx_eth_private *mp)
  1060. {
  1061. u64 temp;
  1062. temp = (rdlp(mp, TX_FIFO_URGENT_THRESHOLD) & 0x3fff0) >> 4;
  1063. temp *= 64000000;
  1064. do_div(temp, mp->shared->t_clk);
  1065. return (unsigned int)temp;
  1066. }
  1067. static void set_tx_coal(struct mv643xx_eth_private *mp, unsigned int usec)
  1068. {
  1069. u64 temp;
  1070. temp = (u64)usec * mp->shared->t_clk;
  1071. temp += 31999999;
  1072. do_div(temp, 64000000);
  1073. if (temp > 0x3fff)
  1074. temp = 0x3fff;
  1075. wrlp(mp, TX_FIFO_URGENT_THRESHOLD, temp << 4);
  1076. }
  1077. /* ethtool ******************************************************************/
  1078. struct mv643xx_eth_stats {
  1079. char stat_string[ETH_GSTRING_LEN];
  1080. int sizeof_stat;
  1081. int netdev_off;
  1082. int mp_off;
  1083. };
  1084. #define SSTAT(m) \
  1085. { #m, FIELD_SIZEOF(struct net_device_stats, m), \
  1086. offsetof(struct net_device, stats.m), -1 }
  1087. #define MIBSTAT(m) \
  1088. { #m, FIELD_SIZEOF(struct mib_counters, m), \
  1089. -1, offsetof(struct mv643xx_eth_private, mib_counters.m) }
  1090. static const struct mv643xx_eth_stats mv643xx_eth_stats[] = {
  1091. SSTAT(rx_packets),
  1092. SSTAT(tx_packets),
  1093. SSTAT(rx_bytes),
  1094. SSTAT(tx_bytes),
  1095. SSTAT(rx_errors),
  1096. SSTAT(tx_errors),
  1097. SSTAT(rx_dropped),
  1098. SSTAT(tx_dropped),
  1099. MIBSTAT(good_octets_received),
  1100. MIBSTAT(bad_octets_received),
  1101. MIBSTAT(internal_mac_transmit_err),
  1102. MIBSTAT(good_frames_received),
  1103. MIBSTAT(bad_frames_received),
  1104. MIBSTAT(broadcast_frames_received),
  1105. MIBSTAT(multicast_frames_received),
  1106. MIBSTAT(frames_64_octets),
  1107. MIBSTAT(frames_65_to_127_octets),
  1108. MIBSTAT(frames_128_to_255_octets),
  1109. MIBSTAT(frames_256_to_511_octets),
  1110. MIBSTAT(frames_512_to_1023_octets),
  1111. MIBSTAT(frames_1024_to_max_octets),
  1112. MIBSTAT(good_octets_sent),
  1113. MIBSTAT(good_frames_sent),
  1114. MIBSTAT(excessive_collision),
  1115. MIBSTAT(multicast_frames_sent),
  1116. MIBSTAT(broadcast_frames_sent),
  1117. MIBSTAT(unrec_mac_control_received),
  1118. MIBSTAT(fc_sent),
  1119. MIBSTAT(good_fc_received),
  1120. MIBSTAT(bad_fc_received),
  1121. MIBSTAT(undersize_received),
  1122. MIBSTAT(fragments_received),
  1123. MIBSTAT(oversize_received),
  1124. MIBSTAT(jabber_received),
  1125. MIBSTAT(mac_receive_error),
  1126. MIBSTAT(bad_crc_event),
  1127. MIBSTAT(collision),
  1128. MIBSTAT(late_collision),
  1129. };
  1130. static int
  1131. mv643xx_eth_get_settings_phy(struct mv643xx_eth_private *mp,
  1132. struct ethtool_cmd *cmd)
  1133. {
  1134. int err;
  1135. err = phy_read_status(mp->phy);
  1136. if (err == 0)
  1137. err = phy_ethtool_gset(mp->phy, cmd);
  1138. /*
  1139. * The MAC does not support 1000baseT_Half.
  1140. */
  1141. cmd->supported &= ~SUPPORTED_1000baseT_Half;
  1142. cmd->advertising &= ~ADVERTISED_1000baseT_Half;
  1143. return err;
  1144. }
  1145. static int
  1146. mv643xx_eth_get_settings_phyless(struct mv643xx_eth_private *mp,
  1147. struct ethtool_cmd *cmd)
  1148. {
  1149. u32 port_status;
  1150. port_status = rdlp(mp, PORT_STATUS);
  1151. cmd->supported = SUPPORTED_MII;
  1152. cmd->advertising = ADVERTISED_MII;
  1153. switch (port_status & PORT_SPEED_MASK) {
  1154. case PORT_SPEED_10:
  1155. cmd->speed = SPEED_10;
  1156. break;
  1157. case PORT_SPEED_100:
  1158. cmd->speed = SPEED_100;
  1159. break;
  1160. case PORT_SPEED_1000:
  1161. cmd->speed = SPEED_1000;
  1162. break;
  1163. default:
  1164. cmd->speed = -1;
  1165. break;
  1166. }
  1167. cmd->duplex = (port_status & FULL_DUPLEX) ? DUPLEX_FULL : DUPLEX_HALF;
  1168. cmd->port = PORT_MII;
  1169. cmd->phy_address = 0;
  1170. cmd->transceiver = XCVR_INTERNAL;
  1171. cmd->autoneg = AUTONEG_DISABLE;
  1172. cmd->maxtxpkt = 1;
  1173. cmd->maxrxpkt = 1;
  1174. return 0;
  1175. }
  1176. static int
  1177. mv643xx_eth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
  1178. {
  1179. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1180. if (mp->phy != NULL)
  1181. return mv643xx_eth_get_settings_phy(mp, cmd);
  1182. else
  1183. return mv643xx_eth_get_settings_phyless(mp, cmd);
  1184. }
  1185. static int
  1186. mv643xx_eth_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
  1187. {
  1188. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1189. if (mp->phy == NULL)
  1190. return -EINVAL;
  1191. /*
  1192. * The MAC does not support 1000baseT_Half.
  1193. */
  1194. cmd->advertising &= ~ADVERTISED_1000baseT_Half;
  1195. return phy_ethtool_sset(mp->phy, cmd);
  1196. }
  1197. static void mv643xx_eth_get_drvinfo(struct net_device *dev,
  1198. struct ethtool_drvinfo *drvinfo)
  1199. {
  1200. strncpy(drvinfo->driver, mv643xx_eth_driver_name, 32);
  1201. strncpy(drvinfo->version, mv643xx_eth_driver_version, 32);
  1202. strncpy(drvinfo->fw_version, "N/A", 32);
  1203. strncpy(drvinfo->bus_info, "platform", 32);
  1204. drvinfo->n_stats = ARRAY_SIZE(mv643xx_eth_stats);
  1205. }
  1206. static int mv643xx_eth_nway_reset(struct net_device *dev)
  1207. {
  1208. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1209. if (mp->phy == NULL)
  1210. return -EINVAL;
  1211. return genphy_restart_aneg(mp->phy);
  1212. }
  1213. static u32 mv643xx_eth_get_link(struct net_device *dev)
  1214. {
  1215. return !!netif_carrier_ok(dev);
  1216. }
  1217. static int
  1218. mv643xx_eth_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
  1219. {
  1220. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1221. ec->rx_coalesce_usecs = get_rx_coal(mp);
  1222. ec->tx_coalesce_usecs = get_tx_coal(mp);
  1223. return 0;
  1224. }
  1225. static int
  1226. mv643xx_eth_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
  1227. {
  1228. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1229. set_rx_coal(mp, ec->rx_coalesce_usecs);
  1230. set_tx_coal(mp, ec->tx_coalesce_usecs);
  1231. return 0;
  1232. }
  1233. static void
  1234. mv643xx_eth_get_ringparam(struct net_device *dev, struct ethtool_ringparam *er)
  1235. {
  1236. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1237. er->rx_max_pending = 4096;
  1238. er->tx_max_pending = 4096;
  1239. er->rx_mini_max_pending = 0;
  1240. er->rx_jumbo_max_pending = 0;
  1241. er->rx_pending = mp->rx_ring_size;
  1242. er->tx_pending = mp->tx_ring_size;
  1243. er->rx_mini_pending = 0;
  1244. er->rx_jumbo_pending = 0;
  1245. }
  1246. static int
  1247. mv643xx_eth_set_ringparam(struct net_device *dev, struct ethtool_ringparam *er)
  1248. {
  1249. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1250. if (er->rx_mini_pending || er->rx_jumbo_pending)
  1251. return -EINVAL;
  1252. mp->rx_ring_size = er->rx_pending < 4096 ? er->rx_pending : 4096;
  1253. mp->tx_ring_size = er->tx_pending < 4096 ? er->tx_pending : 4096;
  1254. if (netif_running(dev)) {
  1255. mv643xx_eth_stop(dev);
  1256. if (mv643xx_eth_open(dev)) {
  1257. dev_printk(KERN_ERR, &dev->dev,
  1258. "fatal error on re-opening device after "
  1259. "ring param change\n");
  1260. return -ENOMEM;
  1261. }
  1262. }
  1263. return 0;
  1264. }
  1265. static u32
  1266. mv643xx_eth_get_rx_csum(struct net_device *dev)
  1267. {
  1268. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1269. return !!(rdlp(mp, PORT_CONFIG) & 0x02000000);
  1270. }
  1271. static int
  1272. mv643xx_eth_set_rx_csum(struct net_device *dev, u32 rx_csum)
  1273. {
  1274. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1275. wrlp(mp, PORT_CONFIG, rx_csum ? 0x02000000 : 0x00000000);
  1276. return 0;
  1277. }
  1278. static void mv643xx_eth_get_strings(struct net_device *dev,
  1279. uint32_t stringset, uint8_t *data)
  1280. {
  1281. int i;
  1282. if (stringset == ETH_SS_STATS) {
  1283. for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
  1284. memcpy(data + i * ETH_GSTRING_LEN,
  1285. mv643xx_eth_stats[i].stat_string,
  1286. ETH_GSTRING_LEN);
  1287. }
  1288. }
  1289. }
  1290. static void mv643xx_eth_get_ethtool_stats(struct net_device *dev,
  1291. struct ethtool_stats *stats,
  1292. uint64_t *data)
  1293. {
  1294. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1295. int i;
  1296. mv643xx_eth_get_stats(dev);
  1297. mib_counters_update(mp);
  1298. for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
  1299. const struct mv643xx_eth_stats *stat;
  1300. void *p;
  1301. stat = mv643xx_eth_stats + i;
  1302. if (stat->netdev_off >= 0)
  1303. p = ((void *)mp->dev) + stat->netdev_off;
  1304. else
  1305. p = ((void *)mp) + stat->mp_off;
  1306. data[i] = (stat->sizeof_stat == 8) ?
  1307. *(uint64_t *)p : *(uint32_t *)p;
  1308. }
  1309. }
  1310. static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset)
  1311. {
  1312. if (sset == ETH_SS_STATS)
  1313. return ARRAY_SIZE(mv643xx_eth_stats);
  1314. return -EOPNOTSUPP;
  1315. }
  1316. static const struct ethtool_ops mv643xx_eth_ethtool_ops = {
  1317. .get_settings = mv643xx_eth_get_settings,
  1318. .set_settings = mv643xx_eth_set_settings,
  1319. .get_drvinfo = mv643xx_eth_get_drvinfo,
  1320. .nway_reset = mv643xx_eth_nway_reset,
  1321. .get_link = mv643xx_eth_get_link,
  1322. .get_coalesce = mv643xx_eth_get_coalesce,
  1323. .set_coalesce = mv643xx_eth_set_coalesce,
  1324. .get_ringparam = mv643xx_eth_get_ringparam,
  1325. .set_ringparam = mv643xx_eth_set_ringparam,
  1326. .get_rx_csum = mv643xx_eth_get_rx_csum,
  1327. .set_rx_csum = mv643xx_eth_set_rx_csum,
  1328. .set_tx_csum = ethtool_op_set_tx_csum,
  1329. .set_sg = ethtool_op_set_sg,
  1330. .get_strings = mv643xx_eth_get_strings,
  1331. .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
  1332. .get_sset_count = mv643xx_eth_get_sset_count,
  1333. };
  1334. /* address handling *********************************************************/
  1335. static void uc_addr_get(struct mv643xx_eth_private *mp, unsigned char *addr)
  1336. {
  1337. unsigned int mac_h = rdlp(mp, MAC_ADDR_HIGH);
  1338. unsigned int mac_l = rdlp(mp, MAC_ADDR_LOW);
  1339. addr[0] = (mac_h >> 24) & 0xff;
  1340. addr[1] = (mac_h >> 16) & 0xff;
  1341. addr[2] = (mac_h >> 8) & 0xff;
  1342. addr[3] = mac_h & 0xff;
  1343. addr[4] = (mac_l >> 8) & 0xff;
  1344. addr[5] = mac_l & 0xff;
  1345. }
  1346. static void uc_addr_set(struct mv643xx_eth_private *mp, unsigned char *addr)
  1347. {
  1348. wrlp(mp, MAC_ADDR_HIGH,
  1349. (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3]);
  1350. wrlp(mp, MAC_ADDR_LOW, (addr[4] << 8) | addr[5]);
  1351. }
  1352. static u32 uc_addr_filter_mask(struct net_device *dev)
  1353. {
  1354. struct dev_addr_list *uc_ptr;
  1355. u32 nibbles;
  1356. if (dev->flags & IFF_PROMISC)
  1357. return 0;
  1358. nibbles = 1 << (dev->dev_addr[5] & 0x0f);
  1359. for (uc_ptr = dev->uc_list; uc_ptr != NULL; uc_ptr = uc_ptr->next) {
  1360. if (memcmp(dev->dev_addr, uc_ptr->da_addr, 5))
  1361. return 0;
  1362. if ((dev->dev_addr[5] ^ uc_ptr->da_addr[5]) & 0xf0)
  1363. return 0;
  1364. nibbles |= 1 << (uc_ptr->da_addr[5] & 0x0f);
  1365. }
  1366. return nibbles;
  1367. }
  1368. static void mv643xx_eth_program_unicast_filter(struct net_device *dev)
  1369. {
  1370. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1371. u32 port_config;
  1372. u32 nibbles;
  1373. int i;
  1374. uc_addr_set(mp, dev->dev_addr);
  1375. port_config = rdlp(mp, PORT_CONFIG);
  1376. nibbles = uc_addr_filter_mask(dev);
  1377. if (!nibbles) {
  1378. port_config |= UNICAST_PROMISCUOUS_MODE;
  1379. wrlp(mp, PORT_CONFIG, port_config);
  1380. return;
  1381. }
  1382. for (i = 0; i < 16; i += 4) {
  1383. int off = UNICAST_TABLE(mp->port_num) + i;
  1384. u32 v;
  1385. v = 0;
  1386. if (nibbles & 1)
  1387. v |= 0x00000001;
  1388. if (nibbles & 2)
  1389. v |= 0x00000100;
  1390. if (nibbles & 4)
  1391. v |= 0x00010000;
  1392. if (nibbles & 8)
  1393. v |= 0x01000000;
  1394. nibbles >>= 4;
  1395. wrl(mp, off, v);
  1396. }
  1397. port_config &= ~UNICAST_PROMISCUOUS_MODE;
  1398. wrlp(mp, PORT_CONFIG, port_config);
  1399. }
  1400. static int addr_crc(unsigned char *addr)
  1401. {
  1402. int crc = 0;
  1403. int i;
  1404. for (i = 0; i < 6; i++) {
  1405. int j;
  1406. crc = (crc ^ addr[i]) << 8;
  1407. for (j = 7; j >= 0; j--) {
  1408. if (crc & (0x100 << j))
  1409. crc ^= 0x107 << j;
  1410. }
  1411. }
  1412. return crc;
  1413. }
  1414. static void mv643xx_eth_program_multicast_filter(struct net_device *dev)
  1415. {
  1416. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1417. u32 *mc_spec;
  1418. u32 *mc_other;
  1419. struct dev_addr_list *addr;
  1420. int i;
  1421. if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
  1422. int port_num;
  1423. u32 accept;
  1424. int i;
  1425. oom:
  1426. port_num = mp->port_num;
  1427. accept = 0x01010101;
  1428. for (i = 0; i < 0x100; i += 4) {
  1429. wrl(mp, SPECIAL_MCAST_TABLE(port_num) + i, accept);
  1430. wrl(mp, OTHER_MCAST_TABLE(port_num) + i, accept);
  1431. }
  1432. return;
  1433. }
  1434. mc_spec = kmalloc(0x200, GFP_KERNEL);
  1435. if (mc_spec == NULL)
  1436. goto oom;
  1437. mc_other = mc_spec + (0x100 >> 2);
  1438. memset(mc_spec, 0, 0x100);
  1439. memset(mc_other, 0, 0x100);
  1440. for (addr = dev->mc_list; addr != NULL; addr = addr->next) {
  1441. u8 *a = addr->da_addr;
  1442. u32 *table;
  1443. int entry;
  1444. if (memcmp(a, "\x01\x00\x5e\x00\x00", 5) == 0) {
  1445. table = mc_spec;
  1446. entry = a[5];
  1447. } else {
  1448. table = mc_other;
  1449. entry = addr_crc(a);
  1450. }
  1451. table[entry >> 2] |= 1 << (8 * (entry & 3));
  1452. }
  1453. for (i = 0; i < 0x100; i += 4) {
  1454. wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, mc_spec[i >> 2]);
  1455. wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, mc_other[i >> 2]);
  1456. }
  1457. kfree(mc_spec);
  1458. }
  1459. static void mv643xx_eth_set_rx_mode(struct net_device *dev)
  1460. {
  1461. mv643xx_eth_program_unicast_filter(dev);
  1462. mv643xx_eth_program_multicast_filter(dev);
  1463. }
  1464. static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
  1465. {
  1466. struct sockaddr *sa = addr;
  1467. memcpy(dev->dev_addr, sa->sa_data, ETH_ALEN);
  1468. netif_addr_lock_bh(dev);
  1469. mv643xx_eth_program_unicast_filter(dev);
  1470. netif_addr_unlock_bh(dev);
  1471. return 0;
  1472. }
  1473. /* rx/tx queue initialisation ***********************************************/
  1474. static int rxq_init(struct mv643xx_eth_private *mp, int index)
  1475. {
  1476. struct rx_queue *rxq = mp->rxq + index;
  1477. struct rx_desc *rx_desc;
  1478. int size;
  1479. int i;
  1480. rxq->index = index;
  1481. rxq->rx_ring_size = mp->rx_ring_size;
  1482. rxq->rx_desc_count = 0;
  1483. rxq->rx_curr_desc = 0;
  1484. rxq->rx_used_desc = 0;
  1485. size = rxq->rx_ring_size * sizeof(struct rx_desc);
  1486. if (index == 0 && size <= mp->rx_desc_sram_size) {
  1487. rxq->rx_desc_area = ioremap(mp->rx_desc_sram_addr,
  1488. mp->rx_desc_sram_size);
  1489. rxq->rx_desc_dma = mp->rx_desc_sram_addr;
  1490. } else {
  1491. rxq->rx_desc_area = dma_alloc_coherent(NULL, size,
  1492. &rxq->rx_desc_dma,
  1493. GFP_KERNEL);
  1494. }
  1495. if (rxq->rx_desc_area == NULL) {
  1496. dev_printk(KERN_ERR, &mp->dev->dev,
  1497. "can't allocate rx ring (%d bytes)\n", size);
  1498. goto out;
  1499. }
  1500. memset(rxq->rx_desc_area, 0, size);
  1501. rxq->rx_desc_area_size = size;
  1502. rxq->rx_skb = kmalloc(rxq->rx_ring_size * sizeof(*rxq->rx_skb),
  1503. GFP_KERNEL);
  1504. if (rxq->rx_skb == NULL) {
  1505. dev_printk(KERN_ERR, &mp->dev->dev,
  1506. "can't allocate rx skb ring\n");
  1507. goto out_free;
  1508. }
  1509. rx_desc = (struct rx_desc *)rxq->rx_desc_area;
  1510. for (i = 0; i < rxq->rx_ring_size; i++) {
  1511. int nexti;
  1512. nexti = i + 1;
  1513. if (nexti == rxq->rx_ring_size)
  1514. nexti = 0;
  1515. rx_desc[i].next_desc_ptr = rxq->rx_desc_dma +
  1516. nexti * sizeof(struct rx_desc);
  1517. }
  1518. return 0;
  1519. out_free:
  1520. if (index == 0 && size <= mp->rx_desc_sram_size)
  1521. iounmap(rxq->rx_desc_area);
  1522. else
  1523. dma_free_coherent(NULL, size,
  1524. rxq->rx_desc_area,
  1525. rxq->rx_desc_dma);
  1526. out:
  1527. return -ENOMEM;
  1528. }
  1529. static void rxq_deinit(struct rx_queue *rxq)
  1530. {
  1531. struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
  1532. int i;
  1533. rxq_disable(rxq);
  1534. for (i = 0; i < rxq->rx_ring_size; i++) {
  1535. if (rxq->rx_skb[i]) {
  1536. dev_kfree_skb(rxq->rx_skb[i]);
  1537. rxq->rx_desc_count--;
  1538. }
  1539. }
  1540. if (rxq->rx_desc_count) {
  1541. dev_printk(KERN_ERR, &mp->dev->dev,
  1542. "error freeing rx ring -- %d skbs stuck\n",
  1543. rxq->rx_desc_count);
  1544. }
  1545. if (rxq->index == 0 &&
  1546. rxq->rx_desc_area_size <= mp->rx_desc_sram_size)
  1547. iounmap(rxq->rx_desc_area);
  1548. else
  1549. dma_free_coherent(NULL, rxq->rx_desc_area_size,
  1550. rxq->rx_desc_area, rxq->rx_desc_dma);
  1551. kfree(rxq->rx_skb);
  1552. }
  1553. static int txq_init(struct mv643xx_eth_private *mp, int index)
  1554. {
  1555. struct tx_queue *txq = mp->txq + index;
  1556. struct tx_desc *tx_desc;
  1557. int size;
  1558. int i;
  1559. txq->index = index;
  1560. txq->tx_ring_size = mp->tx_ring_size;
  1561. txq->tx_desc_count = 0;
  1562. txq->tx_curr_desc = 0;
  1563. txq->tx_used_desc = 0;
  1564. size = txq->tx_ring_size * sizeof(struct tx_desc);
  1565. if (index == 0 && size <= mp->tx_desc_sram_size) {
  1566. txq->tx_desc_area = ioremap(mp->tx_desc_sram_addr,
  1567. mp->tx_desc_sram_size);
  1568. txq->tx_desc_dma = mp->tx_desc_sram_addr;
  1569. } else {
  1570. txq->tx_desc_area = dma_alloc_coherent(NULL, size,
  1571. &txq->tx_desc_dma,
  1572. GFP_KERNEL);
  1573. }
  1574. if (txq->tx_desc_area == NULL) {
  1575. dev_printk(KERN_ERR, &mp->dev->dev,
  1576. "can't allocate tx ring (%d bytes)\n", size);
  1577. return -ENOMEM;
  1578. }
  1579. memset(txq->tx_desc_area, 0, size);
  1580. txq->tx_desc_area_size = size;
  1581. tx_desc = (struct tx_desc *)txq->tx_desc_area;
  1582. for (i = 0; i < txq->tx_ring_size; i++) {
  1583. struct tx_desc *txd = tx_desc + i;
  1584. int nexti;
  1585. nexti = i + 1;
  1586. if (nexti == txq->tx_ring_size)
  1587. nexti = 0;
  1588. txd->cmd_sts = 0;
  1589. txd->next_desc_ptr = txq->tx_desc_dma +
  1590. nexti * sizeof(struct tx_desc);
  1591. }
  1592. skb_queue_head_init(&txq->tx_skb);
  1593. return 0;
  1594. }
  1595. static void txq_deinit(struct tx_queue *txq)
  1596. {
  1597. struct mv643xx_eth_private *mp = txq_to_mp(txq);
  1598. txq_disable(txq);
  1599. txq_reclaim(txq, txq->tx_ring_size, 1);
  1600. BUG_ON(txq->tx_used_desc != txq->tx_curr_desc);
  1601. if (txq->index == 0 &&
  1602. txq->tx_desc_area_size <= mp->tx_desc_sram_size)
  1603. iounmap(txq->tx_desc_area);
  1604. else
  1605. dma_free_coherent(NULL, txq->tx_desc_area_size,
  1606. txq->tx_desc_area, txq->tx_desc_dma);
  1607. }
  1608. /* netdev ops and related ***************************************************/
  1609. static int mv643xx_eth_collect_events(struct mv643xx_eth_private *mp)
  1610. {
  1611. u32 int_cause;
  1612. u32 int_cause_ext;
  1613. int_cause = rdlp(mp, INT_CAUSE) & (INT_TX_END | INT_RX | INT_EXT);
  1614. if (int_cause == 0)
  1615. return 0;
  1616. int_cause_ext = 0;
  1617. if (int_cause & INT_EXT)
  1618. int_cause_ext = rdlp(mp, INT_CAUSE_EXT);
  1619. int_cause &= INT_TX_END | INT_RX;
  1620. if (int_cause) {
  1621. wrlp(mp, INT_CAUSE, ~int_cause);
  1622. mp->work_tx_end |= ((int_cause & INT_TX_END) >> 19) &
  1623. ~(rdlp(mp, TXQ_COMMAND) & 0xff);
  1624. mp->work_rx |= (int_cause & INT_RX) >> 2;
  1625. }
  1626. int_cause_ext &= INT_EXT_LINK_PHY | INT_EXT_TX;
  1627. if (int_cause_ext) {
  1628. wrlp(mp, INT_CAUSE_EXT, ~int_cause_ext);
  1629. if (int_cause_ext & INT_EXT_LINK_PHY)
  1630. mp->work_link = 1;
  1631. mp->work_tx |= int_cause_ext & INT_EXT_TX;
  1632. }
  1633. return 1;
  1634. }
  1635. static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
  1636. {
  1637. struct net_device *dev = (struct net_device *)dev_id;
  1638. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1639. if (unlikely(!mv643xx_eth_collect_events(mp)))
  1640. return IRQ_NONE;
  1641. wrlp(mp, INT_MASK, 0);
  1642. napi_schedule(&mp->napi);
  1643. return IRQ_HANDLED;
  1644. }
  1645. static void handle_link_event(struct mv643xx_eth_private *mp)
  1646. {
  1647. struct net_device *dev = mp->dev;
  1648. u32 port_status;
  1649. int speed;
  1650. int duplex;
  1651. int fc;
  1652. port_status = rdlp(mp, PORT_STATUS);
  1653. if (!(port_status & LINK_UP)) {
  1654. if (netif_carrier_ok(dev)) {
  1655. int i;
  1656. printk(KERN_INFO "%s: link down\n", dev->name);
  1657. netif_carrier_off(dev);
  1658. for (i = 0; i < mp->txq_count; i++) {
  1659. struct tx_queue *txq = mp->txq + i;
  1660. txq_reclaim(txq, txq->tx_ring_size, 1);
  1661. txq_reset_hw_ptr(txq);
  1662. }
  1663. }
  1664. return;
  1665. }
  1666. switch (port_status & PORT_SPEED_MASK) {
  1667. case PORT_SPEED_10:
  1668. speed = 10;
  1669. break;
  1670. case PORT_SPEED_100:
  1671. speed = 100;
  1672. break;
  1673. case PORT_SPEED_1000:
  1674. speed = 1000;
  1675. break;
  1676. default:
  1677. speed = -1;
  1678. break;
  1679. }
  1680. duplex = (port_status & FULL_DUPLEX) ? 1 : 0;
  1681. fc = (port_status & FLOW_CONTROL_ENABLED) ? 1 : 0;
  1682. printk(KERN_INFO "%s: link up, %d Mb/s, %s duplex, "
  1683. "flow control %sabled\n", dev->name,
  1684. speed, duplex ? "full" : "half",
  1685. fc ? "en" : "dis");
  1686. if (!netif_carrier_ok(dev))
  1687. netif_carrier_on(dev);
  1688. }
  1689. static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
  1690. {
  1691. struct mv643xx_eth_private *mp;
  1692. int work_done;
  1693. mp = container_of(napi, struct mv643xx_eth_private, napi);
  1694. mp->work_rx_refill |= mp->work_rx_oom;
  1695. mp->work_rx_oom = 0;
  1696. work_done = 0;
  1697. while (work_done < budget) {
  1698. u8 queue_mask;
  1699. int queue;
  1700. int work_tbd;
  1701. if (mp->work_link) {
  1702. mp->work_link = 0;
  1703. handle_link_event(mp);
  1704. continue;
  1705. }
  1706. queue_mask = mp->work_tx | mp->work_tx_end |
  1707. mp->work_rx | mp->work_rx_refill;
  1708. if (!queue_mask) {
  1709. if (mv643xx_eth_collect_events(mp))
  1710. continue;
  1711. break;
  1712. }
  1713. queue = fls(queue_mask) - 1;
  1714. queue_mask = 1 << queue;
  1715. work_tbd = budget - work_done;
  1716. if (work_tbd > 16)
  1717. work_tbd = 16;
  1718. if (mp->work_tx_end & queue_mask) {
  1719. txq_kick(mp->txq + queue);
  1720. } else if (mp->work_tx & queue_mask) {
  1721. work_done += txq_reclaim(mp->txq + queue, work_tbd, 0);
  1722. txq_maybe_wake(mp->txq + queue);
  1723. } else if (mp->work_rx & queue_mask) {
  1724. work_done += rxq_process(mp->rxq + queue, work_tbd);
  1725. } else if (mp->work_rx_refill & queue_mask) {
  1726. work_done += rxq_refill(mp->rxq + queue, work_tbd);
  1727. } else {
  1728. BUG();
  1729. }
  1730. }
  1731. if (work_done < budget) {
  1732. if (mp->work_rx_oom)
  1733. mod_timer(&mp->rx_oom, jiffies + (HZ / 10));
  1734. napi_complete(napi);
  1735. wrlp(mp, INT_MASK, INT_TX_END | INT_RX | INT_EXT);
  1736. }
  1737. return work_done;
  1738. }
  1739. static inline void oom_timer_wrapper(unsigned long data)
  1740. {
  1741. struct mv643xx_eth_private *mp = (void *)data;
  1742. napi_schedule(&mp->napi);
  1743. }
  1744. static void phy_reset(struct mv643xx_eth_private *mp)
  1745. {
  1746. int data;
  1747. data = phy_read(mp->phy, MII_BMCR);
  1748. if (data < 0)
  1749. return;
  1750. data |= BMCR_RESET;
  1751. if (phy_write(mp->phy, MII_BMCR, data) < 0)
  1752. return;
  1753. do {
  1754. data = phy_read(mp->phy, MII_BMCR);
  1755. } while (data >= 0 && data & BMCR_RESET);
  1756. }
  1757. static void port_start(struct mv643xx_eth_private *mp)
  1758. {
  1759. u32 pscr;
  1760. int i;
  1761. /*
  1762. * Perform PHY reset, if there is a PHY.
  1763. */
  1764. if (mp->phy != NULL) {
  1765. struct ethtool_cmd cmd;
  1766. mv643xx_eth_get_settings(mp->dev, &cmd);
  1767. phy_reset(mp);
  1768. mv643xx_eth_set_settings(mp->dev, &cmd);
  1769. }
  1770. /*
  1771. * Configure basic link parameters.
  1772. */
  1773. pscr = rdlp(mp, PORT_SERIAL_CONTROL);
  1774. pscr |= SERIAL_PORT_ENABLE;
  1775. wrlp(mp, PORT_SERIAL_CONTROL, pscr);
  1776. pscr |= DO_NOT_FORCE_LINK_FAIL;
  1777. if (mp->phy == NULL)
  1778. pscr |= FORCE_LINK_PASS;
  1779. wrlp(mp, PORT_SERIAL_CONTROL, pscr);
  1780. wrlp(mp, SDMA_CONFIG, PORT_SDMA_CONFIG_DEFAULT_VALUE);
  1781. /*
  1782. * Configure TX path and queues.
  1783. */
  1784. tx_set_rate(mp, 1000000000, 16777216);
  1785. for (i = 0; i < mp->txq_count; i++) {
  1786. struct tx_queue *txq = mp->txq + i;
  1787. txq_reset_hw_ptr(txq);
  1788. txq_set_rate(txq, 1000000000, 16777216);
  1789. txq_set_fixed_prio_mode(txq);
  1790. }
  1791. /*
  1792. * Add configured unicast address to address filter table.
  1793. */
  1794. mv643xx_eth_program_unicast_filter(mp->dev);
  1795. /*
  1796. * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
  1797. * frames to RX queue #0, and include the pseudo-header when
  1798. * calculating receive checksums.
  1799. */
  1800. wrlp(mp, PORT_CONFIG, 0x02000000);
  1801. /*
  1802. * Treat BPDUs as normal multicasts, and disable partition mode.
  1803. */
  1804. wrlp(mp, PORT_CONFIG_EXT, 0x00000000);
  1805. /*
  1806. * Enable the receive queues.
  1807. */
  1808. for (i = 0; i < mp->rxq_count; i++) {
  1809. struct rx_queue *rxq = mp->rxq + i;
  1810. u32 addr;
  1811. addr = (u32)rxq->rx_desc_dma;
  1812. addr += rxq->rx_curr_desc * sizeof(struct rx_desc);
  1813. wrlp(mp, RXQ_CURRENT_DESC_PTR(i), addr);
  1814. rxq_enable(rxq);
  1815. }
  1816. }
  1817. static void mv643xx_eth_recalc_skb_size(struct mv643xx_eth_private *mp)
  1818. {
  1819. int skb_size;
  1820. /*
  1821. * Reserve 2+14 bytes for an ethernet header (the hardware
  1822. * automatically prepends 2 bytes of dummy data to each
  1823. * received packet), 16 bytes for up to four VLAN tags, and
  1824. * 4 bytes for the trailing FCS -- 36 bytes total.
  1825. */
  1826. skb_size = mp->dev->mtu + 36;
  1827. /*
  1828. * Make sure that the skb size is a multiple of 8 bytes, as
  1829. * the lower three bits of the receive descriptor's buffer
  1830. * size field are ignored by the hardware.
  1831. */
  1832. mp->skb_size = (skb_size + 7) & ~7;
  1833. }
  1834. static int mv643xx_eth_open(struct net_device *dev)
  1835. {
  1836. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1837. int err;
  1838. int i;
  1839. wrlp(mp, INT_CAUSE, 0);
  1840. wrlp(mp, INT_CAUSE_EXT, 0);
  1841. rdlp(mp, INT_CAUSE_EXT);
  1842. err = request_irq(dev->irq, mv643xx_eth_irq,
  1843. IRQF_SHARED, dev->name, dev);
  1844. if (err) {
  1845. dev_printk(KERN_ERR, &dev->dev, "can't assign irq\n");
  1846. return -EAGAIN;
  1847. }
  1848. mv643xx_eth_recalc_skb_size(mp);
  1849. napi_enable(&mp->napi);
  1850. skb_queue_head_init(&mp->rx_recycle);
  1851. for (i = 0; i < mp->rxq_count; i++) {
  1852. err = rxq_init(mp, i);
  1853. if (err) {
  1854. while (--i >= 0)
  1855. rxq_deinit(mp->rxq + i);
  1856. goto out;
  1857. }
  1858. rxq_refill(mp->rxq + i, INT_MAX);
  1859. }
  1860. if (mp->work_rx_oom) {
  1861. mp->rx_oom.expires = jiffies + (HZ / 10);
  1862. add_timer(&mp->rx_oom);
  1863. }
  1864. for (i = 0; i < mp->txq_count; i++) {
  1865. err = txq_init(mp, i);
  1866. if (err) {
  1867. while (--i >= 0)
  1868. txq_deinit(mp->txq + i);
  1869. goto out_free;
  1870. }
  1871. }
  1872. netif_carrier_off(dev);
  1873. port_start(mp);
  1874. set_rx_coal(mp, 0);
  1875. set_tx_coal(mp, 0);
  1876. wrlp(mp, INT_MASK_EXT, INT_EXT_LINK_PHY | INT_EXT_TX);
  1877. wrlp(mp, INT_MASK, INT_TX_END | INT_RX | INT_EXT);
  1878. return 0;
  1879. out_free:
  1880. for (i = 0; i < mp->rxq_count; i++)
  1881. rxq_deinit(mp->rxq + i);
  1882. out:
  1883. free_irq(dev->irq, dev);
  1884. return err;
  1885. }
  1886. static void port_reset(struct mv643xx_eth_private *mp)
  1887. {
  1888. unsigned int data;
  1889. int i;
  1890. for (i = 0; i < mp->rxq_count; i++)
  1891. rxq_disable(mp->rxq + i);
  1892. for (i = 0; i < mp->txq_count; i++)
  1893. txq_disable(mp->txq + i);
  1894. while (1) {
  1895. u32 ps = rdlp(mp, PORT_STATUS);
  1896. if ((ps & (TX_IN_PROGRESS | TX_FIFO_EMPTY)) == TX_FIFO_EMPTY)
  1897. break;
  1898. udelay(10);
  1899. }
  1900. /* Reset the Enable bit in the Configuration Register */
  1901. data = rdlp(mp, PORT_SERIAL_CONTROL);
  1902. data &= ~(SERIAL_PORT_ENABLE |
  1903. DO_NOT_FORCE_LINK_FAIL |
  1904. FORCE_LINK_PASS);
  1905. wrlp(mp, PORT_SERIAL_CONTROL, data);
  1906. }
  1907. static int mv643xx_eth_stop(struct net_device *dev)
  1908. {
  1909. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1910. int i;
  1911. wrlp(mp, INT_MASK_EXT, 0x00000000);
  1912. wrlp(mp, INT_MASK, 0x00000000);
  1913. rdlp(mp, INT_MASK);
  1914. del_timer_sync(&mp->mib_counters_timer);
  1915. napi_disable(&mp->napi);
  1916. del_timer_sync(&mp->rx_oom);
  1917. netif_carrier_off(dev);
  1918. free_irq(dev->irq, dev);
  1919. port_reset(mp);
  1920. mv643xx_eth_get_stats(dev);
  1921. mib_counters_update(mp);
  1922. skb_queue_purge(&mp->rx_recycle);
  1923. for (i = 0; i < mp->rxq_count; i++)
  1924. rxq_deinit(mp->rxq + i);
  1925. for (i = 0; i < mp->txq_count; i++)
  1926. txq_deinit(mp->txq + i);
  1927. return 0;
  1928. }
  1929. static int mv643xx_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  1930. {
  1931. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1932. if (mp->phy != NULL)
  1933. return phy_mii_ioctl(mp->phy, if_mii(ifr), cmd);
  1934. return -EOPNOTSUPP;
  1935. }
  1936. static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
  1937. {
  1938. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1939. if (new_mtu < 64 || new_mtu > 9500)
  1940. return -EINVAL;
  1941. dev->mtu = new_mtu;
  1942. mv643xx_eth_recalc_skb_size(mp);
  1943. tx_set_rate(mp, 1000000000, 16777216);
  1944. if (!netif_running(dev))
  1945. return 0;
  1946. /*
  1947. * Stop and then re-open the interface. This will allocate RX
  1948. * skbs of the new MTU.
  1949. * There is a possible danger that the open will not succeed,
  1950. * due to memory being full.
  1951. */
  1952. mv643xx_eth_stop(dev);
  1953. if (mv643xx_eth_open(dev)) {
  1954. dev_printk(KERN_ERR, &dev->dev,
  1955. "fatal error on re-opening device after "
  1956. "MTU change\n");
  1957. }
  1958. return 0;
  1959. }
  1960. static void tx_timeout_task(struct work_struct *ugly)
  1961. {
  1962. struct mv643xx_eth_private *mp;
  1963. mp = container_of(ugly, struct mv643xx_eth_private, tx_timeout_task);
  1964. if (netif_running(mp->dev)) {
  1965. netif_tx_stop_all_queues(mp->dev);
  1966. port_reset(mp);
  1967. port_start(mp);
  1968. netif_tx_wake_all_queues(mp->dev);
  1969. }
  1970. }
  1971. static void mv643xx_eth_tx_timeout(struct net_device *dev)
  1972. {
  1973. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1974. dev_printk(KERN_INFO, &dev->dev, "tx timeout\n");
  1975. schedule_work(&mp->tx_timeout_task);
  1976. }
  1977. #ifdef CONFIG_NET_POLL_CONTROLLER
  1978. static void mv643xx_eth_netpoll(struct net_device *dev)
  1979. {
  1980. struct mv643xx_eth_private *mp = netdev_priv(dev);
  1981. wrlp(mp, INT_MASK, 0x00000000);
  1982. rdlp(mp, INT_MASK);
  1983. mv643xx_eth_irq(dev->irq, dev);
  1984. wrlp(mp, INT_MASK, INT_TX_END | INT_RX | INT_EXT);
  1985. }
  1986. #endif
  1987. /* platform glue ************************************************************/
  1988. static void
  1989. mv643xx_eth_conf_mbus_windows(struct mv643xx_eth_shared_private *msp,
  1990. struct mbus_dram_target_info *dram)
  1991. {
  1992. void __iomem *base = msp->base;
  1993. u32 win_enable;
  1994. u32 win_protect;
  1995. int i;
  1996. for (i = 0; i < 6; i++) {
  1997. writel(0, base + WINDOW_BASE(i));
  1998. writel(0, base + WINDOW_SIZE(i));
  1999. if (i < 4)
  2000. writel(0, base + WINDOW_REMAP_HIGH(i));
  2001. }
  2002. win_enable = 0x3f;
  2003. win_protect = 0;
  2004. for (i = 0; i < dram->num_cs; i++) {
  2005. struct mbus_dram_window *cs = dram->cs + i;
  2006. writel((cs->base & 0xffff0000) |
  2007. (cs->mbus_attr << 8) |
  2008. dram->mbus_dram_target_id, base + WINDOW_BASE(i));
  2009. writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
  2010. win_enable &= ~(1 << i);
  2011. win_protect |= 3 << (2 * i);
  2012. }
  2013. writel(win_enable, base + WINDOW_BAR_ENABLE);
  2014. msp->win_protect = win_protect;
  2015. }
  2016. static void infer_hw_params(struct mv643xx_eth_shared_private *msp)
  2017. {
  2018. /*
  2019. * Check whether we have a 14-bit coal limit field in bits
  2020. * [21:8], or a 16-bit coal limit in bits [25,21:7] of the
  2021. * SDMA config register.
  2022. */
  2023. writel(0x02000000, msp->base + 0x0400 + SDMA_CONFIG);
  2024. if (readl(msp->base + 0x0400 + SDMA_CONFIG) & 0x02000000)
  2025. msp->extended_rx_coal_limit = 1;
  2026. else
  2027. msp->extended_rx_coal_limit = 0;
  2028. /*
  2029. * Check whether the MAC supports TX rate control, and if
  2030. * yes, whether its associated registers are in the old or
  2031. * the new place.
  2032. */
  2033. writel(1, msp->base + 0x0400 + TX_BW_MTU_MOVED);
  2034. if (readl(msp->base + 0x0400 + TX_BW_MTU_MOVED) & 1) {
  2035. msp->tx_bw_control = TX_BW_CONTROL_NEW_LAYOUT;
  2036. } else {
  2037. writel(7, msp->base + 0x0400 + TX_BW_RATE);
  2038. if (readl(msp->base + 0x0400 + TX_BW_RATE) & 7)
  2039. msp->tx_bw_control = TX_BW_CONTROL_OLD_LAYOUT;
  2040. else
  2041. msp->tx_bw_control = TX_BW_CONTROL_ABSENT;
  2042. }
  2043. }
  2044. static int mv643xx_eth_shared_probe(struct platform_device *pdev)
  2045. {
  2046. static int mv643xx_eth_version_printed;
  2047. struct mv643xx_eth_shared_platform_data *pd = pdev->dev.platform_data;
  2048. struct mv643xx_eth_shared_private *msp;
  2049. struct resource *res;
  2050. int ret;
  2051. if (!mv643xx_eth_version_printed++)
  2052. printk(KERN_NOTICE "MV-643xx 10/100/1000 ethernet "
  2053. "driver version %s\n", mv643xx_eth_driver_version);
  2054. ret = -EINVAL;
  2055. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  2056. if (res == NULL)
  2057. goto out;
  2058. ret = -ENOMEM;
  2059. msp = kmalloc(sizeof(*msp), GFP_KERNEL);
  2060. if (msp == NULL)
  2061. goto out;
  2062. memset(msp, 0, sizeof(*msp));
  2063. msp->base = ioremap(res->start, res->end - res->start + 1);
  2064. if (msp->base == NULL)
  2065. goto out_free;
  2066. /*
  2067. * Set up and register SMI bus.
  2068. */
  2069. if (pd == NULL || pd->shared_smi == NULL) {
  2070. msp->smi_bus = mdiobus_alloc();
  2071. if (msp->smi_bus == NULL)
  2072. goto out_unmap;
  2073. msp->smi_bus->priv = msp;
  2074. msp->smi_bus->name = "mv643xx_eth smi";
  2075. msp->smi_bus->read = smi_bus_read;
  2076. msp->smi_bus->write = smi_bus_write,
  2077. snprintf(msp->smi_bus->id, MII_BUS_ID_SIZE, "%d", pdev->id);
  2078. msp->smi_bus->parent = &pdev->dev;
  2079. msp->smi_bus->phy_mask = 0xffffffff;
  2080. if (mdiobus_register(msp->smi_bus) < 0)
  2081. goto out_free_mii_bus;
  2082. msp->smi = msp;
  2083. } else {
  2084. msp->smi = platform_get_drvdata(pd->shared_smi);
  2085. }
  2086. msp->err_interrupt = NO_IRQ;
  2087. init_waitqueue_head(&msp->smi_busy_wait);
  2088. /*
  2089. * Check whether the error interrupt is hooked up.
  2090. */
  2091. res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
  2092. if (res != NULL) {
  2093. int err;
  2094. err = request_irq(res->start, mv643xx_eth_err_irq,
  2095. IRQF_SHARED, "mv643xx_eth", msp);
  2096. if (!err) {
  2097. writel(ERR_INT_SMI_DONE, msp->base + ERR_INT_MASK);
  2098. msp->err_interrupt = res->start;
  2099. }
  2100. }
  2101. /*
  2102. * (Re-)program MBUS remapping windows if we are asked to.
  2103. */
  2104. if (pd != NULL && pd->dram != NULL)
  2105. mv643xx_eth_conf_mbus_windows(msp, pd->dram);
  2106. /*
  2107. * Detect hardware parameters.
  2108. */
  2109. msp->t_clk = (pd != NULL && pd->t_clk != 0) ? pd->t_clk : 133000000;
  2110. infer_hw_params(msp);
  2111. platform_set_drvdata(pdev, msp);
  2112. return 0;
  2113. out_free_mii_bus:
  2114. mdiobus_free(msp->smi_bus);
  2115. out_unmap:
  2116. iounmap(msp->base);
  2117. out_free:
  2118. kfree(msp);
  2119. out:
  2120. return ret;
  2121. }
  2122. static int mv643xx_eth_shared_remove(struct platform_device *pdev)
  2123. {
  2124. struct mv643xx_eth_shared_private *msp = platform_get_drvdata(pdev);
  2125. struct mv643xx_eth_shared_platform_data *pd = pdev->dev.platform_data;
  2126. if (pd == NULL || pd->shared_smi == NULL) {
  2127. mdiobus_unregister(msp->smi_bus);
  2128. mdiobus_free(msp->smi_bus);
  2129. }
  2130. if (msp->err_interrupt != NO_IRQ)
  2131. free_irq(msp->err_interrupt, msp);
  2132. iounmap(msp->base);
  2133. kfree(msp);
  2134. return 0;
  2135. }
  2136. static struct platform_driver mv643xx_eth_shared_driver = {
  2137. .probe = mv643xx_eth_shared_probe,
  2138. .remove = mv643xx_eth_shared_remove,
  2139. .driver = {
  2140. .name = MV643XX_ETH_SHARED_NAME,
  2141. .owner = THIS_MODULE,
  2142. },
  2143. };
  2144. static void phy_addr_set(struct mv643xx_eth_private *mp, int phy_addr)
  2145. {
  2146. int addr_shift = 5 * mp->port_num;
  2147. u32 data;
  2148. data = rdl(mp, PHY_ADDR);
  2149. data &= ~(0x1f << addr_shift);
  2150. data |= (phy_addr & 0x1f) << addr_shift;
  2151. wrl(mp, PHY_ADDR, data);
  2152. }
  2153. static int phy_addr_get(struct mv643xx_eth_private *mp)
  2154. {
  2155. unsigned int data;
  2156. data = rdl(mp, PHY_ADDR);
  2157. return (data >> (5 * mp->port_num)) & 0x1f;
  2158. }
  2159. static void set_params(struct mv643xx_eth_private *mp,
  2160. struct mv643xx_eth_platform_data *pd)
  2161. {
  2162. struct net_device *dev = mp->dev;
  2163. if (is_valid_ether_addr(pd->mac_addr))
  2164. memcpy(dev->dev_addr, pd->mac_addr, 6);
  2165. else
  2166. uc_addr_get(mp, dev->dev_addr);
  2167. mp->rx_ring_size = DEFAULT_RX_QUEUE_SIZE;
  2168. if (pd->rx_queue_size)
  2169. mp->rx_ring_size = pd->rx_queue_size;
  2170. mp->rx_desc_sram_addr = pd->rx_sram_addr;
  2171. mp->rx_desc_sram_size = pd->rx_sram_size;
  2172. mp->rxq_count = pd->rx_queue_count ? : 1;
  2173. mp->tx_ring_size = DEFAULT_TX_QUEUE_SIZE;
  2174. if (pd->tx_queue_size)
  2175. mp->tx_ring_size = pd->tx_queue_size;
  2176. mp->tx_desc_sram_addr = pd->tx_sram_addr;
  2177. mp->tx_desc_sram_size = pd->tx_sram_size;
  2178. mp->txq_count = pd->tx_queue_count ? : 1;
  2179. }
  2180. static struct phy_device *phy_scan(struct mv643xx_eth_private *mp,
  2181. int phy_addr)
  2182. {
  2183. struct mii_bus *bus = mp->shared->smi->smi_bus;
  2184. struct phy_device *phydev;
  2185. int start;
  2186. int num;
  2187. int i;
  2188. if (phy_addr == MV643XX_ETH_PHY_ADDR_DEFAULT) {
  2189. start = phy_addr_get(mp) & 0x1f;
  2190. num = 32;
  2191. } else {
  2192. start = phy_addr & 0x1f;
  2193. num = 1;
  2194. }
  2195. phydev = NULL;
  2196. for (i = 0; i < num; i++) {
  2197. int addr = (start + i) & 0x1f;
  2198. if (bus->phy_map[addr] == NULL)
  2199. mdiobus_scan(bus, addr);
  2200. if (phydev == NULL) {
  2201. phydev = bus->phy_map[addr];
  2202. if (phydev != NULL)
  2203. phy_addr_set(mp, addr);
  2204. }
  2205. }
  2206. return phydev;
  2207. }
  2208. static void phy_init(struct mv643xx_eth_private *mp, int speed, int duplex)
  2209. {
  2210. struct phy_device *phy = mp->phy;
  2211. phy_reset(mp);
  2212. phy_attach(mp->dev, dev_name(&phy->dev), 0, PHY_INTERFACE_MODE_GMII);
  2213. if (speed == 0) {
  2214. phy->autoneg = AUTONEG_ENABLE;
  2215. phy->speed = 0;
  2216. phy->duplex = 0;
  2217. phy->advertising = phy->supported | ADVERTISED_Autoneg;
  2218. } else {
  2219. phy->autoneg = AUTONEG_DISABLE;
  2220. phy->advertising = 0;
  2221. phy->speed = speed;
  2222. phy->duplex = duplex;
  2223. }
  2224. phy_start_aneg(phy);
  2225. }
  2226. static void init_pscr(struct mv643xx_eth_private *mp, int speed, int duplex)
  2227. {
  2228. u32 pscr;
  2229. pscr = rdlp(mp, PORT_SERIAL_CONTROL);
  2230. if (pscr & SERIAL_PORT_ENABLE) {
  2231. pscr &= ~SERIAL_PORT_ENABLE;
  2232. wrlp(mp, PORT_SERIAL_CONTROL, pscr);
  2233. }
  2234. pscr = MAX_RX_PACKET_9700BYTE | SERIAL_PORT_CONTROL_RESERVED;
  2235. if (mp->phy == NULL) {
  2236. pscr |= DISABLE_AUTO_NEG_SPEED_GMII;
  2237. if (speed == SPEED_1000)
  2238. pscr |= SET_GMII_SPEED_TO_1000;
  2239. else if (speed == SPEED_100)
  2240. pscr |= SET_MII_SPEED_TO_100;
  2241. pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL;
  2242. pscr |= DISABLE_AUTO_NEG_FOR_DUPLEX;
  2243. if (duplex == DUPLEX_FULL)
  2244. pscr |= SET_FULL_DUPLEX_MODE;
  2245. }
  2246. wrlp(mp, PORT_SERIAL_CONTROL, pscr);
  2247. }
  2248. static int mv643xx_eth_probe(struct platform_device *pdev)
  2249. {
  2250. struct mv643xx_eth_platform_data *pd;
  2251. struct mv643xx_eth_private *mp;
  2252. struct net_device *dev;
  2253. struct resource *res;
  2254. int err;
  2255. pd = pdev->dev.platform_data;
  2256. if (pd == NULL) {
  2257. dev_printk(KERN_ERR, &pdev->dev,
  2258. "no mv643xx_eth_platform_data\n");
  2259. return -ENODEV;
  2260. }
  2261. if (pd->shared == NULL) {
  2262. dev_printk(KERN_ERR, &pdev->dev,
  2263. "no mv643xx_eth_platform_data->shared\n");
  2264. return -ENODEV;
  2265. }
  2266. dev = alloc_etherdev_mq(sizeof(struct mv643xx_eth_private), 8);
  2267. if (!dev)
  2268. return -ENOMEM;
  2269. mp = netdev_priv(dev);
  2270. platform_set_drvdata(pdev, mp);
  2271. mp->shared = platform_get_drvdata(pd->shared);
  2272. mp->base = mp->shared->base + 0x0400 + (pd->port_number << 10);
  2273. mp->port_num = pd->port_number;
  2274. mp->dev = dev;
  2275. set_params(mp, pd);
  2276. dev->real_num_tx_queues = mp->txq_count;
  2277. if (pd->phy_addr != MV643XX_ETH_PHY_NONE)
  2278. mp->phy = phy_scan(mp, pd->phy_addr);
  2279. if (mp->phy != NULL)
  2280. phy_init(mp, pd->speed, pd->duplex);
  2281. SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops);
  2282. init_pscr(mp, pd->speed, pd->duplex);
  2283. mib_counters_clear(mp);
  2284. init_timer(&mp->mib_counters_timer);
  2285. mp->mib_counters_timer.data = (unsigned long)mp;
  2286. mp->mib_counters_timer.function = mib_counters_timer_wrapper;
  2287. mp->mib_counters_timer.expires = jiffies + 30 * HZ;
  2288. add_timer(&mp->mib_counters_timer);
  2289. spin_lock_init(&mp->mib_counters_lock);
  2290. INIT_WORK(&mp->tx_timeout_task, tx_timeout_task);
  2291. netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, 128);
  2292. init_timer(&mp->rx_oom);
  2293. mp->rx_oom.data = (unsigned long)mp;
  2294. mp->rx_oom.function = oom_timer_wrapper;
  2295. res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
  2296. BUG_ON(!res);
  2297. dev->irq = res->start;
  2298. dev->get_stats = mv643xx_eth_get_stats;
  2299. dev->hard_start_xmit = mv643xx_eth_xmit;
  2300. dev->open = mv643xx_eth_open;
  2301. dev->stop = mv643xx_eth_stop;
  2302. dev->set_rx_mode = mv643xx_eth_set_rx_mode;
  2303. dev->set_mac_address = mv643xx_eth_set_mac_address;
  2304. dev->do_ioctl = mv643xx_eth_ioctl;
  2305. dev->change_mtu = mv643xx_eth_change_mtu;
  2306. dev->tx_timeout = mv643xx_eth_tx_timeout;
  2307. #ifdef CONFIG_NET_POLL_CONTROLLER
  2308. dev->poll_controller = mv643xx_eth_netpoll;
  2309. #endif
  2310. dev->watchdog_timeo = 2 * HZ;
  2311. dev->base_addr = 0;
  2312. dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
  2313. dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM;
  2314. SET_NETDEV_DEV(dev, &pdev->dev);
  2315. if (mp->shared->win_protect)
  2316. wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect);
  2317. err = register_netdev(dev);
  2318. if (err)
  2319. goto out;
  2320. dev_printk(KERN_NOTICE, &dev->dev, "port %d with MAC address %pM\n",
  2321. mp->port_num, dev->dev_addr);
  2322. if (mp->tx_desc_sram_size > 0)
  2323. dev_printk(KERN_NOTICE, &dev->dev, "configured with sram\n");
  2324. return 0;
  2325. out:
  2326. free_netdev(dev);
  2327. return err;
  2328. }
  2329. static int mv643xx_eth_remove(struct platform_device *pdev)
  2330. {
  2331. struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
  2332. unregister_netdev(mp->dev);
  2333. if (mp->phy != NULL)
  2334. phy_detach(mp->phy);
  2335. flush_scheduled_work();
  2336. free_netdev(mp->dev);
  2337. platform_set_drvdata(pdev, NULL);
  2338. return 0;
  2339. }
  2340. static void mv643xx_eth_shutdown(struct platform_device *pdev)
  2341. {
  2342. struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
  2343. /* Mask all interrupts on ethernet port */
  2344. wrlp(mp, INT_MASK, 0);
  2345. rdlp(mp, INT_MASK);
  2346. if (netif_running(mp->dev))
  2347. port_reset(mp);
  2348. }
  2349. static struct platform_driver mv643xx_eth_driver = {
  2350. .probe = mv643xx_eth_probe,
  2351. .remove = mv643xx_eth_remove,
  2352. .shutdown = mv643xx_eth_shutdown,
  2353. .driver = {
  2354. .name = MV643XX_ETH_NAME,
  2355. .owner = THIS_MODULE,
  2356. },
  2357. };
  2358. static int __init mv643xx_eth_init_module(void)
  2359. {
  2360. int rc;
  2361. rc = platform_driver_register(&mv643xx_eth_shared_driver);
  2362. if (!rc) {
  2363. rc = platform_driver_register(&mv643xx_eth_driver);
  2364. if (rc)
  2365. platform_driver_unregister(&mv643xx_eth_shared_driver);
  2366. }
  2367. return rc;
  2368. }
  2369. module_init(mv643xx_eth_init_module);
  2370. static void __exit mv643xx_eth_cleanup_module(void)
  2371. {
  2372. platform_driver_unregister(&mv643xx_eth_driver);
  2373. platform_driver_unregister(&mv643xx_eth_shared_driver);
  2374. }
  2375. module_exit(mv643xx_eth_cleanup_module);
  2376. MODULE_AUTHOR("Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, "
  2377. "Manish Lachwani, Dale Farnsworth and Lennert Buytenhek");
  2378. MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
  2379. MODULE_LICENSE("GPL");
  2380. MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);
  2381. MODULE_ALIAS("platform:" MV643XX_ETH_NAME);