mv643xx_eth.c 66 KB

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