]> Git Repo - linux.git/blob - drivers/net/wireless/intel/iwlwifi/cfg/5000.c
Merge tag 'trace-v5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[linux.git] / drivers / net / wireless / intel / iwlwifi / cfg / 5000.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /******************************************************************************
3  *
4  * Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved.
5  * Copyright(c) 2018 - 2020 Intel Corporation
6  *
7  * Contact Information:
8  *  Intel Linux Wireless <[email protected]>
9  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
10  *
11  *****************************************************************************/
12
13 #include <linux/module.h>
14 #include <linux/stringify.h>
15 #include "iwl-config.h"
16 #include "iwl-agn-hw.h"
17
18 /* Highest firmware API version supported */
19 #define IWL5000_UCODE_API_MAX 5
20 #define IWL5150_UCODE_API_MAX 2
21
22 /* Lowest firmware API version supported */
23 #define IWL5000_UCODE_API_MIN 1
24 #define IWL5150_UCODE_API_MIN 1
25
26 /* EEPROM versions */
27 #define EEPROM_5000_TX_POWER_VERSION    (4)
28 #define EEPROM_5000_EEPROM_VERSION      (0x11A)
29 #define EEPROM_5050_TX_POWER_VERSION    (4)
30 #define EEPROM_5050_EEPROM_VERSION      (0x21E)
31
32 #define IWL5000_FW_PRE "iwlwifi-5000-"
33 #define IWL5000_MODULE_FIRMWARE(api) IWL5000_FW_PRE __stringify(api) ".ucode"
34
35 #define IWL5150_FW_PRE "iwlwifi-5150-"
36 #define IWL5150_MODULE_FIRMWARE(api) IWL5150_FW_PRE __stringify(api) ".ucode"
37
38 static const struct iwl_base_params iwl5000_base_params = {
39         .eeprom_size = IWLAGN_EEPROM_IMG_SIZE,
40         .num_of_queues = IWLAGN_NUM_QUEUES,
41         .max_tfd_queue_size = 256,
42         .pll_cfg = true,
43         .led_compensation = 51,
44         .wd_timeout = IWL_WATCHDOG_DISABLED,
45         .max_event_log_size = 512,
46         .scd_chain_ext_wa = true,
47 };
48
49 static const struct iwl_ht_params iwl5000_ht_params = {
50         .ht_greenfield_support = true,
51         .ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ),
52 };
53
54 static const struct iwl_eeprom_params iwl5000_eeprom_params = {
55         .regulatory_bands = {
56                 EEPROM_REG_BAND_1_CHANNELS,
57                 EEPROM_REG_BAND_2_CHANNELS,
58                 EEPROM_REG_BAND_3_CHANNELS,
59                 EEPROM_REG_BAND_4_CHANNELS,
60                 EEPROM_REG_BAND_5_CHANNELS,
61                 EEPROM_REG_BAND_24_HT40_CHANNELS,
62                 EEPROM_REG_BAND_52_HT40_CHANNELS
63         },
64 };
65
66 #define IWL_DEVICE_5000                                         \
67         .fw_name_pre = IWL5000_FW_PRE,                          \
68         .ucode_api_max = IWL5000_UCODE_API_MAX,                 \
69         .ucode_api_min = IWL5000_UCODE_API_MIN,                 \
70         .trans.device_family = IWL_DEVICE_FAMILY_5000,          \
71         .max_inst_size = IWLAGN_RTC_INST_SIZE,                  \
72         .max_data_size = IWLAGN_RTC_DATA_SIZE,                  \
73         .nvm_ver = EEPROM_5000_EEPROM_VERSION,          \
74         .nvm_calib_ver = EEPROM_5000_TX_POWER_VERSION,  \
75         .trans.base_params = &iwl5000_base_params,              \
76         .eeprom_params = &iwl5000_eeprom_params,                \
77         .led_mode = IWL_LED_BLINK
78
79 const struct iwl_cfg iwl5300_agn_cfg = {
80         .name = "Intel(R) Ultimate N WiFi Link 5300 AGN",
81         IWL_DEVICE_5000,
82         /* at least EEPROM 0x11A has wrong info */
83         .valid_tx_ant = ANT_ABC,        /* .cfg overwrite */
84         .valid_rx_ant = ANT_ABC,        /* .cfg overwrite */
85         .ht_params = &iwl5000_ht_params,
86 };
87
88 const struct iwl_cfg iwl5100_bgn_cfg = {
89         .name = "Intel(R) WiFi Link 5100 BGN",
90         IWL_DEVICE_5000,
91         .valid_tx_ant = ANT_B,          /* .cfg overwrite */
92         .valid_rx_ant = ANT_AB,         /* .cfg overwrite */
93         .ht_params = &iwl5000_ht_params,
94 };
95
96 const struct iwl_cfg iwl5100_abg_cfg = {
97         .name = "Intel(R) WiFi Link 5100 ABG",
98         IWL_DEVICE_5000,
99         .valid_tx_ant = ANT_B,          /* .cfg overwrite */
100         .valid_rx_ant = ANT_AB,         /* .cfg overwrite */
101 };
102
103 const struct iwl_cfg iwl5100_agn_cfg = {
104         .name = "Intel(R) WiFi Link 5100 AGN",
105         IWL_DEVICE_5000,
106         .valid_tx_ant = ANT_B,          /* .cfg overwrite */
107         .valid_rx_ant = ANT_AB,         /* .cfg overwrite */
108         .ht_params = &iwl5000_ht_params,
109 };
110
111 const struct iwl_cfg iwl5350_agn_cfg = {
112         .name = "Intel(R) WiMAX/WiFi Link 5350 AGN",
113         .fw_name_pre = IWL5000_FW_PRE,
114         .ucode_api_max = IWL5000_UCODE_API_MAX,
115         .ucode_api_min = IWL5000_UCODE_API_MIN,
116         .trans.device_family = IWL_DEVICE_FAMILY_5000,
117         .max_inst_size = IWLAGN_RTC_INST_SIZE,
118         .max_data_size = IWLAGN_RTC_DATA_SIZE,
119         .nvm_ver = EEPROM_5050_EEPROM_VERSION,
120         .nvm_calib_ver = EEPROM_5050_TX_POWER_VERSION,
121         .trans.base_params = &iwl5000_base_params,
122         .eeprom_params = &iwl5000_eeprom_params,
123         .ht_params = &iwl5000_ht_params,
124         .led_mode = IWL_LED_BLINK,
125         .internal_wimax_coex = true,
126 };
127
128 #define IWL_DEVICE_5150                                         \
129         .fw_name_pre = IWL5150_FW_PRE,                          \
130         .ucode_api_max = IWL5150_UCODE_API_MAX,                 \
131         .ucode_api_min = IWL5150_UCODE_API_MIN,                 \
132         .trans.device_family = IWL_DEVICE_FAMILY_5150,          \
133         .max_inst_size = IWLAGN_RTC_INST_SIZE,                  \
134         .max_data_size = IWLAGN_RTC_DATA_SIZE,                  \
135         .nvm_ver = EEPROM_5050_EEPROM_VERSION,          \
136         .nvm_calib_ver = EEPROM_5050_TX_POWER_VERSION,  \
137         .trans.base_params = &iwl5000_base_params,              \
138         .eeprom_params = &iwl5000_eeprom_params,                \
139         .led_mode = IWL_LED_BLINK,                              \
140         .internal_wimax_coex = true
141
142 const struct iwl_cfg iwl5150_agn_cfg = {
143         .name = "Intel(R) WiMAX/WiFi Link 5150 AGN",
144         IWL_DEVICE_5150,
145         .ht_params = &iwl5000_ht_params,
146
147 };
148
149 const struct iwl_cfg iwl5150_abg_cfg = {
150         .name = "Intel(R) WiMAX/WiFi Link 5150 ABG",
151         IWL_DEVICE_5150,
152 };
153
154 MODULE_FIRMWARE(IWL5000_MODULE_FIRMWARE(IWL5000_UCODE_API_MAX));
155 MODULE_FIRMWARE(IWL5150_MODULE_FIRMWARE(IWL5150_UCODE_API_MAX));
This page took 0.045703 seconds and 4 git commands to generate.