mv643xx_eth.c 71 KB

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