Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[deliverable/linux.git] / drivers / net / wireless / intel / iwlwifi / iwl-1000.c
CommitLineData
c5d05698
JS
1/******************************************************************************
2 *
51368bf7 3 * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved.
c5d05698
JS
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
d01c5366 22 * Intel Linux Wireless <linuxwifi@intel.com>
c5d05698
JS
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
c5d05698 27#include <linux/module.h>
8fcbd4dc 28#include <linux/stringify.h>
e9676695 29#include "iwl-config.h"
0db19cde
JB
30#include "iwl-csr.h"
31#include "iwl-agn-hw.h"
c5d05698
JS
32
33/* Highest firmware API version supported */
78cbcf2b
MV
34#define IWL1000_UCODE_API_MAX 5
35#define IWL100_UCODE_API_MAX 5
ca9a4605
JB
36
37/* Oldest version we won't warn about */
38#define IWL1000_UCODE_API_OK 5
39#define IWL100_UCODE_API_OK 5
c5d05698
JS
40
41/* Lowest firmware API version supported */
77dcb6a9 42#define IWL1000_UCODE_API_MIN 1
1de19ecc 43#define IWL100_UCODE_API_MIN 5
c5d05698 44
586aed96
JB
45/* EEPROM version */
46#define EEPROM_1000_TX_POWER_VERSION (4)
47#define EEPROM_1000_EEPROM_VERSION (0x15C)
48
77dcb6a9 49#define IWL1000_FW_PRE "iwlwifi-1000-"
8fcbd4dc 50#define IWL1000_MODULE_FIRMWARE(api) IWL1000_FW_PRE __stringify(api) ".ucode"
c5d05698 51
1de19ecc 52#define IWL100_FW_PRE "iwlwifi-100-"
8fcbd4dc 53#define IWL100_MODULE_FIRMWARE(api) IWL100_FW_PRE __stringify(api) ".ucode"
1de19ecc 54
672639de 55
6794f3ee 56static const struct iwl_base_params iwl1000_base_params = {
19e6cda0 57 .num_of_queues = IWLAGN_NUM_QUEUES,
7cb1b088 58 .eeprom_size = OTP_LOW_IMAGE_SIZE,
fadb3582 59 .pll_cfg_val = CSR50_ANA_PLL_CFG_VAL,
415e4993
WYG
60 .max_ll_items = OTP_MAX_LL_ITEMS_1000,
61 .shadow_ram_support = false,
f2d0d0e2 62 .led_compensation = 51,
6de4902e 63 .wd_timeout = IWL_WATCHDOG_DISABLED,
678b385d 64 .max_event_log_size = 128,
e03bbb62 65 .scd_chain_ext_wa = true,
c5d05698 66};
6794f3ee
JB
67
68static const struct iwl_ht_params iwl1000_ht_params = {
7cb1b088
WYG
69 .ht_greenfield_support = true,
70 .use_rts_for_aggregation = true, /* use rts/cts protection */
d370493f 71 .ht40_bands = BIT(IEEE80211_BAND_2GHZ),
7cb1b088
WYG
72};
73
26a7ca9a
JB
74static const struct iwl_eeprom_params iwl1000_eeprom_params = {
75 .regulatory_bands = {
76 EEPROM_REG_BAND_1_CHANNELS,
77 EEPROM_REG_BAND_2_CHANNELS,
78 EEPROM_REG_BAND_3_CHANNELS,
79 EEPROM_REG_BAND_4_CHANNELS,
80 EEPROM_REG_BAND_5_CHANNELS,
81 EEPROM_REG_BAND_24_HT40_CHANNELS,
82 EEPROM_REGULATORY_BAND_NO_HT40,
83 }
84};
85
65af8dea
WYG
86#define IWL_DEVICE_1000 \
87 .fw_name_pre = IWL1000_FW_PRE, \
88 .ucode_api_max = IWL1000_UCODE_API_MAX, \
ca9a4605 89 .ucode_api_ok = IWL1000_UCODE_API_OK, \
65af8dea 90 .ucode_api_min = IWL1000_UCODE_API_MIN, \
2d771cb6 91 .device_family = IWL_DEVICE_FAMILY_1000, \
dae66d0d
EG
92 .max_inst_size = IWLAGN_RTC_INST_SIZE, \
93 .max_data_size = IWLAGN_RTC_DATA_SIZE, \
b7998c8b
EL
94 .nvm_ver = EEPROM_1000_EEPROM_VERSION, \
95 .nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
65af8dea 96 .base_params = &iwl1000_base_params, \
26a7ca9a 97 .eeprom_params = &iwl1000_eeprom_params, \
540623ca
EG
98 .led_mode = IWL_LED_BLINK, \
99 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
65af8dea 100
706c4ff6 101const struct iwl_cfg iwl1000_bgn_cfg = {
7cb1b088 102 .name = "Intel(R) Centrino(R) Wireless-N 1000 BGN",
65af8dea 103 IWL_DEVICE_1000,
7cb1b088
WYG
104 .ht_params = &iwl1000_ht_params,
105};
c5d05698 106
706c4ff6 107const struct iwl_cfg iwl1000_bg_cfg = {
c11362c0 108 .name = "Intel(R) Centrino(R) Wireless-N 1000 BG",
65af8dea 109 IWL_DEVICE_1000,
4bd0914f
WYG
110};
111
65af8dea
WYG
112#define IWL_DEVICE_100 \
113 .fw_name_pre = IWL100_FW_PRE, \
114 .ucode_api_max = IWL100_UCODE_API_MAX, \
ca9a4605 115 .ucode_api_ok = IWL100_UCODE_API_OK, \
65af8dea 116 .ucode_api_min = IWL100_UCODE_API_MIN, \
2d771cb6 117 .device_family = IWL_DEVICE_FAMILY_100, \
dae66d0d
EG
118 .max_inst_size = IWLAGN_RTC_INST_SIZE, \
119 .max_data_size = IWLAGN_RTC_DATA_SIZE, \
b7998c8b
EL
120 .nvm_ver = EEPROM_1000_EEPROM_VERSION, \
121 .nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
65af8dea 122 .base_params = &iwl1000_base_params, \
26a7ca9a 123 .eeprom_params = &iwl1000_eeprom_params, \
65af8dea 124 .led_mode = IWL_LED_RF_STATE, \
540623ca
EG
125 .rx_with_siso_diversity = true, \
126 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
65af8dea 127
706c4ff6 128const struct iwl_cfg iwl100_bgn_cfg = {
638514ff 129 .name = "Intel(R) Centrino(R) Wireless-N 100 BGN",
65af8dea 130 IWL_DEVICE_100,
7cb1b088 131 .ht_params = &iwl1000_ht_params,
1de19ecc
JS
132};
133
706c4ff6 134const struct iwl_cfg iwl100_bg_cfg = {
638514ff 135 .name = "Intel(R) Centrino(R) Wireless-N 100 BG",
65af8dea 136 IWL_DEVICE_100,
1de19ecc
JS
137};
138
78cbcf2b
MV
139MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_OK));
140MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_OK));
This page took 0.684397 seconds and 5 git commands to generate.