1 /*********************************************************************
2 * Author: Cavium Networks
4 * Contact: support@caviumnetworks.com
5 * This file is part of the OCTEON SDK
7 * Copyright (c) 2003-2010 Cavium Networks
9 * This file is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License, Version 2, as
11 * published by the Free Software Foundation.
13 * This file is distributed in the hope that it will be useful, but
14 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16 * NONINFRINGEMENT. See the GNU General Public License for more
19 * You should have received a copy of the GNU General Public License
20 * along with this file; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 * or visit http://www.gnu.org/licenses/.
24 * This file may also be available under a different license from Cavium.
25 * Contact Cavium Networks for more information
26 *********************************************************************/
27 #include <linux/module.h>
28 #include <linux/kernel.h>
29 #include <linux/netdevice.h>
30 #include <linux/init.h>
31 #include <linux/etherdevice.h>
33 #include <linux/string.h>
36 #include <linux/xfrm.h>
38 #endif /* CONFIG_XFRM */
40 #include <asm/atomic.h>
42 #include <asm/octeon/octeon.h>
44 #include "ethernet-defines.h"
45 #include "octeon-ethernet.h"
46 #include "ethernet-tx.h"
47 #include "ethernet-util.h"
53 #include "cvmx-helper.h"
55 #include "cvmx-gmxx-defs.h"
57 #define CVM_OCT_SKB_CB(skb) ((u64 *)((skb)->cb))
60 * You can define GET_SKBUFF_QOS() to override how the skbuff output
61 * function determines which output queue is used. The default
62 * implementation always uses the base queue for the port. If, for
63 * example, you wanted to use the skb->priority fieid, define
64 * GET_SKBUFF_QOS as: #define GET_SKBUFF_QOS(skb) ((skb)->priority)
66 #ifndef GET_SKBUFF_QOS
67 #define GET_SKBUFF_QOS(skb) 0
70 static void cvm_oct_tx_do_cleanup(unsigned long arg
);
71 static DECLARE_TASKLET(cvm_oct_tx_cleanup_tasklet
, cvm_oct_tx_do_cleanup
, 0);
73 /* Maximum number of SKBs to try to free per xmit packet. */
74 #define MAX_SKB_TO_FREE (MAX_OUT_QUEUE_DEPTH * 2)
76 static inline int32_t cvm_oct_adjust_skb_to_free(int32_t skb_to_free
, int fau
)
79 undo
= skb_to_free
> 0 ? MAX_SKB_TO_FREE
: skb_to_free
+ MAX_SKB_TO_FREE
;
81 cvmx_fau_atomic_add32(fau
, -undo
);
82 skb_to_free
= -skb_to_free
> MAX_SKB_TO_FREE
? MAX_SKB_TO_FREE
: -skb_to_free
;
86 static void cvm_oct_kick_tx_poll_watchdog(void)
88 union cvmx_ciu_timx ciu_timx
;
90 ciu_timx
.s
.one_shot
= 1;
91 ciu_timx
.s
.len
= cvm_oct_tx_poll_interval
;
92 cvmx_write_csr(CVMX_CIU_TIMX(1), ciu_timx
.u64
);
95 void cvm_oct_free_tx_skbs(struct net_device
*dev
)
98 int qos
, queues_per_port
;
100 int total_remaining
= 0;
102 struct octeon_ethernet
*priv
= netdev_priv(dev
);
104 queues_per_port
= cvmx_pko_get_num_queues(priv
->port
);
105 /* Drain any pending packets in the free list */
106 for (qos
= 0; qos
< queues_per_port
; qos
++) {
107 if (skb_queue_len(&priv
->tx_free_list
[qos
]) == 0)
109 skb_to_free
= cvmx_fau_fetch_and_add32(priv
->fau
+qos
*4, MAX_SKB_TO_FREE
);
110 skb_to_free
= cvm_oct_adjust_skb_to_free(skb_to_free
, priv
->fau
+qos
*4);
113 total_freed
+= skb_to_free
;
114 if (skb_to_free
> 0) {
115 struct sk_buff
*to_free_list
= NULL
;
116 spin_lock_irqsave(&priv
->tx_free_list
[qos
].lock
, flags
);
117 while (skb_to_free
> 0) {
118 struct sk_buff
*t
= __skb_dequeue(&priv
->tx_free_list
[qos
]);
119 t
->next
= to_free_list
;
123 spin_unlock_irqrestore(&priv
->tx_free_list
[qos
].lock
, flags
);
124 /* Do the actual freeing outside of the lock. */
125 while (to_free_list
) {
126 struct sk_buff
*t
= to_free_list
;
127 to_free_list
= to_free_list
->next
;
128 dev_kfree_skb_any(t
);
131 total_remaining
+= skb_queue_len(&priv
->tx_free_list
[qos
]);
133 if (total_freed
>= 0 && netif_queue_stopped(dev
))
134 netif_wake_queue(dev
);
136 cvm_oct_kick_tx_poll_watchdog();
140 * cvm_oct_xmit - transmit a packet
141 * @skb: Packet to send
142 * @dev: Device info structure
144 * Returns Always returns NETDEV_TX_OK
146 int cvm_oct_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
148 cvmx_pko_command_word0_t pko_command
;
149 union cvmx_buf_ptr hw_buffer
;
150 uint64_t old_scratch
;
151 uint64_t old_scratch2
;
154 enum {QUEUE_CORE
, QUEUE_HW
, QUEUE_DROP
} queue_type
;
155 struct octeon_ethernet
*priv
= netdev_priv(dev
);
156 struct sk_buff
*to_free_list
;
158 int32_t buffers_to_free
;
161 #if REUSE_SKBUFFS_WITHOUT_FREE
162 unsigned char *fpa_head
;
166 * Prefetch the private data structure. It is larger that one
172 * The check on CVMX_PKO_QUEUES_PER_PORT_* is designed to
173 * completely remove "qos" in the event neither interface
174 * supports multiple queues per port.
176 if ((CVMX_PKO_QUEUES_PER_PORT_INTERFACE0
> 1) ||
177 (CVMX_PKO_QUEUES_PER_PORT_INTERFACE1
> 1)) {
178 qos
= GET_SKBUFF_QOS(skb
);
181 else if (qos
>= cvmx_pko_get_num_queues(priv
->port
))
186 if (USE_ASYNC_IOBDMA
) {
187 /* Save scratch in case userspace is using it */
189 old_scratch
= cvmx_scratch_read64(CVMX_SCR_SCRATCH
);
190 old_scratch2
= cvmx_scratch_read64(CVMX_SCR_SCRATCH
+ 8);
193 * Fetch and increment the number of packets to be
196 cvmx_fau_async_fetch_and_add32(CVMX_SCR_SCRATCH
+ 8,
197 FAU_NUM_PACKET_BUFFERS_TO_FREE
,
199 cvmx_fau_async_fetch_and_add32(CVMX_SCR_SCRATCH
,
205 * We have space for 6 segment pointers, If there will be more
206 * than that, we must linearize.
208 if (unlikely(skb_shinfo(skb
)->nr_frags
> 5)) {
209 if (unlikely(__skb_linearize(skb
))) {
210 queue_type
= QUEUE_DROP
;
211 if (USE_ASYNC_IOBDMA
) {
212 /* Get the number of skbuffs in use by the hardware */
214 skb_to_free
= cvmx_scratch_read64(CVMX_SCR_SCRATCH
);
216 /* Get the number of skbuffs in use by the hardware */
217 skb_to_free
= cvmx_fau_fetch_and_add32(priv
->fau
+ qos
* 4,
220 skb_to_free
= cvm_oct_adjust_skb_to_free(skb_to_free
, priv
->fau
+ qos
* 4);
221 spin_lock_irqsave(&priv
->tx_free_list
[qos
].lock
, flags
);
227 * The CN3XXX series of parts has an errata (GMX-401) which
228 * causes the GMX block to hang if a collision occurs towards
229 * the end of a <68 byte packet. As a workaround for this, we
230 * pad packets to be 68 bytes whenever we are in half duplex
231 * mode. We don't handle the case of having a small packet but
232 * no room to add the padding. The kernel should always give
233 * us at least a cache line
235 if ((skb
->len
< 64) && OCTEON_IS_MODEL(OCTEON_CN3XXX
)) {
236 union cvmx_gmxx_prtx_cfg gmx_prt_cfg
;
237 int interface
= INTERFACE(priv
->port
);
238 int index
= INDEX(priv
->port
);
241 /* We only need to pad packet in half duplex mode */
243 cvmx_read_csr(CVMX_GMXX_PRTX_CFG(index
, interface
));
244 if (gmx_prt_cfg
.s
.duplex
== 0) {
245 int add_bytes
= 64 - skb
->len
;
246 if ((skb_tail_pointer(skb
) + add_bytes
) <=
247 skb_end_pointer(skb
))
248 memset(__skb_put(skb
, add_bytes
), 0,
254 /* Build the PKO command */
256 pko_command
.s
.n2
= 1; /* Don't pollute L2 with the outgoing packet */
257 pko_command
.s
.segs
= 1;
258 pko_command
.s
.total_bytes
= skb
->len
;
259 pko_command
.s
.size0
= CVMX_FAU_OP_SIZE_32
;
260 pko_command
.s
.subone0
= 1;
262 pko_command
.s
.dontfree
= 1;
264 /* Build the PKO buffer pointer */
266 if (skb_shinfo(skb
)->nr_frags
== 0) {
267 hw_buffer
.s
.addr
= XKPHYS_TO_PHYS((u64
)skb
->data
);
268 hw_buffer
.s
.pool
= 0;
269 hw_buffer
.s
.size
= skb
->len
;
271 hw_buffer
.s
.addr
= XKPHYS_TO_PHYS((u64
)skb
->data
);
272 hw_buffer
.s
.pool
= 0;
273 hw_buffer
.s
.size
= skb_headlen(skb
);
274 CVM_OCT_SKB_CB(skb
)[0] = hw_buffer
.u64
;
275 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
276 struct skb_frag_struct
*fs
= skb_shinfo(skb
)->frags
+ i
;
277 hw_buffer
.s
.addr
= XKPHYS_TO_PHYS((u64
)(page_address(fs
->page
) + fs
->page_offset
));
278 hw_buffer
.s
.size
= fs
->size
;
279 CVM_OCT_SKB_CB(skb
)[i
+ 1] = hw_buffer
.u64
;
281 hw_buffer
.s
.addr
= XKPHYS_TO_PHYS((u64
)CVM_OCT_SKB_CB(skb
));
282 hw_buffer
.s
.size
= skb_shinfo(skb
)->nr_frags
+ 1;
283 pko_command
.s
.segs
= skb_shinfo(skb
)->nr_frags
+ 1;
284 pko_command
.s
.gather
= 1;
285 goto dont_put_skbuff_in_hw
;
289 * See if we can put this skb in the FPA pool. Any strange
290 * behavior from the Linux networking stack will most likely
291 * be caused by a bug in the following code. If some field is
292 * in use by the network stack and get carried over when a
293 * buffer is reused, bad thing may happen. If in doubt and
294 * you dont need the absolute best performance, disable the
295 * define REUSE_SKBUFFS_WITHOUT_FREE. The reuse of buffers has
296 * shown a 25% increase in performance under some loads.
298 #if REUSE_SKBUFFS_WITHOUT_FREE
299 fpa_head
= skb
->head
+ 256 - ((unsigned long)skb
->head
& 0x7f);
300 if (unlikely(skb
->data
< fpa_head
)) {
302 * printk("TX buffer beginning can't meet FPA
303 * alignment constraints\n");
305 goto dont_put_skbuff_in_hw
;
308 ((skb_end_pointer(skb
) - fpa_head
) < CVMX_FPA_PACKET_POOL_SIZE
)) {
310 printk("TX buffer isn't large enough for the FPA\n");
312 goto dont_put_skbuff_in_hw
;
314 if (unlikely(skb_shared(skb
))) {
316 printk("TX buffer sharing data with someone else\n");
318 goto dont_put_skbuff_in_hw
;
320 if (unlikely(skb_cloned(skb
))) {
322 printk("TX buffer has been cloned\n");
324 goto dont_put_skbuff_in_hw
;
326 if (unlikely(skb_header_cloned(skb
))) {
328 printk("TX buffer header has been cloned\n");
330 goto dont_put_skbuff_in_hw
;
332 if (unlikely(skb
->destructor
)) {
334 printk("TX buffer has a destructor\n");
336 goto dont_put_skbuff_in_hw
;
338 if (unlikely(skb_shinfo(skb
)->nr_frags
)) {
340 printk("TX buffer has fragments\n");
342 goto dont_put_skbuff_in_hw
;
346 sizeof(*skb
) + skb_end_pointer(skb
) - skb
->head
)) {
348 printk("TX buffer truesize has been changed\n");
350 goto dont_put_skbuff_in_hw
;
354 * We can use this buffer in the FPA. We don't need the FAU
357 pko_command
.s
.dontfree
= 0;
359 hw_buffer
.s
.back
= ((unsigned long)skb
->data
>> 7) - ((unsigned long)fpa_head
>> 7);
360 *(struct sk_buff
**)(fpa_head
- sizeof(void *)) = skb
;
363 * The skbuff will be reused without ever being freed. We must
364 * cleanup a bunch of core things.
366 dst_release(skb_dst(skb
));
367 skb_dst_set(skb
, NULL
);
369 secpath_put(skb
->sp
);
374 #ifdef CONFIG_NET_SCHED
376 #ifdef CONFIG_NET_CLS_ACT
378 #endif /* CONFIG_NET_CLS_ACT */
379 #endif /* CONFIG_NET_SCHED */
380 #endif /* REUSE_SKBUFFS_WITHOUT_FREE */
382 dont_put_skbuff_in_hw
:
384 /* Check if we can use the hardware checksumming */
385 if (USE_HW_TCPUDP_CHECKSUM
&& (skb
->protocol
== htons(ETH_P_IP
)) &&
386 (ip_hdr(skb
)->version
== 4) && (ip_hdr(skb
)->ihl
== 5) &&
387 ((ip_hdr(skb
)->frag_off
== 0) || (ip_hdr(skb
)->frag_off
== 1 << 14))
388 && ((ip_hdr(skb
)->protocol
== IPPROTO_TCP
)
389 || (ip_hdr(skb
)->protocol
== IPPROTO_UDP
))) {
390 /* Use hardware checksum calc */
391 pko_command
.s
.ipoffp1
= sizeof(struct ethhdr
) + 1;
394 if (USE_ASYNC_IOBDMA
) {
395 /* Get the number of skbuffs in use by the hardware */
397 skb_to_free
= cvmx_scratch_read64(CVMX_SCR_SCRATCH
);
398 buffers_to_free
= cvmx_scratch_read64(CVMX_SCR_SCRATCH
+ 8);
400 /* Get the number of skbuffs in use by the hardware */
401 skb_to_free
= cvmx_fau_fetch_and_add32(priv
->fau
+ qos
* 4,
404 cvmx_fau_fetch_and_add32(FAU_NUM_PACKET_BUFFERS_TO_FREE
, 0);
407 skb_to_free
= cvm_oct_adjust_skb_to_free(skb_to_free
, priv
->fau
+qos
*4);
410 * If we're sending faster than the receive can free them then
411 * don't do the HW free.
413 if ((buffers_to_free
< -100) && !pko_command
.s
.dontfree
)
414 pko_command
.s
.dontfree
= 1;
416 if (pko_command
.s
.dontfree
) {
417 queue_type
= QUEUE_CORE
;
418 pko_command
.s
.reg0
= priv
->fau
+qos
*4;
420 queue_type
= QUEUE_HW
;
422 if (USE_ASYNC_IOBDMA
)
423 cvmx_fau_async_fetch_and_add32(CVMX_SCR_SCRATCH
, FAU_TOTAL_TX_TO_CLEAN
, 1);
425 spin_lock_irqsave(&priv
->tx_free_list
[qos
].lock
, flags
);
427 /* Drop this packet if we have too many already queued to the HW */
428 if (unlikely(skb_queue_len(&priv
->tx_free_list
[qos
]) >= MAX_OUT_QUEUE_DEPTH
)) {
429 if (dev
->tx_queue_len
!= 0) {
430 /* Drop the lock when notifying the core. */
431 spin_unlock_irqrestore(&priv
->tx_free_list
[qos
].lock
, flags
);
432 netif_stop_queue(dev
);
433 spin_lock_irqsave(&priv
->tx_free_list
[qos
].lock
, flags
);
435 /* If not using normal queueing. */
436 queue_type
= QUEUE_DROP
;
441 cvmx_pko_send_packet_prepare(priv
->port
, priv
->queue
+ qos
,
444 /* Send the packet to the output queue */
445 if (unlikely(cvmx_pko_send_packet_finish(priv
->port
,
447 pko_command
, hw_buffer
,
448 CVMX_PKO_LOCK_NONE
))) {
449 DEBUGPRINT("%s: Failed to send the packet\n", dev
->name
);
450 queue_type
= QUEUE_DROP
;
455 switch (queue_type
) {
457 skb
->next
= to_free_list
;
459 priv
->stats
.tx_dropped
++;
462 cvmx_fau_atomic_add32(FAU_NUM_PACKET_BUFFERS_TO_FREE
, -1);
465 __skb_queue_tail(&priv
->tx_free_list
[qos
], skb
);
471 while (skb_to_free
> 0) {
472 struct sk_buff
*t
= __skb_dequeue(&priv
->tx_free_list
[qos
]);
473 t
->next
= to_free_list
;
478 spin_unlock_irqrestore(&priv
->tx_free_list
[qos
].lock
, flags
);
480 /* Do the actual freeing outside of the lock. */
481 while (to_free_list
) {
482 struct sk_buff
*t
= to_free_list
;
483 to_free_list
= to_free_list
->next
;
484 dev_kfree_skb_any(t
);
487 if (USE_ASYNC_IOBDMA
) {
489 total_to_clean
= cvmx_scratch_read64(CVMX_SCR_SCRATCH
);
490 /* Restore the scratch area */
491 cvmx_scratch_write64(CVMX_SCR_SCRATCH
, old_scratch
);
492 cvmx_scratch_write64(CVMX_SCR_SCRATCH
+ 8, old_scratch2
);
494 total_to_clean
= cvmx_fau_fetch_and_add32(FAU_TOTAL_TX_TO_CLEAN
, 1);
497 if (total_to_clean
& 0x3ff) {
499 * Schedule the cleanup tasklet every 1024 packets for
500 * the pathological case of high traffic on one port
501 * delaying clean up of packets on a different port
502 * that is blocked waiting for the cleanup.
504 tasklet_schedule(&cvm_oct_tx_cleanup_tasklet
);
507 cvm_oct_kick_tx_poll_watchdog();
513 * cvm_oct_xmit_pow - transmit a packet to the POW
514 * @skb: Packet to send
515 * @dev: Device info structure
517 * Returns Always returns zero
519 int cvm_oct_xmit_pow(struct sk_buff
*skb
, struct net_device
*dev
)
521 struct octeon_ethernet
*priv
= netdev_priv(dev
);
525 /* Get a work queue entry */
526 cvmx_wqe_t
*work
= cvmx_fpa_alloc(CVMX_FPA_WQE_POOL
);
527 if (unlikely(work
== NULL
)) {
528 DEBUGPRINT("%s: Failed to allocate a work queue entry\n",
530 priv
->stats
.tx_dropped
++;
535 /* Get a packet buffer */
536 packet_buffer
= cvmx_fpa_alloc(CVMX_FPA_PACKET_POOL
);
537 if (unlikely(packet_buffer
== NULL
)) {
538 DEBUGPRINT("%s: Failed to allocate a packet buffer\n",
540 cvmx_fpa_free(work
, CVMX_FPA_WQE_POOL
, DONT_WRITEBACK(1));
541 priv
->stats
.tx_dropped
++;
547 * Calculate where we need to copy the data to. We need to
548 * leave 8 bytes for a next pointer (unused). We also need to
549 * include any configure skip. Then we need to align the IP
550 * packet src and dest into the same 64bit word. The below
551 * calculation may add a little extra, but that doesn't
554 copy_location
= packet_buffer
+ sizeof(uint64_t);
555 copy_location
+= ((CVMX_HELPER_FIRST_MBUFF_SKIP
+ 7) & 0xfff8) + 6;
558 * We have to copy the packet since whoever processes this
559 * packet will free it to a hardware pool. We can't use the
560 * trick of counting outstanding packets like in
563 memcpy(copy_location
, skb
->data
, skb
->len
);
566 * Fill in some of the work queue fields. We may need to add
567 * more if the software at the other end needs them.
569 work
->hw_chksum
= skb
->csum
;
570 work
->len
= skb
->len
;
571 work
->ipprt
= priv
->port
;
572 work
->qos
= priv
->port
& 0x7;
573 work
->grp
= pow_send_group
;
574 work
->tag_type
= CVMX_HELPER_INPUT_TAG_TYPE
;
575 work
->tag
= pow_send_group
; /* FIXME */
576 /* Default to zero. Sets of zero later are commented out */
578 work
->word2
.s
.bufs
= 1;
579 work
->packet_ptr
.u64
= 0;
580 work
->packet_ptr
.s
.addr
= cvmx_ptr_to_phys(copy_location
);
581 work
->packet_ptr
.s
.pool
= CVMX_FPA_PACKET_POOL
;
582 work
->packet_ptr
.s
.size
= CVMX_FPA_PACKET_POOL_SIZE
;
583 work
->packet_ptr
.s
.back
= (copy_location
- packet_buffer
) >> 7;
585 if (skb
->protocol
== htons(ETH_P_IP
)) {
586 work
->word2
.s
.ip_offset
= 14;
588 work
->word2
.s
.vlan_valid
= 0; /* FIXME */
589 work
->word2
.s
.vlan_cfi
= 0; /* FIXME */
590 work
->word2
.s
.vlan_id
= 0; /* FIXME */
591 work
->word2
.s
.dec_ipcomp
= 0; /* FIXME */
593 work
->word2
.s
.tcp_or_udp
=
594 (ip_hdr(skb
)->protocol
== IPPROTO_TCP
)
595 || (ip_hdr(skb
)->protocol
== IPPROTO_UDP
);
598 work
->word2
.s
.dec_ipsec
= 0;
599 /* We only support IPv4 right now */
600 work
->word2
.s
.is_v6
= 0;
601 /* Hardware would set to zero */
602 work
->word2
.s
.software
= 0;
603 /* No error, packet is internal */
604 work
->word2
.s
.L4_error
= 0;
606 work
->word2
.s
.is_frag
= !((ip_hdr(skb
)->frag_off
== 0)
607 || (ip_hdr(skb
)->frag_off
==
610 /* Assume Linux is sending a good packet */
611 work
->word2
.s
.IP_exc
= 0;
613 work
->word2
.s
.is_bcast
= (skb
->pkt_type
== PACKET_BROADCAST
);
614 work
->word2
.s
.is_mcast
= (skb
->pkt_type
== PACKET_MULTICAST
);
616 /* This is an IP packet */
617 work
->word2
.s
.not_IP
= 0;
618 /* No error, packet is internal */
619 work
->word2
.s
.rcv_error
= 0;
620 /* No error, packet is internal */
621 work
->word2
.s
.err_code
= 0;
625 * When copying the data, include 4 bytes of the
626 * ethernet header to align the same way hardware
629 memcpy(work
->packet_data
, skb
->data
+ 10,
630 sizeof(work
->packet_data
));
633 work
->word2
.snoip
.vlan_valid
= 0; /* FIXME */
634 work
->word2
.snoip
.vlan_cfi
= 0; /* FIXME */
635 work
->word2
.snoip
.vlan_id
= 0; /* FIXME */
636 work
->word2
.snoip
.software
= 0; /* Hardware would set to zero */
638 work
->word2
.snoip
.is_rarp
= skb
->protocol
== htons(ETH_P_RARP
);
639 work
->word2
.snoip
.is_arp
= skb
->protocol
== htons(ETH_P_ARP
);
640 work
->word2
.snoip
.is_bcast
=
641 (skb
->pkt_type
== PACKET_BROADCAST
);
642 work
->word2
.snoip
.is_mcast
=
643 (skb
->pkt_type
== PACKET_MULTICAST
);
644 work
->word2
.snoip
.not_IP
= 1; /* IP was done up above */
646 /* No error, packet is internal */
647 work
->word2
.snoip
.rcv_error
= 0;
648 /* No error, packet is internal */
649 work
->word2
.snoip
.err_code
= 0;
651 memcpy(work
->packet_data
, skb
->data
, sizeof(work
->packet_data
));
654 /* Submit the packet to the POW */
655 cvmx_pow_work_submit(work
, work
->tag
, work
->tag_type
, work
->qos
,
657 priv
->stats
.tx_packets
++;
658 priv
->stats
.tx_bytes
+= skb
->len
;
664 * cvm_oct_tx_shutdown_dev - free all skb that are currently queued for TX.
665 * @dev: Device being shutdown
668 void cvm_oct_tx_shutdown_dev(struct net_device
*dev
)
670 struct octeon_ethernet
*priv
= netdev_priv(dev
);
674 for (qos
= 0; qos
< 16; qos
++) {
675 spin_lock_irqsave(&priv
->tx_free_list
[qos
].lock
, flags
);
676 while (skb_queue_len(&priv
->tx_free_list
[qos
]))
677 dev_kfree_skb_any(__skb_dequeue
678 (&priv
->tx_free_list
[qos
]));
679 spin_unlock_irqrestore(&priv
->tx_free_list
[qos
].lock
, flags
);
683 static void cvm_oct_tx_do_cleanup(unsigned long arg
)
687 for (port
= 0; port
< TOTAL_NUMBER_OF_PORTS
; port
++) {
688 if (cvm_oct_device
[port
]) {
689 struct net_device
*dev
= cvm_oct_device
[port
];
690 cvm_oct_free_tx_skbs(dev
);
695 static irqreturn_t
cvm_oct_tx_cleanup_watchdog(int cpl
, void *dev_id
)
697 /* Disable the interrupt. */
698 cvmx_write_csr(CVMX_CIU_TIMX(1), 0);
699 /* Do the work in the tasklet. */
700 tasklet_schedule(&cvm_oct_tx_cleanup_tasklet
);
704 void cvm_oct_tx_initialize(void)
708 /* Disable the interrupt. */
709 cvmx_write_csr(CVMX_CIU_TIMX(1), 0);
710 /* Register an IRQ hander for to receive CIU_TIMX(1) interrupts */
711 i
= request_irq(OCTEON_IRQ_TIMER1
,
712 cvm_oct_tx_cleanup_watchdog
, 0,
713 "Ethernet", cvm_oct_device
);
716 panic("Could not acquire Ethernet IRQ %d\n", OCTEON_IRQ_TIMER1
);
719 void cvm_oct_tx_shutdown(void)
721 /* Free the interrupt handler */
722 free_irq(OCTEON_IRQ_TIMER1
, cvm_oct_device
);