]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/rtl8188eu/hal/pwrseqcmd.c
staging: rtl8188eu: remove PWR_INTF_*_MSK macro definitions and interface_mask of...
[karo-tx-linux.git] / drivers / staging / rtl8188eu / hal / pwrseqcmd.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 #include <pwrseqcmd.h>
21 #include <usb_ops_linux.h>
22
23 /* This routine deals with the Power Configuration CMDs parsing
24  * for RTL8723/RTL8188E Series IC.
25  */
26 u8 rtl88eu_pwrseqcmdparsing(struct adapter *padapter, u8 cut_vers,
27                             struct wl_pwr_cfg pwrseqcmd[])
28 {
29         struct wl_pwr_cfg pwrcfgcmd = {0};
30         u8 poll_bit = false;
31         u32 aryidx = 0;
32         u8 value = 0;
33         u32 offset = 0;
34         u32 poll_count = 0; /*  polling autoload done. */
35         u32 max_poll_count = 5000;
36
37         do {
38                 pwrcfgcmd = pwrseqcmd[aryidx];
39
40                 RT_TRACE(_module_hal_init_c_, _drv_info_,
41                          ("rtl88eu_pwrseqcmdparsing: offset(%#x) cut_msk(%#x)"
42                           " base(%#x) cmd(%#x)"
43                           "msk(%#x) value(%#x)\n",
44                          GET_PWR_CFG_OFFSET(pwrcfgcmd),
45                          GET_PWR_CFG_CUT_MASK(pwrcfgcmd),
46                          GET_PWR_CFG_BASE(pwrcfgcmd),
47                          GET_PWR_CFG_CMD(pwrcfgcmd),
48                          GET_PWR_CFG_MASK(pwrcfgcmd),
49                          GET_PWR_CFG_VALUE(pwrcfgcmd)));
50
51                 /* Only Handle the command whose CUT is matched */
52                 if (GET_PWR_CFG_CUT_MASK(pwrcfgcmd) & cut_vers) {
53                         switch (GET_PWR_CFG_CMD(pwrcfgcmd)) {
54                         case PWR_CMD_READ:
55                                 RT_TRACE(_module_hal_init_c_, _drv_info_,
56                                          ("rtl88eu_pwrseqcmdparsing: PWR_CMD_READ\n"));
57                                 break;
58                         case PWR_CMD_WRITE:
59                                 RT_TRACE(_module_hal_init_c_, _drv_info_,
60                                          ("rtl88eu_pwrseqcmdparsing: PWR_CMD_WRITE\n"));
61                                 offset = GET_PWR_CFG_OFFSET(pwrcfgcmd);
62
63                                 /*  Read the value from system register */
64                                 value = usb_read8(padapter, offset);
65
66                                 value &= ~(GET_PWR_CFG_MASK(pwrcfgcmd));
67                                 value |= (GET_PWR_CFG_VALUE(pwrcfgcmd) &
68                                           GET_PWR_CFG_MASK(pwrcfgcmd));
69
70                                 /*  Write the value back to system register */
71                                 usb_write8(padapter, offset, value);
72                                 break;
73                         case PWR_CMD_POLLING:
74                                 RT_TRACE(_module_hal_init_c_, _drv_info_,
75                                          ("rtl88eu_pwrseqcmdparsing: PWR_CMD_POLLING\n"));
76
77                                 poll_bit = false;
78                                 offset = GET_PWR_CFG_OFFSET(pwrcfgcmd);
79                                 do {
80                                         value = usb_read8(padapter, offset);
81                                         value &= GET_PWR_CFG_MASK(pwrcfgcmd);
82
83                                         if (value == (GET_PWR_CFG_VALUE(pwrcfgcmd) &
84                                                       GET_PWR_CFG_MASK(pwrcfgcmd)))
85                                                 poll_bit = true;
86                                         else
87                                                 udelay(10);
88
89                                         if (poll_count++ > max_poll_count) {
90                                                 DBG_88E("Fail to polling Offset[%#x]\n", offset);
91                                                 return false;
92                                         }
93                                 } while (!poll_bit);
94                                 break;
95                         case PWR_CMD_DELAY:
96                                 RT_TRACE(_module_hal_init_c_, _drv_info_,
97                                          ("rtl88eu_pwrseqcmdparsing: PWR_CMD_DELAY\n"));
98                                 if (GET_PWR_CFG_VALUE(pwrcfgcmd) == PWRSEQ_DELAY_US)
99                                         udelay(GET_PWR_CFG_OFFSET(pwrcfgcmd));
100                                 else
101                                         udelay(GET_PWR_CFG_OFFSET(pwrcfgcmd)*1000);
102                                 break;
103                         case PWR_CMD_END:
104                                 /* When this command is parsed, end the process */
105                                 RT_TRACE(_module_hal_init_c_, _drv_info_,
106                                          ("rtl88eu_pwrseqcmdparsing: PWR_CMD_END\n"));
107                                 return true;
108                         default:
109                                 RT_TRACE(_module_hal_init_c_, _drv_err_,
110                                          ("rtl88eu_pwrseqcmdparsing: Unknown CMD!!\n"));
111                                 break;
112                         }
113                 }
114
115                 aryidx++;/* Add Array Index */
116         } while (1);
117         return true;
118 }