hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/******************************************************************************
 *
 * Copyright(c) 2007 - 2017 Realtek Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 *****************************************************************************/
/* ************************************************************
 * Description:
 *
 * This file is for 92CE/92CU dynamic mechanism only
 *
 *
 * ************************************************************ */
#define _RTL8703B_DM_C_
 
/* ************************************************************
 * include files
 * ************************************************************ */
#include <rtl8703b_hal.h>
 
/* ************************************************************
 * Global var
 * ************************************************************ */
#ifdef CONFIG_SUPPORT_HW_WPS_PBC
static void dm_CheckPbcGPIO(_adapter *padapter)
{
   u8    tmp1byte;
   u8    bPbcPressed = _FALSE;
 
   if (!padapter->registrypriv.hw_wps_pbc)
       return;
 
#ifdef CONFIG_USB_HCI
   tmp1byte = rtw_read8(padapter, GPIO_IO_SEL);
   tmp1byte |= (HAL_8192C_HW_GPIO_WPS_BIT);
   rtw_write8(padapter, GPIO_IO_SEL, tmp1byte);    /* enable GPIO[2] as output mode */
 
   tmp1byte &= ~(HAL_8192C_HW_GPIO_WPS_BIT);
   rtw_write8(padapter,  GPIO_IN, tmp1byte);        /* reset the floating voltage level */
 
   tmp1byte = rtw_read8(padapter, GPIO_IO_SEL);
   tmp1byte &= ~(HAL_8192C_HW_GPIO_WPS_BIT);
   rtw_write8(padapter, GPIO_IO_SEL, tmp1byte);    /* enable GPIO[2] as input mode */
 
   tmp1byte = rtw_read8(padapter, GPIO_IN);
 
   if (tmp1byte == 0xff)
       return ;
 
   if (tmp1byte & HAL_8192C_HW_GPIO_WPS_BIT)
       bPbcPressed = _TRUE;
#else
   tmp1byte = rtw_read8(padapter, GPIO_IN);
 
   if (tmp1byte == 0xff || padapter->init_adpt_in_progress)
       return ;
 
   if ((tmp1byte & HAL_8192C_HW_GPIO_WPS_BIT) == 0)
       bPbcPressed = _TRUE;
#endif
 
   if (_TRUE == bPbcPressed) {
       /* Here we only set bPbcPressed to true */
       /* After trigger PBC, the variable will be set to false */
       RTW_INFO("CheckPbcGPIO - PBC is pressed\n");
       rtw_request_wps_pbc_event(padapter);
   }
}
#endif /* #ifdef CONFIG_SUPPORT_HW_WPS_PBC */
 
 
#ifdef CONFIG_PCI_HCI
/*
 *    Description:
 *        Perform interrupt migration dynamically to reduce CPU utilization.
 *
 *    Assumption:
 *        1. Do not enable migration under WIFI test.
 *
 *    Created by Roger, 2010.03.05.
 *   */
void
dm_InterruptMigration(
       PADAPTER    Adapter
)
{
   HAL_DATA_TYPE    *pHalData = GET_HAL_DATA(Adapter);
   struct mlme_priv    *pmlmepriv = &(Adapter->mlmepriv);
   BOOLEAN            bCurrentIntMt, bCurrentACIntDisable;
   BOOLEAN            IntMtToSet = _FALSE;
   BOOLEAN            ACIntToSet = _FALSE;
 
 
   /* Retrieve current interrupt migration and Tx four ACs IMR settings first. */
   bCurrentIntMt = pHalData->bInterruptMigration;
   bCurrentACIntDisable = pHalData->bDisableTxInt;
 
   /*  */
   /* <Roger_Notes> Currently we use busy traffic for reference instead of RxIntOK counts to prevent non-linear Rx statistics */
   /* when interrupt migration is set before. 2010.03.05. */
   /*  */
   if (!Adapter->registrypriv.wifi_spec &&
       (check_fwstate(pmlmepriv, WIFI_ASOC_STATE) == _TRUE) &&
       pmlmepriv->LinkDetectInfo.bHigherBusyTraffic) {
       IntMtToSet = _TRUE;
 
       /* To check whether we should disable Tx interrupt or not. */
       if (pmlmepriv->LinkDetectInfo.bHigherBusyRxTraffic)
           ACIntToSet = _TRUE;
   }
 
   /* Update current settings. */
   if (bCurrentIntMt != IntMtToSet) {
       RTW_INFO("%s(): Update interrrupt migration(%d)\n", __FUNCTION__, IntMtToSet);
       if (IntMtToSet) {
           /*  */
           /* <Roger_Notes> Set interrrupt migration timer and corresponging Tx/Rx counter. */
           /* timer 25ns*0xfa0=100us for 0xf packets. */
           /* 2010.03.05. */
           /*  */
           rtw_write32(Adapter, REG_INT_MIG, 0xff000fa0);/* 0x306:Rx, 0x307:Tx */
           pHalData->bInterruptMigration = IntMtToSet;
       } else {
           /* Reset all interrupt migration settings. */
           rtw_write32(Adapter, REG_INT_MIG, 0);
           pHalData->bInterruptMigration = IntMtToSet;
       }
   }
 
#if 0
   if (bCurrentACIntDisable != ACIntToSet) {
       RTW_INFO("%s(): Update AC interrrupt(%d)\n", __FUNCTION__, ACIntToSet);
       if (ACIntToSet) { /*  Disable four ACs interrupts. */
           /* */
           /*  <Roger_Notes> Disable VO, VI, BE and BK four AC interrupts to gain more efficient CPU utilization. */
           /*  When extremely highly Rx OK occurs, we will disable Tx interrupts. */
           /*  2010.03.05. */
           /* */
           UpdateInterruptMask8192CE(Adapter, 0, RT_AC_INT_MASKS);
           pHalData->bDisableTxInt = ACIntToSet;
       } else { /*  Enable four ACs interrupts. */
           UpdateInterruptMask8192CE(Adapter, RT_AC_INT_MASKS, 0);
           pHalData->bDisableTxInt = ACIntToSet;
       }
   }
#endif
 
}
 
#endif
 
/*
 * Initialize GPIO setting registers
 *   */
#ifdef CONFIG_USB_HCI
static void
dm_InitGPIOSetting(
       PADAPTER    Adapter
)
{
   PHAL_DATA_TYPE        pHalData = GET_HAL_DATA(Adapter);
 
   u8    tmp1byte;
 
   tmp1byte = rtw_read8(Adapter, REG_GPIO_MUXCFG);
   tmp1byte &= (GPIOSEL_GPIO | ~GPIOSEL_ENBT);
 
   rtw_write8(Adapter, REG_GPIO_MUXCFG, tmp1byte);
}
#endif
/* ************************************************************
 * functions
 * ************************************************************ */
static void Init_ODM_ComInfo_8703b(PADAPTER    Adapter)
{
   PHAL_DATA_TYPE    pHalData = GET_HAL_DATA(Adapter);
   struct dm_struct        *pDM_Odm = &(pHalData->odmpriv);
   u8    cut_ver, fab_ver;
 
   Init_ODM_ComInfo(Adapter);
 
   odm_cmn_info_init(pDM_Odm, ODM_CMNINFO_PACKAGE_TYPE, pHalData->PackageType);
 
   fab_ver = ODM_TSMC;
   cut_ver = GET_CVID_CUT_VERSION(pHalData->version_id);
 
   RTW_INFO("%s(): Fv=%d Cv=%d\n", __func__, fab_ver, cut_ver);
   odm_cmn_info_init(pDM_Odm, ODM_CMNINFO_FAB_VER, fab_ver);
   odm_cmn_info_init(pDM_Odm, ODM_CMNINFO_CUT_VER, cut_ver);
}
 
void
rtl8703b_InitHalDm(
       PADAPTER    Adapter
)
{
   PHAL_DATA_TYPE    pHalData = GET_HAL_DATA(Adapter);
   struct dm_struct        *pDM_Odm = &(pHalData->odmpriv);
 
#ifdef CONFIG_USB_HCI
   dm_InitGPIOSetting(Adapter);
#endif
   rtw_phydm_init(Adapter);
}
 
void
rtl8703b_HalDmWatchDog(
       PADAPTER    Adapter
)
{
   BOOLEAN        bFwCurrentInPSMode = _FALSE;
   u8 bFwPSAwake = _TRUE;
   PHAL_DATA_TYPE    pHalData = GET_HAL_DATA(Adapter);
   struct pwrctrl_priv *pwrpriv = adapter_to_pwrctl(Adapter);
   u8 in_lps = _FALSE;
 
#ifdef CONFIG_MP_INCLUDED
   /* #if MP_DRIVER */
   if (Adapter->registrypriv.mp_mode == 1 && Adapter->mppriv.mp_dm == 0) /* for MP power tracking */
       return;
   /* #endif */
#endif
 
   if (!rtw_is_hw_init_completed(Adapter))
       goto skip_dm;
 
#ifdef CONFIG_LPS
   bFwCurrentInPSMode = pwrpriv->bFwCurrentInPSMode;
   rtw_hal_get_hwreg(Adapter, HW_VAR_FWLPS_RF_ON, &bFwPSAwake);
#endif
 
#ifdef CONFIG_P2P
   /* Fw is under p2p powersaving mode, driver should stop dynamic mechanism. */
   /* modifed by thomas. 2011.06.11. */
   if (Adapter->wdinfo.p2p_ps_mode)
       bFwPSAwake = _FALSE;
#endif /* CONFIG_P2P */
 
 
   if ((rtw_is_hw_init_completed(Adapter))
       && ((!bFwCurrentInPSMode) && bFwPSAwake)) {
 
       rtw_hal_check_rxfifo_full(Adapter);
       /*  */
       /* Dynamically switch RTS/CTS protection. */
       /*  */
 
#ifdef CONFIG_PCI_HCI
       /* 20100630 Joseph: Disable Interrupt Migration mechanism temporarily because it degrades Rx throughput. */
       /* Tx Migration settings. */
       /* dm_InterruptMigration(Adapter); */
 
       /* if(Adapter->HalFunc.TxCheckStuckHandler(Adapter)) */
       /*    PlatformScheduleWorkItem(&(GET_HAL_DATA(Adapter)->HalResetWorkItem)); */
#endif
   }
 
#ifdef CONFIG_DISABLE_ODM
   goto skip_dm;
#endif
#ifdef CONFIG_LPS
   if (pwrpriv->bLeisurePs && bFwCurrentInPSMode && pwrpriv->pwr_mode != PS_MODE_ACTIVE)
       in_lps = _TRUE;
#endif
 
   rtw_phydm_watchdog(Adapter, in_lps);
 
skip_dm:
 
   /* Check GPIO to determine current RF on/off and Pbc status. */
   /* Check Hardware Radio ON/OFF or not */
   /* if(Adapter->MgntInfo.PowerSaveControl.bGpioRfSw) */
   /* { */
   /* RTPRINT(FPWR, PWRHW, ("dm_CheckRfCtrlGPIO\n")); */
   /*    dm_CheckRfCtrlGPIO(Adapter); */
   /* } */
#ifdef CONFIG_SUPPORT_HW_WPS_PBC
   dm_CheckPbcGPIO(Adapter);
#endif
   return;
}
 
void rtl8703b_init_dm_priv(PADAPTER Adapter)
{
   PHAL_DATA_TYPE    pHalData = GET_HAL_DATA(Adapter);
   struct dm_struct        *podmpriv = &pHalData->odmpriv;
   Init_ODM_ComInfo_8703b(Adapter);
   odm_init_all_timers(podmpriv);
 
}
 
void rtl8703b_deinit_dm_priv(PADAPTER Adapter)
{
   PHAL_DATA_TYPE    pHalData = GET_HAL_DATA(Adapter);
   struct dm_struct        *podmpriv = &pHalData->odmpriv;
 
   odm_cancel_all_timers(podmpriv);
 
}