2 * Copyright 2011 Tilera Corporation. All Rights Reserved.
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.
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
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>
25 #include <linux/netdevice.h> /* struct device, and other headers */
26 #include <linux/etherdevice.h> /* eth_type_trans */
27 #include <linux/skbuff.h>
28 #include <linux/ioctl.h>
29 #include <linux/cdev.h>
30 #include <linux/hugetlb.h>
31 #include <linux/in6.h>
32 #include <linux/timer.h>
34 #include <asm/checksum.h>
35 #include <asm/homecache.h>
37 #include <hv/drv_xgbe_intf.h>
38 #include <hv/drv_xgbe_impl.h>
39 #include <hv/hypervisor.h>
40 #include <hv/netio_intf.h>
44 #include <linux/tcp.h>
48 * First, "tile_net_init_module()" initializes all four "devices" which
49 * can be used by linux.
51 * Then, "ifconfig DEVICE up" calls "tile_net_open()", which analyzes
52 * the network cpus, then uses "tile_net_open_aux()" to initialize
53 * LIPP/LEPP, and then uses "tile_net_open_inner()" to register all
54 * the tiles, provide buffers to LIPP, allow ingress to start, and
55 * turn on hypervisor interrupt handling (and NAPI) on all tiles.
57 * If registration fails due to the link being down, then "retry_work"
58 * is used to keep calling "tile_net_open_inner()" until it succeeds.
60 * If "ifconfig DEVICE down" is called, it uses "tile_net_stop()" to
61 * stop egress, drain the LIPP buffers, unregister all the tiles, stop
62 * LIPP/LEPP, and wipe the LEPP queue.
64 * We start out with the ingress interrupt enabled on each CPU. When
65 * this interrupt fires, we disable it, and call "napi_schedule()".
66 * This will cause "tile_net_poll()" to be called, which will pull
67 * packets from the netio queue, filtering them out, or passing them
68 * to "netif_receive_skb()". If our budget is exhausted, we will
69 * return, knowing we will be called again later. Otherwise, we
70 * reenable the ingress interrupt, and call "napi_complete()".
72 * HACK: Since disabling the ingress interrupt is not reliable, we
73 * ignore the interrupt if the global "active" flag is false.
76 * NOTE: The use of "native_driver" ensures that EPP exists, and that
77 * we are using "LIPP" and "LEPP".
79 * NOTE: Failing to free completions for an arbitrarily long time
80 * (which is defined to be illegal) does in fact cause bizarre
81 * problems. The "egress_timer" helps prevent this from happening.
85 /* HACK: Allow use of "jumbo" packets. */
86 /* This should be 1500 if "jumbo" is not set in LIPP. */
87 /* This should be at most 10226 (10240 - 14) if "jumbo" is set in LIPP. */
88 /* ISSUE: This has not been thoroughly tested (except at 1500). */
89 #define TILE_NET_MTU 1500
91 /* HACK: Define to support GSO. */
92 /* ISSUE: This may actually hurt performance of the TCP blaster. */
93 /* #define TILE_NET_GSO */
95 /* Define this to collapse "duplicate" acks. */
96 /* #define IGNORE_DUP_ACKS */
98 /* HACK: Define this to verify incoming packets. */
99 /* #define TILE_NET_VERIFY_INGRESS */
101 /* Use 3000 to enable the Linux Traffic Control (QoS) layer, else 0. */
102 #define TILE_NET_TX_QUEUE_LEN 0
104 /* Define to dump packets (prints out the whole packet on tx and rx). */
105 /* #define TILE_NET_DUMP_PACKETS */
107 /* Define to enable debug spew (all PDEBUG's are enabled). */
108 /* #define TILE_NET_DEBUG */
111 /* Define to activate paranoia checks. */
112 /* #define TILE_NET_PARANOIA */
114 /* Default transmit lockup timeout period, in jiffies. */
115 #define TILE_NET_TIMEOUT (5 * HZ)
117 /* Default retry interval for bringing up the NetIO interface, in jiffies. */
118 #define TILE_NET_RETRY_INTERVAL (5 * HZ)
120 /* Number of ports (xgbe0, xgbe1, gbe0, gbe1). */
121 #define TILE_NET_DEVS 4
126 #if NET_IP_ALIGN != LIPP_PACKET_PADDING
127 #error "NET_IP_ALIGN must match LIPP_PACKET_PADDING."
132 #ifdef TILE_NET_DEBUG
133 #define PDEBUG(fmt, args...) net_printk(fmt, ## args)
135 #define PDEBUG(fmt, args...)
139 MODULE_AUTHOR("Tilera");
140 MODULE_LICENSE("GPL");
144 * Queue of incoming packets for a specific cpu and device.
146 * Includes a pointer to the "system" data, and the actual "user" data.
148 struct tile_netio_queue
{
149 netio_queue_impl_t
*__system_part
;
150 netio_queue_user_impl_t __user_part
;
156 * Statistics counters for a specific cpu and device.
158 struct tile_net_stats_t
{
167 * Info for a specific cpu and device.
169 * ISSUE: There is a "dev" pointer in "napi" as well.
171 struct tile_net_cpu
{
172 /* The NAPI struct. */
173 struct napi_struct napi
;
175 struct tile_netio_queue queue
;
177 struct tile_net_stats_t stats
;
178 /* True iff NAPI is enabled. */
180 /* True if this tile has successfully registered with the IPP. */
182 /* True if the link was down last time we tried to register. */
184 /* True if "egress_timer" is scheduled. */
185 bool egress_timer_scheduled
;
186 /* Number of small sk_buffs which must still be provided. */
187 unsigned int num_needed_small_buffers
;
188 /* Number of large sk_buffs which must still be provided. */
189 unsigned int num_needed_large_buffers
;
190 /* A timer for handling egress completions. */
191 struct timer_list egress_timer
;
196 * Info for a specific device.
198 struct tile_net_priv
{
199 /* Our network device. */
200 struct net_device
*dev
;
201 /* Pages making up the egress queue. */
202 struct page
*eq_pages
;
203 /* Address of the actual egress queue. */
207 /* The hypervisor handle for this interface. */
209 /* The intr bit mask that IDs this device. */
211 /* True iff "tile_net_open_aux()" has succeeded. */
213 /* True iff the device is "active". */
215 /* Effective network cpus. */
216 struct cpumask network_cpus_map
;
217 /* Number of network cpus. */
218 int network_cpus_count
;
219 /* Credits per network cpu. */
220 int network_cpus_credits
;
222 struct net_device_stats stats
;
223 /* For NetIO bringup retries. */
224 struct delayed_work retry_work
;
225 /* Quick access to per cpu data. */
226 struct tile_net_cpu
*cpu
[NR_CPUS
];
229 /* Log2 of the number of small pages needed for the egress queue. */
230 #define EQ_ORDER get_order(sizeof(lepp_queue_t))
231 /* Size of the egress queue's pages. */
232 #define EQ_SIZE (1 << (PAGE_SHIFT + EQ_ORDER))
235 * The actual devices (xgbe0, xgbe1, gbe0, gbe1).
237 static struct net_device
*tile_net_devs
[TILE_NET_DEVS
];
240 * The "tile_net_cpu" structures for each device.
242 static DEFINE_PER_CPU(struct tile_net_cpu
, hv_xgbe0
);
243 static DEFINE_PER_CPU(struct tile_net_cpu
, hv_xgbe1
);
244 static DEFINE_PER_CPU(struct tile_net_cpu
, hv_gbe0
);
245 static DEFINE_PER_CPU(struct tile_net_cpu
, hv_gbe1
);
249 * True if "network_cpus" was specified.
251 static bool network_cpus_used
;
254 * The actual cpus in "network_cpus".
256 static struct cpumask network_cpus_map
;
260 #ifdef TILE_NET_DEBUG
262 * printk with extra stuff.
264 * We print the CPU we're running in brackets.
266 static void net_printk(char *fmt
, ...)
271 static char buf
[256];
273 len
= sprintf(buf
, "tile_net[%2.2d]: ", smp_processor_id());
275 i
= vscnprintf(buf
+ len
, sizeof(buf
) - len
- 1, fmt
, args
);
283 #ifdef TILE_NET_DUMP_PACKETS
287 static void dump_packet(unsigned char *data
, unsigned long length
, char *s
)
289 int my_cpu
= smp_processor_id();
294 static unsigned int count
;
296 pr_info("dump_packet(data %p, length 0x%lx s %s count 0x%x)\n",
297 data
, length
, s
, count
++);
301 for (i
= 0; i
< length
; i
++) {
303 sprintf(buf
, "[%02d] %8.8lx:", my_cpu
, i
);
304 sprintf(buf
+ strlen(buf
), " %2.2x", data
[i
]);
305 if ((i
& 0xf) == 0xf || i
== length
- 1) {
315 * Provide support for the __netio_fastio1() swint
316 * (see <hv/drv_xgbe_intf.h> for how it is used).
318 * The fastio swint2 call may clobber all the caller-saved registers.
319 * It rarely clobbers memory, but we allow for the possibility in
320 * the signature just to be on the safe side.
322 * Also, gcc doesn't seem to allow an input operand to be
323 * clobbered, so we fake it with dummy outputs.
325 * This function can't be static because of the way it is declared
326 * in the netio header.
328 inline int __netio_fastio1(u32 fastio_index
, u32 arg0
)
330 long result
, clobber_r1
, clobber_r10
;
331 asm volatile("swint2"
333 "=R01" (clobber_r1
), "=R10" (clobber_r10
)
334 : "R10" (fastio_index
), "R01" (arg0
)
335 : "memory", "r2", "r3", "r4",
336 "r5", "r6", "r7", "r8", "r9",
337 "r11", "r12", "r13", "r14",
338 "r15", "r16", "r17", "r18", "r19",
339 "r20", "r21", "r22", "r23", "r24",
340 "r25", "r26", "r27", "r28", "r29");
345 static void tile_net_return_credit(struct tile_net_cpu
*info
)
347 struct tile_netio_queue
*queue
= &info
->queue
;
348 netio_queue_user_impl_t
*qup
= &queue
->__user_part
;
350 /* Return four credits after every fourth packet. */
351 if (--qup
->__receive_credit_remaining
== 0) {
352 u32 interval
= qup
->__receive_credit_interval
;
353 qup
->__receive_credit_remaining
= interval
;
354 __netio_fastio_return_credits(qup
->__fastio_index
, interval
);
361 * Provide a linux buffer to LIPP.
363 static void tile_net_provide_linux_buffer(struct tile_net_cpu
*info
,
364 void *va
, bool small
)
366 struct tile_netio_queue
*queue
= &info
->queue
;
368 /* Convert "va" and "small" to "linux_buffer_t". */
369 unsigned int buffer
= ((unsigned int)(__pa(va
) >> 7) << 1) + small
;
371 __netio_fastio_free_buffer(queue
->__user_part
.__fastio_index
, buffer
);
376 * Provide a linux buffer for LIPP.
378 * Note that the ACTUAL allocation for each buffer is a "struct sk_buff",
379 * plus a chunk of memory that includes not only the requested bytes, but
380 * also NET_SKB_PAD bytes of initial padding, and a "struct skb_shared_info".
382 * Note that "struct skb_shared_info" is 88 bytes with 64K pages and
383 * 268 bytes with 4K pages (since the frags[] array needs 18 entries).
385 * Without jumbo packets, the maximum packet size will be 1536 bytes,
386 * and we use 2 bytes (NET_IP_ALIGN) of padding. ISSUE: If we told
387 * the hardware to clip at 1518 bytes instead of 1536 bytes, then we
388 * could save an entire cache line, but in practice, we don't need it.
390 * Since CPAs are 38 bits, and we can only encode the high 31 bits in
391 * a "linux_buffer_t", the low 7 bits must be zero, and thus, we must
392 * align the actual "va" mod 128.
394 * We assume that the underlying "head" will be aligned mod 64. Note
395 * that in practice, we have seen "head" NOT aligned mod 128 even when
396 * using 2048 byte allocations, which is surprising.
398 * If "head" WAS always aligned mod 128, we could change LIPP to
399 * assume that the low SIX bits are zero, and the 7th bit is one, that
400 * is, align the actual "va" mod 128 plus 64, which would be "free".
402 * For now, the actual "head" pointer points at NET_SKB_PAD bytes of
403 * padding, plus 28 or 92 bytes of extra padding, plus the sk_buff
404 * pointer, plus the NET_IP_ALIGN padding, plus 126 or 1536 bytes for
405 * the actual packet, plus 62 bytes of empty padding, plus some
406 * padding and the "struct skb_shared_info".
408 * With 64K pages, a large buffer thus needs 32+92+4+2+1536+62+88
409 * bytes, or 1816 bytes, which fits comfortably into 2048 bytes.
411 * With 64K pages, a small buffer thus needs 32+92+4+2+126+88
412 * bytes, or 344 bytes, which means we are wasting 64+ bytes, and
413 * could presumably increase the size of small buffers.
415 * With 4K pages, a large buffer thus needs 32+92+4+2+1536+62+268
416 * bytes, or 1996 bytes, which fits comfortably into 2048 bytes.
418 * With 4K pages, a small buffer thus needs 32+92+4+2+126+268
419 * bytes, or 524 bytes, which is annoyingly wasteful.
421 * Maybe we should increase LIPP_SMALL_PACKET_SIZE to 192?
423 * ISSUE: Maybe we should increase "NET_SKB_PAD" to 64?
425 static bool tile_net_provide_needed_buffer(struct tile_net_cpu
*info
,
428 #if TILE_NET_MTU <= 1536
429 /* Without "jumbo", 2 + 1536 should be sufficient. */
430 unsigned int large_size
= NET_IP_ALIGN
+ 1536;
432 /* ISSUE: This has not been tested. */
433 unsigned int large_size
= NET_IP_ALIGN
+ TILE_NET_MTU
+ 100;
436 /* Avoid "false sharing" with last cache line. */
437 /* ISSUE: This is already done by "netdev_alloc_skb()". */
439 (((small
? LIPP_SMALL_PACKET_SIZE
: large_size
) +
440 CHIP_L2_LINE_SIZE() - 1) & -CHIP_L2_LINE_SIZE());
442 unsigned int padding
= 128 - NET_SKB_PAD
;
448 struct sk_buff
**skb_ptr
;
450 /* Request 96 extra bytes for alignment purposes. */
451 skb
= netdev_alloc_skb(info
->napi
.dev
, len
+ padding
);
455 /* Skip 32 or 96 bytes to align "data" mod 128. */
456 align
= -(long)skb
->data
& (128 - 1);
457 BUG_ON(align
> padding
);
458 skb_reserve(skb
, align
);
460 /* This address is given to IPP. */
463 /* Buffers must not span a huge page. */
464 BUG_ON(((((long)va
& ~HPAGE_MASK
) + len
) & HPAGE_MASK
) != 0);
466 #ifdef TILE_NET_PARANOIA
467 #if CHIP_HAS_CBOX_HOME_MAP()
469 HV_PTE pte
= *virt_to_pte(current
->mm
, (unsigned long)va
);
470 if (hv_pte_get_mode(pte
) != HV_PTE_MODE_CACHE_HASH_L3
)
471 panic("Non-HFH ingress buffer! VA=%p Mode=%d PTE=%llx",
472 va
, hv_pte_get_mode(pte
), hv_pte_val(pte
));
477 /* Invalidate the packet buffer. */
479 __inv_buffer(va
, len
);
481 /* Skip two bytes to satisfy LIPP assumptions. */
482 /* Note that this aligns IP on a 16 byte boundary. */
483 /* ISSUE: Do this when the packet arrives? */
484 skb_reserve(skb
, NET_IP_ALIGN
);
486 /* Save a back-pointer to 'skb'. */
487 skb_ptr
= va
- sizeof(*skb_ptr
);
490 /* Make sure "skb_ptr" has been flushed. */
493 /* Provide the new buffer. */
494 tile_net_provide_linux_buffer(info
, va
, small
);
501 * Provide linux buffers for LIPP.
503 static void tile_net_provide_needed_buffers(struct tile_net_cpu
*info
)
505 while (info
->num_needed_small_buffers
!= 0) {
506 if (!tile_net_provide_needed_buffer(info
, true))
508 info
->num_needed_small_buffers
--;
511 while (info
->num_needed_large_buffers
!= 0) {
512 if (!tile_net_provide_needed_buffer(info
, false))
514 info
->num_needed_large_buffers
--;
521 /* Add a description to the page allocation failure dump. */
522 pr_notice("Could not provide a linux buffer to LIPP.\n");
527 * Grab some LEPP completions, and store them in "comps", of size
528 * "comps_size", and return the number of completions which were
529 * stored, so the caller can free them.
531 static unsigned int tile_net_lepp_grab_comps(lepp_queue_t
*eq
,
532 struct sk_buff
*comps
[],
533 unsigned int comps_size
,
534 unsigned int min_size
)
538 unsigned int comp_head
= eq
->comp_head
;
539 unsigned int comp_busy
= eq
->comp_busy
;
541 while (comp_head
!= comp_busy
&& n
< comps_size
) {
542 comps
[n
++] = eq
->comps
[comp_head
];
543 LEPP_QINC(comp_head
);
549 eq
->comp_head
= comp_head
;
556 * Free some comps, and return true iff there are still some pending.
558 static bool tile_net_lepp_free_comps(struct net_device
*dev
, bool all
)
560 struct tile_net_priv
*priv
= netdev_priv(dev
);
562 lepp_queue_t
*eq
= priv
->eq
;
564 struct sk_buff
*olds
[64];
565 unsigned int wanted
= 64;
569 spin_lock(&priv
->eq_lock
);
572 eq
->comp_busy
= eq
->comp_tail
;
574 n
= tile_net_lepp_grab_comps(eq
, olds
, wanted
, 0);
576 pending
= (eq
->comp_head
!= eq
->comp_tail
);
578 spin_unlock(&priv
->eq_lock
);
580 for (i
= 0; i
< n
; i
++)
588 * Make sure the egress timer is scheduled.
590 * Note that we use "schedule if not scheduled" logic instead of the more
591 * obvious "reschedule" logic, because "reschedule" is fairly expensive.
593 static void tile_net_schedule_egress_timer(struct tile_net_cpu
*info
)
595 if (!info
->egress_timer_scheduled
) {
596 mod_timer_pinned(&info
->egress_timer
, jiffies
+ 1);
597 info
->egress_timer_scheduled
= true;
603 * The "function" for "info->egress_timer".
605 * This timer will reschedule itself as long as there are any pending
606 * completions expected (on behalf of any tile).
608 * ISSUE: Realistically, will the timer ever stop scheduling itself?
610 * ISSUE: This timer is almost never actually needed, so just use a global
611 * timer that can run on any tile.
613 * ISSUE: Maybe instead track number of expected completions, and free
614 * only that many, resetting to zero if "pending" is ever false.
616 static void tile_net_handle_egress_timer(unsigned long arg
)
618 struct tile_net_cpu
*info
= (struct tile_net_cpu
*)arg
;
619 struct net_device
*dev
= info
->napi
.dev
;
621 /* The timer is no longer scheduled. */
622 info
->egress_timer_scheduled
= false;
624 /* Free comps, and reschedule timer if more are pending. */
625 if (tile_net_lepp_free_comps(dev
, false))
626 tile_net_schedule_egress_timer(info
);
630 #ifdef IGNORE_DUP_ACKS
633 * Help detect "duplicate" ACKs. These are sequential packets (for a
634 * given flow) which are exactly 66 bytes long, sharing everything but
635 * ID=2@0x12, Hsum=2@0x18, Ack=4@0x2a, WinSize=2@0x30, Csum=2@0x32,
636 * Tstamps=10@0x38. The ID's are +1, the Hsum's are -1, the Ack's are
637 * +N, and the Tstamps are usually identical.
639 * NOTE: Apparently truly duplicate acks (with identical "ack" values),
640 * should not be collapsed, as they are used for some kind of flow control.
642 static bool is_dup_ack(char *s1
, char *s2
, unsigned int len
)
646 unsigned long long ignorable
= 0;
648 /* Identification. */
649 ignorable
|= (1ULL << 0x12);
650 ignorable
|= (1ULL << 0x13);
652 /* Header checksum. */
653 ignorable
|= (1ULL << 0x18);
654 ignorable
|= (1ULL << 0x19);
657 ignorable
|= (1ULL << 0x2a);
658 ignorable
|= (1ULL << 0x2b);
659 ignorable
|= (1ULL << 0x2c);
660 ignorable
|= (1ULL << 0x2d);
663 ignorable
|= (1ULL << 0x30);
664 ignorable
|= (1ULL << 0x31);
667 ignorable
|= (1ULL << 0x32);
668 ignorable
|= (1ULL << 0x33);
670 for (i
= 0; i
< len
; i
++, ignorable
>>= 1) {
672 if ((ignorable
& 1) || (s1
[i
] == s2
[i
]))
675 #ifdef TILE_NET_DEBUG
676 /* HACK: Mention non-timestamp diffs. */
677 if (i
< 0x38 && i
!= 0x2f &&
679 pr_info("Diff at 0x%x\n", i
);
685 #ifdef TILE_NET_NO_SUPPRESS_DUP_ACKS
686 /* HACK: Do not suppress truly duplicate ACKs. */
687 /* ISSUE: Is this actually necessary or helpful? */
688 if (s1
[0x2a] == s2
[0x2a] &&
689 s1
[0x2b] == s2
[0x2b] &&
690 s1
[0x2c] == s2
[0x2c] &&
691 s1
[0x2d] == s2
[0x2d]) {
703 static void tile_net_discard_aux(struct tile_net_cpu
*info
, int index
)
705 struct tile_netio_queue
*queue
= &info
->queue
;
706 netio_queue_impl_t
*qsp
= queue
->__system_part
;
707 netio_queue_user_impl_t
*qup
= &queue
->__user_part
;
709 int index2_aux
= index
+ sizeof(netio_pkt_t
);
712 qsp
->__packet_receive_queue
.__last_packet_plus_one
) ?
715 netio_pkt_t
*pkt
= (netio_pkt_t
*)((unsigned long) &qsp
[1] + index
);
717 /* Extract the "linux_buffer_t". */
718 unsigned int buffer
= pkt
->__packet
.word
;
720 /* Convert "linux_buffer_t" to "va". */
721 void *va
= __va((phys_addr_t
)(buffer
>> 1) << 7);
723 /* Acquire the associated "skb". */
724 struct sk_buff
**skb_ptr
= va
- sizeof(*skb_ptr
);
725 struct sk_buff
*skb
= *skb_ptr
;
729 /* Consume this packet. */
730 qup
->__packet_receive_read
= index2
;
735 * Like "tile_net_poll()", but just discard packets.
737 static void tile_net_discard_packets(struct net_device
*dev
)
739 struct tile_net_priv
*priv
= netdev_priv(dev
);
740 int my_cpu
= smp_processor_id();
741 struct tile_net_cpu
*info
= priv
->cpu
[my_cpu
];
742 struct tile_netio_queue
*queue
= &info
->queue
;
743 netio_queue_impl_t
*qsp
= queue
->__system_part
;
744 netio_queue_user_impl_t
*qup
= &queue
->__user_part
;
746 while (qup
->__packet_receive_read
!=
747 qsp
->__packet_receive_queue
.__packet_write
) {
748 int index
= qup
->__packet_receive_read
;
749 tile_net_discard_aux(info
, index
);
755 * Handle the next packet. Return true if "processed", false if "filtered".
757 static bool tile_net_poll_aux(struct tile_net_cpu
*info
, int index
)
759 struct net_device
*dev
= info
->napi
.dev
;
761 struct tile_netio_queue
*queue
= &info
->queue
;
762 netio_queue_impl_t
*qsp
= queue
->__system_part
;
763 netio_queue_user_impl_t
*qup
= &queue
->__user_part
;
764 struct tile_net_stats_t
*stats
= &info
->stats
;
768 int index2_aux
= index
+ sizeof(netio_pkt_t
);
771 qsp
->__packet_receive_queue
.__last_packet_plus_one
) ?
774 netio_pkt_t
*pkt
= (netio_pkt_t
*)((unsigned long) &qsp
[1] + index
);
776 netio_pkt_metadata_t
*metadata
= NETIO_PKT_METADATA(pkt
);
778 /* Extract the packet size. FIXME: Shouldn't the second line */
779 /* get subtracted? Mostly moot, since it should be "zero". */
781 (NETIO_PKT_CUSTOM_LENGTH(pkt
) +
782 NET_IP_ALIGN
- NETIO_PACKET_PADDING
);
784 /* Extract the "linux_buffer_t". */
785 unsigned int buffer
= pkt
->__packet
.word
;
787 /* Extract "small" (vs "large"). */
788 bool small
= ((buffer
& 1) != 0);
790 /* Convert "linux_buffer_t" to "va". */
791 void *va
= __va((phys_addr_t
)(buffer
>> 1) << 7);
793 /* Extract the packet data pointer. */
794 /* Compare to "NETIO_PKT_CUSTOM_DATA(pkt)". */
795 unsigned char *buf
= va
+ NET_IP_ALIGN
;
797 /* Invalidate the packet buffer. */
799 __inv_buffer(buf
, len
);
801 /* ISSUE: Is this needed? */
802 dev
->last_rx
= jiffies
;
804 #ifdef TILE_NET_DUMP_PACKETS
805 dump_packet(buf
, len
, "rx");
806 #endif /* TILE_NET_DUMP_PACKETS */
808 #ifdef TILE_NET_VERIFY_INGRESS
809 if (!NETIO_PKT_L4_CSUM_CORRECT_M(metadata
, pkt
) &&
810 NETIO_PKT_L4_CSUM_CALCULATED_M(metadata
, pkt
)) {
811 /* Bug 6624: Includes UDP packets with a "zero" checksum. */
812 pr_warning("Bad L4 checksum on %d byte packet.\n", len
);
814 if (!NETIO_PKT_L3_CSUM_CORRECT_M(metadata
, pkt
) &&
815 NETIO_PKT_L3_CSUM_CALCULATED_M(metadata
, pkt
)) {
816 dump_packet(buf
, len
, "rx");
817 panic("Bad L3 checksum.");
819 switch (NETIO_PKT_STATUS_M(metadata
, pkt
)) {
820 case NETIO_PKT_STATUS_OVERSIZE
:
822 dump_packet(buf
, len
, "rx");
823 panic("Unexpected OVERSIZE.");
826 case NETIO_PKT_STATUS_BAD
:
827 pr_warning("Unexpected BAD %ld byte packet.\n", len
);
833 /* ISSUE: Filter TCP packets with "bad" checksums? */
835 if (!(dev
->flags
& IFF_UP
)) {
836 /* Filter packets received before we're up. */
838 } else if (NETIO_PKT_STATUS_M(metadata
, pkt
) == NETIO_PKT_STATUS_BAD
) {
839 /* Filter "truncated" packets. */
841 } else if (!(dev
->flags
& IFF_PROMISC
)) {
842 /* FIXME: Implement HW multicast filter. */
843 if (!is_multicast_ether_addr(buf
)) {
844 /* Filter packets not for our address. */
845 const u8
*mine
= dev
->dev_addr
;
846 filter
= !ether_addr_equal(mine
, buf
);
852 /* ISSUE: Update "drop" statistics? */
854 tile_net_provide_linux_buffer(info
, va
, small
);
858 /* Acquire the associated "skb". */
859 struct sk_buff
**skb_ptr
= va
- sizeof(*skb_ptr
);
860 struct sk_buff
*skb
= *skb_ptr
;
863 if (skb
->data
!= buf
)
864 panic("Corrupt linux buffer from LIPP! "
865 "VA=%p, skb=%p, skb->data=%p\n",
868 /* Encode the actual packet length. */
871 /* NOTE: This call also sets "skb->dev = dev". */
872 skb
->protocol
= eth_type_trans(skb
, dev
);
874 /* Avoid recomputing "good" TCP/UDP checksums. */
875 if (NETIO_PKT_L4_CSUM_CORRECT_M(metadata
, pkt
))
876 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
878 netif_receive_skb(skb
);
881 stats
->rx_bytes
+= len
;
884 /* ISSUE: It would be nice to defer this until the packet has */
885 /* actually been processed. */
886 tile_net_return_credit(info
);
888 /* Consume this packet. */
889 qup
->__packet_receive_read
= index2
;
896 * Handle some packets for the given device on the current CPU.
898 * If "tile_net_stop()" is called on some other tile while this
899 * function is running, we will return, hopefully before that
900 * other tile asks us to call "napi_disable()".
902 * The "rotting packet" race condition occurs if a packet arrives
903 * during the extremely narrow window between the queue appearing to
904 * be empty, and the ingress interrupt being re-enabled. This happens
905 * a LOT under heavy network load.
907 static int tile_net_poll(struct napi_struct
*napi
, int budget
)
909 struct net_device
*dev
= napi
->dev
;
910 struct tile_net_priv
*priv
= netdev_priv(dev
);
911 int my_cpu
= smp_processor_id();
912 struct tile_net_cpu
*info
= priv
->cpu
[my_cpu
];
913 struct tile_netio_queue
*queue
= &info
->queue
;
914 netio_queue_impl_t
*qsp
= queue
->__system_part
;
915 netio_queue_user_impl_t
*qup
= &queue
->__user_part
;
917 unsigned int work
= 0;
919 while (priv
->active
) {
920 int index
= qup
->__packet_receive_read
;
921 if (index
== qsp
->__packet_receive_queue
.__packet_write
)
924 if (tile_net_poll_aux(info
, index
)) {
925 if (++work
>= budget
)
930 napi_complete(&info
->napi
);
935 /* Re-enable the ingress interrupt. */
936 enable_percpu_irq(priv
->intr_id
, 0);
938 /* HACK: Avoid the "rotting packet" problem (see above). */
939 if (qup
->__packet_receive_read
!=
940 qsp
->__packet_receive_queue
.__packet_write
) {
941 /* ISSUE: Sometimes this returns zero, presumably */
942 /* because an interrupt was handled for this tile. */
943 (void)napi_reschedule(&info
->napi
);
949 tile_net_provide_needed_buffers(info
);
956 * Handle an ingress interrupt for the given device on the current cpu.
958 * ISSUE: Sometimes this gets called after "disable_percpu_irq()" has
959 * been called! This is probably due to "pending hypervisor downcalls".
961 * ISSUE: Is there any race condition between the "napi_schedule()" here
962 * and the "napi_complete()" call above?
964 static irqreturn_t
tile_net_handle_ingress_interrupt(int irq
, void *dev_ptr
)
966 struct net_device
*dev
= (struct net_device
*)dev_ptr
;
967 struct tile_net_priv
*priv
= netdev_priv(dev
);
968 int my_cpu
= smp_processor_id();
969 struct tile_net_cpu
*info
= priv
->cpu
[my_cpu
];
971 /* Disable the ingress interrupt. */
972 disable_percpu_irq(priv
->intr_id
);
974 /* Ignore unwanted interrupts. */
978 /* ISSUE: Sometimes "info->napi_enabled" is false here. */
980 napi_schedule(&info
->napi
);
987 * One time initialization per interface.
989 static int tile_net_open_aux(struct net_device
*dev
)
991 struct tile_net_priv
*priv
= netdev_priv(dev
);
995 unsigned int epp_lotar
;
998 * Find out where EPP memory should be homed.
1000 ret
= hv_dev_pread(priv
->hv_devhdl
, 0,
1001 (HV_VirtAddr
)&epp_lotar
, sizeof(epp_lotar
),
1004 pr_err("could not read epp_shm_queue lotar.\n");
1009 * Home the page on the EPP.
1012 int epp_home
= hv_lotar_to_cpu(epp_lotar
);
1013 homecache_change_page_home(priv
->eq_pages
, EQ_ORDER
, epp_home
);
1017 * Register the EPP shared memory queue.
1020 netio_ipp_address_t ea
= {
1022 .pa
= __pa(priv
->eq
),
1026 ea
.pte
= hv_pte_set_lotar(ea
.pte
, epp_lotar
);
1027 ea
.pte
= hv_pte_set_mode(ea
.pte
, HV_PTE_MODE_CACHE_TILE_L3
);
1028 ret
= hv_dev_pwrite(priv
->hv_devhdl
, 0,
1039 if (hv_dev_pwrite(priv
->hv_devhdl
, 0, (HV_VirtAddr
)&dummy
,
1040 sizeof(dummy
), NETIO_IPP_START_SHIM_OFF
) < 0) {
1041 pr_warning("Failed to start LIPP/LEPP.\n");
1050 * Register with hypervisor on the current CPU.
1052 * Strangely, this function does important things even if it "fails",
1053 * which is especially common if the link is not up yet. Hopefully
1054 * these things are all "harmless" if done twice!
1056 static void tile_net_register(void *dev_ptr
)
1058 struct net_device
*dev
= (struct net_device
*)dev_ptr
;
1059 struct tile_net_priv
*priv
= netdev_priv(dev
);
1060 int my_cpu
= smp_processor_id();
1061 struct tile_net_cpu
*info
;
1063 struct tile_netio_queue
*queue
;
1065 /* Only network cpus can receive packets. */
1067 cpumask_test_cpu(my_cpu
, &priv
->network_cpus_map
) ? 0 : 255;
1069 netio_input_config_t config
= {
1071 .num_receive_packets
= priv
->network_cpus_credits
,
1072 .queue_id
= queue_id
1076 netio_queue_impl_t
*queuep
;
1078 PDEBUG("tile_net_register(queue_id %d)\n", queue_id
);
1080 if (!strcmp(dev
->name
, "xgbe0"))
1081 info
= &__get_cpu_var(hv_xgbe0
);
1082 else if (!strcmp(dev
->name
, "xgbe1"))
1083 info
= &__get_cpu_var(hv_xgbe1
);
1084 else if (!strcmp(dev
->name
, "gbe0"))
1085 info
= &__get_cpu_var(hv_gbe0
);
1086 else if (!strcmp(dev
->name
, "gbe1"))
1087 info
= &__get_cpu_var(hv_gbe1
);
1091 /* Initialize the egress timer. */
1092 init_timer(&info
->egress_timer
);
1093 info
->egress_timer
.data
= (long)info
;
1094 info
->egress_timer
.function
= tile_net_handle_egress_timer
;
1096 priv
->cpu
[my_cpu
] = info
;
1099 * Register ourselves with LIPP. This does a lot of stuff,
1100 * including invoking the LIPP registration code.
1102 ret
= hv_dev_pwrite(priv
->hv_devhdl
, 0,
1103 (HV_VirtAddr
)&config
,
1104 sizeof(netio_input_config_t
),
1105 NETIO_IPP_INPUT_REGISTER_OFF
);
1106 PDEBUG("hv_dev_pwrite(NETIO_IPP_INPUT_REGISTER_OFF) returned %d\n",
1109 if (ret
!= NETIO_LINK_DOWN
) {
1110 printk(KERN_DEBUG
"hv_dev_pwrite "
1111 "NETIO_IPP_INPUT_REGISTER_OFF failure %d\n",
1114 info
->link_down
= (ret
== NETIO_LINK_DOWN
);
1119 * Get the pointer to our queue's system part.
1122 ret
= hv_dev_pread(priv
->hv_devhdl
, 0,
1123 (HV_VirtAddr
)&queuep
,
1124 sizeof(netio_queue_impl_t
*),
1125 NETIO_IPP_INPUT_REGISTER_OFF
);
1126 PDEBUG("hv_dev_pread(NETIO_IPP_INPUT_REGISTER_OFF) returned %d\n",
1128 PDEBUG("queuep %p\n", queuep
);
1130 /* ISSUE: Shouldn't this be a fatal error? */
1131 pr_err("hv_dev_pread NETIO_IPP_INPUT_REGISTER_OFF failure\n");
1135 queue
= &info
->queue
;
1137 queue
->__system_part
= queuep
;
1139 memset(&queue
->__user_part
, 0, sizeof(netio_queue_user_impl_t
));
1141 /* This is traditionally "config.num_receive_packets / 2". */
1142 queue
->__user_part
.__receive_credit_interval
= 4;
1143 queue
->__user_part
.__receive_credit_remaining
=
1144 queue
->__user_part
.__receive_credit_interval
;
1147 * Get a fastio index from the hypervisor.
1148 * ISSUE: Shouldn't this check the result?
1150 ret
= hv_dev_pread(priv
->hv_devhdl
, 0,
1151 (HV_VirtAddr
)&queue
->__user_part
.__fastio_index
,
1152 sizeof(queue
->__user_part
.__fastio_index
),
1153 NETIO_IPP_GET_FASTIO_OFF
);
1154 PDEBUG("hv_dev_pread(NETIO_IPP_GET_FASTIO_OFF) returned %d\n", ret
);
1156 /* Now we are registered. */
1157 info
->registered
= true;
1162 * Deregister with hypervisor on the current CPU.
1164 * This simply discards all our credits, so no more packets will be
1165 * delivered to this tile. There may still be packets in our queue.
1167 * Also, disable the ingress interrupt.
1169 static void tile_net_deregister(void *dev_ptr
)
1171 struct net_device
*dev
= (struct net_device
*)dev_ptr
;
1172 struct tile_net_priv
*priv
= netdev_priv(dev
);
1173 int my_cpu
= smp_processor_id();
1174 struct tile_net_cpu
*info
= priv
->cpu
[my_cpu
];
1176 /* Disable the ingress interrupt. */
1177 disable_percpu_irq(priv
->intr_id
);
1179 /* Do nothing else if not registered. */
1180 if (info
== NULL
|| !info
->registered
)
1184 struct tile_netio_queue
*queue
= &info
->queue
;
1185 netio_queue_user_impl_t
*qup
= &queue
->__user_part
;
1187 /* Discard all our credits. */
1188 __netio_fastio_return_credits(qup
->__fastio_index
, -1);
1194 * Unregister with hypervisor on the current CPU.
1196 * Also, disable the ingress interrupt.
1198 static void tile_net_unregister(void *dev_ptr
)
1200 struct net_device
*dev
= (struct net_device
*)dev_ptr
;
1201 struct tile_net_priv
*priv
= netdev_priv(dev
);
1202 int my_cpu
= smp_processor_id();
1203 struct tile_net_cpu
*info
= priv
->cpu
[my_cpu
];
1208 /* Disable the ingress interrupt. */
1209 disable_percpu_irq(priv
->intr_id
);
1211 /* Do nothing else if not registered. */
1212 if (info
== NULL
|| !info
->registered
)
1215 /* Unregister ourselves with LIPP/LEPP. */
1216 ret
= hv_dev_pwrite(priv
->hv_devhdl
, 0, (HV_VirtAddr
)&dummy
,
1217 sizeof(dummy
), NETIO_IPP_INPUT_UNREGISTER_OFF
);
1219 panic("Failed to unregister with LIPP/LEPP!\n");
1221 /* Discard all packets still in our NetIO queue. */
1222 tile_net_discard_packets(dev
);
1225 info
->num_needed_small_buffers
= 0;
1226 info
->num_needed_large_buffers
= 0;
1228 /* Cancel egress timer. */
1229 del_timer(&info
->egress_timer
);
1230 info
->egress_timer_scheduled
= false;
1235 * Helper function for "tile_net_stop()".
1237 * Also used to handle registration failure in "tile_net_open_inner()",
1238 * when the various extra steps in "tile_net_stop()" are not necessary.
1240 static void tile_net_stop_aux(struct net_device
*dev
)
1242 struct tile_net_priv
*priv
= netdev_priv(dev
);
1248 * Unregister all tiles, so LIPP will stop delivering packets.
1249 * Also, delete all the "napi" objects (sequentially, to protect
1250 * "dev->napi_list").
1252 on_each_cpu(tile_net_unregister
, (void *)dev
, 1);
1253 for_each_online_cpu(i
) {
1254 struct tile_net_cpu
*info
= priv
->cpu
[i
];
1255 if (info
!= NULL
&& info
->registered
) {
1256 netif_napi_del(&info
->napi
);
1257 info
->registered
= false;
1261 /* Stop LIPP/LEPP. */
1262 if (hv_dev_pwrite(priv
->hv_devhdl
, 0, (HV_VirtAddr
)&dummy
,
1263 sizeof(dummy
), NETIO_IPP_STOP_SHIM_OFF
) < 0)
1264 panic("Failed to stop LIPP/LEPP!\n");
1266 priv
->partly_opened
= false;
1271 * Disable NAPI for the given device on the current cpu.
1273 static void tile_net_stop_disable(void *dev_ptr
)
1275 struct net_device
*dev
= (struct net_device
*)dev_ptr
;
1276 struct tile_net_priv
*priv
= netdev_priv(dev
);
1277 int my_cpu
= smp_processor_id();
1278 struct tile_net_cpu
*info
= priv
->cpu
[my_cpu
];
1280 /* Disable NAPI if needed. */
1281 if (info
!= NULL
&& info
->napi_enabled
) {
1282 napi_disable(&info
->napi
);
1283 info
->napi_enabled
= false;
1289 * Enable NAPI and the ingress interrupt for the given device
1290 * on the current cpu.
1292 * ISSUE: Only do this for "network cpus"?
1294 static void tile_net_open_enable(void *dev_ptr
)
1296 struct net_device
*dev
= (struct net_device
*)dev_ptr
;
1297 struct tile_net_priv
*priv
= netdev_priv(dev
);
1298 int my_cpu
= smp_processor_id();
1299 struct tile_net_cpu
*info
= priv
->cpu
[my_cpu
];
1302 napi_enable(&info
->napi
);
1303 info
->napi_enabled
= true;
1305 /* Enable the ingress interrupt. */
1306 enable_percpu_irq(priv
->intr_id
, 0);
1311 * tile_net_open_inner does most of the work of bringing up the interface.
1312 * It's called from tile_net_open(), and also from tile_net_retry_open().
1313 * The return value is 0 if the interface was brought up, < 0 if
1314 * tile_net_open() should return the return value as an error, and > 0 if
1315 * tile_net_open() should return success and schedule a work item to
1316 * periodically retry the bringup.
1318 static int tile_net_open_inner(struct net_device
*dev
)
1320 struct tile_net_priv
*priv
= netdev_priv(dev
);
1321 int my_cpu
= smp_processor_id();
1322 struct tile_net_cpu
*info
;
1323 struct tile_netio_queue
*queue
;
1329 * First try to register just on the local CPU, and handle any
1330 * semi-expected "link down" failure specially. Note that we
1331 * do NOT call "tile_net_stop_aux()", unlike below.
1333 tile_net_register(dev
);
1334 info
= priv
->cpu
[my_cpu
];
1335 if (!info
->registered
) {
1336 if (info
->link_down
)
1342 * Now register everywhere else. If any registration fails,
1343 * even for "link down" (which might not be possible), we
1344 * clean up using "tile_net_stop_aux()". Also, add all the
1345 * "napi" objects (sequentially, to protect "dev->napi_list").
1346 * ISSUE: Only use "netif_napi_add()" for "network cpus"?
1348 smp_call_function(tile_net_register
, (void *)dev
, 1);
1349 for_each_online_cpu(i
) {
1350 struct tile_net_cpu
*info
= priv
->cpu
[i
];
1351 if (info
->registered
)
1352 netif_napi_add(dev
, &info
->napi
, tile_net_poll
, 64);
1357 tile_net_stop_aux(dev
);
1361 queue
= &info
->queue
;
1363 if (priv
->intr_id
== 0) {
1367 * Acquire the irq allocated by the hypervisor. Every
1368 * queue gets the same irq. The "__intr_id" field is
1369 * "1 << irq", so we use "__ffs()" to extract "irq".
1371 priv
->intr_id
= queue
->__system_part
->__intr_id
;
1372 BUG_ON(priv
->intr_id
== 0);
1373 irq
= __ffs(priv
->intr_id
);
1376 * Register the ingress interrupt handler for this
1377 * device, permanently.
1379 * We used to call "free_irq()" in "tile_net_stop()",
1380 * and then re-register the handler here every time,
1381 * but that caused DNP errors in "handle_IRQ_event()"
1382 * because "desc->action" was NULL. See bug 9143.
1384 tile_irq_activate(irq
, TILE_IRQ_PERCPU
);
1385 BUG_ON(request_irq(irq
, tile_net_handle_ingress_interrupt
,
1386 0, dev
->name
, (void *)dev
) != 0);
1390 /* Allocate initial buffers. */
1393 priv
->network_cpus_count
* priv
->network_cpus_credits
;
1395 info
->num_needed_small_buffers
=
1396 min(LIPP_SMALL_BUFFERS
, max_buffers
);
1398 info
->num_needed_large_buffers
=
1399 min(LIPP_LARGE_BUFFERS
, max_buffers
);
1401 tile_net_provide_needed_buffers(info
);
1403 if (info
->num_needed_small_buffers
!= 0 ||
1404 info
->num_needed_large_buffers
!= 0)
1405 panic("Insufficient memory for buffer stack!");
1408 /* We are about to be active. */
1409 priv
->active
= true;
1411 /* Make sure "active" is visible to all tiles. */
1414 /* On each tile, enable NAPI and the ingress interrupt. */
1415 on_each_cpu(tile_net_open_enable
, (void *)dev
, 1);
1417 /* Start LIPP/LEPP and activate "ingress" at the shim. */
1418 if (hv_dev_pwrite(priv
->hv_devhdl
, 0, (HV_VirtAddr
)&dummy
,
1419 sizeof(dummy
), NETIO_IPP_INPUT_INIT_OFF
) < 0)
1420 panic("Failed to activate the LIPP Shim!\n");
1422 /* Start our transmit queue. */
1423 netif_start_queue(dev
);
1430 * Called periodically to retry bringing up the NetIO interface,
1431 * if it doesn't come up cleanly during tile_net_open().
1433 static void tile_net_open_retry(struct work_struct
*w
)
1435 struct delayed_work
*dw
=
1436 container_of(w
, struct delayed_work
, work
);
1438 struct tile_net_priv
*priv
=
1439 container_of(dw
, struct tile_net_priv
, retry_work
);
1442 * Try to bring the NetIO interface up. If it fails, reschedule
1443 * ourselves to try again later; otherwise, tell Linux we now have
1444 * a working link. ISSUE: What if the return value is negative?
1446 if (tile_net_open_inner(priv
->dev
) != 0)
1447 schedule_delayed_work(&priv
->retry_work
,
1448 TILE_NET_RETRY_INTERVAL
);
1450 netif_carrier_on(priv
->dev
);
1455 * Called when a network interface is made active.
1457 * Returns 0 on success, negative value on failure.
1459 * The open entry point is called when a network interface is made
1460 * active by the system (IFF_UP). At this point all resources needed
1461 * for transmit and receive operations are allocated, the interrupt
1462 * handler is registered with the OS (if needed), the watchdog timer
1463 * is started, and the stack is notified that the interface is ready.
1465 * If the actual link is not available yet, then we tell Linux that
1466 * we have no carrier, and we keep checking until the link comes up.
1468 static int tile_net_open(struct net_device
*dev
)
1471 struct tile_net_priv
*priv
= netdev_priv(dev
);
1474 * We rely on priv->partly_opened to tell us if this is the
1475 * first time this interface is being brought up. If it is
1476 * set, the IPP was already initialized and should not be
1477 * initialized again.
1479 if (!priv
->partly_opened
) {
1484 /* Initialize LIPP/LEPP, and start the Shim. */
1485 ret
= tile_net_open_aux(dev
);
1487 pr_err("tile_net_open_aux failed: %d\n", ret
);
1491 /* Analyze the network cpus. */
1493 if (network_cpus_used
)
1494 cpumask_copy(&priv
->network_cpus_map
,
1497 cpumask_copy(&priv
->network_cpus_map
, cpu_online_mask
);
1500 count
= cpumask_weight(&priv
->network_cpus_map
);
1502 /* Limit credits to available buffers, and apply min. */
1503 credits
= max(16, (LIPP_LARGE_BUFFERS
/ count
) & ~1);
1505 /* Apply "GBE" max limit. */
1506 /* ISSUE: Use higher limit for XGBE? */
1507 credits
= min(NETIO_MAX_RECEIVE_PKTS
, credits
);
1509 priv
->network_cpus_count
= count
;
1510 priv
->network_cpus_credits
= credits
;
1512 #ifdef TILE_NET_DEBUG
1513 pr_info("Using %d network cpus, with %d credits each\n",
1514 priv
->network_cpus_count
, priv
->network_cpus_credits
);
1517 priv
->partly_opened
= true;
1520 /* FIXME: Is this possible? */
1521 /* printk("Already partly opened.\n"); */
1525 * Attempt to bring up the link.
1527 ret
= tile_net_open_inner(dev
);
1530 netif_carrier_on(dev
);
1535 * We were unable to bring up the NetIO interface, but we want to
1536 * try again in a little bit. Tell Linux that we have no carrier
1537 * so it doesn't try to use the interface before the link comes up
1538 * and then remember to try again later.
1540 netif_carrier_off(dev
);
1541 schedule_delayed_work(&priv
->retry_work
, TILE_NET_RETRY_INTERVAL
);
1547 static int tile_net_drain_lipp_buffers(struct tile_net_priv
*priv
)
1551 /* Drain all the LIPP buffers. */
1553 unsigned int buffer
;
1555 /* NOTE: This should never fail. */
1556 if (hv_dev_pread(priv
->hv_devhdl
, 0, (HV_VirtAddr
)&buffer
,
1557 sizeof(buffer
), NETIO_IPP_DRAIN_OFF
) < 0)
1560 /* Stop when done. */
1565 /* Convert "linux_buffer_t" to "va". */
1566 void *va
= __va((phys_addr_t
)(buffer
>> 1) << 7);
1568 /* Acquire the associated "skb". */
1569 struct sk_buff
**skb_ptr
= va
- sizeof(*skb_ptr
);
1570 struct sk_buff
*skb
= *skb_ptr
;
1583 * Disables a network interface.
1585 * Returns 0, this is not allowed to fail.
1587 * The close entry point is called when an interface is de-activated
1588 * by the OS. The hardware is still under the drivers control, but
1589 * needs to be disabled. A global MAC reset is issued to stop the
1590 * hardware, and all transmit and receive resources are freed.
1592 * ISSUE: How closely does "netif_running(dev)" mirror "priv->active"?
1594 * Before we are called by "__dev_close()", "netif_running()" will
1595 * have been cleared, so no NEW calls to "tile_net_poll()" will be
1596 * made by "netpoll_poll_dev()".
1598 * Often, this can cause some tiles to still have packets in their
1599 * queues, so we must call "tile_net_discard_packets()" later.
1601 * Note that some other tile may still be INSIDE "tile_net_poll()",
1602 * and in fact, many will be, if there is heavy network load.
1604 * Calling "on_each_cpu(tile_net_stop_disable, (void *)dev, 1)" when
1605 * any tile is still "napi_schedule()"'d will induce a horrible crash
1606 * when "msleep()" is called. This includes tiles which are inside
1607 * "tile_net_poll()" which have not yet called "napi_complete()".
1609 * So, we must first try to wait long enough for other tiles to finish
1610 * with any current "tile_net_poll()" call, and, hopefully, to clear
1611 * the "scheduled" flag. ISSUE: It is unclear what happens to tiles
1612 * which have called "napi_schedule()" but which had not yet tried to
1613 * call "tile_net_poll()", or which exhausted their budget inside
1614 * "tile_net_poll()" just before this function was called.
1616 static int tile_net_stop(struct net_device
*dev
)
1618 struct tile_net_priv
*priv
= netdev_priv(dev
);
1620 PDEBUG("tile_net_stop()\n");
1622 /* Start discarding packets. */
1623 priv
->active
= false;
1625 /* Make sure "active" is visible to all tiles. */
1629 * On each tile, make sure no NEW packets get delivered, and
1630 * disable the ingress interrupt.
1632 * Note that the ingress interrupt can fire AFTER this,
1633 * presumably due to packets which were recently delivered,
1634 * but it will have no effect.
1636 on_each_cpu(tile_net_deregister
, (void *)dev
, 1);
1638 /* Optimistically drain LIPP buffers. */
1639 (void)tile_net_drain_lipp_buffers(priv
);
1641 /* ISSUE: Only needed if not yet fully open. */
1642 cancel_delayed_work_sync(&priv
->retry_work
);
1644 /* Can't transmit any more. */
1645 netif_stop_queue(dev
);
1647 /* Disable NAPI on each tile. */
1648 on_each_cpu(tile_net_stop_disable
, (void *)dev
, 1);
1651 * Drain any remaining LIPP buffers. NOTE: This "printk()"
1652 * has never been observed, but in theory it could happen.
1654 if (tile_net_drain_lipp_buffers(priv
) != 0)
1655 printk("Had to drain some extra LIPP buffers!\n");
1657 /* Stop LIPP/LEPP. */
1658 tile_net_stop_aux(dev
);
1661 * ISSUE: It appears that, in practice anyway, by the time we
1662 * get here, there are no pending completions, but just in case,
1663 * we free (all of) them anyway.
1665 while (tile_net_lepp_free_comps(dev
, true))
1668 /* Wipe the EPP queue, and wait till the stores hit the EPP. */
1669 memset(priv
->eq
, 0, sizeof(lepp_queue_t
));
1677 * Prepare the "frags" info for the resulting LEPP command.
1679 * If needed, flush the memory used by the frags.
1681 static unsigned int tile_net_tx_frags(lepp_frag_t
*frags
,
1682 struct sk_buff
*skb
,
1683 void *b_data
, unsigned int b_len
)
1685 unsigned int i
, n
= 0;
1687 struct skb_shared_info
*sh
= skb_shinfo(skb
);
1694 finv_buffer_remote(b_data
, b_len
, 0);
1697 frags
[n
].cpa_lo
= cpa
;
1698 frags
[n
].cpa_hi
= cpa
>> 32;
1699 frags
[n
].length
= b_len
;
1700 frags
[n
].hash_for_home
= hash_default
;
1704 for (i
= 0; i
< sh
->nr_frags
; i
++) {
1706 skb_frag_t
*f
= &sh
->frags
[i
];
1707 unsigned long pfn
= page_to_pfn(skb_frag_page(f
));
1709 /* FIXME: Compute "hash_for_home" properly. */
1710 /* ISSUE: The hypervisor checks CHIP_HAS_REV1_DMA_PACKETS(). */
1711 int hash_for_home
= hash_default
;
1714 if (!hash_default
) {
1715 void *va
= pfn_to_kaddr(pfn
) + f
->page_offset
;
1716 BUG_ON(PageHighMem(skb_frag_page(f
)));
1717 finv_buffer_remote(va
, skb_frag_size(f
), 0);
1720 cpa
= ((phys_addr_t
)pfn
<< PAGE_SHIFT
) + f
->page_offset
;
1721 frags
[n
].cpa_lo
= cpa
;
1722 frags
[n
].cpa_hi
= cpa
>> 32;
1723 frags
[n
].length
= skb_frag_size(f
);
1724 frags
[n
].hash_for_home
= hash_for_home
;
1733 * This function takes "skb", consisting of a header template and a
1734 * payload, and hands it to LEPP, to emit as one or more segments,
1735 * each consisting of a possibly modified header, plus a piece of the
1736 * payload, via a process known as "tcp segmentation offload".
1738 * Usually, "data" will contain the header template, of size "sh_len",
1739 * and "sh->frags" will contain "skb->data_len" bytes of payload, and
1740 * there will be "sh->gso_segs" segments.
1742 * Sometimes, if "sendfile()" requires copying, we will be called with
1743 * "data" containing the header and payload, with "frags" being empty.
1745 * Sometimes, for example when using NFS over TCP, a single segment can
1746 * span 3 fragments, which must be handled carefully in LEPP.
1748 * See "emulate_large_send_offload()" for some reference code, which
1749 * does not handle checksumming.
1751 * ISSUE: How do we make sure that high memory DMA does not migrate?
1753 static int tile_net_tx_tso(struct sk_buff
*skb
, struct net_device
*dev
)
1755 struct tile_net_priv
*priv
= netdev_priv(dev
);
1756 int my_cpu
= smp_processor_id();
1757 struct tile_net_cpu
*info
= priv
->cpu
[my_cpu
];
1758 struct tile_net_stats_t
*stats
= &info
->stats
;
1760 struct skb_shared_info
*sh
= skb_shinfo(skb
);
1762 unsigned char *data
= skb
->data
;
1764 /* The ip header follows the ethernet header. */
1765 struct iphdr
*ih
= ip_hdr(skb
);
1766 unsigned int ih_len
= ih
->ihl
* 4;
1768 /* Note that "nh == ih", by definition. */
1769 unsigned char *nh
= skb_network_header(skb
);
1770 unsigned int eh_len
= nh
- data
;
1772 /* The tcp header follows the ip header. */
1773 struct tcphdr
*th
= (struct tcphdr
*)(nh
+ ih_len
);
1774 unsigned int th_len
= th
->doff
* 4;
1776 /* The total number of header bytes. */
1777 /* NOTE: This may be less than skb_headlen(skb). */
1778 unsigned int sh_len
= eh_len
+ ih_len
+ th_len
;
1780 /* The number of payload bytes at "skb->data + sh_len". */
1781 /* This is non-zero for sendfile() without HIGHDMA. */
1782 unsigned int b_len
= skb_headlen(skb
) - sh_len
;
1784 /* The total number of payload bytes. */
1785 unsigned int d_len
= b_len
+ skb
->data_len
;
1787 /* The maximum payload size. */
1788 unsigned int p_len
= sh
->gso_size
;
1790 /* The total number of segments. */
1791 unsigned int num_segs
= sh
->gso_segs
;
1793 /* The temporary copy of the command. */
1794 u32 cmd_body
[(LEPP_MAX_CMD_SIZE
+ 3) / 4];
1795 lepp_tso_cmd_t
*cmd
= (lepp_tso_cmd_t
*)cmd_body
;
1797 /* Analyze the "frags". */
1798 unsigned int num_frags
=
1799 tile_net_tx_frags(cmd
->frags
, skb
, data
+ sh_len
, b_len
);
1801 /* The size of the command, including frags and header. */
1802 size_t cmd_size
= LEPP_TSO_CMD_SIZE(num_frags
, sh_len
);
1804 /* The command header. */
1805 lepp_tso_cmd_t cmd_init
= {
1807 .header_size
= sh_len
,
1808 .ip_offset
= eh_len
,
1809 .tcp_offset
= eh_len
+ ih_len
,
1810 .payload_size
= p_len
,
1811 .num_frags
= num_frags
,
1814 unsigned long irqflags
;
1816 lepp_queue_t
*eq
= priv
->eq
;
1818 struct sk_buff
*olds
[8];
1819 unsigned int wanted
= 8;
1820 unsigned int i
, nolds
= 0;
1822 unsigned int cmd_head
, cmd_tail
, cmd_next
;
1823 unsigned int comp_tail
;
1827 BUG_ON(skb
->protocol
!= htons(ETH_P_IP
));
1828 BUG_ON(ih
->protocol
!= IPPROTO_TCP
);
1829 BUG_ON(skb
->ip_summed
!= CHECKSUM_PARTIAL
);
1830 BUG_ON(num_frags
> LEPP_MAX_FRAGS
);
1831 /*--BUG_ON(num_segs != (d_len + (p_len - 1)) / p_len); */
1832 BUG_ON(num_segs
<= 1);
1835 /* Finish preparing the command. */
1837 /* Copy the command header. */
1840 /* Copy the "header". */
1841 memcpy(&cmd
->frags
[num_frags
], data
, sh_len
);
1844 /* Prefetch and wait, to minimize time spent holding the spinlock. */
1845 prefetch_L1(&eq
->comp_tail
);
1846 prefetch_L1(&eq
->cmd_tail
);
1850 /* Enqueue the command. */
1852 spin_lock_irqsave(&priv
->eq_lock
, irqflags
);
1854 /* Handle completions if needed to make room. */
1855 /* NOTE: Return NETDEV_TX_BUSY if there is still no room. */
1856 if (lepp_num_free_comp_slots(eq
) == 0) {
1857 nolds
= tile_net_lepp_grab_comps(eq
, olds
, wanted
, 0);
1860 spin_unlock_irqrestore(&priv
->eq_lock
, irqflags
);
1861 return NETDEV_TX_BUSY
;
1865 cmd_head
= eq
->cmd_head
;
1866 cmd_tail
= eq
->cmd_tail
;
1868 /* Prepare to advance, detecting full queue. */
1869 /* NOTE: Return NETDEV_TX_BUSY if the queue is full. */
1870 cmd_next
= cmd_tail
+ cmd_size
;
1871 if (cmd_tail
< cmd_head
&& cmd_next
>= cmd_head
)
1873 if (cmd_next
> LEPP_CMD_LIMIT
) {
1875 if (cmd_next
== cmd_head
)
1879 /* Copy the command. */
1880 memcpy(&eq
->cmds
[cmd_tail
], cmd
, cmd_size
);
1883 cmd_tail
= cmd_next
;
1885 /* Record "skb" for eventual freeing. */
1886 comp_tail
= eq
->comp_tail
;
1887 eq
->comps
[comp_tail
] = skb
;
1888 LEPP_QINC(comp_tail
);
1889 eq
->comp_tail
= comp_tail
;
1891 /* Flush before allowing LEPP to handle the command. */
1892 /* ISSUE: Is this the optimal location for the flush? */
1895 eq
->cmd_tail
= cmd_tail
;
1897 /* NOTE: Using "4" here is more efficient than "0" or "2", */
1898 /* and, strangely, more efficient than pre-checking the number */
1899 /* of available completions, and comparing it to 4. */
1901 nolds
= tile_net_lepp_grab_comps(eq
, olds
, wanted
, 4);
1903 spin_unlock_irqrestore(&priv
->eq_lock
, irqflags
);
1905 /* Handle completions. */
1906 for (i
= 0; i
< nolds
; i
++)
1910 stats
->tx_packets
+= num_segs
;
1911 stats
->tx_bytes
+= (num_segs
* sh_len
) + d_len
;
1913 /* Make sure the egress timer is scheduled. */
1914 tile_net_schedule_egress_timer(info
);
1916 return NETDEV_TX_OK
;
1921 * Transmit a packet (called by the kernel via "hard_start_xmit" hook).
1923 static int tile_net_tx(struct sk_buff
*skb
, struct net_device
*dev
)
1925 struct tile_net_priv
*priv
= netdev_priv(dev
);
1926 int my_cpu
= smp_processor_id();
1927 struct tile_net_cpu
*info
= priv
->cpu
[my_cpu
];
1928 struct tile_net_stats_t
*stats
= &info
->stats
;
1930 unsigned long irqflags
;
1932 struct skb_shared_info
*sh
= skb_shinfo(skb
);
1934 unsigned int len
= skb
->len
;
1935 unsigned char *data
= skb
->data
;
1937 unsigned int csum_start
= skb_checksum_start_offset(skb
);
1939 lepp_frag_t frags
[LEPP_MAX_FRAGS
];
1941 unsigned int num_frags
;
1943 lepp_queue_t
*eq
= priv
->eq
;
1945 struct sk_buff
*olds
[8];
1946 unsigned int wanted
= 8;
1947 unsigned int i
, nolds
= 0;
1949 unsigned int cmd_size
= sizeof(lepp_cmd_t
);
1951 unsigned int cmd_head
, cmd_tail
, cmd_next
;
1952 unsigned int comp_tail
;
1954 lepp_cmd_t cmds
[LEPP_MAX_FRAGS
];
1958 * This is paranoia, since we think that if the link doesn't come
1959 * up, telling Linux we have no carrier will keep it from trying
1960 * to transmit. If it does, though, we can't execute this routine,
1961 * since data structures we depend on aren't set up yet.
1963 if (!info
->registered
)
1964 return NETDEV_TX_BUSY
;
1967 /* Save the timestamp. */
1968 dev
->trans_start
= jiffies
;
1971 #ifdef TILE_NET_PARANOIA
1972 #if CHIP_HAS_CBOX_HOME_MAP()
1974 HV_PTE pte
= *virt_to_pte(current
->mm
, (unsigned long)data
);
1975 if (hv_pte_get_mode(pte
) != HV_PTE_MODE_CACHE_HASH_L3
)
1976 panic("Non-HFH egress buffer! VA=%p Mode=%d PTE=%llx",
1977 data
, hv_pte_get_mode(pte
), hv_pte_val(pte
));
1983 #ifdef TILE_NET_DUMP_PACKETS
1984 /* ISSUE: Does not dump the "frags". */
1985 dump_packet(data
, skb_headlen(skb
), "tx");
1986 #endif /* TILE_NET_DUMP_PACKETS */
1989 if (sh
->gso_size
!= 0)
1990 return tile_net_tx_tso(skb
, dev
);
1993 /* Prepare the commands. */
1995 num_frags
= tile_net_tx_frags(frags
, skb
, data
, skb_headlen(skb
));
1997 for (i
= 0; i
< num_frags
; i
++) {
1999 bool final
= (i
== num_frags
- 1);
2002 .cpa_lo
= frags
[i
].cpa_lo
,
2003 .cpa_hi
= frags
[i
].cpa_hi
,
2004 .length
= frags
[i
].length
,
2005 .hash_for_home
= frags
[i
].hash_for_home
,
2006 .send_completion
= final
,
2007 .end_of_packet
= final
2010 if (i
== 0 && skb
->ip_summed
== CHECKSUM_PARTIAL
) {
2011 cmd
.compute_checksum
= 1;
2012 cmd
.checksum_data
.bits
.start_byte
= csum_start
;
2013 cmd
.checksum_data
.bits
.count
= len
- csum_start
;
2014 cmd
.checksum_data
.bits
.destination_byte
=
2015 csum_start
+ skb
->csum_offset
;
2022 /* Prefetch and wait, to minimize time spent holding the spinlock. */
2023 prefetch_L1(&eq
->comp_tail
);
2024 prefetch_L1(&eq
->cmd_tail
);
2028 /* Enqueue the commands. */
2030 spin_lock_irqsave(&priv
->eq_lock
, irqflags
);
2032 /* Handle completions if needed to make room. */
2033 /* NOTE: Return NETDEV_TX_BUSY if there is still no room. */
2034 if (lepp_num_free_comp_slots(eq
) == 0) {
2035 nolds
= tile_net_lepp_grab_comps(eq
, olds
, wanted
, 0);
2038 spin_unlock_irqrestore(&priv
->eq_lock
, irqflags
);
2039 return NETDEV_TX_BUSY
;
2043 cmd_head
= eq
->cmd_head
;
2044 cmd_tail
= eq
->cmd_tail
;
2046 /* Copy the commands, or fail. */
2047 /* NOTE: Return NETDEV_TX_BUSY if the queue is full. */
2048 for (i
= 0; i
< num_frags
; i
++) {
2050 /* Prepare to advance, detecting full queue. */
2051 cmd_next
= cmd_tail
+ cmd_size
;
2052 if (cmd_tail
< cmd_head
&& cmd_next
>= cmd_head
)
2054 if (cmd_next
> LEPP_CMD_LIMIT
) {
2056 if (cmd_next
== cmd_head
)
2060 /* Copy the command. */
2061 *(lepp_cmd_t
*)&eq
->cmds
[cmd_tail
] = cmds
[i
];
2064 cmd_tail
= cmd_next
;
2067 /* Record "skb" for eventual freeing. */
2068 comp_tail
= eq
->comp_tail
;
2069 eq
->comps
[comp_tail
] = skb
;
2070 LEPP_QINC(comp_tail
);
2071 eq
->comp_tail
= comp_tail
;
2073 /* Flush before allowing LEPP to handle the command. */
2074 /* ISSUE: Is this the optimal location for the flush? */
2077 eq
->cmd_tail
= cmd_tail
;
2079 /* NOTE: Using "4" here is more efficient than "0" or "2", */
2080 /* and, strangely, more efficient than pre-checking the number */
2081 /* of available completions, and comparing it to 4. */
2083 nolds
= tile_net_lepp_grab_comps(eq
, olds
, wanted
, 4);
2085 spin_unlock_irqrestore(&priv
->eq_lock
, irqflags
);
2087 /* Handle completions. */
2088 for (i
= 0; i
< nolds
; i
++)
2091 /* HACK: Track "expanded" size for short packets (e.g. 42 < 60). */
2092 stats
->tx_packets
++;
2093 stats
->tx_bytes
+= ((len
>= ETH_ZLEN
) ? len
: ETH_ZLEN
);
2095 /* Make sure the egress timer is scheduled. */
2096 tile_net_schedule_egress_timer(info
);
2098 return NETDEV_TX_OK
;
2103 * Deal with a transmit timeout.
2105 static void tile_net_tx_timeout(struct net_device
*dev
)
2107 PDEBUG("tile_net_tx_timeout()\n");
2108 PDEBUG("Transmit timeout at %ld, latency %ld\n", jiffies
,
2109 jiffies
- dev
->trans_start
);
2111 /* XXX: ISSUE: This doesn't seem useful for us. */
2112 netif_wake_queue(dev
);
2119 static int tile_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
2126 * Get System Network Statistics.
2128 * Returns the address of the device statistics structure.
2130 static struct net_device_stats
*tile_net_get_stats(struct net_device
*dev
)
2132 struct tile_net_priv
*priv
= netdev_priv(dev
);
2139 for_each_online_cpu(i
) {
2141 rx_packets
+= priv
->cpu
[i
]->stats
.rx_packets
;
2142 rx_bytes
+= priv
->cpu
[i
]->stats
.rx_bytes
;
2143 tx_packets
+= priv
->cpu
[i
]->stats
.tx_packets
;
2144 tx_bytes
+= priv
->cpu
[i
]->stats
.tx_bytes
;
2148 priv
->stats
.rx_packets
= rx_packets
;
2149 priv
->stats
.rx_bytes
= rx_bytes
;
2150 priv
->stats
.tx_packets
= tx_packets
;
2151 priv
->stats
.tx_bytes
= tx_bytes
;
2153 return &priv
->stats
;
2160 * The "change_mtu" method is usually not needed.
2161 * If you need it, it must be like this.
2163 static int tile_net_change_mtu(struct net_device
*dev
, int new_mtu
)
2165 PDEBUG("tile_net_change_mtu()\n");
2168 if ((new_mtu
< 68) || (new_mtu
> 1500))
2171 /* Accept the value. */
2179 * Change the Ethernet Address of the NIC.
2181 * The hypervisor driver does not support changing MAC address. However,
2182 * the IPP does not do anything with the MAC address, so the address which
2183 * gets used on outgoing packets, and which is accepted on incoming packets,
2184 * is completely up to the NetIO program or kernel driver which is actually
2187 * Returns 0 on success, negative on failure.
2189 static int tile_net_set_mac_address(struct net_device
*dev
, void *p
)
2191 struct sockaddr
*addr
= p
;
2193 if (!is_valid_ether_addr(addr
->sa_data
))
2194 return -EADDRNOTAVAIL
;
2196 /* ISSUE: Note that "dev_addr" is now a pointer. */
2197 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
2204 * Obtain the MAC address from the hypervisor.
2205 * This must be done before opening the device.
2207 static int tile_net_get_mac(struct net_device
*dev
)
2209 struct tile_net_priv
*priv
= netdev_priv(dev
);
2211 char hv_dev_name
[32];
2214 __netio_getset_offset_t offset
= { .word
= NETIO_IPP_PARAM_OFF
};
2218 /* For example, "xgbe0". */
2219 strcpy(hv_dev_name
, dev
->name
);
2220 len
= strlen(hv_dev_name
);
2222 /* For example, "xgbe/0". */
2223 hv_dev_name
[len
] = hv_dev_name
[len
- 1];
2224 hv_dev_name
[len
- 1] = '/';
2227 /* For example, "xgbe/0/native_hash". */
2228 strcpy(hv_dev_name
+ len
, hash_default
? "/native_hash" : "/native");
2230 /* Get the hypervisor handle for this device. */
2231 priv
->hv_devhdl
= hv_dev_open((HV_VirtAddr
)hv_dev_name
, 0);
2232 PDEBUG("hv_dev_open(%s) returned %d %p\n",
2233 hv_dev_name
, priv
->hv_devhdl
, &priv
->hv_devhdl
);
2234 if (priv
->hv_devhdl
< 0) {
2235 if (priv
->hv_devhdl
== HV_ENODEV
)
2236 printk(KERN_DEBUG
"Ignoring unconfigured device %s\n",
2239 printk(KERN_DEBUG
"hv_dev_open(%s) returned %d\n",
2240 hv_dev_name
, priv
->hv_devhdl
);
2245 * Read the hardware address from the hypervisor.
2246 * ISSUE: Note that "dev_addr" is now a pointer.
2248 offset
.bits
.class = NETIO_PARAM
;
2249 offset
.bits
.addr
= NETIO_PARAM_MAC
;
2250 ret
= hv_dev_pread(priv
->hv_devhdl
, 0,
2251 (HV_VirtAddr
)dev
->dev_addr
, dev
->addr_len
,
2253 PDEBUG("hv_dev_pread(NETIO_PARAM_MAC) returned %d\n", ret
);
2255 printk(KERN_DEBUG
"hv_dev_pread(NETIO_PARAM_MAC) %s failed\n",
2258 * Since the device is configured by the hypervisor but we
2259 * can't get its MAC address, we are most likely running
2260 * the simulator, so let's generate a random MAC address.
2262 eth_hw_addr_random(dev
);
2269 #ifdef CONFIG_NET_POLL_CONTROLLER
2271 * Polling 'interrupt' - used by things like netconsole to send skbs
2272 * without having to re-enable interrupts. It's not called while
2273 * the interrupt routine is executing.
2275 static void tile_net_netpoll(struct net_device
*dev
)
2277 struct tile_net_priv
*priv
= netdev_priv(dev
);
2278 disable_percpu_irq(priv
->intr_id
);
2279 tile_net_handle_ingress_interrupt(priv
->intr_id
, dev
);
2280 enable_percpu_irq(priv
->intr_id
, 0);
2285 static const struct net_device_ops tile_net_ops
= {
2286 .ndo_open
= tile_net_open
,
2287 .ndo_stop
= tile_net_stop
,
2288 .ndo_start_xmit
= tile_net_tx
,
2289 .ndo_do_ioctl
= tile_net_ioctl
,
2290 .ndo_get_stats
= tile_net_get_stats
,
2291 .ndo_change_mtu
= tile_net_change_mtu
,
2292 .ndo_tx_timeout
= tile_net_tx_timeout
,
2293 .ndo_set_mac_address
= tile_net_set_mac_address
,
2294 #ifdef CONFIG_NET_POLL_CONTROLLER
2295 .ndo_poll_controller
= tile_net_netpoll
,
2301 * The setup function.
2303 * This uses ether_setup() to assign various fields in dev, including
2304 * setting IFF_BROADCAST and IFF_MULTICAST, then sets some extra fields.
2306 static void tile_net_setup(struct net_device
*dev
)
2308 PDEBUG("tile_net_setup()\n");
2312 dev
->netdev_ops
= &tile_net_ops
;
2314 dev
->watchdog_timeo
= TILE_NET_TIMEOUT
;
2316 /* We want lockless xmit. */
2317 dev
->features
|= NETIF_F_LLTX
;
2319 /* We support hardware tx checksums. */
2320 dev
->features
|= NETIF_F_HW_CSUM
;
2322 /* We support scatter/gather. */
2323 dev
->features
|= NETIF_F_SG
;
2325 /* We support TSO. */
2326 dev
->features
|= NETIF_F_TSO
;
2329 /* We support GSO. */
2330 dev
->features
|= NETIF_F_GSO
;
2334 dev
->features
|= NETIF_F_HIGHDMA
;
2336 /* ISSUE: We should support NETIF_F_UFO. */
2338 dev
->tx_queue_len
= TILE_NET_TX_QUEUE_LEN
;
2340 dev
->mtu
= TILE_NET_MTU
;
2345 * Allocate the device structure, register the device, and obtain the
2346 * MAC address from the hypervisor.
2348 static struct net_device
*tile_net_dev_init(const char *name
)
2351 struct net_device
*dev
;
2352 struct tile_net_priv
*priv
;
2355 * Allocate the device structure. This allocates "priv", calls
2356 * tile_net_setup(), and saves "name". Normally, "name" is a
2357 * template, instantiated by register_netdev(), but not for us.
2359 dev
= alloc_netdev(sizeof(*priv
), name
, tile_net_setup
);
2361 pr_err("alloc_netdev(%s) failed\n", name
);
2365 priv
= netdev_priv(dev
);
2367 /* Initialize "priv". */
2369 memset(priv
, 0, sizeof(*priv
));
2371 /* Save "dev" for "tile_net_open_retry()". */
2374 INIT_DELAYED_WORK(&priv
->retry_work
, tile_net_open_retry
);
2376 spin_lock_init(&priv
->eq_lock
);
2378 /* Allocate "eq". */
2379 priv
->eq_pages
= alloc_pages(GFP_KERNEL
| __GFP_ZERO
, EQ_ORDER
);
2380 if (!priv
->eq_pages
) {
2384 priv
->eq
= page_address(priv
->eq_pages
);
2386 /* Register the network device. */
2387 ret
= register_netdev(dev
);
2389 pr_err("register_netdev %s failed %d\n", dev
->name
, ret
);
2390 __free_pages(priv
->eq_pages
, EQ_ORDER
);
2395 /* Get the MAC address. */
2396 ret
= tile_net_get_mac(dev
);
2398 unregister_netdev(dev
);
2399 __free_pages(priv
->eq_pages
, EQ_ORDER
);
2411 * FIXME: If compiled as a module, this module cannot be "unloaded",
2412 * because the "ingress interrupt handler" is registered permanently.
2414 static void tile_net_cleanup(void)
2418 for (i
= 0; i
< TILE_NET_DEVS
; i
++) {
2419 if (tile_net_devs
[i
]) {
2420 struct net_device
*dev
= tile_net_devs
[i
];
2421 struct tile_net_priv
*priv
= netdev_priv(dev
);
2422 unregister_netdev(dev
);
2423 finv_buffer_remote(priv
->eq
, EQ_SIZE
, 0);
2424 __free_pages(priv
->eq_pages
, EQ_ORDER
);
2432 * Module initialization.
2434 static int tile_net_init_module(void)
2436 pr_info("Tilera Network Driver\n");
2438 tile_net_devs
[0] = tile_net_dev_init("xgbe0");
2439 tile_net_devs
[1] = tile_net_dev_init("xgbe1");
2440 tile_net_devs
[2] = tile_net_dev_init("gbe0");
2441 tile_net_devs
[3] = tile_net_dev_init("gbe1");
2447 module_init(tile_net_init_module
);
2448 module_exit(tile_net_cleanup
);
2454 * The "network_cpus" boot argument specifies the cpus that are dedicated
2455 * to handle ingress packets.
2457 * The parameter should be in the form "network_cpus=m-n[,x-y]", where
2458 * m, n, x, y are integer numbers that represent the cpus that can be
2459 * neither a dedicated cpu nor a dataplane cpu.
2461 static int __init
network_cpus_setup(char *str
)
2463 int rc
= cpulist_parse_crop(str
, &network_cpus_map
);
2465 pr_warning("network_cpus=%s: malformed cpu list\n",
2469 /* Remove dedicated cpus. */
2470 cpumask_and(&network_cpus_map
, &network_cpus_map
,
2474 if (cpumask_empty(&network_cpus_map
)) {
2475 pr_warning("Ignoring network_cpus='%s'.\n",
2479 cpulist_scnprintf(buf
, sizeof(buf
), &network_cpus_map
);
2480 pr_info("Linux network CPUs: %s\n", buf
);
2481 network_cpus_used
= true;
2487 __setup("network_cpus=", network_cpus_setup
);