mv643xx_eth.c 71 KB

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