2 * IPv4 over IEEE 1394, per RFC 2734
4 * Copyright (C) 2009 Jay Fenlason <fenlason@redhat.com>
6 * based on eth1394 by Ben Collins et al
10 #include <linux/device.h>
11 #include <linux/ethtool.h>
12 #include <linux/firewire.h>
13 #include <linux/firewire-constants.h>
14 #include <linux/highmem.h>
17 #include <linux/jiffies.h>
18 #include <linux/mod_devicetable.h>
19 #include <linux/module.h>
20 #include <linux/moduleparam.h>
21 #include <linux/mutex.h>
22 #include <linux/netdevice.h>
23 #include <linux/skbuff.h>
24 #include <linux/slab.h>
25 #include <linux/spinlock.h>
27 #include <asm/unaligned.h>
30 #define FWNET_MAX_FRAGMENTS 25 /* arbitrary limit */
31 #define FWNET_ISO_PAGE_COUNT (PAGE_SIZE < 16 * 1024 ? 4 : 2)
33 #define IEEE1394_BROADCAST_CHANNEL 31
34 #define IEEE1394_ALL_NODES (0xffc0 | 0x003f)
35 #define IEEE1394_MAX_PAYLOAD_S100 512
36 #define FWNET_NO_FIFO_ADDR (~0ULL)
38 #define IANA_SPECIFIER_ID 0x00005eU
39 #define RFC2734_SW_VERSION 0x000001U
41 #define IEEE1394_GASP_HDR_SIZE 8
43 #define RFC2374_UNFRAG_HDR_SIZE 4
44 #define RFC2374_FRAG_HDR_SIZE 8
45 #define RFC2374_FRAG_OVERHEAD 4
47 #define RFC2374_HDR_UNFRAG 0 /* unfragmented */
48 #define RFC2374_HDR_FIRSTFRAG 1 /* first fragment */
49 #define RFC2374_HDR_LASTFRAG 2 /* last fragment */
50 #define RFC2374_HDR_INTFRAG 3 /* interior fragment */
52 #define RFC2734_HW_ADDR_LEN 16
55 __be16 hw_type
; /* 0x0018 */
56 __be16 proto_type
; /* 0x0806 */
57 u8 hw_addr_len
; /* 16 */
58 u8 ip_addr_len
; /* 4 */
59 __be16 opcode
; /* ARP Opcode */
60 /* Above is exactly the same format as struct arphdr */
62 __be64 s_uniq_id
; /* Sender's 64bit EUI */
63 u8 max_rec
; /* Sender's max packet size */
64 u8 sspd
; /* Sender's max speed */
65 __be16 fifo_hi
; /* hi 16bits of sender's FIFO addr */
66 __be32 fifo_lo
; /* lo 32bits of sender's FIFO addr */
67 __be32 sip
; /* Sender's IP Address */
68 __be32 tip
; /* IP Address of requested hw addr */
69 } __attribute__((packed
));
71 /* This header format is specific to this driver implementation. */
75 u8 h_dest
[FWNET_ALEN
]; /* destination address */
76 __be16 h_proto
; /* packet type ID field */
77 } __attribute__((packed
));
79 /* IPv4 and IPv6 encapsulation header */
80 struct rfc2734_header
{
85 #define fwnet_get_hdr_lf(h) (((h)->w0 & 0xc0000000) >> 30)
86 #define fwnet_get_hdr_ether_type(h) (((h)->w0 & 0x0000ffff))
87 #define fwnet_get_hdr_dg_size(h) (((h)->w0 & 0x0fff0000) >> 16)
88 #define fwnet_get_hdr_fg_off(h) (((h)->w0 & 0x00000fff))
89 #define fwnet_get_hdr_dgl(h) (((h)->w1 & 0xffff0000) >> 16)
91 #define fwnet_set_hdr_lf(lf) ((lf) << 30)
92 #define fwnet_set_hdr_ether_type(et) (et)
93 #define fwnet_set_hdr_dg_size(dgs) ((dgs) << 16)
94 #define fwnet_set_hdr_fg_off(fgo) (fgo)
96 #define fwnet_set_hdr_dgl(dgl) ((dgl) << 16)
98 static inline void fwnet_make_uf_hdr(struct rfc2734_header
*hdr
,
101 hdr
->w0
= fwnet_set_hdr_lf(RFC2374_HDR_UNFRAG
)
102 | fwnet_set_hdr_ether_type(ether_type
);
105 static inline void fwnet_make_ff_hdr(struct rfc2734_header
*hdr
,
106 unsigned ether_type
, unsigned dg_size
, unsigned dgl
)
108 hdr
->w0
= fwnet_set_hdr_lf(RFC2374_HDR_FIRSTFRAG
)
109 | fwnet_set_hdr_dg_size(dg_size
)
110 | fwnet_set_hdr_ether_type(ether_type
);
111 hdr
->w1
= fwnet_set_hdr_dgl(dgl
);
114 static inline void fwnet_make_sf_hdr(struct rfc2734_header
*hdr
,
115 unsigned lf
, unsigned dg_size
, unsigned fg_off
, unsigned dgl
)
117 hdr
->w0
= fwnet_set_hdr_lf(lf
)
118 | fwnet_set_hdr_dg_size(dg_size
)
119 | fwnet_set_hdr_fg_off(fg_off
);
120 hdr
->w1
= fwnet_set_hdr_dgl(dgl
);
123 /* This list keeps track of what parts of the datagram have been filled in */
124 struct fwnet_fragment_info
{
125 struct list_head fi_link
;
130 struct fwnet_partial_datagram
{
131 struct list_head pd_link
;
132 struct list_head fi_list
;
134 /* FIXME Why not use skb->data? */
141 static DEFINE_MUTEX(fwnet_device_mutex
);
142 static LIST_HEAD(fwnet_device_list
);
144 struct fwnet_device
{
145 struct list_head dev_link
;
148 FWNET_BROADCAST_ERROR
,
149 FWNET_BROADCAST_RUNNING
,
150 FWNET_BROADCAST_STOPPED
,
152 struct fw_iso_context
*broadcast_rcv_context
;
153 struct fw_iso_buffer broadcast_rcv_buffer
;
154 void **broadcast_rcv_buffer_ptrs
;
155 unsigned broadcast_rcv_next_ptr
;
156 unsigned num_broadcast_rcv_ptrs
;
157 unsigned rcv_buffer_size
;
159 * This value is the maximum unfragmented datagram size that can be
160 * sent by the hardware. It already has the GASP overhead and the
161 * unfragmented datagram header overhead calculated into it.
163 unsigned broadcast_xmt_max_payload
;
164 u16 broadcast_xmt_datagramlabel
;
167 * The CSR address that remote nodes must send datagrams to for us to
170 struct fw_address_handler handler
;
173 /* List of packets to be sent */
174 struct list_head packet_list
;
176 * List of packets that were broadcasted. When we get an ISO interrupt
177 * one of them has been sent
179 struct list_head broadcasted_list
;
180 /* List of packets that have been sent but not yet acked */
181 struct list_head sent_list
;
183 struct list_head peer_list
;
184 struct fw_card
*card
;
185 struct net_device
*netdev
;
189 struct list_head peer_link
;
190 struct fwnet_device
*dev
;
194 /* guarded by dev->lock */
195 struct list_head pd_list
; /* received partial datagrams */
196 unsigned pdg_size
; /* pd_list size */
198 u16 datagram_label
; /* outgoing datagram label */
199 unsigned max_payload
; /* includes RFC2374_FRAG_HDR_SIZE overhead */
205 /* This is our task struct. It's used for the packet complete callback. */
206 struct fwnet_packet_task
{
208 * ptask can actually be on dev->packet_list, dev->broadcasted_list,
209 * or dev->sent_list depending on its current state.
211 struct list_head pt_link
;
212 struct fw_transaction transaction
;
213 struct rfc2734_header hdr
;
215 struct fwnet_device
*dev
;
217 int outstanding_pkts
;
218 unsigned max_payload
;
226 * saddr == NULL means use device source address.
227 * daddr == NULL means leave destination address (eg unresolved arp).
229 static int fwnet_header_create(struct sk_buff
*skb
, struct net_device
*net
,
230 unsigned short type
, const void *daddr
,
231 const void *saddr
, unsigned len
)
233 struct fwnet_header
*h
;
235 h
= (struct fwnet_header
*)skb_push(skb
, sizeof(*h
));
236 put_unaligned_be16(type
, &h
->h_proto
);
238 if (net
->flags
& (IFF_LOOPBACK
| IFF_NOARP
)) {
239 memset(h
->h_dest
, 0, net
->addr_len
);
241 return net
->hard_header_len
;
245 memcpy(h
->h_dest
, daddr
, net
->addr_len
);
247 return net
->hard_header_len
;
250 return -net
->hard_header_len
;
253 static int fwnet_header_rebuild(struct sk_buff
*skb
)
255 struct fwnet_header
*h
= (struct fwnet_header
*)skb
->data
;
257 if (get_unaligned_be16(&h
->h_proto
) == ETH_P_IP
)
258 return arp_find((unsigned char *)&h
->h_dest
, skb
);
260 fw_notify("%s: unable to resolve type %04x addresses\n",
261 skb
->dev
->name
, be16_to_cpu(h
->h_proto
));
265 static int fwnet_header_cache(const struct neighbour
*neigh
,
268 struct net_device
*net
;
269 struct fwnet_header
*h
;
271 if (hh
->hh_type
== cpu_to_be16(ETH_P_802_3
))
274 h
= (struct fwnet_header
*)((u8
*)hh
->hh_data
+ 16 - sizeof(*h
));
275 h
->h_proto
= hh
->hh_type
;
276 memcpy(h
->h_dest
, neigh
->ha
, net
->addr_len
);
277 hh
->hh_len
= FWNET_HLEN
;
282 /* Called by Address Resolution module to notify changes in address. */
283 static void fwnet_header_cache_update(struct hh_cache
*hh
,
284 const struct net_device
*net
, const unsigned char *haddr
)
286 memcpy((u8
*)hh
->hh_data
+ 16 - FWNET_HLEN
, haddr
, net
->addr_len
);
289 static int fwnet_header_parse(const struct sk_buff
*skb
, unsigned char *haddr
)
291 memcpy(haddr
, skb
->dev
->dev_addr
, FWNET_ALEN
);
296 static const struct header_ops fwnet_header_ops
= {
297 .create
= fwnet_header_create
,
298 .rebuild
= fwnet_header_rebuild
,
299 .cache
= fwnet_header_cache
,
300 .cache_update
= fwnet_header_cache_update
,
301 .parse
= fwnet_header_parse
,
304 /* FIXME: is this correct for all cases? */
305 static bool fwnet_frag_overlap(struct fwnet_partial_datagram
*pd
,
306 unsigned offset
, unsigned len
)
308 struct fwnet_fragment_info
*fi
;
309 unsigned end
= offset
+ len
;
311 list_for_each_entry(fi
, &pd
->fi_list
, fi_link
)
312 if (offset
< fi
->offset
+ fi
->len
&& end
> fi
->offset
)
318 /* Assumes that new fragment does not overlap any existing fragments */
319 static struct fwnet_fragment_info
*fwnet_frag_new(
320 struct fwnet_partial_datagram
*pd
, unsigned offset
, unsigned len
)
322 struct fwnet_fragment_info
*fi
, *fi2
, *new;
323 struct list_head
*list
;
326 list_for_each_entry(fi
, &pd
->fi_list
, fi_link
) {
327 if (fi
->offset
+ fi
->len
== offset
) {
328 /* The new fragment can be tacked on to the end */
329 /* Did the new fragment plug a hole? */
330 fi2
= list_entry(fi
->fi_link
.next
,
331 struct fwnet_fragment_info
, fi_link
);
332 if (fi
->offset
+ fi
->len
== fi2
->offset
) {
333 /* glue fragments together */
334 fi
->len
+= len
+ fi2
->len
;
335 list_del(&fi2
->fi_link
);
343 if (offset
+ len
== fi
->offset
) {
344 /* The new fragment can be tacked on to the beginning */
345 /* Did the new fragment plug a hole? */
346 fi2
= list_entry(fi
->fi_link
.prev
,
347 struct fwnet_fragment_info
, fi_link
);
348 if (fi2
->offset
+ fi2
->len
== fi
->offset
) {
349 /* glue fragments together */
350 fi2
->len
+= fi
->len
+ len
;
351 list_del(&fi
->fi_link
);
361 if (offset
> fi
->offset
+ fi
->len
) {
365 if (offset
+ len
< fi
->offset
) {
366 list
= fi
->fi_link
.prev
;
371 new = kmalloc(sizeof(*new), GFP_ATOMIC
);
373 fw_error("out of memory\n");
377 new->offset
= offset
;
379 list_add(&new->fi_link
, list
);
384 static struct fwnet_partial_datagram
*fwnet_pd_new(struct net_device
*net
,
385 struct fwnet_peer
*peer
, u16 datagram_label
, unsigned dg_size
,
386 void *frag_buf
, unsigned frag_off
, unsigned frag_len
)
388 struct fwnet_partial_datagram
*new;
389 struct fwnet_fragment_info
*fi
;
391 new = kmalloc(sizeof(*new), GFP_ATOMIC
);
395 INIT_LIST_HEAD(&new->fi_list
);
396 fi
= fwnet_frag_new(new, frag_off
, frag_len
);
400 new->datagram_label
= datagram_label
;
401 new->datagram_size
= dg_size
;
402 new->skb
= dev_alloc_skb(dg_size
+ net
->hard_header_len
+ 15);
403 if (new->skb
== NULL
)
406 skb_reserve(new->skb
, (net
->hard_header_len
+ 15) & ~15);
407 new->pbuf
= skb_put(new->skb
, dg_size
);
408 memcpy(new->pbuf
+ frag_off
, frag_buf
, frag_len
);
409 list_add_tail(&new->pd_link
, &peer
->pd_list
);
418 fw_error("out of memory\n");
423 static struct fwnet_partial_datagram
*fwnet_pd_find(struct fwnet_peer
*peer
,
426 struct fwnet_partial_datagram
*pd
;
428 list_for_each_entry(pd
, &peer
->pd_list
, pd_link
)
429 if (pd
->datagram_label
== datagram_label
)
436 static void fwnet_pd_delete(struct fwnet_partial_datagram
*old
)
438 struct fwnet_fragment_info
*fi
, *n
;
440 list_for_each_entry_safe(fi
, n
, &old
->fi_list
, fi_link
)
443 list_del(&old
->pd_link
);
444 dev_kfree_skb_any(old
->skb
);
448 static bool fwnet_pd_update(struct fwnet_peer
*peer
,
449 struct fwnet_partial_datagram
*pd
, void *frag_buf
,
450 unsigned frag_off
, unsigned frag_len
)
452 if (fwnet_frag_new(pd
, frag_off
, frag_len
) == NULL
)
455 memcpy(pd
->pbuf
+ frag_off
, frag_buf
, frag_len
);
458 * Move list entry to beginnig of list so that oldest partial
459 * datagrams percolate to the end of the list
461 list_move_tail(&pd
->pd_link
, &peer
->pd_list
);
466 static bool fwnet_pd_is_complete(struct fwnet_partial_datagram
*pd
)
468 struct fwnet_fragment_info
*fi
;
470 fi
= list_entry(pd
->fi_list
.next
, struct fwnet_fragment_info
, fi_link
);
472 return fi
->len
== pd
->datagram_size
;
475 /* caller must hold dev->lock */
476 static struct fwnet_peer
*fwnet_peer_find_by_guid(struct fwnet_device
*dev
,
479 struct fwnet_peer
*peer
;
481 list_for_each_entry(peer
, &dev
->peer_list
, peer_link
)
482 if (peer
->guid
== guid
)
488 /* caller must hold dev->lock */
489 static struct fwnet_peer
*fwnet_peer_find_by_node_id(struct fwnet_device
*dev
,
490 int node_id
, int generation
)
492 struct fwnet_peer
*peer
;
494 list_for_each_entry(peer
, &dev
->peer_list
, peer_link
)
495 if (peer
->node_id
== node_id
&&
496 peer
->generation
== generation
)
502 /* See IEEE 1394-2008 table 6-4, table 8-8, table 16-18. */
503 static unsigned fwnet_max_payload(unsigned max_rec
, unsigned speed
)
505 max_rec
= min(max_rec
, speed
+ 8);
506 max_rec
= min(max_rec
, 0xbU
); /* <= 4096 */
508 fw_notify("max_rec %x out of range\n", max_rec
);
512 return (1 << (max_rec
+ 1)) - RFC2374_FRAG_HDR_SIZE
;
516 static int fwnet_finish_incoming_packet(struct net_device
*net
,
517 struct sk_buff
*skb
, u16 source_node_id
,
518 bool is_broadcast
, u16 ether_type
)
520 struct fwnet_device
*dev
;
521 static const __be64 broadcast_hw
= cpu_to_be64(~0ULL);
525 dev
= netdev_priv(net
);
526 /* Write metadata, and then pass to the receive level */
528 skb
->ip_summed
= CHECKSUM_UNNECESSARY
; /* don't check it */
531 * Parse the encapsulation header. This actually does the job of
532 * converting to an ethernet frame header, as well as arp
533 * conversion if needed. ARP conversion is easier in this
534 * direction, since we are using ethernet as our backend.
537 * If this is an ARP packet, convert it. First, we want to make
538 * use of some of the fields, since they tell us a little bit
539 * about the sending machine.
541 if (ether_type
== ETH_P_ARP
) {
542 struct rfc2734_arp
*arp1394
;
544 unsigned char *arp_ptr
;
549 struct fwnet_peer
*peer
;
552 arp1394
= (struct rfc2734_arp
*)skb
->data
;
553 arp
= (struct arphdr
*)skb
->data
;
554 arp_ptr
= (unsigned char *)(arp
+ 1);
555 peer_guid
= get_unaligned_be64(&arp1394
->s_uniq_id
);
556 fifo_addr
= (u64
)get_unaligned_be16(&arp1394
->fifo_hi
) << 32
557 | get_unaligned_be32(&arp1394
->fifo_lo
);
559 sspd
= arp1394
->sspd
;
560 /* Sanity check. OS X 10.3 PPC reportedly sends 131. */
561 if (sspd
> SCODE_3200
) {
562 fw_notify("sspd %x out of range\n", sspd
);
565 max_payload
= fwnet_max_payload(arp1394
->max_rec
, sspd
);
567 spin_lock_irqsave(&dev
->lock
, flags
);
568 peer
= fwnet_peer_find_by_guid(dev
, peer_guid
);
570 peer
->fifo
= fifo_addr
;
572 if (peer
->speed
> sspd
)
574 if (peer
->max_payload
> max_payload
)
575 peer
->max_payload
= max_payload
;
577 spin_unlock_irqrestore(&dev
->lock
, flags
);
580 fw_notify("No peer for ARP packet from %016llx\n",
581 (unsigned long long)peer_guid
);
586 * Now that we're done with the 1394 specific stuff, we'll
587 * need to alter some of the data. Believe it or not, all
588 * that needs to be done is sender_IP_address needs to be
589 * moved, the destination hardware address get stuffed
590 * in and the hardware address length set to 8.
592 * IMPORTANT: The code below overwrites 1394 specific data
593 * needed above so keep the munging of the data for the
594 * higher level IP stack last.
598 /* skip over sender unique id */
599 arp_ptr
+= arp
->ar_hln
;
600 /* move sender IP addr */
601 put_unaligned(arp1394
->sip
, (u32
*)arp_ptr
);
602 /* skip over sender IP addr */
603 arp_ptr
+= arp
->ar_pln
;
605 if (arp
->ar_op
== htons(ARPOP_REQUEST
))
606 memset(arp_ptr
, 0, sizeof(u64
));
608 memcpy(arp_ptr
, net
->dev_addr
, sizeof(u64
));
611 /* Now add the ethernet header. */
612 guid
= cpu_to_be64(dev
->card
->guid
);
613 if (dev_hard_header(skb
, net
, ether_type
,
614 is_broadcast
? &broadcast_hw
: &guid
,
615 NULL
, skb
->len
) >= 0) {
616 struct fwnet_header
*eth
;
620 skb_reset_mac_header(skb
);
621 skb_pull(skb
, sizeof(*eth
));
622 eth
= (struct fwnet_header
*)skb_mac_header(skb
);
623 if (*eth
->h_dest
& 1) {
624 if (memcmp(eth
->h_dest
, net
->broadcast
,
626 skb
->pkt_type
= PACKET_BROADCAST
;
629 skb
->pkt_type
= PACKET_MULTICAST
;
632 if (memcmp(eth
->h_dest
, net
->dev_addr
, net
->addr_len
))
633 skb
->pkt_type
= PACKET_OTHERHOST
;
635 if (ntohs(eth
->h_proto
) >= 1536) {
636 protocol
= eth
->h_proto
;
638 rawp
= (u16
*)skb
->data
;
640 protocol
= htons(ETH_P_802_3
);
642 protocol
= htons(ETH_P_802_2
);
644 skb
->protocol
= protocol
;
646 status
= netif_rx(skb
);
647 if (status
== NET_RX_DROP
) {
648 net
->stats
.rx_errors
++;
649 net
->stats
.rx_dropped
++;
651 net
->stats
.rx_packets
++;
652 net
->stats
.rx_bytes
+= skb
->len
;
654 if (netif_queue_stopped(net
))
655 netif_wake_queue(net
);
660 net
->stats
.rx_errors
++;
661 net
->stats
.rx_dropped
++;
663 dev_kfree_skb_any(skb
);
664 if (netif_queue_stopped(net
))
665 netif_wake_queue(net
);
670 static int fwnet_incoming_packet(struct fwnet_device
*dev
, __be32
*buf
, int len
,
671 int source_node_id
, int generation
,
675 struct net_device
*net
= dev
->netdev
;
676 struct rfc2734_header hdr
;
679 struct fwnet_peer
*peer
;
680 struct fwnet_partial_datagram
*pd
;
687 hdr
.w0
= be32_to_cpu(buf
[0]);
688 lf
= fwnet_get_hdr_lf(&hdr
);
689 if (lf
== RFC2374_HDR_UNFRAG
) {
691 * An unfragmented datagram has been received by the ieee1394
692 * bus. Build an skbuff around it so we can pass it to the
693 * high level network layer.
695 ether_type
= fwnet_get_hdr_ether_type(&hdr
);
697 len
-= RFC2374_UNFRAG_HDR_SIZE
;
699 skb
= dev_alloc_skb(len
+ net
->hard_header_len
+ 15);
700 if (unlikely(!skb
)) {
701 fw_error("out of memory\n");
702 net
->stats
.rx_dropped
++;
706 skb_reserve(skb
, (net
->hard_header_len
+ 15) & ~15);
707 memcpy(skb_put(skb
, len
), buf
, len
);
709 return fwnet_finish_incoming_packet(net
, skb
, source_node_id
,
710 is_broadcast
, ether_type
);
712 /* A datagram fragment has been received, now the fun begins. */
713 hdr
.w1
= ntohl(buf
[1]);
715 len
-= RFC2374_FRAG_HDR_SIZE
;
716 if (lf
== RFC2374_HDR_FIRSTFRAG
) {
717 ether_type
= fwnet_get_hdr_ether_type(&hdr
);
721 fg_off
= fwnet_get_hdr_fg_off(&hdr
);
723 datagram_label
= fwnet_get_hdr_dgl(&hdr
);
724 dg_size
= fwnet_get_hdr_dg_size(&hdr
); /* ??? + 1 */
726 spin_lock_irqsave(&dev
->lock
, flags
);
728 peer
= fwnet_peer_find_by_node_id(dev
, source_node_id
, generation
);
734 pd
= fwnet_pd_find(peer
, datagram_label
);
736 while (peer
->pdg_size
>= FWNET_MAX_FRAGMENTS
) {
737 /* remove the oldest */
738 fwnet_pd_delete(list_first_entry(&peer
->pd_list
,
739 struct fwnet_partial_datagram
, pd_link
));
742 pd
= fwnet_pd_new(net
, peer
, datagram_label
,
743 dg_size
, buf
, fg_off
, len
);
750 if (fwnet_frag_overlap(pd
, fg_off
, len
) ||
751 pd
->datagram_size
!= dg_size
) {
753 * Differing datagram sizes or overlapping fragments,
754 * discard old datagram and start a new one.
757 pd
= fwnet_pd_new(net
, peer
, datagram_label
,
758 dg_size
, buf
, fg_off
, len
);
765 if (!fwnet_pd_update(peer
, pd
, buf
, fg_off
, len
)) {
767 * Couldn't save off fragment anyway
768 * so might as well obliterate the
777 } /* new datagram or add to existing one */
779 if (lf
== RFC2374_HDR_FIRSTFRAG
)
780 pd
->ether_type
= ether_type
;
782 if (fwnet_pd_is_complete(pd
)) {
783 ether_type
= pd
->ether_type
;
785 skb
= skb_get(pd
->skb
);
788 spin_unlock_irqrestore(&dev
->lock
, flags
);
790 return fwnet_finish_incoming_packet(net
, skb
, source_node_id
,
794 * Datagram is not complete, we're done for the
797 spin_unlock_irqrestore(&dev
->lock
, flags
);
801 spin_unlock_irqrestore(&dev
->lock
, flags
);
803 if (netif_queue_stopped(net
))
804 netif_wake_queue(net
);
809 static void fwnet_receive_packet(struct fw_card
*card
, struct fw_request
*r
,
810 int tcode
, int destination
, int source
, int generation
,
811 unsigned long long offset
, void *payload
, size_t length
,
814 struct fwnet_device
*dev
= callback_data
;
817 if (destination
== IEEE1394_ALL_NODES
) {
823 if (offset
!= dev
->handler
.offset
)
824 rcode
= RCODE_ADDRESS_ERROR
;
825 else if (tcode
!= TCODE_WRITE_BLOCK_REQUEST
)
826 rcode
= RCODE_TYPE_ERROR
;
827 else if (fwnet_incoming_packet(dev
, payload
, length
,
828 source
, generation
, false) != 0) {
829 fw_error("Incoming packet failure\n");
830 rcode
= RCODE_CONFLICT_ERROR
;
832 rcode
= RCODE_COMPLETE
;
834 fw_send_response(card
, r
, rcode
);
837 static void fwnet_receive_broadcast(struct fw_iso_context
*context
,
838 u32 cycle
, size_t header_length
, void *header
, void *data
)
840 struct fwnet_device
*dev
;
841 struct fw_iso_packet packet
;
842 struct fw_card
*card
;
850 unsigned long offset
;
856 length
= be16_to_cpup(hdr_ptr
);
858 spin_lock_irqsave(&dev
->lock
, flags
);
860 offset
= dev
->rcv_buffer_size
* dev
->broadcast_rcv_next_ptr
;
861 buf_ptr
= dev
->broadcast_rcv_buffer_ptrs
[dev
->broadcast_rcv_next_ptr
++];
862 if (dev
->broadcast_rcv_next_ptr
== dev
->num_broadcast_rcv_ptrs
)
863 dev
->broadcast_rcv_next_ptr
= 0;
865 spin_unlock_irqrestore(&dev
->lock
, flags
);
867 specifier_id
= (be32_to_cpu(buf_ptr
[0]) & 0xffff) << 8
868 | (be32_to_cpu(buf_ptr
[1]) & 0xff000000) >> 24;
869 ver
= be32_to_cpu(buf_ptr
[1]) & 0xffffff;
870 source_node_id
= be32_to_cpu(buf_ptr
[0]) >> 16;
872 if (specifier_id
== IANA_SPECIFIER_ID
&& ver
== RFC2734_SW_VERSION
) {
874 length
-= IEEE1394_GASP_HDR_SIZE
;
875 fwnet_incoming_packet(dev
, buf_ptr
, length
,
876 source_node_id
, -1, true);
879 packet
.payload_length
= dev
->rcv_buffer_size
;
880 packet
.interrupt
= 1;
884 packet
.header_length
= IEEE1394_GASP_HDR_SIZE
;
886 spin_lock_irqsave(&dev
->lock
, flags
);
888 retval
= fw_iso_context_queue(dev
->broadcast_rcv_context
, &packet
,
889 &dev
->broadcast_rcv_buffer
, offset
);
891 spin_unlock_irqrestore(&dev
->lock
, flags
);
894 fw_error("requeue failed\n");
897 static struct kmem_cache
*fwnet_packet_task_cache
;
899 static void fwnet_free_ptask(struct fwnet_packet_task
*ptask
)
901 dev_kfree_skb_any(ptask
->skb
);
902 kmem_cache_free(fwnet_packet_task_cache
, ptask
);
905 static int fwnet_send_packet(struct fwnet_packet_task
*ptask
);
907 static void fwnet_transmit_packet_done(struct fwnet_packet_task
*ptask
)
909 struct fwnet_device
*dev
= ptask
->dev
;
913 spin_lock_irqsave(&dev
->lock
, flags
);
915 ptask
->outstanding_pkts
--;
917 /* Check whether we or the networking TX soft-IRQ is last user. */
918 free
= (ptask
->outstanding_pkts
== 0 && !list_empty(&ptask
->pt_link
));
920 if (ptask
->outstanding_pkts
== 0)
921 list_del(&ptask
->pt_link
);
923 spin_unlock_irqrestore(&dev
->lock
, flags
);
925 if (ptask
->outstanding_pkts
> 0) {
932 /* Update the ptask to point to the next fragment and send it */
933 lf
= fwnet_get_hdr_lf(&ptask
->hdr
);
935 case RFC2374_HDR_LASTFRAG
:
936 case RFC2374_HDR_UNFRAG
:
938 fw_error("Outstanding packet %x lf %x, header %x,%x\n",
939 ptask
->outstanding_pkts
, lf
, ptask
->hdr
.w0
,
943 case RFC2374_HDR_FIRSTFRAG
:
944 /* Set frag type here for future interior fragments */
945 dg_size
= fwnet_get_hdr_dg_size(&ptask
->hdr
);
946 fg_off
= ptask
->max_payload
- RFC2374_FRAG_HDR_SIZE
;
947 datagram_label
= fwnet_get_hdr_dgl(&ptask
->hdr
);
950 case RFC2374_HDR_INTFRAG
:
951 dg_size
= fwnet_get_hdr_dg_size(&ptask
->hdr
);
952 fg_off
= fwnet_get_hdr_fg_off(&ptask
->hdr
)
953 + ptask
->max_payload
- RFC2374_FRAG_HDR_SIZE
;
954 datagram_label
= fwnet_get_hdr_dgl(&ptask
->hdr
);
958 skb_pull(skb
, ptask
->max_payload
);
959 if (ptask
->outstanding_pkts
> 1) {
960 fwnet_make_sf_hdr(&ptask
->hdr
, RFC2374_HDR_INTFRAG
,
961 dg_size
, fg_off
, datagram_label
);
963 fwnet_make_sf_hdr(&ptask
->hdr
, RFC2374_HDR_LASTFRAG
,
964 dg_size
, fg_off
, datagram_label
);
965 ptask
->max_payload
= skb
->len
+ RFC2374_FRAG_HDR_SIZE
;
967 fwnet_send_packet(ptask
);
971 fwnet_free_ptask(ptask
);
974 static void fwnet_write_complete(struct fw_card
*card
, int rcode
,
975 void *payload
, size_t length
, void *data
)
977 struct fwnet_packet_task
*ptask
;
981 if (rcode
== RCODE_COMPLETE
)
982 fwnet_transmit_packet_done(ptask
);
984 fw_error("fwnet_write_complete: failed: %x\n", rcode
);
985 /* ??? error recovery */
988 static int fwnet_send_packet(struct fwnet_packet_task
*ptask
)
990 struct fwnet_device
*dev
;
992 struct rfc2734_header
*bufhdr
;
997 tx_len
= ptask
->max_payload
;
998 switch (fwnet_get_hdr_lf(&ptask
->hdr
)) {
999 case RFC2374_HDR_UNFRAG
:
1000 bufhdr
= (struct rfc2734_header
*)
1001 skb_push(ptask
->skb
, RFC2374_UNFRAG_HDR_SIZE
);
1002 put_unaligned_be32(ptask
->hdr
.w0
, &bufhdr
->w0
);
1005 case RFC2374_HDR_FIRSTFRAG
:
1006 case RFC2374_HDR_INTFRAG
:
1007 case RFC2374_HDR_LASTFRAG
:
1008 bufhdr
= (struct rfc2734_header
*)
1009 skb_push(ptask
->skb
, RFC2374_FRAG_HDR_SIZE
);
1010 put_unaligned_be32(ptask
->hdr
.w0
, &bufhdr
->w0
);
1011 put_unaligned_be32(ptask
->hdr
.w1
, &bufhdr
->w1
);
1017 if (ptask
->dest_node
== IEEE1394_ALL_NODES
) {
1022 /* ptask->generation may not have been set yet */
1023 generation
= dev
->card
->generation
;
1025 node_id
= dev
->card
->node_id
;
1027 p
= skb_push(ptask
->skb
, 8);
1028 put_unaligned_be32(node_id
<< 16 | IANA_SPECIFIER_ID
>> 8, p
);
1029 put_unaligned_be32((IANA_SPECIFIER_ID
& 0xff) << 24
1030 | RFC2734_SW_VERSION
, &p
[4]);
1032 /* We should not transmit if broadcast_channel.valid == 0. */
1033 fw_send_request(dev
->card
, &ptask
->transaction
,
1035 fw_stream_packet_destination_id(3,
1036 IEEE1394_BROADCAST_CHANNEL
, 0),
1037 generation
, SCODE_100
, 0ULL, ptask
->skb
->data
,
1038 tx_len
+ 8, fwnet_write_complete
, ptask
);
1040 spin_lock_irqsave(&dev
->lock
, flags
);
1042 /* If the AT tasklet already ran, we may be last user. */
1043 free
= (ptask
->outstanding_pkts
== 0 && list_empty(&ptask
->pt_link
));
1045 list_add_tail(&ptask
->pt_link
, &dev
->broadcasted_list
);
1047 spin_unlock_irqrestore(&dev
->lock
, flags
);
1052 fw_send_request(dev
->card
, &ptask
->transaction
,
1053 TCODE_WRITE_BLOCK_REQUEST
, ptask
->dest_node
,
1054 ptask
->generation
, ptask
->speed
, ptask
->fifo_addr
,
1055 ptask
->skb
->data
, tx_len
, fwnet_write_complete
, ptask
);
1057 spin_lock_irqsave(&dev
->lock
, flags
);
1059 /* If the AT tasklet already ran, we may be last user. */
1060 free
= (ptask
->outstanding_pkts
== 0 && list_empty(&ptask
->pt_link
));
1062 list_add_tail(&ptask
->pt_link
, &dev
->sent_list
);
1064 spin_unlock_irqrestore(&dev
->lock
, flags
);
1066 dev
->netdev
->trans_start
= jiffies
;
1069 fwnet_free_ptask(ptask
);
1074 static int fwnet_broadcast_start(struct fwnet_device
*dev
)
1076 struct fw_iso_context
*context
;
1078 unsigned num_packets
;
1079 unsigned max_receive
;
1080 struct fw_iso_packet packet
;
1081 unsigned long offset
;
1084 if (dev
->local_fifo
== FWNET_NO_FIFO_ADDR
) {
1085 /* outside OHCI posted write area? */
1086 static const struct fw_address_region region
= {
1087 .start
= 0xffff00000000ULL
,
1088 .end
= CSR_REGISTER_BASE
,
1091 dev
->handler
.length
= 4096;
1092 dev
->handler
.address_callback
= fwnet_receive_packet
;
1093 dev
->handler
.callback_data
= dev
;
1095 retval
= fw_core_add_address_handler(&dev
->handler
, ®ion
);
1097 goto failed_initial
;
1099 dev
->local_fifo
= dev
->handler
.offset
;
1102 max_receive
= 1U << (dev
->card
->max_receive
+ 1);
1103 num_packets
= (FWNET_ISO_PAGE_COUNT
* PAGE_SIZE
) / max_receive
;
1105 if (!dev
->broadcast_rcv_context
) {
1108 context
= fw_iso_context_create(dev
->card
,
1109 FW_ISO_CONTEXT_RECEIVE
, IEEE1394_BROADCAST_CHANNEL
,
1110 dev
->card
->link_speed
, 8, fwnet_receive_broadcast
, dev
);
1111 if (IS_ERR(context
)) {
1112 retval
= PTR_ERR(context
);
1113 goto failed_context_create
;
1116 retval
= fw_iso_buffer_init(&dev
->broadcast_rcv_buffer
,
1117 dev
->card
, FWNET_ISO_PAGE_COUNT
, DMA_FROM_DEVICE
);
1119 goto failed_buffer_init
;
1121 ptrptr
= kmalloc(sizeof(void *) * num_packets
, GFP_KERNEL
);
1124 goto failed_ptrs_alloc
;
1127 dev
->broadcast_rcv_buffer_ptrs
= ptrptr
;
1128 for (u
= 0; u
< FWNET_ISO_PAGE_COUNT
; u
++) {
1132 ptr
= kmap(dev
->broadcast_rcv_buffer
.pages
[u
]);
1133 for (v
= 0; v
< num_packets
/ FWNET_ISO_PAGE_COUNT
; v
++)
1134 *ptrptr
++ = (void *)
1135 ((char *)ptr
+ v
* max_receive
);
1137 dev
->broadcast_rcv_context
= context
;
1139 context
= dev
->broadcast_rcv_context
;
1142 packet
.payload_length
= max_receive
;
1143 packet
.interrupt
= 1;
1147 packet
.header_length
= IEEE1394_GASP_HDR_SIZE
;
1150 for (u
= 0; u
< num_packets
; u
++) {
1151 retval
= fw_iso_context_queue(context
, &packet
,
1152 &dev
->broadcast_rcv_buffer
, offset
);
1154 goto failed_rcv_queue
;
1156 offset
+= max_receive
;
1158 dev
->num_broadcast_rcv_ptrs
= num_packets
;
1159 dev
->rcv_buffer_size
= max_receive
;
1160 dev
->broadcast_rcv_next_ptr
= 0U;
1161 retval
= fw_iso_context_start(context
, -1, 0,
1162 FW_ISO_CONTEXT_MATCH_ALL_TAGS
); /* ??? sync */
1164 goto failed_rcv_queue
;
1166 /* FIXME: adjust it according to the min. speed of all known peers? */
1167 dev
->broadcast_xmt_max_payload
= IEEE1394_MAX_PAYLOAD_S100
1168 - IEEE1394_GASP_HDR_SIZE
- RFC2374_UNFRAG_HDR_SIZE
;
1169 dev
->broadcast_state
= FWNET_BROADCAST_RUNNING
;
1174 kfree(dev
->broadcast_rcv_buffer_ptrs
);
1175 dev
->broadcast_rcv_buffer_ptrs
= NULL
;
1177 fw_iso_buffer_destroy(&dev
->broadcast_rcv_buffer
, dev
->card
);
1179 fw_iso_context_destroy(context
);
1180 dev
->broadcast_rcv_context
= NULL
;
1181 failed_context_create
:
1182 fw_core_remove_address_handler(&dev
->handler
);
1184 dev
->local_fifo
= FWNET_NO_FIFO_ADDR
;
1190 static int fwnet_open(struct net_device
*net
)
1192 struct fwnet_device
*dev
= netdev_priv(net
);
1195 if (dev
->broadcast_state
== FWNET_BROADCAST_ERROR
) {
1196 ret
= fwnet_broadcast_start(dev
);
1200 netif_start_queue(net
);
1206 static int fwnet_stop(struct net_device
*net
)
1208 netif_stop_queue(net
);
1210 /* Deallocate iso context for use by other applications? */
1215 static netdev_tx_t
fwnet_tx(struct sk_buff
*skb
, struct net_device
*net
)
1217 struct fwnet_header hdr_buf
;
1218 struct fwnet_device
*dev
= netdev_priv(net
);
1221 unsigned max_payload
;
1223 u16
*datagram_label_ptr
;
1224 struct fwnet_packet_task
*ptask
;
1225 struct fwnet_peer
*peer
;
1226 unsigned long flags
;
1228 ptask
= kmem_cache_alloc(fwnet_packet_task_cache
, GFP_ATOMIC
);
1232 skb
= skb_share_check(skb
, GFP_ATOMIC
);
1237 * Make a copy of the driver-specific header.
1238 * We might need to rebuild the header on tx failure.
1240 memcpy(&hdr_buf
, skb
->data
, sizeof(hdr_buf
));
1241 skb_pull(skb
, sizeof(hdr_buf
));
1243 proto
= hdr_buf
.h_proto
;
1246 /* serialize access to peer, including peer->datagram_label */
1247 spin_lock_irqsave(&dev
->lock
, flags
);
1250 * Set the transmission type for the packet. ARP packets and IP
1251 * broadcast packets are sent via GASP.
1253 if (memcmp(hdr_buf
.h_dest
, net
->broadcast
, FWNET_ALEN
) == 0
1254 || proto
== htons(ETH_P_ARP
)
1255 || (proto
== htons(ETH_P_IP
)
1256 && IN_MULTICAST(ntohl(ip_hdr(skb
)->daddr
)))) {
1257 max_payload
= dev
->broadcast_xmt_max_payload
;
1258 datagram_label_ptr
= &dev
->broadcast_xmt_datagramlabel
;
1260 ptask
->fifo_addr
= FWNET_NO_FIFO_ADDR
;
1261 ptask
->generation
= 0;
1262 ptask
->dest_node
= IEEE1394_ALL_NODES
;
1263 ptask
->speed
= SCODE_100
;
1265 __be64 guid
= get_unaligned((__be64
*)hdr_buf
.h_dest
);
1268 peer
= fwnet_peer_find_by_guid(dev
, be64_to_cpu(guid
));
1269 if (!peer
|| peer
->fifo
== FWNET_NO_FIFO_ADDR
)
1272 generation
= peer
->generation
;
1273 dest_node
= peer
->node_id
;
1274 max_payload
= peer
->max_payload
;
1275 datagram_label_ptr
= &peer
->datagram_label
;
1277 ptask
->fifo_addr
= peer
->fifo
;
1278 ptask
->generation
= generation
;
1279 ptask
->dest_node
= dest_node
;
1280 ptask
->speed
= peer
->speed
;
1283 /* If this is an ARP packet, convert it */
1284 if (proto
== htons(ETH_P_ARP
)) {
1285 struct arphdr
*arp
= (struct arphdr
*)skb
->data
;
1286 unsigned char *arp_ptr
= (unsigned char *)(arp
+ 1);
1287 struct rfc2734_arp
*arp1394
= (struct rfc2734_arp
*)skb
->data
;
1290 ipaddr
= get_unaligned((__be32
*)(arp_ptr
+ FWNET_ALEN
));
1292 arp1394
->hw_addr_len
= RFC2734_HW_ADDR_LEN
;
1293 arp1394
->max_rec
= dev
->card
->max_receive
;
1294 arp1394
->sspd
= dev
->card
->link_speed
;
1296 put_unaligned_be16(dev
->local_fifo
>> 32,
1298 put_unaligned_be32(dev
->local_fifo
& 0xffffffff,
1300 put_unaligned(ipaddr
, &arp1394
->sip
);
1308 /* Does it all fit in one packet? */
1309 if (dg_size
<= max_payload
) {
1310 fwnet_make_uf_hdr(&ptask
->hdr
, ntohs(proto
));
1311 ptask
->outstanding_pkts
= 1;
1312 max_payload
= dg_size
+ RFC2374_UNFRAG_HDR_SIZE
;
1316 max_payload
-= RFC2374_FRAG_OVERHEAD
;
1317 datagram_label
= (*datagram_label_ptr
)++;
1318 fwnet_make_ff_hdr(&ptask
->hdr
, ntohs(proto
), dg_size
,
1320 ptask
->outstanding_pkts
= DIV_ROUND_UP(dg_size
, max_payload
);
1321 max_payload
+= RFC2374_FRAG_HDR_SIZE
;
1324 spin_unlock_irqrestore(&dev
->lock
, flags
);
1326 ptask
->max_payload
= max_payload
;
1327 INIT_LIST_HEAD(&ptask
->pt_link
);
1329 fwnet_send_packet(ptask
);
1331 return NETDEV_TX_OK
;
1334 spin_unlock_irqrestore(&dev
->lock
, flags
);
1337 kmem_cache_free(fwnet_packet_task_cache
, ptask
);
1342 net
->stats
.tx_dropped
++;
1343 net
->stats
.tx_errors
++;
1346 * FIXME: According to a patch from 2003-02-26, "returning non-zero
1347 * causes serious problems" here, allegedly. Before that patch,
1348 * -ERRNO was returned which is not appropriate under Linux 2.6.
1349 * Perhaps more needs to be done? Stop the queue in serious
1350 * conditions and restart it elsewhere?
1352 return NETDEV_TX_OK
;
1355 static int fwnet_change_mtu(struct net_device
*net
, int new_mtu
)
1364 static void fwnet_get_drvinfo(struct net_device
*net
,
1365 struct ethtool_drvinfo
*info
)
1367 strcpy(info
->driver
, KBUILD_MODNAME
);
1368 strcpy(info
->bus_info
, "ieee1394");
1371 static const struct ethtool_ops fwnet_ethtool_ops
= {
1372 .get_drvinfo
= fwnet_get_drvinfo
,
1375 static const struct net_device_ops fwnet_netdev_ops
= {
1376 .ndo_open
= fwnet_open
,
1377 .ndo_stop
= fwnet_stop
,
1378 .ndo_start_xmit
= fwnet_tx
,
1379 .ndo_change_mtu
= fwnet_change_mtu
,
1382 static void fwnet_init_dev(struct net_device
*net
)
1384 net
->header_ops
= &fwnet_header_ops
;
1385 net
->netdev_ops
= &fwnet_netdev_ops
;
1386 net
->watchdog_timeo
= 2 * HZ
;
1387 net
->flags
= IFF_BROADCAST
| IFF_MULTICAST
;
1388 net
->features
= NETIF_F_HIGHDMA
;
1389 net
->addr_len
= FWNET_ALEN
;
1390 net
->hard_header_len
= FWNET_HLEN
;
1391 net
->type
= ARPHRD_IEEE1394
;
1392 net
->tx_queue_len
= 10;
1393 SET_ETHTOOL_OPS(net
, &fwnet_ethtool_ops
);
1396 /* caller must hold fwnet_device_mutex */
1397 static struct fwnet_device
*fwnet_dev_find(struct fw_card
*card
)
1399 struct fwnet_device
*dev
;
1401 list_for_each_entry(dev
, &fwnet_device_list
, dev_link
)
1402 if (dev
->card
== card
)
1408 static int fwnet_add_peer(struct fwnet_device
*dev
,
1409 struct fw_unit
*unit
, struct fw_device
*device
)
1411 struct fwnet_peer
*peer
;
1413 peer
= kmalloc(sizeof(*peer
), GFP_KERNEL
);
1417 dev_set_drvdata(&unit
->device
, peer
);
1420 peer
->guid
= (u64
)device
->config_rom
[3] << 32 | device
->config_rom
[4];
1421 peer
->fifo
= FWNET_NO_FIFO_ADDR
;
1422 INIT_LIST_HEAD(&peer
->pd_list
);
1424 peer
->datagram_label
= 0;
1425 peer
->speed
= device
->max_speed
;
1426 peer
->max_payload
= fwnet_max_payload(device
->max_rec
, peer
->speed
);
1428 peer
->generation
= device
->generation
;
1430 peer
->node_id
= device
->node_id
;
1432 spin_lock_irq(&dev
->lock
);
1433 list_add_tail(&peer
->peer_link
, &dev
->peer_list
);
1434 spin_unlock_irq(&dev
->lock
);
1439 static int fwnet_probe(struct device
*_dev
)
1441 struct fw_unit
*unit
= fw_unit(_dev
);
1442 struct fw_device
*device
= fw_parent_device(unit
);
1443 struct fw_card
*card
= device
->card
;
1444 struct net_device
*net
;
1445 bool allocated_netdev
= false;
1446 struct fwnet_device
*dev
;
1450 mutex_lock(&fwnet_device_mutex
);
1452 dev
= fwnet_dev_find(card
);
1458 net
= alloc_netdev(sizeof(*dev
), "firewire%d", fwnet_init_dev
);
1464 allocated_netdev
= true;
1465 SET_NETDEV_DEV(net
, card
->device
);
1466 dev
= netdev_priv(net
);
1468 spin_lock_init(&dev
->lock
);
1469 dev
->broadcast_state
= FWNET_BROADCAST_ERROR
;
1470 dev
->broadcast_rcv_context
= NULL
;
1471 dev
->broadcast_xmt_max_payload
= 0;
1472 dev
->broadcast_xmt_datagramlabel
= 0;
1474 dev
->local_fifo
= FWNET_NO_FIFO_ADDR
;
1476 INIT_LIST_HEAD(&dev
->packet_list
);
1477 INIT_LIST_HEAD(&dev
->broadcasted_list
);
1478 INIT_LIST_HEAD(&dev
->sent_list
);
1479 INIT_LIST_HEAD(&dev
->peer_list
);
1485 * Use the RFC 2734 default 1500 octets or the maximum payload
1488 max_mtu
= (1 << (card
->max_receive
+ 1))
1489 - sizeof(struct rfc2734_header
) - IEEE1394_GASP_HDR_SIZE
;
1490 net
->mtu
= min(1500U, max_mtu
);
1492 /* Set our hardware address while we're at it */
1493 put_unaligned_be64(card
->guid
, net
->dev_addr
);
1494 put_unaligned_be64(~0ULL, net
->broadcast
);
1495 ret
= register_netdev(net
);
1497 fw_error("Cannot register the driver\n");
1501 list_add_tail(&dev
->dev_link
, &fwnet_device_list
);
1502 fw_notify("%s: IPv4 over FireWire on device %016llx\n",
1503 net
->name
, (unsigned long long)card
->guid
);
1505 ret
= fwnet_add_peer(dev
, unit
, device
);
1506 if (ret
&& allocated_netdev
) {
1507 unregister_netdev(net
);
1508 list_del(&dev
->dev_link
);
1511 if (ret
&& allocated_netdev
)
1514 mutex_unlock(&fwnet_device_mutex
);
1519 static void fwnet_remove_peer(struct fwnet_peer
*peer
)
1521 struct fwnet_partial_datagram
*pd
, *pd_next
;
1523 spin_lock_irq(&peer
->dev
->lock
);
1524 list_del(&peer
->peer_link
);
1525 spin_unlock_irq(&peer
->dev
->lock
);
1527 list_for_each_entry_safe(pd
, pd_next
, &peer
->pd_list
, pd_link
)
1528 fwnet_pd_delete(pd
);
1533 static int fwnet_remove(struct device
*_dev
)
1535 struct fwnet_peer
*peer
= dev_get_drvdata(_dev
);
1536 struct fwnet_device
*dev
= peer
->dev
;
1537 struct net_device
*net
;
1538 struct fwnet_packet_task
*ptask
, *pt_next
;
1540 mutex_lock(&fwnet_device_mutex
);
1542 fwnet_remove_peer(peer
);
1544 if (list_empty(&dev
->peer_list
)) {
1546 unregister_netdev(net
);
1548 if (dev
->local_fifo
!= FWNET_NO_FIFO_ADDR
)
1549 fw_core_remove_address_handler(&dev
->handler
);
1550 if (dev
->broadcast_rcv_context
) {
1551 fw_iso_context_stop(dev
->broadcast_rcv_context
);
1552 fw_iso_buffer_destroy(&dev
->broadcast_rcv_buffer
,
1554 fw_iso_context_destroy(dev
->broadcast_rcv_context
);
1556 list_for_each_entry_safe(ptask
, pt_next
,
1557 &dev
->packet_list
, pt_link
) {
1558 dev_kfree_skb_any(ptask
->skb
);
1559 kmem_cache_free(fwnet_packet_task_cache
, ptask
);
1561 list_for_each_entry_safe(ptask
, pt_next
,
1562 &dev
->broadcasted_list
, pt_link
) {
1563 dev_kfree_skb_any(ptask
->skb
);
1564 kmem_cache_free(fwnet_packet_task_cache
, ptask
);
1566 list_for_each_entry_safe(ptask
, pt_next
,
1567 &dev
->sent_list
, pt_link
) {
1568 dev_kfree_skb_any(ptask
->skb
);
1569 kmem_cache_free(fwnet_packet_task_cache
, ptask
);
1571 list_del(&dev
->dev_link
);
1576 mutex_unlock(&fwnet_device_mutex
);
1582 * FIXME abort partially sent fragmented datagrams,
1583 * discard partially received fragmented datagrams
1585 static void fwnet_update(struct fw_unit
*unit
)
1587 struct fw_device
*device
= fw_parent_device(unit
);
1588 struct fwnet_peer
*peer
= dev_get_drvdata(&unit
->device
);
1591 generation
= device
->generation
;
1593 spin_lock_irq(&peer
->dev
->lock
);
1594 peer
->node_id
= device
->node_id
;
1595 peer
->generation
= generation
;
1596 spin_unlock_irq(&peer
->dev
->lock
);
1599 static const struct ieee1394_device_id fwnet_id_table
[] = {
1601 .match_flags
= IEEE1394_MATCH_SPECIFIER_ID
|
1602 IEEE1394_MATCH_VERSION
,
1603 .specifier_id
= IANA_SPECIFIER_ID
,
1604 .version
= RFC2734_SW_VERSION
,
1609 static struct fw_driver fwnet_driver
= {
1611 .owner
= THIS_MODULE
,
1613 .bus
= &fw_bus_type
,
1614 .probe
= fwnet_probe
,
1615 .remove
= fwnet_remove
,
1617 .update
= fwnet_update
,
1618 .id_table
= fwnet_id_table
,
1621 static const u32 rfc2374_unit_directory_data
[] = {
1622 0x00040000, /* directory_length */
1623 0x1200005e, /* unit_specifier_id: IANA */
1624 0x81000003, /* textual descriptor offset */
1625 0x13000001, /* unit_sw_version: RFC 2734 */
1626 0x81000005, /* textual descriptor offset */
1627 0x00030000, /* descriptor_length */
1628 0x00000000, /* text */
1629 0x00000000, /* minimal ASCII, en */
1630 0x49414e41, /* I A N A */
1631 0x00030000, /* descriptor_length */
1632 0x00000000, /* text */
1633 0x00000000, /* minimal ASCII, en */
1634 0x49507634, /* I P v 4 */
1637 static struct fw_descriptor rfc2374_unit_directory
= {
1638 .length
= ARRAY_SIZE(rfc2374_unit_directory_data
),
1639 .key
= (CSR_DIRECTORY
| CSR_UNIT
) << 24,
1640 .data
= rfc2374_unit_directory_data
1643 static int __init
fwnet_init(void)
1647 err
= fw_core_add_descriptor(&rfc2374_unit_directory
);
1651 fwnet_packet_task_cache
= kmem_cache_create("packet_task",
1652 sizeof(struct fwnet_packet_task
), 0, 0, NULL
);
1653 if (!fwnet_packet_task_cache
) {
1658 err
= driver_register(&fwnet_driver
.driver
);
1662 kmem_cache_destroy(fwnet_packet_task_cache
);
1664 fw_core_remove_descriptor(&rfc2374_unit_directory
);
1668 module_init(fwnet_init
);
1670 static void __exit
fwnet_cleanup(void)
1672 driver_unregister(&fwnet_driver
.driver
);
1673 kmem_cache_destroy(fwnet_packet_task_cache
);
1674 fw_core_remove_descriptor(&rfc2374_unit_directory
);
1676 module_exit(fwnet_cleanup
);
1678 MODULE_AUTHOR("Jay Fenlason <fenlason@redhat.com>");
1679 MODULE_DESCRIPTION("IPv4 over IEEE1394 as per RFC 2734");
1680 MODULE_LICENSE("GPL");
1681 MODULE_DEVICE_TABLE(ieee1394
, fwnet_id_table
);