blob: fb0ca88fa3eaf7116b7ab968c736a49d4c0389d4 [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 rt_rf.c
29
30 Abstract:
31 Ralink Wireless driver RF related functions
32
33 Revision History:
34 Who When What
35 -------- ---------- ----------------------------------------------
36*/
37
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020038#include "../rt_config.h"
39
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020040#ifdef RTMP_RF_RW_SUPPORT
41/*
42 ========================================================================
43
44 Routine Description: Write RT30xx RF register through MAC
45
46 Arguments:
47
48 Return Value:
49
50 IRQL =
51
52 Note:
53
54 ========================================================================
55*/
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -080056int RT30xxWriteRFRegister(struct rt_rtmp_adapter *pAd,
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080057 u8 regID, u8 value)
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020058{
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -080059 RF_CSR_CFG_STRUC rfcsr;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080060 u32 i = 0;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020061
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -080062 do {
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020063 RTMP_IO_READ32(pAd, RF_CSR_CFG, &rfcsr.word);
64
65 if (!rfcsr.field.RF_CSR_KICK)
66 break;
67 i++;
68 }
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -080069 while ((i < RETRY_LIMIT)
70 && (!RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_NIC_NOT_EXIST)));
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020071
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -080072 if ((i == RETRY_LIMIT)
73 || (RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_NIC_NOT_EXIST))) {
74 DBGPRINT_RAW(RT_DEBUG_ERROR,
75 ("Retry count exhausted or device removed!!!\n"));
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020076 return STATUS_UNSUCCESSFUL;
77 }
78
79 rfcsr.field.RF_CSR_WR = 1;
80 rfcsr.field.RF_CSR_KICK = 1;
81 rfcsr.field.TESTCSR_RFACC_REGNUM = regID;
82 rfcsr.field.RF_CSR_DATA = value;
83
84 RTMP_IO_WRITE32(pAd, RF_CSR_CFG, rfcsr.word);
85
86 return NDIS_STATUS_SUCCESS;
87}
88
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020089/*
90 ========================================================================
91
92 Routine Description: Read RT30xx RF register through MAC
93
94 Arguments:
95
96 Return Value:
97
98 IRQL =
99
100 Note:
101
102 ========================================================================
103*/
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -0800104int RT30xxReadRFRegister(struct rt_rtmp_adapter *pAd,
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800105 u8 regID, u8 *pValue)
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200106{
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800107 RF_CSR_CFG_STRUC rfcsr;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800108 u32 i = 0, k = 0;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200109
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800110 for (i = 0; i < MAX_BUSY_COUNT; i++) {
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200111 RTMP_IO_READ32(pAd, RF_CSR_CFG, &rfcsr.word);
112
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800113 if (rfcsr.field.RF_CSR_KICK == BUSY) {
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200114 continue;
115 }
116 rfcsr.word = 0;
117 rfcsr.field.RF_CSR_WR = 0;
118 rfcsr.field.RF_CSR_KICK = 1;
119 rfcsr.field.TESTCSR_RFACC_REGNUM = regID;
120 RTMP_IO_WRITE32(pAd, RF_CSR_CFG, rfcsr.word);
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800121 for (k = 0; k < MAX_BUSY_COUNT; k++) {
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200122 RTMP_IO_READ32(pAd, RF_CSR_CFG, &rfcsr.word);
123
124 if (rfcsr.field.RF_CSR_KICK == IDLE)
125 break;
126 }
127 if ((rfcsr.field.RF_CSR_KICK == IDLE) &&
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800128 (rfcsr.field.TESTCSR_RFACC_REGNUM == regID)) {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800129 *pValue = (u8)rfcsr.field.RF_CSR_DATA;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200130 break;
131 }
132 }
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800133 if (rfcsr.field.RF_CSR_KICK == BUSY) {
134 DBGPRINT_ERR(("RF read R%d=0x%x fail, i[%d], k[%d]\n", regID,
135 rfcsr.word, i, k));
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200136 return STATUS_UNSUCCESSFUL;
137 }
138
139 return STATUS_SUCCESS;
140}
141
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -0800142void NICInitRFRegisters(struct rt_rtmp_adapter *pAd)
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200143{
144 if (pAd->chipOps.AsicRfInit)
145 pAd->chipOps.AsicRfInit(pAd);
146}
147
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -0800148void RtmpChipOpsRFHook(struct rt_rtmp_adapter *pAd)
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200149{
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -0800150 struct rt_rtmp_chip_op *pChipOps = &pAd->chipOps;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200151
152 pChipOps->pRFRegTable = NULL;
153 pChipOps->AsicRfInit = NULL;
154 pChipOps->AsicRfTurnOn = NULL;
155 pChipOps->AsicRfTurnOff = NULL;
156 pChipOps->AsicReverseRfFromSleepMode = NULL;
157 pChipOps->AsicHaltAction = NULL;
158 /* We depends on RfICType and MACVersion to assign the corresponding operation callbacks. */
159
160#ifdef RT30xx
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800161 if (IS_RT30xx(pAd)) {
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200162 pChipOps->pRFRegTable = RT30xx_RFRegTable;
163 pChipOps->AsicHaltAction = RT30xxHaltAction;
164#ifdef RT3070
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800165 if ((IS_RT3070(pAd) || IS_RT3071(pAd))
166 && (pAd->infType == RTMP_DEV_INF_USB)) {
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200167 pChipOps->AsicRfInit = NICInitRT3070RFRegisters;
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800168 if (IS_RT3071(pAd)) {
169 pChipOps->AsicRfTurnOff =
170 RT30xxLoadRFSleepModeSetup;
171 pChipOps->AsicReverseRfFromSleepMode =
172 RT30xxReverseRFSleepModeSetup;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200173 }
174 }
Bartlomiej Zolnierkiewiczec278fa2009-12-11 12:23:15 -0800175#endif /* RT3070 // */
Bartlomiej Zolnierkiewicze44fd1c2009-09-22 20:44:24 +0200176#ifdef RT3090
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800177 if (IS_RT3090(pAd) && (pAd->infType == RTMP_DEV_INF_PCI)) {
Bartlomiej Zolnierkiewicze44fd1c2009-09-22 20:44:24 +0200178 pChipOps->AsicRfTurnOff = RT30xxLoadRFSleepModeSetup;
179 pChipOps->AsicRfInit = NICInitRT3090RFRegisters;
Bartlomiej Zolnierkiewicz96b3c83d2009-12-11 12:23:13 -0800180 pChipOps->AsicReverseRfFromSleepMode =
181 RT30xxReverseRFSleepModeSetup;
Bartlomiej Zolnierkiewicze44fd1c2009-09-22 20:44:24 +0200182 }
Bartlomiej Zolnierkiewiczec278fa2009-12-11 12:23:15 -0800183#endif /* RT3090 // */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200184 }
Bartlomiej Zolnierkiewiczec278fa2009-12-11 12:23:15 -0800185#endif /* RT30xx // */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200186}
187
Bartlomiej Zolnierkiewiczec278fa2009-12-11 12:23:15 -0800188#endif /* RTMP_RF_RW_SUPPORT // */