hc
2023-12-06 d38611ca164021d018c1b23eee65bbebc09c63e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// SPDX-License-Identifier: GPL-2.0-only
/******************************************************************************
 *
 * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved.
 * Copyright(c) 2018 - 2019 Intel Corporation
 *
 * Contact Information:
 *  Intel Linux Wireless <linuxwifi@intel.com>
 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
 *
 *****************************************************************************/
 
#include <linux/module.h>
#include <linux/stringify.h>
#include "iwl-config.h"
#include "iwl-agn-hw.h"
 
/* Highest firmware API version supported */
#define IWL1000_UCODE_API_MAX 5
#define IWL100_UCODE_API_MAX 5
 
/* Lowest firmware API version supported */
#define IWL1000_UCODE_API_MIN 1
#define IWL100_UCODE_API_MIN 5
 
/* EEPROM version */
#define EEPROM_1000_TX_POWER_VERSION    (4)
#define EEPROM_1000_EEPROM_VERSION    (0x15C)
 
#define IWL1000_FW_PRE "iwlwifi-1000-"
#define IWL1000_MODULE_FIRMWARE(api) IWL1000_FW_PRE __stringify(api) ".ucode"
 
#define IWL100_FW_PRE "iwlwifi-100-"
#define IWL100_MODULE_FIRMWARE(api) IWL100_FW_PRE __stringify(api) ".ucode"
 
 
static const struct iwl_base_params iwl1000_base_params = {
   .num_of_queues = IWLAGN_NUM_QUEUES,
   .max_tfd_queue_size = 256,
   .eeprom_size = OTP_LOW_IMAGE_SIZE_2K,
   .pll_cfg = true,
   .max_ll_items = OTP_MAX_LL_ITEMS_1000,
   .shadow_ram_support = false,
   .led_compensation = 51,
   .wd_timeout = IWL_WATCHDOG_DISABLED,
   .max_event_log_size = 128,
   .scd_chain_ext_wa = true,
};
 
static const struct iwl_ht_params iwl1000_ht_params = {
   .ht_greenfield_support = true,
   .use_rts_for_aggregation = true, /* use rts/cts protection */
   .ht40_bands = BIT(NL80211_BAND_2GHZ),
};
 
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,
   }
};
 
#define IWL_DEVICE_1000                        \
   .fw_name_pre = IWL1000_FW_PRE,                \
   .ucode_api_max = IWL1000_UCODE_API_MAX,            \
   .ucode_api_min = IWL1000_UCODE_API_MIN,            \
   .trans.device_family = IWL_DEVICE_FAMILY_1000,        \
   .max_inst_size = IWLAGN_RTC_INST_SIZE,            \
   .max_data_size = IWLAGN_RTC_DATA_SIZE,            \
   .nvm_ver = EEPROM_1000_EEPROM_VERSION,        \
   .nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION,    \
   .trans.base_params = &iwl1000_base_params,        \
   .eeprom_params = &iwl1000_eeprom_params,        \
   .led_mode = IWL_LED_BLINK,                \
   .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
 
const struct iwl_cfg iwl1000_bgn_cfg = {
   .name = "Intel(R) Centrino(R) Wireless-N 1000 BGN",
   IWL_DEVICE_1000,
   .ht_params = &iwl1000_ht_params,
};
 
const struct iwl_cfg iwl1000_bg_cfg = {
   .name = "Intel(R) Centrino(R) Wireless-N 1000 BG",
   IWL_DEVICE_1000,
};
 
#define IWL_DEVICE_100                        \
   .fw_name_pre = IWL100_FW_PRE,                \
   .ucode_api_max = IWL100_UCODE_API_MAX,            \
   .ucode_api_min = IWL100_UCODE_API_MIN,            \
   .trans.device_family = IWL_DEVICE_FAMILY_100,        \
   .max_inst_size = IWLAGN_RTC_INST_SIZE,            \
   .max_data_size = IWLAGN_RTC_DATA_SIZE,            \
   .nvm_ver = EEPROM_1000_EEPROM_VERSION,        \
   .nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION,    \
   .trans.base_params = &iwl1000_base_params,        \
   .eeprom_params = &iwl1000_eeprom_params,        \
   .led_mode = IWL_LED_RF_STATE,                \
   .rx_with_siso_diversity = true,                \
   .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
 
const struct iwl_cfg iwl100_bgn_cfg = {
   .name = "Intel(R) Centrino(R) Wireless-N 100 BGN",
   IWL_DEVICE_100,
   .ht_params = &iwl1000_ht_params,
};
 
const struct iwl_cfg iwl100_bg_cfg = {
   .name = "Intel(R) Centrino(R) Wireless-N 100 BG",
   IWL_DEVICE_100,
};
 
MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_MAX));
MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_MAX));