]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/staging/rt2860/common/rt_rf.c
Staging: rt28x0: remove typedefs (part three)
[net-next-2.6.git] / drivers / staging / rt2860 / common / rt_rf.c
CommitLineData
ca97b838
BZ
1/*
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
ca97b838
BZ
38#include "../rt_config.h"
39
ca97b838
BZ
40#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*/
62eb734b 56int RT30xxWriteRFRegister(struct rt_rtmp_adapter *pAd,
51126deb 57 u8 regID, u8 value)
ca97b838 58{
96b3c83d 59 RF_CSR_CFG_STRUC rfcsr;
51126deb 60 u32 i = 0;
ca97b838 61
96b3c83d 62 do {
ca97b838
BZ
63 RTMP_IO_READ32(pAd, RF_CSR_CFG, &rfcsr.word);
64
65 if (!rfcsr.field.RF_CSR_KICK)
66 break;
67 i++;
68 }
96b3c83d
BZ
69 while ((i < RETRY_LIMIT)
70 && (!RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_NIC_NOT_EXIST)));
ca97b838 71
96b3c83d
BZ
72 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"));
ca97b838
BZ
76 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
ca97b838
BZ
89/*
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*/
62eb734b 104int RT30xxReadRFRegister(struct rt_rtmp_adapter *pAd,
51126deb 105 u8 regID, u8 *pValue)
ca97b838 106{
96b3c83d 107 RF_CSR_CFG_STRUC rfcsr;
51126deb 108 u32 i = 0, k = 0;
ca97b838 109
96b3c83d 110 for (i = 0; i < MAX_BUSY_COUNT; i++) {
ca97b838
BZ
111 RTMP_IO_READ32(pAd, RF_CSR_CFG, &rfcsr.word);
112
96b3c83d 113 if (rfcsr.field.RF_CSR_KICK == BUSY) {
ca97b838
BZ
114 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);
96b3c83d 121 for (k = 0; k < MAX_BUSY_COUNT; k++) {
ca97b838
BZ
122 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) &&
96b3c83d 128 (rfcsr.field.TESTCSR_RFACC_REGNUM == regID)) {
51126deb 129 *pValue = (u8)rfcsr.field.RF_CSR_DATA;
ca97b838
BZ
130 break;
131 }
132 }
96b3c83d
BZ
133 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));
ca97b838
BZ
136 return STATUS_UNSUCCESSFUL;
137 }
138
139 return STATUS_SUCCESS;
140}
141
62eb734b 142void NICInitRFRegisters(struct rt_rtmp_adapter *pAd)
ca97b838
BZ
143{
144 if (pAd->chipOps.AsicRfInit)
145 pAd->chipOps.AsicRfInit(pAd);
146}
147
62eb734b 148void RtmpChipOpsRFHook(struct rt_rtmp_adapter *pAd)
ca97b838 149{
62eb734b 150 struct rt_rtmp_chip_op *pChipOps = &pAd->chipOps;
ca97b838
BZ
151
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
96b3c83d 161 if (IS_RT30xx(pAd)) {
ca97b838
BZ
162 pChipOps->pRFRegTable = RT30xx_RFRegTable;
163 pChipOps->AsicHaltAction = RT30xxHaltAction;
164#ifdef RT3070
96b3c83d
BZ
165 if ((IS_RT3070(pAd) || IS_RT3071(pAd))
166 && (pAd->infType == RTMP_DEV_INF_USB)) {
ca97b838 167 pChipOps->AsicRfInit = NICInitRT3070RFRegisters;
96b3c83d
BZ
168 if (IS_RT3071(pAd)) {
169 pChipOps->AsicRfTurnOff =
170 RT30xxLoadRFSleepModeSetup;
171 pChipOps->AsicReverseRfFromSleepMode =
172 RT30xxReverseRFSleepModeSetup;
ca97b838
BZ
173 }
174 }
ec278fa2 175#endif /* RT3070 // */
e44fd1cf 176#ifdef RT3090
96b3c83d 177 if (IS_RT3090(pAd) && (pAd->infType == RTMP_DEV_INF_PCI)) {
e44fd1cf
BZ
178 pChipOps->AsicRfTurnOff = RT30xxLoadRFSleepModeSetup;
179 pChipOps->AsicRfInit = NICInitRT3090RFRegisters;
96b3c83d
BZ
180 pChipOps->AsicReverseRfFromSleepMode =
181 RT30xxReverseRFSleepModeSetup;
e44fd1cf 182 }
ec278fa2 183#endif /* RT3090 // */
ca97b838 184 }
ec278fa2 185#endif /* RT30xx // */
ca97b838
BZ
186}
187
ec278fa2 188#endif /* RTMP_RF_RW_SUPPORT // */