mv643xx_eth.c 68 KB

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