2 * This file contains the handling of RX in wlan driver.
5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7 #include <linux/etherdevice.h>
8 #include <linux/hardirq.h>
9 #include <linux/slab.h>
10 #include <linux/types.h>
11 #include <linux/export.h>
12 #include <net/cfg80211.h>
36 struct eth803hdr eth803_hdr
;
37 struct rfc1042hdr rfc1042_hdr
;
40 struct rx80211packethdr
{
45 static int process_rxed_802_11_packet(struct lbs_private
*priv
,
49 * lbs_process_rxed_packet - processes received packet and forwards it
50 * to kernel/upper layer
52 * @priv: A pointer to &struct lbs_private
53 * @skb: A pointer to skb which includes the received packet
56 int lbs_process_rxed_packet(struct lbs_private
*priv
, struct sk_buff
*skb
)
59 struct net_device
*dev
= priv
->dev
;
60 struct rxpackethdr
*p_rx_pkt
;
63 struct ethhdr
*p_ethhdr
;
64 static const u8 rfc1042_eth_hdr
[] = {
65 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00
68 lbs_deb_enter(LBS_DEB_RX
);
72 skb
->ip_summed
= CHECKSUM_NONE
;
74 if (priv
->wdev
->iftype
== NL80211_IFTYPE_MONITOR
) {
75 ret
= process_rxed_802_11_packet(priv
, skb
);
79 p_rx_pd
= (struct rxpd
*) skb
->data
;
80 p_rx_pkt
= (struct rxpackethdr
*) ((u8
*)p_rx_pd
+
81 le32_to_cpu(p_rx_pd
->pkt_ptr
));
83 dev
= lbs_mesh_set_dev(priv
, dev
, p_rx_pd
);
85 lbs_deb_hex(LBS_DEB_RX
, "RX Data: Before chop rxpd", skb
->data
,
86 min_t(unsigned int, skb
->len
, 100));
88 if (skb
->len
< (ETH_HLEN
+ 8 + sizeof(struct rxpd
))) {
89 lbs_deb_rx("rx err: frame received with bad length\n");
90 dev
->stats
.rx_length_errors
++;
96 lbs_deb_rx("rx data: skb->len - pkt_ptr = %d-%zd = %zd\n",
97 skb
->len
, (size_t)le32_to_cpu(p_rx_pd
->pkt_ptr
),
98 skb
->len
- (size_t)le32_to_cpu(p_rx_pd
->pkt_ptr
));
100 lbs_deb_hex(LBS_DEB_RX
, "RX Data: Dest", p_rx_pkt
->eth803_hdr
.dest_addr
,
101 sizeof(p_rx_pkt
->eth803_hdr
.dest_addr
));
102 lbs_deb_hex(LBS_DEB_RX
, "RX Data: Src", p_rx_pkt
->eth803_hdr
.src_addr
,
103 sizeof(p_rx_pkt
->eth803_hdr
.src_addr
));
105 if (memcmp(&p_rx_pkt
->rfc1042_hdr
,
106 rfc1042_eth_hdr
, sizeof(rfc1042_eth_hdr
)) == 0) {
108 * Replace the 803 header and rfc1042 header (llc/snap) with an
109 * EthernetII header, keep the src/dst and snap_type (ethertype)
111 * The firmware only passes up SNAP frames converting
112 * all RX Data from 802.11 to 802.2/LLC/SNAP frames.
114 * To create the Ethernet II, just move the src, dst address right
115 * before the snap_type.
117 p_ethhdr
= (struct ethhdr
*)
118 ((u8
*) &p_rx_pkt
->eth803_hdr
119 + sizeof(p_rx_pkt
->eth803_hdr
) + sizeof(p_rx_pkt
->rfc1042_hdr
)
120 - sizeof(p_rx_pkt
->eth803_hdr
.dest_addr
)
121 - sizeof(p_rx_pkt
->eth803_hdr
.src_addr
)
122 - sizeof(p_rx_pkt
->rfc1042_hdr
.snap_type
));
124 memcpy(p_ethhdr
->h_source
, p_rx_pkt
->eth803_hdr
.src_addr
,
125 sizeof(p_ethhdr
->h_source
));
126 memcpy(p_ethhdr
->h_dest
, p_rx_pkt
->eth803_hdr
.dest_addr
,
127 sizeof(p_ethhdr
->h_dest
));
129 /* Chop off the rxpd + the excess memory from the 802.2/llc/snap header
132 hdrchop
= (u8
*)p_ethhdr
- (u8
*)p_rx_pd
;
134 lbs_deb_hex(LBS_DEB_RX
, "RX Data: LLC/SNAP",
135 (u8
*) &p_rx_pkt
->rfc1042_hdr
,
136 sizeof(p_rx_pkt
->rfc1042_hdr
));
138 /* Chop off the rxpd */
139 hdrchop
= (u8
*)&p_rx_pkt
->eth803_hdr
- (u8
*)p_rx_pd
;
142 /* Chop off the leading header bytes so the skb points to the start of
143 * either the reconstructed EthII frame or the 802.2/llc/snap frame
145 skb_pull(skb
, hdrchop
);
147 priv
->cur_rate
= lbs_fw_index_to_data_rate(p_rx_pd
->rx_rate
);
149 lbs_deb_rx("rx data: size of actual packet %d\n", skb
->len
);
150 dev
->stats
.rx_bytes
+= skb
->len
;
151 dev
->stats
.rx_packets
++;
153 skb
->protocol
= eth_type_trans(skb
, dev
);
161 lbs_deb_leave_args(LBS_DEB_RX
, "ret %d", ret
);
164 EXPORT_SYMBOL_GPL(lbs_process_rxed_packet
);
167 * convert_mv_rate_to_radiotap - converts Tx/Rx rates from Marvell WLAN format
168 * (see Table 2 in Section 3.1) to IEEE80211_RADIOTAP_RATE units (500 Kb/s)
171 * returns: Output Rate (0 if invalid)
173 static u8
convert_mv_rate_to_radiotap(u8 rate
)
180 case 2: /* 5.5 Mbps */
182 case 3: /* 11 Mbps */
184 /* case 4: reserved */
189 case 7: /* 12 Mbps */
191 case 8: /* 18 Mbps */
193 case 9: /* 24 Mbps */
195 case 10: /* 36 Mbps */
197 case 11: /* 48 Mbps */
199 case 12: /* 54 Mbps */
202 pr_alert("Invalid Marvell WLAN rate %i\n", rate
);
207 * process_rxed_802_11_packet - processes a received 802.11 packet and forwards
208 * it to kernel/upper layer
210 * @priv: A pointer to &struct lbs_private
211 * @skb: A pointer to skb which includes the received packet
214 static int process_rxed_802_11_packet(struct lbs_private
*priv
,
218 struct net_device
*dev
= priv
->dev
;
219 struct rx80211packethdr
*p_rx_pkt
;
221 struct rx_radiotap_hdr radiotap_hdr
;
222 struct rx_radiotap_hdr
*pradiotap_hdr
;
224 lbs_deb_enter(LBS_DEB_RX
);
226 p_rx_pkt
= (struct rx80211packethdr
*) skb
->data
;
227 prxpd
= &p_rx_pkt
->rx_pd
;
229 /* lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data, min(skb->len, 100)); */
231 if (skb
->len
< (ETH_HLEN
+ 8 + sizeof(struct rxpd
))) {
232 lbs_deb_rx("rx err: frame received with bad length\n");
233 dev
->stats
.rx_length_errors
++;
239 lbs_deb_rx("rx data: skb->len-sizeof(RxPd) = %d-%zd = %zd\n",
240 skb
->len
, sizeof(struct rxpd
), skb
->len
- sizeof(struct rxpd
));
242 /* create the exported radio header */
244 /* radiotap header */
245 memset(&radiotap_hdr
, 0, sizeof(radiotap_hdr
));
246 /* XXX must check radiotap_hdr.hdr.it_pad for pad */
247 radiotap_hdr
.hdr
.it_len
= cpu_to_le16 (sizeof(struct rx_radiotap_hdr
));
248 radiotap_hdr
.hdr
.it_present
= cpu_to_le32 (RX_RADIOTAP_PRESENT
);
249 radiotap_hdr
.rate
= convert_mv_rate_to_radiotap(prxpd
->rx_rate
);
250 /* XXX must check no carryout */
251 radiotap_hdr
.antsignal
= prxpd
->snr
+ prxpd
->nf
;
254 skb_pull(skb
, sizeof(struct rxpd
));
256 /* add space for the new radio header */
257 if ((skb_headroom(skb
) < sizeof(struct rx_radiotap_hdr
)) &&
258 pskb_expand_head(skb
, sizeof(struct rx_radiotap_hdr
), 0, GFP_ATOMIC
)) {
259 netdev_alert(dev
, "%s: couldn't pskb_expand_head\n", __func__
);
265 pradiotap_hdr
= (void *)skb_push(skb
, sizeof(struct rx_radiotap_hdr
));
266 memcpy(pradiotap_hdr
, &radiotap_hdr
, sizeof(struct rx_radiotap_hdr
));
268 priv
->cur_rate
= lbs_fw_index_to_data_rate(prxpd
->rx_rate
);
270 lbs_deb_rx("rx data: size of actual packet %d\n", skb
->len
);
271 dev
->stats
.rx_bytes
+= skb
->len
;
272 dev
->stats
.rx_packets
++;
274 skb
->protocol
= eth_type_trans(skb
, priv
->dev
);
284 lbs_deb_leave_args(LBS_DEB_RX
, "ret %d", ret
);