blob: 799c36914735c310785165ec0fdf3671a87d0e72 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 2009 Nokia Corporation
5 *
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030027
Shahar Levi00d20102010-11-08 11:20:10 +000028#include "init.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030029#include "wl12xx_80211.h"
Shahar Levi00d20102010-11-08 11:20:10 +000030#include "acx.h"
31#include "cmd.h"
32#include "reg.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030033
34static int wl1271_init_hwenc_config(struct wl1271 *wl)
35{
36 int ret;
37
38 ret = wl1271_acx_feature_cfg(wl);
39 if (ret < 0) {
40 wl1271_warning("couldn't set feature config");
41 return ret;
42 }
43
Arik Nemtsov98bdaab2010-10-16 18:08:58 +020044 ret = wl1271_cmd_set_sta_default_wep_key(wl, wl->default_key);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030045 if (ret < 0) {
46 wl1271_warning("couldn't set default key");
47 return ret;
48 }
49
50 return 0;
51}
52
Luciano Coelho12419cc2010-02-18 13:25:44 +020053int wl1271_init_templates_config(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030054{
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +020055 int ret, i;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030056
57 /* send empty templates for fw memory reservation */
58 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4, NULL,
Guy Eilamea559b42010-12-09 16:54:59 +020059 WL1271_CMD_TEMPL_MAX_SIZE,
Juuso Oikarinen606c1482010-04-01 11:38:21 +030060 0, WL1271_RATE_AUTOMATIC);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030061 if (ret < 0)
62 return ret;
63
Juuso Oikarinen11eb5422010-08-24 06:28:03 +030064 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5,
Guy Eilamea559b42010-12-09 16:54:59 +020065 NULL, WL1271_CMD_TEMPL_MAX_SIZE, 0,
Juuso Oikarinen11eb5422010-08-24 06:28:03 +030066 WL1271_RATE_AUTOMATIC);
67 if (ret < 0)
68 return ret;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +030069
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030070 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_NULL_DATA, NULL,
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +020071 sizeof(struct wl12xx_null_data_template),
Juuso Oikarinen606c1482010-04-01 11:38:21 +030072 0, WL1271_RATE_AUTOMATIC);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030073 if (ret < 0)
74 return ret;
75
76 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_PS_POLL, NULL,
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +020077 sizeof(struct wl12xx_ps_poll_template),
Juuso Oikarinen606c1482010-04-01 11:38:21 +030078 0, WL1271_RATE_AUTOMATIC);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030079 if (ret < 0)
80 return ret;
81
82 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_QOS_NULL_DATA, NULL,
83 sizeof
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +020084 (struct wl12xx_qos_null_data_template),
Juuso Oikarinen606c1482010-04-01 11:38:21 +030085 0, WL1271_RATE_AUTOMATIC);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030086 if (ret < 0)
87 return ret;
88
89 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_PROBE_RESPONSE, NULL,
90 sizeof
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +020091 (struct wl12xx_probe_resp_template),
Juuso Oikarinen606c1482010-04-01 11:38:21 +030092 0, WL1271_RATE_AUTOMATIC);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030093 if (ret < 0)
94 return ret;
95
96 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_BEACON, NULL,
97 sizeof
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +020098 (struct wl12xx_beacon_template),
Juuso Oikarinen606c1482010-04-01 11:38:21 +030099 0, WL1271_RATE_AUTOMATIC);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300100 if (ret < 0)
101 return ret;
102
Eliad Pellerc5312772010-12-09 11:31:27 +0200103 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_ARP_RSP, NULL,
104 sizeof
105 (struct wl12xx_arp_rsp_template),
106 0, WL1271_RATE_AUTOMATIC);
107 if (ret < 0)
108 return ret;
109
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +0200110 for (i = 0; i < CMD_TEMPL_KLV_IDX_MAX; i++) {
111 ret = wl1271_cmd_template_set(wl, CMD_TEMPL_KLV, NULL,
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300112 WL1271_CMD_TEMPL_MAX_SIZE, i,
113 WL1271_RATE_AUTOMATIC);
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +0200114 if (ret < 0)
115 return ret;
116 }
117
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300118 return 0;
119}
120
121static int wl1271_init_rx_config(struct wl1271 *wl, u32 config, u32 filter)
122{
123 int ret;
124
Juuso Oikarinen8793f9b2009-10-13 12:47:40 +0300125 ret = wl1271_acx_rx_msdu_life_time(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300126 if (ret < 0)
127 return ret;
128
129 ret = wl1271_acx_rx_config(wl, config, filter);
130 if (ret < 0)
131 return ret;
132
133 return 0;
134}
135
Luciano Coelho12419cc2010-02-18 13:25:44 +0200136int wl1271_init_phy_config(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300137{
138 int ret;
139
140 ret = wl1271_acx_pd_threshold(wl);
141 if (ret < 0)
142 return ret;
143
144 ret = wl1271_acx_slot(wl, DEFAULT_SLOT_TIME);
145 if (ret < 0)
146 return ret;
147
Juuso Oikarinenc87dec92009-10-08 21:56:31 +0300148 ret = wl1271_acx_group_address_tbl(wl, true, NULL, 0);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300149 if (ret < 0)
150 return ret;
151
152 ret = wl1271_acx_service_period_timeout(wl);
153 if (ret < 0)
154 return ret;
155
Juuso Oikarinen8793f9b2009-10-13 12:47:40 +0300156 ret = wl1271_acx_rts_threshold(wl, wl->conf.rx.rts_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300157 if (ret < 0)
158 return ret;
159
160 return 0;
161}
162
163static int wl1271_init_beacon_filter(struct wl1271 *wl)
164{
165 int ret;
166
Juuso Oikarinen19221672009-10-08 21:56:35 +0300167 /* disable beacon filtering at this stage */
168 ret = wl1271_acx_beacon_filter_opt(wl, false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300169 if (ret < 0)
170 return ret;
171
172 ret = wl1271_acx_beacon_filter_table(wl);
173 if (ret < 0)
174 return ret;
175
176 return 0;
177}
178
Luciano Coelho12419cc2010-02-18 13:25:44 +0200179int wl1271_init_pta(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300180{
181 int ret;
182
Juuso Oikarinen1b00f542010-03-18 12:26:30 +0200183 ret = wl1271_acx_sg_cfg(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300184 if (ret < 0)
185 return ret;
186
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +0200187 ret = wl1271_acx_sg_enable(wl, wl->sg_enabled);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300188 if (ret < 0)
189 return ret;
190
191 return 0;
192}
193
Luciano Coelho12419cc2010-02-18 13:25:44 +0200194int wl1271_init_energy_detection(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300195{
196 int ret;
197
198 ret = wl1271_acx_cca_threshold(wl);
199 if (ret < 0)
200 return ret;
201
202 return 0;
203}
204
205static int wl1271_init_beacon_broadcast(struct wl1271 *wl)
206{
207 int ret;
208
209 ret = wl1271_acx_bcn_dtim_options(wl);
210 if (ret < 0)
211 return ret;
212
213 return 0;
214}
215
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300216int wl1271_hw_init(struct wl1271 *wl)
217{
Kalle Valo243eeb52010-02-18 13:25:39 +0200218 struct conf_tx_ac_category *conf_ac;
Kalle Valof2054df2010-02-18 13:25:40 +0200219 struct conf_tx_tid *conf_tid;
Kalle Valo243eeb52010-02-18 13:25:39 +0200220 int ret, i;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300221
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200222 ret = wl1271_cmd_general_parms(wl);
Luciano Coelho4a904062009-11-23 23:22:18 +0200223 if (ret < 0)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300224 return ret;
225
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200226 ret = wl1271_cmd_radio_parms(wl);
Luciano Coelho4a904062009-11-23 23:22:18 +0200227 if (ret < 0)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300228 return ret;
229
Juuso Oikarinen644a4862010-10-05 13:11:56 +0200230 ret = wl1271_cmd_ext_radio_parms(wl);
231 if (ret < 0)
232 return ret;
233
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300234 /* Template settings */
235 ret = wl1271_init_templates_config(wl);
236 if (ret < 0)
237 return ret;
238
239 /* Default memory configuration */
240 ret = wl1271_acx_init_mem_config(wl);
241 if (ret < 0)
242 return ret;
243
244 /* RX config */
245 ret = wl1271_init_rx_config(wl,
Juuso Oikarineneb5b28d2009-10-13 12:47:45 +0300246 RX_CFG_PROMISCUOUS | RX_CFG_TSF,
247 RX_FILTER_OPTION_DEF);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300248 /* RX_CONFIG_OPTION_ANY_DST_ANY_BSS,
249 RX_FILTER_OPTION_FILTER_ALL); */
250 if (ret < 0)
251 goto out_free_memmap;
252
253 /* PHY layer config */
254 ret = wl1271_init_phy_config(wl);
255 if (ret < 0)
256 goto out_free_memmap;
257
Luciano Coelho6e92b412009-12-11 15:40:50 +0200258 ret = wl1271_acx_dco_itrim_params(wl);
259 if (ret < 0)
260 goto out_free_memmap;
261
Juuso Oikarinen34415232009-10-08 21:56:33 +0300262 /* Initialize connection monitoring thresholds */
Juuso Oikarinen6ccbb922010-03-26 12:53:23 +0200263 ret = wl1271_acx_conn_monit_params(wl, false);
Juuso Oikarinen34415232009-10-08 21:56:33 +0300264 if (ret < 0)
265 goto out_free_memmap;
266
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300267 /* Beacon filtering */
268 ret = wl1271_init_beacon_filter(wl);
269 if (ret < 0)
270 goto out_free_memmap;
271
272 /* Configure TX patch complete interrupt behavior */
273 ret = wl1271_acx_tx_config_options(wl);
274 if (ret < 0)
275 goto out_free_memmap;
276
277 /* RX complete interrupt pacing */
278 ret = wl1271_acx_init_rx_interrupt(wl);
279 if (ret < 0)
280 goto out_free_memmap;
281
282 /* Bluetooth WLAN coexistence */
283 ret = wl1271_init_pta(wl);
284 if (ret < 0)
285 goto out_free_memmap;
286
287 /* Energy detection */
288 ret = wl1271_init_energy_detection(wl);
289 if (ret < 0)
290 goto out_free_memmap;
291
292 /* Beacons and boradcast settings */
293 ret = wl1271_init_beacon_broadcast(wl);
294 if (ret < 0)
295 goto out_free_memmap;
296
297 /* Default fragmentation threshold */
Arik Nemtsov68d069c2010-11-08 10:51:07 +0100298 ret = wl1271_acx_frag_threshold(wl, wl->conf.tx.frag_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300299 if (ret < 0)
300 goto out_free_memmap;
301
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200302 /* Default TID/AC configuration */
303 BUG_ON(wl->conf.tx.tid_conf_count != wl->conf.tx.ac_conf_count);
Kalle Valof2054df2010-02-18 13:25:40 +0200304 for (i = 0; i < wl->conf.tx.tid_conf_count; i++) {
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200305 conf_ac = &wl->conf.tx.ac_conf[i];
306 ret = wl1271_acx_ac_cfg(wl, conf_ac->ac, conf_ac->cw_min,
307 conf_ac->cw_max, conf_ac->aifsn,
308 conf_ac->tx_op_limit);
309 if (ret < 0)
310 goto out_free_memmap;
311
Kalle Valof2054df2010-02-18 13:25:40 +0200312 conf_tid = &wl->conf.tx.tid_conf[i];
313 ret = wl1271_acx_tid_cfg(wl, conf_tid->queue_id,
314 conf_tid->channel_type,
315 conf_tid->tsid,
316 conf_tid->ps_scheme,
317 conf_tid->ack_policy,
318 conf_tid->apsd_conf[0],
319 conf_tid->apsd_conf[1]);
320 if (ret < 0)
321 goto out_free_memmap;
322 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300323
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300324 /* Configure TX rate classes */
Arik Nemtsov79b223f2010-10-16 17:52:59 +0200325 ret = wl1271_acx_sta_rate_policies(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300326 if (ret < 0)
327 goto out_free_memmap;
328
329 /* Enable data path */
Luciano Coelho94210892009-12-11 15:40:55 +0200330 ret = wl1271_cmd_data_path(wl, 1);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300331 if (ret < 0)
332 goto out_free_memmap;
333
334 /* Configure for ELP power saving */
335 ret = wl1271_acx_sleep_auth(wl, WL1271_PSM_ELP);
336 if (ret < 0)
337 goto out_free_memmap;
338
339 /* Configure HW encryption */
340 ret = wl1271_init_hwenc_config(wl);
341 if (ret < 0)
342 goto out_free_memmap;
343
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +0200344 /* configure PM */
345 ret = wl1271_acx_pm_config(wl);
346 if (ret < 0)
347 goto out_free_memmap;
348
Juuso Oikarinenc1899552010-03-26 12:53:32 +0200349 /* disable all keep-alive templates */
350 for (i = 0; i < CMD_TEMPL_KLV_IDX_MAX; i++) {
351 ret = wl1271_acx_keep_alive_config(wl, i,
352 ACX_KEEP_ALIVE_TPL_INVALID);
353 if (ret < 0)
354 goto out_free_memmap;
355 }
356
357 /* disable the keep-alive feature */
358 ret = wl1271_acx_keep_alive_mode(wl, false);
359 if (ret < 0)
360 goto out_free_memmap;
361
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300362 /* Configure rssi/snr averaging weights */
363 ret = wl1271_acx_rssi_snr_avg_weights(wl);
364 if (ret < 0)
365 goto out_free_memmap;
366
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300367 return 0;
368
369 out_free_memmap:
370 kfree(wl->target_mem_map);
Juuso Oikarinen34415232009-10-08 21:56:33 +0300371 wl->target_mem_map = NULL;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300372
373 return ret;
374}