blob: 851dfb65e474eb80a916a802a42b5e0d38b42a20 [file] [log] [blame]
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001/*
Kalle Valo80301cd2009-06-12 14:17:39 +03002 * This file is part of wl1251
Kalle Valo2f01a1f2009-04-29 23:33:31 +03003 *
4 * Copyright (C) 2008 Nokia Corporation
5 *
6 * Contact: Kalle Valo <kalle.valo@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
Kalle Valo29d904c2009-08-07 13:35:11 +030024#include "wl1251_reg.h"
Kalle Valoef2f8d42009-06-12 14:17:19 +030025#include "wl1251_ps.h"
Bob Copeland0764de62009-08-07 13:32:56 +030026#include "wl1251_cmd.h"
27#include "wl1251_io.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +030028
Kalle Valob5a16792009-11-30 10:17:59 +020029/* in ms */
30#define WL1251_WAKEUP_TIMEOUT 100
Kalle Valo2f01a1f2009-04-29 23:33:31 +030031
Juuso Oikarinend5da79a2009-11-17 18:48:37 +020032void wl1251_elp_work(struct work_struct *work)
33{
34 struct delayed_work *dwork;
35 struct wl1251 *wl;
36
37 dwork = container_of(work, struct delayed_work, work);
38 wl = container_of(dwork, struct wl1251, elp_work);
39
40 wl1251_debug(DEBUG_PSM, "elp work");
41
42 mutex_lock(&wl->mutex);
43
44 if (wl->elp || !wl->psm)
45 goto out;
46
47 wl1251_debug(DEBUG_PSM, "chip to elp");
48 wl1251_write32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, ELPCTRL_SLEEP);
49 wl->elp = true;
50
51out:
52 mutex_unlock(&wl->mutex);
53}
54
55#define ELP_ENTRY_DELAY 5
56
Kalle Valo2f01a1f2009-04-29 23:33:31 +030057/* Routines to toggle sleep mode while in ELP */
Kalle Valo80301cd2009-06-12 14:17:39 +030058void wl1251_ps_elp_sleep(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030059{
Juuso Oikarinend5da79a2009-11-17 18:48:37 +020060 unsigned long delay;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030061
Juuso Oikarinend5da79a2009-11-17 18:48:37 +020062 if (wl->psm) {
63 cancel_delayed_work(&wl->elp_work);
64 delay = msecs_to_jiffies(ELP_ENTRY_DELAY);
65 ieee80211_queue_delayed_work(wl->hw, &wl->elp_work, delay);
66 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +030067}
68
Kalle Valo80301cd2009-06-12 14:17:39 +030069int wl1251_ps_elp_wakeup(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030070{
Kalle Valo7fa62822009-11-30 10:18:06 +020071 unsigned long timeout, start;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030072 u32 elp_reg;
73
74 if (!wl->elp)
75 return 0;
76
Kalle Valo80301cd2009-06-12 14:17:39 +030077 wl1251_debug(DEBUG_PSM, "waking up chip from elp");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030078
Kalle Valo7fa62822009-11-30 10:18:06 +020079 start = jiffies;
Kalle Valo80301cd2009-06-12 14:17:39 +030080 timeout = jiffies + msecs_to_jiffies(WL1251_WAKEUP_TIMEOUT);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030081
Kalle Valo80301cd2009-06-12 14:17:39 +030082 wl1251_write32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, ELPCTRL_WAKE_UP);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030083
Kalle Valo80301cd2009-06-12 14:17:39 +030084 elp_reg = wl1251_read32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030085
86 /*
87 * FIXME: we should wait for irq from chip but, as a temporary
88 * solution to simplify locking, let's poll instead
89 */
90 while (!(elp_reg & ELPCTRL_WLAN_READY)) {
91 if (time_after(jiffies, timeout)) {
Kalle Valo80301cd2009-06-12 14:17:39 +030092 wl1251_error("elp wakeup timeout");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030093 return -ETIMEDOUT;
94 }
95 msleep(1);
Kalle Valo80301cd2009-06-12 14:17:39 +030096 elp_reg = wl1251_read32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030097 }
98
Kalle Valo80301cd2009-06-12 14:17:39 +030099 wl1251_debug(DEBUG_PSM, "wakeup time: %u ms",
Kalle Valo7fa62822009-11-30 10:18:06 +0200100 jiffies_to_msecs(jiffies - start));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300101
102 wl->elp = false;
103
104 return 0;
105}
106
Kalle Valo80301cd2009-06-12 14:17:39 +0300107static int wl1251_ps_set_elp(struct wl1251 *wl, bool enable)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300108{
109 int ret;
110
111 if (enable) {
Kalle Valo80301cd2009-06-12 14:17:39 +0300112 wl1251_debug(DEBUG_PSM, "sleep auth psm/elp");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300113
Kalle Valo80301cd2009-06-12 14:17:39 +0300114 ret = wl1251_acx_sleep_auth(wl, WL1251_PSM_ELP);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300115 if (ret < 0)
116 return ret;
117
Kalle Valo80301cd2009-06-12 14:17:39 +0300118 wl1251_ps_elp_sleep(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300119 } else {
Kalle Valo80301cd2009-06-12 14:17:39 +0300120 wl1251_debug(DEBUG_PSM, "sleep auth cam");
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300121
122 /*
123 * When the target is in ELP, we can only
124 * access the ELP control register. Thus,
125 * we have to wake the target up before
126 * changing the power authorization.
127 */
128
Kalle Valo80301cd2009-06-12 14:17:39 +0300129 wl1251_ps_elp_wakeup(wl);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300130
Kalle Valo80301cd2009-06-12 14:17:39 +0300131 ret = wl1251_acx_sleep_auth(wl, WL1251_PSM_CAM);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300132 if (ret < 0)
133 return ret;
134 }
135
136 return 0;
137}
138
Kalle Valo80301cd2009-06-12 14:17:39 +0300139int wl1251_ps_set_mode(struct wl1251 *wl, enum wl1251_cmd_ps_mode mode)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300140{
141 int ret;
142
143 switch (mode) {
144 case STATION_POWER_SAVE_MODE:
Kalle Valo80301cd2009-06-12 14:17:39 +0300145 wl1251_debug(DEBUG_PSM, "entering psm");
Kalle Valo4a818922009-08-07 13:34:56 +0300146
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200147 /* enable beacon filtering */
148 ret = wl1251_acx_beacon_filter_opt(wl, true);
149 if (ret < 0)
150 return ret;
151
Kalle Valo4a818922009-08-07 13:34:56 +0300152 ret = wl1251_acx_wake_up_conditions(wl,
153 WAKE_UP_EVENT_DTIM_BITMAP,
154 wl->listen_int);
155 if (ret < 0)
156 return ret;
157
Kalle Valo80301cd2009-06-12 14:17:39 +0300158 ret = wl1251_cmd_ps_mode(wl, STATION_POWER_SAVE_MODE);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300159 if (ret < 0)
160 return ret;
161
Kalle Valo80301cd2009-06-12 14:17:39 +0300162 ret = wl1251_ps_set_elp(wl, true);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300163 if (ret < 0)
164 return ret;
165
166 wl->psm = 1;
167 break;
168 case STATION_ACTIVE_MODE:
169 default:
Kalle Valo80301cd2009-06-12 14:17:39 +0300170 wl1251_debug(DEBUG_PSM, "leaving psm");
171 ret = wl1251_ps_set_elp(wl, false);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300172 if (ret < 0)
173 return ret;
174
Juuso Oikarinen6b21a2c2009-11-17 18:48:30 +0200175 /* disable beacon filtering */
176 ret = wl1251_acx_beacon_filter_opt(wl, false);
177 if (ret < 0)
178 return ret;
179
Kalle Valo4a818922009-08-07 13:34:56 +0300180 ret = wl1251_acx_wake_up_conditions(wl,
181 WAKE_UP_EVENT_DTIM_BITMAP,
182 wl->listen_int);
183 if (ret < 0)
184 return ret;
185
Kalle Valo80301cd2009-06-12 14:17:39 +0300186 ret = wl1251_cmd_ps_mode(wl, STATION_ACTIVE_MODE);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300187 if (ret < 0)
188 return ret;
189
190 wl->psm = 0;
191 break;
192 }
193
194 return ret;
195}
196