1000.c (8dd06ef34b6e2f41b29fbf5fc1663780f2524285) 1000.c (edba17ad85bbe4e04d39f03285ae11ecb365ddec)
1// SPDX-License-Identifier: GPL-2.0-only
2/******************************************************************************
3 *
4 * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved.
1// SPDX-License-Identifier: GPL-2.0-only
2/******************************************************************************
3 *
4 * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved.
5 * Copyright(c) 2018 - 2019 Intel Corporation
5 * Copyright(c) 2018 - 2020 Intel Corporation
6 *
7 * Contact Information:
8 * Intel Linux Wireless <linuxwifi@intel.com>
9 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
10 *
11 *****************************************************************************/
12
13#include <linux/module.h>

--- 57 unchanged lines hidden (view full) ---

71 .ucode_api_min = IWL1000_UCODE_API_MIN, \
72 .trans.device_family = IWL_DEVICE_FAMILY_1000, \
73 .max_inst_size = IWLAGN_RTC_INST_SIZE, \
74 .max_data_size = IWLAGN_RTC_DATA_SIZE, \
75 .nvm_ver = EEPROM_1000_EEPROM_VERSION, \
76 .nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
77 .trans.base_params = &iwl1000_base_params, \
78 .eeprom_params = &iwl1000_eeprom_params, \
6 *
7 * Contact Information:
8 * Intel Linux Wireless <linuxwifi@intel.com>
9 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
10 *
11 *****************************************************************************/
12
13#include <linux/module.h>

--- 57 unchanged lines hidden (view full) ---

71 .ucode_api_min = IWL1000_UCODE_API_MIN, \
72 .trans.device_family = IWL_DEVICE_FAMILY_1000, \
73 .max_inst_size = IWLAGN_RTC_INST_SIZE, \
74 .max_data_size = IWLAGN_RTC_DATA_SIZE, \
75 .nvm_ver = EEPROM_1000_EEPROM_VERSION, \
76 .nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
77 .trans.base_params = &iwl1000_base_params, \
78 .eeprom_params = &iwl1000_eeprom_params, \
79 .led_mode = IWL_LED_BLINK, \
80 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
79 .led_mode = IWL_LED_BLINK
81
82const struct iwl_cfg iwl1000_bgn_cfg = {
83 .name = "Intel(R) Centrino(R) Wireless-N 1000 BGN",
84 IWL_DEVICE_1000,
85 .ht_params = &iwl1000_ht_params,
86};
87
88const struct iwl_cfg iwl1000_bg_cfg = {

--- 8 unchanged lines hidden (view full) ---

97 .trans.device_family = IWL_DEVICE_FAMILY_100, \
98 .max_inst_size = IWLAGN_RTC_INST_SIZE, \
99 .max_data_size = IWLAGN_RTC_DATA_SIZE, \
100 .nvm_ver = EEPROM_1000_EEPROM_VERSION, \
101 .nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
102 .trans.base_params = &iwl1000_base_params, \
103 .eeprom_params = &iwl1000_eeprom_params, \
104 .led_mode = IWL_LED_RF_STATE, \
80
81const struct iwl_cfg iwl1000_bgn_cfg = {
82 .name = "Intel(R) Centrino(R) Wireless-N 1000 BGN",
83 IWL_DEVICE_1000,
84 .ht_params = &iwl1000_ht_params,
85};
86
87const struct iwl_cfg iwl1000_bg_cfg = {

--- 8 unchanged lines hidden (view full) ---

96 .trans.device_family = IWL_DEVICE_FAMILY_100, \
97 .max_inst_size = IWLAGN_RTC_INST_SIZE, \
98 .max_data_size = IWLAGN_RTC_DATA_SIZE, \
99 .nvm_ver = EEPROM_1000_EEPROM_VERSION, \
100 .nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
101 .trans.base_params = &iwl1000_base_params, \
102 .eeprom_params = &iwl1000_eeprom_params, \
103 .led_mode = IWL_LED_RF_STATE, \
105 .rx_with_siso_diversity = true, \
106 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
104 .rx_with_siso_diversity = true
107
108const struct iwl_cfg iwl100_bgn_cfg = {
109 .name = "Intel(R) Centrino(R) Wireless-N 100 BGN",
110 IWL_DEVICE_100,
111 .ht_params = &iwl1000_ht_params,
112};
113
114const struct iwl_cfg iwl100_bg_cfg = {
115 .name = "Intel(R) Centrino(R) Wireless-N 100 BG",
116 IWL_DEVICE_100,
117};
118
119MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_MAX));
120MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_MAX));
105
106const struct iwl_cfg iwl100_bgn_cfg = {
107 .name = "Intel(R) Centrino(R) Wireless-N 100 BGN",
108 IWL_DEVICE_100,
109 .ht_params = &iwl1000_ht_params,
110};
111
112const struct iwl_cfg iwl100_bg_cfg = {
113 .name = "Intel(R) Centrino(R) Wireless-N 100 BG",
114 IWL_DEVICE_100,
115};
116
117MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_MAX));
118MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_MAX));