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
24 #include <linux/kernel.h>
25 #include <linux/module.h>
27 #include "wl1251_init.h"
28 #include "wl12xx_80211.h"
29 #include "wl1251_acx.h"
30 #include "wl1251_cmd.h"
31 #include "wl1251_reg.h"
33 int wl1251_hw_init_hwenc_config(struct wl1251
*wl
)
37 ret
= wl1251_acx_feature_cfg(wl
);
39 wl1251_warning("couldn't set feature config");
43 ret
= wl1251_acx_default_key(wl
, wl
->default_key
);
45 wl1251_warning("couldn't set default key");
52 int wl1251_hw_init_templates_config(struct wl1251
*wl
)
55 u8 partial_vbm
[PARTIAL_VBM_MAX
];
57 /* send empty templates for fw memory reservation */
58 ret
= wl1251_cmd_template_set(wl
, CMD_PROBE_REQ
, NULL
,
59 sizeof(struct wl12xx_probe_req_template
));
63 ret
= wl1251_cmd_template_set(wl
, CMD_NULL_DATA
, NULL
,
64 sizeof(struct wl12xx_null_data_template
));
68 ret
= wl1251_cmd_template_set(wl
, CMD_PS_POLL
, NULL
,
69 sizeof(struct wl12xx_ps_poll_template
));
73 ret
= wl1251_cmd_template_set(wl
, CMD_QOS_NULL_DATA
, NULL
,
75 (struct wl12xx_qos_null_data_template
));
79 ret
= wl1251_cmd_template_set(wl
, CMD_PROBE_RESP
, NULL
,
81 (struct wl12xx_probe_resp_template
));
85 ret
= wl1251_cmd_template_set(wl
, CMD_BEACON
, NULL
,
87 (struct wl12xx_beacon_template
));
91 /* tim templates, first reserve space then allocate an empty one */
92 memset(partial_vbm
, 0, PARTIAL_VBM_MAX
);
93 ret
= wl1251_cmd_vbm(wl
, TIM_ELE_ID
, partial_vbm
, PARTIAL_VBM_MAX
, 0);
97 ret
= wl1251_cmd_vbm(wl
, TIM_ELE_ID
, partial_vbm
, 1, 0);
104 int wl1251_hw_init_rx_config(struct wl1251
*wl
, u32 config
, u32 filter
)
108 ret
= wl1251_acx_rx_msdu_life_time(wl
, RX_MSDU_LIFETIME_DEF
);
112 ret
= wl1251_acx_rx_config(wl
, config
, filter
);
119 int wl1251_hw_init_phy_config(struct wl1251
*wl
)
123 ret
= wl1251_acx_pd_threshold(wl
);
127 ret
= wl1251_acx_slot(wl
, DEFAULT_SLOT_TIME
);
131 ret
= wl1251_acx_group_address_tbl(wl
);
135 ret
= wl1251_acx_service_period_timeout(wl
);
139 ret
= wl1251_acx_rts_threshold(wl
, RTS_THRESHOLD_DEF
);
146 int wl1251_hw_init_beacon_filter(struct wl1251
*wl
)
150 ret
= wl1251_acx_beacon_filter_opt(wl
);
154 ret
= wl1251_acx_beacon_filter_table(wl
);
161 int wl1251_hw_init_pta(struct wl1251
*wl
)
165 ret
= wl1251_acx_sg_enable(wl
);
169 ret
= wl1251_acx_sg_cfg(wl
);
176 int wl1251_hw_init_energy_detection(struct wl1251
*wl
)
180 ret
= wl1251_acx_cca_threshold(wl
);
187 int wl1251_hw_init_beacon_broadcast(struct wl1251
*wl
)
191 ret
= wl1251_acx_bcn_dtim_options(wl
);
198 int wl1251_hw_init_power_auth(struct wl1251
*wl
)
200 return wl1251_acx_sleep_auth(wl
, WL1251_PSM_CAM
);
203 int wl1251_hw_init_mem_config(struct wl1251
*wl
)
207 ret
= wl1251_acx_mem_cfg(wl
);
211 wl
->target_mem_map
= kzalloc(sizeof(struct wl1251_acx_mem_map
),
213 if (!wl
->target_mem_map
) {
214 wl1251_error("couldn't allocate target memory map");
218 /* we now ask for the firmware built memory map */
219 ret
= wl1251_acx_mem_map(wl
, wl
->target_mem_map
,
220 sizeof(struct wl1251_acx_mem_map
));
222 wl1251_error("couldn't retrieve firmware memory map");
223 kfree(wl
->target_mem_map
);
224 wl
->target_mem_map
= NULL
;
231 static int wl1251_hw_init_txq_fill(u8 qid
,
232 struct acx_tx_queue_qos_config
*config
,
239 config
->high_threshold
=
240 (QOS_TX_HIGH_BE_DEF
* num_blocks
) / 100;
241 config
->low_threshold
=
242 (QOS_TX_LOW_BE_DEF
* num_blocks
) / 100;
245 config
->high_threshold
=
246 (QOS_TX_HIGH_BK_DEF
* num_blocks
) / 100;
247 config
->low_threshold
=
248 (QOS_TX_LOW_BK_DEF
* num_blocks
) / 100;
251 config
->high_threshold
=
252 (QOS_TX_HIGH_VI_DEF
* num_blocks
) / 100;
253 config
->low_threshold
=
254 (QOS_TX_LOW_VI_DEF
* num_blocks
) / 100;
257 config
->high_threshold
=
258 (QOS_TX_HIGH_VO_DEF
* num_blocks
) / 100;
259 config
->low_threshold
=
260 (QOS_TX_LOW_VO_DEF
* num_blocks
) / 100;
263 wl1251_error("Invalid TX queue id: %d", qid
);
270 static int wl1251_hw_init_tx_queue_config(struct wl1251
*wl
)
272 struct acx_tx_queue_qos_config
*config
;
273 struct wl1251_acx_mem_map
*wl_mem_map
= wl
->target_mem_map
;
276 wl1251_debug(DEBUG_ACX
, "acx tx queue config");
278 config
= kzalloc(sizeof(*config
), GFP_KERNEL
);
284 for (i
= 0; i
< MAX_NUM_OF_AC
; i
++) {
285 ret
= wl1251_hw_init_txq_fill(i
, config
,
286 wl_mem_map
->num_tx_mem_blocks
);
290 ret
= wl1251_cmd_configure(wl
, ACX_TX_QUEUE_CFG
,
291 config
, sizeof(*config
));
301 static int wl1251_hw_init_data_path_config(struct wl1251
*wl
)
305 /* asking for the data path parameters */
306 wl
->data_path
= kzalloc(sizeof(struct acx_data_path_params_resp
),
308 if (!wl
->data_path
) {
309 wl1251_error("Couldnt allocate data path parameters");
313 ret
= wl1251_acx_data_path_params(wl
, wl
->data_path
);
315 kfree(wl
->data_path
);
316 wl
->data_path
= NULL
;
324 int wl1251_hw_init(struct wl1251
*wl
)
326 struct wl1251_acx_mem_map
*wl_mem_map
;
329 ret
= wl1251_hw_init_hwenc_config(wl
);
333 /* Template settings */
334 ret
= wl1251_hw_init_templates_config(wl
);
338 /* Default memory configuration */
339 ret
= wl1251_hw_init_mem_config(wl
);
343 /* Default data path configuration */
344 ret
= wl1251_hw_init_data_path_config(wl
);
346 goto out_free_memmap
;
349 ret
= wl1251_hw_init_rx_config(wl
,
350 RX_CFG_PROMISCUOUS
| RX_CFG_TSF
,
351 RX_FILTER_OPTION_DEF
);
352 /* RX_CONFIG_OPTION_ANY_DST_ANY_BSS,
353 RX_FILTER_OPTION_FILTER_ALL); */
355 goto out_free_data_path
;
357 /* TX queues config */
358 ret
= wl1251_hw_init_tx_queue_config(wl
);
360 goto out_free_data_path
;
362 /* PHY layer config */
363 ret
= wl1251_hw_init_phy_config(wl
);
365 goto out_free_data_path
;
367 /* Beacon filtering */
368 ret
= wl1251_hw_init_beacon_filter(wl
);
370 goto out_free_data_path
;
372 /* Bluetooth WLAN coexistence */
373 ret
= wl1251_hw_init_pta(wl
);
375 goto out_free_data_path
;
377 /* Energy detection */
378 ret
= wl1251_hw_init_energy_detection(wl
);
380 goto out_free_data_path
;
382 /* Beacons and boradcast settings */
383 ret
= wl1251_hw_init_beacon_broadcast(wl
);
385 goto out_free_data_path
;
387 /* Enable data path */
388 ret
= wl1251_cmd_data_path(wl
, wl
->channel
, 1);
390 goto out_free_data_path
;
392 /* Default power state */
393 ret
= wl1251_hw_init_power_auth(wl
);
395 goto out_free_data_path
;
397 wl_mem_map
= wl
->target_mem_map
;
398 wl1251_info("%d tx blocks at 0x%x, %d rx blocks at 0x%x",
399 wl_mem_map
->num_tx_mem_blocks
,
400 wl
->data_path
->tx_control_addr
,
401 wl_mem_map
->num_rx_mem_blocks
,
402 wl
->data_path
->rx_control_addr
);
407 kfree(wl
->data_path
);
410 kfree(wl
->target_mem_map
);