mv643xx_eth.c 66 KB

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