blob: 0adf2cd2deb75ab632d7a4d6c57dad648944edcd [file] [log] [blame]
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +02001/*
2 *************************************************************************
3 * Ralink Tech Inc.
4 * 5F., No.36, Taiyuan St., Jhubei City,
5 * Hsinchu County 302,
6 * Taiwan, R.O.C.
7 *
8 * (c) Copyright 2002-2007, Ralink Technology, Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
24 * *
25 *************************************************************************
26
27 Module Name:
28 rtmp_chip.h
29
30 Abstract:
31 Ralink Wireless Chip related definition & structures
32
33 Revision History:
34 Who When What
35 -------- ---------- ----------------------------------------------
36*/
37
38#ifndef __RTMP_CHIP_H__
39#define __RTMP_CHIP_H__
40
41#include "rtmp_type.h"
42
43#ifdef RT2860
44#include "chip/rt2860.h"
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080045#endif /* RT2860 // */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020046#ifdef RT2870
47#include "chip/rt2870.h"
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080048#endif /* RT2870 // */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020049#ifdef RT3070
50#include "chip/rt3070.h"
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080051#endif /* RT3070 // */
Bartlomiej Zolnierkiewicze44fd1c2009-09-22 20:44:24 +020052#ifdef RT3090
53#include "chip/rt3090.h"
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080054#endif /* RT3090 // */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020055
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080056/* We will have a cost down version which mac version is 0x3090xxxx */
57/* */
58/* RT3090A facts */
59/* */
60/* a) 2.4 GHz */
61/* b) Replacement for RT3090 */
62/* c) Internal LNA */
63/* d) Interference over channel #14 */
64/* e) New BBP features (e.g., SIG re-modulation) */
65/* */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020066#define IS_RT3090A(_pAd) ((((_pAd)->MACVersion & 0xffff0000) == 0x30900000))
67
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080068/* We will have a cost down version which mac version is 0x3090xxxx */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020069#define IS_RT3090(_pAd) ((((_pAd)->MACVersion & 0xffff0000) == 0x30710000) || (IS_RT3090A(_pAd)))
70
71#define IS_RT3070(_pAd) (((_pAd)->MACVersion & 0xffff0000) == 0x30700000)
72#define IS_RT3071(_pAd) (((_pAd)->MACVersion & 0xffff0000) == 0x30710000)
73#define IS_RT2070(_pAd) (((_pAd)->RfIcType == RFIC_2020) || ((_pAd)->EFuseTag == 0x27))
74
75#define IS_RT30xx(_pAd) (((_pAd)->MACVersion & 0xfff00000) == 0x30700000||IS_RT3090A(_pAd))
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080076/*#define IS_RT305X(_pAd) ((_pAd)->MACVersion == 0x28720200) */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020077
78/* RT3572, 3592, 3562, 3062 share the same MAC version */
79#define IS_RT3572(_pAd) (((_pAd)->MACVersion & 0xffff0000) == 0x35720000)
80#define IS_VERSION_BEFORE_F(_pAd) (((_pAd)->MACVersion&0xffff) <= 0x0211)
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080081/* F version is 0x0212, E version is 0x0211. 309x can save more power after F version. */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020082#define IS_VERSION_AFTER_F(_pAd) ((((_pAd)->MACVersion&0xffff) >= 0x0212) || (((_pAd)->b3090ESpecialChip == TRUE)))
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080083/* */
84/* RT3390 facts */
85/* */
86/* a) Base on RT3090 (RF IC: RT3020) */
87/* b) 2.4 GHz */
88/* c) 1x1 */
89/* d) Single chip */
90/* e) Internal components: PA and LNA */
91/* */
92/*RT3390,RT3370 */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020093#define IS_RT3390(_pAd) (((_pAd)->MACVersion & 0xFFFF0000) == 0x33900000)
94
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080095/* ------------------------------------------------------ */
96/* PCI registers - base address 0x0000 */
97/* ------------------------------------------------------ */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020098#define CHIP_PCI_CFG 0x0000
99#define CHIP_PCI_EECTRL 0x0004
100#define CHIP_PCI_MCUCTRL 0x0008
101
102#define OPT_14 0x114
103
104#define RETRY_LIMIT 10
105
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800106/* ------------------------------------------------------ */
107/* BBP & RF definition */
108/* ------------------------------------------------------ */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200109#define BUSY 1
110#define IDLE 0
111
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800112/*------------------------------------------------------------------------- */
113/* EEPROM definition */
114/*------------------------------------------------------------------------- */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200115#define EEDO 0x08
116#define EEDI 0x04
117#define EECS 0x02
118#define EESK 0x01
119#define EERL 0x80
120
121#define EEPROM_WRITE_OPCODE 0x05
122#define EEPROM_READ_OPCODE 0x06
123#define EEPROM_EWDS_OPCODE 0x10
124#define EEPROM_EWEN_OPCODE 0x13
125
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800126#define NUM_EEPROM_BBP_PARMS 19 /* Include NIC Config 0, 1, CR, TX ALC step, BBPs */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200127#define NUM_EEPROM_TX_G_PARMS 7
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800128#define EEPROM_NIC1_OFFSET 0x34 /* The address is from NIC config 0, not BBP register ID */
129#define EEPROM_NIC2_OFFSET 0x36 /* The address is from NIC config 0, not BBP register ID */
130#define EEPROM_BBP_BASE_OFFSET 0xf0 /* The address is from NIC config 0, not BBP register ID */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200131#define EEPROM_G_TX_PWR_OFFSET 0x52
132#define EEPROM_G_TX2_PWR_OFFSET 0x60
133#define EEPROM_LED1_OFFSET 0x3c
134#define EEPROM_LED2_OFFSET 0x3e
135#define EEPROM_LED3_OFFSET 0x40
136#define EEPROM_LNA_OFFSET 0x44
137#define EEPROM_RSSI_BG_OFFSET 0x46
138#define EEPROM_TXMIXER_GAIN_2_4G 0x48
139#define EEPROM_RSSI_A_OFFSET 0x4a
140#define EEPROM_TXMIXER_GAIN_5G 0x4c
141#define EEPROM_DEFINE_MAX_TXPWR 0x4e
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800142#define EEPROM_TXPOWER_BYRATE_20MHZ_2_4G 0xde /* 20MHZ 2.4G tx power. */
143#define EEPROM_TXPOWER_BYRATE_40MHZ_2_4G 0xee /* 40MHZ 2.4G tx power. */
144#define EEPROM_TXPOWER_BYRATE_20MHZ_5G 0xfa /* 20MHZ 5G tx power. */
145#define EEPROM_TXPOWER_BYRATE_40MHZ_5G 0x10a /* 40MHZ 5G tx power. */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200146#define EEPROM_A_TX_PWR_OFFSET 0x78
147#define EEPROM_A_TX2_PWR_OFFSET 0xa6
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800148/*#define EEPROM_Japan_TX_PWR_OFFSET 0x90 // 802.11j */
149/*#define EEPROM_Japan_TX2_PWR_OFFSET 0xbe */
150/*#define EEPROM_TSSI_REF_OFFSET 0x54 */
151/*#define EEPROM_TSSI_DELTA_OFFSET 0x24 */
152/*#define EEPROM_CCK_TX_PWR_OFFSET 0x62 */
153/*#define EEPROM_CALIBRATE_OFFSET 0x7c */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200154#define EEPROM_VERSION_OFFSET 0x02
155#define EEPROM_FREQ_OFFSET 0x3a
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800156#define EEPROM_TXPOWER_BYRATE 0xde /* 20MHZ power. */
157#define EEPROM_TXPOWER_DELTA 0x50 /* 20MHZ AND 40 MHZ use different power. This is delta in 40MHZ. */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200158#define VALID_EEPROM_VERSION 1
159
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200160/*
161 * EEPROM operation related marcos
162 */
163#define RT28xx_EEPROM_READ16(_pAd, _offset, _value) \
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -0800164 (_pAd)->chipOps.eeread((struct rt_rtmp_adapter *)(_pAd), (u16)(_offset), (u16 *)&(_value))
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200165
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800166/* ------------------------------------------------------------------- */
167/* E2PROM data layout */
168/* ------------------------------------------------------------------- */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200169
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800170/* */
171/* MCU_LEDCS: MCU LED Control Setting. */
172/* */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800173typedef union _MCU_LEDCS_STRUC {
174 struct {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800175 u8 LedMode:7;
176 u8 Polarity:1;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200177 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800178 u8 word;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200179} MCU_LEDCS_STRUC, *PMCU_LEDCS_STRUC;
180
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800181/* */
182/* EEPROM antenna select format */
183/* */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800184typedef union _EEPROM_ANTENNA_STRUC {
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200185 struct {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800186 u16 RxPath:4; /* 1: 1R, 2: 2R, 3: 3R */
187 u16 TxPath:4; /* 1: 1T, 2: 2T */
188 u16 RfIcType:4; /* see E2PROM document */
189 u16 Rsv:4;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800190 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800191 u16 word;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800192} EEPROM_ANTENNA_STRUC, *PEEPROM_ANTENNA_STRUC;
193
194typedef union _EEPROM_NIC_CINFIG2_STRUC {
195 struct {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800196 u16 HardwareRadioControl:1; /* 1:enable, 0:disable */
197 u16 DynamicTxAgcControl:1; /* */
198 u16 ExternalLNAForG:1; /* */
199 u16 ExternalLNAForA:1; /* external LNA enable for 2.4G */
Sebastian Dalfuß06aea992009-11-07 17:31:12 +0100200 u16 CardbusAcceleration:1; /* ! NOTE: 0 - enable, 1 - disable */
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800201 u16 BW40MSidebandForG:1;
202 u16 BW40MSidebandForA:1;
203 u16 EnableWPSPBC:1; /* WPS PBC Control bit */
204 u16 BW40MAvailForG:1; /* 0:enable, 1:disable */
205 u16 BW40MAvailForA:1; /* 0:enable, 1:disable */
206 u16 Rsv1:1; /* must be 0 */
207 u16 AntDiversity:1; /* Antenna diversity */
208 u16 Rsv2:3; /* must be 0 */
209 u16 DACTestBit:1; /* control if driver should patch the DAC issue */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800210 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800211 u16 word;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800212} EEPROM_NIC_CONFIG2_STRUC, *PEEPROM_NIC_CONFIG2_STRUC;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200213
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800214/* */
215/* TX_PWR Value valid range 0xFA(-6) ~ 0x24(36) */
216/* */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800217typedef union _EEPROM_TX_PWR_STRUC {
218 struct {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800219 char Byte0; /* Low Byte */
220 char Byte1; /* High Byte */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800221 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800222 u16 word;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800223} EEPROM_TX_PWR_STRUC, *PEEPROM_TX_PWR_STRUC;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200224
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800225typedef union _EEPROM_VERSION_STRUC {
226 struct {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800227 u8 FaeReleaseNumber; /* Low Byte */
228 u8 Version; /* High Byte */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800229 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800230 u16 word;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800231} EEPROM_VERSION_STRUC, *PEEPROM_VERSION_STRUC;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200232
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800233typedef union _EEPROM_LED_STRUC {
234 struct {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800235 u16 PolarityRDY_G:1; /* Polarity RDY_G setting. */
236 u16 PolarityRDY_A:1; /* Polarity RDY_A setting. */
237 u16 PolarityACT:1; /* Polarity ACT setting. */
238 u16 PolarityGPIO_0:1; /* Polarity GPIO#0 setting. */
239 u16 PolarityGPIO_1:1; /* Polarity GPIO#1 setting. */
240 u16 PolarityGPIO_2:1; /* Polarity GPIO#2 setting. */
241 u16 PolarityGPIO_3:1; /* Polarity GPIO#3 setting. */
242 u16 PolarityGPIO_4:1; /* Polarity GPIO#4 setting. */
243 u16 LedMode:5; /* Led mode. */
244 u16 Rsvd:3; /* Reserved */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800245 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800246 u16 word;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800247} EEPROM_LED_STRUC, *PEEPROM_LED_STRUC;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200248
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800249typedef union _EEPROM_TXPOWER_DELTA_STRUC {
250 struct {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800251 u8 DeltaValue:6; /* Tx Power dalta value (MAX=4) */
252 u8 Type:1; /* 1: plus the delta value, 0: minus the delta value */
253 u8 TxPowerEnable:1; /* Enable */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800254 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800255 u8 value;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800256} EEPROM_TXPOWER_DELTA_STRUC, *PEEPROM_TXPOWER_DELTA_STRUC;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200257
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800258#endif /* __RTMP_CHIP_H__ // */