mv643xx_eth.c 72 KB

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