2 * linux/drivers/s390/net/qeth_tso.h
4 * Header file for qeth TCP Segmentation Offload support.
6 * Copyright 2004 IBM Corporation
8 * Author(s): Frank Pavlic <fpavlic@de.ibm.com>
11 #ifndef __QETH_TSO_H__
12 #define __QETH_TSO_H__
14 #include <linux/skbuff.h>
15 #include <linux/tcp.h>
17 #include <linux/ipv6.h>
18 #include <net/ip6_checksum.h>
23 static inline struct qeth_hdr_tso
*
24 qeth_tso_prepare_skb(struct qeth_card
*card
, struct sk_buff
**skb
)
26 QETH_DBF_TEXT(trace
, 5, "tsoprsk");
27 return qeth_push_skb(card
, skb
, sizeof(struct qeth_hdr_tso
));
31 * fill header for a TSO packet
34 qeth_tso_fill_header(struct qeth_card
*card
, struct sk_buff
*skb
)
36 struct qeth_hdr_tso
*hdr
;
40 QETH_DBF_TEXT(trace
, 5, "tsofhdr");
42 hdr
= (struct qeth_hdr_tso
*) skb
->data
;
45 /*fix header to TSO values ...*/
46 hdr
->hdr
.hdr
.l3
.id
= QETH_HEADER_TYPE_TSO
;
47 /*set values which are fix for the first approach ...*/
48 hdr
->ext
.hdr_tot_len
= (__u16
) sizeof(struct qeth_hdr_ext_tso
);
49 hdr
->ext
.imb_hdr_no
= 1;
50 hdr
->ext
.hdr_type
= 1;
51 hdr
->ext
.hdr_version
= 1;
52 hdr
->ext
.hdr_len
= 28;
53 /*insert non-fix values */
54 hdr
->ext
.mss
= skb_shinfo(skb
)->tso_size
;
55 hdr
->ext
.dg_hdr_len
= (__u16
)(iph
->ihl
*4 + tcph
->doff
*4);
56 hdr
->ext
.payload_len
= (__u16
)(skb
->len
- hdr
->ext
.dg_hdr_len
-
57 sizeof(struct qeth_hdr_tso
));
61 * change some header values as requested by hardware
64 qeth_tso_set_tcpip_header(struct qeth_card
*card
, struct sk_buff
*skb
)
75 if (skb
->protocol
== ETH_P_IPV6
) {
76 ip6h
->payload_len
= 0;
77 tcph
->check
= ~csum_ipv6_magic(&ip6h
->saddr
, &ip6h
->daddr
,
81 /*OSA want us to set these values ...*/
82 tcph
->check
= ~csum_tcpudp_magic(iph
->saddr
, iph
->daddr
,
89 qeth_tso_prepare_packet(struct qeth_card
*card
, struct sk_buff
*skb
,
90 int ipv
, int cast_type
)
92 struct qeth_hdr_tso
*hdr
;
94 QETH_DBF_TEXT(trace
, 5, "tsoprep");
96 hdr
= (struct qeth_hdr_tso
*) qeth_tso_prepare_skb(card
, &skb
);
98 QETH_DBF_TEXT(trace
, 4, "tsoperr");
101 memset(hdr
, 0, sizeof(struct qeth_hdr_tso
));
102 /*fill first 32 bytes of qdio header as used
103 *FIXME: TSO has two struct members
104 * with different names but same size
106 qeth_fill_header(card
, &hdr
->hdr
, skb
, ipv
, cast_type
);
107 qeth_tso_fill_header(card
, skb
);
108 qeth_tso_set_tcpip_header(card
, skb
);
113 __qeth_fill_buffer_frag(struct sk_buff
*skb
, struct qdio_buffer
*buffer
,
114 int is_tso
, int *next_element_to_fill
)
116 struct skb_frag_struct
*frag
;
119 int element
, cnt
, dlen
;
121 fragno
= skb_shinfo(skb
)->nr_frags
;
122 element
= *next_element_to_fill
;
126 buffer
->element
[element
].flags
=
127 SBAL_FLAGS_MIDDLE_FRAG
;
129 buffer
->element
[element
].flags
=
130 SBAL_FLAGS_FIRST_FRAG
;
131 if ( (dlen
= (skb
->len
- skb
->data_len
)) ) {
132 buffer
->element
[element
].addr
= skb
->data
;
133 buffer
->element
[element
].length
= dlen
;
136 for (cnt
= 0; cnt
< fragno
; cnt
++) {
137 frag
= &skb_shinfo(skb
)->frags
[cnt
];
138 addr
= (page_to_pfn(frag
->page
) << PAGE_SHIFT
) +
140 buffer
->element
[element
].addr
= (char *)addr
;
141 buffer
->element
[element
].length
= frag
->size
;
142 if (cnt
< (fragno
- 1))
143 buffer
->element
[element
].flags
=
144 SBAL_FLAGS_MIDDLE_FRAG
;
146 buffer
->element
[element
].flags
=
147 SBAL_FLAGS_LAST_FRAG
;
150 *next_element_to_fill
= element
;
152 #endif /* __QETH_TSO_H__ */