|
@@ -72,15 +72,15 @@
|
|
#define IWL9000_SMEM_OFFSET 0x400000
|
|
#define IWL9000_SMEM_OFFSET 0x400000
|
|
#define IWL9000_SMEM_LEN 0x68000
|
|
#define IWL9000_SMEM_LEN 0x68000
|
|
|
|
|
|
-#define IWL9000_FW_PRE "iwlwifi-9000-pu-a0-lc-a0-"
|
|
|
|
|
|
+#define IWL9000_FW_PRE "iwlwifi-9000-pu-a0-jf-a0-"
|
|
#define IWL9260_FW_PRE "iwlwifi-9260-th-a0-jf-a0-"
|
|
#define IWL9260_FW_PRE "iwlwifi-9260-th-a0-jf-a0-"
|
|
-#define IWL9260LC_FW_PRE "iwlwifi-9260-th-a0-lc-a0-"
|
|
|
|
|
|
+#define IWL9000LC_FW_PRE "iwlwifi-9000-pu-a0-lc-a0-"
|
|
#define IWL9000_MODULE_FIRMWARE(api) \
|
|
#define IWL9000_MODULE_FIRMWARE(api) \
|
|
IWL9000_FW_PRE "-" __stringify(api) ".ucode"
|
|
IWL9000_FW_PRE "-" __stringify(api) ".ucode"
|
|
#define IWL9260_MODULE_FIRMWARE(api) \
|
|
#define IWL9260_MODULE_FIRMWARE(api) \
|
|
IWL9260_FW_PRE "-" __stringify(api) ".ucode"
|
|
IWL9260_FW_PRE "-" __stringify(api) ".ucode"
|
|
-#define IWL9260LC_MODULE_FIRMWARE(api) \
|
|
|
|
- IWL9260LC_FW_PRE "-" __stringify(api) ".ucode"
|
|
|
|
|
|
+#define IWL9000LC_MODULE_FIRMWARE(api) \
|
|
|
|
+ IWL9000LC_FW_PRE "-" __stringify(api) ".ucode"
|
|
|
|
|
|
#define NVM_HW_SECTION_NUM_FAMILY_9000 10
|
|
#define NVM_HW_SECTION_NUM_FAMILY_9000 10
|
|
|
|
|
|
@@ -147,40 +147,41 @@ static const struct iwl_tt_params iwl9000_tt_params = {
|
|
.rf_id = true
|
|
.rf_id = true
|
|
|
|
|
|
const struct iwl_cfg iwl9260_2ac_cfg = {
|
|
const struct iwl_cfg iwl9260_2ac_cfg = {
|
|
- .name = "Intel(R) Dual Band Wireless AC 9260",
|
|
|
|
- .fw_name_pre = IWL9260_FW_PRE,
|
|
|
|
- IWL_DEVICE_9000,
|
|
|
|
- .ht_params = &iwl9000_ht_params,
|
|
|
|
- .nvm_ver = IWL9000_NVM_VERSION,
|
|
|
|
- .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
|
|
|
|
- .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
|
|
|
|
|
|
+ .name = "Intel(R) Dual Band Wireless AC 9260",
|
|
|
|
+ .fw_name_pre = IWL9260_FW_PRE,
|
|
|
|
+ IWL_DEVICE_9000,
|
|
|
|
+ .ht_params = &iwl9000_ht_params,
|
|
|
|
+ .nvm_ver = IWL9000_NVM_VERSION,
|
|
|
|
+ .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
|
|
|
|
+ .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+const struct iwl_cfg iwl9000_2ac_cfg = {
|
|
|
|
+ .name = "Intel(R) Dual Band Wireless AC 9000",
|
|
|
|
+ .fw_name_pre = IWL9000_FW_PRE,
|
|
|
|
+ IWL_DEVICE_9000,
|
|
|
|
+ .ht_params = &iwl9000_ht_params,
|
|
|
|
+ .nvm_ver = IWL9000_NVM_VERSION,
|
|
|
|
+ .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
|
|
|
|
+ .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
|
|
|
|
+ .integrated = true,
|
|
};
|
|
};
|
|
|
|
|
|
/*
|
|
/*
|
|
* TODO the struct below is for internal testing only this should be
|
|
* TODO the struct below is for internal testing only this should be
|
|
* removed by EO 2016~
|
|
* removed by EO 2016~
|
|
*/
|
|
*/
|
|
-const struct iwl_cfg iwl9260lc_2ac_cfg = {
|
|
|
|
- .name = "Intel(R) Dual Band Wireless AC 9260",
|
|
|
|
- .fw_name_pre = IWL9260LC_FW_PRE,
|
|
|
|
- IWL_DEVICE_9000,
|
|
|
|
- .ht_params = &iwl9000_ht_params,
|
|
|
|
- .nvm_ver = IWL9000_NVM_VERSION,
|
|
|
|
- .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
|
|
|
|
- .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
-const struct iwl_cfg iwl5165_2ac_cfg = {
|
|
|
|
- .name = "Intel(R) Dual Band Wireless AC 5165",
|
|
|
|
- .fw_name_pre = IWL9000_FW_PRE,
|
|
|
|
- IWL_DEVICE_9000,
|
|
|
|
- .ht_params = &iwl9000_ht_params,
|
|
|
|
- .nvm_ver = IWL9000_NVM_VERSION,
|
|
|
|
- .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
|
|
|
|
- .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
|
|
|
|
- .integrated = true,
|
|
|
|
|
|
+const struct iwl_cfg iwl9000lc_2ac_cfg = {
|
|
|
|
+ .name = "Intel(R) Dual Band Wireless AC 9000",
|
|
|
|
+ .fw_name_pre = IWL9000LC_FW_PRE,
|
|
|
|
+ IWL_DEVICE_9000,
|
|
|
|
+ .ht_params = &iwl9000_ht_params,
|
|
|
|
+ .nvm_ver = IWL9000_NVM_VERSION,
|
|
|
|
+ .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
|
|
|
|
+ .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
|
|
|
|
+ .integrated = true,
|
|
};
|
|
};
|
|
|
|
|
|
MODULE_FIRMWARE(IWL9000_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
|
|
MODULE_FIRMWARE(IWL9000_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
|
|
MODULE_FIRMWARE(IWL9260_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
|
|
MODULE_FIRMWARE(IWL9260_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
|
|
-MODULE_FIRMWARE(IWL9260LC_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
|
|
|
|
|
|
+MODULE_FIRMWARE(IWL9000LC_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
|