diff options
author | Kalle Valo <kalle.valo@nokia.com> | 2009-06-12 07:17:19 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-07-10 14:57:49 -0400 |
commit | ef2f8d45771490de5b8373c25e983ee1e3aee9ea (patch) | |
tree | 0ddf8a416ab891a371ddcaf914c059387d65fe07 /drivers/net/wireless/wl12xx/wl1251_rx.c | |
parent | c731837855a9dcc2ec0c5367b0e16ad975aaed16 (diff) |
wl1251: add wl1251 prefix to all 1251 files
Now that all 1271 files are split, we can add wl1251_ prefix to the files.
Signed-off-by: Kalle Valo <kalle.valo@nokia.com>
Reviewed-by: Vidhya Govindan <vidhya.govindan@nokia.com>
Reviewed-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl1251_rx.c')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1251_rx.c | 195 |
1 files changed, 195 insertions, 0 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1251_rx.c b/drivers/net/wireless/wl12xx/wl1251_rx.c new file mode 100644 index 000000000000..d73e014d6118 --- /dev/null +++ b/drivers/net/wireless/wl12xx/wl1251_rx.c | |||
@@ -0,0 +1,195 @@ | |||
1 | /* | ||
2 | * This file is part of wl12xx | ||
3 | * | ||
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> | ||
26 | #include <net/mac80211.h> | ||
27 | |||
28 | #include "wl12xx.h" | ||
29 | #include "reg.h" | ||
30 | #include "wl1251_spi.h" | ||
31 | #include "wl1251_rx.h" | ||
32 | #include "wl1251_acx.h" | ||
33 | |||
34 | static void wl12xx_rx_header(struct wl12xx *wl, | ||
35 | struct wl12xx_rx_descriptor *desc) | ||
36 | { | ||
37 | u32 rx_packet_ring_addr; | ||
38 | |||
39 | rx_packet_ring_addr = wl->data_path->rx_packet_ring_addr; | ||
40 | if (wl->rx_current_buffer) | ||
41 | rx_packet_ring_addr += wl->data_path->rx_packet_ring_chunk_size; | ||
42 | |||
43 | wl12xx_spi_mem_read(wl, rx_packet_ring_addr, desc, sizeof(*desc)); | ||
44 | } | ||
45 | |||
46 | static void wl12xx_rx_status(struct wl12xx *wl, | ||
47 | struct wl12xx_rx_descriptor *desc, | ||
48 | struct ieee80211_rx_status *status, | ||
49 | u8 beacon) | ||
50 | { | ||
51 | u64 mactime; | ||
52 | int ret; | ||
53 | |||
54 | memset(status, 0, sizeof(struct ieee80211_rx_status)); | ||
55 | |||
56 | status->band = IEEE80211_BAND_2GHZ; | ||
57 | status->mactime = desc->timestamp; | ||
58 | |||
59 | /* | ||
60 | * The rx status timestamp is a 32 bits value while the TSF is a | ||
61 | * 64 bits one. | ||
62 | * For IBSS merging, TSF is mandatory, so we have to get it | ||
63 | * somehow, so we ask for ACX_TSF_INFO. | ||
64 | * That could be moved to the get_tsf() hook, but unfortunately, | ||
65 | * this one must be atomic, while our SPI routines can sleep. | ||
66 | */ | ||
67 | if ((wl->bss_type == BSS_TYPE_IBSS) && beacon) { | ||
68 | ret = wl12xx_acx_tsf_info(wl, &mactime); | ||
69 | if (ret == 0) | ||
70 | status->mactime = mactime; | ||
71 | } | ||
72 | |||
73 | status->signal = desc->rssi; | ||
74 | status->qual = (desc->rssi - WL12XX_RX_MIN_RSSI) * 100 / | ||
75 | (WL12XX_RX_MAX_RSSI - WL12XX_RX_MIN_RSSI); | ||
76 | status->qual = min(status->qual, 100); | ||
77 | status->qual = max(status->qual, 0); | ||
78 | |||
79 | /* | ||
80 | * FIXME: guessing that snr needs to be divided by two, otherwise | ||
81 | * the values don't make any sense | ||
82 | */ | ||
83 | status->noise = desc->rssi - desc->snr / 2; | ||
84 | |||
85 | status->freq = ieee80211_channel_to_frequency(desc->channel); | ||
86 | |||
87 | status->flag |= RX_FLAG_TSFT; | ||
88 | |||
89 | if (desc->flags & RX_DESC_ENCRYPTION_MASK) { | ||
90 | status->flag |= RX_FLAG_IV_STRIPPED | RX_FLAG_MMIC_STRIPPED; | ||
91 | |||
92 | if (likely(!(desc->flags & RX_DESC_DECRYPT_FAIL))) | ||
93 | status->flag |= RX_FLAG_DECRYPTED; | ||
94 | |||
95 | if (unlikely(desc->flags & RX_DESC_MIC_FAIL)) | ||
96 | status->flag |= RX_FLAG_MMIC_ERROR; | ||
97 | } | ||
98 | |||
99 | if (unlikely(!(desc->flags & RX_DESC_VALID_FCS))) | ||
100 | status->flag |= RX_FLAG_FAILED_FCS_CRC; | ||
101 | |||
102 | |||
103 | /* FIXME: set status->rate_idx */ | ||
104 | } | ||
105 | |||
106 | static void wl12xx_rx_body(struct wl12xx *wl, | ||
107 | struct wl12xx_rx_descriptor *desc) | ||
108 | { | ||
109 | struct sk_buff *skb; | ||
110 | struct ieee80211_rx_status status; | ||
111 | u8 *rx_buffer, beacon = 0; | ||
112 | u16 length, *fc; | ||
113 | u32 curr_id, last_id_inc, rx_packet_ring_addr; | ||
114 | |||
115 | length = WL12XX_RX_ALIGN(desc->length - PLCP_HEADER_LENGTH); | ||
116 | curr_id = (desc->flags & RX_DESC_SEQNUM_MASK) >> RX_DESC_PACKETID_SHIFT; | ||
117 | last_id_inc = (wl->rx_last_id + 1) % (RX_MAX_PACKET_ID + 1); | ||
118 | |||
119 | if (last_id_inc != curr_id) { | ||
120 | wl12xx_warning("curr ID:%d, last ID inc:%d", | ||
121 | curr_id, last_id_inc); | ||
122 | wl->rx_last_id = curr_id; | ||
123 | } else { | ||
124 | wl->rx_last_id = last_id_inc; | ||
125 | } | ||
126 | |||
127 | rx_packet_ring_addr = wl->data_path->rx_packet_ring_addr + | ||
128 | sizeof(struct wl12xx_rx_descriptor) + 20; | ||
129 | if (wl->rx_current_buffer) | ||
130 | rx_packet_ring_addr += wl->data_path->rx_packet_ring_chunk_size; | ||
131 | |||
132 | skb = dev_alloc_skb(length); | ||
133 | if (!skb) { | ||
134 | wl12xx_error("Couldn't allocate RX frame"); | ||
135 | return; | ||
136 | } | ||
137 | |||
138 | rx_buffer = skb_put(skb, length); | ||
139 | wl12xx_spi_mem_read(wl, rx_packet_ring_addr, rx_buffer, length); | ||
140 | |||
141 | /* The actual lenght doesn't include the target's alignment */ | ||
142 | skb->len = desc->length - PLCP_HEADER_LENGTH; | ||
143 | |||
144 | fc = (u16 *)skb->data; | ||
145 | |||
146 | if ((*fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_BEACON) | ||
147 | beacon = 1; | ||
148 | |||
149 | wl12xx_rx_status(wl, desc, &status, beacon); | ||
150 | |||
151 | wl12xx_debug(DEBUG_RX, "rx skb 0x%p: %d B %s", skb, skb->len, | ||
152 | beacon ? "beacon" : ""); | ||
153 | |||
154 | ieee80211_rx(wl->hw, skb, &status); | ||
155 | } | ||
156 | |||
157 | static void wl12xx_rx_ack(struct wl12xx *wl) | ||
158 | { | ||
159 | u32 data, addr; | ||
160 | |||
161 | if (wl->rx_current_buffer) { | ||
162 | addr = ACX_REG_INTERRUPT_TRIG_H; | ||
163 | data = INTR_TRIG_RX_PROC1; | ||
164 | } else { | ||
165 | addr = ACX_REG_INTERRUPT_TRIG; | ||
166 | data = INTR_TRIG_RX_PROC0; | ||
167 | } | ||
168 | |||
169 | wl12xx_reg_write32(wl, addr, data); | ||
170 | |||
171 | /* Toggle buffer ring */ | ||
172 | wl->rx_current_buffer = !wl->rx_current_buffer; | ||
173 | } | ||
174 | |||
175 | |||
176 | void wl12xx_rx(struct wl12xx *wl) | ||
177 | { | ||
178 | struct wl12xx_rx_descriptor *rx_desc; | ||
179 | |||
180 | if (wl->state != WL12XX_STATE_ON) | ||
181 | return; | ||
182 | |||
183 | rx_desc = wl->rx_descriptor; | ||
184 | |||
185 | /* We first read the frame's header */ | ||
186 | wl12xx_rx_header(wl, rx_desc); | ||
187 | |||
188 | /* Now we can read the body */ | ||
189 | wl12xx_rx_body(wl, rx_desc); | ||
190 | |||
191 | /* Finally, we need to ACK the RX */ | ||
192 | wl12xx_rx_ack(wl); | ||
193 | |||
194 | return; | ||
195 | } | ||