blob: bea8cd2bb56cf85b92132ea69ea90f08e6dfc5f7 [file] [log] [blame]
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001/*
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>
Chris Metcalf2c7d04a2013-08-01 11:36:42 -040039#include <linux/ipv6.h>
Chris Metcalfe3d62d72012-06-07 10:45:02 +000040#include <linux/tcp.h>
Chris Metcalf9ab5ec52013-08-01 11:36:42 -040041#include <linux/net_tstamp.h>
42#include <linux/ptp_clock_kernel.h>
Chris Metcalfe3d62d72012-06-07 10:45:02 +000043
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
Chris Metcalf2628e8a2013-08-01 11:36:42 -040082/* The "kinds" of buffer stacks (small/large/jumbo). */
83#define MAX_KINDS 3
84
Chris Metcalfe3d62d72012-06-07 10:45:02 +000085/* 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 {
Chris Metcalf9b4c3412012-07-01 14:43:47 -0400132 int tx_queue_idx;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000133 struct hrtimer timer;
134 struct net_device *dev;
135};
136
137/* Info for a specific cpu. */
138struct tile_net_info {
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000139 /* Our cpu. */
140 int my_cpu;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000141 /* A timer for handling egress completions. */
142 struct hrtimer egress_timer;
143 /* True if "egress_timer" is scheduled. */
144 bool egress_timer_scheduled;
Chris Metcalff3286a32013-08-01 11:36:42 -0400145 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];
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000164};
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;
Chris Metcalff3286a32013-08-01 11:36:42 -0400188 /* mPIPE instance, 0 or 1. */
189 int instance;
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400190 /* The timestamp config. */
191 struct hwtstamp_config stamp_cfg;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000192};
193
Chris Metcalff3286a32013-08-01 11:36:42 -0400194static struct mpipe_data {
195 /* The ingress irq. */
196 int ingress_irq;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000197
Chris Metcalff3286a32013-08-01 11:36:42 -0400198 /* 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
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400230 /* 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;
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400236
Chris Metcalff3286a32013-08-01 11:36:42 -0400237} 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};
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000245
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
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000252
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400253/* The buffer size enums for each buffer stack.
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000254 * See arch/tile/include/gxio/mpipe.h for the set of possible values.
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400255 * We avoid the "10384" size because it can induce "false chaining"
256 * on "cut-through" jumbo packets.
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000257 */
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400258static 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};
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000263
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000264/* 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
Chris Metcalf4aa026442013-08-01 11:36:42 -0400270/* If "tile_net.loopify=LINK" was specified, this is "LINK". */
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000271static char *loopify_link_name;
272
Chris Metcalf4aa026442013-08-01 11:36:42 -0400273/* If "tile_net.custom" was specified, this is true. */
274static bool custom_flag;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000275
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400276/* If "tile_net.jumbo=NUM" was specified, this is "NUM". */
277static uint jumbo_num;
278
Chris Metcalff3286a32013-08-01 11:36:42 -0400279/* 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
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000286/* 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{
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000295 int rc;
296
297 if (network_cpus_string == NULL)
298 return false;
299
300 rc = cpulist_parse_crop(network_cpus_string, &network_cpus_map);
301 if (rc != 0) {
302 pr_warn("tile_net.cpus=%s: malformed cpu list\n",
303 network_cpus_string);
304 return false;
305 }
306
307 /* Remove dedicated cpus. */
308 cpumask_and(&network_cpus_map, &network_cpus_map, cpu_possible_mask);
309
310 if (cpumask_empty(&network_cpus_map)) {
311 pr_warn("Ignoring empty tile_net.cpus='%s'.\n",
312 network_cpus_string);
313 return false;
314 }
315
Tejun Heo839b2682015-02-13 14:37:09 -0800316 pr_info("Linux network CPUs: %*pbl\n",
317 cpumask_pr_args(&network_cpus_map));
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000318 return true;
319}
320
321module_param_named(cpus, network_cpus_string, charp, 0444);
322MODULE_PARM_DESC(cpus, "cpulist of cores that handle network interrupts");
323
324/* The "tile_net.loopify=LINK" argument causes the named device to
325 * actually use "loop0" for ingress, and "loop1" for egress. This
326 * allows an app to sit between the actual link and linux, passing
327 * (some) packets along to linux, and forwarding (some) packets sent
328 * out by linux.
329 */
330module_param_named(loopify, loopify_link_name, charp, 0444);
331MODULE_PARM_DESC(loopify, "name the device to use loop0/1 for ingress/egress");
332
333/* The "tile_net.custom" argument causes us to ignore the "conventional"
334 * classifier metadata, in particular, the "l2_offset".
335 */
Chris Metcalf4aa026442013-08-01 11:36:42 -0400336module_param_named(custom, custom_flag, bool, 0444);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000337MODULE_PARM_DESC(custom, "indicates a (heavily) customized classifier");
338
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400339/* The "tile_net.jumbo" argument causes us to support "jumbo" packets,
340 * and to allocate the given number of "jumbo" buffers.
341 */
342module_param_named(jumbo, jumbo_num, uint, 0444);
343MODULE_PARM_DESC(jumbo, "the number of buffers to support jumbo packets");
344
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000345/* Atomically update a statistics field.
346 * Note that on TILE-Gx, this operation is fire-and-forget on the
347 * issuing core (single-cycle dispatch) and takes only a few cycles
348 * longer than a regular store when the request reaches the home cache.
349 * No expensive bus management overhead is required.
350 */
351static void tile_net_stats_add(unsigned long value, unsigned long *field)
352{
353 BUILD_BUG_ON(sizeof(atomic_long_t) != sizeof(unsigned long));
354 atomic_long_add(value, (atomic_long_t *)field);
355}
356
357/* Allocate and push a buffer. */
Chris Metcalff3286a32013-08-01 11:36:42 -0400358static bool tile_net_provide_buffer(int instance, int kind)
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000359{
Chris Metcalff3286a32013-08-01 11:36:42 -0400360 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400361 gxio_mpipe_buffer_size_enum_t bse = buffer_size_enums[kind];
362 size_t bs = gxio_mpipe_buffer_size_enum_to_buffer_size(bse);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000363 const unsigned long buffer_alignment = 128;
364 struct sk_buff *skb;
365 int len;
366
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400367 len = sizeof(struct sk_buff **) + buffer_alignment + bs;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000368 skb = dev_alloc_skb(len);
369 if (skb == NULL)
370 return false;
371
372 /* Make room for a back-pointer to 'skb' and guarantee alignment. */
373 skb_reserve(skb, sizeof(struct sk_buff **));
374 skb_reserve(skb, -(long)skb->data & (buffer_alignment - 1));
375
376 /* Save a back-pointer to 'skb'. */
377 *(struct sk_buff **)(skb->data - sizeof(struct sk_buff **)) = skb;
378
379 /* Make sure "skb" and the back-pointer have been flushed. */
380 wmb();
381
Chris Metcalff3286a32013-08-01 11:36:42 -0400382 gxio_mpipe_push_buffer(&md->context, md->first_buffer_stack + kind,
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000383 (void *)va_to_tile_io_addr(skb->data));
384
385 return true;
386}
387
388/* Convert a raw mpipe buffer to its matching skb pointer. */
389static struct sk_buff *mpipe_buf_to_skb(void *va)
390{
391 /* Acquire the associated "skb". */
392 struct sk_buff **skb_ptr = va - sizeof(*skb_ptr);
393 struct sk_buff *skb = *skb_ptr;
394
395 /* Paranoia. */
396 if (skb->data != va) {
397 /* Panic here since there's a reasonable chance
398 * that corrupt buffers means generic memory
399 * corruption, with unpredictable system effects.
400 */
401 panic("Corrupt linux buffer! va=%p, skb=%p, skb->data=%p",
402 va, skb, skb->data);
403 }
404
405 return skb;
406}
407
Chris Metcalff3286a32013-08-01 11:36:42 -0400408static void tile_net_pop_all_buffers(int instance, int stack)
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000409{
Chris Metcalff3286a32013-08-01 11:36:42 -0400410 struct mpipe_data *md = &mpipe_data[instance];
411
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000412 for (;;) {
413 tile_io_addr_t addr =
Chris Metcalff3286a32013-08-01 11:36:42 -0400414 (tile_io_addr_t)gxio_mpipe_pop_buffer(&md->context,
415 stack);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000416 if (addr == 0)
417 break;
418 dev_kfree_skb_irq(mpipe_buf_to_skb(tile_io_addr_to_va(addr)));
419 }
420}
421
422/* Provide linux buffers to mPIPE. */
423static void tile_net_provide_needed_buffers(void)
424{
Christoph Lameter70b27762014-08-17 12:30:33 -0500425 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalff3286a32013-08-01 11:36:42 -0400426 int instance, kind;
427 for (instance = 0; instance < NR_MPIPE_MAX &&
428 info->mpipe[instance].has_iqueue; instance++) {
429 for (kind = 0; kind < MAX_KINDS; kind++) {
430 while (info->mpipe[instance].num_needed_buffers[kind]
431 != 0) {
432 if (!tile_net_provide_buffer(instance, kind)) {
433 pr_notice("Tile %d still needs"
434 " some buffers\n",
435 info->my_cpu);
436 return;
437 }
438 info->mpipe[instance].
439 num_needed_buffers[kind]--;
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400440 }
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400441 }
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000442 }
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000443}
444
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400445/* Get RX timestamp, and store it in the skb. */
446static void tile_rx_timestamp(struct tile_net_priv *priv, struct sk_buff *skb,
447 gxio_mpipe_idesc_t *idesc)
448{
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400449 if (unlikely(priv->stamp_cfg.rx_filter != HWTSTAMP_FILTER_NONE)) {
450 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
451 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
452 shhwtstamps->hwtstamp = ktime_set(idesc->time_stamp_sec,
453 idesc->time_stamp_ns);
454 }
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400455}
456
457/* Get TX timestamp, and store it in the skb. */
458static void tile_tx_timestamp(struct sk_buff *skb, int instance)
459{
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400460 struct skb_shared_info *shtx = skb_shinfo(skb);
461 if (unlikely((shtx->tx_flags & SKBTX_HW_TSTAMP) != 0)) {
462 struct mpipe_data *md = &mpipe_data[instance];
463 struct skb_shared_hwtstamps shhwtstamps;
464 struct timespec ts;
465
466 shtx->tx_flags |= SKBTX_IN_PROGRESS;
467 gxio_mpipe_get_timestamp(&md->context, &ts);
468 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
469 shhwtstamps.hwtstamp = ktime_set(ts.tv_sec, ts.tv_nsec);
470 skb_tstamp_tx(skb, &shhwtstamps);
471 }
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400472}
473
474/* Use ioctl() to enable or disable TX or RX timestamping. */
Ben Hutchings6ab96d12013-11-18 23:25:20 +0000475static int tile_hwtstamp_set(struct net_device *dev, struct ifreq *rq)
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400476{
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400477 struct hwtstamp_config config;
478 struct tile_net_priv *priv = netdev_priv(dev);
479
480 if (copy_from_user(&config, rq->ifr_data, sizeof(config)))
481 return -EFAULT;
482
483 if (config.flags) /* reserved for future extensions */
484 return -EINVAL;
485
486 switch (config.tx_type) {
487 case HWTSTAMP_TX_OFF:
488 case HWTSTAMP_TX_ON:
489 break;
490 default:
491 return -ERANGE;
492 }
493
494 switch (config.rx_filter) {
495 case HWTSTAMP_FILTER_NONE:
496 break;
497 case HWTSTAMP_FILTER_ALL:
498 case HWTSTAMP_FILTER_SOME:
499 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
500 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
501 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
502 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
503 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
504 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
505 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
506 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
507 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
508 case HWTSTAMP_FILTER_PTP_V2_EVENT:
509 case HWTSTAMP_FILTER_PTP_V2_SYNC:
510 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
511 config.rx_filter = HWTSTAMP_FILTER_ALL;
512 break;
513 default:
514 return -ERANGE;
515 }
516
517 if (copy_to_user(rq->ifr_data, &config, sizeof(config)))
518 return -EFAULT;
519
520 priv->stamp_cfg = config;
521 return 0;
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400522}
523
Ben Hutchings6ab96d12013-11-18 23:25:20 +0000524static int tile_hwtstamp_get(struct net_device *dev, struct ifreq *rq)
525{
Ben Hutchings6ab96d12013-11-18 23:25:20 +0000526 struct tile_net_priv *priv = netdev_priv(dev);
527
528 if (copy_to_user(rq->ifr_data, &priv->stamp_cfg,
529 sizeof(priv->stamp_cfg)))
530 return -EFAULT;
531
532 return 0;
Ben Hutchings6ab96d12013-11-18 23:25:20 +0000533}
534
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000535static inline bool filter_packet(struct net_device *dev, void *buf)
536{
537 /* Filter packets received before we're up. */
538 if (dev == NULL || !(dev->flags & IFF_UP))
539 return true;
540
541 /* Filter out packets that aren't for us. */
542 if (!(dev->flags & IFF_PROMISC) &&
543 !is_multicast_ether_addr(buf) &&
Joe Perches7367d0b2013-09-01 11:51:23 -0700544 !ether_addr_equal(dev->dev_addr, buf))
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000545 return true;
546
547 return false;
548}
549
550static void tile_net_receive_skb(struct net_device *dev, struct sk_buff *skb,
551 gxio_mpipe_idesc_t *idesc, unsigned long len)
552{
Christoph Lametereee84922014-08-17 12:30:38 -0500553 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400554 struct tile_net_priv *priv = netdev_priv(dev);
555 int instance = priv->instance;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000556
557 /* Encode the actual packet length. */
558 skb_put(skb, len);
559
560 skb->protocol = eth_type_trans(skb, dev);
561
562 /* Acknowledge "good" hardware checksums. */
563 if (idesc->cs && idesc->csum_seed_val == 0xFFFF)
564 skb->ip_summed = CHECKSUM_UNNECESSARY;
565
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400566 /* Get RX timestamp from idesc. */
567 tile_rx_timestamp(priv, skb, idesc);
568
Chris Metcalff3286a32013-08-01 11:36:42 -0400569 napi_gro_receive(&info->mpipe[instance].napi, skb);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000570
571 /* Update stats. */
Chris Metcalfad018182013-08-01 11:36:42 -0400572 tile_net_stats_add(1, &dev->stats.rx_packets);
573 tile_net_stats_add(len, &dev->stats.rx_bytes);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000574
575 /* Need a new buffer. */
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400576 if (idesc->size == buffer_size_enums[0])
Chris Metcalff3286a32013-08-01 11:36:42 -0400577 info->mpipe[instance].num_needed_buffers[0]++;
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400578 else if (idesc->size == buffer_size_enums[1])
Chris Metcalff3286a32013-08-01 11:36:42 -0400579 info->mpipe[instance].num_needed_buffers[1]++;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000580 else
Chris Metcalff3286a32013-08-01 11:36:42 -0400581 info->mpipe[instance].num_needed_buffers[2]++;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000582}
583
584/* Handle a packet. Return true if "processed", false if "filtered". */
Chris Metcalff3286a32013-08-01 11:36:42 -0400585static bool tile_net_handle_packet(int instance, gxio_mpipe_idesc_t *idesc)
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000586{
Christoph Lameter70b27762014-08-17 12:30:33 -0500587 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalff3286a32013-08-01 11:36:42 -0400588 struct mpipe_data *md = &mpipe_data[instance];
589 struct net_device *dev = md->tile_net_devs_for_channel[idesc->channel];
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000590 uint8_t l2_offset;
591 void *va;
592 void *buf;
593 unsigned long len;
594 bool filter;
595
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400596 /* Drop packets for which no buffer was available (which can
597 * happen under heavy load), or for which the me/tr/ce flags
598 * are set (which can happen for jumbo cut-through packets,
599 * or with a customized classifier).
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000600 */
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400601 if (idesc->be || idesc->me || idesc->tr || idesc->ce) {
602 if (dev)
Chris Metcalfad018182013-08-01 11:36:42 -0400603 tile_net_stats_add(1, &dev->stats.rx_errors);
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400604 goto drop;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000605 }
606
607 /* Get the "l2_offset", if allowed. */
Chris Metcalf4aa026442013-08-01 11:36:42 -0400608 l2_offset = custom_flag ? 0 : gxio_mpipe_idesc_get_l2_offset(idesc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000609
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400610 /* Get the VA (including NET_IP_ALIGN bytes of "headroom"). */
611 va = tile_io_addr_to_va((unsigned long)idesc->va);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000612
613 /* Get the actual packet start/length. */
614 buf = va + l2_offset;
615 len = idesc->l2_size - l2_offset;
616
617 /* Point "va" at the raw buffer. */
618 va -= NET_IP_ALIGN;
619
620 filter = filter_packet(dev, buf);
621 if (filter) {
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400622 if (dev)
Chris Metcalfad018182013-08-01 11:36:42 -0400623 tile_net_stats_add(1, &dev->stats.rx_dropped);
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400624drop:
Chris Metcalff3286a32013-08-01 11:36:42 -0400625 gxio_mpipe_iqueue_drop(&info->mpipe[instance].iqueue, idesc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000626 } else {
627 struct sk_buff *skb = mpipe_buf_to_skb(va);
628
629 /* Skip headroom, and any custom header. */
630 skb_reserve(skb, NET_IP_ALIGN + l2_offset);
631
632 tile_net_receive_skb(dev, skb, idesc, len);
633 }
634
Chris Metcalff3286a32013-08-01 11:36:42 -0400635 gxio_mpipe_iqueue_consume(&info->mpipe[instance].iqueue, idesc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000636 return !filter;
637}
638
639/* Handle some packets for the current CPU.
640 *
641 * This function handles up to TILE_NET_BATCH idescs per call.
642 *
643 * ISSUE: Since we do not provide new buffers until this function is
644 * complete, we must initially provide enough buffers for each network
645 * cpu to fill its iqueue and also its batched idescs.
646 *
647 * ISSUE: The "rotting packet" race condition occurs if a packet
648 * arrives after the queue appears to be empty, and before the
649 * hypervisor interrupt is re-enabled.
650 */
651static int tile_net_poll(struct napi_struct *napi, int budget)
652{
Christoph Lameter70b27762014-08-17 12:30:33 -0500653 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000654 unsigned int work = 0;
655 gxio_mpipe_idesc_t *idesc;
Chris Metcalff3286a32013-08-01 11:36:42 -0400656 int instance, i, n;
657 struct mpipe_data *md;
658 struct info_mpipe *info_mpipe =
659 container_of(napi, struct info_mpipe, napi);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000660
Eric W. Biedermand110ec42014-03-14 18:08:21 -0700661 if (budget <= 0)
662 goto done;
663
Chris Metcalff3286a32013-08-01 11:36:42 -0400664 instance = info_mpipe->instance;
665 while ((n = gxio_mpipe_iqueue_try_peek(
666 &info_mpipe->iqueue,
667 &idesc)) > 0) {
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000668 for (i = 0; i < n; i++) {
669 if (i == TILE_NET_BATCH)
670 goto done;
Chris Metcalff3286a32013-08-01 11:36:42 -0400671 if (tile_net_handle_packet(instance,
672 idesc + i)) {
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000673 if (++work >= budget)
674 goto done;
675 }
676 }
677 }
678
679 /* There are no packets left. */
Chris Metcalff3286a32013-08-01 11:36:42 -0400680 napi_complete(&info_mpipe->napi);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000681
Chris Metcalff3286a32013-08-01 11:36:42 -0400682 md = &mpipe_data[instance];
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000683 /* Re-enable hypervisor interrupts. */
Chris Metcalff3286a32013-08-01 11:36:42 -0400684 gxio_mpipe_enable_notif_ring_interrupt(
685 &md->context, info->mpipe[instance].iqueue.ring);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000686
687 /* HACK: Avoid the "rotting packet" problem. */
Chris Metcalff3286a32013-08-01 11:36:42 -0400688 if (gxio_mpipe_iqueue_try_peek(&info_mpipe->iqueue, &idesc) > 0)
689 napi_schedule(&info_mpipe->napi);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000690
691 /* ISSUE: Handle completions? */
692
693done:
694 tile_net_provide_needed_buffers();
695
696 return work;
697}
698
Chris Metcalff3286a32013-08-01 11:36:42 -0400699/* Handle an ingress interrupt from an instance on the current cpu. */
700static irqreturn_t tile_net_handle_ingress_irq(int irq, void *id)
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000701{
Christoph Lameter70b27762014-08-17 12:30:33 -0500702 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalff3286a32013-08-01 11:36:42 -0400703 napi_schedule(&info->mpipe[(uint64_t)id].napi);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000704 return IRQ_HANDLED;
705}
706
707/* Free some completions. This must be called with interrupts blocked. */
708static int tile_net_free_comps(gxio_mpipe_equeue_t *equeue,
709 struct tile_net_comps *comps,
710 int limit, bool force_update)
711{
712 int n = 0;
713 while (comps->comp_last < comps->comp_next) {
714 unsigned int cid = comps->comp_last % TILE_NET_MAX_COMPS;
715 struct tile_net_comp *comp = &comps->comp_queue[cid];
716 if (!gxio_mpipe_equeue_is_complete(equeue, comp->when,
717 force_update || n == 0))
718 break;
719 dev_kfree_skb_irq(comp->skb);
720 comps->comp_last++;
721 if (++n == limit)
722 break;
723 }
724 return n;
725}
726
727/* Add a completion. This must be called with interrupts blocked.
728 * tile_net_equeue_try_reserve() will have ensured a free completion entry.
729 */
730static void add_comp(gxio_mpipe_equeue_t *equeue,
731 struct tile_net_comps *comps,
732 uint64_t when, struct sk_buff *skb)
733{
734 int cid = comps->comp_next % TILE_NET_MAX_COMPS;
735 comps->comp_queue[cid].when = when;
736 comps->comp_queue[cid].skb = skb;
737 comps->comp_next++;
738}
739
Chris Metcalf9b4c3412012-07-01 14:43:47 -0400740static void tile_net_schedule_tx_wake_timer(struct net_device *dev,
741 int tx_queue_idx)
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000742{
Chris Metcalf9b4c3412012-07-01 14:43:47 -0400743 struct tile_net_info *info = &per_cpu(per_cpu_info, tx_queue_idx);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000744 struct tile_net_priv *priv = netdev_priv(dev);
Chris Metcalff3286a32013-08-01 11:36:42 -0400745 int instance = priv->instance;
746 struct tile_net_tx_wake *tx_wake =
747 &info->mpipe[instance].tx_wake[priv->echannel];
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000748
Chris Metcalf9b4c3412012-07-01 14:43:47 -0400749 hrtimer_start(&tx_wake->timer,
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000750 ktime_set(0, TX_TIMER_DELAY_USEC * 1000UL),
751 HRTIMER_MODE_REL_PINNED);
752}
753
754static enum hrtimer_restart tile_net_handle_tx_wake_timer(struct hrtimer *t)
755{
756 struct tile_net_tx_wake *tx_wake =
757 container_of(t, struct tile_net_tx_wake, timer);
Chris Metcalf9b4c3412012-07-01 14:43:47 -0400758 netif_wake_subqueue(tx_wake->dev, tx_wake->tx_queue_idx);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000759 return HRTIMER_NORESTART;
760}
761
762/* Make sure the egress timer is scheduled. */
763static void tile_net_schedule_egress_timer(void)
764{
Christoph Lameter70b27762014-08-17 12:30:33 -0500765 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000766
767 if (!info->egress_timer_scheduled) {
768 hrtimer_start(&info->egress_timer,
769 ktime_set(0, EGRESS_TIMER_DELAY_USEC * 1000UL),
770 HRTIMER_MODE_REL_PINNED);
771 info->egress_timer_scheduled = true;
772 }
773}
774
775/* The "function" for "info->egress_timer".
776 *
777 * This timer will reschedule itself as long as there are any pending
778 * completions expected for this tile.
779 */
780static enum hrtimer_restart tile_net_handle_egress_timer(struct hrtimer *t)
781{
Christoph Lameter70b27762014-08-17 12:30:33 -0500782 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000783 unsigned long irqflags;
784 bool pending = false;
Chris Metcalff3286a32013-08-01 11:36:42 -0400785 int i, instance;
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000786
787 local_irq_save(irqflags);
788
789 /* The timer is no longer scheduled. */
790 info->egress_timer_scheduled = false;
791
792 /* Free all possible comps for this tile. */
Chris Metcalff3286a32013-08-01 11:36:42 -0400793 for (instance = 0; instance < NR_MPIPE_MAX &&
794 info->mpipe[instance].has_iqueue; instance++) {
795 for (i = 0; i < TILE_NET_CHANNELS; i++) {
796 struct tile_net_egress *egress =
797 &mpipe_data[instance].egress_for_echannel[i];
798 struct tile_net_comps *comps =
799 info->mpipe[instance].comps_for_echannel[i];
800 if (!egress || comps->comp_last >= comps->comp_next)
801 continue;
802 tile_net_free_comps(egress->equeue, comps, -1, true);
803 pending = pending ||
804 (comps->comp_last < comps->comp_next);
805 }
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000806 }
807
808 /* Reschedule timer if needed. */
809 if (pending)
810 tile_net_schedule_egress_timer();
811
812 local_irq_restore(irqflags);
813
814 return HRTIMER_NORESTART;
815}
816
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400817/* PTP clock operations. */
818
819static int ptp_mpipe_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
820{
821 int ret = 0;
822 struct mpipe_data *md = container_of(ptp, struct mpipe_data, caps);
823 mutex_lock(&md->ptp_lock);
824 if (gxio_mpipe_adjust_timestamp_freq(&md->context, ppb))
825 ret = -EINVAL;
826 mutex_unlock(&md->ptp_lock);
827 return ret;
828}
829
830static int ptp_mpipe_adjtime(struct ptp_clock_info *ptp, s64 delta)
831{
832 int ret = 0;
833 struct mpipe_data *md = container_of(ptp, struct mpipe_data, caps);
834 mutex_lock(&md->ptp_lock);
835 if (gxio_mpipe_adjust_timestamp(&md->context, delta))
836 ret = -EBUSY;
837 mutex_unlock(&md->ptp_lock);
838 return ret;
839}
840
841static int ptp_mpipe_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
842{
843 int ret = 0;
844 struct mpipe_data *md = container_of(ptp, struct mpipe_data, caps);
845 mutex_lock(&md->ptp_lock);
846 if (gxio_mpipe_get_timestamp(&md->context, ts))
847 ret = -EBUSY;
848 mutex_unlock(&md->ptp_lock);
849 return ret;
850}
851
852static int ptp_mpipe_settime(struct ptp_clock_info *ptp,
853 const struct timespec *ts)
854{
855 int ret = 0;
856 struct mpipe_data *md = container_of(ptp, struct mpipe_data, caps);
857 mutex_lock(&md->ptp_lock);
858 if (gxio_mpipe_set_timestamp(&md->context, ts))
859 ret = -EBUSY;
860 mutex_unlock(&md->ptp_lock);
861 return ret;
862}
863
864static int ptp_mpipe_enable(struct ptp_clock_info *ptp,
865 struct ptp_clock_request *request, int on)
866{
867 return -EOPNOTSUPP;
868}
869
870static struct ptp_clock_info ptp_mpipe_caps = {
871 .owner = THIS_MODULE,
872 .name = "mPIPE clock",
873 .max_adj = 999999999,
874 .n_ext_ts = 0,
Richard Cochran4986b4f02014-03-20 22:21:55 +0100875 .n_pins = 0,
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400876 .pps = 0,
877 .adjfreq = ptp_mpipe_adjfreq,
878 .adjtime = ptp_mpipe_adjtime,
879 .gettime = ptp_mpipe_gettime,
880 .settime = ptp_mpipe_settime,
881 .enable = ptp_mpipe_enable,
882};
883
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400884/* Sync mPIPE's timestamp up with Linux system time and register PTP clock. */
885static void register_ptp_clock(struct net_device *dev, struct mpipe_data *md)
886{
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400887 struct timespec ts;
888
889 getnstimeofday(&ts);
890 gxio_mpipe_set_timestamp(&md->context, &ts);
891
892 mutex_init(&md->ptp_lock);
893 md->caps = ptp_mpipe_caps;
894 md->ptp_clock = ptp_clock_register(&md->caps, NULL);
895 if (IS_ERR(md->ptp_clock))
896 netdev_err(dev, "ptp_clock_register failed %ld\n",
897 PTR_ERR(md->ptp_clock));
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400898}
899
900/* Initialize PTP fields in a new device. */
901static void init_ptp_dev(struct tile_net_priv *priv)
902{
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400903 priv->stamp_cfg.rx_filter = HWTSTAMP_FILTER_NONE;
904 priv->stamp_cfg.tx_type = HWTSTAMP_TX_OFF;
Chris Metcalf9ab5ec52013-08-01 11:36:42 -0400905}
906
Chris Metcalff3286a32013-08-01 11:36:42 -0400907/* Helper functions for "tile_net_update()". */
908static void enable_ingress_irq(void *irq)
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000909{
Chris Metcalff3286a32013-08-01 11:36:42 -0400910 enable_percpu_irq((long)irq, 0);
911}
912
913static void disable_ingress_irq(void *irq)
914{
915 disable_percpu_irq((long)irq);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000916}
917
918/* Helper function for tile_net_open() and tile_net_stop().
919 * Always called under tile_net_devs_for_channel_mutex.
920 */
921static int tile_net_update(struct net_device *dev)
922{
923 static gxio_mpipe_rules_t rules; /* too big to fit on the stack */
924 bool saw_channel = false;
Chris Metcalff3286a32013-08-01 11:36:42 -0400925 int instance = mpipe_instance(dev);
926 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000927 int channel;
928 int rc;
929 int cpu;
930
Chris Metcalff3286a32013-08-01 11:36:42 -0400931 saw_channel = false;
932 gxio_mpipe_rules_init(&rules, &md->context);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000933
934 for (channel = 0; channel < TILE_NET_CHANNELS; channel++) {
Chris Metcalff3286a32013-08-01 11:36:42 -0400935 if (md->tile_net_devs_for_channel[channel] == NULL)
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000936 continue;
937 if (!saw_channel) {
938 saw_channel = true;
Chris Metcalff3286a32013-08-01 11:36:42 -0400939 gxio_mpipe_rules_begin(&rules, md->first_bucket,
940 md->num_buckets, NULL);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000941 gxio_mpipe_rules_set_headroom(&rules, NET_IP_ALIGN);
942 }
943 gxio_mpipe_rules_add_channel(&rules, channel);
944 }
945
946 /* NOTE: This can fail if there is no classifier.
947 * ISSUE: Can anything else cause it to fail?
948 */
949 rc = gxio_mpipe_rules_commit(&rules);
950 if (rc != 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -0400951 netdev_warn(dev, "gxio_mpipe_rules_commit: mpipe[%d] %d\n",
952 instance, rc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000953 return -EIO;
954 }
955
Chris Metcalf5e7a54a2013-08-01 11:36:42 -0400956 /* Update all cpus, sequentially (to protect "netif_napi_add()").
957 * We use on_each_cpu to handle the IPI mask or unmask.
958 */
959 if (!saw_channel)
Chris Metcalff3286a32013-08-01 11:36:42 -0400960 on_each_cpu(disable_ingress_irq,
961 (void *)(long)(md->ingress_irq), 1);
Chris Metcalf5e7a54a2013-08-01 11:36:42 -0400962 for_each_online_cpu(cpu) {
963 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
Chris Metcalff3286a32013-08-01 11:36:42 -0400964
965 if (!info->mpipe[instance].has_iqueue)
Chris Metcalf5e7a54a2013-08-01 11:36:42 -0400966 continue;
967 if (saw_channel) {
Chris Metcalff3286a32013-08-01 11:36:42 -0400968 if (!info->mpipe[instance].napi_added) {
969 netif_napi_add(dev, &info->mpipe[instance].napi,
Chris Metcalf5e7a54a2013-08-01 11:36:42 -0400970 tile_net_poll, TILE_NET_WEIGHT);
Chris Metcalff3286a32013-08-01 11:36:42 -0400971 info->mpipe[instance].napi_added = true;
Chris Metcalf5e7a54a2013-08-01 11:36:42 -0400972 }
Chris Metcalff3286a32013-08-01 11:36:42 -0400973 if (!info->mpipe[instance].napi_enabled) {
974 napi_enable(&info->mpipe[instance].napi);
975 info->mpipe[instance].napi_enabled = true;
Chris Metcalf5e7a54a2013-08-01 11:36:42 -0400976 }
977 } else {
Chris Metcalff3286a32013-08-01 11:36:42 -0400978 if (info->mpipe[instance].napi_enabled) {
979 napi_disable(&info->mpipe[instance].napi);
980 info->mpipe[instance].napi_enabled = false;
Chris Metcalf5e7a54a2013-08-01 11:36:42 -0400981 }
982 /* FIXME: Drain the iqueue. */
983 }
984 }
985 if (saw_channel)
Chris Metcalff3286a32013-08-01 11:36:42 -0400986 on_each_cpu(enable_ingress_irq,
987 (void *)(long)(md->ingress_irq), 1);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000988
989 /* HACK: Allow packets to flow in the simulator. */
990 if (saw_channel)
Chris Metcalff3286a32013-08-01 11:36:42 -0400991 sim_enable_mpipe_links(instance, -1);
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000992
993 return 0;
994}
995
Chris Metcalf2628e8a2013-08-01 11:36:42 -0400996/* Initialize a buffer stack. */
997static int create_buffer_stack(struct net_device *dev,
998 int kind, size_t num_buffers)
Chris Metcalfe3d62d72012-06-07 10:45:02 +0000999{
1000 pte_t hash_pte = pte_set_home((pte_t) { 0 }, PAGE_HOME_HASH);
Chris Metcalff3286a32013-08-01 11:36:42 -04001001 int instance = mpipe_instance(dev);
1002 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001003 size_t needed = gxio_mpipe_calc_buffer_stack_bytes(num_buffers);
Chris Metcalff3286a32013-08-01 11:36:42 -04001004 int stack_idx = md->first_buffer_stack + kind;
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001005 void *va;
1006 int i, rc;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001007
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001008 /* Round up to 64KB and then use alloc_pages() so we get the
1009 * required 64KB alignment.
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001010 */
Chris Metcalff3286a32013-08-01 11:36:42 -04001011 md->buffer_stack_bytes[kind] =
1012 ALIGN(needed, 64 * 1024);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001013
Chris Metcalff3286a32013-08-01 11:36:42 -04001014 va = alloc_pages_exact(md->buffer_stack_bytes[kind], GFP_KERNEL);
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001015 if (va == NULL) {
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001016 netdev_err(dev,
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001017 "Could not alloc %zd bytes for buffer stack %d\n",
Chris Metcalff3286a32013-08-01 11:36:42 -04001018 md->buffer_stack_bytes[kind], kind);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001019 return -ENOMEM;
1020 }
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001021
1022 /* Initialize the buffer stack. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001023 rc = gxio_mpipe_init_buffer_stack(&md->context, stack_idx,
1024 buffer_size_enums[kind], va,
1025 md->buffer_stack_bytes[kind], 0);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001026 if (rc != 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001027 netdev_err(dev, "gxio_mpipe_init_buffer_stack: mpipe[%d] %d\n",
1028 instance, rc);
1029 free_pages_exact(va, md->buffer_stack_bytes[kind]);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001030 return rc;
1031 }
1032
Chris Metcalff3286a32013-08-01 11:36:42 -04001033 md->buffer_stack_vas[kind] = va;
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001034
Chris Metcalff3286a32013-08-01 11:36:42 -04001035 rc = gxio_mpipe_register_client_memory(&md->context, stack_idx,
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001036 hash_pte, 0);
1037 if (rc != 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001038 netdev_err(dev,
1039 "gxio_mpipe_register_client_memory: mpipe[%d] %d\n",
1040 instance, rc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001041 return rc;
1042 }
1043
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001044 /* Provide initial buffers. */
1045 for (i = 0; i < num_buffers; i++) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001046 if (!tile_net_provide_buffer(instance, kind)) {
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001047 netdev_err(dev, "Cannot allocate initial sk_bufs!\n");
1048 return -ENOMEM;
1049 }
1050 }
1051
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001052 return 0;
1053}
1054
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001055/* Allocate and initialize mpipe buffer stacks, and register them in
1056 * the mPIPE TLBs, for small, large, and (possibly) jumbo packet sizes.
1057 * This routine supports tile_net_init_mpipe(), below.
1058 */
1059static int init_buffer_stacks(struct net_device *dev,
1060 int network_cpus_count)
1061{
1062 int num_kinds = MAX_KINDS - (jumbo_num == 0);
1063 size_t num_buffers;
1064 int rc;
Chris Metcalff3286a32013-08-01 11:36:42 -04001065 int instance = mpipe_instance(dev);
1066 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001067
1068 /* Allocate the buffer stacks. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001069 rc = gxio_mpipe_alloc_buffer_stacks(&md->context, num_kinds, 0, 0);
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001070 if (rc < 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001071 netdev_err(dev,
1072 "gxio_mpipe_alloc_buffer_stacks: mpipe[%d] %d\n",
1073 instance, rc);
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001074 return rc;
1075 }
Chris Metcalff3286a32013-08-01 11:36:42 -04001076 md->first_buffer_stack = rc;
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001077
1078 /* Enough small/large buffers to (normally) avoid buffer errors. */
1079 num_buffers =
1080 network_cpus_count * (IQUEUE_ENTRIES + TILE_NET_BATCH);
1081
1082 /* Allocate the small memory stack. */
1083 if (rc >= 0)
1084 rc = create_buffer_stack(dev, 0, num_buffers);
1085
1086 /* Allocate the large buffer stack. */
1087 if (rc >= 0)
1088 rc = create_buffer_stack(dev, 1, num_buffers);
1089
1090 /* Allocate the jumbo buffer stack if needed. */
1091 if (rc >= 0 && jumbo_num != 0)
1092 rc = create_buffer_stack(dev, 2, jumbo_num);
1093
1094 return rc;
1095}
1096
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001097/* Allocate per-cpu resources (memory for completions and idescs).
1098 * This routine supports tile_net_init_mpipe(), below.
1099 */
1100static int alloc_percpu_mpipe_resources(struct net_device *dev,
1101 int cpu, int ring)
1102{
1103 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
1104 int order, i, rc;
Chris Metcalff3286a32013-08-01 11:36:42 -04001105 int instance = mpipe_instance(dev);
1106 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001107 struct page *page;
1108 void *addr;
1109
1110 /* Allocate the "comps". */
1111 order = get_order(COMPS_SIZE);
1112 page = homecache_alloc_pages(GFP_KERNEL, order, cpu);
1113 if (page == NULL) {
1114 netdev_err(dev, "Failed to alloc %zd bytes comps memory\n",
1115 COMPS_SIZE);
1116 return -ENOMEM;
1117 }
1118 addr = pfn_to_kaddr(page_to_pfn(page));
1119 memset(addr, 0, COMPS_SIZE);
1120 for (i = 0; i < TILE_NET_CHANNELS; i++)
Chris Metcalff3286a32013-08-01 11:36:42 -04001121 info->mpipe[instance].comps_for_echannel[i] =
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001122 addr + i * sizeof(struct tile_net_comps);
1123
1124 /* If this is a network cpu, create an iqueue. */
1125 if (cpu_isset(cpu, network_cpus_map)) {
1126 order = get_order(NOTIF_RING_SIZE);
1127 page = homecache_alloc_pages(GFP_KERNEL, order, cpu);
1128 if (page == NULL) {
1129 netdev_err(dev,
1130 "Failed to alloc %zd bytes iqueue memory\n",
1131 NOTIF_RING_SIZE);
1132 return -ENOMEM;
1133 }
1134 addr = pfn_to_kaddr(page_to_pfn(page));
Chris Metcalff3286a32013-08-01 11:36:42 -04001135 rc = gxio_mpipe_iqueue_init(&info->mpipe[instance].iqueue,
1136 &md->context, ring++, addr,
1137 NOTIF_RING_SIZE, 0);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001138 if (rc < 0) {
1139 netdev_err(dev,
1140 "gxio_mpipe_iqueue_init failed: %d\n", rc);
1141 return rc;
1142 }
Chris Metcalff3286a32013-08-01 11:36:42 -04001143 info->mpipe[instance].has_iqueue = true;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001144 }
1145
1146 return ring;
1147}
1148
1149/* Initialize NotifGroup and buckets.
1150 * This routine supports tile_net_init_mpipe(), below.
1151 */
1152static int init_notif_group_and_buckets(struct net_device *dev,
1153 int ring, int network_cpus_count)
1154{
1155 int group, rc;
Chris Metcalff3286a32013-08-01 11:36:42 -04001156 int instance = mpipe_instance(dev);
1157 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001158
1159 /* Allocate one NotifGroup. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001160 rc = gxio_mpipe_alloc_notif_groups(&md->context, 1, 0, 0);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001161 if (rc < 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001162 netdev_err(dev, "gxio_mpipe_alloc_notif_groups: mpipe[%d] %d\n",
1163 instance, rc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001164 return rc;
1165 }
1166 group = rc;
1167
1168 /* Initialize global num_buckets value. */
1169 if (network_cpus_count > 4)
Chris Metcalff3286a32013-08-01 11:36:42 -04001170 md->num_buckets = 256;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001171 else if (network_cpus_count > 1)
Chris Metcalff3286a32013-08-01 11:36:42 -04001172 md->num_buckets = 16;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001173
1174 /* Allocate some buckets, and set global first_bucket value. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001175 rc = gxio_mpipe_alloc_buckets(&md->context, md->num_buckets, 0, 0);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001176 if (rc < 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001177 netdev_err(dev, "gxio_mpipe_alloc_buckets: mpipe[%d] %d\n",
1178 instance, rc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001179 return rc;
1180 }
Chris Metcalff3286a32013-08-01 11:36:42 -04001181 md->first_bucket = rc;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001182
1183 /* Init group and buckets. */
1184 rc = gxio_mpipe_init_notif_group_and_buckets(
Chris Metcalff3286a32013-08-01 11:36:42 -04001185 &md->context, group, ring, network_cpus_count,
1186 md->first_bucket, md->num_buckets,
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001187 GXIO_MPIPE_BUCKET_STICKY_FLOW_LOCALITY);
1188 if (rc != 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001189 netdev_err(dev, "gxio_mpipe_init_notif_group_and_buckets: "
1190 "mpipe[%d] %d\n", instance, rc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001191 return rc;
1192 }
1193
1194 return 0;
1195}
1196
1197/* Create an irq and register it, then activate the irq and request
1198 * interrupts on all cores. Note that "ingress_irq" being initialized
1199 * is how we know not to call tile_net_init_mpipe() again.
1200 * This routine supports tile_net_init_mpipe(), below.
1201 */
1202static int tile_net_setup_interrupts(struct net_device *dev)
1203{
Chris Metcalff3286a32013-08-01 11:36:42 -04001204 int cpu, rc, irq;
1205 int instance = mpipe_instance(dev);
1206 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001207
Chris Metcalff3286a32013-08-01 11:36:42 -04001208 irq = md->ingress_irq;
1209 if (irq < 0) {
Thomas Gleixner094e8732014-05-07 15:44:14 +00001210 irq = irq_alloc_hwirq(-1);
1211 if (!irq) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001212 netdev_err(dev,
1213 "create_irq failed: mpipe[%d] %d\n",
1214 instance, irq);
1215 return irq;
1216 }
1217 tile_irq_activate(irq, TILE_IRQ_PERCPU);
1218
1219 rc = request_irq(irq, tile_net_handle_ingress_irq,
1220 0, "tile_net", (void *)((uint64_t)instance));
1221
1222 if (rc != 0) {
1223 netdev_err(dev, "request_irq failed: mpipe[%d] %d\n",
1224 instance, rc);
Thomas Gleixner094e8732014-05-07 15:44:14 +00001225 irq_free_hwirq(irq);
Chris Metcalff3286a32013-08-01 11:36:42 -04001226 return rc;
1227 }
1228 md->ingress_irq = irq;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001229 }
1230
1231 for_each_online_cpu(cpu) {
1232 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
Chris Metcalff3286a32013-08-01 11:36:42 -04001233 if (info->mpipe[instance].has_iqueue) {
1234 gxio_mpipe_request_notif_ring_interrupt(&md->context,
1235 cpu_x(cpu), cpu_y(cpu), KERNEL_PL, irq,
1236 info->mpipe[instance].iqueue.ring);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001237 }
1238 }
1239
1240 return 0;
1241}
1242
1243/* Undo any state set up partially by a failed call to tile_net_init_mpipe. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001244static void tile_net_init_mpipe_fail(int instance)
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001245{
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001246 int kind, cpu;
Chris Metcalff3286a32013-08-01 11:36:42 -04001247 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001248
1249 /* Do cleanups that require the mpipe context first. */
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001250 for (kind = 0; kind < MAX_KINDS; kind++) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001251 if (md->buffer_stack_vas[kind] != NULL) {
1252 tile_net_pop_all_buffers(instance,
1253 md->first_buffer_stack +
1254 kind);
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001255 }
1256 }
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001257
1258 /* Destroy mpipe context so the hardware no longer owns any memory. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001259 gxio_mpipe_destroy(&md->context);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001260
1261 for_each_online_cpu(cpu) {
1262 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
Chris Metcalff3286a32013-08-01 11:36:42 -04001263 free_pages(
1264 (unsigned long)(
1265 info->mpipe[instance].comps_for_echannel[0]),
1266 get_order(COMPS_SIZE));
1267 info->mpipe[instance].comps_for_echannel[0] = NULL;
1268 free_pages((unsigned long)(info->mpipe[instance].iqueue.idescs),
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001269 get_order(NOTIF_RING_SIZE));
Chris Metcalff3286a32013-08-01 11:36:42 -04001270 info->mpipe[instance].iqueue.idescs = NULL;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001271 }
1272
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001273 for (kind = 0; kind < MAX_KINDS; kind++) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001274 if (md->buffer_stack_vas[kind] != NULL) {
1275 free_pages_exact(md->buffer_stack_vas[kind],
1276 md->buffer_stack_bytes[kind]);
1277 md->buffer_stack_vas[kind] = NULL;
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001278 }
1279 }
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001280
Chris Metcalff3286a32013-08-01 11:36:42 -04001281 md->first_buffer_stack = -1;
1282 md->first_bucket = -1;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001283}
1284
1285/* The first time any tilegx network device is opened, we initialize
1286 * the global mpipe state. If this step fails, we fail to open the
1287 * device, but if it succeeds, we never need to do it again, and since
1288 * tile_net can't be unloaded, we never undo it.
1289 *
1290 * Note that some resources in this path (buffer stack indices,
1291 * bindings from init_buffer_stack, etc.) are hypervisor resources
1292 * that are freed implicitly by gxio_mpipe_destroy().
1293 */
1294static int tile_net_init_mpipe(struct net_device *dev)
1295{
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001296 int rc;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001297 int cpu;
1298 int first_ring, ring;
Chris Metcalff3286a32013-08-01 11:36:42 -04001299 int instance = mpipe_instance(dev);
1300 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001301 int network_cpus_count = cpus_weight(network_cpus_map);
1302
1303 if (!hash_default) {
1304 netdev_err(dev, "Networking requires hash_default!\n");
1305 return -EIO;
1306 }
1307
Chris Metcalff3286a32013-08-01 11:36:42 -04001308 rc = gxio_mpipe_init(&md->context, instance);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001309 if (rc != 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001310 netdev_err(dev, "gxio_mpipe_init: mpipe[%d] %d\n",
1311 instance, rc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001312 return -EIO;
1313 }
1314
1315 /* Set up the buffer stacks. */
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001316 rc = init_buffer_stacks(dev, network_cpus_count);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001317 if (rc != 0)
1318 goto fail;
1319
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001320 /* Allocate one NotifRing for each network cpu. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001321 rc = gxio_mpipe_alloc_notif_rings(&md->context,
1322 network_cpus_count, 0, 0);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001323 if (rc < 0) {
1324 netdev_err(dev, "gxio_mpipe_alloc_notif_rings failed %d\n",
1325 rc);
1326 goto fail;
1327 }
1328
1329 /* Init NotifRings per-cpu. */
1330 first_ring = rc;
1331 ring = first_ring;
1332 for_each_online_cpu(cpu) {
1333 rc = alloc_percpu_mpipe_resources(dev, cpu, ring);
1334 if (rc < 0)
1335 goto fail;
1336 ring = rc;
1337 }
1338
1339 /* Initialize NotifGroup and buckets. */
1340 rc = init_notif_group_and_buckets(dev, first_ring, network_cpus_count);
1341 if (rc != 0)
1342 goto fail;
1343
1344 /* Create and enable interrupts. */
1345 rc = tile_net_setup_interrupts(dev);
1346 if (rc != 0)
1347 goto fail;
1348
Chris Metcalf9ab5ec52013-08-01 11:36:42 -04001349 /* Register PTP clock and set mPIPE timestamp, if configured. */
1350 register_ptp_clock(dev, md);
1351
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001352 return 0;
1353
1354fail:
Chris Metcalff3286a32013-08-01 11:36:42 -04001355 tile_net_init_mpipe_fail(instance);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001356 return rc;
1357}
1358
1359/* Create persistent egress info for a given egress channel.
1360 * Note that this may be shared between, say, "gbe0" and "xgbe0".
1361 * ISSUE: Defer header allocation until TSO is actually needed?
1362 */
1363static int tile_net_init_egress(struct net_device *dev, int echannel)
1364{
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001365 static int ering = -1;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001366 struct page *headers_page, *edescs_page, *equeue_page;
1367 gxio_mpipe_edesc_t *edescs;
1368 gxio_mpipe_equeue_t *equeue;
1369 unsigned char *headers;
1370 int headers_order, edescs_order, equeue_order;
1371 size_t edescs_size;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001372 int rc = -ENOMEM;
Chris Metcalff3286a32013-08-01 11:36:42 -04001373 int instance = mpipe_instance(dev);
1374 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001375
1376 /* Only initialize once. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001377 if (md->egress_for_echannel[echannel].equeue != NULL)
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001378 return 0;
1379
1380 /* Allocate memory for the "headers". */
1381 headers_order = get_order(EQUEUE_ENTRIES * HEADER_BYTES);
1382 headers_page = alloc_pages(GFP_KERNEL, headers_order);
1383 if (headers_page == NULL) {
1384 netdev_warn(dev,
1385 "Could not alloc %zd bytes for TSO headers.\n",
1386 PAGE_SIZE << headers_order);
1387 goto fail;
1388 }
1389 headers = pfn_to_kaddr(page_to_pfn(headers_page));
1390
1391 /* Allocate memory for the "edescs". */
1392 edescs_size = EQUEUE_ENTRIES * sizeof(*edescs);
1393 edescs_order = get_order(edescs_size);
1394 edescs_page = alloc_pages(GFP_KERNEL, edescs_order);
1395 if (edescs_page == NULL) {
1396 netdev_warn(dev,
1397 "Could not alloc %zd bytes for eDMA ring.\n",
1398 edescs_size);
1399 goto fail_headers;
1400 }
1401 edescs = pfn_to_kaddr(page_to_pfn(edescs_page));
1402
1403 /* Allocate memory for the "equeue". */
1404 equeue_order = get_order(sizeof(*equeue));
1405 equeue_page = alloc_pages(GFP_KERNEL, equeue_order);
1406 if (equeue_page == NULL) {
1407 netdev_warn(dev,
1408 "Could not alloc %zd bytes for equeue info.\n",
1409 PAGE_SIZE << equeue_order);
1410 goto fail_edescs;
1411 }
1412 equeue = pfn_to_kaddr(page_to_pfn(equeue_page));
1413
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001414 /* Allocate an edma ring (using a one entry "free list"). */
1415 if (ering < 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001416 rc = gxio_mpipe_alloc_edma_rings(&md->context, 1, 0, 0);
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001417 if (rc < 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001418 netdev_warn(dev, "gxio_mpipe_alloc_edma_rings: "
1419 "mpipe[%d] %d\n", instance, rc);
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001420 goto fail_equeue;
1421 }
1422 ering = rc;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001423 }
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001424
1425 /* Initialize the equeue. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001426 rc = gxio_mpipe_equeue_init(equeue, &md->context, ering, echannel,
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001427 edescs, edescs_size, 0);
1428 if (rc != 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001429 netdev_err(dev, "gxio_mpipe_equeue_init: mpipe[%d] %d\n",
1430 instance, rc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001431 goto fail_equeue;
1432 }
1433
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001434 /* Don't reuse the ering later. */
1435 ering = -1;
1436
1437 if (jumbo_num != 0) {
1438 /* Make sure "jumbo" packets can be egressed safely. */
1439 if (gxio_mpipe_equeue_set_snf_size(equeue, 10368) < 0) {
1440 /* ISSUE: There is no "gxio_mpipe_equeue_destroy()". */
1441 netdev_warn(dev, "Jumbo packets may not be egressed"
1442 " properly on channel %d\n", echannel);
1443 }
1444 }
1445
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001446 /* Done. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001447 md->egress_for_echannel[echannel].equeue = equeue;
1448 md->egress_for_echannel[echannel].headers = headers;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001449 return 0;
1450
1451fail_equeue:
1452 __free_pages(equeue_page, equeue_order);
1453
1454fail_edescs:
1455 __free_pages(edescs_page, edescs_order);
1456
1457fail_headers:
1458 __free_pages(headers_page, headers_order);
1459
1460fail:
1461 return rc;
1462}
1463
1464/* Return channel number for a newly-opened link. */
1465static int tile_net_link_open(struct net_device *dev, gxio_mpipe_link_t *link,
1466 const char *link_name)
1467{
Chris Metcalff3286a32013-08-01 11:36:42 -04001468 int instance = mpipe_instance(dev);
1469 struct mpipe_data *md = &mpipe_data[instance];
1470 int rc = gxio_mpipe_link_open(link, &md->context, link_name, 0);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001471 if (rc < 0) {
Chris Metcalff3286a32013-08-01 11:36:42 -04001472 netdev_err(dev, "Failed to open '%s', mpipe[%d], %d\n",
1473 link_name, instance, rc);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001474 return rc;
1475 }
Chris Metcalf2628e8a2013-08-01 11:36:42 -04001476 if (jumbo_num != 0) {
1477 u32 attr = GXIO_MPIPE_LINK_RECEIVE_JUMBO;
1478 rc = gxio_mpipe_link_set_attr(link, attr, 1);
1479 if (rc != 0) {
1480 netdev_err(dev,
1481 "Cannot receive jumbo packets on '%s'\n",
1482 link_name);
1483 gxio_mpipe_link_close(link);
1484 return rc;
1485 }
1486 }
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001487 rc = gxio_mpipe_link_channel(link);
1488 if (rc < 0 || rc >= TILE_NET_CHANNELS) {
1489 netdev_err(dev, "gxio_mpipe_link_channel bad value: %d\n", rc);
1490 gxio_mpipe_link_close(link);
1491 return -EINVAL;
1492 }
1493 return rc;
1494}
1495
1496/* Help the kernel activate the given network interface. */
1497static int tile_net_open(struct net_device *dev)
1498{
1499 struct tile_net_priv *priv = netdev_priv(dev);
Chris Metcalff3286a32013-08-01 11:36:42 -04001500 int cpu, rc, instance;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001501
1502 mutex_lock(&tile_net_devs_for_channel_mutex);
1503
Chris Metcalff3286a32013-08-01 11:36:42 -04001504 /* Get the instance info. */
1505 rc = gxio_mpipe_link_instance(dev->name);
Wei Yongjun1155e962013-08-05 12:42:00 +08001506 if (rc < 0 || rc >= NR_MPIPE_MAX) {
1507 mutex_unlock(&tile_net_devs_for_channel_mutex);
Chris Metcalff3286a32013-08-01 11:36:42 -04001508 return -EIO;
Wei Yongjun1155e962013-08-05 12:42:00 +08001509 }
Chris Metcalff3286a32013-08-01 11:36:42 -04001510
1511 priv->instance = rc;
1512 instance = rc;
1513 if (!mpipe_data[rc].context.mmio_fast_base) {
1514 /* Do one-time initialization per instance the first time
1515 * any device is opened.
1516 */
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001517 rc = tile_net_init_mpipe(dev);
1518 if (rc != 0)
1519 goto fail;
1520 }
1521
1522 /* Determine if this is the "loopify" device. */
1523 if (unlikely((loopify_link_name != NULL) &&
1524 !strcmp(dev->name, loopify_link_name))) {
1525 rc = tile_net_link_open(dev, &priv->link, "loop0");
1526 if (rc < 0)
1527 goto fail;
1528 priv->channel = rc;
1529 rc = tile_net_link_open(dev, &priv->loopify_link, "loop1");
1530 if (rc < 0)
1531 goto fail;
1532 priv->loopify_channel = rc;
1533 priv->echannel = rc;
1534 } else {
1535 rc = tile_net_link_open(dev, &priv->link, dev->name);
1536 if (rc < 0)
1537 goto fail;
1538 priv->channel = rc;
1539 priv->echannel = rc;
1540 }
1541
1542 /* Initialize egress info (if needed). Once ever, per echannel. */
1543 rc = tile_net_init_egress(dev, priv->echannel);
1544 if (rc != 0)
1545 goto fail;
1546
Chris Metcalff3286a32013-08-01 11:36:42 -04001547 mpipe_data[instance].tile_net_devs_for_channel[priv->channel] = dev;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001548
1549 rc = tile_net_update(dev);
1550 if (rc != 0)
1551 goto fail;
1552
1553 mutex_unlock(&tile_net_devs_for_channel_mutex);
1554
1555 /* Initialize the transmit wake timer for this device for each cpu. */
1556 for_each_online_cpu(cpu) {
1557 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
1558 struct tile_net_tx_wake *tx_wake =
Chris Metcalff3286a32013-08-01 11:36:42 -04001559 &info->mpipe[instance].tx_wake[priv->echannel];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001560
1561 hrtimer_init(&tx_wake->timer, CLOCK_MONOTONIC,
1562 HRTIMER_MODE_REL);
Chris Metcalf9b4c3412012-07-01 14:43:47 -04001563 tx_wake->tx_queue_idx = cpu;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001564 tx_wake->timer.function = tile_net_handle_tx_wake_timer;
1565 tx_wake->dev = dev;
1566 }
1567
1568 for_each_online_cpu(cpu)
1569 netif_start_subqueue(dev, cpu);
1570 netif_carrier_on(dev);
1571 return 0;
1572
1573fail:
1574 if (priv->loopify_channel >= 0) {
1575 if (gxio_mpipe_link_close(&priv->loopify_link) != 0)
1576 netdev_warn(dev, "Failed to close loopify link!\n");
1577 priv->loopify_channel = -1;
1578 }
1579 if (priv->channel >= 0) {
1580 if (gxio_mpipe_link_close(&priv->link) != 0)
1581 netdev_warn(dev, "Failed to close link!\n");
1582 priv->channel = -1;
1583 }
1584 priv->echannel = -1;
Chris Metcalff3286a32013-08-01 11:36:42 -04001585 mpipe_data[instance].tile_net_devs_for_channel[priv->channel] = NULL;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001586 mutex_unlock(&tile_net_devs_for_channel_mutex);
1587
1588 /* Don't return raw gxio error codes to generic Linux. */
1589 return (rc > -512) ? rc : -EIO;
1590}
1591
1592/* Help the kernel deactivate the given network interface. */
1593static int tile_net_stop(struct net_device *dev)
1594{
1595 struct tile_net_priv *priv = netdev_priv(dev);
1596 int cpu;
Chris Metcalff3286a32013-08-01 11:36:42 -04001597 int instance = priv->instance;
1598 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001599
1600 for_each_online_cpu(cpu) {
1601 struct tile_net_info *info = &per_cpu(per_cpu_info, cpu);
1602 struct tile_net_tx_wake *tx_wake =
Chris Metcalff3286a32013-08-01 11:36:42 -04001603 &info->mpipe[instance].tx_wake[priv->echannel];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001604
1605 hrtimer_cancel(&tx_wake->timer);
1606 netif_stop_subqueue(dev, cpu);
1607 }
1608
1609 mutex_lock(&tile_net_devs_for_channel_mutex);
Chris Metcalff3286a32013-08-01 11:36:42 -04001610 md->tile_net_devs_for_channel[priv->channel] = NULL;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001611 (void)tile_net_update(dev);
1612 if (priv->loopify_channel >= 0) {
1613 if (gxio_mpipe_link_close(&priv->loopify_link) != 0)
1614 netdev_warn(dev, "Failed to close loopify link!\n");
1615 priv->loopify_channel = -1;
1616 }
1617 if (priv->channel >= 0) {
1618 if (gxio_mpipe_link_close(&priv->link) != 0)
1619 netdev_warn(dev, "Failed to close link!\n");
1620 priv->channel = -1;
1621 }
1622 priv->echannel = -1;
1623 mutex_unlock(&tile_net_devs_for_channel_mutex);
1624
1625 return 0;
1626}
1627
1628/* Determine the VA for a fragment. */
1629static inline void *tile_net_frag_buf(skb_frag_t *f)
1630{
1631 unsigned long pfn = page_to_pfn(skb_frag_page(f));
1632 return pfn_to_kaddr(pfn) + f->page_offset;
1633}
1634
1635/* Acquire a completion entry and an egress slot, or if we can't,
1636 * stop the queue and schedule the tx_wake timer.
1637 */
1638static s64 tile_net_equeue_try_reserve(struct net_device *dev,
Chris Metcalf9b4c3412012-07-01 14:43:47 -04001639 int tx_queue_idx,
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001640 struct tile_net_comps *comps,
1641 gxio_mpipe_equeue_t *equeue,
1642 int num_edescs)
1643{
1644 /* Try to acquire a completion entry. */
1645 if (comps->comp_next - comps->comp_last < TILE_NET_MAX_COMPS - 1 ||
1646 tile_net_free_comps(equeue, comps, 32, false) != 0) {
1647
1648 /* Try to acquire an egress slot. */
1649 s64 slot = gxio_mpipe_equeue_try_reserve(equeue, num_edescs);
1650 if (slot >= 0)
1651 return slot;
1652
1653 /* Freeing some completions gives the equeue time to drain. */
1654 tile_net_free_comps(equeue, comps, TILE_NET_MAX_COMPS, false);
1655
1656 slot = gxio_mpipe_equeue_try_reserve(equeue, num_edescs);
1657 if (slot >= 0)
1658 return slot;
1659 }
1660
1661 /* Still nothing; give up and stop the queue for a short while. */
Chris Metcalf9b4c3412012-07-01 14:43:47 -04001662 netif_stop_subqueue(dev, tx_queue_idx);
1663 tile_net_schedule_tx_wake_timer(dev, tx_queue_idx);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001664 return -1;
1665}
1666
1667/* Determine how many edesc's are needed for TSO.
1668 *
1669 * Sometimes, if "sendfile()" requires copying, we will be called with
1670 * "data" containing the header and payload, with "frags" being empty.
1671 * Sometimes, for example when using NFS over TCP, a single segment can
1672 * span 3 fragments. This requires special care.
1673 */
1674static int tso_count_edescs(struct sk_buff *skb)
1675{
1676 struct skb_shared_info *sh = skb_shinfo(skb);
Chris Metcalf83885462012-07-11 14:08:21 -04001677 unsigned int sh_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001678 unsigned int data_len = skb->len - sh_len;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001679 unsigned int p_len = sh->gso_size;
1680 long f_id = -1; /* id of the current fragment */
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001681 long f_size = skb_headlen(skb) - sh_len; /* current fragment size */
1682 long f_used = 0; /* bytes used from the current fragment */
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001683 long n; /* size of the current piece of payload */
1684 int num_edescs = 0;
1685 int segment;
1686
1687 for (segment = 0; segment < sh->gso_segs; segment++) {
1688
1689 unsigned int p_used = 0;
1690
1691 /* One edesc for header and for each piece of the payload. */
1692 for (num_edescs++; p_used < p_len; num_edescs++) {
1693
1694 /* Advance as needed. */
1695 while (f_used >= f_size) {
1696 f_id++;
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001697 f_size = skb_frag_size(&sh->frags[f_id]);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001698 f_used = 0;
1699 }
1700
1701 /* Use bytes from the current fragment. */
1702 n = p_len - p_used;
1703 if (n > f_size - f_used)
1704 n = f_size - f_used;
1705 f_used += n;
1706 p_used += n;
1707 }
1708
1709 /* The last segment may be less than gso_size. */
1710 data_len -= p_len;
1711 if (data_len < p_len)
1712 p_len = data_len;
1713 }
1714
1715 return num_edescs;
1716}
1717
Chris Metcalf2c7d04a2013-08-01 11:36:42 -04001718/* Prepare modified copies of the skbuff headers. */
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001719static void tso_headers_prepare(struct sk_buff *skb, unsigned char *headers,
1720 s64 slot)
1721{
1722 struct skb_shared_info *sh = skb_shinfo(skb);
1723 struct iphdr *ih;
Chris Metcalf2c7d04a2013-08-01 11:36:42 -04001724 struct ipv6hdr *ih6;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001725 struct tcphdr *th;
Chris Metcalf83885462012-07-11 14:08:21 -04001726 unsigned int sh_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001727 unsigned int data_len = skb->len - sh_len;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001728 unsigned char *data = skb->data;
Chris Metcalf83885462012-07-11 14:08:21 -04001729 unsigned int ih_off, th_off, p_len;
Chris Metcalf444fa882013-09-09 14:11:54 -04001730 unsigned int isum_seed, tsum_seed, seq;
1731 unsigned int uninitialized_var(id);
Chris Metcalf2c7d04a2013-08-01 11:36:42 -04001732 int is_ipv6;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001733 long f_id = -1; /* id of the current fragment */
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001734 long f_size = skb_headlen(skb) - sh_len; /* current fragment size */
1735 long f_used = 0; /* bytes used from the current fragment */
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001736 long n; /* size of the current piece of payload */
1737 int segment;
1738
1739 /* Locate original headers and compute various lengths. */
Chris Metcalf2c7d04a2013-08-01 11:36:42 -04001740 is_ipv6 = skb_is_gso_v6(skb);
1741 if (is_ipv6) {
1742 ih6 = ipv6_hdr(skb);
1743 ih_off = skb_network_offset(skb);
1744 } else {
1745 ih = ip_hdr(skb);
1746 ih_off = skb_network_offset(skb);
1747 isum_seed = ((0xFFFF - ih->check) +
1748 (0xFFFF - ih->tot_len) +
1749 (0xFFFF - ih->id));
1750 id = ntohs(ih->id);
1751 }
1752
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001753 th = tcp_hdr(skb);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001754 th_off = skb_transport_offset(skb);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001755 p_len = sh->gso_size;
1756
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001757 tsum_seed = th->check + (0xFFFF ^ htons(skb->len));
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001758 seq = ntohl(th->seq);
1759
1760 /* Prepare all the headers. */
1761 for (segment = 0; segment < sh->gso_segs; segment++) {
1762 unsigned char *buf;
1763 unsigned int p_used = 0;
1764
1765 /* Copy to the header memory for this segment. */
1766 buf = headers + (slot % EQUEUE_ENTRIES) * HEADER_BYTES +
1767 NET_IP_ALIGN;
1768 memcpy(buf, data, sh_len);
1769
1770 /* Update copied ip header. */
Chris Metcalf2c7d04a2013-08-01 11:36:42 -04001771 if (is_ipv6) {
1772 ih6 = (struct ipv6hdr *)(buf + ih_off);
1773 ih6->payload_len = htons(sh_len + p_len - ih_off -
1774 sizeof(*ih6));
1775 } else {
1776 ih = (struct iphdr *)(buf + ih_off);
1777 ih->tot_len = htons(sh_len + p_len - ih_off);
Chris Metcalf444fa882013-09-09 14:11:54 -04001778 ih->id = htons(id++);
Chris Metcalf2c7d04a2013-08-01 11:36:42 -04001779 ih->check = csum_long(isum_seed + ih->tot_len +
1780 ih->id) ^ 0xffff;
1781 }
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001782
1783 /* Update copied tcp header. */
1784 th = (struct tcphdr *)(buf + th_off);
1785 th->seq = htonl(seq);
1786 th->check = csum_long(tsum_seed + htons(sh_len + p_len));
1787 if (segment != sh->gso_segs - 1) {
1788 th->fin = 0;
1789 th->psh = 0;
1790 }
1791
1792 /* Skip past the header. */
1793 slot++;
1794
1795 /* Skip past the payload. */
1796 while (p_used < p_len) {
1797
1798 /* Advance as needed. */
1799 while (f_used >= f_size) {
1800 f_id++;
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001801 f_size = skb_frag_size(&sh->frags[f_id]);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001802 f_used = 0;
1803 }
1804
1805 /* Use bytes from the current fragment. */
1806 n = p_len - p_used;
1807 if (n > f_size - f_used)
1808 n = f_size - f_used;
1809 f_used += n;
1810 p_used += n;
1811
1812 slot++;
1813 }
1814
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001815 seq += p_len;
1816
1817 /* The last segment may be less than gso_size. */
1818 data_len -= p_len;
1819 if (data_len < p_len)
1820 p_len = data_len;
1821 }
1822
1823 /* Flush the headers so they are ready for hardware DMA. */
1824 wmb();
1825}
1826
1827/* Pass all the data to mpipe for egress. */
1828static void tso_egress(struct net_device *dev, gxio_mpipe_equeue_t *equeue,
1829 struct sk_buff *skb, unsigned char *headers, s64 slot)
1830{
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001831 struct skb_shared_info *sh = skb_shinfo(skb);
Chris Metcalff3286a32013-08-01 11:36:42 -04001832 int instance = mpipe_instance(dev);
1833 struct mpipe_data *md = &mpipe_data[instance];
Chris Metcalf83885462012-07-11 14:08:21 -04001834 unsigned int sh_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001835 unsigned int data_len = skb->len - sh_len;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001836 unsigned int p_len = sh->gso_size;
1837 gxio_mpipe_edesc_t edesc_head = { { 0 } };
1838 gxio_mpipe_edesc_t edesc_body = { { 0 } };
1839 long f_id = -1; /* id of the current fragment */
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001840 long f_size = skb_headlen(skb) - sh_len; /* current fragment size */
1841 long f_used = 0; /* bytes used from the current fragment */
1842 void *f_data = skb->data + sh_len;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001843 long n; /* size of the current piece of payload */
1844 unsigned long tx_packets = 0, tx_bytes = 0;
Chris Metcalf83885462012-07-11 14:08:21 -04001845 unsigned int csum_start;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001846 int segment;
1847
1848 /* Prepare to egress the headers: set up header edesc. */
1849 csum_start = skb_checksum_start_offset(skb);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001850 edesc_head.csum = 1;
1851 edesc_head.csum_start = csum_start;
1852 edesc_head.csum_dest = csum_start + skb->csum_offset;
1853 edesc_head.xfer_size = sh_len;
1854
1855 /* This is only used to specify the TLB. */
Chris Metcalff3286a32013-08-01 11:36:42 -04001856 edesc_head.stack_idx = md->first_buffer_stack;
1857 edesc_body.stack_idx = md->first_buffer_stack;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001858
1859 /* Egress all the edescs. */
1860 for (segment = 0; segment < sh->gso_segs; segment++) {
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001861 unsigned char *buf;
1862 unsigned int p_used = 0;
1863
1864 /* Egress the header. */
1865 buf = headers + (slot % EQUEUE_ENTRIES) * HEADER_BYTES +
1866 NET_IP_ALIGN;
1867 edesc_head.va = va_to_tile_io_addr(buf);
1868 gxio_mpipe_equeue_put_at(equeue, edesc_head, slot);
1869 slot++;
1870
1871 /* Egress the payload. */
1872 while (p_used < p_len) {
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001873 void *va;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001874
1875 /* Advance as needed. */
1876 while (f_used >= f_size) {
1877 f_id++;
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001878 f_size = skb_frag_size(&sh->frags[f_id]);
Chris Metcalf83885462012-07-11 14:08:21 -04001879 f_data = tile_net_frag_buf(&sh->frags[f_id]);
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001880 f_used = 0;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001881 }
1882
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001883 va = f_data + f_used;
1884
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001885 /* Use bytes from the current fragment. */
1886 n = p_len - p_used;
1887 if (n > f_size - f_used)
1888 n = f_size - f_used;
1889 f_used += n;
1890 p_used += n;
1891
1892 /* Egress a piece of the payload. */
Chris Metcalf3da3fff2012-10-25 07:25:20 +00001893 edesc_body.va = va_to_tile_io_addr(va);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001894 edesc_body.xfer_size = n;
1895 edesc_body.bound = !(p_used < p_len);
1896 gxio_mpipe_equeue_put_at(equeue, edesc_body, slot);
1897 slot++;
1898 }
1899
1900 tx_packets++;
1901 tx_bytes += sh_len + p_len;
1902
1903 /* The last segment may be less than gso_size. */
1904 data_len -= p_len;
1905 if (data_len < p_len)
1906 p_len = data_len;
1907 }
1908
1909 /* Update stats. */
Chris Metcalfad018182013-08-01 11:36:42 -04001910 tile_net_stats_add(tx_packets, &dev->stats.tx_packets);
1911 tile_net_stats_add(tx_bytes, &dev->stats.tx_bytes);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001912}
1913
1914/* Do "TSO" handling for egress.
1915 *
1916 * Normally drivers set NETIF_F_TSO only to support hardware TSO;
1917 * otherwise the stack uses scatter-gather to implement GSO in software.
1918 * On our testing, enabling GSO support (via NETIF_F_SG) drops network
1919 * performance down to around 7.5 Gbps on the 10G interfaces, although
1920 * also dropping cpu utilization way down, to under 8%. But
1921 * implementing "TSO" in the driver brings performance back up to line
1922 * rate, while dropping cpu usage even further, to less than 4%. In
1923 * practice, profiling of GSO shows that skb_segment() is what causes
1924 * the performance overheads; we benefit in the driver from using
1925 * preallocated memory to duplicate the TCP/IP headers.
1926 */
1927static int tile_net_tx_tso(struct sk_buff *skb, struct net_device *dev)
1928{
Christoph Lametereee84922014-08-17 12:30:38 -05001929 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001930 struct tile_net_priv *priv = netdev_priv(dev);
1931 int channel = priv->echannel;
Chris Metcalff3286a32013-08-01 11:36:42 -04001932 int instance = priv->instance;
1933 struct mpipe_data *md = &mpipe_data[instance];
1934 struct tile_net_egress *egress = &md->egress_for_echannel[channel];
1935 struct tile_net_comps *comps =
1936 info->mpipe[instance].comps_for_echannel[channel];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001937 gxio_mpipe_equeue_t *equeue = egress->equeue;
1938 unsigned long irqflags;
1939 int num_edescs;
1940 s64 slot;
1941
1942 /* Determine how many mpipe edesc's are needed. */
1943 num_edescs = tso_count_edescs(skb);
1944
1945 local_irq_save(irqflags);
1946
1947 /* Try to acquire a completion entry and an egress slot. */
Chris Metcalf9b4c3412012-07-01 14:43:47 -04001948 slot = tile_net_equeue_try_reserve(dev, skb->queue_mapping, comps,
1949 equeue, num_edescs);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001950 if (slot < 0) {
1951 local_irq_restore(irqflags);
1952 return NETDEV_TX_BUSY;
1953 }
1954
1955 /* Set up copies of header data properly. */
1956 tso_headers_prepare(skb, egress->headers, slot);
1957
1958 /* Actually pass the data to the network hardware. */
1959 tso_egress(dev, equeue, skb, egress->headers, slot);
1960
1961 /* Add a completion record. */
1962 add_comp(equeue, comps, slot + num_edescs - 1, skb);
1963
1964 local_irq_restore(irqflags);
1965
1966 /* Make sure the egress timer is scheduled. */
1967 tile_net_schedule_egress_timer();
1968
1969 return NETDEV_TX_OK;
1970}
1971
1972/* Analyze the body and frags for a transmit request. */
1973static unsigned int tile_net_tx_frags(struct frag *frags,
1974 struct sk_buff *skb,
1975 void *b_data, unsigned int b_len)
1976{
1977 unsigned int i, n = 0;
1978
1979 struct skb_shared_info *sh = skb_shinfo(skb);
1980
1981 if (b_len != 0) {
1982 frags[n].buf = b_data;
1983 frags[n++].length = b_len;
1984 }
1985
1986 for (i = 0; i < sh->nr_frags; i++) {
1987 skb_frag_t *f = &sh->frags[i];
1988 frags[n].buf = tile_net_frag_buf(f);
1989 frags[n++].length = skb_frag_size(f);
1990 }
1991
1992 return n;
1993}
1994
1995/* Help the kernel transmit a packet. */
1996static int tile_net_tx(struct sk_buff *skb, struct net_device *dev)
1997{
Christoph Lameter70b27762014-08-17 12:30:33 -05001998 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00001999 struct tile_net_priv *priv = netdev_priv(dev);
Chris Metcalff3286a32013-08-01 11:36:42 -04002000 int instance = priv->instance;
2001 struct mpipe_data *md = &mpipe_data[instance];
2002 struct tile_net_egress *egress =
2003 &md->egress_for_echannel[priv->echannel];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002004 gxio_mpipe_equeue_t *equeue = egress->equeue;
2005 struct tile_net_comps *comps =
Chris Metcalff3286a32013-08-01 11:36:42 -04002006 info->mpipe[instance].comps_for_echannel[priv->echannel];
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002007 unsigned int len = skb->len;
2008 unsigned char *data = skb->data;
2009 unsigned int num_edescs;
2010 struct frag frags[MAX_FRAGS];
2011 gxio_mpipe_edesc_t edescs[MAX_FRAGS];
2012 unsigned long irqflags;
2013 gxio_mpipe_edesc_t edesc = { { 0 } };
2014 unsigned int i;
2015 s64 slot;
2016
2017 if (skb_is_gso(skb))
2018 return tile_net_tx_tso(skb, dev);
2019
2020 num_edescs = tile_net_tx_frags(frags, skb, data, skb_headlen(skb));
2021
2022 /* This is only used to specify the TLB. */
Chris Metcalff3286a32013-08-01 11:36:42 -04002023 edesc.stack_idx = md->first_buffer_stack;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002024
2025 /* Prepare the edescs. */
2026 for (i = 0; i < num_edescs; i++) {
2027 edesc.xfer_size = frags[i].length;
2028 edesc.va = va_to_tile_io_addr(frags[i].buf);
2029 edescs[i] = edesc;
2030 }
2031
2032 /* Mark the final edesc. */
2033 edescs[num_edescs - 1].bound = 1;
2034
2035 /* Add checksum info to the initial edesc, if needed. */
2036 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2037 unsigned int csum_start = skb_checksum_start_offset(skb);
2038 edescs[0].csum = 1;
2039 edescs[0].csum_start = csum_start;
2040 edescs[0].csum_dest = csum_start + skb->csum_offset;
2041 }
2042
2043 local_irq_save(irqflags);
2044
2045 /* Try to acquire a completion entry and an egress slot. */
Chris Metcalf9b4c3412012-07-01 14:43:47 -04002046 slot = tile_net_equeue_try_reserve(dev, skb->queue_mapping, comps,
2047 equeue, num_edescs);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002048 if (slot < 0) {
2049 local_irq_restore(irqflags);
2050 return NETDEV_TX_BUSY;
2051 }
2052
2053 for (i = 0; i < num_edescs; i++)
2054 gxio_mpipe_equeue_put_at(equeue, edescs[i], slot++);
2055
Chris Metcalf9ab5ec52013-08-01 11:36:42 -04002056 /* Store TX timestamp if needed. */
2057 tile_tx_timestamp(skb, instance);
2058
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002059 /* Add a completion record. */
2060 add_comp(equeue, comps, slot - 1, skb);
2061
2062 /* NOTE: Use ETH_ZLEN for short packets (e.g. 42 < 60). */
Chris Metcalfad018182013-08-01 11:36:42 -04002063 tile_net_stats_add(1, &dev->stats.tx_packets);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002064 tile_net_stats_add(max_t(unsigned int, len, ETH_ZLEN),
Chris Metcalfad018182013-08-01 11:36:42 -04002065 &dev->stats.tx_bytes);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002066
2067 local_irq_restore(irqflags);
2068
2069 /* Make sure the egress timer is scheduled. */
2070 tile_net_schedule_egress_timer();
2071
2072 return NETDEV_TX_OK;
2073}
2074
2075/* Return subqueue id on this core (one per core). */
Jason Wangf663dd92014-01-10 16:18:26 +08002076static u16 tile_net_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +01002077 void *accel_priv, select_queue_fallback_t fallback)
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002078{
2079 return smp_processor_id();
2080}
2081
2082/* Deal with a transmit timeout. */
2083static void tile_net_tx_timeout(struct net_device *dev)
2084{
2085 int cpu;
2086
2087 for_each_online_cpu(cpu)
2088 netif_wake_subqueue(dev, cpu);
2089}
2090
2091/* Ioctl commands. */
2092static int tile_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2093{
Chris Metcalf9ab5ec52013-08-01 11:36:42 -04002094 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings6ab96d12013-11-18 23:25:20 +00002095 return tile_hwtstamp_set(dev, rq);
2096 if (cmd == SIOCGHWTSTAMP)
2097 return tile_hwtstamp_get(dev, rq);
Chris Metcalf9ab5ec52013-08-01 11:36:42 -04002098
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002099 return -EOPNOTSUPP;
2100}
2101
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002102/* Change the MTU. */
2103static int tile_net_change_mtu(struct net_device *dev, int new_mtu)
2104{
Chris Metcalf2628e8a2013-08-01 11:36:42 -04002105 if (new_mtu < 68)
2106 return -EINVAL;
2107 if (new_mtu > ((jumbo_num != 0) ? 9000 : 1500))
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002108 return -EINVAL;
2109 dev->mtu = new_mtu;
2110 return 0;
2111}
2112
2113/* Change the Ethernet address of the NIC.
2114 *
2115 * The hypervisor driver does not support changing MAC address. However,
2116 * the hardware does not do anything with the MAC address, so the address
2117 * which gets used on outgoing packets, and which is accepted on incoming
2118 * packets, is completely up to us.
2119 *
2120 * Returns 0 on success, negative on failure.
2121 */
2122static int tile_net_set_mac_address(struct net_device *dev, void *p)
2123{
2124 struct sockaddr *addr = p;
2125
2126 if (!is_valid_ether_addr(addr->sa_data))
2127 return -EINVAL;
2128 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2129 return 0;
2130}
2131
2132#ifdef CONFIG_NET_POLL_CONTROLLER
2133/* Polling 'interrupt' - used by things like netconsole to send skbs
2134 * without having to re-enable interrupts. It's not called while
2135 * the interrupt routine is executing.
2136 */
2137static void tile_net_netpoll(struct net_device *dev)
2138{
Chris Metcalff3286a32013-08-01 11:36:42 -04002139 int instance = mpipe_instance(dev);
Christoph Lameter70b27762014-08-17 12:30:33 -05002140 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalff3286a32013-08-01 11:36:42 -04002141 struct mpipe_data *md = &mpipe_data[instance];
2142
2143 disable_percpu_irq(md->ingress_irq);
2144 napi_schedule(&info->mpipe[instance].napi);
2145 enable_percpu_irq(md->ingress_irq, 0);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002146}
2147#endif
2148
2149static const struct net_device_ops tile_net_ops = {
2150 .ndo_open = tile_net_open,
2151 .ndo_stop = tile_net_stop,
2152 .ndo_start_xmit = tile_net_tx,
2153 .ndo_select_queue = tile_net_select_queue,
2154 .ndo_do_ioctl = tile_net_ioctl,
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002155 .ndo_change_mtu = tile_net_change_mtu,
2156 .ndo_tx_timeout = tile_net_tx_timeout,
2157 .ndo_set_mac_address = tile_net_set_mac_address,
2158#ifdef CONFIG_NET_POLL_CONTROLLER
2159 .ndo_poll_controller = tile_net_netpoll,
2160#endif
2161};
2162
2163/* The setup function.
2164 *
2165 * This uses ether_setup() to assign various fields in dev, including
2166 * setting IFF_BROADCAST and IFF_MULTICAST, then sets some extra fields.
2167 */
2168static void tile_net_setup(struct net_device *dev)
2169{
Chris Metcalfa8eaed52013-08-01 11:36:42 -04002170 netdev_features_t features = 0;
2171
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002172 ether_setup(dev);
2173 dev->netdev_ops = &tile_net_ops;
2174 dev->watchdog_timeo = TILE_NET_TIMEOUT;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002175 dev->mtu = 1500;
Chris Metcalfa8eaed52013-08-01 11:36:42 -04002176
Chris Metcalfa8eaed52013-08-01 11:36:42 -04002177 features |= NETIF_F_HW_CSUM;
2178 features |= NETIF_F_SG;
2179 features |= NETIF_F_TSO;
Chris Metcalf2c7d04a2013-08-01 11:36:42 -04002180 features |= NETIF_F_TSO6;
Chris Metcalfa8eaed52013-08-01 11:36:42 -04002181
2182 dev->hw_features |= features;
2183 dev->vlan_features |= features;
2184 dev->features |= features;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002185}
2186
2187/* Allocate the device structure, register the device, and obtain the
2188 * MAC address from the hypervisor.
2189 */
2190static void tile_net_dev_init(const char *name, const uint8_t *mac)
2191{
2192 int ret;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002193 struct net_device *dev;
2194 struct tile_net_priv *priv;
2195
2196 /* HACK: Ignore "loop" links. */
2197 if (strncmp(name, "loop", 4) == 0)
2198 return;
2199
2200 /* Allocate the device structure. Normally, "name" is a
2201 * template, instantiated by register_netdev(), but not for us.
2202 */
Tom Gundersenc835a672014-07-14 16:37:24 +02002203 dev = alloc_netdev_mqs(sizeof(*priv), name, NET_NAME_UNKNOWN,
2204 tile_net_setup, NR_CPUS, 1);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002205 if (!dev) {
2206 pr_err("alloc_netdev_mqs(%s) failed\n", name);
2207 return;
2208 }
2209
2210 /* Initialize "priv". */
2211 priv = netdev_priv(dev);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002212 priv->dev = dev;
2213 priv->channel = -1;
2214 priv->loopify_channel = -1;
2215 priv->echannel = -1;
Chris Metcalf9ab5ec52013-08-01 11:36:42 -04002216 init_ptp_dev(priv);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002217
2218 /* Get the MAC address and set it in the device struct; this must
2219 * be done before the device is opened. If the MAC is all zeroes,
2220 * we use a random address, since we're probably on the simulator.
2221 */
Tobias Klauserd581ebf2014-05-30 09:47:17 +02002222 if (!is_zero_ether_addr(mac))
2223 ether_addr_copy(dev->dev_addr, mac);
2224 else
Chris Metcalfc8ab13f2012-07-18 12:23:06 -04002225 eth_hw_addr_random(dev);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002226
2227 /* Register the network device. */
2228 ret = register_netdev(dev);
2229 if (ret) {
2230 netdev_err(dev, "register_netdev failed %d\n", ret);
2231 free_netdev(dev);
2232 return;
2233 }
2234}
2235
2236/* Per-cpu module initialization. */
2237static void tile_net_init_module_percpu(void *unused)
2238{
Christoph Lameter70b27762014-08-17 12:30:33 -05002239 struct tile_net_info *info = this_cpu_ptr(&per_cpu_info);
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002240 int my_cpu = smp_processor_id();
Chris Metcalff3286a32013-08-01 11:36:42 -04002241 int instance;
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002242
Chris Metcalff3286a32013-08-01 11:36:42 -04002243 for (instance = 0; instance < NR_MPIPE_MAX; instance++) {
2244 info->mpipe[instance].has_iqueue = false;
2245 info->mpipe[instance].instance = instance;
2246 }
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002247 info->my_cpu = my_cpu;
2248
2249 /* Initialize the egress timer. */
2250 hrtimer_init(&info->egress_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2251 info->egress_timer.function = tile_net_handle_egress_timer;
2252}
2253
2254/* Module initialization. */
2255static int __init tile_net_init_module(void)
2256{
2257 int i;
2258 char name[GXIO_MPIPE_LINK_NAME_LEN];
2259 uint8_t mac[6];
2260
2261 pr_info("Tilera Network Driver\n");
2262
Chris Metcalff3286a32013-08-01 11:36:42 -04002263 BUILD_BUG_ON(NR_MPIPE_MAX != 2);
2264
Chris Metcalfe3d62d72012-06-07 10:45:02 +00002265 mutex_init(&tile_net_devs_for_channel_mutex);
2266
2267 /* Initialize each CPU. */
2268 on_each_cpu(tile_net_init_module_percpu, NULL, 1);
2269
2270 /* Find out what devices we have, and initialize them. */
2271 for (i = 0; gxio_mpipe_link_enumerate_mac(i, name, mac) >= 0; i++)
2272 tile_net_dev_init(name, mac);
2273
2274 if (!network_cpus_init())
2275 network_cpus_map = *cpu_online_mask;
2276
2277 return 0;
2278}
2279
2280module_init(tile_net_init_module);