2019-05-29 16:57:37 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2009-01-19 15:30:35 -08:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
2013-12-30 13:15:54 +02:00
|
|
|
* Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved.
|
2018-08-02 14:57:55 +03:00
|
|
|
* Copyright(c) 2018 - 2019 Intel Corporation
|
2009-01-19 15:30:35 -08:00
|
|
|
*
|
|
|
|
* Contact Information:
|
2015-11-17 15:39:56 +02:00
|
|
|
* Intel Linux Wireless <linuxwifi@intel.com>
|
2009-01-19 15:30:35 -08:00
|
|
|
* Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
2011-06-12 05:34:31 -07:00
|
|
|
#include <linux/stringify.h>
|
2012-04-10 14:10:28 -07:00
|
|
|
#include "iwl-config.h"
|
2012-04-03 20:57:59 +02:00
|
|
|
#include "iwl-agn-hw.h"
|
2009-01-19 15:30:35 -08:00
|
|
|
|
|
|
|
/* Highest firmware API version supported */
|
2012-04-22 07:55:27 -07:00
|
|
|
#define IWL1000_UCODE_API_MAX 5
|
|
|
|
#define IWL100_UCODE_API_MAX 5
|
2011-07-23 10:24:45 -07:00
|
|
|
|
2009-01-19 15:30:35 -08:00
|
|
|
/* Lowest firmware API version supported */
|
2009-03-06 13:52:55 -08:00
|
|
|
#define IWL1000_UCODE_API_MIN 1
|
2010-09-14 15:21:20 -07:00
|
|
|
#define IWL100_UCODE_API_MIN 5
|
2009-01-19 15:30:35 -08:00
|
|
|
|
2012-04-03 20:41:07 +02:00
|
|
|
/* EEPROM version */
|
|
|
|
#define EEPROM_1000_TX_POWER_VERSION (4)
|
|
|
|
#define EEPROM_1000_EEPROM_VERSION (0x15C)
|
|
|
|
|
2009-03-06 13:52:55 -08:00
|
|
|
#define IWL1000_FW_PRE "iwlwifi-1000-"
|
2011-06-12 05:34:31 -07:00
|
|
|
#define IWL1000_MODULE_FIRMWARE(api) IWL1000_FW_PRE __stringify(api) ".ucode"
|
2009-01-19 15:30:35 -08:00
|
|
|
|
2010-09-14 15:21:20 -07:00
|
|
|
#define IWL100_FW_PRE "iwlwifi-100-"
|
2011-06-12 05:34:31 -07:00
|
|
|
#define IWL100_MODULE_FIRMWARE(api) IWL100_FW_PRE __stringify(api) ".ucode"
|
2010-09-14 15:21:20 -07:00
|
|
|
|
2009-07-24 11:13:01 -07:00
|
|
|
|
2012-03-06 13:30:56 -08:00
|
|
|
static const struct iwl_base_params iwl1000_base_params = {
|
2010-03-16 17:41:23 -07:00
|
|
|
.num_of_queues = IWLAGN_NUM_QUEUES,
|
2018-09-25 16:56:53 +03:00
|
|
|
.max_tfd_queue_size = 256,
|
2018-08-16 08:53:10 +03:00
|
|
|
.eeprom_size = OTP_LOW_IMAGE_SIZE_2K,
|
2016-04-12 12:36:01 +02:00
|
|
|
.pll_cfg = true,
|
2009-08-13 13:30:54 -07:00
|
|
|
.max_ll_items = OTP_MAX_LL_ITEMS_1000,
|
|
|
|
.shadow_ram_support = false,
|
2009-09-11 10:38:14 -07:00
|
|
|
.led_compensation = 51,
|
2012-05-30 09:14:41 +02:00
|
|
|
.wd_timeout = IWL_WATCHDOG_DISABLED,
|
2010-03-26 12:54:37 -07:00
|
|
|
.max_event_log_size = 128,
|
2014-04-13 10:49:16 +03:00
|
|
|
.scd_chain_ext_wa = true,
|
2009-01-19 15:30:35 -08:00
|
|
|
};
|
2012-03-06 13:30:56 -08:00
|
|
|
|
|
|
|
static const struct iwl_ht_params iwl1000_ht_params = {
|
2010-10-06 08:10:00 -07:00
|
|
|
.ht_greenfield_support = true,
|
|
|
|
.use_rts_for_aggregation = true, /* use rts/cts protection */
|
2016-04-12 15:56:15 +02:00
|
|
|
.ht40_bands = BIT(NL80211_BAND_2GHZ),
|
2010-10-06 08:10:00 -07:00
|
|
|
};
|
|
|
|
|
2012-05-21 11:55:54 +02:00
|
|
|
static const struct iwl_eeprom_params iwl1000_eeprom_params = {
|
|
|
|
.regulatory_bands = {
|
|
|
|
EEPROM_REG_BAND_1_CHANNELS,
|
|
|
|
EEPROM_REG_BAND_2_CHANNELS,
|
|
|
|
EEPROM_REG_BAND_3_CHANNELS,
|
|
|
|
EEPROM_REG_BAND_4_CHANNELS,
|
|
|
|
EEPROM_REG_BAND_5_CHANNELS,
|
|
|
|
EEPROM_REG_BAND_24_HT40_CHANNELS,
|
|
|
|
EEPROM_REGULATORY_BAND_NO_HT40,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-12-08 07:51:50 -08:00
|
|
|
#define IWL_DEVICE_1000 \
|
|
|
|
.fw_name_pre = IWL1000_FW_PRE, \
|
|
|
|
.ucode_api_max = IWL1000_UCODE_API_MAX, \
|
|
|
|
.ucode_api_min = IWL1000_UCODE_API_MIN, \
|
2018-08-02 14:57:55 +03:00
|
|
|
.trans.device_family = IWL_DEVICE_FAMILY_1000, \
|
2012-02-07 12:56:26 +02:00
|
|
|
.max_inst_size = IWLAGN_RTC_INST_SIZE, \
|
|
|
|
.max_data_size = IWLAGN_RTC_DATA_SIZE, \
|
2012-12-01 20:59:49 +02:00
|
|
|
.nvm_ver = EEPROM_1000_EEPROM_VERSION, \
|
|
|
|
.nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
|
2018-08-02 14:57:55 +03:00
|
|
|
.trans.base_params = &iwl1000_base_params, \
|
2012-05-21 11:55:54 +02:00
|
|
|
.eeprom_params = &iwl1000_eeprom_params, \
|
2015-02-23 02:40:07 +02:00
|
|
|
.led_mode = IWL_LED_BLINK, \
|
2019-10-10 11:59:30 +03:00
|
|
|
.max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
|
2010-12-08 07:51:50 -08:00
|
|
|
|
2012-03-05 11:24:33 -08:00
|
|
|
const struct iwl_cfg iwl1000_bgn_cfg = {
|
2010-10-06 08:10:00 -07:00
|
|
|
.name = "Intel(R) Centrino(R) Wireless-N 1000 BGN",
|
2010-12-08 07:51:50 -08:00
|
|
|
IWL_DEVICE_1000,
|
2010-10-06 08:10:00 -07:00
|
|
|
.ht_params = &iwl1000_ht_params,
|
|
|
|
};
|
2009-01-19 15:30:35 -08:00
|
|
|
|
2012-03-05 11:24:33 -08:00
|
|
|
const struct iwl_cfg iwl1000_bg_cfg = {
|
2010-03-05 17:05:20 -08:00
|
|
|
.name = "Intel(R) Centrino(R) Wireless-N 1000 BG",
|
2010-12-08 07:51:50 -08:00
|
|
|
IWL_DEVICE_1000,
|
2009-09-17 10:43:52 -07:00
|
|
|
};
|
|
|
|
|
2010-12-08 07:51:50 -08:00
|
|
|
#define IWL_DEVICE_100 \
|
|
|
|
.fw_name_pre = IWL100_FW_PRE, \
|
|
|
|
.ucode_api_max = IWL100_UCODE_API_MAX, \
|
|
|
|
.ucode_api_min = IWL100_UCODE_API_MIN, \
|
2018-08-02 14:57:55 +03:00
|
|
|
.trans.device_family = IWL_DEVICE_FAMILY_100, \
|
2012-02-07 12:56:26 +02:00
|
|
|
.max_inst_size = IWLAGN_RTC_INST_SIZE, \
|
|
|
|
.max_data_size = IWLAGN_RTC_DATA_SIZE, \
|
2012-12-01 20:59:49 +02:00
|
|
|
.nvm_ver = EEPROM_1000_EEPROM_VERSION, \
|
|
|
|
.nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
|
2018-08-02 14:57:55 +03:00
|
|
|
.trans.base_params = &iwl1000_base_params, \
|
2012-05-21 11:55:54 +02:00
|
|
|
.eeprom_params = &iwl1000_eeprom_params, \
|
2010-12-08 07:51:50 -08:00
|
|
|
.led_mode = IWL_LED_RF_STATE, \
|
2015-02-23 02:40:07 +02:00
|
|
|
.rx_with_siso_diversity = true, \
|
2019-10-10 11:59:30 +03:00
|
|
|
.max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
|
2010-12-08 07:51:50 -08:00
|
|
|
|
2012-03-05 11:24:33 -08:00
|
|
|
const struct iwl_cfg iwl100_bgn_cfg = {
|
2010-11-17 12:13:55 -08:00
|
|
|
.name = "Intel(R) Centrino(R) Wireless-N 100 BGN",
|
2010-12-08 07:51:50 -08:00
|
|
|
IWL_DEVICE_100,
|
2010-10-06 08:10:00 -07:00
|
|
|
.ht_params = &iwl1000_ht_params,
|
2010-09-14 15:21:20 -07:00
|
|
|
};
|
|
|
|
|
2012-03-05 11:24:33 -08:00
|
|
|
const struct iwl_cfg iwl100_bg_cfg = {
|
2010-11-17 12:13:55 -08:00
|
|
|
.name = "Intel(R) Centrino(R) Wireless-N 100 BG",
|
2010-12-08 07:51:50 -08:00
|
|
|
IWL_DEVICE_100,
|
2010-09-14 15:21:20 -07:00
|
|
|
};
|
|
|
|
|
2016-03-24 08:44:57 +02:00
|
|
|
MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_MAX));
|
|
|
|
MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_MAX));
|