2011-08-26 13:10:36 +07:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* This file is provided under a dual BSD/GPLv2 license. When using or
|
|
|
|
* redistributing this file, you may do so under either license.
|
|
|
|
*
|
|
|
|
* GPL LICENSE SUMMARY
|
|
|
|
*
|
2013-12-30 18:15:54 +07:00
|
|
|
* Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved.
|
2018-02-04 22:41:51 +07:00
|
|
|
* Copyright(c) 2018 Intel Corporation
|
2011-08-26 13:10:36 +07:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The full GNU General Public License is included in this distribution
|
2013-02-18 14:22:28 +07:00
|
|
|
* in the file called COPYING.
|
2011-08-26 13:10:36 +07:00
|
|
|
*
|
|
|
|
* Contact Information:
|
2015-11-17 20:39:56 +07:00
|
|
|
* Intel Linux Wireless <linuxwifi@intel.com>
|
2011-08-26 13:10:36 +07:00
|
|
|
* Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
|
|
|
|
*
|
|
|
|
* BSD LICENSE
|
|
|
|
*
|
2013-12-30 18:15:54 +07:00
|
|
|
* Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
|
2018-02-04 22:41:51 +07:00
|
|
|
* Copyright(c) 2018 Intel Corporation
|
2011-08-26 13:10:36 +07:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* * Neither the name Intel Corporation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2012-04-24 21:42:21 +07:00
|
|
|
#ifndef __iwl_modparams_h__
|
|
|
|
#define __iwl_modparams_h__
|
2011-08-26 13:10:36 +07:00
|
|
|
|
2011-08-26 13:11:13 +07:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/gfp.h>
|
|
|
|
|
2012-04-17 21:36:30 +07:00
|
|
|
extern struct iwl_mod_params iwlwifi_mod_params;
|
|
|
|
|
|
|
|
enum iwl_power_level {
|
|
|
|
IWL_POWER_INDEX_1,
|
|
|
|
IWL_POWER_INDEX_2,
|
|
|
|
IWL_POWER_INDEX_3,
|
|
|
|
IWL_POWER_INDEX_4,
|
|
|
|
IWL_POWER_INDEX_5,
|
|
|
|
IWL_POWER_NUM
|
|
|
|
};
|
2011-08-26 13:10:36 +07:00
|
|
|
|
2014-02-12 20:15:05 +07:00
|
|
|
enum iwl_disable_11n {
|
|
|
|
IWL_DISABLE_HT_ALL = BIT(0),
|
|
|
|
IWL_DISABLE_HT_TXAGG = BIT(1),
|
|
|
|
IWL_DISABLE_HT_RXAGG = BIT(2),
|
|
|
|
IWL_ENABLE_HT_TXAGG = BIT(3),
|
|
|
|
};
|
2011-12-13 15:07:40 +07:00
|
|
|
|
2015-11-10 16:57:41 +07:00
|
|
|
enum iwl_amsdu_size {
|
2016-04-07 20:44:42 +07:00
|
|
|
IWL_AMSDU_DEF = 0,
|
|
|
|
IWL_AMSDU_4K = 1,
|
|
|
|
IWL_AMSDU_8K = 2,
|
|
|
|
IWL_AMSDU_12K = 3,
|
2018-02-04 22:41:51 +07:00
|
|
|
/* Add 2K at the end to avoid breaking current API */
|
|
|
|
IWL_AMSDU_2K = 4,
|
2015-11-10 16:57:41 +07:00
|
|
|
};
|
|
|
|
|
2016-03-15 16:04:29 +07:00
|
|
|
enum iwl_uapsd_disable {
|
|
|
|
IWL_DISABLE_UAPSD_BSS = BIT(0),
|
|
|
|
IWL_DISABLE_UAPSD_P2P_CLIENT = BIT(1),
|
|
|
|
};
|
|
|
|
|
2011-08-26 13:10:58 +07:00
|
|
|
/**
|
|
|
|
* struct iwl_mod_params
|
2011-09-16 01:46:34 +07:00
|
|
|
*
|
|
|
|
* Holds the module parameters
|
|
|
|
*
|
2017-05-30 21:45:31 +07:00
|
|
|
* @swcrypto: using hardware encryption, default = 0
|
2011-12-13 15:07:40 +07:00
|
|
|
* @disable_11n: disable 11n capabilities, default = 0,
|
2014-02-12 20:15:05 +07:00
|
|
|
* use IWL_[DIS,EN]ABLE_HT_* constants
|
2016-04-07 20:44:42 +07:00
|
|
|
* @amsdu_size: See &enum iwl_amsdu_size.
|
2017-05-30 21:45:31 +07:00
|
|
|
* @fw_restart: restart firmware, default = 1
|
2011-08-26 13:10:58 +07:00
|
|
|
* @bt_coex_active: enable bt coex, default = true
|
|
|
|
* @led_mode: system default, default = 0
|
2014-07-21 15:44:12 +07:00
|
|
|
* @power_save: enable power save, default = false
|
2011-08-26 13:10:58 +07:00
|
|
|
* @power_level: power level, default = 1
|
|
|
|
* @debug_level: levels are IWL_DL_*
|
2017-05-30 21:45:31 +07:00
|
|
|
* @antenna_coupling: antenna coupling in dB, default = 0
|
2016-01-07 05:24:01 +07:00
|
|
|
* @nvm_file: specifies a external NVM file
|
2017-03-15 16:02:23 +07:00
|
|
|
* @uapsd_disable: disable U-APSD, see &enum iwl_uapsd_disable, default =
|
2016-03-15 16:04:29 +07:00
|
|
|
* IWL_DISABLE_UAPSD_BSS | IWL_DISABLE_UAPSD_P2P_CLIENT
|
2014-11-20 22:33:43 +07:00
|
|
|
* @d0i3_disable: disable d0i3, default = 1,
|
2017-05-30 21:45:31 +07:00
|
|
|
* @d0i3_timeout: time to wait after no refs are taken before
|
2015-09-18 18:37:46 +07:00
|
|
|
* entering D0i3 (in msecs)
|
2014-12-28 14:23:16 +07:00
|
|
|
* @lar_disable: disable LAR (regulatory), default = 0
|
2014-06-01 12:05:52 +07:00
|
|
|
* @fw_monitor: allow to use firmware monitor
|
2016-02-29 18:25:48 +07:00
|
|
|
* @disable_11ac: disable VHT capabilities, default = false.
|
2017-12-12 13:58:41 +07:00
|
|
|
* @remove_when_gone: remove an inaccessible device from the PCIe bus.
|
2018-05-17 14:14:30 +07:00
|
|
|
* @enable_ini: enable new FW debug infratructure (INI TLVs)
|
2011-08-26 13:10:58 +07:00
|
|
|
*/
|
2011-08-26 13:10:36 +07:00
|
|
|
struct iwl_mod_params {
|
2017-05-30 21:45:31 +07:00
|
|
|
int swcrypto;
|
2011-12-13 15:07:40 +07:00
|
|
|
unsigned int disable_11n;
|
2015-11-10 16:57:41 +07:00
|
|
|
int amsdu_size;
|
2017-05-30 21:45:31 +07:00
|
|
|
bool fw_restart;
|
2011-08-26 13:10:58 +07:00
|
|
|
bool bt_coex_active;
|
|
|
|
int led_mode;
|
|
|
|
bool power_save;
|
|
|
|
int power_level;
|
2013-06-12 14:56:51 +07:00
|
|
|
#ifdef CONFIG_IWLWIFI_DEBUG
|
2011-08-26 13:10:58 +07:00
|
|
|
u32 debug_level;
|
2013-06-12 14:56:51 +07:00
|
|
|
#endif
|
2017-05-30 21:45:31 +07:00
|
|
|
int antenna_coupling;
|
2013-05-09 12:07:59 +07:00
|
|
|
char *nvm_file;
|
2016-03-15 16:04:29 +07:00
|
|
|
u32 uapsd_disable;
|
2014-11-20 22:33:43 +07:00
|
|
|
bool d0i3_disable;
|
2017-05-30 21:45:31 +07:00
|
|
|
unsigned int d0i3_timeout;
|
2014-12-28 14:23:16 +07:00
|
|
|
bool lar_disable;
|
2014-06-01 12:05:52 +07:00
|
|
|
bool fw_monitor;
|
2016-02-29 18:25:48 +07:00
|
|
|
bool disable_11ac;
|
2018-06-24 16:07:28 +07:00
|
|
|
/**
|
|
|
|
* @disable_11ax: disable HE capabilities, default = false
|
|
|
|
*/
|
|
|
|
bool disable_11ax;
|
2017-12-12 13:58:41 +07:00
|
|
|
bool remove_when_gone;
|
2018-05-17 14:14:30 +07:00
|
|
|
bool enable_ini;
|
2011-08-26 13:10:36 +07:00
|
|
|
};
|
|
|
|
|
2018-10-31 14:48:49 +07:00
|
|
|
static inline bool iwl_enable_rx_ampdu(void)
|
|
|
|
{
|
|
|
|
if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool iwl_enable_tx_ampdu(void)
|
|
|
|
{
|
|
|
|
if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
|
|
|
|
return false;
|
|
|
|
if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
/* enabled by default */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-04-24 21:42:21 +07:00
|
|
|
#endif /* #__iwl_modparams_h__ */
|