2008-04-21 18:41:51 -04:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
2009-01-08 13:20:02 -05:00
|
|
|
* Copyright(c) 2007 - 2009 Intel Corporation. All rights reserved.
|
2008-04-21 18:41:51 -04:00
|
|
|
*
|
|
|
|
* Portions of this file are derived from the ipw3945 project, as well
|
|
|
|
* as portions of the ieee80211 subsystem header files.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of version 2 of the GNU General Public License 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 Street, Fifth Floor, Boston, MA 02110, USA
|
|
|
|
*
|
|
|
|
* The full GNU General Public License is included in this distribution in the
|
|
|
|
* file called LICENSE.
|
|
|
|
*
|
|
|
|
* Contact Information:
|
2008-12-09 14:28:58 -05:00
|
|
|
* Intel Linux Wireless <ilw@linux.intel.com>
|
2008-04-21 18:41:51 -04:00
|
|
|
* Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
|
|
|
|
*****************************************************************************/
|
|
|
|
#ifndef __iwl_power_setting_h__
|
|
|
|
#define __iwl_power_setting_h__
|
|
|
|
|
|
|
|
#include <net/mac80211.h>
|
2008-04-24 14:55:37 -04:00
|
|
|
#include "iwl-commands.h"
|
2008-04-21 18:41:51 -04:00
|
|
|
|
|
|
|
struct iwl_priv;
|
|
|
|
|
2008-07-18 01:52:58 -04:00
|
|
|
enum {
|
|
|
|
IWL_POWER_MODE_CAM, /* Continuously Aware Mode, always on */
|
|
|
|
IWL_POWER_INDEX_1,
|
|
|
|
IWL_POWER_INDEX_2,
|
|
|
|
IWL_POWER_INDEX_3,
|
|
|
|
IWL_POWER_INDEX_4,
|
|
|
|
IWL_POWER_INDEX_5,
|
2009-05-08 16:44:38 -04:00
|
|
|
IWL_POWER_NUM
|
2008-07-18 01:52:58 -04:00
|
|
|
};
|
|
|
|
|
2008-04-21 18:41:51 -04:00
|
|
|
/* Power management (not Tx power) structures */
|
|
|
|
|
|
|
|
struct iwl_power_vec_entry {
|
2008-07-18 01:52:57 -04:00
|
|
|
struct iwl_powertable_cmd cmd;
|
2008-04-21 18:41:51 -04:00
|
|
|
u8 no_dtim;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct iwl_power_mgr {
|
2009-05-08 16:44:38 -04:00
|
|
|
struct iwl_power_vec_entry pwr_range_0[IWL_POWER_NUM];
|
|
|
|
struct iwl_power_vec_entry pwr_range_1[IWL_POWER_NUM];
|
|
|
|
struct iwl_power_vec_entry pwr_range_2[IWL_POWER_NUM];
|
2008-04-21 18:41:51 -04:00
|
|
|
u32 dtim_period;
|
|
|
|
/* final power level that used to calculate final power command */
|
|
|
|
u8 power_mode;
|
2009-05-08 16:44:38 -04:00
|
|
|
u8 user_power_setting; /* set by user through sysfs */
|
|
|
|
u8 power_disabled; /* set by mac80211's CONF_PS */
|
2008-04-21 18:41:51 -04:00
|
|
|
};
|
|
|
|
|
2008-09-02 23:26:53 -04:00
|
|
|
int iwl_power_update_mode(struct iwl_priv *priv, bool force);
|
2008-04-21 18:41:51 -04:00
|
|
|
int iwl_power_set_user_mode(struct iwl_priv *priv, u16 mode);
|
|
|
|
void iwl_power_initialize(struct iwl_priv *priv);
|
|
|
|
|
|
|
|
#endif /* __iwl_power_setting_h__ */
|