net: wireless: rockchip_wlan: add rtl8723cs support
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rockchip_wlan / rtl8723cs / hal / efuse / rtl8703b / HalEfuseMask8703B_USB.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
21 /* #include "Mp_Precomp.h" */
22 /* #include "../odm_precomp.h" */
23
24 #include <drv_types.h>
25 #include "HalEfuseMask8703B_USB.h"
26 /******************************************************************************
27 *                           MUSB.TXT
28 ******************************************************************************/
29
30 u1Byte Array_MP_8703B_MUSB[] = {
31         0xFF,
32         0xF3,
33         0x00,
34         0x0E,
35         0x70,
36         0x00,
37         0x00,
38         0x00,
39         0x00,
40         0x00,
41         0x00,
42         0x07,
43         0xF1,
44         0x00,
45         0x00,
46         0x00,
47         0xFF,
48         0xFF,
49         0xFF,
50         0xFF,
51         0xB0,
52         0x00,
53         0x00,
54         0x00,
55         0x00,
56         0x00,
57         0x00,
58         0x00,
59         0x00,
60         0x00,
61         0x00,
62         0x00,
63
64 };
65
66 u2Byte
67 EFUSE_GetArrayLen_MP_8703B_MUSB(VOID)
68 {
69         return sizeof(Array_MP_8703B_MUSB) / sizeof(u1Byte);
70 }
71
72 VOID
73 EFUSE_GetMaskArray_MP_8703B_MUSB(
74         IN      OUT pu1Byte Array
75 )
76 {
77         u2Byte len = EFUSE_GetArrayLen_MP_8703B_MUSB(), i = 0;
78
79         for (i = 0; i < len; ++i)
80                 Array[i] = Array_MP_8703B_MUSB[i];
81 }
82 BOOLEAN
83 EFUSE_IsAddressMasked_MP_8703B_MUSB(
84         IN   u2Byte  Offset
85 )
86 {
87         int r = Offset / 16;
88         int c = (Offset % 16) / 2;
89         int result = 0;
90
91         if (c < 4) /* Upper double word */
92                 result = (Array_MP_8703B_MUSB[r] & (0x10 << c));
93         else
94                 result = (Array_MP_8703B_MUSB[r] & (0x01 << (c - 4)));
95
96         return (result > 0) ? 0 : 1;
97 }