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/slab.h>
9 #include <linux/types.h>
10 #include <net/cfg80211.h>
33 struct eth803hdr eth803_hdr
;
34 struct rfc1042hdr rfc1042_hdr
;
37 struct rx80211packethdr
{
42 static int process_rxed_802_11_packet(struct lbs_private
*priv
,
46 * lbs_process_rxed_packet - processes received packet and forwards it
47 * to kernel/upper layer
49 * @priv: A pointer to &struct lbs_private
50 * @skb: A pointer to skb which includes the received packet
53 int lbs_process_rxed_packet(struct lbs_private
*priv
, struct sk_buff
*skb
)
56 struct net_device
*dev
= priv
->dev
;
57 struct rxpackethdr
*p_rx_pkt
;
60 struct ethhdr
*p_ethhdr
;
61 static const u8 rfc1042_eth_hdr
[] = {
62 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00
65 lbs_deb_enter(LBS_DEB_RX
);
69 skb
->ip_summed
= CHECKSUM_NONE
;
71 if (priv
->wdev
->iftype
== NL80211_IFTYPE_MONITOR
)
72 return process_rxed_802_11_packet(priv
, skb
);
74 p_rx_pd
= (struct rxpd
*) skb
->data
;
75 p_rx_pkt
= (struct rxpackethdr
*) ((u8
*)p_rx_pd
+
76 le32_to_cpu(p_rx_pd
->pkt_ptr
));
78 dev
= lbs_mesh_set_dev(priv
, dev
, p_rx_pd
);
80 lbs_deb_hex(LBS_DEB_RX
, "RX Data: Before chop rxpd", skb
->data
,
81 min_t(unsigned int, skb
->len
, 100));
83 if (skb
->len
< (ETH_HLEN
+ 8 + sizeof(struct rxpd
))) {
84 lbs_deb_rx("rx err: frame received with bad length\n");
85 dev
->stats
.rx_length_errors
++;
91 lbs_deb_rx("rx data: skb->len - pkt_ptr = %d-%zd = %zd\n",
92 skb
->len
, (size_t)le32_to_cpu(p_rx_pd
->pkt_ptr
),
93 skb
->len
- (size_t)le32_to_cpu(p_rx_pd
->pkt_ptr
));
95 lbs_deb_hex(LBS_DEB_RX
, "RX Data: Dest", p_rx_pkt
->eth803_hdr
.dest_addr
,
96 sizeof(p_rx_pkt
->eth803_hdr
.dest_addr
));
97 lbs_deb_hex(LBS_DEB_RX
, "RX Data: Src", p_rx_pkt
->eth803_hdr
.src_addr
,
98 sizeof(p_rx_pkt
->eth803_hdr
.src_addr
));
100 if (memcmp(&p_rx_pkt
->rfc1042_hdr
,
101 rfc1042_eth_hdr
, sizeof(rfc1042_eth_hdr
)) == 0) {
103 * Replace the 803 header and rfc1042 header (llc/snap) with an
104 * EthernetII header, keep the src/dst and snap_type (ethertype)
106 * The firmware only passes up SNAP frames converting
107 * all RX Data from 802.11 to 802.2/LLC/SNAP frames.
109 * To create the Ethernet II, just move the src, dst address right
110 * before the snap_type.
112 p_ethhdr
= (struct ethhdr
*)
113 ((u8
*) &p_rx_pkt
->eth803_hdr
114 + sizeof(p_rx_pkt
->eth803_hdr
) + sizeof(p_rx_pkt
->rfc1042_hdr
)
115 - sizeof(p_rx_pkt
->eth803_hdr
.dest_addr
)
116 - sizeof(p_rx_pkt
->eth803_hdr
.src_addr
)
117 - sizeof(p_rx_pkt
->rfc1042_hdr
.snap_type
));
119 memcpy(p_ethhdr
->h_source
, p_rx_pkt
->eth803_hdr
.src_addr
,
120 sizeof(p_ethhdr
->h_source
));
121 memcpy(p_ethhdr
->h_dest
, p_rx_pkt
->eth803_hdr
.dest_addr
,
122 sizeof(p_ethhdr
->h_dest
));
124 /* Chop off the rxpd + the excess memory from the 802.2/llc/snap header
127 hdrchop
= (u8
*)p_ethhdr
- (u8
*)p_rx_pd
;
129 lbs_deb_hex(LBS_DEB_RX
, "RX Data: LLC/SNAP",
130 (u8
*) &p_rx_pkt
->rfc1042_hdr
,
131 sizeof(p_rx_pkt
->rfc1042_hdr
));
133 /* Chop off the rxpd */
134 hdrchop
= (u8
*)&p_rx_pkt
->eth803_hdr
- (u8
*)p_rx_pd
;
137 /* Chop off the leading header bytes so the skb points to the start of
138 * either the reconstructed EthII frame or the 802.2/llc/snap frame
140 skb_pull(skb
, hdrchop
);
142 priv
->cur_rate
= lbs_fw_index_to_data_rate(p_rx_pd
->rx_rate
);
144 lbs_deb_rx("rx data: size of actual packet %d\n", skb
->len
);
145 dev
->stats
.rx_bytes
+= skb
->len
;
146 dev
->stats
.rx_packets
++;
148 skb
->protocol
= eth_type_trans(skb
, dev
);
156 lbs_deb_leave_args(LBS_DEB_RX
, "ret %d", ret
);
159 EXPORT_SYMBOL_GPL(lbs_process_rxed_packet
);
162 * convert_mv_rate_to_radiotap - converts Tx/Rx rates from Marvell WLAN format
163 * (see Table 2 in Section 3.1) to IEEE80211_RADIOTAP_RATE units (500 Kb/s)
166 * returns: Output Rate (0 if invalid)
168 static u8
convert_mv_rate_to_radiotap(u8 rate
)
175 case 2: /* 5.5 Mbps */
177 case 3: /* 11 Mbps */
179 /* case 4: reserved */
184 case 7: /* 12 Mbps */
186 case 8: /* 18 Mbps */
188 case 9: /* 24 Mbps */
190 case 10: /* 36 Mbps */
192 case 11: /* 48 Mbps */
194 case 12: /* 54 Mbps */
197 pr_alert("Invalid Marvell WLAN rate %i\n", rate
);
202 * process_rxed_802_11_packet - processes a received 802.11 packet and forwards
203 * it to kernel/upper layer
205 * @priv: A pointer to &struct lbs_private
206 * @skb: A pointer to skb which includes the received packet
209 static int process_rxed_802_11_packet(struct lbs_private
*priv
,
213 struct net_device
*dev
= priv
->dev
;
214 struct rx80211packethdr
*p_rx_pkt
;
216 struct rx_radiotap_hdr radiotap_hdr
;
217 struct rx_radiotap_hdr
*pradiotap_hdr
;
219 lbs_deb_enter(LBS_DEB_RX
);
221 p_rx_pkt
= (struct rx80211packethdr
*) skb
->data
;
222 prxpd
= &p_rx_pkt
->rx_pd
;
224 /* lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data, min(skb->len, 100)); */
226 if (skb
->len
< (ETH_HLEN
+ 8 + sizeof(struct rxpd
))) {
227 lbs_deb_rx("rx err: frame received with bad length\n");
228 dev
->stats
.rx_length_errors
++;
234 lbs_deb_rx("rx data: skb->len-sizeof(RxPd) = %d-%zd = %zd\n",
235 skb
->len
, sizeof(struct rxpd
), skb
->len
- sizeof(struct rxpd
));
237 /* create the exported radio header */
239 /* radiotap header */
240 memset(&radiotap_hdr
, 0, sizeof(radiotap_hdr
));
241 /* XXX must check radiotap_hdr.hdr.it_pad for pad */
242 radiotap_hdr
.hdr
.it_len
= cpu_to_le16 (sizeof(struct rx_radiotap_hdr
));
243 radiotap_hdr
.hdr
.it_present
= cpu_to_le32 (RX_RADIOTAP_PRESENT
);
244 radiotap_hdr
.rate
= convert_mv_rate_to_radiotap(prxpd
->rx_rate
);
245 /* XXX must check no carryout */
246 radiotap_hdr
.antsignal
= prxpd
->snr
+ prxpd
->nf
;
249 skb_pull(skb
, sizeof(struct rxpd
));
251 /* add space for the new radio header */
252 if ((skb_headroom(skb
) < sizeof(struct rx_radiotap_hdr
)) &&
253 pskb_expand_head(skb
, sizeof(struct rx_radiotap_hdr
), 0, GFP_ATOMIC
)) {
254 netdev_alert(dev
, "%s: couldn't pskb_expand_head\n", __func__
);
260 pradiotap_hdr
= (void *)skb_push(skb
, sizeof(struct rx_radiotap_hdr
));
261 memcpy(pradiotap_hdr
, &radiotap_hdr
, sizeof(struct rx_radiotap_hdr
));
263 priv
->cur_rate
= lbs_fw_index_to_data_rate(prxpd
->rx_rate
);
265 lbs_deb_rx("rx data: size of actual packet %d\n", skb
->len
);
266 dev
->stats
.rx_bytes
+= skb
->len
;
267 dev
->stats
.rx_packets
++;
269 skb
->protocol
= eth_type_trans(skb
, priv
->dev
);
279 lbs_deb_leave_args(LBS_DEB_RX
, "ret %d", ret
);