WiFi: add rtl8189es/etv support, Optimization wifi configuration.
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rockchip_wlan / rtl8189es / core / rtw_rf.c
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 #define _RTW_RF_C_
21
22 #include <drv_types.h>
23
24
25 struct ch_freq {
26         u32 channel;
27         u32 frequency;
28 };
29
30 struct ch_freq ch_freq_map[] = {
31         {1, 2412},{2, 2417},{3, 2422},{4, 2427},{5, 2432},
32         {6, 2437},{7, 2442},{8, 2447},{9, 2452},{10, 2457},
33         {11, 2462},{12, 2467},{13, 2472},{14, 2484},
34         /*  UNII */
35         {36, 5180},{40, 5200},{44, 5220},{48, 5240},{52, 5260},
36         {56, 5280},{60, 5300},{64, 5320},{149, 5745},{153, 5765},
37         {157, 5785},{161, 5805},{165, 5825},{167, 5835},{169, 5845},
38         {171, 5855},{173, 5865},
39         /* HiperLAN2 */
40         {100, 5500},{104, 5520},{108, 5540},{112, 5560},{116, 5580},
41         {120, 5600},{124, 5620},{128, 5640},{132, 5660},{136, 5680},
42         {140, 5700},
43         /* Japan MMAC */
44         {34, 5170},{38, 5190},{42, 5210},{46, 5230},
45         /*  Japan */
46         {184, 4920},{188, 4940},{192, 4960},{196, 4980},
47         {208, 5040},/* Japan, means J08 */
48         {212, 5060},/* Japan, means J12 */
49         {216, 5080},/* Japan, means J16 */
50 };
51
52 int ch_freq_map_num = (sizeof(ch_freq_map) / sizeof(struct ch_freq));
53
54 u32 rtw_ch2freq(u32 channel)
55 {
56         u8      i;
57         u32     freq = 0;
58
59         for (i = 0; i < ch_freq_map_num; i++)
60         {
61                 if (channel == ch_freq_map[i].channel)
62                 {
63                         freq = ch_freq_map[i].frequency;
64                                 break;
65                 }
66         }
67         if (i == ch_freq_map_num)
68                 freq = 2412;
69
70         return freq;
71 }
72
73 u32 rtw_freq2ch(u32 freq)
74 {
75         u8      i;
76         u32     ch = 0;
77
78         for (i = 0; i < ch_freq_map_num; i++)
79         {
80                 if (freq == ch_freq_map[i].frequency)
81                 {
82                         ch = ch_freq_map[i].channel;
83                                 break;
84                 }
85         }
86         if (i == ch_freq_map_num)
87                 ch = 1;
88
89         return ch;
90 }
91