Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[deliverable/linux.git] / drivers / net / ethernet / tile / tilegx.c
CommitLineData
e3d62d7e
CM
1/*
2 * Copyright 2012 Tilera Corporation. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
12 * more details.
13 */
14
15#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/moduleparam.h>
18#include <linux/sched.h>
19#include <linux/kernel.h> /* printk() */
20#include <linux/slab.h> /* kmalloc() */
21#include <linux/errno.h> /* error codes */
22#include <linux/types.h> /* size_t */
23#include <linux/interrupt.h>
24#include <linux/in.h>
25#include <linux/irq.h>
26#include <linux/netdevice.h> /* struct device, and other headers */
27#include <linux/etherdevice.h> /* eth_type_trans */
28#include <linux/skbuff.h>
29#include <linux/ioctl.h>
30#include <linux/cdev.h>
31#include <linux/hugetlb.h>
32#include <linux/in6.h>
33#include <linux/timer.h>
34#include <linux/hrtimer.h>
35#include <linux/ktime.h>
36#include <linux/io.h>
37#include <linux/ctype.h>
38#include <linux/ip.h>
2c7d04a9 39#include <linux/ipv6.h>
e3d62d7e 40#include <linux/tcp.h>
9ab5ec59
CM
41#include <linux/net_tstamp.h>
42#include <linux/ptp_clock_kernel.h>
e3d62d7e
CM
43
44#include <asm/checksum.h>
45#include <asm/homecache.h>
46#include <gxio/mpipe.h>
47#include <arch/sim.h>
48
49/* Default transmit lockup timeout period, in jiffies. */
50#define TILE_NET_TIMEOUT (5 * HZ)
51
52/* The maximum number of distinct channels (idesc.channel is 5 bits). */
53#define TILE_NET_CHANNELS 32
54
55/* Maximum number of idescs to handle per "poll". */
56#define TILE_NET_BATCH 128
57
58/* Maximum number of packets to handle per "poll". */
59#define TILE_NET_WEIGHT 64
60
61/* Number of entries in each iqueue. */
62#define IQUEUE_ENTRIES 512
63
64/* Number of entries in each equeue. */
65#define EQUEUE_ENTRIES 2048
66
67/* Total header bytes per equeue slot. Must be big enough for 2 bytes
68 * of NET_IP_ALIGN alignment, plus 14 bytes (?) of L2 header, plus up to
69 * 60 bytes of actual TCP header. We round up to align to cache lines.
70 */
71#define HEADER_BYTES 128
72
73/* Maximum completions per cpu per device (must be a power of two).
74 * ISSUE: What is the right number here? If this is too small, then
75 * egress might block waiting for free space in a completions array.
76 * ISSUE: At the least, allocate these only for initialized echannels.
77 */
78#define TILE_NET_MAX_COMPS 64
79
80#define MAX_FRAGS (MAX_SKB_FRAGS + 1)
81
2628e8af
CM
82/* The "kinds" of buffer stacks (small/large/jumbo). */
83#define MAX_KINDS 3
84
e3d62d7e
CM
85/* Size of completions data to allocate.
86 * ISSUE: Probably more than needed since we don't use all the channels.
87 */
88#define COMPS_SIZE (TILE_NET_CHANNELS * sizeof(struct tile_net_comps))
89
90/* Size of NotifRing data to allocate. */
91#define NOTIF_RING_SIZE (IQUEUE_ENTRIES * sizeof(gxio_mpipe_idesc_t))
92
93/* Timeout to wake the per-device TX timer after we stop the queue.
94 * We don't want the timeout too short (adds overhead, and might end
95 * up causing stop/wake/stop/wake cycles) or too long (affects performance).
96 * For the 10 Gb NIC, 30 usec means roughly 30+ 1500-byte packets.
97 */
98#define TX_TIMER_DELAY_USEC 30
99
100/* Timeout to wake the per-cpu egress timer to free completions. */
101#define EGRESS_TIMER_DELAY_USEC 1000
102
103MODULE_AUTHOR("Tilera Corporation");
104MODULE_LICENSE("GPL");
105
106/* A "packet fragment" (a chunk of memory). */
107struct frag {
108 void *buf;
109 size_t length;
110};
111
112/* A single completion. */
113struct tile_net_comp {
114 /* The "complete_count" when the completion will be complete. */
115 s64 when;
116 /* The buffer to be freed when the completion is complete. */
117 struct sk_buff *skb;
118};
119
120/* The completions for a given cpu and echannel. */
121struct tile_net_comps {
122 /* The completions. */
123 struct tile_net_comp comp_queue[TILE_NET_MAX_COMPS];
124 /* The number of completions used. */
125 unsigned long comp_next;
126 /* The number of completions freed. */
127 unsigned long comp_last;
128};
129
130/* The transmit wake timer for a given cpu and echannel. */
131struct tile_net_tx_wake {
9b4c341b 132 int tx_queue_idx;
e3d62d7e
CM
133 struct hrtimer timer;
134 struct net_device *dev;
135};
136
137/* Info for a specific cpu. */
138struct tile_net_info {
e3d62d7e
CM
139 /* Our cpu. */
140 int my_cpu;
e3d62d7e
CM
141 /* A timer for handling egress completions. */
142 struct hrtimer egress_timer;
143 /* True if "egress_timer" is scheduled. */
144 bool egress_timer_scheduled;
f3286a3a
CM
145 struct info_mpipe {
146 /* Packet queue. */
147 gxio_mpipe_iqueue_t iqueue;
148 /* The NAPI struct. */
149 struct napi_struct napi;
150 /* Number of buffers (by kind) which must still be provided. */
151 unsigned int num_needed_buffers[MAX_KINDS];
152 /* instance id. */
153 int instance;
154 /* True if iqueue is valid. */
155 bool has_iqueue;
156 /* NAPI flags. */
157 bool napi_added;
158 bool napi_enabled;
159 /* Comps for each egress channel. */
160 struct tile_net_comps *comps_for_echannel[TILE_NET_CHANNELS];
161 /* Transmit wake timer for each egress channel. */
162 struct tile_net_tx_wake tx_wake[TILE_NET_CHANNELS];
163 } mpipe[NR_MPIPE_MAX];
e3d62d7e
CM
164};
165
166/* Info for egress on a particular egress channel. */
167struct tile_net_egress {
168 /* The "equeue". */
169 gxio_mpipe_equeue_t *equeue;
170 /* The headers for TSO. */
171 unsigned char *headers;
172};
173
174/* Info for a specific device. */
175struct tile_net_priv {
176 /* Our network device. */
177 struct net_device *dev;
178 /* The primary link. */
179 gxio_mpipe_link_t link;
180 /* The primary channel, if open, else -1. */
181 int channel;
182 /* The "loopify" egress link, if needed. */
183 gxio_mpipe_link_t loopify_link;
184 /* The "loopify" egress channel, if open, else -1. */
185 int loopify_channel;
186 /* The egress channel (channel or loopify_channel). */
187 int echannel;
f3286a3a
CM
188 /* mPIPE instance, 0 or 1. */
189 int instance;
9ab5ec59
CM
190 /* The timestamp config. */
191 struct hwtstamp_config stamp_cfg;
e3d62d7e
CM
192};
193
f3286a3a
CM
194static struct mpipe_data {
195 /* The ingress irq. */
196 int ingress_irq;
e3d62d7e 197
f3286a3a
CM
198 /* The "context" for all devices. */
199 gxio_mpipe_context_t context;
200
201 /* Egress info, indexed by "priv->echannel"
202 * (lazily created as needed).
203 */
204 struct tile_net_egress
205 egress_for_echannel[TILE_NET_CHANNELS];
206
207 /* Devices currently associated with each channel.
208 * NOTE: The array entry can become NULL after ifconfig down, but
209 * we do not free the underlying net_device structures, so it is
210 * safe to use a pointer after reading it from this array.
211 */
212 struct net_device
213 *tile_net_devs_for_channel[TILE_NET_CHANNELS];
214
215 /* The actual memory allocated for the buffer stacks. */
216 void *buffer_stack_vas[MAX_KINDS];
217
218 /* The amount of memory allocated for each buffer stack. */
219 size_t buffer_stack_bytes[MAX_KINDS];
220
221 /* The first buffer stack index
222 * (small = +0, large = +1, jumbo = +2).
223 */
224 int first_buffer_stack;
225
226 /* The buckets. */
227 int first_bucket;
228 int num_buckets;
229
9ab5ec59
CM
230 /* PTP-specific data. */
231 struct ptp_clock *ptp_clock;
232 struct ptp_clock_info caps;
233
234 /* Lock for ptp accessors. */
235 struct mutex ptp_lock;
9ab5ec59 236
f3286a3a
CM
237} mpipe_data[NR_MPIPE_MAX] = {
238 [0 ... (NR_MPIPE_MAX - 1)] {
239 .ingress_irq = -1,
240 .first_buffer_stack = -1,
241 .first_bucket = -1,
242 .num_buckets = 1
243 }
244};
e3d62d7e
CM
245
246/* A mutex for "tile_net_devs_for_channel". */
247static DEFINE_MUTEX(tile_net_devs_for_channel_mutex);
248
249/* The per-cpu info. */
250static DEFINE_PER_CPU(struct tile_net_info, per_cpu_info);
251
e3d62d7e 252
2628e8af 253/* The buffer size enums for each buffer stack.
e3d62d7e 254 * See arch/tile/include/gxio/mpipe.h for the set of possible values.
2628e8af
CM
255 * We avoid the "10384" size because it can induce "false chaining"
256 * on "cut-through" jumbo packets.
e3d62d7e 257 */
2628e8af
CM
258static gxio_mpipe_buffer_size_enum_t buffer_size_enums[MAX_KINDS] = {
259 GXIO_MPIPE_BUFFER_SIZE_128,
260 GXIO_MPIPE_BUFFER_SIZE_1664,
261 GXIO_MPIPE_BUFFER_SIZE_16384
262};
e3d62d7e 263
e3d62d7e
CM
264/* Text value of tile_net.cpus if passed as a module parameter. */
265static char *network_cpus_string;
266
267/* The actual cpus in "network_cpus". */
268static struct cpumask network_cpus_map;
269
4aa02644 270/* If "tile_net.loopify=LINK" was specified, this is "LINK". */
e3d62d7e
CM
271static char *loopify_link_name;
272
4aa02644
CM
273/* If "tile_net.custom" was specified, this is true. */
274static bool custom_flag;
e3d62d7e 275
2628e8af
CM
276/* If "tile_net.jumbo=NUM" was specified, this is "NUM". */
277static uint jumbo_num;
278
f3286a3a
CM
279/* Obtain mpipe instance from struct tile_net_priv given struct net_device. */
280static inline int mpipe_instance(struct net_device *dev)
281{
282 struct tile_net_priv *priv = netdev_priv(dev);
283 return priv->instance;
284}
285
e3d62d7e
CM
286/* The "tile_net.cpus" argument specifies the cpus that are dedicated
287 * to handle ingress packets.
288 *
289 * The parameter should be in the form "tile_net.cpus=m-n[,x-y]", where
290 * m, n, x, y are integer numbers that represent the cpus that can be
291 * neither a dedicated cpu nor a dataplane cpu.
292 */
293static bool network_cpus_init(void)
294{
295 char buf[1024];
296 int rc;
297
298 if (network_cpus_string == NULL)
299 return false;
300
301 rc = cpulist_parse_crop(network_cpus_string, &network_cpus_map);
302 if (rc != 0) {
303 pr_warn("tile_net.cpus=%s: malformed cpu list\n",
304 network_cpus_string);
305 return false;
306 }
307
308 /* Remove dedicated cpus. */
309 cpumask_and(&network_cpus_map, &network_cpus_map, cpu_possible_mask);
310
311 if (cpumask_empty(&network_cpus_map)) {
312 pr_warn("Ignoring empty tile_net.cpus='%s'.\n",
313 network_cpus_string);
314 return false;
315 }
316
317 cpulist_scnprintf(buf, sizeof(buf), &network_cpus_map);
318 pr_info("Linux network CPUs: %s\n", buf);
319 return true;
320}
321
322module_param_named(cpus, network_cpus_string, charp, 0444);
323MODULE_PARM_DESC(cpus, "cpulist of cores that handle network interrupts");
324
325/* The "tile_net.loopify=LINK" argument causes the named device to
326 * actually use "loop0" for ingress, and "loop1" for egress. This
327 * allows an app to sit between the actual link and linux, passing
328 * (some) packets along to linux, and forwarding (some) packets sent
329 * out by linux.
330 */
331module_param_named(loopify, loopify_link_name, charp, 0444);
332MODULE_PARM_DESC(loopify, "name the device to use loop0/1 for ingress/egress");
333
334/* The "tile_net.custom" argument causes us to ignore the "conventional"
335 * classifier metadata, in particular, the "l2_offset".
336 */
4aa02644 337module_param_named(custom, custom_flag, bool, 0444);
e3d62d7e
CM
338MODULE_PARM_DESC(custom, "indicates a (heavily) customized classifier");
339
2628e8af
CM
340/* The "tile_net.jumbo" argument causes us to support "jumbo" packets,
341 * and to allocate the given number of "jumbo" buffers.
342 */
343module_param_named(jumbo, jumbo_num, uint, 0444);
344MODULE_PARM_DESC(jumbo, "the number of buffers to support jumbo packets");
345
e3d62d7e
CM
346/* Atomically update a statistics field.
347 * Note that on TILE-Gx, this operation is fire-and-forget on the
348 * issuing core (single-cycle dispatch) and takes only a few cycles
349 * longer than a regular store when the request reaches the home cache.
350 * No expensive bus management overhead is required.
351 */
352static void tile_net_stats_add(unsigned long value, unsigned long *field)
353{
354 BUILD_BUG_ON(sizeof(atomic_long_t) != sizeof(unsigned long));
355 atomic_long_add(value, (atomic_long_t *)field);
356}
357
358/* Allocate and push a buffer. */
f3286a3a 359static bool tile_net_provide_buffer(int instance, int kind)
e3d62d7e 360{
f3286a3a 361 struct mpipe_data *md = &mpipe_data[instance];
2628e8af
CM
362 gxio_mpipe_buffer_size_enum_t bse = buffer_size_enums[kind];
363 size_t bs = gxio_mpipe_buffer_size_enum_to_buffer_size(bse);
e3d62d7e
CM
364 const unsigned long buffer_alignment = 128;
365 struct sk_buff *skb;
366 int len;
367
2628e8af 368 len = sizeof(struct sk_buff **) + buffer_alignment + bs;
e3d62d7e
CM
369 skb = dev_alloc_skb(len);
370 if (skb == NULL)
371 return false;
372
373 /* Make room for a back-pointer to 'skb' and guarantee alignment. */
374 skb_reserve(skb, sizeof(struct sk_buff **));
375 skb_reserve(skb, -(long)skb->data & (buffer_alignment - 1));
376
377 /* Save a back-pointer to 'skb'. */
378 *(struct sk_buff **)(skb->data - sizeof(struct sk_buff **)) = skb;
379
380 /* Make sure "skb" and the back-pointer have been flushed. */
381 wmb();
382
f3286a3a 383 gxio_mpipe_push_buffer(&md->context, md->first_buffer_stack + kind,
e3d62d7e
CM
384 (void *)va_to_tile_io_addr(skb->data));
385
386 return true;
387}
388
389/* Convert a raw mpipe buffer to its matching skb pointer. */
390static struct sk_buff *mpipe_buf_to_skb(void *va)
391{
392 /* Acquire the associated "skb". */
393 struct sk_buff **skb_ptr = va - sizeof(*skb_ptr);
394 struct sk_buff *skb = *skb_ptr;
395
396 /* Paranoia. */
397 if (skb->data != va) {
398 /* Panic here since there's a reasonable chance
399 * that corrupt buffers means generic memory
400 * corruption, with unpredictable system effects.
401 */
402 panic("Corrupt linux buffer! va=%p, skb=%p, skb->data=%p",
403 va, skb, skb->data);
404 }
405
406 return skb;
407}
408
f3286a3a 409static void tile_net_pop_all_buffers(int instance, int stack)
e3d62d7e 410{
f3286a3a
CM
411 struct mpipe_data *md = &mpipe_data[instance];
412
e3d62d7e
CM
413 for (;;) {
414 tile_io_addr_t addr =
f3286a3a
CM
415 (tile_io_addr_t)gxio_mpipe_pop_buffer(&md->context,
416 stack);
e3d62d7e
CM
417 if (addr == 0)
418 break;
419 dev_kfree_skb_irq(mpipe_buf_to_skb(tile_io_addr_to_va(addr)));
420 }
421}
422
423/* Provide linux buffers to mPIPE. */
424static void tile_net_provide_needed_buffers(void)
425{
426 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
f3286a3a
CM
427 int instance, kind;
428 for (instance = 0; instance < NR_MPIPE_MAX &&
429 info->mpipe[instance].has_iqueue; instance++) {
430 for (kind = 0; kind < MAX_KINDS; kind++) {
431 while (info->mpipe[instance].num_needed_buffers[kind]
432 != 0) {
433 if (!tile_net_provide_buffer(instance, kind)) {
434 pr_notice("Tile %d still needs"
435 " some buffers\n",
436 info->my_cpu);
437 return;
438 }
439 info->mpipe[instance].
440 num_needed_buffers[kind]--;
2628e8af 441 }
2628e8af 442 }
e3d62d7e 443 }
e3d62d7e
CM
444}
445
9ab5ec59
CM
446/* Get RX timestamp, and store it in the skb. */
447static void tile_rx_timestamp(struct tile_net_priv *priv, struct sk_buff *skb,
448 gxio_mpipe_idesc_t *idesc)
449{
9ab5ec59
CM
450 if (unlikely(priv->stamp_cfg.rx_filter != HWTSTAMP_FILTER_NONE)) {
451 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
452 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
453 shhwtstamps->hwtstamp = ktime_set(idesc->time_stamp_sec,
454 idesc->time_stamp_ns);
455 }
9ab5ec59
CM
456}
457
458/* Get TX timestamp, and store it in the skb. */
459static void tile_tx_timestamp(struct sk_buff *skb, int instance)
460{
9ab5ec59
CM
461 struct skb_shared_info *shtx = skb_shinfo(skb);
462 if (unlikely((shtx->tx_flags & SKBTX_HW_TSTAMP) != 0)) {
463 struct mpipe_data *md = &mpipe_data[instance];
464 struct skb_shared_hwtstamps shhwtstamps;
465 struct timespec ts;
466
467 shtx->tx_flags |= SKBTX_IN_PROGRESS;
468 gxio_mpipe_get_timestamp(&md->context, &ts);
469 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
470 shhwtstamps.hwtstamp = ktime_set(ts.tv_sec, ts.tv_nsec);
471 skb_tstamp_tx(skb, &shhwtstamps);
472 }
9ab5ec59
CM
473}
474
475/* Use ioctl() to enable or disable TX or RX timestamping. */
6ab96d1e 476static int tile_hwtstamp_set(struct net_device *dev, struct ifreq *rq)
9ab5ec59 477{
9ab5ec59
CM
478 struct hwtstamp_config config;
479 struct tile_net_priv *priv = netdev_priv(dev);
480
481 if (copy_from_user(&config, rq->ifr_data, sizeof(config)))
482 return -EFAULT;
483
484 if (config.flags) /* reserved for future extensions */
485 return -EINVAL;
486
487 switch (config.tx_type) {
488 case HWTSTAMP_TX_OFF:
489 case HWTSTAMP_TX_ON:
490 break;
491 default:
492 return -ERANGE;
493 }
494
495 switch (config.rx_filter) {
496 case HWTSTAMP_FILTER_NONE:
497 break;
498 case HWTSTAMP_FILTER_ALL:
499 case HWTSTAMP_FILTER_SOME:
500 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
501 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
502 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
503 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
504 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
505 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
506 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
507 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
508 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
509 case HWTSTAMP_FILTER_PTP_V2_EVENT:
510 case HWTSTAMP_FILTER_PTP_V2_SYNC:
511 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
512 config.rx_filter = HWTSTAMP_FILTER_ALL;
513 break;
514 default:
515 return -ERANGE;
516 }
517
518 if (copy_to_user(rq->ifr_data, &config, sizeof(config)))
519 return -EFAULT;
520
521 priv->stamp_cfg = config;
522 return 0;
9ab5ec59
CM
523}
524
6ab96d1e
BH
525static int tile_hwtstamp_get(struct net_device *dev, struct ifreq *rq)
526{
6ab96d1e
BH
527 struct tile_net_priv *priv = netdev_priv(dev);
528
529 if (copy_to_user(rq->ifr_data, &priv->stamp_cfg,
530 sizeof(priv->stamp_cfg)))
531 return -EFAULT;
532
533 return 0;
6ab96d1e
BH
534}
535
e3d62d7e
CM
536static inline bool filter_packet(struct net_device *dev, void *buf)
537{
538 /* Filter packets received before we're up. */
539 if (dev == NULL || !(dev->flags & IFF_UP))
540 return true;
541
542 /* Filter out packets that aren't for us. */
543 if (!(dev->flags & IFF_PROMISC) &&
544 !is_multicast_ether_addr(buf) &&
7367d0b5 545 !ether_addr_equal(dev->dev_addr, buf))
e3d62d7e
CM
546 return true;
547
548 return false;
549}
550
551static void tile_net_receive_skb(struct net_device *dev, struct sk_buff *skb,
552 gxio_mpipe_idesc_t *idesc, unsigned long len)
553{
554 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
9ab5ec59
CM
555 struct tile_net_priv *priv = netdev_priv(dev);
556 int instance = priv->instance;
e3d62d7e
CM
557
558 /* Encode the actual packet length. */
559 skb_put(skb, len);
560
561 skb->protocol = eth_type_trans(skb, dev);
562
563 /* Acknowledge "good" hardware checksums. */
564 if (idesc->cs && idesc->csum_seed_val == 0xFFFF)
565 skb->ip_summed = CHECKSUM_UNNECESSARY;
566
9ab5ec59
CM
567 /* Get RX timestamp from idesc. */
568 tile_rx_timestamp(priv, skb, idesc);
569
f3286a3a 570 napi_gro_receive(&info->mpipe[instance].napi, skb);
e3d62d7e
CM
571
572 /* Update stats. */
ad018185
CM
573 tile_net_stats_add(1, &dev->stats.rx_packets);
574 tile_net_stats_add(len, &dev->stats.rx_bytes);
e3d62d7e
CM
575
576 /* Need a new buffer. */
2628e8af 577 if (idesc->size == buffer_size_enums[0])
f3286a3a 578 info->mpipe[instance].num_needed_buffers[0]++;
2628e8af 579 else if (idesc->size == buffer_size_enums[1])
f3286a3a 580 info->mpipe[instance].num_needed_buffers[1]++;
e3d62d7e 581 else
f3286a3a 582 info->mpipe[instance].num_needed_buffers[2]++;
e3d62d7e
CM
583}
584
585/* Handle a packet. Return true if "processed", false if "filtered". */
f3286a3a 586static bool tile_net_handle_packet(int instance, gxio_mpipe_idesc_t *idesc)
e3d62d7e
CM
587{
588 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
f3286a3a
CM
589 struct mpipe_data *md = &mpipe_data[instance];
590 struct net_device *dev = md->tile_net_devs_for_channel[idesc->channel];
e3d62d7e
CM
591 uint8_t l2_offset;
592 void *va;
593 void *buf;
594 unsigned long len;
595 bool filter;
596
2628e8af
CM
597 /* Drop packets for which no buffer was available (which can
598 * happen under heavy load), or for which the me/tr/ce flags
599 * are set (which can happen for jumbo cut-through packets,
600 * or with a customized classifier).
e3d62d7e 601 */
2628e8af
CM
602 if (idesc->be || idesc->me || idesc->tr || idesc->ce) {
603 if (dev)
ad018185 604 tile_net_stats_add(1, &dev->stats.rx_errors);
2628e8af 605 goto drop;
e3d62d7e
CM
606 }
607
608 /* Get the "l2_offset", if allowed. */
4aa02644 609 l2_offset = custom_flag ? 0 : gxio_mpipe_idesc_get_l2_offset(idesc);
e3d62d7e 610
2628e8af
CM
611 /* Get the VA (including NET_IP_ALIGN bytes of "headroom"). */
612 va = tile_io_addr_to_va((unsigned long)idesc->va);
e3d62d7e
CM
613
614 /* Get the actual packet start/length. */
615 buf = va + l2_offset;
616 len = idesc->l2_size - l2_offset;
617
618 /* Point "va" at the raw buffer. */
619 va -= NET_IP_ALIGN;
620
621 filter = filter_packet(dev, buf);
622 if (filter) {
2628e8af 623 if (dev)
ad018185 624 tile_net_stats_add(1, &dev->stats.rx_dropped);
2628e8af 625drop:
f3286a3a 626 gxio_mpipe_iqueue_drop(&info->mpipe[instance].iqueue, idesc);
e3d62d7e
CM
627 } else {
628 struct sk_buff *skb = mpipe_buf_to_skb(va);
629
630 /* Skip headroom, and any custom header. */
631 skb_reserve(skb, NET_IP_ALIGN + l2_offset);
632
633 tile_net_receive_skb(dev, skb, idesc, len);
634 }
635
f3286a3a 636 gxio_mpipe_iqueue_consume(&info->mpipe[instance].iqueue, idesc);
e3d62d7e
CM
637 return !filter;
638}
639
640/* Handle some packets for the current CPU.
641 *
642 * This function handles up to TILE_NET_BATCH idescs per call.
643 *
644 * ISSUE: Since we do not provide new buffers until this function is
645 * complete, we must initially provide enough buffers for each network
646 * cpu to fill its iqueue and also its batched idescs.
647 *
648 * ISSUE: The "rotting packet" race condition occurs if a packet
649 * arrives after the queue appears to be empty, and before the
650 * hypervisor interrupt is re-enabled.
651 */
652static int tile_net_poll(struct napi_struct *napi, int budget)
653{
654 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
655 unsigned int work = 0;
656 gxio_mpipe_idesc_t *idesc;
f3286a3a
CM
657 int instance, i, n;
658 struct mpipe_data *md;
659 struct info_mpipe *info_mpipe =
660 container_of(napi, struct info_mpipe, napi);
661
d110ec45
EB
662 if (budget <= 0)
663 goto done;
664
f3286a3a
CM
665 instance = info_mpipe->instance;
666 while ((n = gxio_mpipe_iqueue_try_peek(
667 &info_mpipe->iqueue,
668 &idesc)) > 0) {
e3d62d7e
CM
669 for (i = 0; i < n; i++) {
670 if (i == TILE_NET_BATCH)
671 goto done;
f3286a3a
CM
672 if (tile_net_handle_packet(instance,
673 idesc + i)) {
e3d62d7e
CM
674 if (++work >= budget)
675 goto done;
676 }
677 }
678 }
679
680 /* There are no packets left. */
f3286a3a 681 napi_complete(&info_mpipe->napi);
e3d62d7e 682
f3286a3a 683 md = &mpipe_data[instance];
e3d62d7e 684 /* Re-enable hypervisor interrupts. */
f3286a3a
CM
685 gxio_mpipe_enable_notif_ring_interrupt(
686 &md->context, info->mpipe[instance].iqueue.ring);
e3d62d7e
CM
687
688 /* HACK: Avoid the "rotting packet" problem. */
f3286a3a
CM
689 if (gxio_mpipe_iqueue_try_peek(&info_mpipe->iqueue, &idesc) > 0)
690 napi_schedule(&info_mpipe->napi);
e3d62d7e
CM
691
692 /* ISSUE: Handle completions? */
693
694done:
695 tile_net_provide_needed_buffers();
696
697 return work;
698}
699
f3286a3a
CM
700/* Handle an ingress interrupt from an instance on the current cpu. */
701static irqreturn_t tile_net_handle_ingress_irq(int irq, void *id)
e3d62d7e
CM
702{
703 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
f3286a3a 704 napi_schedule(&info->mpipe[(uint64_t)id].napi);
e3d62d7e
CM
705 return IRQ_HANDLED;
706}
707
708/* Free some completions. This must be called with interrupts blocked. */
709static int tile_net_free_comps(gxio_mpipe_equeue_t *equeue,
710 struct tile_net_comps *comps,
711 int limit, bool force_update)
712{
713 int n = 0;
714 while (comps->comp_last < comps->comp_next) {
715 unsigned int cid = comps->comp_last % TILE_NET_MAX_COMPS;
716 struct tile_net_comp *comp = &comps->comp_queue[cid];
717 if (!gxio_mpipe_equeue_is_complete(equeue, comp->when,
718 force_update || n == 0))
719 break;
720 dev_kfree_skb_irq(comp->skb);
721 comps->comp_last++;
722 if (++n == limit)
723 break;
724 }
725 return n;
726}
727
728/* Add a completion. This must be called with interrupts blocked.
729 * tile_net_equeue_try_reserve() will have ensured a free completion entry.
730 */
731static void add_comp(gxio_mpipe_equeue_t *equeue,
732 struct tile_net_comps *comps,
733 uint64_t when, struct sk_buff *skb)
734{
735 int cid = comps->comp_next % TILE_NET_MAX_COMPS;
736 comps->comp_queue[cid].when = when;
737 comps->comp_queue[cid].skb = skb;
738 comps->comp_next++;
739}
740
9b4c341b
CM
741static void tile_net_schedule_tx_wake_timer(struct net_device *dev,
742 int tx_queue_idx)
e3d62d7e 743{
9b4c341b 744 struct tile_net_info *info = &per_cpu(per_cpu_info, tx_queue_idx);
e3d62d7e 745 struct tile_net_priv *priv = netdev_priv(dev);
f3286a3a
CM
746 int instance = priv->instance;
747 struct tile_net_tx_wake *tx_wake =
748 &info->mpipe[instance].tx_wake[priv->echannel];
e3d62d7e 749
9b4c341b 750 hrtimer_start(&tx_wake->timer,
e3d62d7e
CM
751 ktime_set(0, TX_TIMER_DELAY_USEC * 1000UL),
752 HRTIMER_MODE_REL_PINNED);
753}
754
755static enum hrtimer_restart tile_net_handle_tx_wake_timer(struct hrtimer *t)
756{
757 struct tile_net_tx_wake *tx_wake =
758 container_of(t, struct tile_net_tx_wake, timer);
9b4c341b 759 netif_wake_subqueue(tx_wake->dev, tx_wake->tx_queue_idx);
e3d62d7e
CM
760 return HRTIMER_NORESTART;
761}
762
763/* Make sure the egress timer is scheduled. */
764static void tile_net_schedule_egress_timer(void)
765{
766 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
767
768 if (!info->egress_timer_scheduled) {
769 hrtimer_start(&info->egress_timer,
770 ktime_set(0, EGRESS_TIMER_DELAY_USEC * 1000UL),
771 HRTIMER_MODE_REL_PINNED);
772 info->egress_timer_scheduled = true;
773 }
774}
775
776/* The "function" for "info->egress_timer".
777 *
778 * This timer will reschedule itself as long as there are any pending
779 * completions expected for this tile.
780 */
781static enum hrtimer_restart tile_net_handle_egress_timer(struct hrtimer *t)
782{
783 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
784 unsigned long irqflags;
785 bool pending = false;
f3286a3a 786 int i, instance;
e3d62d7e
CM
787
788 local_irq_save(irqflags);
789
790 /* The timer is no longer scheduled. */
791 info->egress_timer_scheduled = false;
792
793 /* Free all possible comps for this tile. */
f3286a3a
CM
794 for (instance = 0; instance < NR_MPIPE_MAX &&
795 info->mpipe[instance].has_iqueue; instance++) {
796 for (i = 0; i < TILE_NET_CHANNELS; i++) {
797 struct tile_net_egress *egress =
798 &mpipe_data[instance].egress_for_echannel[i];
799 struct tile_net_comps *comps =
800 info->mpipe[instance].comps_for_echannel[i];
801 if (!egress || comps->comp_last >= comps->comp_next)
802 continue;
803 tile_net_free_comps(egress->equeue, comps, -1, true);
804 pending = pending ||
805 (comps->comp_last < comps->comp_next);
806 }
e3d62d7e
CM
807 }
808
809 /* Reschedule timer if needed. */
810 if (pending)
811 tile_net_schedule_egress_timer();
812
813 local_irq_restore(irqflags);
814
815 return HRTIMER_NORESTART;
816}
817
9ab5ec59
CM
818/* PTP clock operations. */
819
820static int ptp_mpipe_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
821{
822 int ret = 0;
823 struct mpipe_data *md = container_of(ptp, struct mpipe_data, caps);
824 mutex_lock(&md->ptp_lock);
825 if (gxio_mpipe_adjust_timestamp_freq(&md->context, ppb))
826 ret = -EINVAL;
827 mutex_unlock(&md->ptp_lock);
828 return ret;
829}
830
831static int ptp_mpipe_adjtime(struct ptp_clock_info *ptp, s64 delta)
832{
833 int ret = 0;
834 struct mpipe_data *md = container_of(ptp, struct mpipe_data, caps);
835 mutex_lock(&md->ptp_lock);
836 if (gxio_mpipe_adjust_timestamp(&md->context, delta))
837 ret = -EBUSY;
838 mutex_unlock(&md->ptp_lock);
839 return ret;
840}
841
842static int ptp_mpipe_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
843{
844 int ret = 0;
845 struct mpipe_data *md = container_of(ptp, struct mpipe_data, caps);
846 mutex_lock(&md->ptp_lock);
847 if (gxio_mpipe_get_timestamp(&md->context, ts))
848 ret = -EBUSY;
849 mutex_unlock(&md->ptp_lock);
850 return ret;
851}
852
853static int ptp_mpipe_settime(struct ptp_clock_info *ptp,
854 const struct timespec *ts)
855{
856 int ret = 0;
857 struct mpipe_data *md = container_of(ptp, struct mpipe_data, caps);
858 mutex_lock(&md->ptp_lock);
859 if (gxio_mpipe_set_timestamp(&md->context, ts))
860 ret = -EBUSY;
861 mutex_unlock(&md->ptp_lock);
862 return ret;
863}
864
865static int ptp_mpipe_enable(struct ptp_clock_info *ptp,
866 struct ptp_clock_request *request, int on)
867{
868 return -EOPNOTSUPP;
869}
870
871static struct ptp_clock_info ptp_mpipe_caps = {
872 .owner = THIS_MODULE,
873 .name = "mPIPE clock",
874 .max_adj = 999999999,
875 .n_ext_ts = 0,
4986b4f0 876 .n_pins = 0,
9ab5ec59
CM
877 .pps = 0,
878 .adjfreq = ptp_mpipe_adjfreq,
879 .adjtime = ptp_mpipe_adjtime,
880 .gettime = ptp_mpipe_gettime,
881 .settime = ptp_mpipe_settime,
882 .enable = ptp_mpipe_enable,
883};
884
9ab5ec59
CM
885/* Sync mPIPE's timestamp up with Linux system time and register PTP clock. */
886static void register_ptp_clock(struct net_device *dev, struct mpipe_data *md)
887{
9ab5ec59
CM
888 struct timespec ts;
889
890 getnstimeofday(&ts);
891 gxio_mpipe_set_timestamp(&md->context, &ts);
892
893 mutex_init(&md->ptp_lock);
894 md->caps = ptp_mpipe_caps;
895 md->ptp_clock = ptp_clock_register(&md->caps, NULL);
896 if (IS_ERR(md->ptp_clock))
897 netdev_err(dev, "ptp_clock_register failed %ld\n",
898 PTR_ERR(md->ptp_clock));
9ab5ec59
CM
899}
900
901/* Initialize PTP fields in a new device. */
902static void init_ptp_dev(struct tile_net_priv *priv)
903{
9ab5ec59
CM
904 priv->stamp_cfg.rx_filter = HWTSTAMP_FILTER_NONE;
905 priv->stamp_cfg.tx_type = HWTSTAMP_TX_OFF;
9ab5ec59
CM
906}
907
f3286a3a
CM
908/* Helper functions for "tile_net_update()". */
909static void enable_ingress_irq(void *irq)
e3d62d7e 910{
f3286a3a
CM
911 enable_percpu_irq((long)irq, 0);
912}
913
914static void disable_ingress_irq(void *irq)
915{
916 disable_percpu_irq((long)irq);
e3d62d7e
CM
917}
918
919/* Helper function for tile_net_open() and tile_net_stop().
920 * Always called under tile_net_devs_for_channel_mutex.
921 */
922static int tile_net_update(struct net_device *dev)
923{
924 static gxio_mpipe_rules_t rules; /* too big to fit on the stack */
925 bool saw_channel = false;
f3286a3a
CM
926 int instance = mpipe_instance(dev);
927 struct mpipe_data *md = &mpipe_data[instance];
e3d62d7e
CM
928 int channel;
929 int rc;
930 int cpu;
931
f3286a3a
CM
932 saw_channel = false;
933 gxio_mpipe_rules_init(&rules, &md->context);
e3d62d7e
CM
934
935 for (channel = 0; channel < TILE_NET_CHANNELS; channel++) {
f3286a3a 936 if (md->tile_net_devs_for_channel[channel] == NULL)
e3d62d7e
CM
937 continue;
938 if (!saw_channel) {
939 saw_channel = true;
f3286a3a
CM
940 gxio_mpipe_rules_begin(&rules, md->first_bucket,
941 md->num_buckets, NULL);
e3d62d7e
CM
942 gxio_mpipe_rules_set_headroom(&rules, NET_IP_ALIGN);
943 }
944 gxio_mpipe_rules_add_channel(&rules, channel);
945 }
946
947 /* NOTE: This can fail if there is no classifier.
948 * ISSUE: Can anything else cause it to fail?
949 */
950 rc = gxio_mpipe_rules_commit(&rules);
951 if (rc != 0) {
f3286a3a
CM
952 netdev_warn(dev, "gxio_mpipe_rules_commit: mpipe[%d] %d\n",
953 instance, rc);
e3d62d7e
CM
954 return -EIO;
955 }
956
5e7a54a2
CM
957 /* Update all cpus, sequentially (to protect "netif_napi_add()").
958 * We use on_each_cpu to handle the IPI mask or unmask.
959 */
960 if (!saw_channel)
f3286a3a
CM
961 on_each_cpu(disable_ingress_irq,
962 (void *)(long)(md->ingress_irq), 1);
5e7a54a2
CM
963 for_each_online_cpu(cpu) {
964 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
f3286a3a
CM
965
966 if (!info->mpipe[instance].has_iqueue)
5e7a54a2
CM
967 continue;
968 if (saw_channel) {
f3286a3a
CM
969 if (!info->mpipe[instance].napi_added) {
970 netif_napi_add(dev, &info->mpipe[instance].napi,
5e7a54a2 971 tile_net_poll, TILE_NET_WEIGHT);
f3286a3a 972 info->mpipe[instance].napi_added = true;
5e7a54a2 973 }
f3286a3a
CM
974 if (!info->mpipe[instance].napi_enabled) {
975 napi_enable(&info->mpipe[instance].napi);
976 info->mpipe[instance].napi_enabled = true;
5e7a54a2
CM
977 }
978 } else {
f3286a3a
CM
979 if (info->mpipe[instance].napi_enabled) {
980 napi_disable(&info->mpipe[instance].napi);
981 info->mpipe[instance].napi_enabled = false;
5e7a54a2
CM
982 }
983 /* FIXME: Drain the iqueue. */
984 }
985 }
986 if (saw_channel)
f3286a3a
CM
987 on_each_cpu(enable_ingress_irq,
988 (void *)(long)(md->ingress_irq), 1);
e3d62d7e
CM
989
990 /* HACK: Allow packets to flow in the simulator. */
991 if (saw_channel)
f3286a3a 992 sim_enable_mpipe_links(instance, -1);
e3d62d7e
CM
993
994 return 0;
995}
996
2628e8af
CM
997/* Initialize a buffer stack. */
998static int create_buffer_stack(struct net_device *dev,
999 int kind, size_t num_buffers)
e3d62d7e
CM
1000{
1001 pte_t hash_pte = pte_set_home((pte_t) { 0 }, PAGE_HOME_HASH);
f3286a3a
CM
1002 int instance = mpipe_instance(dev);
1003 struct mpipe_data *md = &mpipe_data[instance];
2628e8af 1004 size_t needed = gxio_mpipe_calc_buffer_stack_bytes(num_buffers);
f3286a3a 1005 int stack_idx = md->first_buffer_stack + kind;
2628e8af
CM
1006 void *va;
1007 int i, rc;
e3d62d7e 1008
2628e8af
CM
1009 /* Round up to 64KB and then use alloc_pages() so we get the
1010 * required 64KB alignment.
e3d62d7e 1011 */
f3286a3a
CM
1012 md->buffer_stack_bytes[kind] =
1013 ALIGN(needed, 64 * 1024);
e3d62d7e 1014
f3286a3a 1015 va = alloc_pages_exact(md->buffer_stack_bytes[kind], GFP_KERNEL);
2628e8af 1016 if (va == NULL) {
e3d62d7e 1017 netdev_err(dev,
2628e8af 1018 "Could not alloc %zd bytes for buffer stack %d\n",
f3286a3a 1019 md->buffer_stack_bytes[kind], kind);
e3d62d7e
CM
1020 return -ENOMEM;
1021 }
2628e8af
CM
1022
1023 /* Initialize the buffer stack. */
f3286a3a
CM
1024 rc = gxio_mpipe_init_buffer_stack(&md->context, stack_idx,
1025 buffer_size_enums[kind], va,
1026 md->buffer_stack_bytes[kind], 0);
e3d62d7e 1027 if (rc != 0) {
f3286a3a
CM
1028 netdev_err(dev, "gxio_mpipe_init_buffer_stack: mpipe[%d] %d\n",
1029 instance, rc);
1030 free_pages_exact(va, md->buffer_stack_bytes[kind]);
e3d62d7e
CM
1031 return rc;
1032 }
2628e8af 1033
f3286a3a 1034 md->buffer_stack_vas[kind] = va;
2628e8af 1035
f3286a3a 1036 rc = gxio_mpipe_register_client_memory(&md->context, stack_idx,
e3d62d7e
CM
1037 hash_pte, 0);
1038 if (rc != 0) {
f3286a3a
CM
1039 netdev_err(dev,
1040 "gxio_mpipe_register_client_memory: mpipe[%d] %d\n",
1041 instance, rc);
e3d62d7e
CM
1042 return rc;
1043 }
1044
2628e8af
CM
1045 /* Provide initial buffers. */
1046 for (i = 0; i < num_buffers; i++) {
f3286a3a 1047 if (!tile_net_provide_buffer(instance, kind)) {
2628e8af
CM
1048 netdev_err(dev, "Cannot allocate initial sk_bufs!\n");
1049 return -ENOMEM;
1050 }
e3d62d7e 1051 }
2628e8af
CM
1052
1053 return 0;
1054}
1055
1056/* Allocate and initialize mpipe buffer stacks, and register them in
1057 * the mPIPE TLBs, for small, large, and (possibly) jumbo packet sizes.
1058 * This routine supports tile_net_init_mpipe(), below.
1059 */
1060static int init_buffer_stacks(struct net_device *dev,
1061 int network_cpus_count)
1062{
1063 int num_kinds = MAX_KINDS - (jumbo_num == 0);
1064 size_t num_buffers;
1065 int rc;
f3286a3a
CM
1066 int instance = mpipe_instance(dev);
1067 struct mpipe_data *md = &mpipe_data[instance];
2628e8af
CM
1068
1069 /* Allocate the buffer stacks. */
f3286a3a 1070 rc = gxio_mpipe_alloc_buffer_stacks(&md->context, num_kinds, 0, 0);
2628e8af 1071 if (rc < 0) {
f3286a3a
CM
1072 netdev_err(dev,
1073 "gxio_mpipe_alloc_buffer_stacks: mpipe[%d] %d\n",
1074 instance, rc);
e3d62d7e
CM
1075 return rc;
1076 }
f3286a3a 1077 md->first_buffer_stack = rc;
e3d62d7e 1078
2628e8af
CM
1079 /* Enough small/large buffers to (normally) avoid buffer errors. */
1080 num_buffers =
1081 network_cpus_count * (IQUEUE_ENTRIES + TILE_NET_BATCH);
1082
1083 /* Allocate the small memory stack. */
1084 if (rc >= 0)
1085 rc = create_buffer_stack(dev, 0, num_buffers);
1086
1087 /* Allocate the large buffer stack. */
1088 if (rc >= 0)
1089 rc = create_buffer_stack(dev, 1, num_buffers);
1090
1091 /* Allocate the jumbo buffer stack if needed. */
1092 if (rc >= 0 && jumbo_num != 0)
1093 rc = create_buffer_stack(dev, 2, jumbo_num);
1094
1095 return rc;
e3d62d7e
CM
1096}
1097
1098/* Allocate per-cpu resources (memory for completions and idescs).
1099 * This routine supports tile_net_init_mpipe(), below.
1100 */
1101static int alloc_percpu_mpipe_resources(struct net_device *dev,
1102 int cpu, int ring)
1103{
1104 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
1105 int order, i, rc;
f3286a3a
CM
1106 int instance = mpipe_instance(dev);
1107 struct mpipe_data *md = &mpipe_data[instance];
e3d62d7e
CM
1108 struct page *page;
1109 void *addr;
1110
1111 /* Allocate the "comps". */
1112 order = get_order(COMPS_SIZE);
1113 page = homecache_alloc_pages(GFP_KERNEL, order, cpu);
1114 if (page == NULL) {
1115 netdev_err(dev, "Failed to alloc %zd bytes comps memory\n",
1116 COMPS_SIZE);
1117 return -ENOMEM;
1118 }
1119 addr = pfn_to_kaddr(page_to_pfn(page));
1120 memset(addr, 0, COMPS_SIZE);
1121 for (i = 0; i < TILE_NET_CHANNELS; i++)
f3286a3a 1122 info->mpipe[instance].comps_for_echannel[i] =
e3d62d7e
CM
1123 addr + i * sizeof(struct tile_net_comps);
1124
1125 /* If this is a network cpu, create an iqueue. */
1126 if (cpu_isset(cpu, network_cpus_map)) {
1127 order = get_order(NOTIF_RING_SIZE);
1128 page = homecache_alloc_pages(GFP_KERNEL, order, cpu);
1129 if (page == NULL) {
1130 netdev_err(dev,
1131 "Failed to alloc %zd bytes iqueue memory\n",
1132 NOTIF_RING_SIZE);
1133 return -ENOMEM;
1134 }
1135 addr = pfn_to_kaddr(page_to_pfn(page));
f3286a3a
CM
1136 rc = gxio_mpipe_iqueue_init(&info->mpipe[instance].iqueue,
1137 &md->context, ring++, addr,
1138 NOTIF_RING_SIZE, 0);
e3d62d7e
CM
1139 if (rc < 0) {
1140 netdev_err(dev,
1141 "gxio_mpipe_iqueue_init failed: %d\n", rc);
1142 return rc;
1143 }
f3286a3a 1144 info->mpipe[instance].has_iqueue = true;
e3d62d7e
CM
1145 }
1146
1147 return ring;
1148}
1149
1150/* Initialize NotifGroup and buckets.
1151 * This routine supports tile_net_init_mpipe(), below.
1152 */
1153static int init_notif_group_and_buckets(struct net_device *dev,
1154 int ring, int network_cpus_count)
1155{
1156 int group, rc;
f3286a3a
CM
1157 int instance = mpipe_instance(dev);
1158 struct mpipe_data *md = &mpipe_data[instance];
e3d62d7e
CM
1159
1160 /* Allocate one NotifGroup. */
f3286a3a 1161 rc = gxio_mpipe_alloc_notif_groups(&md->context, 1, 0, 0);
e3d62d7e 1162 if (rc < 0) {
f3286a3a
CM
1163 netdev_err(dev, "gxio_mpipe_alloc_notif_groups: mpipe[%d] %d\n",
1164 instance, rc);
e3d62d7e
CM
1165 return rc;
1166 }
1167 group = rc;
1168
1169 /* Initialize global num_buckets value. */
1170 if (network_cpus_count > 4)
f3286a3a 1171 md->num_buckets = 256;
e3d62d7e 1172 else if (network_cpus_count > 1)
f3286a3a 1173 md->num_buckets = 16;
e3d62d7e
CM
1174
1175 /* Allocate some buckets, and set global first_bucket value. */
f3286a3a 1176 rc = gxio_mpipe_alloc_buckets(&md->context, md->num_buckets, 0, 0);
e3d62d7e 1177 if (rc < 0) {
f3286a3a
CM
1178 netdev_err(dev, "gxio_mpipe_alloc_buckets: mpipe[%d] %d\n",
1179 instance, rc);
e3d62d7e
CM
1180 return rc;
1181 }
f3286a3a 1182 md->first_bucket = rc;
e3d62d7e
CM
1183
1184 /* Init group and buckets. */
1185 rc = gxio_mpipe_init_notif_group_and_buckets(
f3286a3a
CM
1186 &md->context, group, ring, network_cpus_count,
1187 md->first_bucket, md->num_buckets,
e3d62d7e
CM
1188 GXIO_MPIPE_BUCKET_STICKY_FLOW_LOCALITY);
1189 if (rc != 0) {
f3286a3a
CM
1190 netdev_err(dev, "gxio_mpipe_init_notif_group_and_buckets: "
1191 "mpipe[%d] %d\n", instance, rc);
e3d62d7e
CM
1192 return rc;
1193 }
1194
1195 return 0;
1196}
1197
1198/* Create an irq and register it, then activate the irq and request
1199 * interrupts on all cores. Note that "ingress_irq" being initialized
1200 * is how we know not to call tile_net_init_mpipe() again.
1201 * This routine supports tile_net_init_mpipe(), below.
1202 */
1203static int tile_net_setup_interrupts(struct net_device *dev)
1204{
f3286a3a
CM
1205 int cpu, rc, irq;
1206 int instance = mpipe_instance(dev);
1207 struct mpipe_data *md = &mpipe_data[instance];
1208
1209 irq = md->ingress_irq;
1210 if (irq < 0) {
1211 irq = create_irq();
1212 if (irq < 0) {
1213 netdev_err(dev,
1214 "create_irq failed: mpipe[%d] %d\n",
1215 instance, irq);
1216 return irq;
1217 }
1218 tile_irq_activate(irq, TILE_IRQ_PERCPU);
e3d62d7e 1219
f3286a3a
CM
1220 rc = request_irq(irq, tile_net_handle_ingress_irq,
1221 0, "tile_net", (void *)((uint64_t)instance));
1222
1223 if (rc != 0) {
1224 netdev_err(dev, "request_irq failed: mpipe[%d] %d\n",
1225 instance, rc);
1226 destroy_irq(irq);
1227 return rc;
1228 }
1229 md->ingress_irq = irq;
e3d62d7e
CM
1230 }
1231
1232 for_each_online_cpu(cpu) {
1233 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
f3286a3a
CM
1234 if (info->mpipe[instance].has_iqueue) {
1235 gxio_mpipe_request_notif_ring_interrupt(&md->context,
1236 cpu_x(cpu), cpu_y(cpu), KERNEL_PL, irq,
1237 info->mpipe[instance].iqueue.ring);
e3d62d7e
CM
1238 }
1239 }
1240
1241 return 0;
1242}
1243
1244/* Undo any state set up partially by a failed call to tile_net_init_mpipe. */
f3286a3a 1245static void tile_net_init_mpipe_fail(int instance)
e3d62d7e 1246{
2628e8af 1247 int kind, cpu;
f3286a3a 1248 struct mpipe_data *md = &mpipe_data[instance];
e3d62d7e
CM
1249
1250 /* Do cleanups that require the mpipe context first. */
2628e8af 1251 for (kind = 0; kind < MAX_KINDS; kind++) {
f3286a3a
CM
1252 if (md->buffer_stack_vas[kind] != NULL) {
1253 tile_net_pop_all_buffers(instance,
1254 md->first_buffer_stack +
1255 kind);
2628e8af
CM
1256 }
1257 }
e3d62d7e
CM
1258
1259 /* Destroy mpipe context so the hardware no longer owns any memory. */
f3286a3a 1260 gxio_mpipe_destroy(&md->context);
e3d62d7e
CM
1261
1262 for_each_online_cpu(cpu) {
1263 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
f3286a3a
CM
1264 free_pages(
1265 (unsigned long)(
1266 info->mpipe[instance].comps_for_echannel[0]),
1267 get_order(COMPS_SIZE));
1268 info->mpipe[instance].comps_for_echannel[0] = NULL;
1269 free_pages((unsigned long)(info->mpipe[instance].iqueue.idescs),
e3d62d7e 1270 get_order(NOTIF_RING_SIZE));
f3286a3a 1271 info->mpipe[instance].iqueue.idescs = NULL;
e3d62d7e
CM
1272 }
1273
2628e8af 1274 for (kind = 0; kind < MAX_KINDS; kind++) {
f3286a3a
CM
1275 if (md->buffer_stack_vas[kind] != NULL) {
1276 free_pages_exact(md->buffer_stack_vas[kind],
1277 md->buffer_stack_bytes[kind]);
1278 md->buffer_stack_vas[kind] = NULL;
2628e8af
CM
1279 }
1280 }
e3d62d7e 1281
f3286a3a
CM
1282 md->first_buffer_stack = -1;
1283 md->first_bucket = -1;
e3d62d7e
CM
1284}
1285
1286/* The first time any tilegx network device is opened, we initialize
1287 * the global mpipe state. If this step fails, we fail to open the
1288 * device, but if it succeeds, we never need to do it again, and since
1289 * tile_net can't be unloaded, we never undo it.
1290 *
1291 * Note that some resources in this path (buffer stack indices,
1292 * bindings from init_buffer_stack, etc.) are hypervisor resources
1293 * that are freed implicitly by gxio_mpipe_destroy().
1294 */
1295static int tile_net_init_mpipe(struct net_device *dev)
1296{
2628e8af 1297 int rc;
e3d62d7e
CM
1298 int cpu;
1299 int first_ring, ring;
f3286a3a
CM
1300 int instance = mpipe_instance(dev);
1301 struct mpipe_data *md = &mpipe_data[instance];
e3d62d7e
CM
1302 int network_cpus_count = cpus_weight(network_cpus_map);
1303
1304 if (!hash_default) {
1305 netdev_err(dev, "Networking requires hash_default!\n");
1306 return -EIO;
1307 }
1308
f3286a3a 1309 rc = gxio_mpipe_init(&md->context, instance);
e3d62d7e 1310 if (rc != 0) {
f3286a3a
CM
1311 netdev_err(dev, "gxio_mpipe_init: mpipe[%d] %d\n",
1312 instance, rc);
e3d62d7e
CM
1313 return -EIO;
1314 }
1315
1316 /* Set up the buffer stacks. */
2628e8af 1317 rc = init_buffer_stacks(dev, network_cpus_count);
e3d62d7e
CM
1318 if (rc != 0)
1319 goto fail;
1320
e3d62d7e 1321 /* Allocate one NotifRing for each network cpu. */
f3286a3a
CM
1322 rc = gxio_mpipe_alloc_notif_rings(&md->context,
1323 network_cpus_count, 0, 0);
e3d62d7e
CM
1324 if (rc < 0) {
1325 netdev_err(dev, "gxio_mpipe_alloc_notif_rings failed %d\n",
1326 rc);
1327 goto fail;
1328 }
1329
1330 /* Init NotifRings per-cpu. */
1331 first_ring = rc;
1332 ring = first_ring;
1333 for_each_online_cpu(cpu) {
1334 rc = alloc_percpu_mpipe_resources(dev, cpu, ring);
1335 if (rc < 0)
1336 goto fail;
1337 ring = rc;
1338 }
1339
1340 /* Initialize NotifGroup and buckets. */
1341 rc = init_notif_group_and_buckets(dev, first_ring, network_cpus_count);
1342 if (rc != 0)
1343 goto fail;
1344
1345 /* Create and enable interrupts. */
1346 rc = tile_net_setup_interrupts(dev);
1347 if (rc != 0)
1348 goto fail;
1349
9ab5ec59
CM
1350 /* Register PTP clock and set mPIPE timestamp, if configured. */
1351 register_ptp_clock(dev, md);
1352
e3d62d7e
CM
1353 return 0;
1354
1355fail:
f3286a3a 1356 tile_net_init_mpipe_fail(instance);
e3d62d7e
CM
1357 return rc;
1358}
1359
1360/* Create persistent egress info for a given egress channel.
1361 * Note that this may be shared between, say, "gbe0" and "xgbe0".
1362 * ISSUE: Defer header allocation until TSO is actually needed?
1363 */
1364static int tile_net_init_egress(struct net_device *dev, int echannel)
1365{
2628e8af 1366 static int ering = -1;
e3d62d7e
CM
1367 struct page *headers_page, *edescs_page, *equeue_page;
1368 gxio_mpipe_edesc_t *edescs;
1369 gxio_mpipe_equeue_t *equeue;
1370 unsigned char *headers;
1371 int headers_order, edescs_order, equeue_order;
1372 size_t edescs_size;
e3d62d7e 1373 int rc = -ENOMEM;
f3286a3a
CM
1374 int instance = mpipe_instance(dev);
1375 struct mpipe_data *md = &mpipe_data[instance];
e3d62d7e
CM
1376
1377 /* Only initialize once. */
f3286a3a 1378 if (md->egress_for_echannel[echannel].equeue != NULL)
e3d62d7e
CM
1379 return 0;
1380
1381 /* Allocate memory for the "headers". */
1382 headers_order = get_order(EQUEUE_ENTRIES * HEADER_BYTES);
1383 headers_page = alloc_pages(GFP_KERNEL, headers_order);
1384 if (headers_page == NULL) {
1385 netdev_warn(dev,
1386 "Could not alloc %zd bytes for TSO headers.\n",
1387 PAGE_SIZE << headers_order);
1388 goto fail;
1389 }
1390 headers = pfn_to_kaddr(page_to_pfn(headers_page));
1391
1392 /* Allocate memory for the "edescs". */
1393 edescs_size = EQUEUE_ENTRIES * sizeof(*edescs);
1394 edescs_order = get_order(edescs_size);
1395 edescs_page = alloc_pages(GFP_KERNEL, edescs_order);
1396 if (edescs_page == NULL) {
1397 netdev_warn(dev,
1398 "Could not alloc %zd bytes for eDMA ring.\n",
1399 edescs_size);
1400 goto fail_headers;
1401 }
1402 edescs = pfn_to_kaddr(page_to_pfn(edescs_page));
1403
1404 /* Allocate memory for the "equeue". */
1405 equeue_order = get_order(sizeof(*equeue));
1406 equeue_page = alloc_pages(GFP_KERNEL, equeue_order);
1407 if (equeue_page == NULL) {
1408 netdev_warn(dev,
1409 "Could not alloc %zd bytes for equeue info.\n",
1410 PAGE_SIZE << equeue_order);
1411 goto fail_edescs;
1412 }
1413 equeue = pfn_to_kaddr(page_to_pfn(equeue_page));
1414
2628e8af
CM
1415 /* Allocate an edma ring (using a one entry "free list"). */
1416 if (ering < 0) {
f3286a3a 1417 rc = gxio_mpipe_alloc_edma_rings(&md->context, 1, 0, 0);
2628e8af 1418 if (rc < 0) {
f3286a3a
CM
1419 netdev_warn(dev, "gxio_mpipe_alloc_edma_rings: "
1420 "mpipe[%d] %d\n", instance, rc);
2628e8af
CM
1421 goto fail_equeue;
1422 }
1423 ering = rc;
e3d62d7e 1424 }
e3d62d7e
CM
1425
1426 /* Initialize the equeue. */
f3286a3a 1427 rc = gxio_mpipe_equeue_init(equeue, &md->context, ering, echannel,
e3d62d7e
CM
1428 edescs, edescs_size, 0);
1429 if (rc != 0) {
f3286a3a
CM
1430 netdev_err(dev, "gxio_mpipe_equeue_init: mpipe[%d] %d\n",
1431 instance, rc);
e3d62d7e
CM
1432 goto fail_equeue;
1433 }
1434
2628e8af
CM
1435 /* Don't reuse the ering later. */
1436 ering = -1;
1437
1438 if (jumbo_num != 0) {
1439 /* Make sure "jumbo" packets can be egressed safely. */
1440 if (gxio_mpipe_equeue_set_snf_size(equeue, 10368) < 0) {
1441 /* ISSUE: There is no "gxio_mpipe_equeue_destroy()". */
1442 netdev_warn(dev, "Jumbo packets may not be egressed"
1443 " properly on channel %d\n", echannel);
1444 }
1445 }
1446
e3d62d7e 1447 /* Done. */
f3286a3a
CM
1448 md->egress_for_echannel[echannel].equeue = equeue;
1449 md->egress_for_echannel[echannel].headers = headers;
e3d62d7e
CM
1450 return 0;
1451
1452fail_equeue:
1453 __free_pages(equeue_page, equeue_order);
1454
1455fail_edescs:
1456 __free_pages(edescs_page, edescs_order);
1457
1458fail_headers:
1459 __free_pages(headers_page, headers_order);
1460
1461fail:
1462 return rc;
1463}
1464
1465/* Return channel number for a newly-opened link. */
1466static int tile_net_link_open(struct net_device *dev, gxio_mpipe_link_t *link,
1467 const char *link_name)
1468{
f3286a3a
CM
1469 int instance = mpipe_instance(dev);
1470 struct mpipe_data *md = &mpipe_data[instance];
1471 int rc = gxio_mpipe_link_open(link, &md->context, link_name, 0);
e3d62d7e 1472 if (rc < 0) {
f3286a3a
CM
1473 netdev_err(dev, "Failed to open '%s', mpipe[%d], %d\n",
1474 link_name, instance, rc);
e3d62d7e
CM
1475 return rc;
1476 }
2628e8af
CM
1477 if (jumbo_num != 0) {
1478 u32 attr = GXIO_MPIPE_LINK_RECEIVE_JUMBO;
1479 rc = gxio_mpipe_link_set_attr(link, attr, 1);
1480 if (rc != 0) {
1481 netdev_err(dev,
1482 "Cannot receive jumbo packets on '%s'\n",
1483 link_name);
1484 gxio_mpipe_link_close(link);
1485 return rc;
1486 }
1487 }
e3d62d7e
CM
1488 rc = gxio_mpipe_link_channel(link);
1489 if (rc < 0 || rc >= TILE_NET_CHANNELS) {
1490 netdev_err(dev, "gxio_mpipe_link_channel bad value: %d\n", rc);
1491 gxio_mpipe_link_close(link);
1492 return -EINVAL;
1493 }
1494 return rc;
1495}
1496
1497/* Help the kernel activate the given network interface. */
1498static int tile_net_open(struct net_device *dev)
1499{
1500 struct tile_net_priv *priv = netdev_priv(dev);
f3286a3a 1501 int cpu, rc, instance;
e3d62d7e
CM
1502
1503 mutex_lock(&tile_net_devs_for_channel_mutex);
1504
f3286a3a
CM
1505 /* Get the instance info. */
1506 rc = gxio_mpipe_link_instance(dev->name);
1155e964
WY
1507 if (rc < 0 || rc >= NR_MPIPE_MAX) {
1508 mutex_unlock(&tile_net_devs_for_channel_mutex);
f3286a3a 1509 return -EIO;
1155e964 1510 }
f3286a3a
CM
1511
1512 priv->instance = rc;
1513 instance = rc;
1514 if (!mpipe_data[rc].context.mmio_fast_base) {
1515 /* Do one-time initialization per instance the first time
1516 * any device is opened.
1517 */
e3d62d7e
CM
1518 rc = tile_net_init_mpipe(dev);
1519 if (rc != 0)
1520 goto fail;
1521 }
1522
1523 /* Determine if this is the "loopify" device. */
1524 if (unlikely((loopify_link_name != NULL) &&
1525 !strcmp(dev->name, loopify_link_name))) {
1526 rc = tile_net_link_open(dev, &priv->link, "loop0");
1527 if (rc < 0)
1528 goto fail;
1529 priv->channel = rc;
1530 rc = tile_net_link_open(dev, &priv->loopify_link, "loop1");
1531 if (rc < 0)
1532 goto fail;
1533 priv->loopify_channel = rc;
1534 priv->echannel = rc;
1535 } else {
1536 rc = tile_net_link_open(dev, &priv->link, dev->name);
1537 if (rc < 0)
1538 goto fail;
1539 priv->channel = rc;
1540 priv->echannel = rc;
1541 }
1542
1543 /* Initialize egress info (if needed). Once ever, per echannel. */
1544 rc = tile_net_init_egress(dev, priv->echannel);
1545 if (rc != 0)
1546 goto fail;
1547
f3286a3a 1548 mpipe_data[instance].tile_net_devs_for_channel[priv->channel] = dev;
e3d62d7e
CM
1549
1550 rc = tile_net_update(dev);
1551 if (rc != 0)
1552 goto fail;
1553
1554 mutex_unlock(&tile_net_devs_for_channel_mutex);
1555
1556 /* Initialize the transmit wake timer for this device for each cpu. */
1557 for_each_online_cpu(cpu) {
1558 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
1559 struct tile_net_tx_wake *tx_wake =
f3286a3a 1560 &info->mpipe[instance].tx_wake[priv->echannel];
e3d62d7e
CM
1561
1562 hrtimer_init(&tx_wake->timer, CLOCK_MONOTONIC,
1563 HRTIMER_MODE_REL);
9b4c341b 1564 tx_wake->tx_queue_idx = cpu;
e3d62d7e
CM
1565 tx_wake->timer.function = tile_net_handle_tx_wake_timer;
1566 tx_wake->dev = dev;
1567 }
1568
1569 for_each_online_cpu(cpu)
1570 netif_start_subqueue(dev, cpu);
1571 netif_carrier_on(dev);
1572 return 0;
1573
1574fail:
1575 if (priv->loopify_channel >= 0) {
1576 if (gxio_mpipe_link_close(&priv->loopify_link) != 0)
1577 netdev_warn(dev, "Failed to close loopify link!\n");
1578 priv->loopify_channel = -1;
1579 }
1580 if (priv->channel >= 0) {
1581 if (gxio_mpipe_link_close(&priv->link) != 0)
1582 netdev_warn(dev, "Failed to close link!\n");
1583 priv->channel = -1;
1584 }
1585 priv->echannel = -1;
f3286a3a 1586 mpipe_data[instance].tile_net_devs_for_channel[priv->channel] = NULL;
e3d62d7e
CM
1587 mutex_unlock(&tile_net_devs_for_channel_mutex);
1588
1589 /* Don't return raw gxio error codes to generic Linux. */
1590 return (rc > -512) ? rc : -EIO;
1591}
1592
1593/* Help the kernel deactivate the given network interface. */
1594static int tile_net_stop(struct net_device *dev)
1595{
1596 struct tile_net_priv *priv = netdev_priv(dev);
1597 int cpu;
f3286a3a
CM
1598 int instance = priv->instance;
1599 struct mpipe_data *md = &mpipe_data[instance];
e3d62d7e
CM
1600
1601 for_each_online_cpu(cpu) {
1602 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
1603 struct tile_net_tx_wake *tx_wake =
f3286a3a 1604 &info->mpipe[instance].tx_wake[priv->echannel];
e3d62d7e
CM
1605
1606 hrtimer_cancel(&tx_wake->timer);
1607 netif_stop_subqueue(dev, cpu);
1608 }
1609
1610 mutex_lock(&tile_net_devs_for_channel_mutex);
f3286a3a 1611 md->tile_net_devs_for_channel[priv->channel] = NULL;
e3d62d7e
CM
1612 (void)tile_net_update(dev);
1613 if (priv->loopify_channel >= 0) {
1614 if (gxio_mpipe_link_close(&priv->loopify_link) != 0)
1615 netdev_warn(dev, "Failed to close loopify link!\n");
1616 priv->loopify_channel = -1;
1617 }
1618 if (priv->channel >= 0) {
1619 if (gxio_mpipe_link_close(&priv->link) != 0)
1620 netdev_warn(dev, "Failed to close link!\n");
1621 priv->channel = -1;
1622 }
1623 priv->echannel = -1;
1624 mutex_unlock(&tile_net_devs_for_channel_mutex);
1625
1626 return 0;
1627}
1628
1629/* Determine the VA for a fragment. */
1630static inline void *tile_net_frag_buf(skb_frag_t *f)
1631{
1632 unsigned long pfn = page_to_pfn(skb_frag_page(f));
1633 return pfn_to_kaddr(pfn) + f->page_offset;
1634}
1635
1636/* Acquire a completion entry and an egress slot, or if we can't,
1637 * stop the queue and schedule the tx_wake timer.
1638 */
1639static s64 tile_net_equeue_try_reserve(struct net_device *dev,
9b4c341b 1640 int tx_queue_idx,
e3d62d7e
CM
1641 struct tile_net_comps *comps,
1642 gxio_mpipe_equeue_t *equeue,
1643 int num_edescs)
1644{
1645 /* Try to acquire a completion entry. */
1646 if (comps->comp_next - comps->comp_last < TILE_NET_MAX_COMPS - 1 ||
1647 tile_net_free_comps(equeue, comps, 32, false) != 0) {
1648
1649 /* Try to acquire an egress slot. */
1650 s64 slot = gxio_mpipe_equeue_try_reserve(equeue, num_edescs);
1651 if (slot >= 0)
1652 return slot;
1653
1654 /* Freeing some completions gives the equeue time to drain. */
1655 tile_net_free_comps(equeue, comps, TILE_NET_MAX_COMPS, false);
1656
1657 slot = gxio_mpipe_equeue_try_reserve(equeue, num_edescs);
1658 if (slot >= 0)
1659 return slot;
1660 }
1661
1662 /* Still nothing; give up and stop the queue for a short while. */
9b4c341b
CM
1663 netif_stop_subqueue(dev, tx_queue_idx);
1664 tile_net_schedule_tx_wake_timer(dev, tx_queue_idx);
e3d62d7e
CM
1665 return -1;
1666}
1667
1668/* Determine how many edesc's are needed for TSO.
1669 *
1670 * Sometimes, if "sendfile()" requires copying, we will be called with
1671 * "data" containing the header and payload, with "frags" being empty.
1672 * Sometimes, for example when using NFS over TCP, a single segment can
1673 * span 3 fragments. This requires special care.
1674 */
1675static int tso_count_edescs(struct sk_buff *skb)
1676{
1677 struct skb_shared_info *sh = skb_shinfo(skb);
8388546e 1678 unsigned int sh_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
3da3fff8 1679 unsigned int data_len = skb->len - sh_len;
e3d62d7e
CM
1680 unsigned int p_len = sh->gso_size;
1681 long f_id = -1; /* id of the current fragment */
3da3fff8
CM
1682 long f_size = skb_headlen(skb) - sh_len; /* current fragment size */
1683 long f_used = 0; /* bytes used from the current fragment */
e3d62d7e
CM
1684 long n; /* size of the current piece of payload */
1685 int num_edescs = 0;
1686 int segment;
1687
1688 for (segment = 0; segment < sh->gso_segs; segment++) {
1689
1690 unsigned int p_used = 0;
1691
1692 /* One edesc for header and for each piece of the payload. */
1693 for (num_edescs++; p_used < p_len; num_edescs++) {
1694
1695 /* Advance as needed. */
1696 while (f_used >= f_size) {
1697 f_id++;
3da3fff8 1698 f_size = skb_frag_size(&sh->frags[f_id]);
e3d62d7e
CM
1699 f_used = 0;
1700 }
1701
1702 /* Use bytes from the current fragment. */
1703 n = p_len - p_used;
1704 if (n > f_size - f_used)
1705 n = f_size - f_used;
1706 f_used += n;
1707 p_used += n;
1708 }
1709
1710 /* The last segment may be less than gso_size. */
1711 data_len -= p_len;
1712 if (data_len < p_len)
1713 p_len = data_len;
1714 }
1715
1716 return num_edescs;
1717}
1718
2c7d04a9 1719/* Prepare modified copies of the skbuff headers. */
e3d62d7e
CM
1720static void tso_headers_prepare(struct sk_buff *skb, unsigned char *headers,
1721 s64 slot)
1722{
1723 struct skb_shared_info *sh = skb_shinfo(skb);
1724 struct iphdr *ih;
2c7d04a9 1725 struct ipv6hdr *ih6;
e3d62d7e 1726 struct tcphdr *th;
8388546e 1727 unsigned int sh_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
3da3fff8 1728 unsigned int data_len = skb->len - sh_len;
e3d62d7e 1729 unsigned char *data = skb->data;
8388546e 1730 unsigned int ih_off, th_off, p_len;
444fa88a
CM
1731 unsigned int isum_seed, tsum_seed, seq;
1732 unsigned int uninitialized_var(id);
2c7d04a9 1733 int is_ipv6;
e3d62d7e 1734 long f_id = -1; /* id of the current fragment */
3da3fff8
CM
1735 long f_size = skb_headlen(skb) - sh_len; /* current fragment size */
1736 long f_used = 0; /* bytes used from the current fragment */
e3d62d7e
CM
1737 long n; /* size of the current piece of payload */
1738 int segment;
1739
1740 /* Locate original headers and compute various lengths. */
2c7d04a9
CM
1741 is_ipv6 = skb_is_gso_v6(skb);
1742 if (is_ipv6) {
1743 ih6 = ipv6_hdr(skb);
1744 ih_off = skb_network_offset(skb);
1745 } else {
1746 ih = ip_hdr(skb);
1747 ih_off = skb_network_offset(skb);
1748 isum_seed = ((0xFFFF - ih->check) +
1749 (0xFFFF - ih->tot_len) +
1750 (0xFFFF - ih->id));
1751 id = ntohs(ih->id);
1752 }
1753
e3d62d7e 1754 th = tcp_hdr(skb);
e3d62d7e 1755 th_off = skb_transport_offset(skb);
e3d62d7e
CM
1756 p_len = sh->gso_size;
1757
3da3fff8 1758 tsum_seed = th->check + (0xFFFF ^ htons(skb->len));
e3d62d7e
CM
1759 seq = ntohl(th->seq);
1760
1761 /* Prepare all the headers. */
1762 for (segment = 0; segment < sh->gso_segs; segment++) {
1763 unsigned char *buf;
1764 unsigned int p_used = 0;
1765
1766 /* Copy to the header memory for this segment. */
1767 buf = headers + (slot % EQUEUE_ENTRIES) * HEADER_BYTES +
1768 NET_IP_ALIGN;
1769 memcpy(buf, data, sh_len);
1770
1771 /* Update copied ip header. */
2c7d04a9
CM
1772 if (is_ipv6) {
1773 ih6 = (struct ipv6hdr *)(buf + ih_off);
1774 ih6->payload_len = htons(sh_len + p_len - ih_off -
1775 sizeof(*ih6));
1776 } else {
1777 ih = (struct iphdr *)(buf + ih_off);
1778 ih->tot_len = htons(sh_len + p_len - ih_off);
444fa88a 1779 ih->id = htons(id++);
2c7d04a9
CM
1780 ih->check = csum_long(isum_seed + ih->tot_len +
1781 ih->id) ^ 0xffff;
1782 }
e3d62d7e
CM
1783
1784 /* Update copied tcp header. */
1785 th = (struct tcphdr *)(buf + th_off);
1786 th->seq = htonl(seq);
1787 th->check = csum_long(tsum_seed + htons(sh_len + p_len));
1788 if (segment != sh->gso_segs - 1) {
1789 th->fin = 0;
1790 th->psh = 0;
1791 }
1792
1793 /* Skip past the header. */
1794 slot++;
1795
1796 /* Skip past the payload. */
1797 while (p_used < p_len) {
1798
1799 /* Advance as needed. */
1800 while (f_used >= f_size) {
1801 f_id++;
3da3fff8 1802 f_size = skb_frag_size(&sh->frags[f_id]);
e3d62d7e
CM
1803 f_used = 0;
1804 }
1805
1806 /* Use bytes from the current fragment. */
1807 n = p_len - p_used;
1808 if (n > f_size - f_used)
1809 n = f_size - f_used;
1810 f_used += n;
1811 p_used += n;
1812
1813 slot++;
1814 }
1815
e3d62d7e
CM
1816 seq += p_len;
1817
1818 /* The last segment may be less than gso_size. */
1819 data_len -= p_len;
1820 if (data_len < p_len)
1821 p_len = data_len;
1822 }
1823
1824 /* Flush the headers so they are ready for hardware DMA. */
1825 wmb();
1826}
1827
1828/* Pass all the data to mpipe for egress. */
1829static void tso_egress(struct net_device *dev, gxio_mpipe_equeue_t *equeue,
1830 struct sk_buff *skb, unsigned char *headers, s64 slot)
1831{
e3d62d7e 1832 struct skb_shared_info *sh = skb_shinfo(skb);
f3286a3a
CM
1833 int instance = mpipe_instance(dev);
1834 struct mpipe_data *md = &mpipe_data[instance];
8388546e 1835 unsigned int sh_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
3da3fff8 1836 unsigned int data_len = skb->len - sh_len;
e3d62d7e
CM
1837 unsigned int p_len = sh->gso_size;
1838 gxio_mpipe_edesc_t edesc_head = { { 0 } };
1839 gxio_mpipe_edesc_t edesc_body = { { 0 } };
1840 long f_id = -1; /* id of the current fragment */
3da3fff8
CM
1841 long f_size = skb_headlen(skb) - sh_len; /* current fragment size */
1842 long f_used = 0; /* bytes used from the current fragment */
1843 void *f_data = skb->data + sh_len;
e3d62d7e
CM
1844 long n; /* size of the current piece of payload */
1845 unsigned long tx_packets = 0, tx_bytes = 0;
8388546e 1846 unsigned int csum_start;
e3d62d7e
CM
1847 int segment;
1848
1849 /* Prepare to egress the headers: set up header edesc. */
1850 csum_start = skb_checksum_start_offset(skb);
e3d62d7e
CM
1851 edesc_head.csum = 1;
1852 edesc_head.csum_start = csum_start;
1853 edesc_head.csum_dest = csum_start + skb->csum_offset;
1854 edesc_head.xfer_size = sh_len;
1855
1856 /* This is only used to specify the TLB. */
f3286a3a
CM
1857 edesc_head.stack_idx = md->first_buffer_stack;
1858 edesc_body.stack_idx = md->first_buffer_stack;
e3d62d7e
CM
1859
1860 /* Egress all the edescs. */
1861 for (segment = 0; segment < sh->gso_segs; segment++) {
e3d62d7e
CM
1862 unsigned char *buf;
1863 unsigned int p_used = 0;
1864
1865 /* Egress the header. */
1866 buf = headers + (slot % EQUEUE_ENTRIES) * HEADER_BYTES +
1867 NET_IP_ALIGN;
1868 edesc_head.va = va_to_tile_io_addr(buf);
1869 gxio_mpipe_equeue_put_at(equeue, edesc_head, slot);
1870 slot++;
1871
1872 /* Egress the payload. */
1873 while (p_used < p_len) {
3da3fff8 1874 void *va;
e3d62d7e
CM
1875
1876 /* Advance as needed. */
1877 while (f_used >= f_size) {
1878 f_id++;
3da3fff8 1879 f_size = skb_frag_size(&sh->frags[f_id]);
8388546e 1880 f_data = tile_net_frag_buf(&sh->frags[f_id]);
3da3fff8 1881 f_used = 0;
e3d62d7e
CM
1882 }
1883
3da3fff8
CM
1884 va = f_data + f_used;
1885
e3d62d7e
CM
1886 /* Use bytes from the current fragment. */
1887 n = p_len - p_used;
1888 if (n > f_size - f_used)
1889 n = f_size - f_used;
1890 f_used += n;
1891 p_used += n;
1892
1893 /* Egress a piece of the payload. */
3da3fff8 1894 edesc_body.va = va_to_tile_io_addr(va);
e3d62d7e
CM
1895 edesc_body.xfer_size = n;
1896 edesc_body.bound = !(p_used < p_len);
1897 gxio_mpipe_equeue_put_at(equeue, edesc_body, slot);
1898 slot++;
1899 }
1900
1901 tx_packets++;
1902 tx_bytes += sh_len + p_len;
1903
1904 /* The last segment may be less than gso_size. */
1905 data_len -= p_len;
1906 if (data_len < p_len)
1907 p_len = data_len;
1908 }
1909
1910 /* Update stats. */
ad018185
CM
1911 tile_net_stats_add(tx_packets, &dev->stats.tx_packets);
1912 tile_net_stats_add(tx_bytes, &dev->stats.tx_bytes);
e3d62d7e
CM
1913}
1914
1915/* Do "TSO" handling for egress.
1916 *
1917 * Normally drivers set NETIF_F_TSO only to support hardware TSO;
1918 * otherwise the stack uses scatter-gather to implement GSO in software.
1919 * On our testing, enabling GSO support (via NETIF_F_SG) drops network
1920 * performance down to around 7.5 Gbps on the 10G interfaces, although
1921 * also dropping cpu utilization way down, to under 8%. But
1922 * implementing "TSO" in the driver brings performance back up to line
1923 * rate, while dropping cpu usage even further, to less than 4%. In
1924 * practice, profiling of GSO shows that skb_segment() is what causes
1925 * the performance overheads; we benefit in the driver from using
1926 * preallocated memory to duplicate the TCP/IP headers.
1927 */
1928static int tile_net_tx_tso(struct sk_buff *skb, struct net_device *dev)
1929{
1930 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
1931 struct tile_net_priv *priv = netdev_priv(dev);
1932 int channel = priv->echannel;
f3286a3a
CM
1933 int instance = priv->instance;
1934 struct mpipe_data *md = &mpipe_data[instance];
1935 struct tile_net_egress *egress = &md->egress_for_echannel[channel];
1936 struct tile_net_comps *comps =
1937 info->mpipe[instance].comps_for_echannel[channel];
e3d62d7e
CM
1938 gxio_mpipe_equeue_t *equeue = egress->equeue;
1939 unsigned long irqflags;
1940 int num_edescs;
1941 s64 slot;
1942
1943 /* Determine how many mpipe edesc's are needed. */
1944 num_edescs = tso_count_edescs(skb);
1945
1946 local_irq_save(irqflags);
1947
1948 /* Try to acquire a completion entry and an egress slot. */
9b4c341b
CM
1949 slot = tile_net_equeue_try_reserve(dev, skb->queue_mapping, comps,
1950 equeue, num_edescs);
e3d62d7e
CM
1951 if (slot < 0) {
1952 local_irq_restore(irqflags);
1953 return NETDEV_TX_BUSY;
1954 }
1955
1956 /* Set up copies of header data properly. */
1957 tso_headers_prepare(skb, egress->headers, slot);
1958
1959 /* Actually pass the data to the network hardware. */
1960 tso_egress(dev, equeue, skb, egress->headers, slot);
1961
1962 /* Add a completion record. */
1963 add_comp(equeue, comps, slot + num_edescs - 1, skb);
1964
1965 local_irq_restore(irqflags);
1966
1967 /* Make sure the egress timer is scheduled. */
1968 tile_net_schedule_egress_timer();
1969
1970 return NETDEV_TX_OK;
1971}
1972
1973/* Analyze the body and frags for a transmit request. */
1974static unsigned int tile_net_tx_frags(struct frag *frags,
1975 struct sk_buff *skb,
1976 void *b_data, unsigned int b_len)
1977{
1978 unsigned int i, n = 0;
1979
1980 struct skb_shared_info *sh = skb_shinfo(skb);
1981
1982 if (b_len != 0) {
1983 frags[n].buf = b_data;
1984 frags[n++].length = b_len;
1985 }
1986
1987 for (i = 0; i < sh->nr_frags; i++) {
1988 skb_frag_t *f = &sh->frags[i];
1989 frags[n].buf = tile_net_frag_buf(f);
1990 frags[n++].length = skb_frag_size(f);
1991 }
1992
1993 return n;
1994}
1995
1996/* Help the kernel transmit a packet. */
1997static int tile_net_tx(struct sk_buff *skb, struct net_device *dev)
1998{
1999 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
2000 struct tile_net_priv *priv = netdev_priv(dev);
f3286a3a
CM
2001 int instance = priv->instance;
2002 struct mpipe_data *md = &mpipe_data[instance];
2003 struct tile_net_egress *egress =
2004 &md->egress_for_echannel[priv->echannel];
e3d62d7e
CM
2005 gxio_mpipe_equeue_t *equeue = egress->equeue;
2006 struct tile_net_comps *comps =
f3286a3a 2007 info->mpipe[instance].comps_for_echannel[priv->echannel];
e3d62d7e
CM
2008 unsigned int len = skb->len;
2009 unsigned char *data = skb->data;
2010 unsigned int num_edescs;
2011 struct frag frags[MAX_FRAGS];
2012 gxio_mpipe_edesc_t edescs[MAX_FRAGS];
2013 unsigned long irqflags;
2014 gxio_mpipe_edesc_t edesc = { { 0 } };
2015 unsigned int i;
2016 s64 slot;
2017
2018 if (skb_is_gso(skb))
2019 return tile_net_tx_tso(skb, dev);
2020
2021 num_edescs = tile_net_tx_frags(frags, skb, data, skb_headlen(skb));
2022
2023 /* This is only used to specify the TLB. */
f3286a3a 2024 edesc.stack_idx = md->first_buffer_stack;
e3d62d7e
CM
2025
2026 /* Prepare the edescs. */
2027 for (i = 0; i < num_edescs; i++) {
2028 edesc.xfer_size = frags[i].length;
2029 edesc.va = va_to_tile_io_addr(frags[i].buf);
2030 edescs[i] = edesc;
2031 }
2032
2033 /* Mark the final edesc. */
2034 edescs[num_edescs - 1].bound = 1;
2035
2036 /* Add checksum info to the initial edesc, if needed. */
2037 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2038 unsigned int csum_start = skb_checksum_start_offset(skb);
2039 edescs[0].csum = 1;
2040 edescs[0].csum_start = csum_start;
2041 edescs[0].csum_dest = csum_start + skb->csum_offset;
2042 }
2043
2044 local_irq_save(irqflags);
2045
2046 /* Try to acquire a completion entry and an egress slot. */
9b4c341b
CM
2047 slot = tile_net_equeue_try_reserve(dev, skb->queue_mapping, comps,
2048 equeue, num_edescs);
e3d62d7e
CM
2049 if (slot < 0) {
2050 local_irq_restore(irqflags);
2051 return NETDEV_TX_BUSY;
2052 }
2053
2054 for (i = 0; i < num_edescs; i++)
2055 gxio_mpipe_equeue_put_at(equeue, edescs[i], slot++);
2056
9ab5ec59
CM
2057 /* Store TX timestamp if needed. */
2058 tile_tx_timestamp(skb, instance);
2059
e3d62d7e
CM
2060 /* Add a completion record. */
2061 add_comp(equeue, comps, slot - 1, skb);
2062
2063 /* NOTE: Use ETH_ZLEN for short packets (e.g. 42 < 60). */
ad018185 2064 tile_net_stats_add(1, &dev->stats.tx_packets);
e3d62d7e 2065 tile_net_stats_add(max_t(unsigned int, len, ETH_ZLEN),
ad018185 2066 &dev->stats.tx_bytes);
e3d62d7e
CM
2067
2068 local_irq_restore(irqflags);
2069
2070 /* Make sure the egress timer is scheduled. */
2071 tile_net_schedule_egress_timer();
2072
2073 return NETDEV_TX_OK;
2074}
2075
2076/* Return subqueue id on this core (one per core). */
f663dd9a 2077static u16 tile_net_select_queue(struct net_device *dev, struct sk_buff *skb,
99932d4f 2078 void *accel_priv, select_queue_fallback_t fallback)
e3d62d7e
CM
2079{
2080 return smp_processor_id();
2081}
2082
2083/* Deal with a transmit timeout. */
2084static void tile_net_tx_timeout(struct net_device *dev)
2085{
2086 int cpu;
2087
2088 for_each_online_cpu(cpu)
2089 netif_wake_subqueue(dev, cpu);
2090}
2091
2092/* Ioctl commands. */
2093static int tile_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2094{
9ab5ec59 2095 if (cmd == SIOCSHWTSTAMP)
6ab96d1e
BH
2096 return tile_hwtstamp_set(dev, rq);
2097 if (cmd == SIOCGHWTSTAMP)
2098 return tile_hwtstamp_get(dev, rq);
9ab5ec59 2099
e3d62d7e
CM
2100 return -EOPNOTSUPP;
2101}
2102
e3d62d7e
CM
2103/* Change the MTU. */
2104static int tile_net_change_mtu(struct net_device *dev, int new_mtu)
2105{
2628e8af
CM
2106 if (new_mtu < 68)
2107 return -EINVAL;
2108 if (new_mtu > ((jumbo_num != 0) ? 9000 : 1500))
e3d62d7e
CM
2109 return -EINVAL;
2110 dev->mtu = new_mtu;
2111 return 0;
2112}
2113
2114/* Change the Ethernet address of the NIC.
2115 *
2116 * The hypervisor driver does not support changing MAC address. However,
2117 * the hardware does not do anything with the MAC address, so the address
2118 * which gets used on outgoing packets, and which is accepted on incoming
2119 * packets, is completely up to us.
2120 *
2121 * Returns 0 on success, negative on failure.
2122 */
2123static int tile_net_set_mac_address(struct net_device *dev, void *p)
2124{
2125 struct sockaddr *addr = p;
2126
2127 if (!is_valid_ether_addr(addr->sa_data))
2128 return -EINVAL;
2129 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2130 return 0;
2131}
2132
2133#ifdef CONFIG_NET_POLL_CONTROLLER
2134/* Polling 'interrupt' - used by things like netconsole to send skbs
2135 * without having to re-enable interrupts. It's not called while
2136 * the interrupt routine is executing.
2137 */
2138static void tile_net_netpoll(struct net_device *dev)
2139{
f3286a3a
CM
2140 int instance = mpipe_instance(dev);
2141 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
2142 struct mpipe_data *md = &mpipe_data[instance];
2143
2144 disable_percpu_irq(md->ingress_irq);
2145 napi_schedule(&info->mpipe[instance].napi);
2146 enable_percpu_irq(md->ingress_irq, 0);
e3d62d7e
CM
2147}
2148#endif
2149
2150static const struct net_device_ops tile_net_ops = {
2151 .ndo_open = tile_net_open,
2152 .ndo_stop = tile_net_stop,
2153 .ndo_start_xmit = tile_net_tx,
2154 .ndo_select_queue = tile_net_select_queue,
2155 .ndo_do_ioctl = tile_net_ioctl,
e3d62d7e
CM
2156 .ndo_change_mtu = tile_net_change_mtu,
2157 .ndo_tx_timeout = tile_net_tx_timeout,
2158 .ndo_set_mac_address = tile_net_set_mac_address,
2159#ifdef CONFIG_NET_POLL_CONTROLLER
2160 .ndo_poll_controller = tile_net_netpoll,
2161#endif
2162};
2163
2164/* The setup function.
2165 *
2166 * This uses ether_setup() to assign various fields in dev, including
2167 * setting IFF_BROADCAST and IFF_MULTICAST, then sets some extra fields.
2168 */
2169static void tile_net_setup(struct net_device *dev)
2170{
a8eaed55
CM
2171 netdev_features_t features = 0;
2172
e3d62d7e
CM
2173 ether_setup(dev);
2174 dev->netdev_ops = &tile_net_ops;
2175 dev->watchdog_timeo = TILE_NET_TIMEOUT;
e3d62d7e 2176 dev->mtu = 1500;
a8eaed55 2177
a8eaed55
CM
2178 features |= NETIF_F_HW_CSUM;
2179 features |= NETIF_F_SG;
2180 features |= NETIF_F_TSO;
2c7d04a9 2181 features |= NETIF_F_TSO6;
a8eaed55
CM
2182
2183 dev->hw_features |= features;
2184 dev->vlan_features |= features;
2185 dev->features |= features;
e3d62d7e
CM
2186}
2187
2188/* Allocate the device structure, register the device, and obtain the
2189 * MAC address from the hypervisor.
2190 */
2191static void tile_net_dev_init(const char *name, const uint8_t *mac)
2192{
2193 int ret;
2194 int i;
2195 int nz_addr = 0;
2196 struct net_device *dev;
2197 struct tile_net_priv *priv;
2198
2199 /* HACK: Ignore "loop" links. */
2200 if (strncmp(name, "loop", 4) == 0)
2201 return;
2202
2203 /* Allocate the device structure. Normally, "name" is a
2204 * template, instantiated by register_netdev(), but not for us.
2205 */
2206 dev = alloc_netdev_mqs(sizeof(*priv), name, tile_net_setup,
2207 NR_CPUS, 1);
2208 if (!dev) {
2209 pr_err("alloc_netdev_mqs(%s) failed\n", name);
2210 return;
2211 }
2212
2213 /* Initialize "priv". */
2214 priv = netdev_priv(dev);
2215 memset(priv, 0, sizeof(*priv));
2216 priv->dev = dev;
2217 priv->channel = -1;
2218 priv->loopify_channel = -1;
2219 priv->echannel = -1;
9ab5ec59 2220 init_ptp_dev(priv);
e3d62d7e
CM
2221
2222 /* Get the MAC address and set it in the device struct; this must
2223 * be done before the device is opened. If the MAC is all zeroes,
2224 * we use a random address, since we're probably on the simulator.
2225 */
2226 for (i = 0; i < 6; i++)
2227 nz_addr |= mac[i];
2228
2229 if (nz_addr) {
d458cdf7 2230 memcpy(dev->dev_addr, mac, ETH_ALEN);
e3d62d7e
CM
2231 dev->addr_len = 6;
2232 } else {
c8ab13fb 2233 eth_hw_addr_random(dev);
e3d62d7e
CM
2234 }
2235
2236 /* Register the network device. */
2237 ret = register_netdev(dev);
2238 if (ret) {
2239 netdev_err(dev, "register_netdev failed %d\n", ret);
2240 free_netdev(dev);
2241 return;
2242 }
2243}
2244
2245/* Per-cpu module initialization. */
2246static void tile_net_init_module_percpu(void *unused)
2247{
2248 struct tile_net_info *info = &__get_cpu_var(per_cpu_info);
2249 int my_cpu = smp_processor_id();
f3286a3a 2250 int instance;
e3d62d7e 2251
f3286a3a
CM
2252 for (instance = 0; instance < NR_MPIPE_MAX; instance++) {
2253 info->mpipe[instance].has_iqueue = false;
2254 info->mpipe[instance].instance = instance;
2255 }
e3d62d7e
CM
2256 info->my_cpu = my_cpu;
2257
2258 /* Initialize the egress timer. */
2259 hrtimer_init(&info->egress_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2260 info->egress_timer.function = tile_net_handle_egress_timer;
2261}
2262
2263/* Module initialization. */
2264static int __init tile_net_init_module(void)
2265{
2266 int i;
2267 char name[GXIO_MPIPE_LINK_NAME_LEN];
2268 uint8_t mac[6];
2269
2270 pr_info("Tilera Network Driver\n");
2271
f3286a3a
CM
2272 BUILD_BUG_ON(NR_MPIPE_MAX != 2);
2273
e3d62d7e
CM
2274 mutex_init(&tile_net_devs_for_channel_mutex);
2275
2276 /* Initialize each CPU. */
2277 on_each_cpu(tile_net_init_module_percpu, NULL, 1);
2278
2279 /* Find out what devices we have, and initialize them. */
2280 for (i = 0; gxio_mpipe_link_enumerate_mac(i, name, mac) >= 0; i++)
2281 tile_net_dev_init(name, mac);
2282
2283 if (!network_cpus_init())
2284 network_cpus_map = *cpu_online_mask;
2285
2286 return 0;
2287}
2288
2289module_init(tile_net_init_module);
This page took 0.792448 seconds and 5 git commands to generate.