| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  |  * This file is part of wl1251 | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2008 Nokia Corporation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Contact: Kalle Valo <kalle.valo@nokia.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  |  * version 2 as published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, but | 
					
						
							|  |  |  |  * WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | 
					
						
							|  |  |  |  * 02110-1301 USA | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:35:11 +03:00
										 |  |  | #include "wl1251_reg.h"
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:19 +03:00
										 |  |  | #include "wl1251_ps.h"
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:32:56 +03:00
										 |  |  | #include "wl1251_cmd.h"
 | 
					
						
							|  |  |  | #include "wl1251_io.h"
 | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-30 10:17:59 +02:00
										 |  |  | /* in ms */ | 
					
						
							|  |  |  | #define WL1251_WAKEUP_TIMEOUT 100
 | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-17 18:48:37 +02:00
										 |  |  | void wl1251_elp_work(struct work_struct *work) | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-17 18:48:37 +02:00
										 |  |  | 	struct delayed_work *dwork; | 
					
						
							|  |  |  | 	struct wl1251 *wl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dwork = container_of(work, struct delayed_work, work); | 
					
						
							|  |  |  | 	wl = container_of(dwork, struct wl1251, elp_work); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wl1251_debug(DEBUG_PSM, "elp work"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_lock(&wl->mutex); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 	if (wl->elp || !wl->psm) | 
					
						
							| 
									
										
										
										
											2009-11-17 18:48:37 +02:00
										 |  |  | 		goto out; | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 	wl1251_debug(DEBUG_PSM, "chip to elp"); | 
					
						
							| 
									
										
										
										
											2010-03-11 17:44:57 +02:00
										 |  |  | 	wl1251_write_elp(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, ELPCTRL_SLEEP); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 	wl->elp = true; | 
					
						
							| 
									
										
										
										
											2009-11-17 18:48:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	mutex_unlock(&wl->mutex); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ELP_ENTRY_DELAY  5
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Routines to toggle sleep mode while in ELP */ | 
					
						
							|  |  |  | void wl1251_ps_elp_sleep(struct wl1251 *wl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long delay; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (wl->psm) { | 
					
						
							|  |  |  | 		cancel_delayed_work(&wl->elp_work); | 
					
						
							|  |  |  | 		delay = msecs_to_jiffies(ELP_ENTRY_DELAY); | 
					
						
							|  |  |  | 		ieee80211_queue_delayed_work(wl->hw, &wl->elp_work, delay); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | int wl1251_ps_elp_wakeup(struct wl1251 *wl) | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-30 10:18:06 +02:00
										 |  |  | 	unsigned long timeout, start; | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 	u32 elp_reg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!wl->elp) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 	wl1251_debug(DEBUG_PSM, "waking up chip from elp"); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-30 10:18:06 +02:00
										 |  |  | 	start = jiffies; | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 	timeout = jiffies + msecs_to_jiffies(WL1251_WAKEUP_TIMEOUT); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-11 17:44:57 +02:00
										 |  |  | 	wl1251_write_elp(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, ELPCTRL_WAKE_UP); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-11 17:44:57 +02:00
										 |  |  | 	elp_reg = wl1251_read_elp(wl, HW_ACCESS_ELP_CTRL_REG_ADDR); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * FIXME: we should wait for irq from chip but, as a temporary | 
					
						
							|  |  |  | 	 * solution to simplify locking, let's poll instead | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	while (!(elp_reg & ELPCTRL_WLAN_READY)) { | 
					
						
							|  |  |  | 		if (time_after(jiffies, timeout)) { | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 			wl1251_error("elp wakeup timeout"); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 			return -ETIMEDOUT; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		msleep(1); | 
					
						
							| 
									
										
										
										
											2010-03-11 17:44:57 +02:00
										 |  |  | 		elp_reg = wl1251_read_elp(wl, HW_ACCESS_ELP_CTRL_REG_ADDR); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 	wl1251_debug(DEBUG_PSM, "wakeup time: %u ms", | 
					
						
							| 
									
										
										
										
											2009-11-30 10:18:06 +02:00
										 |  |  | 		     jiffies_to_msecs(jiffies - start)); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wl->elp = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | static int wl1251_ps_set_elp(struct wl1251 *wl, bool enable) | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (enable) { | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		wl1251_debug(DEBUG_PSM, "sleep auth psm/elp"); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		ret = wl1251_acx_sleep_auth(wl, WL1251_PSM_ELP); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		wl1251_ps_elp_sleep(wl); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		wl1251_debug(DEBUG_PSM, "sleep auth cam"); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * When the target is in ELP, we can only | 
					
						
							|  |  |  | 		 * access the ELP control register. Thus, | 
					
						
							|  |  |  | 		 * we have to wake the target up before | 
					
						
							|  |  |  | 		 * changing the power authorization. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		wl1251_ps_elp_wakeup(wl); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		ret = wl1251_acx_sleep_auth(wl, WL1251_PSM_CAM); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | int wl1251_ps_set_mode(struct wl1251 *wl, enum wl1251_cmd_ps_mode mode) | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (mode) { | 
					
						
							|  |  |  | 	case STATION_POWER_SAVE_MODE: | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		wl1251_debug(DEBUG_PSM, "entering psm"); | 
					
						
							| 
									
										
										
										
											2009-08-07 13:34:56 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-17 18:48:30 +02:00
										 |  |  | 		/* enable beacon filtering */ | 
					
						
							|  |  |  | 		ret = wl1251_acx_beacon_filter_opt(wl, true); | 
					
						
							|  |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:34:56 +03:00
										 |  |  | 		ret = wl1251_acx_wake_up_conditions(wl, | 
					
						
							|  |  |  | 						    WAKE_UP_EVENT_DTIM_BITMAP, | 
					
						
							|  |  |  | 						    wl->listen_int); | 
					
						
							|  |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		ret = wl1251_cmd_ps_mode(wl, STATION_POWER_SAVE_MODE); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		ret = wl1251_ps_set_elp(wl, true); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		wl->psm = 1; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case STATION_ACTIVE_MODE: | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		wl1251_debug(DEBUG_PSM, "leaving psm"); | 
					
						
							|  |  |  | 		ret = wl1251_ps_set_elp(wl, false); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-17 18:48:30 +02:00
										 |  |  | 		/* disable beacon filtering */ | 
					
						
							|  |  |  | 		ret = wl1251_acx_beacon_filter_opt(wl, false); | 
					
						
							|  |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-07 13:34:56 +03:00
										 |  |  | 		ret = wl1251_acx_wake_up_conditions(wl, | 
					
						
							|  |  |  | 						    WAKE_UP_EVENT_DTIM_BITMAP, | 
					
						
							|  |  |  | 						    wl->listen_int); | 
					
						
							|  |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 14:17:39 +03:00
										 |  |  | 		ret = wl1251_cmd_ps_mode(wl, STATION_ACTIVE_MODE); | 
					
						
							| 
									
										
										
										
											2009-04-29 23:33:31 +03:00
										 |  |  | 		if (ret < 0) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		wl->psm = 0; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |