blob: 851515836a7f6217085ccbd5f32bf38798ab63ac [file] [log] [blame]
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001/*
Kalle Valo80301cd2009-06-12 14:17:39 +03002 * This file is part of wl1251
Kalle Valo2f01a1f2009-04-29 23:33:31 +03003 *
4 * Copyright (c) 1998-2007 Texas Instruments Incorporated
5 * Copyright (C) 2008 Nokia Corporation
6 *
7 * Contact: Kalle Valo <kalle.valo@nokia.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 */
24
25#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/gfp.h>
Kalle Valo2f01a1f2009-04-29 23:33:31 +030027#include <net/mac80211.h>
28
Kalle Valo13674112009-06-12 14:17:25 +030029#include "wl1251.h"
Kalle Valo29d904c2009-08-07 13:35:11 +030030#include "wl1251_reg.h"
Bob Copeland0764de62009-08-07 13:32:56 +030031#include "wl1251_io.h"
Kalle Valoef2f8d42009-06-12 14:17:19 +030032#include "wl1251_rx.h"
Bob Copeland0764de62009-08-07 13:32:56 +030033#include "wl1251_cmd.h"
Kalle Valoef2f8d42009-06-12 14:17:19 +030034#include "wl1251_acx.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +030035
Kalle Valo80301cd2009-06-12 14:17:39 +030036static void wl1251_rx_header(struct wl1251 *wl,
37 struct wl1251_rx_descriptor *desc)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030038{
39 u32 rx_packet_ring_addr;
40
41 rx_packet_ring_addr = wl->data_path->rx_packet_ring_addr;
42 if (wl->rx_current_buffer)
43 rx_packet_ring_addr += wl->data_path->rx_packet_ring_chunk_size;
44
Bob Copeland0764de62009-08-07 13:32:56 +030045 wl1251_mem_read(wl, rx_packet_ring_addr, desc, sizeof(*desc));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030046}
47
Kalle Valo80301cd2009-06-12 14:17:39 +030048static void wl1251_rx_status(struct wl1251 *wl,
49 struct wl1251_rx_descriptor *desc,
Kalle Valo2f01a1f2009-04-29 23:33:31 +030050 struct ieee80211_rx_status *status,
51 u8 beacon)
52{
Kalle Valoff258392009-06-12 14:14:19 +030053 u64 mactime;
54 int ret;
55
Kalle Valo2f01a1f2009-04-29 23:33:31 +030056 memset(status, 0, sizeof(struct ieee80211_rx_status));
57
58 status->band = IEEE80211_BAND_2GHZ;
59 status->mactime = desc->timestamp;
60
61 /*
62 * The rx status timestamp is a 32 bits value while the TSF is a
63 * 64 bits one.
64 * For IBSS merging, TSF is mandatory, so we have to get it
65 * somehow, so we ask for ACX_TSF_INFO.
66 * That could be moved to the get_tsf() hook, but unfortunately,
67 * this one must be atomic, while our SPI routines can sleep.
68 */
69 if ((wl->bss_type == BSS_TYPE_IBSS) && beacon) {
Kalle Valo80301cd2009-06-12 14:17:39 +030070 ret = wl1251_acx_tsf_info(wl, &mactime);
Kalle Valoff258392009-06-12 14:14:19 +030071 if (ret == 0)
72 status->mactime = mactime;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030073 }
74
75 status->signal = desc->rssi;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030076
Kalle Valo2f01a1f2009-04-29 23:33:31 +030077 status->freq = ieee80211_channel_to_frequency(desc->channel);
78
79 status->flag |= RX_FLAG_TSFT;
80
81 if (desc->flags & RX_DESC_ENCRYPTION_MASK) {
82 status->flag |= RX_FLAG_IV_STRIPPED | RX_FLAG_MMIC_STRIPPED;
83
84 if (likely(!(desc->flags & RX_DESC_DECRYPT_FAIL)))
85 status->flag |= RX_FLAG_DECRYPTED;
86
87 if (unlikely(desc->flags & RX_DESC_MIC_FAIL))
88 status->flag |= RX_FLAG_MMIC_ERROR;
89 }
90
91 if (unlikely(!(desc->flags & RX_DESC_VALID_FCS)))
92 status->flag |= RX_FLAG_FAILED_FCS_CRC;
93
94
95 /* FIXME: set status->rate_idx */
96}
97
Kalle Valo80301cd2009-06-12 14:17:39 +030098static void wl1251_rx_body(struct wl1251 *wl,
99 struct wl1251_rx_descriptor *desc)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300100{
101 struct sk_buff *skb;
102 struct ieee80211_rx_status status;
103 u8 *rx_buffer, beacon = 0;
104 u16 length, *fc;
105 u32 curr_id, last_id_inc, rx_packet_ring_addr;
106
Kalle Valo80301cd2009-06-12 14:17:39 +0300107 length = WL1251_RX_ALIGN(desc->length - PLCP_HEADER_LENGTH);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300108 curr_id = (desc->flags & RX_DESC_SEQNUM_MASK) >> RX_DESC_PACKETID_SHIFT;
109 last_id_inc = (wl->rx_last_id + 1) % (RX_MAX_PACKET_ID + 1);
110
111 if (last_id_inc != curr_id) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300112 wl1251_warning("curr ID:%d, last ID inc:%d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300113 curr_id, last_id_inc);
114 wl->rx_last_id = curr_id;
115 } else {
116 wl->rx_last_id = last_id_inc;
117 }
118
119 rx_packet_ring_addr = wl->data_path->rx_packet_ring_addr +
Kalle Valo80301cd2009-06-12 14:17:39 +0300120 sizeof(struct wl1251_rx_descriptor) + 20;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300121 if (wl->rx_current_buffer)
122 rx_packet_ring_addr += wl->data_path->rx_packet_ring_chunk_size;
123
Kalle Valocdd1e9a2009-11-30 10:18:12 +0200124 skb = __dev_alloc_skb(length, GFP_KERNEL);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300125 if (!skb) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300126 wl1251_error("Couldn't allocate RX frame");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300127 return;
128 }
129
130 rx_buffer = skb_put(skb, length);
Bob Copeland0764de62009-08-07 13:32:56 +0300131 wl1251_mem_read(wl, rx_packet_ring_addr, rx_buffer, length);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300132
133 /* The actual lenght doesn't include the target's alignment */
134 skb->len = desc->length - PLCP_HEADER_LENGTH;
135
136 fc = (u16 *)skb->data;
137
138 if ((*fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_BEACON)
139 beacon = 1;
140
Kalle Valo80301cd2009-06-12 14:17:39 +0300141 wl1251_rx_status(wl, desc, &status, beacon);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300142
Kalle Valo80301cd2009-06-12 14:17:39 +0300143 wl1251_debug(DEBUG_RX, "rx skb 0x%p: %d B %s", skb, skb->len,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300144 beacon ? "beacon" : "");
145
Johannes Bergf1d58c22009-06-17 13:13:00 +0200146 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
Kalle Valo878283f2009-10-13 20:33:21 +0300147 ieee80211_rx_ni(wl->hw, skb);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300148}
149
Kalle Valo80301cd2009-06-12 14:17:39 +0300150static void wl1251_rx_ack(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300151{
152 u32 data, addr;
153
154 if (wl->rx_current_buffer) {
155 addr = ACX_REG_INTERRUPT_TRIG_H;
156 data = INTR_TRIG_RX_PROC1;
157 } else {
158 addr = ACX_REG_INTERRUPT_TRIG;
159 data = INTR_TRIG_RX_PROC0;
160 }
161
Kalle Valo80301cd2009-06-12 14:17:39 +0300162 wl1251_reg_write32(wl, addr, data);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300163
164 /* Toggle buffer ring */
165 wl->rx_current_buffer = !wl->rx_current_buffer;
166}
167
168
Kalle Valo80301cd2009-06-12 14:17:39 +0300169void wl1251_rx(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300170{
Kalle Valo80301cd2009-06-12 14:17:39 +0300171 struct wl1251_rx_descriptor *rx_desc;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300172
Kalle Valo80301cd2009-06-12 14:17:39 +0300173 if (wl->state != WL1251_STATE_ON)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300174 return;
175
Kalle Valo47212132009-06-12 14:15:08 +0300176 rx_desc = wl->rx_descriptor;
177
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300178 /* We first read the frame's header */
Kalle Valo80301cd2009-06-12 14:17:39 +0300179 wl1251_rx_header(wl, rx_desc);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300180
181 /* Now we can read the body */
Kalle Valo80301cd2009-06-12 14:17:39 +0300182 wl1251_rx_body(wl, rx_desc);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300183
184 /* Finally, we need to ACK the RX */
Kalle Valo80301cd2009-06-12 14:17:39 +0300185 wl1251_rx_ack(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300186}