rx.c 10.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/**
  * This file contains the handling of RX in wlan driver.
  */
#include <linux/etherdevice.h>
#include <linux/types.h>

#include "hostcmd.h"
#include "radiotap.h"
#include "decl.h"
#include "dev.h"
#include "wext.h"

struct eth803hdr {
	u8 dest_addr[6];
	u8 src_addr[6];
	u16 h803_len;
} __attribute__ ((packed));

struct rfc1042hdr {
	u8 llc_dsap;
	u8 llc_ssap;
	u8 llc_ctrl;
	u8 snap_oui[3];
	u16 snap_type;
} __attribute__ ((packed));

struct rxpackethdr {
	struct eth803hdr eth803_hdr;
	struct rfc1042hdr rfc1042_hdr;
} __attribute__ ((packed));

struct rx80211packethdr {
	struct rxpd rx_pd;
	void *eth80211_hdr;
} __attribute__ ((packed));

37 38
static int process_rxed_802_11_packet(struct lbs_private *priv,
	struct sk_buff *skb);
39 40 41 42

/**
 *  @brief This function computes the avgSNR .
 *
43
 *  @param priv    A pointer to struct lbs_private structure
44 45
 *  @return 	   avgSNR
 */
46
static u8 lbs_getavgsnr(struct lbs_private *priv)
47 48 49
{
	u8 i;
	u16 temp = 0;
50
	if (priv->numSNRNF == 0)
51
		return 0;
52 53 54
	for (i = 0; i < priv->numSNRNF; i++)
		temp += priv->rawSNR[i];
	return (u8) (temp / priv->numSNRNF);
55 56 57 58 59 60

}

/**
 *  @brief This function computes the AvgNF
 *
61
 *  @param priv    A pointer to struct lbs_private structure
62 63
 *  @return 	   AvgNF
 */
64
static u8 lbs_getavgnf(struct lbs_private *priv)
65 66 67
{
	u8 i;
	u16 temp = 0;
68
	if (priv->numSNRNF == 0)
69
		return 0;
70 71 72
	for (i = 0; i < priv->numSNRNF; i++)
		temp += priv->rawNF[i];
	return (u8) (temp / priv->numSNRNF);
73 74 75 76 77 78

}

/**
 *  @brief This function save the raw SNR/NF to our internel buffer
 *
79
 *  @param priv    A pointer to struct lbs_private structure
80 81 82
 *  @param prxpd   A pointer to rxpd structure of received packet
 *  @return 	   n/a
 */
83
static void lbs_save_rawSNRNF(struct lbs_private *priv, struct rxpd *p_rx_pd)
84
{
85 86 87 88 89 90 91
	if (priv->numSNRNF < DEFAULT_DATA_AVG_FACTOR)
		priv->numSNRNF++;
	priv->rawSNR[priv->nextSNRNF] = p_rx_pd->snr;
	priv->rawNF[priv->nextSNRNF] = p_rx_pd->nf;
	priv->nextSNRNF++;
	if (priv->nextSNRNF >= DEFAULT_DATA_AVG_FACTOR)
		priv->nextSNRNF = 0;
92 93 94 95 96 97
	return;
}

/**
 *  @brief This function computes the RSSI in received packet.
 *
98
 *  @param priv    A pointer to struct lbs_private structure
99 100 101
 *  @param prxpd   A pointer to rxpd structure of received packet
 *  @return 	   n/a
 */
102
static void lbs_compute_rssi(struct lbs_private *priv, struct rxpd *p_rx_pd)
103 104
{

105
	lbs_deb_enter(LBS_DEB_RX);
106

107 108
	lbs_deb_rx("rxpd: SNR %d, NF %d\n", p_rx_pd->snr, p_rx_pd->nf);
	lbs_deb_rx("before computing SNR: SNR-avg = %d, NF-avg = %d\n",
109 110
	       priv->SNR[TYPE_RXPD][TYPE_AVG] / AVG_SCALE,
	       priv->NF[TYPE_RXPD][TYPE_AVG] / AVG_SCALE);
111

112 113
	priv->SNR[TYPE_RXPD][TYPE_NOAVG] = p_rx_pd->snr;
	priv->NF[TYPE_RXPD][TYPE_NOAVG] = p_rx_pd->nf;
114
	lbs_save_rawSNRNF(priv, p_rx_pd);
115

116 117
	priv->SNR[TYPE_RXPD][TYPE_AVG] = lbs_getavgsnr(priv) * AVG_SCALE;
	priv->NF[TYPE_RXPD][TYPE_AVG] = lbs_getavgnf(priv) * AVG_SCALE;
118
	lbs_deb_rx("after computing SNR: SNR-avg = %d, NF-avg = %d\n",
119 120
	       priv->SNR[TYPE_RXPD][TYPE_AVG] / AVG_SCALE,
	       priv->NF[TYPE_RXPD][TYPE_AVG] / AVG_SCALE);
121

122 123 124
	priv->RSSI[TYPE_RXPD][TYPE_NOAVG] =
	    CAL_RSSI(priv->SNR[TYPE_RXPD][TYPE_NOAVG],
		     priv->NF[TYPE_RXPD][TYPE_NOAVG]);
125

126 127 128
	priv->RSSI[TYPE_RXPD][TYPE_AVG] =
	    CAL_RSSI(priv->SNR[TYPE_RXPD][TYPE_AVG] / AVG_SCALE,
		     priv->NF[TYPE_RXPD][TYPE_AVG] / AVG_SCALE);
129

130
	lbs_deb_leave(LBS_DEB_RX);
131 132 133 134 135 136
}

/**
 *  @brief This function processes received packet and forwards it
 *  to kernel/upper layer
 *
137
 *  @param priv    A pointer to struct lbs_private
138 139 140
 *  @param skb     A pointer to skb which includes the received packet
 *  @return 	   0 or -1
 */
141
int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *skb)
142 143
{
	int ret = 0;
144
	struct net_device *dev = priv->dev;
145 146 147 148 149 150
	struct rxpackethdr *p_rx_pkt;
	struct rxpd *p_rx_pd;
	int hdrchop;
	struct ethhdr *p_ethhdr;
	const u8 rfc1042_eth_hdr[] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };

151
	lbs_deb_enter(LBS_DEB_RX);
152

153 154
	BUG_ON(!skb);

155 156
	skb->ip_summed = CHECKSUM_NONE;

157
	if (priv->monitormode)
158 159
		return process_rxed_802_11_packet(priv, skb);

160 161 162
	p_rx_pd = (struct rxpd *) skb->data;
	p_rx_pkt = (struct rxpackethdr *) ((u8 *)p_rx_pd +
		le32_to_cpu(p_rx_pd->pkt_ptr));
163 164 165 166 167 168 169 170 171
	if (priv->mesh_dev) {
		if (priv->mesh_fw_ver == MESH_FW_OLD) {
			if (p_rx_pd->rx_control & RxPD_MESH_FRAME)
				dev = priv->mesh_dev;
		} else if (priv->mesh_fw_ver == MESH_FW_NEW) {
			if (p_rx_pd->u.bss.bss_num == MESH_IFACE_ID)
				dev = priv->mesh_dev;
		}
	}
172

173
	lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data,
174 175 176
		 min_t(unsigned int, skb->len, 100));

	if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) {
177
		lbs_deb_rx("rx err: frame received with bad length\n");
178
		dev->stats.rx_length_errors++;
179
		ret = 0;
180
		dev_kfree_skb(skb);
181 182 183
		goto done;
	}

184
	lbs_deb_rx("rx data: skb->len - pkt_ptr = %d-%zd = %zd\n",
185 186
		skb->len, (size_t)le32_to_cpu(p_rx_pd->pkt_ptr),
		skb->len - (size_t)le32_to_cpu(p_rx_pd->pkt_ptr));
187

188
	lbs_deb_hex(LBS_DEB_RX, "RX Data: Dest", p_rx_pkt->eth803_hdr.dest_addr,
189
		sizeof(p_rx_pkt->eth803_hdr.dest_addr));
190
	lbs_deb_hex(LBS_DEB_RX, "RX Data: Src", p_rx_pkt->eth803_hdr.src_addr,
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
		sizeof(p_rx_pkt->eth803_hdr.src_addr));

	if (memcmp(&p_rx_pkt->rfc1042_hdr,
		   rfc1042_eth_hdr, sizeof(rfc1042_eth_hdr)) == 0) {
		/*
		 *  Replace the 803 header and rfc1042 header (llc/snap) with an
		 *    EthernetII header, keep the src/dst and snap_type (ethertype)
		 *
		 *  The firmware only passes up SNAP frames converting
		 *    all RX Data from 802.11 to 802.2/LLC/SNAP frames.
		 *
		 *  To create the Ethernet II, just move the src, dst address right
		 *    before the snap_type.
		 */
		p_ethhdr = (struct ethhdr *)
		    ((u8 *) & p_rx_pkt->eth803_hdr
		     + sizeof(p_rx_pkt->eth803_hdr) + sizeof(p_rx_pkt->rfc1042_hdr)
		     - sizeof(p_rx_pkt->eth803_hdr.dest_addr)
		     - sizeof(p_rx_pkt->eth803_hdr.src_addr)
		     - sizeof(p_rx_pkt->rfc1042_hdr.snap_type));

		memcpy(p_ethhdr->h_source, p_rx_pkt->eth803_hdr.src_addr,
		       sizeof(p_ethhdr->h_source));
		memcpy(p_ethhdr->h_dest, p_rx_pkt->eth803_hdr.dest_addr,
		       sizeof(p_ethhdr->h_dest));

		/* Chop off the rxpd + the excess memory from the 802.2/llc/snap header
		 *   that was removed
		 */
220
		hdrchop = (u8 *)p_ethhdr - (u8 *)p_rx_pd;
221
	} else {
222
		lbs_deb_hex(LBS_DEB_RX, "RX Data: LLC/SNAP",
223 224 225 226
			(u8 *) & p_rx_pkt->rfc1042_hdr,
			sizeof(p_rx_pkt->rfc1042_hdr));

		/* Chop off the rxpd */
227
		hdrchop = (u8 *)&p_rx_pkt->eth803_hdr - (u8 *)p_rx_pd;
228 229 230 231 232 233 234 235 236 237
	}

	/* Chop off the leading header bytes so the skb points to the start of
	 *   either the reconstructed EthII frame or the 802.2/llc/snap frame
	 */
	skb_pull(skb, hdrchop);

	/* Take the data rate from the rxpd structure
	 * only if the rate is auto
	 */
238
	if (priv->enablehwauto)
239
		priv->cur_rate = lbs_fw_index_to_data_rate(p_rx_pd->rx_rate);
240

241
	lbs_compute_rssi(priv, p_rx_pd);
242

243
	lbs_deb_rx("rx data: size of actual packet %d\n", skb->len);
244 245
	dev->stats.rx_bytes += skb->len;
	dev->stats.rx_packets++;
246

247
	skb->protocol = eth_type_trans(skb, dev);
248 249 250 251
	if (in_interrupt())
		netif_rx(skb);
	else
		netif_rx_ni(skb);
252

253 254
	ret = 0;
done:
255
	lbs_deb_leave_args(LBS_DEB_RX, "ret %d", ret);
256 257
	return ret;
}
258
EXPORT_SYMBOL_GPL(lbs_process_rxed_packet);
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277

/**
 *  @brief This function converts Tx/Rx rates from the Marvell WLAN format
 *  (see Table 2 in Section 3.1) to IEEE80211_RADIOTAP_RATE units (500 Kb/s)
 *
 *  @param rate    Input rate
 *  @return 	   Output Rate (0 if invalid)
 */
static u8 convert_mv_rate_to_radiotap(u8 rate)
{
	switch (rate) {
	case 0:		/*   1 Mbps */
		return 2;
	case 1:		/*   2 Mbps */
		return 4;
	case 2:		/* 5.5 Mbps */
		return 11;
	case 3:		/*  11 Mbps */
		return 22;
278 279
	/* case 4: reserved */
	case 5:		/*   6 Mbps */
280
		return 12;
281
	case 6:		/*   9 Mbps */
282
		return 18;
283
	case 7:		/*  12 Mbps */
284
		return 24;
285
	case 8:		/*  18 Mbps */
286
		return 36;
287
	case 9:		/*  24 Mbps */
288
		return 48;
289
	case 10:		/*  36 Mbps */
290
		return 72;
291
	case 11:		/*  48 Mbps */
292
		return 96;
293
	case 12:		/*  54 Mbps */
294 295
		return 108;
	}
296
	lbs_pr_alert("Invalid Marvell WLAN rate %i\n", rate);
297 298 299 300 301 302 303
	return 0;
}

/**
 *  @brief This function processes a received 802.11 packet and forwards it
 *  to kernel/upper layer
 *
304
 *  @param priv    A pointer to struct lbs_private
305 306 307
 *  @param skb     A pointer to skb which includes the received packet
 *  @return 	   0 or -1
 */
308 309
static int process_rxed_802_11_packet(struct lbs_private *priv,
	struct sk_buff *skb)
310 311
{
	int ret = 0;
312
	struct net_device *dev = priv->dev;
313 314 315 316 317
	struct rx80211packethdr *p_rx_pkt;
	struct rxpd *prxpd;
	struct rx_radiotap_hdr radiotap_hdr;
	struct rx_radiotap_hdr *pradiotap_hdr;

318
	lbs_deb_enter(LBS_DEB_RX);
319 320 321 322

	p_rx_pkt = (struct rx80211packethdr *) skb->data;
	prxpd = &p_rx_pkt->rx_pd;

323
	// lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data, min(skb->len, 100));
324 325

	if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) {
326
		lbs_deb_rx("rx err: frame received with bad length\n");
327
		dev->stats.rx_length_errors++;
328
		ret = -EINVAL;
329
		kfree_skb(skb);
330 331 332
		goto done;
	}

333
	lbs_deb_rx("rx data: skb->len-sizeof(RxPd) = %d-%zd = %zd\n",
334 335 336 337
	       skb->len, sizeof(struct rxpd), skb->len - sizeof(struct rxpd));

	/* create the exported radio header */

338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
	/* radiotap header */
	radiotap_hdr.hdr.it_version = 0;
	/* XXX must check this value for pad */
	radiotap_hdr.hdr.it_pad = 0;
	radiotap_hdr.hdr.it_len = cpu_to_le16 (sizeof(struct rx_radiotap_hdr));
	radiotap_hdr.hdr.it_present = cpu_to_le32 (RX_RADIOTAP_PRESENT);
	radiotap_hdr.rate = convert_mv_rate_to_radiotap(prxpd->rx_rate);
	/* XXX must check no carryout */
	radiotap_hdr.antsignal = prxpd->snr + prxpd->nf;

	/* chop the rxpd */
	skb_pull(skb, sizeof(struct rxpd));

	/* add space for the new radio header */
	if ((skb_headroom(skb) < sizeof(struct rx_radiotap_hdr)) &&
353 354 355 356 357
	    pskb_expand_head(skb, sizeof(struct rx_radiotap_hdr), 0, GFP_ATOMIC)) {
		lbs_pr_alert("%s: couldn't pskb_expand_head\n", __func__);
		ret = -ENOMEM;
		kfree_skb(skb);
		goto done;
358 359
	}

360 361 362
	pradiotap_hdr = (void *)skb_push(skb, sizeof(struct rx_radiotap_hdr));
	memcpy(pradiotap_hdr, &radiotap_hdr, sizeof(struct rx_radiotap_hdr));

363 364 365
	/* Take the data rate from the rxpd structure
	 * only if the rate is auto
	 */
366
	if (priv->enablehwauto)
367
		priv->cur_rate = lbs_fw_index_to_data_rate(prxpd->rx_rate);
368

369
	lbs_compute_rssi(priv, prxpd);
370

371
	lbs_deb_rx("rx data: size of actual packet %d\n", skb->len);
372 373
	dev->stats.rx_bytes += skb->len;
	dev->stats.rx_packets++;
374

375 376
	skb->protocol = eth_type_trans(skb, priv->rtap_net_dev);
	netif_rx(skb);
377

378 379
	ret = 0;

380 381 382
done:
	lbs_deb_leave_args(LBS_DEB_RX, "ret %d", ret);
	return ret;
383
}