net: wireless: rockchip_wlan: add rtl8188eu support
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rockchip_wlan / rtl8188eu / hal / phydm / phydm_noisemonitor.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
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  *
19  *****************************************************************************/
20 #ifndef __ODMNOISEMONITOR_H__
21 #define __ODMNOISEMONITOR_H__
22
23 #define ODM_MAX_CHANNEL_NUM                                     38//14+24
24 struct noise_level
25 {
26         //u1Byte                                value_a, value_b;
27         u1Byte                          value[MAX_RF_PATH];
28         //s1Byte                                sval_a, sval_b;
29         s1Byte                          sval[MAX_RF_PATH];
30         
31         //s4Byte                                noise_a=0, noise_b=0,sum_a=0, sum_b=0;
32         //s4Byte                                noise[ODM_RF_PATH_MAX];
33         s4Byte                          sum[MAX_RF_PATH];
34         //u1Byte                                valid_cnt_a=0, valid_cnt_b=0, 
35         u1Byte                          valid[MAX_RF_PATH];
36         u1Byte                          valid_cnt[MAX_RF_PATH];
37
38 };
39
40
41 typedef struct _ODM_NOISE_MONITOR_
42 {
43         s1Byte                  noise[MAX_RF_PATH];
44         s2Byte                  noise_all;      
45 }ODM_NOISE_MONITOR;
46
47 s2Byte ODM_InbandNoise_Monitor(PVOID pDM_VOID,u8 bPauseDIG,u8 IGIValue,u32 max_time);
48
49 #endif