Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1 | /* |
| 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> |
| 26 | |
| 27 | #include "wl1271_init.h" |
| 28 | #include "wl12xx_80211.h" |
| 29 | #include "wl1271_acx.h" |
| 30 | #include "wl1271_cmd.h" |
| 31 | #include "wl1271_reg.h" |
| 32 | |
| 33 | static int wl1271_init_hwenc_config(struct wl1271 *wl) |
| 34 | { |
| 35 | int ret; |
| 36 | |
| 37 | ret = wl1271_acx_feature_cfg(wl); |
| 38 | if (ret < 0) { |
| 39 | wl1271_warning("couldn't set feature config"); |
| 40 | return ret; |
| 41 | } |
| 42 | |
| 43 | ret = wl1271_cmd_set_default_wep_key(wl, wl->default_key); |
| 44 | if (ret < 0) { |
| 45 | wl1271_warning("couldn't set default key"); |
| 46 | return ret; |
| 47 | } |
| 48 | |
| 49 | return 0; |
| 50 | } |
| 51 | |
| 52 | static int wl1271_init_templates_config(struct wl1271 *wl) |
| 53 | { |
| 54 | int ret; |
| 55 | |
| 56 | /* send empty templates for fw memory reservation */ |
| 57 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4, NULL, |
| 58 | sizeof(struct wl12xx_probe_req_template)); |
| 59 | if (ret < 0) |
| 60 | return ret; |
| 61 | |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 62 | if (wl1271_11a_enabled()) { |
| 63 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5, |
| 64 | NULL, |
| 65 | sizeof(struct wl12xx_probe_req_template)); |
| 66 | if (ret < 0) |
| 67 | return ret; |
| 68 | } |
| 69 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 70 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_NULL_DATA, NULL, |
| 71 | sizeof(struct wl12xx_null_data_template)); |
| 72 | if (ret < 0) |
| 73 | return ret; |
| 74 | |
| 75 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_PS_POLL, NULL, |
| 76 | sizeof(struct wl12xx_ps_poll_template)); |
| 77 | if (ret < 0) |
| 78 | return ret; |
| 79 | |
| 80 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_QOS_NULL_DATA, NULL, |
| 81 | sizeof |
| 82 | (struct wl12xx_qos_null_data_template)); |
| 83 | if (ret < 0) |
| 84 | return ret; |
| 85 | |
| 86 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_PROBE_RESPONSE, NULL, |
| 87 | sizeof |
| 88 | (struct wl12xx_probe_resp_template)); |
| 89 | if (ret < 0) |
| 90 | return ret; |
| 91 | |
| 92 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_BEACON, NULL, |
| 93 | sizeof |
| 94 | (struct wl12xx_beacon_template)); |
| 95 | if (ret < 0) |
| 96 | return ret; |
| 97 | |
| 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | static int wl1271_init_rx_config(struct wl1271 *wl, u32 config, u32 filter) |
| 102 | { |
| 103 | int ret; |
| 104 | |
Juuso Oikarinen | 8793f9b | 2009-10-13 12:47:40 +0300 | [diff] [blame] | 105 | ret = wl1271_acx_rx_msdu_life_time(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 106 | if (ret < 0) |
| 107 | return ret; |
| 108 | |
| 109 | ret = wl1271_acx_rx_config(wl, config, filter); |
| 110 | if (ret < 0) |
| 111 | return ret; |
| 112 | |
| 113 | return 0; |
| 114 | } |
| 115 | |
| 116 | static int wl1271_init_phy_config(struct wl1271 *wl) |
| 117 | { |
| 118 | int ret; |
| 119 | |
| 120 | ret = wl1271_acx_pd_threshold(wl); |
| 121 | if (ret < 0) |
| 122 | return ret; |
| 123 | |
| 124 | ret = wl1271_acx_slot(wl, DEFAULT_SLOT_TIME); |
| 125 | if (ret < 0) |
| 126 | return ret; |
| 127 | |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 128 | ret = wl1271_acx_group_address_tbl(wl, true, NULL, 0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 129 | if (ret < 0) |
| 130 | return ret; |
| 131 | |
| 132 | ret = wl1271_acx_service_period_timeout(wl); |
| 133 | if (ret < 0) |
| 134 | return ret; |
| 135 | |
Juuso Oikarinen | 8793f9b | 2009-10-13 12:47:40 +0300 | [diff] [blame] | 136 | ret = wl1271_acx_rts_threshold(wl, wl->conf.rx.rts_threshold); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 137 | if (ret < 0) |
| 138 | return ret; |
| 139 | |
| 140 | return 0; |
| 141 | } |
| 142 | |
| 143 | static int wl1271_init_beacon_filter(struct wl1271 *wl) |
| 144 | { |
| 145 | int ret; |
| 146 | |
Juuso Oikarinen | 1922167 | 2009-10-08 21:56:35 +0300 | [diff] [blame] | 147 | /* disable beacon filtering at this stage */ |
| 148 | ret = wl1271_acx_beacon_filter_opt(wl, false); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 149 | if (ret < 0) |
| 150 | return ret; |
| 151 | |
| 152 | ret = wl1271_acx_beacon_filter_table(wl); |
| 153 | if (ret < 0) |
| 154 | return ret; |
| 155 | |
| 156 | return 0; |
| 157 | } |
| 158 | |
| 159 | static int wl1271_init_pta(struct wl1271 *wl) |
| 160 | { |
| 161 | int ret; |
| 162 | |
| 163 | ret = wl1271_acx_sg_enable(wl); |
| 164 | if (ret < 0) |
| 165 | return ret; |
| 166 | |
| 167 | ret = wl1271_acx_sg_cfg(wl); |
| 168 | if (ret < 0) |
| 169 | return ret; |
| 170 | |
| 171 | return 0; |
| 172 | } |
| 173 | |
| 174 | static int wl1271_init_energy_detection(struct wl1271 *wl) |
| 175 | { |
| 176 | int ret; |
| 177 | |
| 178 | ret = wl1271_acx_cca_threshold(wl); |
| 179 | if (ret < 0) |
| 180 | return ret; |
| 181 | |
| 182 | return 0; |
| 183 | } |
| 184 | |
| 185 | static int wl1271_init_beacon_broadcast(struct wl1271 *wl) |
| 186 | { |
| 187 | int ret; |
| 188 | |
| 189 | ret = wl1271_acx_bcn_dtim_options(wl); |
| 190 | if (ret < 0) |
| 191 | return ret; |
| 192 | |
| 193 | return 0; |
| 194 | } |
| 195 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 196 | int wl1271_hw_init(struct wl1271 *wl) |
| 197 | { |
Kalle Valo | 243eeb5 | 2010-02-18 13:25:39 +0200 | [diff] [blame] | 198 | struct conf_tx_ac_category *conf_ac; |
Kalle Valo | f2054df | 2010-02-18 13:25:40 +0200 | [diff] [blame^] | 199 | struct conf_tx_tid *conf_tid; |
Kalle Valo | 243eeb5 | 2010-02-18 13:25:39 +0200 | [diff] [blame] | 200 | int ret, i; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 201 | |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 202 | ret = wl1271_cmd_general_parms(wl); |
Luciano Coelho | 4a90406 | 2009-11-23 23:22:18 +0200 | [diff] [blame] | 203 | if (ret < 0) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 204 | return ret; |
| 205 | |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 206 | ret = wl1271_cmd_radio_parms(wl); |
Luciano Coelho | 4a90406 | 2009-11-23 23:22:18 +0200 | [diff] [blame] | 207 | if (ret < 0) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 208 | return ret; |
| 209 | |
| 210 | /* Template settings */ |
| 211 | ret = wl1271_init_templates_config(wl); |
| 212 | if (ret < 0) |
| 213 | return ret; |
| 214 | |
| 215 | /* Default memory configuration */ |
| 216 | ret = wl1271_acx_init_mem_config(wl); |
| 217 | if (ret < 0) |
| 218 | return ret; |
| 219 | |
| 220 | /* RX config */ |
| 221 | ret = wl1271_init_rx_config(wl, |
Juuso Oikarinen | eb5b28d | 2009-10-13 12:47:45 +0300 | [diff] [blame] | 222 | RX_CFG_PROMISCUOUS | RX_CFG_TSF, |
| 223 | RX_FILTER_OPTION_DEF); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 224 | /* RX_CONFIG_OPTION_ANY_DST_ANY_BSS, |
| 225 | RX_FILTER_OPTION_FILTER_ALL); */ |
| 226 | if (ret < 0) |
| 227 | goto out_free_memmap; |
| 228 | |
| 229 | /* PHY layer config */ |
| 230 | ret = wl1271_init_phy_config(wl); |
| 231 | if (ret < 0) |
| 232 | goto out_free_memmap; |
| 233 | |
Luciano Coelho | 6e92b41 | 2009-12-11 15:40:50 +0200 | [diff] [blame] | 234 | ret = wl1271_acx_dco_itrim_params(wl); |
| 235 | if (ret < 0) |
| 236 | goto out_free_memmap; |
| 237 | |
Juuso Oikarinen | 3441523 | 2009-10-08 21:56:33 +0300 | [diff] [blame] | 238 | /* Initialize connection monitoring thresholds */ |
| 239 | ret = wl1271_acx_conn_monit_params(wl); |
| 240 | if (ret < 0) |
| 241 | goto out_free_memmap; |
| 242 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 243 | /* Beacon filtering */ |
| 244 | ret = wl1271_init_beacon_filter(wl); |
| 245 | if (ret < 0) |
| 246 | goto out_free_memmap; |
| 247 | |
| 248 | /* Configure TX patch complete interrupt behavior */ |
| 249 | ret = wl1271_acx_tx_config_options(wl); |
| 250 | if (ret < 0) |
| 251 | goto out_free_memmap; |
| 252 | |
| 253 | /* RX complete interrupt pacing */ |
| 254 | ret = wl1271_acx_init_rx_interrupt(wl); |
| 255 | if (ret < 0) |
| 256 | goto out_free_memmap; |
| 257 | |
| 258 | /* Bluetooth WLAN coexistence */ |
| 259 | ret = wl1271_init_pta(wl); |
| 260 | if (ret < 0) |
| 261 | goto out_free_memmap; |
| 262 | |
| 263 | /* Energy detection */ |
| 264 | ret = wl1271_init_energy_detection(wl); |
| 265 | if (ret < 0) |
| 266 | goto out_free_memmap; |
| 267 | |
| 268 | /* Beacons and boradcast settings */ |
| 269 | ret = wl1271_init_beacon_broadcast(wl); |
| 270 | if (ret < 0) |
| 271 | goto out_free_memmap; |
| 272 | |
| 273 | /* Default fragmentation threshold */ |
| 274 | ret = wl1271_acx_frag_threshold(wl); |
| 275 | if (ret < 0) |
| 276 | goto out_free_memmap; |
| 277 | |
| 278 | /* Default TID configuration */ |
Kalle Valo | f2054df | 2010-02-18 13:25:40 +0200 | [diff] [blame^] | 279 | for (i = 0; i < wl->conf.tx.tid_conf_count; i++) { |
| 280 | conf_tid = &wl->conf.tx.tid_conf[i]; |
| 281 | ret = wl1271_acx_tid_cfg(wl, conf_tid->queue_id, |
| 282 | conf_tid->channel_type, |
| 283 | conf_tid->tsid, |
| 284 | conf_tid->ps_scheme, |
| 285 | conf_tid->ack_policy, |
| 286 | conf_tid->apsd_conf[0], |
| 287 | conf_tid->apsd_conf[1]); |
| 288 | if (ret < 0) |
| 289 | goto out_free_memmap; |
| 290 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 291 | |
| 292 | /* Default AC configuration */ |
Kalle Valo | 243eeb5 | 2010-02-18 13:25:39 +0200 | [diff] [blame] | 293 | for (i = 0; i < wl->conf.tx.ac_conf_count; i++) { |
| 294 | conf_ac = &wl->conf.tx.ac_conf[i]; |
| 295 | ret = wl1271_acx_ac_cfg(wl, conf_ac->ac, conf_ac->cw_min, |
| 296 | conf_ac->cw_max, conf_ac->aifsn, |
| 297 | conf_ac->tx_op_limit); |
| 298 | if (ret < 0) |
| 299 | goto out_free_memmap; |
| 300 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 301 | |
| 302 | /* Configure TX rate classes */ |
Juuso Oikarinen | 830fb67 | 2009-12-11 15:41:06 +0200 | [diff] [blame] | 303 | ret = wl1271_acx_rate_policies(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 304 | if (ret < 0) |
| 305 | goto out_free_memmap; |
| 306 | |
| 307 | /* Enable data path */ |
Luciano Coelho | 9421089 | 2009-12-11 15:40:55 +0200 | [diff] [blame] | 308 | ret = wl1271_cmd_data_path(wl, 1); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 309 | if (ret < 0) |
| 310 | goto out_free_memmap; |
| 311 | |
| 312 | /* Configure for ELP power saving */ |
| 313 | ret = wl1271_acx_sleep_auth(wl, WL1271_PSM_ELP); |
| 314 | if (ret < 0) |
| 315 | goto out_free_memmap; |
| 316 | |
| 317 | /* Configure HW encryption */ |
| 318 | ret = wl1271_init_hwenc_config(wl); |
| 319 | if (ret < 0) |
| 320 | goto out_free_memmap; |
| 321 | |
Juuso Oikarinen | 38ad2d8 | 2009-12-11 15:41:08 +0200 | [diff] [blame] | 322 | /* configure PM */ |
| 323 | ret = wl1271_acx_pm_config(wl); |
| 324 | if (ret < 0) |
| 325 | goto out_free_memmap; |
| 326 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 327 | return 0; |
| 328 | |
| 329 | out_free_memmap: |
| 330 | kfree(wl->target_mem_map); |
Juuso Oikarinen | 3441523 | 2009-10-08 21:56:33 +0300 | [diff] [blame] | 331 | wl->target_mem_map = NULL; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 332 | |
| 333 | return ret; |
| 334 | } |