efx.c 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310
  1. /****************************************************************************
  2. * Driver for Solarflare Solarstorm network controllers and boards
  3. * Copyright 2005-2006 Fen Systems Ltd.
  4. * Copyright 2005-2008 Solarflare Communications Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published
  8. * by the Free Software Foundation, incorporated herein by reference.
  9. */
  10. #include <linux/module.h>
  11. #include <linux/pci.h>
  12. #include <linux/netdevice.h>
  13. #include <linux/etherdevice.h>
  14. #include <linux/delay.h>
  15. #include <linux/notifier.h>
  16. #include <linux/ip.h>
  17. #include <linux/tcp.h>
  18. #include <linux/in.h>
  19. #include <linux/crc32.h>
  20. #include <linux/ethtool.h>
  21. #include <linux/topology.h>
  22. #include "net_driver.h"
  23. #include "ethtool.h"
  24. #include "tx.h"
  25. #include "rx.h"
  26. #include "efx.h"
  27. #include "mdio_10g.h"
  28. #include "falcon.h"
  29. #define EFX_MAX_MTU (9 * 1024)
  30. /* RX slow fill workqueue. If memory allocation fails in the fast path,
  31. * a work item is pushed onto this work queue to retry the allocation later,
  32. * to avoid the NIC being starved of RX buffers. Since this is a per cpu
  33. * workqueue, there is nothing to be gained in making it per NIC
  34. */
  35. static struct workqueue_struct *refill_workqueue;
  36. /* Reset workqueue. If any NIC has a hardware failure then a reset will be
  37. * queued onto this work queue. This is not a per-nic work queue, because
  38. * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
  39. */
  40. static struct workqueue_struct *reset_workqueue;
  41. /**************************************************************************
  42. *
  43. * Configurable values
  44. *
  45. *************************************************************************/
  46. /*
  47. * Enable large receive offload (LRO) aka soft segment reassembly (SSR)
  48. *
  49. * This sets the default for new devices. It can be controlled later
  50. * using ethtool.
  51. */
  52. static int lro = true;
  53. module_param(lro, int, 0644);
  54. MODULE_PARM_DESC(lro, "Large receive offload acceleration");
  55. /*
  56. * Use separate channels for TX and RX events
  57. *
  58. * Set this to 1 to use separate channels for TX and RX. It allows us
  59. * to control interrupt affinity separately for TX and RX.
  60. *
  61. * This is only used in MSI-X interrupt mode
  62. */
  63. static unsigned int separate_tx_channels;
  64. module_param(separate_tx_channels, uint, 0644);
  65. MODULE_PARM_DESC(separate_tx_channels,
  66. "Use separate channels for TX and RX");
  67. /* This is the weight assigned to each of the (per-channel) virtual
  68. * NAPI devices.
  69. */
  70. static int napi_weight = 64;
  71. /* This is the time (in jiffies) between invocations of the hardware
  72. * monitor, which checks for known hardware bugs and resets the
  73. * hardware and driver as necessary.
  74. */
  75. unsigned int efx_monitor_interval = 1 * HZ;
  76. /* This controls whether or not the driver will initialise devices
  77. * with invalid MAC addresses stored in the EEPROM or flash. If true,
  78. * such devices will be initialised with a random locally-generated
  79. * MAC address. This allows for loading the sfc_mtd driver to
  80. * reprogram the flash, even if the flash contents (including the MAC
  81. * address) have previously been erased.
  82. */
  83. static unsigned int allow_bad_hwaddr;
  84. /* Initial interrupt moderation settings. They can be modified after
  85. * module load with ethtool.
  86. *
  87. * The default for RX should strike a balance between increasing the
  88. * round-trip latency and reducing overhead.
  89. */
  90. static unsigned int rx_irq_mod_usec = 60;
  91. /* Initial interrupt moderation settings. They can be modified after
  92. * module load with ethtool.
  93. *
  94. * This default is chosen to ensure that a 10G link does not go idle
  95. * while a TX queue is stopped after it has become full. A queue is
  96. * restarted when it drops below half full. The time this takes (assuming
  97. * worst case 3 descriptors per packet and 1024 descriptors) is
  98. * 512 / 3 * 1.2 = 205 usec.
  99. */
  100. static unsigned int tx_irq_mod_usec = 150;
  101. /* This is the first interrupt mode to try out of:
  102. * 0 => MSI-X
  103. * 1 => MSI
  104. * 2 => legacy
  105. */
  106. static unsigned int interrupt_mode;
  107. /* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
  108. * i.e. the number of CPUs among which we may distribute simultaneous
  109. * interrupt handling.
  110. *
  111. * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
  112. * The default (0) means to assign an interrupt to each package (level II cache)
  113. */
  114. static unsigned int rss_cpus;
  115. module_param(rss_cpus, uint, 0444);
  116. MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
  117. static int phy_flash_cfg;
  118. module_param(phy_flash_cfg, int, 0644);
  119. MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
  120. static unsigned irq_adapt_low_thresh = 10000;
  121. module_param(irq_adapt_low_thresh, uint, 0644);
  122. MODULE_PARM_DESC(irq_adapt_low_thresh,
  123. "Threshold score for reducing IRQ moderation");
  124. static unsigned irq_adapt_high_thresh = 20000;
  125. module_param(irq_adapt_high_thresh, uint, 0644);
  126. MODULE_PARM_DESC(irq_adapt_high_thresh,
  127. "Threshold score for increasing IRQ moderation");
  128. /**************************************************************************
  129. *
  130. * Utility functions and prototypes
  131. *
  132. *************************************************************************/
  133. static void efx_remove_channel(struct efx_channel *channel);
  134. static void efx_remove_port(struct efx_nic *efx);
  135. static void efx_fini_napi(struct efx_nic *efx);
  136. static void efx_fini_channels(struct efx_nic *efx);
  137. #define EFX_ASSERT_RESET_SERIALISED(efx) \
  138. do { \
  139. if (efx->state == STATE_RUNNING) \
  140. ASSERT_RTNL(); \
  141. } while (0)
  142. /**************************************************************************
  143. *
  144. * Event queue processing
  145. *
  146. *************************************************************************/
  147. /* Process channel's event queue
  148. *
  149. * This function is responsible for processing the event queue of a
  150. * single channel. The caller must guarantee that this function will
  151. * never be concurrently called more than once on the same channel,
  152. * though different channels may be being processed concurrently.
  153. */
  154. static int efx_process_channel(struct efx_channel *channel, int rx_quota)
  155. {
  156. struct efx_nic *efx = channel->efx;
  157. int rx_packets;
  158. if (unlikely(efx->reset_pending != RESET_TYPE_NONE ||
  159. !channel->enabled))
  160. return 0;
  161. rx_packets = falcon_process_eventq(channel, rx_quota);
  162. if (rx_packets == 0)
  163. return 0;
  164. /* Deliver last RX packet. */
  165. if (channel->rx_pkt) {
  166. __efx_rx_packet(channel, channel->rx_pkt,
  167. channel->rx_pkt_csummed);
  168. channel->rx_pkt = NULL;
  169. }
  170. efx_rx_strategy(channel);
  171. efx_fast_push_rx_descriptors(&efx->rx_queue[channel->channel]);
  172. return rx_packets;
  173. }
  174. /* Mark channel as finished processing
  175. *
  176. * Note that since we will not receive further interrupts for this
  177. * channel before we finish processing and call the eventq_read_ack()
  178. * method, there is no need to use the interrupt hold-off timers.
  179. */
  180. static inline void efx_channel_processed(struct efx_channel *channel)
  181. {
  182. /* The interrupt handler for this channel may set work_pending
  183. * as soon as we acknowledge the events we've seen. Make sure
  184. * it's cleared before then. */
  185. channel->work_pending = false;
  186. smp_wmb();
  187. falcon_eventq_read_ack(channel);
  188. }
  189. /* NAPI poll handler
  190. *
  191. * NAPI guarantees serialisation of polls of the same device, which
  192. * provides the guarantee required by efx_process_channel().
  193. */
  194. static int efx_poll(struct napi_struct *napi, int budget)
  195. {
  196. struct efx_channel *channel =
  197. container_of(napi, struct efx_channel, napi_str);
  198. int rx_packets;
  199. EFX_TRACE(channel->efx, "channel %d NAPI poll executing on CPU %d\n",
  200. channel->channel, raw_smp_processor_id());
  201. rx_packets = efx_process_channel(channel, budget);
  202. if (rx_packets < budget) {
  203. struct efx_nic *efx = channel->efx;
  204. if (channel->used_flags & EFX_USED_BY_RX &&
  205. efx->irq_rx_adaptive &&
  206. unlikely(++channel->irq_count == 1000)) {
  207. unsigned old_irq_moderation = channel->irq_moderation;
  208. if (unlikely(channel->irq_mod_score <
  209. irq_adapt_low_thresh)) {
  210. channel->irq_moderation =
  211. max_t(int,
  212. channel->irq_moderation -
  213. FALCON_IRQ_MOD_RESOLUTION,
  214. FALCON_IRQ_MOD_RESOLUTION);
  215. } else if (unlikely(channel->irq_mod_score >
  216. irq_adapt_high_thresh)) {
  217. channel->irq_moderation =
  218. min(channel->irq_moderation +
  219. FALCON_IRQ_MOD_RESOLUTION,
  220. efx->irq_rx_moderation);
  221. }
  222. if (channel->irq_moderation != old_irq_moderation)
  223. falcon_set_int_moderation(channel);
  224. channel->irq_count = 0;
  225. channel->irq_mod_score = 0;
  226. }
  227. /* There is no race here; although napi_disable() will
  228. * only wait for napi_complete(), this isn't a problem
  229. * since efx_channel_processed() will have no effect if
  230. * interrupts have already been disabled.
  231. */
  232. napi_complete(napi);
  233. efx_channel_processed(channel);
  234. }
  235. return rx_packets;
  236. }
  237. /* Process the eventq of the specified channel immediately on this CPU
  238. *
  239. * Disable hardware generated interrupts, wait for any existing
  240. * processing to finish, then directly poll (and ack ) the eventq.
  241. * Finally reenable NAPI and interrupts.
  242. *
  243. * Since we are touching interrupts the caller should hold the suspend lock
  244. */
  245. void efx_process_channel_now(struct efx_channel *channel)
  246. {
  247. struct efx_nic *efx = channel->efx;
  248. BUG_ON(!channel->used_flags);
  249. BUG_ON(!channel->enabled);
  250. /* Disable interrupts and wait for ISRs to complete */
  251. falcon_disable_interrupts(efx);
  252. if (efx->legacy_irq)
  253. synchronize_irq(efx->legacy_irq);
  254. if (channel->irq)
  255. synchronize_irq(channel->irq);
  256. /* Wait for any NAPI processing to complete */
  257. napi_disable(&channel->napi_str);
  258. /* Poll the channel */
  259. efx_process_channel(channel, efx->type->evq_size);
  260. /* Ack the eventq. This may cause an interrupt to be generated
  261. * when they are reenabled */
  262. efx_channel_processed(channel);
  263. napi_enable(&channel->napi_str);
  264. falcon_enable_interrupts(efx);
  265. }
  266. /* Create event queue
  267. * Event queue memory allocations are done only once. If the channel
  268. * is reset, the memory buffer will be reused; this guards against
  269. * errors during channel reset and also simplifies interrupt handling.
  270. */
  271. static int efx_probe_eventq(struct efx_channel *channel)
  272. {
  273. EFX_LOG(channel->efx, "chan %d create event queue\n", channel->channel);
  274. return falcon_probe_eventq(channel);
  275. }
  276. /* Prepare channel's event queue */
  277. static void efx_init_eventq(struct efx_channel *channel)
  278. {
  279. EFX_LOG(channel->efx, "chan %d init event queue\n", channel->channel);
  280. channel->eventq_read_ptr = 0;
  281. falcon_init_eventq(channel);
  282. }
  283. static void efx_fini_eventq(struct efx_channel *channel)
  284. {
  285. EFX_LOG(channel->efx, "chan %d fini event queue\n", channel->channel);
  286. falcon_fini_eventq(channel);
  287. }
  288. static void efx_remove_eventq(struct efx_channel *channel)
  289. {
  290. EFX_LOG(channel->efx, "chan %d remove event queue\n", channel->channel);
  291. falcon_remove_eventq(channel);
  292. }
  293. /**************************************************************************
  294. *
  295. * Channel handling
  296. *
  297. *************************************************************************/
  298. static int efx_probe_channel(struct efx_channel *channel)
  299. {
  300. struct efx_tx_queue *tx_queue;
  301. struct efx_rx_queue *rx_queue;
  302. int rc;
  303. EFX_LOG(channel->efx, "creating channel %d\n", channel->channel);
  304. rc = efx_probe_eventq(channel);
  305. if (rc)
  306. goto fail1;
  307. efx_for_each_channel_tx_queue(tx_queue, channel) {
  308. rc = efx_probe_tx_queue(tx_queue);
  309. if (rc)
  310. goto fail2;
  311. }
  312. efx_for_each_channel_rx_queue(rx_queue, channel) {
  313. rc = efx_probe_rx_queue(rx_queue);
  314. if (rc)
  315. goto fail3;
  316. }
  317. channel->n_rx_frm_trunc = 0;
  318. return 0;
  319. fail3:
  320. efx_for_each_channel_rx_queue(rx_queue, channel)
  321. efx_remove_rx_queue(rx_queue);
  322. fail2:
  323. efx_for_each_channel_tx_queue(tx_queue, channel)
  324. efx_remove_tx_queue(tx_queue);
  325. fail1:
  326. return rc;
  327. }
  328. static void efx_set_channel_names(struct efx_nic *efx)
  329. {
  330. struct efx_channel *channel;
  331. const char *type = "";
  332. int number;
  333. efx_for_each_channel(channel, efx) {
  334. number = channel->channel;
  335. if (efx->n_channels > efx->n_rx_queues) {
  336. if (channel->channel < efx->n_rx_queues) {
  337. type = "-rx";
  338. } else {
  339. type = "-tx";
  340. number -= efx->n_rx_queues;
  341. }
  342. }
  343. snprintf(channel->name, sizeof(channel->name),
  344. "%s%s-%d", efx->name, type, number);
  345. }
  346. }
  347. /* Channels are shutdown and reinitialised whilst the NIC is running
  348. * to propagate configuration changes (mtu, checksum offload), or
  349. * to clear hardware error conditions
  350. */
  351. static void efx_init_channels(struct efx_nic *efx)
  352. {
  353. struct efx_tx_queue *tx_queue;
  354. struct efx_rx_queue *rx_queue;
  355. struct efx_channel *channel;
  356. /* Calculate the rx buffer allocation parameters required to
  357. * support the current MTU, including padding for header
  358. * alignment and overruns.
  359. */
  360. efx->rx_buffer_len = (max(EFX_PAGE_IP_ALIGN, NET_IP_ALIGN) +
  361. EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
  362. efx->type->rx_buffer_padding);
  363. efx->rx_buffer_order = get_order(efx->rx_buffer_len);
  364. /* Initialise the channels */
  365. efx_for_each_channel(channel, efx) {
  366. EFX_LOG(channel->efx, "init chan %d\n", channel->channel);
  367. efx_init_eventq(channel);
  368. efx_for_each_channel_tx_queue(tx_queue, channel)
  369. efx_init_tx_queue(tx_queue);
  370. /* The rx buffer allocation strategy is MTU dependent */
  371. efx_rx_strategy(channel);
  372. efx_for_each_channel_rx_queue(rx_queue, channel)
  373. efx_init_rx_queue(rx_queue);
  374. WARN_ON(channel->rx_pkt != NULL);
  375. efx_rx_strategy(channel);
  376. }
  377. }
  378. /* This enables event queue processing and packet transmission.
  379. *
  380. * Note that this function is not allowed to fail, since that would
  381. * introduce too much complexity into the suspend/resume path.
  382. */
  383. static void efx_start_channel(struct efx_channel *channel)
  384. {
  385. struct efx_rx_queue *rx_queue;
  386. EFX_LOG(channel->efx, "starting chan %d\n", channel->channel);
  387. if (!(channel->efx->net_dev->flags & IFF_UP))
  388. netif_napi_add(channel->napi_dev, &channel->napi_str,
  389. efx_poll, napi_weight);
  390. /* The interrupt handler for this channel may set work_pending
  391. * as soon as we enable it. Make sure it's cleared before
  392. * then. Similarly, make sure it sees the enabled flag set. */
  393. channel->work_pending = false;
  394. channel->enabled = true;
  395. smp_wmb();
  396. napi_enable(&channel->napi_str);
  397. /* Load up RX descriptors */
  398. efx_for_each_channel_rx_queue(rx_queue, channel)
  399. efx_fast_push_rx_descriptors(rx_queue);
  400. }
  401. /* This disables event queue processing and packet transmission.
  402. * This function does not guarantee that all queue processing
  403. * (e.g. RX refill) is complete.
  404. */
  405. static void efx_stop_channel(struct efx_channel *channel)
  406. {
  407. struct efx_rx_queue *rx_queue;
  408. if (!channel->enabled)
  409. return;
  410. EFX_LOG(channel->efx, "stop chan %d\n", channel->channel);
  411. channel->enabled = false;
  412. napi_disable(&channel->napi_str);
  413. /* Ensure that any worker threads have exited or will be no-ops */
  414. efx_for_each_channel_rx_queue(rx_queue, channel) {
  415. spin_lock_bh(&rx_queue->add_lock);
  416. spin_unlock_bh(&rx_queue->add_lock);
  417. }
  418. }
  419. static void efx_fini_channels(struct efx_nic *efx)
  420. {
  421. struct efx_channel *channel;
  422. struct efx_tx_queue *tx_queue;
  423. struct efx_rx_queue *rx_queue;
  424. int rc;
  425. EFX_ASSERT_RESET_SERIALISED(efx);
  426. BUG_ON(efx->port_enabled);
  427. rc = falcon_flush_queues(efx);
  428. if (rc)
  429. EFX_ERR(efx, "failed to flush queues\n");
  430. else
  431. EFX_LOG(efx, "successfully flushed all queues\n");
  432. efx_for_each_channel(channel, efx) {
  433. EFX_LOG(channel->efx, "shut down chan %d\n", channel->channel);
  434. efx_for_each_channel_rx_queue(rx_queue, channel)
  435. efx_fini_rx_queue(rx_queue);
  436. efx_for_each_channel_tx_queue(tx_queue, channel)
  437. efx_fini_tx_queue(tx_queue);
  438. efx_fini_eventq(channel);
  439. }
  440. }
  441. static void efx_remove_channel(struct efx_channel *channel)
  442. {
  443. struct efx_tx_queue *tx_queue;
  444. struct efx_rx_queue *rx_queue;
  445. EFX_LOG(channel->efx, "destroy chan %d\n", channel->channel);
  446. efx_for_each_channel_rx_queue(rx_queue, channel)
  447. efx_remove_rx_queue(rx_queue);
  448. efx_for_each_channel_tx_queue(tx_queue, channel)
  449. efx_remove_tx_queue(tx_queue);
  450. efx_remove_eventq(channel);
  451. channel->used_flags = 0;
  452. }
  453. void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue, int delay)
  454. {
  455. queue_delayed_work(refill_workqueue, &rx_queue->work, delay);
  456. }
  457. /**************************************************************************
  458. *
  459. * Port handling
  460. *
  461. **************************************************************************/
  462. /* This ensures that the kernel is kept informed (via
  463. * netif_carrier_on/off) of the link status, and also maintains the
  464. * link status's stop on the port's TX queue.
  465. */
  466. static void efx_link_status_changed(struct efx_nic *efx)
  467. {
  468. /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
  469. * that no events are triggered between unregister_netdev() and the
  470. * driver unloading. A more general condition is that NETDEV_CHANGE
  471. * can only be generated between NETDEV_UP and NETDEV_DOWN */
  472. if (!netif_running(efx->net_dev))
  473. return;
  474. if (efx->port_inhibited) {
  475. netif_carrier_off(efx->net_dev);
  476. return;
  477. }
  478. if (efx->link_up != netif_carrier_ok(efx->net_dev)) {
  479. efx->n_link_state_changes++;
  480. if (efx->link_up)
  481. netif_carrier_on(efx->net_dev);
  482. else
  483. netif_carrier_off(efx->net_dev);
  484. }
  485. /* Status message for kernel log */
  486. if (efx->link_up) {
  487. EFX_INFO(efx, "link up at %uMbps %s-duplex (MTU %d)%s\n",
  488. efx->link_speed, efx->link_fd ? "full" : "half",
  489. efx->net_dev->mtu,
  490. (efx->promiscuous ? " [PROMISC]" : ""));
  491. } else {
  492. EFX_INFO(efx, "link down\n");
  493. }
  494. }
  495. static void efx_fini_port(struct efx_nic *efx);
  496. /* This call reinitialises the MAC to pick up new PHY settings. The
  497. * caller must hold the mac_lock */
  498. void __efx_reconfigure_port(struct efx_nic *efx)
  499. {
  500. WARN_ON(!mutex_is_locked(&efx->mac_lock));
  501. EFX_LOG(efx, "reconfiguring MAC from PHY settings on CPU %d\n",
  502. raw_smp_processor_id());
  503. /* Serialise the promiscuous flag with efx_set_multicast_list. */
  504. if (efx_dev_registered(efx)) {
  505. netif_addr_lock_bh(efx->net_dev);
  506. netif_addr_unlock_bh(efx->net_dev);
  507. }
  508. falcon_deconfigure_mac_wrapper(efx);
  509. /* Reconfigure the PHY, disabling transmit in mac level loopback. */
  510. if (LOOPBACK_INTERNAL(efx))
  511. efx->phy_mode |= PHY_MODE_TX_DISABLED;
  512. else
  513. efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
  514. efx->phy_op->reconfigure(efx);
  515. if (falcon_switch_mac(efx))
  516. goto fail;
  517. efx->mac_op->reconfigure(efx);
  518. /* Inform kernel of loss/gain of carrier */
  519. efx_link_status_changed(efx);
  520. return;
  521. fail:
  522. EFX_ERR(efx, "failed to reconfigure MAC\n");
  523. efx->port_enabled = false;
  524. efx_fini_port(efx);
  525. }
  526. /* Reinitialise the MAC to pick up new PHY settings, even if the port is
  527. * disabled. */
  528. void efx_reconfigure_port(struct efx_nic *efx)
  529. {
  530. EFX_ASSERT_RESET_SERIALISED(efx);
  531. mutex_lock(&efx->mac_lock);
  532. __efx_reconfigure_port(efx);
  533. mutex_unlock(&efx->mac_lock);
  534. }
  535. /* Asynchronous efx_reconfigure_port work item. To speed up efx_flush_all()
  536. * we don't efx_reconfigure_port() if the port is disabled. Care is taken
  537. * in efx_stop_all() and efx_start_port() to prevent PHY events being lost */
  538. static void efx_phy_work(struct work_struct *data)
  539. {
  540. struct efx_nic *efx = container_of(data, struct efx_nic, phy_work);
  541. mutex_lock(&efx->mac_lock);
  542. if (efx->port_enabled)
  543. __efx_reconfigure_port(efx);
  544. mutex_unlock(&efx->mac_lock);
  545. }
  546. static void efx_mac_work(struct work_struct *data)
  547. {
  548. struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
  549. mutex_lock(&efx->mac_lock);
  550. if (efx->port_enabled)
  551. efx->mac_op->irq(efx);
  552. mutex_unlock(&efx->mac_lock);
  553. }
  554. static int efx_probe_port(struct efx_nic *efx)
  555. {
  556. int rc;
  557. EFX_LOG(efx, "create port\n");
  558. /* Connect up MAC/PHY operations table and read MAC address */
  559. rc = falcon_probe_port(efx);
  560. if (rc)
  561. goto err;
  562. if (phy_flash_cfg)
  563. efx->phy_mode = PHY_MODE_SPECIAL;
  564. /* Sanity check MAC address */
  565. if (is_valid_ether_addr(efx->mac_address)) {
  566. memcpy(efx->net_dev->dev_addr, efx->mac_address, ETH_ALEN);
  567. } else {
  568. EFX_ERR(efx, "invalid MAC address %pM\n",
  569. efx->mac_address);
  570. if (!allow_bad_hwaddr) {
  571. rc = -EINVAL;
  572. goto err;
  573. }
  574. random_ether_addr(efx->net_dev->dev_addr);
  575. EFX_INFO(efx, "using locally-generated MAC %pM\n",
  576. efx->net_dev->dev_addr);
  577. }
  578. return 0;
  579. err:
  580. efx_remove_port(efx);
  581. return rc;
  582. }
  583. static int efx_init_port(struct efx_nic *efx)
  584. {
  585. int rc;
  586. EFX_LOG(efx, "init port\n");
  587. rc = efx->phy_op->init(efx);
  588. if (rc)
  589. return rc;
  590. mutex_lock(&efx->mac_lock);
  591. efx->phy_op->reconfigure(efx);
  592. rc = falcon_switch_mac(efx);
  593. mutex_unlock(&efx->mac_lock);
  594. if (rc)
  595. goto fail;
  596. efx->mac_op->reconfigure(efx);
  597. efx->port_initialized = true;
  598. efx_stats_enable(efx);
  599. return 0;
  600. fail:
  601. efx->phy_op->fini(efx);
  602. return rc;
  603. }
  604. /* Allow efx_reconfigure_port() to be scheduled, and close the window
  605. * between efx_stop_port and efx_flush_all whereby a previously scheduled
  606. * efx_phy_work()/efx_mac_work() may have been cancelled */
  607. static void efx_start_port(struct efx_nic *efx)
  608. {
  609. EFX_LOG(efx, "start port\n");
  610. BUG_ON(efx->port_enabled);
  611. mutex_lock(&efx->mac_lock);
  612. efx->port_enabled = true;
  613. __efx_reconfigure_port(efx);
  614. efx->mac_op->irq(efx);
  615. mutex_unlock(&efx->mac_lock);
  616. }
  617. /* Prevent efx_phy_work, efx_mac_work, and efx_monitor() from executing,
  618. * and efx_set_multicast_list() from scheduling efx_phy_work. efx_phy_work
  619. * and efx_mac_work may still be scheduled via NAPI processing until
  620. * efx_flush_all() is called */
  621. static void efx_stop_port(struct efx_nic *efx)
  622. {
  623. EFX_LOG(efx, "stop port\n");
  624. mutex_lock(&efx->mac_lock);
  625. efx->port_enabled = false;
  626. mutex_unlock(&efx->mac_lock);
  627. /* Serialise against efx_set_multicast_list() */
  628. if (efx_dev_registered(efx)) {
  629. netif_addr_lock_bh(efx->net_dev);
  630. netif_addr_unlock_bh(efx->net_dev);
  631. }
  632. }
  633. static void efx_fini_port(struct efx_nic *efx)
  634. {
  635. EFX_LOG(efx, "shut down port\n");
  636. if (!efx->port_initialized)
  637. return;
  638. efx_stats_disable(efx);
  639. efx->phy_op->fini(efx);
  640. efx->port_initialized = false;
  641. efx->link_up = false;
  642. efx_link_status_changed(efx);
  643. }
  644. static void efx_remove_port(struct efx_nic *efx)
  645. {
  646. EFX_LOG(efx, "destroying port\n");
  647. falcon_remove_port(efx);
  648. }
  649. /**************************************************************************
  650. *
  651. * NIC handling
  652. *
  653. **************************************************************************/
  654. /* This configures the PCI device to enable I/O and DMA. */
  655. static int efx_init_io(struct efx_nic *efx)
  656. {
  657. struct pci_dev *pci_dev = efx->pci_dev;
  658. dma_addr_t dma_mask = efx->type->max_dma_mask;
  659. int rc;
  660. EFX_LOG(efx, "initialising I/O\n");
  661. rc = pci_enable_device(pci_dev);
  662. if (rc) {
  663. EFX_ERR(efx, "failed to enable PCI device\n");
  664. goto fail1;
  665. }
  666. pci_set_master(pci_dev);
  667. /* Set the PCI DMA mask. Try all possibilities from our
  668. * genuine mask down to 32 bits, because some architectures
  669. * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
  670. * masks event though they reject 46 bit masks.
  671. */
  672. while (dma_mask > 0x7fffffffUL) {
  673. if (pci_dma_supported(pci_dev, dma_mask) &&
  674. ((rc = pci_set_dma_mask(pci_dev, dma_mask)) == 0))
  675. break;
  676. dma_mask >>= 1;
  677. }
  678. if (rc) {
  679. EFX_ERR(efx, "could not find a suitable DMA mask\n");
  680. goto fail2;
  681. }
  682. EFX_LOG(efx, "using DMA mask %llx\n", (unsigned long long) dma_mask);
  683. rc = pci_set_consistent_dma_mask(pci_dev, dma_mask);
  684. if (rc) {
  685. /* pci_set_consistent_dma_mask() is not *allowed* to
  686. * fail with a mask that pci_set_dma_mask() accepted,
  687. * but just in case...
  688. */
  689. EFX_ERR(efx, "failed to set consistent DMA mask\n");
  690. goto fail2;
  691. }
  692. efx->membase_phys = pci_resource_start(efx->pci_dev,
  693. efx->type->mem_bar);
  694. rc = pci_request_region(pci_dev, efx->type->mem_bar, "sfc");
  695. if (rc) {
  696. EFX_ERR(efx, "request for memory BAR failed\n");
  697. rc = -EIO;
  698. goto fail3;
  699. }
  700. efx->membase = ioremap_nocache(efx->membase_phys,
  701. efx->type->mem_map_size);
  702. if (!efx->membase) {
  703. EFX_ERR(efx, "could not map memory BAR %d at %llx+%x\n",
  704. efx->type->mem_bar,
  705. (unsigned long long)efx->membase_phys,
  706. efx->type->mem_map_size);
  707. rc = -ENOMEM;
  708. goto fail4;
  709. }
  710. EFX_LOG(efx, "memory BAR %u at %llx+%x (virtual %p)\n",
  711. efx->type->mem_bar, (unsigned long long)efx->membase_phys,
  712. efx->type->mem_map_size, efx->membase);
  713. return 0;
  714. fail4:
  715. pci_release_region(efx->pci_dev, efx->type->mem_bar);
  716. fail3:
  717. efx->membase_phys = 0;
  718. fail2:
  719. pci_disable_device(efx->pci_dev);
  720. fail1:
  721. return rc;
  722. }
  723. static void efx_fini_io(struct efx_nic *efx)
  724. {
  725. EFX_LOG(efx, "shutting down I/O\n");
  726. if (efx->membase) {
  727. iounmap(efx->membase);
  728. efx->membase = NULL;
  729. }
  730. if (efx->membase_phys) {
  731. pci_release_region(efx->pci_dev, efx->type->mem_bar);
  732. efx->membase_phys = 0;
  733. }
  734. pci_disable_device(efx->pci_dev);
  735. }
  736. /* Get number of RX queues wanted. Return number of online CPU
  737. * packages in the expectation that an IRQ balancer will spread
  738. * interrupts across them. */
  739. static int efx_wanted_rx_queues(void)
  740. {
  741. cpumask_t core_mask;
  742. int count;
  743. int cpu;
  744. cpus_clear(core_mask);
  745. count = 0;
  746. for_each_online_cpu(cpu) {
  747. if (!cpu_isset(cpu, core_mask)) {
  748. ++count;
  749. cpus_or(core_mask, core_mask,
  750. topology_core_siblings(cpu));
  751. }
  752. }
  753. return count;
  754. }
  755. /* Probe the number and type of interrupts we are able to obtain, and
  756. * the resulting numbers of channels and RX queues.
  757. */
  758. static void efx_probe_interrupts(struct efx_nic *efx)
  759. {
  760. int max_channels =
  761. min_t(int, efx->type->phys_addr_channels, EFX_MAX_CHANNELS);
  762. int rc, i;
  763. if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
  764. struct msix_entry xentries[EFX_MAX_CHANNELS];
  765. int wanted_ints;
  766. int rx_queues;
  767. /* We want one RX queue and interrupt per CPU package
  768. * (or as specified by the rss_cpus module parameter).
  769. * We will need one channel per interrupt.
  770. */
  771. rx_queues = rss_cpus ? rss_cpus : efx_wanted_rx_queues();
  772. wanted_ints = rx_queues + (separate_tx_channels ? 1 : 0);
  773. wanted_ints = min(wanted_ints, max_channels);
  774. for (i = 0; i < wanted_ints; i++)
  775. xentries[i].entry = i;
  776. rc = pci_enable_msix(efx->pci_dev, xentries, wanted_ints);
  777. if (rc > 0) {
  778. EFX_ERR(efx, "WARNING: Insufficient MSI-X vectors"
  779. " available (%d < %d).\n", rc, wanted_ints);
  780. EFX_ERR(efx, "WARNING: Performance may be reduced.\n");
  781. EFX_BUG_ON_PARANOID(rc >= wanted_ints);
  782. wanted_ints = rc;
  783. rc = pci_enable_msix(efx->pci_dev, xentries,
  784. wanted_ints);
  785. }
  786. if (rc == 0) {
  787. efx->n_rx_queues = min(rx_queues, wanted_ints);
  788. efx->n_channels = wanted_ints;
  789. for (i = 0; i < wanted_ints; i++)
  790. efx->channel[i].irq = xentries[i].vector;
  791. } else {
  792. /* Fall back to single channel MSI */
  793. efx->interrupt_mode = EFX_INT_MODE_MSI;
  794. EFX_ERR(efx, "could not enable MSI-X\n");
  795. }
  796. }
  797. /* Try single interrupt MSI */
  798. if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
  799. efx->n_rx_queues = 1;
  800. efx->n_channels = 1;
  801. rc = pci_enable_msi(efx->pci_dev);
  802. if (rc == 0) {
  803. efx->channel[0].irq = efx->pci_dev->irq;
  804. } else {
  805. EFX_ERR(efx, "could not enable MSI\n");
  806. efx->interrupt_mode = EFX_INT_MODE_LEGACY;
  807. }
  808. }
  809. /* Assume legacy interrupts */
  810. if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
  811. efx->n_rx_queues = 1;
  812. efx->n_channels = 1 + (separate_tx_channels ? 1 : 0);
  813. efx->legacy_irq = efx->pci_dev->irq;
  814. }
  815. }
  816. static void efx_remove_interrupts(struct efx_nic *efx)
  817. {
  818. struct efx_channel *channel;
  819. /* Remove MSI/MSI-X interrupts */
  820. efx_for_each_channel(channel, efx)
  821. channel->irq = 0;
  822. pci_disable_msi(efx->pci_dev);
  823. pci_disable_msix(efx->pci_dev);
  824. /* Remove legacy interrupt */
  825. efx->legacy_irq = 0;
  826. }
  827. static void efx_set_channels(struct efx_nic *efx)
  828. {
  829. struct efx_tx_queue *tx_queue;
  830. struct efx_rx_queue *rx_queue;
  831. efx_for_each_tx_queue(tx_queue, efx) {
  832. if (separate_tx_channels)
  833. tx_queue->channel = &efx->channel[efx->n_channels-1];
  834. else
  835. tx_queue->channel = &efx->channel[0];
  836. tx_queue->channel->used_flags |= EFX_USED_BY_TX;
  837. }
  838. efx_for_each_rx_queue(rx_queue, efx) {
  839. rx_queue->channel = &efx->channel[rx_queue->queue];
  840. rx_queue->channel->used_flags |= EFX_USED_BY_RX;
  841. }
  842. }
  843. static int efx_probe_nic(struct efx_nic *efx)
  844. {
  845. int rc;
  846. EFX_LOG(efx, "creating NIC\n");
  847. /* Carry out hardware-type specific initialisation */
  848. rc = falcon_probe_nic(efx);
  849. if (rc)
  850. return rc;
  851. /* Determine the number of channels and RX queues by trying to hook
  852. * in MSI-X interrupts. */
  853. efx_probe_interrupts(efx);
  854. efx_set_channels(efx);
  855. /* Initialise the interrupt moderation settings */
  856. efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true);
  857. return 0;
  858. }
  859. static void efx_remove_nic(struct efx_nic *efx)
  860. {
  861. EFX_LOG(efx, "destroying NIC\n");
  862. efx_remove_interrupts(efx);
  863. falcon_remove_nic(efx);
  864. }
  865. /**************************************************************************
  866. *
  867. * NIC startup/shutdown
  868. *
  869. *************************************************************************/
  870. static int efx_probe_all(struct efx_nic *efx)
  871. {
  872. struct efx_channel *channel;
  873. int rc;
  874. /* Create NIC */
  875. rc = efx_probe_nic(efx);
  876. if (rc) {
  877. EFX_ERR(efx, "failed to create NIC\n");
  878. goto fail1;
  879. }
  880. /* Create port */
  881. rc = efx_probe_port(efx);
  882. if (rc) {
  883. EFX_ERR(efx, "failed to create port\n");
  884. goto fail2;
  885. }
  886. /* Create channels */
  887. efx_for_each_channel(channel, efx) {
  888. rc = efx_probe_channel(channel);
  889. if (rc) {
  890. EFX_ERR(efx, "failed to create channel %d\n",
  891. channel->channel);
  892. goto fail3;
  893. }
  894. }
  895. efx_set_channel_names(efx);
  896. return 0;
  897. fail3:
  898. efx_for_each_channel(channel, efx)
  899. efx_remove_channel(channel);
  900. efx_remove_port(efx);
  901. fail2:
  902. efx_remove_nic(efx);
  903. fail1:
  904. return rc;
  905. }
  906. /* Called after previous invocation(s) of efx_stop_all, restarts the
  907. * port, kernel transmit queue, NAPI processing and hardware interrupts,
  908. * and ensures that the port is scheduled to be reconfigured.
  909. * This function is safe to call multiple times when the NIC is in any
  910. * state. */
  911. static void efx_start_all(struct efx_nic *efx)
  912. {
  913. struct efx_channel *channel;
  914. EFX_ASSERT_RESET_SERIALISED(efx);
  915. /* Check that it is appropriate to restart the interface. All
  916. * of these flags are safe to read under just the rtnl lock */
  917. if (efx->port_enabled)
  918. return;
  919. if ((efx->state != STATE_RUNNING) && (efx->state != STATE_INIT))
  920. return;
  921. if (efx_dev_registered(efx) && !netif_running(efx->net_dev))
  922. return;
  923. /* Mark the port as enabled so port reconfigurations can start, then
  924. * restart the transmit interface early so the watchdog timer stops */
  925. efx_start_port(efx);
  926. if (efx_dev_registered(efx))
  927. efx_wake_queue(efx);
  928. efx_for_each_channel(channel, efx)
  929. efx_start_channel(channel);
  930. falcon_enable_interrupts(efx);
  931. /* Start hardware monitor if we're in RUNNING */
  932. if (efx->state == STATE_RUNNING)
  933. queue_delayed_work(efx->workqueue, &efx->monitor_work,
  934. efx_monitor_interval);
  935. }
  936. /* Flush all delayed work. Should only be called when no more delayed work
  937. * will be scheduled. This doesn't flush pending online resets (efx_reset),
  938. * since we're holding the rtnl_lock at this point. */
  939. static void efx_flush_all(struct efx_nic *efx)
  940. {
  941. struct efx_rx_queue *rx_queue;
  942. /* Make sure the hardware monitor is stopped */
  943. cancel_delayed_work_sync(&efx->monitor_work);
  944. /* Ensure that all RX slow refills are complete. */
  945. efx_for_each_rx_queue(rx_queue, efx)
  946. cancel_delayed_work_sync(&rx_queue->work);
  947. /* Stop scheduled port reconfigurations */
  948. cancel_work_sync(&efx->mac_work);
  949. cancel_work_sync(&efx->phy_work);
  950. }
  951. /* Quiesce hardware and software without bringing the link down.
  952. * Safe to call multiple times, when the nic and interface is in any
  953. * state. The caller is guaranteed to subsequently be in a position
  954. * to modify any hardware and software state they see fit without
  955. * taking locks. */
  956. static void efx_stop_all(struct efx_nic *efx)
  957. {
  958. struct efx_channel *channel;
  959. EFX_ASSERT_RESET_SERIALISED(efx);
  960. /* port_enabled can be read safely under the rtnl lock */
  961. if (!efx->port_enabled)
  962. return;
  963. /* Disable interrupts and wait for ISR to complete */
  964. falcon_disable_interrupts(efx);
  965. if (efx->legacy_irq)
  966. synchronize_irq(efx->legacy_irq);
  967. efx_for_each_channel(channel, efx) {
  968. if (channel->irq)
  969. synchronize_irq(channel->irq);
  970. }
  971. /* Stop all NAPI processing and synchronous rx refills */
  972. efx_for_each_channel(channel, efx)
  973. efx_stop_channel(channel);
  974. /* Stop all asynchronous port reconfigurations. Since all
  975. * event processing has already been stopped, there is no
  976. * window to loose phy events */
  977. efx_stop_port(efx);
  978. /* Flush efx_phy_work, efx_mac_work, refill_workqueue, monitor_work */
  979. efx_flush_all(efx);
  980. /* Isolate the MAC from the TX and RX engines, so that queue
  981. * flushes will complete in a timely fashion. */
  982. falcon_drain_tx_fifo(efx);
  983. /* Stop the kernel transmit interface late, so the watchdog
  984. * timer isn't ticking over the flush */
  985. if (efx_dev_registered(efx)) {
  986. efx_stop_queue(efx);
  987. netif_tx_lock_bh(efx->net_dev);
  988. netif_tx_unlock_bh(efx->net_dev);
  989. }
  990. }
  991. static void efx_remove_all(struct efx_nic *efx)
  992. {
  993. struct efx_channel *channel;
  994. efx_for_each_channel(channel, efx)
  995. efx_remove_channel(channel);
  996. efx_remove_port(efx);
  997. efx_remove_nic(efx);
  998. }
  999. /* A convinience function to safely flush all the queues */
  1000. void efx_flush_queues(struct efx_nic *efx)
  1001. {
  1002. EFX_ASSERT_RESET_SERIALISED(efx);
  1003. efx_stop_all(efx);
  1004. efx_fini_channels(efx);
  1005. efx_init_channels(efx);
  1006. efx_start_all(efx);
  1007. }
  1008. /**************************************************************************
  1009. *
  1010. * Interrupt moderation
  1011. *
  1012. **************************************************************************/
  1013. /* Set interrupt moderation parameters */
  1014. void efx_init_irq_moderation(struct efx_nic *efx, int tx_usecs, int rx_usecs,
  1015. bool rx_adaptive)
  1016. {
  1017. struct efx_tx_queue *tx_queue;
  1018. struct efx_rx_queue *rx_queue;
  1019. EFX_ASSERT_RESET_SERIALISED(efx);
  1020. efx_for_each_tx_queue(tx_queue, efx)
  1021. tx_queue->channel->irq_moderation = tx_usecs;
  1022. efx->irq_rx_adaptive = rx_adaptive;
  1023. efx->irq_rx_moderation = rx_usecs;
  1024. efx_for_each_rx_queue(rx_queue, efx)
  1025. rx_queue->channel->irq_moderation = rx_usecs;
  1026. }
  1027. /**************************************************************************
  1028. *
  1029. * Hardware monitor
  1030. *
  1031. **************************************************************************/
  1032. /* Run periodically off the general workqueue. Serialised against
  1033. * efx_reconfigure_port via the mac_lock */
  1034. static void efx_monitor(struct work_struct *data)
  1035. {
  1036. struct efx_nic *efx = container_of(data, struct efx_nic,
  1037. monitor_work.work);
  1038. int rc;
  1039. EFX_TRACE(efx, "hardware monitor executing on CPU %d\n",
  1040. raw_smp_processor_id());
  1041. /* If the mac_lock is already held then it is likely a port
  1042. * reconfiguration is already in place, which will likely do
  1043. * most of the work of check_hw() anyway. */
  1044. if (!mutex_trylock(&efx->mac_lock))
  1045. goto out_requeue;
  1046. if (!efx->port_enabled)
  1047. goto out_unlock;
  1048. rc = efx->board_info.monitor(efx);
  1049. if (rc) {
  1050. EFX_ERR(efx, "Board sensor %s; shutting down PHY\n",
  1051. (rc == -ERANGE) ? "reported fault" : "failed");
  1052. efx->phy_mode |= PHY_MODE_LOW_POWER;
  1053. falcon_sim_phy_event(efx);
  1054. }
  1055. efx->phy_op->poll(efx);
  1056. efx->mac_op->poll(efx);
  1057. out_unlock:
  1058. mutex_unlock(&efx->mac_lock);
  1059. out_requeue:
  1060. queue_delayed_work(efx->workqueue, &efx->monitor_work,
  1061. efx_monitor_interval);
  1062. }
  1063. /**************************************************************************
  1064. *
  1065. * ioctls
  1066. *
  1067. *************************************************************************/
  1068. /* Net device ioctl
  1069. * Context: process, rtnl_lock() held.
  1070. */
  1071. static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
  1072. {
  1073. struct efx_nic *efx = netdev_priv(net_dev);
  1074. EFX_ASSERT_RESET_SERIALISED(efx);
  1075. return generic_mii_ioctl(&efx->mii, if_mii(ifr), cmd, NULL);
  1076. }
  1077. /**************************************************************************
  1078. *
  1079. * NAPI interface
  1080. *
  1081. **************************************************************************/
  1082. static int efx_init_napi(struct efx_nic *efx)
  1083. {
  1084. struct efx_channel *channel;
  1085. efx_for_each_channel(channel, efx) {
  1086. channel->napi_dev = efx->net_dev;
  1087. }
  1088. return 0;
  1089. }
  1090. static void efx_fini_napi(struct efx_nic *efx)
  1091. {
  1092. struct efx_channel *channel;
  1093. efx_for_each_channel(channel, efx) {
  1094. channel->napi_dev = NULL;
  1095. }
  1096. }
  1097. /**************************************************************************
  1098. *
  1099. * Kernel netpoll interface
  1100. *
  1101. *************************************************************************/
  1102. #ifdef CONFIG_NET_POLL_CONTROLLER
  1103. /* Although in the common case interrupts will be disabled, this is not
  1104. * guaranteed. However, all our work happens inside the NAPI callback,
  1105. * so no locking is required.
  1106. */
  1107. static void efx_netpoll(struct net_device *net_dev)
  1108. {
  1109. struct efx_nic *efx = netdev_priv(net_dev);
  1110. struct efx_channel *channel;
  1111. efx_for_each_channel(channel, efx)
  1112. efx_schedule_channel(channel);
  1113. }
  1114. #endif
  1115. /**************************************************************************
  1116. *
  1117. * Kernel net device interface
  1118. *
  1119. *************************************************************************/
  1120. /* Context: process, rtnl_lock() held. */
  1121. static int efx_net_open(struct net_device *net_dev)
  1122. {
  1123. struct efx_nic *efx = netdev_priv(net_dev);
  1124. EFX_ASSERT_RESET_SERIALISED(efx);
  1125. EFX_LOG(efx, "opening device %s on CPU %d\n", net_dev->name,
  1126. raw_smp_processor_id());
  1127. if (efx->state == STATE_DISABLED)
  1128. return -EIO;
  1129. if (efx->phy_mode & PHY_MODE_SPECIAL)
  1130. return -EBUSY;
  1131. efx_start_all(efx);
  1132. return 0;
  1133. }
  1134. /* Context: process, rtnl_lock() held.
  1135. * Note that the kernel will ignore our return code; this method
  1136. * should really be a void.
  1137. */
  1138. static int efx_net_stop(struct net_device *net_dev)
  1139. {
  1140. struct efx_nic *efx = netdev_priv(net_dev);
  1141. EFX_LOG(efx, "closing %s on CPU %d\n", net_dev->name,
  1142. raw_smp_processor_id());
  1143. if (efx->state != STATE_DISABLED) {
  1144. /* Stop the device and flush all the channels */
  1145. efx_stop_all(efx);
  1146. efx_fini_channels(efx);
  1147. efx_init_channels(efx);
  1148. }
  1149. return 0;
  1150. }
  1151. void efx_stats_disable(struct efx_nic *efx)
  1152. {
  1153. spin_lock(&efx->stats_lock);
  1154. ++efx->stats_disable_count;
  1155. spin_unlock(&efx->stats_lock);
  1156. }
  1157. void efx_stats_enable(struct efx_nic *efx)
  1158. {
  1159. spin_lock(&efx->stats_lock);
  1160. --efx->stats_disable_count;
  1161. spin_unlock(&efx->stats_lock);
  1162. }
  1163. /* Context: process, dev_base_lock or RTNL held, non-blocking. */
  1164. static struct net_device_stats *efx_net_stats(struct net_device *net_dev)
  1165. {
  1166. struct efx_nic *efx = netdev_priv(net_dev);
  1167. struct efx_mac_stats *mac_stats = &efx->mac_stats;
  1168. struct net_device_stats *stats = &net_dev->stats;
  1169. /* Update stats if possible, but do not wait if another thread
  1170. * is updating them or if MAC stats fetches are temporarily
  1171. * disabled; slightly stale stats are acceptable.
  1172. */
  1173. if (!spin_trylock(&efx->stats_lock))
  1174. return stats;
  1175. if (!efx->stats_disable_count) {
  1176. efx->mac_op->update_stats(efx);
  1177. falcon_update_nic_stats(efx);
  1178. }
  1179. spin_unlock(&efx->stats_lock);
  1180. stats->rx_packets = mac_stats->rx_packets;
  1181. stats->tx_packets = mac_stats->tx_packets;
  1182. stats->rx_bytes = mac_stats->rx_bytes;
  1183. stats->tx_bytes = mac_stats->tx_bytes;
  1184. stats->multicast = mac_stats->rx_multicast;
  1185. stats->collisions = mac_stats->tx_collision;
  1186. stats->rx_length_errors = (mac_stats->rx_gtjumbo +
  1187. mac_stats->rx_length_error);
  1188. stats->rx_over_errors = efx->n_rx_nodesc_drop_cnt;
  1189. stats->rx_crc_errors = mac_stats->rx_bad;
  1190. stats->rx_frame_errors = mac_stats->rx_align_error;
  1191. stats->rx_fifo_errors = mac_stats->rx_overflow;
  1192. stats->rx_missed_errors = mac_stats->rx_missed;
  1193. stats->tx_window_errors = mac_stats->tx_late_collision;
  1194. stats->rx_errors = (stats->rx_length_errors +
  1195. stats->rx_over_errors +
  1196. stats->rx_crc_errors +
  1197. stats->rx_frame_errors +
  1198. stats->rx_fifo_errors +
  1199. stats->rx_missed_errors +
  1200. mac_stats->rx_symbol_error);
  1201. stats->tx_errors = (stats->tx_window_errors +
  1202. mac_stats->tx_bad);
  1203. return stats;
  1204. }
  1205. /* Context: netif_tx_lock held, BHs disabled. */
  1206. static void efx_watchdog(struct net_device *net_dev)
  1207. {
  1208. struct efx_nic *efx = netdev_priv(net_dev);
  1209. EFX_ERR(efx, "TX stuck with stop_count=%d port_enabled=%d:"
  1210. " resetting channels\n",
  1211. atomic_read(&efx->netif_stop_count), efx->port_enabled);
  1212. efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
  1213. }
  1214. /* Context: process, rtnl_lock() held. */
  1215. static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
  1216. {
  1217. struct efx_nic *efx = netdev_priv(net_dev);
  1218. int rc = 0;
  1219. EFX_ASSERT_RESET_SERIALISED(efx);
  1220. if (new_mtu > EFX_MAX_MTU)
  1221. return -EINVAL;
  1222. efx_stop_all(efx);
  1223. EFX_LOG(efx, "changing MTU to %d\n", new_mtu);
  1224. efx_fini_channels(efx);
  1225. net_dev->mtu = new_mtu;
  1226. efx_init_channels(efx);
  1227. efx_start_all(efx);
  1228. return rc;
  1229. }
  1230. static int efx_set_mac_address(struct net_device *net_dev, void *data)
  1231. {
  1232. struct efx_nic *efx = netdev_priv(net_dev);
  1233. struct sockaddr *addr = data;
  1234. char *new_addr = addr->sa_data;
  1235. EFX_ASSERT_RESET_SERIALISED(efx);
  1236. if (!is_valid_ether_addr(new_addr)) {
  1237. EFX_ERR(efx, "invalid ethernet MAC address requested: %pM\n",
  1238. new_addr);
  1239. return -EINVAL;
  1240. }
  1241. memcpy(net_dev->dev_addr, new_addr, net_dev->addr_len);
  1242. /* Reconfigure the MAC */
  1243. efx_reconfigure_port(efx);
  1244. return 0;
  1245. }
  1246. /* Context: netif_addr_lock held, BHs disabled. */
  1247. static void efx_set_multicast_list(struct net_device *net_dev)
  1248. {
  1249. struct efx_nic *efx = netdev_priv(net_dev);
  1250. struct dev_mc_list *mc_list = net_dev->mc_list;
  1251. union efx_multicast_hash *mc_hash = &efx->multicast_hash;
  1252. bool promiscuous = !!(net_dev->flags & IFF_PROMISC);
  1253. bool changed = (efx->promiscuous != promiscuous);
  1254. u32 crc;
  1255. int bit;
  1256. int i;
  1257. efx->promiscuous = promiscuous;
  1258. /* Build multicast hash table */
  1259. if (promiscuous || (net_dev->flags & IFF_ALLMULTI)) {
  1260. memset(mc_hash, 0xff, sizeof(*mc_hash));
  1261. } else {
  1262. memset(mc_hash, 0x00, sizeof(*mc_hash));
  1263. for (i = 0; i < net_dev->mc_count; i++) {
  1264. crc = ether_crc_le(ETH_ALEN, mc_list->dmi_addr);
  1265. bit = crc & (EFX_MCAST_HASH_ENTRIES - 1);
  1266. set_bit_le(bit, mc_hash->byte);
  1267. mc_list = mc_list->next;
  1268. }
  1269. }
  1270. if (!efx->port_enabled)
  1271. /* Delay pushing settings until efx_start_port() */
  1272. return;
  1273. if (changed)
  1274. queue_work(efx->workqueue, &efx->phy_work);
  1275. /* Create and activate new global multicast hash table */
  1276. falcon_set_multicast_hash(efx);
  1277. }
  1278. static const struct net_device_ops efx_netdev_ops = {
  1279. .ndo_open = efx_net_open,
  1280. .ndo_stop = efx_net_stop,
  1281. .ndo_get_stats = efx_net_stats,
  1282. .ndo_tx_timeout = efx_watchdog,
  1283. .ndo_start_xmit = efx_hard_start_xmit,
  1284. .ndo_validate_addr = eth_validate_addr,
  1285. .ndo_do_ioctl = efx_ioctl,
  1286. .ndo_change_mtu = efx_change_mtu,
  1287. .ndo_set_mac_address = efx_set_mac_address,
  1288. .ndo_set_multicast_list = efx_set_multicast_list,
  1289. #ifdef CONFIG_NET_POLL_CONTROLLER
  1290. .ndo_poll_controller = efx_netpoll,
  1291. #endif
  1292. };
  1293. static void efx_update_name(struct efx_nic *efx)
  1294. {
  1295. strcpy(efx->name, efx->net_dev->name);
  1296. efx_mtd_rename(efx);
  1297. efx_set_channel_names(efx);
  1298. }
  1299. static int efx_netdev_event(struct notifier_block *this,
  1300. unsigned long event, void *ptr)
  1301. {
  1302. struct net_device *net_dev = ptr;
  1303. if (net_dev->netdev_ops == &efx_netdev_ops &&
  1304. event == NETDEV_CHANGENAME)
  1305. efx_update_name(netdev_priv(net_dev));
  1306. return NOTIFY_DONE;
  1307. }
  1308. static struct notifier_block efx_netdev_notifier = {
  1309. .notifier_call = efx_netdev_event,
  1310. };
  1311. static ssize_t
  1312. show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
  1313. {
  1314. struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
  1315. return sprintf(buf, "%d\n", efx->phy_type);
  1316. }
  1317. static DEVICE_ATTR(phy_type, 0644, show_phy_type, NULL);
  1318. static int efx_register_netdev(struct efx_nic *efx)
  1319. {
  1320. struct net_device *net_dev = efx->net_dev;
  1321. int rc;
  1322. net_dev->watchdog_timeo = 5 * HZ;
  1323. net_dev->irq = efx->pci_dev->irq;
  1324. net_dev->netdev_ops = &efx_netdev_ops;
  1325. SET_NETDEV_DEV(net_dev, &efx->pci_dev->dev);
  1326. SET_ETHTOOL_OPS(net_dev, &efx_ethtool_ops);
  1327. /* Always start with carrier off; PHY events will detect the link */
  1328. netif_carrier_off(efx->net_dev);
  1329. /* Clear MAC statistics */
  1330. efx->mac_op->update_stats(efx);
  1331. memset(&efx->mac_stats, 0, sizeof(efx->mac_stats));
  1332. rc = register_netdev(net_dev);
  1333. if (rc) {
  1334. EFX_ERR(efx, "could not register net dev\n");
  1335. return rc;
  1336. }
  1337. rtnl_lock();
  1338. efx_update_name(efx);
  1339. rtnl_unlock();
  1340. rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
  1341. if (rc) {
  1342. EFX_ERR(efx, "failed to init net dev attributes\n");
  1343. goto fail_registered;
  1344. }
  1345. return 0;
  1346. fail_registered:
  1347. unregister_netdev(net_dev);
  1348. return rc;
  1349. }
  1350. static void efx_unregister_netdev(struct efx_nic *efx)
  1351. {
  1352. struct efx_tx_queue *tx_queue;
  1353. if (!efx->net_dev)
  1354. return;
  1355. BUG_ON(netdev_priv(efx->net_dev) != efx);
  1356. /* Free up any skbs still remaining. This has to happen before
  1357. * we try to unregister the netdev as running their destructors
  1358. * may be needed to get the device ref. count to 0. */
  1359. efx_for_each_tx_queue(tx_queue, efx)
  1360. efx_release_tx_buffers(tx_queue);
  1361. if (efx_dev_registered(efx)) {
  1362. strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
  1363. device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
  1364. unregister_netdev(efx->net_dev);
  1365. }
  1366. }
  1367. /**************************************************************************
  1368. *
  1369. * Device reset and suspend
  1370. *
  1371. **************************************************************************/
  1372. /* Tears down the entire software state and most of the hardware state
  1373. * before reset. */
  1374. void efx_reset_down(struct efx_nic *efx, enum reset_type method,
  1375. struct ethtool_cmd *ecmd)
  1376. {
  1377. EFX_ASSERT_RESET_SERIALISED(efx);
  1378. efx_stats_disable(efx);
  1379. efx_stop_all(efx);
  1380. mutex_lock(&efx->mac_lock);
  1381. mutex_lock(&efx->spi_lock);
  1382. efx->phy_op->get_settings(efx, ecmd);
  1383. efx_fini_channels(efx);
  1384. if (efx->port_initialized && method != RESET_TYPE_INVISIBLE)
  1385. efx->phy_op->fini(efx);
  1386. }
  1387. /* This function will always ensure that the locks acquired in
  1388. * efx_reset_down() are released. A failure return code indicates
  1389. * that we were unable to reinitialise the hardware, and the
  1390. * driver should be disabled. If ok is false, then the rx and tx
  1391. * engines are not restarted, pending a RESET_DISABLE. */
  1392. int efx_reset_up(struct efx_nic *efx, enum reset_type method,
  1393. struct ethtool_cmd *ecmd, bool ok)
  1394. {
  1395. int rc;
  1396. EFX_ASSERT_RESET_SERIALISED(efx);
  1397. rc = falcon_init_nic(efx);
  1398. if (rc) {
  1399. EFX_ERR(efx, "failed to initialise NIC\n");
  1400. ok = false;
  1401. }
  1402. if (efx->port_initialized && method != RESET_TYPE_INVISIBLE) {
  1403. if (ok) {
  1404. rc = efx->phy_op->init(efx);
  1405. if (rc)
  1406. ok = false;
  1407. }
  1408. if (!ok)
  1409. efx->port_initialized = false;
  1410. }
  1411. if (ok) {
  1412. efx_init_channels(efx);
  1413. if (efx->phy_op->set_settings(efx, ecmd))
  1414. EFX_ERR(efx, "could not restore PHY settings\n");
  1415. }
  1416. mutex_unlock(&efx->spi_lock);
  1417. mutex_unlock(&efx->mac_lock);
  1418. if (ok) {
  1419. efx_start_all(efx);
  1420. efx_stats_enable(efx);
  1421. }
  1422. return rc;
  1423. }
  1424. /* Reset the NIC as transparently as possible. Do not reset the PHY
  1425. * Note that the reset may fail, in which case the card will be left
  1426. * in a most-probably-unusable state.
  1427. *
  1428. * This function will sleep. You cannot reset from within an atomic
  1429. * state; use efx_schedule_reset() instead.
  1430. *
  1431. * Grabs the rtnl_lock.
  1432. */
  1433. static int efx_reset(struct efx_nic *efx)
  1434. {
  1435. struct ethtool_cmd ecmd;
  1436. enum reset_type method = efx->reset_pending;
  1437. int rc = 0;
  1438. /* Serialise with kernel interfaces */
  1439. rtnl_lock();
  1440. /* If we're not RUNNING then don't reset. Leave the reset_pending
  1441. * flag set so that efx_pci_probe_main will be retried */
  1442. if (efx->state != STATE_RUNNING) {
  1443. EFX_INFO(efx, "scheduled reset quenched. NIC not RUNNING\n");
  1444. goto out_unlock;
  1445. }
  1446. EFX_INFO(efx, "resetting (%d)\n", method);
  1447. efx_reset_down(efx, method, &ecmd);
  1448. rc = falcon_reset_hw(efx, method);
  1449. if (rc) {
  1450. EFX_ERR(efx, "failed to reset hardware\n");
  1451. goto out_disable;
  1452. }
  1453. /* Allow resets to be rescheduled. */
  1454. efx->reset_pending = RESET_TYPE_NONE;
  1455. /* Reinitialise bus-mastering, which may have been turned off before
  1456. * the reset was scheduled. This is still appropriate, even in the
  1457. * RESET_TYPE_DISABLE since this driver generally assumes the hardware
  1458. * can respond to requests. */
  1459. pci_set_master(efx->pci_dev);
  1460. /* Leave device stopped if necessary */
  1461. if (method == RESET_TYPE_DISABLE) {
  1462. efx_reset_up(efx, method, &ecmd, false);
  1463. rc = -EIO;
  1464. } else {
  1465. rc = efx_reset_up(efx, method, &ecmd, true);
  1466. }
  1467. out_disable:
  1468. if (rc) {
  1469. EFX_ERR(efx, "has been disabled\n");
  1470. efx->state = STATE_DISABLED;
  1471. dev_close(efx->net_dev);
  1472. } else {
  1473. EFX_LOG(efx, "reset complete\n");
  1474. }
  1475. out_unlock:
  1476. rtnl_unlock();
  1477. return rc;
  1478. }
  1479. /* The worker thread exists so that code that cannot sleep can
  1480. * schedule a reset for later.
  1481. */
  1482. static void efx_reset_work(struct work_struct *data)
  1483. {
  1484. struct efx_nic *nic = container_of(data, struct efx_nic, reset_work);
  1485. efx_reset(nic);
  1486. }
  1487. void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
  1488. {
  1489. enum reset_type method;
  1490. if (efx->reset_pending != RESET_TYPE_NONE) {
  1491. EFX_INFO(efx, "quenching already scheduled reset\n");
  1492. return;
  1493. }
  1494. switch (type) {
  1495. case RESET_TYPE_INVISIBLE:
  1496. case RESET_TYPE_ALL:
  1497. case RESET_TYPE_WORLD:
  1498. case RESET_TYPE_DISABLE:
  1499. method = type;
  1500. break;
  1501. case RESET_TYPE_RX_RECOVERY:
  1502. case RESET_TYPE_RX_DESC_FETCH:
  1503. case RESET_TYPE_TX_DESC_FETCH:
  1504. case RESET_TYPE_TX_SKIP:
  1505. method = RESET_TYPE_INVISIBLE;
  1506. break;
  1507. default:
  1508. method = RESET_TYPE_ALL;
  1509. break;
  1510. }
  1511. if (method != type)
  1512. EFX_LOG(efx, "scheduling reset (%d:%d)\n", type, method);
  1513. else
  1514. EFX_LOG(efx, "scheduling reset (%d)\n", method);
  1515. efx->reset_pending = method;
  1516. queue_work(reset_workqueue, &efx->reset_work);
  1517. }
  1518. /**************************************************************************
  1519. *
  1520. * List of NICs we support
  1521. *
  1522. **************************************************************************/
  1523. /* PCI device ID table */
  1524. static struct pci_device_id efx_pci_table[] __devinitdata = {
  1525. {PCI_DEVICE(EFX_VENDID_SFC, FALCON_A_P_DEVID),
  1526. .driver_data = (unsigned long) &falcon_a_nic_type},
  1527. {PCI_DEVICE(EFX_VENDID_SFC, FALCON_B_P_DEVID),
  1528. .driver_data = (unsigned long) &falcon_b_nic_type},
  1529. {0} /* end of list */
  1530. };
  1531. /**************************************************************************
  1532. *
  1533. * Dummy PHY/MAC/Board operations
  1534. *
  1535. * Can be used for some unimplemented operations
  1536. * Needed so all function pointers are valid and do not have to be tested
  1537. * before use
  1538. *
  1539. **************************************************************************/
  1540. int efx_port_dummy_op_int(struct efx_nic *efx)
  1541. {
  1542. return 0;
  1543. }
  1544. void efx_port_dummy_op_void(struct efx_nic *efx) {}
  1545. void efx_port_dummy_op_blink(struct efx_nic *efx, bool blink) {}
  1546. static struct efx_mac_operations efx_dummy_mac_operations = {
  1547. .reconfigure = efx_port_dummy_op_void,
  1548. .poll = efx_port_dummy_op_void,
  1549. .irq = efx_port_dummy_op_void,
  1550. };
  1551. static struct efx_phy_operations efx_dummy_phy_operations = {
  1552. .init = efx_port_dummy_op_int,
  1553. .reconfigure = efx_port_dummy_op_void,
  1554. .poll = efx_port_dummy_op_void,
  1555. .fini = efx_port_dummy_op_void,
  1556. .clear_interrupt = efx_port_dummy_op_void,
  1557. };
  1558. static struct efx_board efx_dummy_board_info = {
  1559. .init = efx_port_dummy_op_int,
  1560. .init_leds = efx_port_dummy_op_void,
  1561. .set_id_led = efx_port_dummy_op_blink,
  1562. .monitor = efx_port_dummy_op_int,
  1563. .blink = efx_port_dummy_op_blink,
  1564. .fini = efx_port_dummy_op_void,
  1565. };
  1566. /**************************************************************************
  1567. *
  1568. * Data housekeeping
  1569. *
  1570. **************************************************************************/
  1571. /* This zeroes out and then fills in the invariants in a struct
  1572. * efx_nic (including all sub-structures).
  1573. */
  1574. static int efx_init_struct(struct efx_nic *efx, struct efx_nic_type *type,
  1575. struct pci_dev *pci_dev, struct net_device *net_dev)
  1576. {
  1577. struct efx_channel *channel;
  1578. struct efx_tx_queue *tx_queue;
  1579. struct efx_rx_queue *rx_queue;
  1580. int i;
  1581. /* Initialise common structures */
  1582. memset(efx, 0, sizeof(*efx));
  1583. spin_lock_init(&efx->biu_lock);
  1584. spin_lock_init(&efx->phy_lock);
  1585. mutex_init(&efx->spi_lock);
  1586. INIT_WORK(&efx->reset_work, efx_reset_work);
  1587. INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
  1588. efx->pci_dev = pci_dev;
  1589. efx->state = STATE_INIT;
  1590. efx->reset_pending = RESET_TYPE_NONE;
  1591. strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
  1592. efx->board_info = efx_dummy_board_info;
  1593. efx->net_dev = net_dev;
  1594. efx->rx_checksum_enabled = true;
  1595. spin_lock_init(&efx->netif_stop_lock);
  1596. spin_lock_init(&efx->stats_lock);
  1597. efx->stats_disable_count = 1;
  1598. mutex_init(&efx->mac_lock);
  1599. efx->mac_op = &efx_dummy_mac_operations;
  1600. efx->phy_op = &efx_dummy_phy_operations;
  1601. efx->mii.dev = net_dev;
  1602. INIT_WORK(&efx->phy_work, efx_phy_work);
  1603. INIT_WORK(&efx->mac_work, efx_mac_work);
  1604. atomic_set(&efx->netif_stop_count, 1);
  1605. for (i = 0; i < EFX_MAX_CHANNELS; i++) {
  1606. channel = &efx->channel[i];
  1607. channel->efx = efx;
  1608. channel->channel = i;
  1609. channel->work_pending = false;
  1610. }
  1611. for (i = 0; i < EFX_TX_QUEUE_COUNT; i++) {
  1612. tx_queue = &efx->tx_queue[i];
  1613. tx_queue->efx = efx;
  1614. tx_queue->queue = i;
  1615. tx_queue->buffer = NULL;
  1616. tx_queue->channel = &efx->channel[0]; /* for safety */
  1617. tx_queue->tso_headers_free = NULL;
  1618. }
  1619. for (i = 0; i < EFX_MAX_RX_QUEUES; i++) {
  1620. rx_queue = &efx->rx_queue[i];
  1621. rx_queue->efx = efx;
  1622. rx_queue->queue = i;
  1623. rx_queue->channel = &efx->channel[0]; /* for safety */
  1624. rx_queue->buffer = NULL;
  1625. spin_lock_init(&rx_queue->add_lock);
  1626. INIT_DELAYED_WORK(&rx_queue->work, efx_rx_work);
  1627. }
  1628. efx->type = type;
  1629. /* Sanity-check NIC type */
  1630. EFX_BUG_ON_PARANOID(efx->type->txd_ring_mask &
  1631. (efx->type->txd_ring_mask + 1));
  1632. EFX_BUG_ON_PARANOID(efx->type->rxd_ring_mask &
  1633. (efx->type->rxd_ring_mask + 1));
  1634. EFX_BUG_ON_PARANOID(efx->type->evq_size &
  1635. (efx->type->evq_size - 1));
  1636. /* As close as we can get to guaranteeing that we don't overflow */
  1637. EFX_BUG_ON_PARANOID(efx->type->evq_size <
  1638. (efx->type->txd_ring_mask + 1 +
  1639. efx->type->rxd_ring_mask + 1));
  1640. EFX_BUG_ON_PARANOID(efx->type->phys_addr_channels > EFX_MAX_CHANNELS);
  1641. /* Higher numbered interrupt modes are less capable! */
  1642. efx->interrupt_mode = max(efx->type->max_interrupt_mode,
  1643. interrupt_mode);
  1644. /* Would be good to use the net_dev name, but we're too early */
  1645. snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
  1646. pci_name(pci_dev));
  1647. efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
  1648. if (!efx->workqueue)
  1649. return -ENOMEM;
  1650. return 0;
  1651. }
  1652. static void efx_fini_struct(struct efx_nic *efx)
  1653. {
  1654. if (efx->workqueue) {
  1655. destroy_workqueue(efx->workqueue);
  1656. efx->workqueue = NULL;
  1657. }
  1658. }
  1659. /**************************************************************************
  1660. *
  1661. * PCI interface
  1662. *
  1663. **************************************************************************/
  1664. /* Main body of final NIC shutdown code
  1665. * This is called only at module unload (or hotplug removal).
  1666. */
  1667. static void efx_pci_remove_main(struct efx_nic *efx)
  1668. {
  1669. EFX_ASSERT_RESET_SERIALISED(efx);
  1670. /* Skip everything if we never obtained a valid membase */
  1671. if (!efx->membase)
  1672. return;
  1673. efx_fini_channels(efx);
  1674. efx_fini_port(efx);
  1675. /* Shutdown the board, then the NIC and board state */
  1676. efx->board_info.fini(efx);
  1677. falcon_fini_interrupt(efx);
  1678. efx_fini_napi(efx);
  1679. efx_remove_all(efx);
  1680. }
  1681. /* Final NIC shutdown
  1682. * This is called only at module unload (or hotplug removal).
  1683. */
  1684. static void efx_pci_remove(struct pci_dev *pci_dev)
  1685. {
  1686. struct efx_nic *efx;
  1687. efx = pci_get_drvdata(pci_dev);
  1688. if (!efx)
  1689. return;
  1690. /* Mark the NIC as fini, then stop the interface */
  1691. rtnl_lock();
  1692. efx->state = STATE_FINI;
  1693. dev_close(efx->net_dev);
  1694. /* Allow any queued efx_resets() to complete */
  1695. rtnl_unlock();
  1696. if (efx->membase == NULL)
  1697. goto out;
  1698. efx_unregister_netdev(efx);
  1699. efx_mtd_remove(efx);
  1700. /* Wait for any scheduled resets to complete. No more will be
  1701. * scheduled from this point because efx_stop_all() has been
  1702. * called, we are no longer registered with driverlink, and
  1703. * the net_device's have been removed. */
  1704. cancel_work_sync(&efx->reset_work);
  1705. efx_pci_remove_main(efx);
  1706. out:
  1707. efx_fini_io(efx);
  1708. EFX_LOG(efx, "shutdown successful\n");
  1709. pci_set_drvdata(pci_dev, NULL);
  1710. efx_fini_struct(efx);
  1711. free_netdev(efx->net_dev);
  1712. };
  1713. /* Main body of NIC initialisation
  1714. * This is called at module load (or hotplug insertion, theoretically).
  1715. */
  1716. static int efx_pci_probe_main(struct efx_nic *efx)
  1717. {
  1718. int rc;
  1719. /* Do start-of-day initialisation */
  1720. rc = efx_probe_all(efx);
  1721. if (rc)
  1722. goto fail1;
  1723. rc = efx_init_napi(efx);
  1724. if (rc)
  1725. goto fail2;
  1726. /* Initialise the board */
  1727. rc = efx->board_info.init(efx);
  1728. if (rc) {
  1729. EFX_ERR(efx, "failed to initialise board\n");
  1730. goto fail3;
  1731. }
  1732. rc = falcon_init_nic(efx);
  1733. if (rc) {
  1734. EFX_ERR(efx, "failed to initialise NIC\n");
  1735. goto fail4;
  1736. }
  1737. rc = efx_init_port(efx);
  1738. if (rc) {
  1739. EFX_ERR(efx, "failed to initialise port\n");
  1740. goto fail5;
  1741. }
  1742. efx_init_channels(efx);
  1743. rc = falcon_init_interrupt(efx);
  1744. if (rc)
  1745. goto fail6;
  1746. return 0;
  1747. fail6:
  1748. efx_fini_channels(efx);
  1749. efx_fini_port(efx);
  1750. fail5:
  1751. fail4:
  1752. efx->board_info.fini(efx);
  1753. fail3:
  1754. efx_fini_napi(efx);
  1755. fail2:
  1756. efx_remove_all(efx);
  1757. fail1:
  1758. return rc;
  1759. }
  1760. /* NIC initialisation
  1761. *
  1762. * This is called at module load (or hotplug insertion,
  1763. * theoretically). It sets up PCI mappings, tests and resets the NIC,
  1764. * sets up and registers the network devices with the kernel and hooks
  1765. * the interrupt service routine. It does not prepare the device for
  1766. * transmission; this is left to the first time one of the network
  1767. * interfaces is brought up (i.e. efx_net_open).
  1768. */
  1769. static int __devinit efx_pci_probe(struct pci_dev *pci_dev,
  1770. const struct pci_device_id *entry)
  1771. {
  1772. struct efx_nic_type *type = (struct efx_nic_type *) entry->driver_data;
  1773. struct net_device *net_dev;
  1774. struct efx_nic *efx;
  1775. int i, rc;
  1776. /* Allocate and initialise a struct net_device and struct efx_nic */
  1777. net_dev = alloc_etherdev(sizeof(*efx));
  1778. if (!net_dev)
  1779. return -ENOMEM;
  1780. net_dev->features |= (NETIF_F_IP_CSUM | NETIF_F_SG |
  1781. NETIF_F_HIGHDMA | NETIF_F_TSO);
  1782. if (lro)
  1783. net_dev->features |= NETIF_F_GRO;
  1784. /* Mask for features that also apply to VLAN devices */
  1785. net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
  1786. NETIF_F_HIGHDMA | NETIF_F_TSO);
  1787. efx = netdev_priv(net_dev);
  1788. pci_set_drvdata(pci_dev, efx);
  1789. rc = efx_init_struct(efx, type, pci_dev, net_dev);
  1790. if (rc)
  1791. goto fail1;
  1792. EFX_INFO(efx, "Solarflare Communications NIC detected\n");
  1793. /* Set up basic I/O (BAR mappings etc) */
  1794. rc = efx_init_io(efx);
  1795. if (rc)
  1796. goto fail2;
  1797. /* No serialisation is required with the reset path because
  1798. * we're in STATE_INIT. */
  1799. for (i = 0; i < 5; i++) {
  1800. rc = efx_pci_probe_main(efx);
  1801. /* Serialise against efx_reset(). No more resets will be
  1802. * scheduled since efx_stop_all() has been called, and we
  1803. * have not and never have been registered with either
  1804. * the rtnetlink or driverlink layers. */
  1805. cancel_work_sync(&efx->reset_work);
  1806. if (rc == 0) {
  1807. if (efx->reset_pending != RESET_TYPE_NONE) {
  1808. /* If there was a scheduled reset during
  1809. * probe, the NIC is probably hosed anyway */
  1810. efx_pci_remove_main(efx);
  1811. rc = -EIO;
  1812. } else {
  1813. break;
  1814. }
  1815. }
  1816. /* Retry if a recoverably reset event has been scheduled */
  1817. if ((efx->reset_pending != RESET_TYPE_INVISIBLE) &&
  1818. (efx->reset_pending != RESET_TYPE_ALL))
  1819. goto fail3;
  1820. efx->reset_pending = RESET_TYPE_NONE;
  1821. }
  1822. if (rc) {
  1823. EFX_ERR(efx, "Could not reset NIC\n");
  1824. goto fail4;
  1825. }
  1826. /* Switch to the running state before we expose the device to
  1827. * the OS. This is to ensure that the initial gathering of
  1828. * MAC stats succeeds. */
  1829. efx->state = STATE_RUNNING;
  1830. efx_mtd_probe(efx); /* allowed to fail */
  1831. rc = efx_register_netdev(efx);
  1832. if (rc)
  1833. goto fail5;
  1834. EFX_LOG(efx, "initialisation successful\n");
  1835. return 0;
  1836. fail5:
  1837. efx_pci_remove_main(efx);
  1838. fail4:
  1839. fail3:
  1840. efx_fini_io(efx);
  1841. fail2:
  1842. efx_fini_struct(efx);
  1843. fail1:
  1844. EFX_LOG(efx, "initialisation failed. rc=%d\n", rc);
  1845. free_netdev(net_dev);
  1846. return rc;
  1847. }
  1848. static struct pci_driver efx_pci_driver = {
  1849. .name = EFX_DRIVER_NAME,
  1850. .id_table = efx_pci_table,
  1851. .probe = efx_pci_probe,
  1852. .remove = efx_pci_remove,
  1853. };
  1854. /**************************************************************************
  1855. *
  1856. * Kernel module interface
  1857. *
  1858. *************************************************************************/
  1859. module_param(interrupt_mode, uint, 0444);
  1860. MODULE_PARM_DESC(interrupt_mode,
  1861. "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
  1862. static int __init efx_init_module(void)
  1863. {
  1864. int rc;
  1865. printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
  1866. rc = register_netdevice_notifier(&efx_netdev_notifier);
  1867. if (rc)
  1868. goto err_notifier;
  1869. refill_workqueue = create_workqueue("sfc_refill");
  1870. if (!refill_workqueue) {
  1871. rc = -ENOMEM;
  1872. goto err_refill;
  1873. }
  1874. reset_workqueue = create_singlethread_workqueue("sfc_reset");
  1875. if (!reset_workqueue) {
  1876. rc = -ENOMEM;
  1877. goto err_reset;
  1878. }
  1879. rc = pci_register_driver(&efx_pci_driver);
  1880. if (rc < 0)
  1881. goto err_pci;
  1882. return 0;
  1883. err_pci:
  1884. destroy_workqueue(reset_workqueue);
  1885. err_reset:
  1886. destroy_workqueue(refill_workqueue);
  1887. err_refill:
  1888. unregister_netdevice_notifier(&efx_netdev_notifier);
  1889. err_notifier:
  1890. return rc;
  1891. }
  1892. static void __exit efx_exit_module(void)
  1893. {
  1894. printk(KERN_INFO "Solarflare NET driver unloading\n");
  1895. pci_unregister_driver(&efx_pci_driver);
  1896. destroy_workqueue(reset_workqueue);
  1897. destroy_workqueue(refill_workqueue);
  1898. unregister_netdevice_notifier(&efx_netdev_notifier);
  1899. }
  1900. module_init(efx_init_module);
  1901. module_exit(efx_exit_module);
  1902. MODULE_AUTHOR("Michael Brown <mbrown@fensystems.co.uk> and "
  1903. "Solarflare Communications");
  1904. MODULE_DESCRIPTION("Solarflare Communications network driver");
  1905. MODULE_LICENSE("GPL");
  1906. MODULE_DEVICE_TABLE(pci, efx_pci_table);