GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / net / wireless / wl12xx / wl1251_init.c
blobb538bdd7b320f41e8abdf2516d755179d780f94e
1 /*
2 * This file is part of wl1251
4 * Copyright (C) 2009 Nokia Corporation
6 * Contact: Kalle Valo <kalle.valo@nokia.com>
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.
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.
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
24 #include <linux/kernel.h>
25 #include <linux/module.h>
26 #include <linux/slab.h>
28 #include "wl1251_init.h"
29 #include "wl12xx_80211.h"
30 #include "wl1251_acx.h"
31 #include "wl1251_cmd.h"
32 #include "wl1251_reg.h"
34 int wl1251_hw_init_hwenc_config(struct wl1251 *wl)
36 int ret;
38 ret = wl1251_acx_feature_cfg(wl);
39 if (ret < 0) {
40 wl1251_warning("couldn't set feature config");
41 return ret;
44 ret = wl1251_acx_default_key(wl, wl->default_key);
45 if (ret < 0) {
46 wl1251_warning("couldn't set default key");
47 return ret;
50 return 0;
53 int wl1251_hw_init_templates_config(struct wl1251 *wl)
55 int ret;
56 u8 partial_vbm[PARTIAL_VBM_MAX];
58 /* send empty templates for fw memory reservation */
59 ret = wl1251_cmd_template_set(wl, CMD_PROBE_REQ, NULL,
60 sizeof(struct wl12xx_probe_req_template));
61 if (ret < 0)
62 return ret;
64 ret = wl1251_cmd_template_set(wl, CMD_NULL_DATA, NULL,
65 sizeof(struct wl12xx_null_data_template));
66 if (ret < 0)
67 return ret;
69 ret = wl1251_cmd_template_set(wl, CMD_PS_POLL, NULL,
70 sizeof(struct wl12xx_ps_poll_template));
71 if (ret < 0)
72 return ret;
74 ret = wl1251_cmd_template_set(wl, CMD_QOS_NULL_DATA, NULL,
75 sizeof
76 (struct wl12xx_qos_null_data_template));
77 if (ret < 0)
78 return ret;
80 ret = wl1251_cmd_template_set(wl, CMD_PROBE_RESP, NULL,
81 sizeof
82 (struct wl12xx_probe_resp_template));
83 if (ret < 0)
84 return ret;
86 ret = wl1251_cmd_template_set(wl, CMD_BEACON, NULL,
87 sizeof
88 (struct wl12xx_beacon_template));
89 if (ret < 0)
90 return ret;
92 /* tim templates, first reserve space then allocate an empty one */
93 memset(partial_vbm, 0, PARTIAL_VBM_MAX);
94 ret = wl1251_cmd_vbm(wl, TIM_ELE_ID, partial_vbm, PARTIAL_VBM_MAX, 0);
95 if (ret < 0)
96 return ret;
98 ret = wl1251_cmd_vbm(wl, TIM_ELE_ID, partial_vbm, 1, 0);
99 if (ret < 0)
100 return ret;
102 return 0;
105 int wl1251_hw_init_rx_config(struct wl1251 *wl, u32 config, u32 filter)
107 int ret;
109 ret = wl1251_acx_rx_msdu_life_time(wl, RX_MSDU_LIFETIME_DEF);
110 if (ret < 0)
111 return ret;
113 ret = wl1251_acx_rx_config(wl, config, filter);
114 if (ret < 0)
115 return ret;
117 return 0;
120 int wl1251_hw_init_phy_config(struct wl1251 *wl)
122 int ret;
124 ret = wl1251_acx_pd_threshold(wl);
125 if (ret < 0)
126 return ret;
128 ret = wl1251_acx_slot(wl, DEFAULT_SLOT_TIME);
129 if (ret < 0)
130 return ret;
132 ret = wl1251_acx_group_address_tbl(wl);
133 if (ret < 0)
134 return ret;
136 ret = wl1251_acx_service_period_timeout(wl);
137 if (ret < 0)
138 return ret;
140 ret = wl1251_acx_rts_threshold(wl, RTS_THRESHOLD_DEF);
141 if (ret < 0)
142 return ret;
144 return 0;
147 int wl1251_hw_init_beacon_filter(struct wl1251 *wl)
149 int ret;
151 /* disable beacon filtering at this stage */
152 ret = wl1251_acx_beacon_filter_opt(wl, false);
153 if (ret < 0)
154 return ret;
156 ret = wl1251_acx_beacon_filter_table(wl);
157 if (ret < 0)
158 return ret;
160 return 0;
163 int wl1251_hw_init_pta(struct wl1251 *wl)
165 int ret;
167 ret = wl1251_acx_sg_enable(wl);
168 if (ret < 0)
169 return ret;
171 ret = wl1251_acx_sg_cfg(wl);
172 if (ret < 0)
173 return ret;
175 return 0;
178 int wl1251_hw_init_energy_detection(struct wl1251 *wl)
180 int ret;
182 ret = wl1251_acx_cca_threshold(wl);
183 if (ret < 0)
184 return ret;
186 return 0;
189 int wl1251_hw_init_beacon_broadcast(struct wl1251 *wl)
191 int ret;
193 ret = wl1251_acx_bcn_dtim_options(wl);
194 if (ret < 0)
195 return ret;
197 return 0;
200 int wl1251_hw_init_power_auth(struct wl1251 *wl)
202 return wl1251_acx_sleep_auth(wl, WL1251_PSM_CAM);
205 int wl1251_hw_init_mem_config(struct wl1251 *wl)
207 int ret;
209 ret = wl1251_acx_mem_cfg(wl);
210 if (ret < 0)
211 return ret;
213 wl->target_mem_map = kzalloc(sizeof(struct wl1251_acx_mem_map),
214 GFP_KERNEL);
215 if (!wl->target_mem_map) {
216 wl1251_error("couldn't allocate target memory map");
217 return -ENOMEM;
220 /* we now ask for the firmware built memory map */
221 ret = wl1251_acx_mem_map(wl, wl->target_mem_map,
222 sizeof(struct wl1251_acx_mem_map));
223 if (ret < 0) {
224 wl1251_error("couldn't retrieve firmware memory map");
225 kfree(wl->target_mem_map);
226 wl->target_mem_map = NULL;
227 return ret;
230 return 0;
233 static int wl1251_hw_init_txq_fill(u8 qid,
234 struct acx_tx_queue_qos_config *config,
235 u32 num_blocks)
237 config->qid = qid;
239 switch (qid) {
240 case QOS_AC_BE:
241 config->high_threshold =
242 (QOS_TX_HIGH_BE_DEF * num_blocks) / 100;
243 config->low_threshold =
244 (QOS_TX_LOW_BE_DEF * num_blocks) / 100;
245 break;
246 case QOS_AC_BK:
247 config->high_threshold =
248 (QOS_TX_HIGH_BK_DEF * num_blocks) / 100;
249 config->low_threshold =
250 (QOS_TX_LOW_BK_DEF * num_blocks) / 100;
251 break;
252 case QOS_AC_VI:
253 config->high_threshold =
254 (QOS_TX_HIGH_VI_DEF * num_blocks) / 100;
255 config->low_threshold =
256 (QOS_TX_LOW_VI_DEF * num_blocks) / 100;
257 break;
258 case QOS_AC_VO:
259 config->high_threshold =
260 (QOS_TX_HIGH_VO_DEF * num_blocks) / 100;
261 config->low_threshold =
262 (QOS_TX_LOW_VO_DEF * num_blocks) / 100;
263 break;
264 default:
265 wl1251_error("Invalid TX queue id: %d", qid);
266 return -EINVAL;
269 return 0;
272 static int wl1251_hw_init_tx_queue_config(struct wl1251 *wl)
274 struct acx_tx_queue_qos_config *config;
275 struct wl1251_acx_mem_map *wl_mem_map = wl->target_mem_map;
276 int ret, i;
278 wl1251_debug(DEBUG_ACX, "acx tx queue config");
280 config = kzalloc(sizeof(*config), GFP_KERNEL);
281 if (!config) {
282 ret = -ENOMEM;
283 goto out;
286 for (i = 0; i < MAX_NUM_OF_AC; i++) {
287 ret = wl1251_hw_init_txq_fill(i, config,
288 wl_mem_map->num_tx_mem_blocks);
289 if (ret < 0)
290 goto out;
292 ret = wl1251_cmd_configure(wl, ACX_TX_QUEUE_CFG,
293 config, sizeof(*config));
294 if (ret < 0)
295 goto out;
298 wl1251_acx_ac_cfg(wl, AC_BE, CWMIN_BE, CWMAX_BE, AIFS_DIFS, TXOP_BE);
299 wl1251_acx_ac_cfg(wl, AC_BK, CWMIN_BK, CWMAX_BK, AIFS_DIFS, TXOP_BK);
300 wl1251_acx_ac_cfg(wl, AC_VI, CWMIN_VI, CWMAX_VI, AIFS_DIFS, TXOP_VI);
301 wl1251_acx_ac_cfg(wl, AC_VO, CWMIN_VO, CWMAX_VO, AIFS_DIFS, TXOP_VO);
303 out:
304 kfree(config);
305 return ret;
308 static int wl1251_hw_init_data_path_config(struct wl1251 *wl)
310 int ret;
312 /* asking for the data path parameters */
313 wl->data_path = kzalloc(sizeof(struct acx_data_path_params_resp),
314 GFP_KERNEL);
315 if (!wl->data_path) {
316 wl1251_error("Couldnt allocate data path parameters");
317 return -ENOMEM;
320 ret = wl1251_acx_data_path_params(wl, wl->data_path);
321 if (ret < 0) {
322 kfree(wl->data_path);
323 wl->data_path = NULL;
324 return ret;
327 return 0;
331 int wl1251_hw_init(struct wl1251 *wl)
333 struct wl1251_acx_mem_map *wl_mem_map;
334 int ret;
336 ret = wl1251_hw_init_hwenc_config(wl);
337 if (ret < 0)
338 return ret;
340 /* Template settings */
341 ret = wl1251_hw_init_templates_config(wl);
342 if (ret < 0)
343 return ret;
345 /* Default memory configuration */
346 ret = wl1251_hw_init_mem_config(wl);
347 if (ret < 0)
348 return ret;
350 /* Default data path configuration */
351 ret = wl1251_hw_init_data_path_config(wl);
352 if (ret < 0)
353 goto out_free_memmap;
355 /* RX config */
356 ret = wl1251_hw_init_rx_config(wl,
357 RX_CFG_PROMISCUOUS | RX_CFG_TSF,
358 RX_FILTER_OPTION_DEF);
359 /* RX_CONFIG_OPTION_ANY_DST_ANY_BSS,
360 RX_FILTER_OPTION_FILTER_ALL); */
361 if (ret < 0)
362 goto out_free_data_path;
364 /* TX queues config */
365 ret = wl1251_hw_init_tx_queue_config(wl);
366 if (ret < 0)
367 goto out_free_data_path;
369 /* PHY layer config */
370 ret = wl1251_hw_init_phy_config(wl);
371 if (ret < 0)
372 goto out_free_data_path;
374 /* Initialize connection monitoring thresholds */
375 ret = wl1251_acx_conn_monit_params(wl);
376 if (ret < 0)
377 goto out_free_data_path;
379 /* Beacon filtering */
380 ret = wl1251_hw_init_beacon_filter(wl);
381 if (ret < 0)
382 goto out_free_data_path;
384 /* Bluetooth WLAN coexistence */
385 ret = wl1251_hw_init_pta(wl);
386 if (ret < 0)
387 goto out_free_data_path;
389 /* Energy detection */
390 ret = wl1251_hw_init_energy_detection(wl);
391 if (ret < 0)
392 goto out_free_data_path;
394 /* Beacons and boradcast settings */
395 ret = wl1251_hw_init_beacon_broadcast(wl);
396 if (ret < 0)
397 goto out_free_data_path;
399 /* Enable data path */
400 ret = wl1251_cmd_data_path(wl, wl->channel, 1);
401 if (ret < 0)
402 goto out_free_data_path;
404 /* Default power state */
405 ret = wl1251_hw_init_power_auth(wl);
406 if (ret < 0)
407 goto out_free_data_path;
409 wl_mem_map = wl->target_mem_map;
410 wl1251_info("%d tx blocks at 0x%x, %d rx blocks at 0x%x",
411 wl_mem_map->num_tx_mem_blocks,
412 wl->data_path->tx_control_addr,
413 wl_mem_map->num_rx_mem_blocks,
414 wl->data_path->rx_control_addr);
416 return 0;
418 out_free_data_path:
419 kfree(wl->data_path);
421 out_free_memmap:
422 kfree(wl->target_mem_map);
424 return ret;