wl1251: use wl1251 prefix everywhere
[linux-2.6/mini2440.git] / drivers / net / wireless / wl12xx / wl1251_init.c
blobdf6c60f0fd660426abb85fd7b3c626472238c66a
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>
27 #include "wl1251_init.h"
28 #include "wl12xx_80211.h"
29 #include "wl1251_acx.h"
30 #include "wl1251_cmd.h"
32 int wl1251_hw_init_hwenc_config(struct wl1251 *wl)
34 int ret;
36 ret = wl1251_acx_feature_cfg(wl);
37 if (ret < 0) {
38 wl1251_warning("couldn't set feature config");
39 return ret;
42 ret = wl1251_acx_default_key(wl, wl->default_key);
43 if (ret < 0) {
44 wl1251_warning("couldn't set default key");
45 return ret;
48 return 0;
51 int wl1251_hw_init_templates_config(struct wl1251 *wl)
53 int ret;
54 u8 partial_vbm[PARTIAL_VBM_MAX];
56 /* send empty templates for fw memory reservation */
57 ret = wl1251_cmd_template_set(wl, CMD_PROBE_REQ, NULL,
58 sizeof(struct wl12xx_probe_req_template));
59 if (ret < 0)
60 return ret;
62 ret = wl1251_cmd_template_set(wl, CMD_NULL_DATA, NULL,
63 sizeof(struct wl12xx_null_data_template));
64 if (ret < 0)
65 return ret;
67 ret = wl1251_cmd_template_set(wl, CMD_PS_POLL, NULL,
68 sizeof(struct wl12xx_ps_poll_template));
69 if (ret < 0)
70 return ret;
72 ret = wl1251_cmd_template_set(wl, CMD_QOS_NULL_DATA, NULL,
73 sizeof
74 (struct wl12xx_qos_null_data_template));
75 if (ret < 0)
76 return ret;
78 ret = wl1251_cmd_template_set(wl, CMD_PROBE_RESP, NULL,
79 sizeof
80 (struct wl12xx_probe_resp_template));
81 if (ret < 0)
82 return ret;
84 ret = wl1251_cmd_template_set(wl, CMD_BEACON, NULL,
85 sizeof
86 (struct wl12xx_beacon_template));
87 if (ret < 0)
88 return ret;
90 /* tim templates, first reserve space then allocate an empty one */
91 memset(partial_vbm, 0, PARTIAL_VBM_MAX);
92 ret = wl1251_cmd_vbm(wl, TIM_ELE_ID, partial_vbm, PARTIAL_VBM_MAX, 0);
93 if (ret < 0)
94 return ret;
96 ret = wl1251_cmd_vbm(wl, TIM_ELE_ID, partial_vbm, 1, 0);
97 if (ret < 0)
98 return ret;
100 return 0;
103 int wl1251_hw_init_rx_config(struct wl1251 *wl, u32 config, u32 filter)
105 int ret;
107 ret = wl1251_acx_rx_msdu_life_time(wl, RX_MSDU_LIFETIME_DEF);
108 if (ret < 0)
109 return ret;
111 ret = wl1251_acx_rx_config(wl, config, filter);
112 if (ret < 0)
113 return ret;
115 return 0;
118 int wl1251_hw_init_phy_config(struct wl1251 *wl)
120 int ret;
122 ret = wl1251_acx_pd_threshold(wl);
123 if (ret < 0)
124 return ret;
126 ret = wl1251_acx_slot(wl, DEFAULT_SLOT_TIME);
127 if (ret < 0)
128 return ret;
130 ret = wl1251_acx_group_address_tbl(wl);
131 if (ret < 0)
132 return ret;
134 ret = wl1251_acx_service_period_timeout(wl);
135 if (ret < 0)
136 return ret;
138 ret = wl1251_acx_rts_threshold(wl, RTS_THRESHOLD_DEF);
139 if (ret < 0)
140 return ret;
142 return 0;
145 int wl1251_hw_init_beacon_filter(struct wl1251 *wl)
147 int ret;
149 ret = wl1251_acx_beacon_filter_opt(wl);
150 if (ret < 0)
151 return ret;
153 ret = wl1251_acx_beacon_filter_table(wl);
154 if (ret < 0)
155 return ret;
157 return 0;
160 int wl1251_hw_init_pta(struct wl1251 *wl)
162 int ret;
164 ret = wl1251_acx_sg_enable(wl);
165 if (ret < 0)
166 return ret;
168 ret = wl1251_acx_sg_cfg(wl);
169 if (ret < 0)
170 return ret;
172 return 0;
175 int wl1251_hw_init_energy_detection(struct wl1251 *wl)
177 int ret;
179 ret = wl1251_acx_cca_threshold(wl);
180 if (ret < 0)
181 return ret;
183 return 0;
186 int wl1251_hw_init_beacon_broadcast(struct wl1251 *wl)
188 int ret;
190 ret = wl1251_acx_bcn_dtim_options(wl);
191 if (ret < 0)
192 return ret;
194 return 0;
197 int wl1251_hw_init_power_auth(struct wl1251 *wl)
199 return wl1251_acx_sleep_auth(wl, WL1251_PSM_CAM);