2014-12-19 06:59:46 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
|
|
|
*
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "odm_precomp.h"
|
2015-03-01 16:17:09 +00:00
|
|
|
|
2015-03-02 23:21:23 +00:00
|
|
|
static bool
|
2014-12-19 06:59:46 +00:00
|
|
|
CheckCondition(
|
2014-12-30 22:55:10 +00:00
|
|
|
const u32 Condition,
|
|
|
|
const u32 Hex
|
2014-12-19 06:59:46 +00:00
|
|
|
)
|
|
|
|
{
|
2014-12-30 22:55:10 +00:00
|
|
|
u32 _board = (Hex & 0x000000FF);
|
|
|
|
u32 _interface = (Hex & 0x0000FF00) >> 8;
|
|
|
|
u32 _platform = (Hex & 0x00FF0000) >> 16;
|
|
|
|
u32 cond = Condition;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
if ( Condition == 0xCDCDCDCD )
|
2015-03-02 23:25:27 +00:00
|
|
|
return true;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
cond = Condition & 0x000000FF;
|
|
|
|
if ( (_board != cond) && (cond != 0xFF) )
|
2015-03-02 23:25:27 +00:00
|
|
|
return false;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
cond = Condition & 0x0000FF00;
|
|
|
|
cond = cond >> 8;
|
|
|
|
if ( ((_interface & cond) == 0) && (cond != 0x07) )
|
2015-03-02 23:25:27 +00:00
|
|
|
return false;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
cond = Condition & 0x00FF0000;
|
|
|
|
cond = cond >> 16;
|
|
|
|
if ( ((_platform & cond) == 0) && (cond != 0x0F) )
|
2015-03-02 23:25:27 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
2014-12-19 06:59:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* MAC_REG.TXT
|
|
|
|
******************************************************************************/
|
|
|
|
|
2015-01-29 21:27:28 +00:00
|
|
|
static u32 Array_MAC_REG_8188E[] = {
|
2014-12-19 06:59:46 +00:00
|
|
|
0x026, 0x00000041,
|
|
|
|
0x027, 0x00000035,
|
|
|
|
0xFF0F0718, 0xABCD,
|
|
|
|
0x040, 0x0000000C,
|
|
|
|
0xCDCDCDCD, 0xCDCD,
|
|
|
|
0x040, 0x00000000,
|
|
|
|
0xFF0F0718, 0xDEAD,
|
|
|
|
0x428, 0x0000000A,
|
|
|
|
0x429, 0x00000010,
|
|
|
|
0x430, 0x00000000,
|
|
|
|
0x431, 0x00000001,
|
|
|
|
0x432, 0x00000002,
|
|
|
|
0x433, 0x00000004,
|
|
|
|
0x434, 0x00000005,
|
|
|
|
0x435, 0x00000006,
|
|
|
|
0x436, 0x00000007,
|
|
|
|
0x437, 0x00000008,
|
|
|
|
0x438, 0x00000000,
|
|
|
|
0x439, 0x00000000,
|
|
|
|
0x43A, 0x00000001,
|
|
|
|
0x43B, 0x00000002,
|
|
|
|
0x43C, 0x00000004,
|
|
|
|
0x43D, 0x00000005,
|
|
|
|
0x43E, 0x00000006,
|
|
|
|
0x43F, 0x00000007,
|
|
|
|
0x440, 0x0000005D,
|
|
|
|
0x441, 0x00000001,
|
|
|
|
0x442, 0x00000000,
|
|
|
|
0x444, 0x00000015,
|
|
|
|
0x445, 0x000000F0,
|
|
|
|
0x446, 0x0000000F,
|
|
|
|
0x447, 0x00000000,
|
|
|
|
0x458, 0x00000041,
|
|
|
|
0x459, 0x000000A8,
|
|
|
|
0x45A, 0x00000072,
|
|
|
|
0x45B, 0x000000B9,
|
|
|
|
0x460, 0x00000066,
|
|
|
|
0x461, 0x00000066,
|
|
|
|
0x480, 0x00000008,
|
|
|
|
0x4C8, 0x000000FF,
|
|
|
|
0x4C9, 0x00000008,
|
|
|
|
0x4CC, 0x000000FF,
|
|
|
|
0x4CD, 0x000000FF,
|
|
|
|
0x4CE, 0x00000001,
|
|
|
|
0x4D3, 0x00000001,
|
|
|
|
0x500, 0x00000026,
|
|
|
|
0x501, 0x000000A2,
|
|
|
|
0x502, 0x0000002F,
|
|
|
|
0x503, 0x00000000,
|
|
|
|
0x504, 0x00000028,
|
|
|
|
0x505, 0x000000A3,
|
|
|
|
0x506, 0x0000005E,
|
|
|
|
0x507, 0x00000000,
|
|
|
|
0x508, 0x0000002B,
|
|
|
|
0x509, 0x000000A4,
|
|
|
|
0x50A, 0x0000005E,
|
|
|
|
0x50B, 0x00000000,
|
|
|
|
0x50C, 0x0000004F,
|
|
|
|
0x50D, 0x000000A4,
|
|
|
|
0x50E, 0x00000000,
|
|
|
|
0x50F, 0x00000000,
|
|
|
|
0x512, 0x0000001C,
|
|
|
|
0x514, 0x0000000A,
|
|
|
|
0x516, 0x0000000A,
|
|
|
|
0x525, 0x0000004F,
|
|
|
|
0x550, 0x00000010,
|
|
|
|
0x551, 0x00000010,
|
|
|
|
0x559, 0x00000002,
|
|
|
|
0x55D, 0x000000FF,
|
|
|
|
0x605, 0x00000030,
|
|
|
|
0x608, 0x0000000E,
|
|
|
|
0x609, 0x0000002A,
|
|
|
|
0x620, 0x000000FF,
|
|
|
|
0x621, 0x000000FF,
|
|
|
|
0x622, 0x000000FF,
|
|
|
|
0x623, 0x000000FF,
|
|
|
|
0x624, 0x000000FF,
|
|
|
|
0x625, 0x000000FF,
|
|
|
|
0x626, 0x000000FF,
|
|
|
|
0x627, 0x000000FF,
|
|
|
|
0x652, 0x00000020,
|
|
|
|
0x63C, 0x0000000A,
|
|
|
|
0x63D, 0x0000000A,
|
|
|
|
0x63E, 0x0000000E,
|
|
|
|
0x63F, 0x0000000E,
|
|
|
|
0x640, 0x00000040,
|
|
|
|
0x66E, 0x00000005,
|
|
|
|
0x700, 0x00000021,
|
|
|
|
0x701, 0x00000043,
|
|
|
|
0x702, 0x00000065,
|
|
|
|
0x703, 0x00000087,
|
|
|
|
0x708, 0x00000021,
|
|
|
|
0x709, 0x00000043,
|
|
|
|
0x70A, 0x00000065,
|
|
|
|
0x70B, 0x00000087,
|
|
|
|
};
|
|
|
|
|
|
|
|
HAL_STATUS
|
|
|
|
ODM_ReadAndConfig_MAC_REG_8188E(
|
2015-03-13 17:06:38 +00:00
|
|
|
PDM_ODM_T pDM_Odm
|
2014-12-19 06:59:46 +00:00
|
|
|
)
|
|
|
|
{
|
2015-08-15 18:04:12 +00:00
|
|
|
#define READ_NEXT_PAIR(v1, v2, i) do { i += 2; v1 = Array[i]; v2 = Array[i+1]; } while (0)
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-30 22:55:10 +00:00
|
|
|
u32 hex = 0;
|
|
|
|
u32 i = 0;
|
2014-12-30 22:52:58 +00:00
|
|
|
u16 count = 0;
|
2014-12-30 22:55:10 +00:00
|
|
|
u32 * ptr_array = NULL;
|
2014-12-30 23:50:44 +00:00
|
|
|
u8 platform = pDM_Odm->SupportPlatform;
|
|
|
|
u8 interfaceValue = pDM_Odm->SupportInterface;
|
|
|
|
u8 board = pDM_Odm->BoardType;
|
2014-12-30 22:55:10 +00:00
|
|
|
u32 ArrayLen = sizeof(Array_MAC_REG_8188E)/sizeof(u32);
|
|
|
|
u32 * Array = Array_MAC_REG_8188E;
|
2015-03-02 23:25:27 +00:00
|
|
|
bool biol = false;
|
2014-12-19 06:59:46 +00:00
|
|
|
HAL_STATUS rst =HAL_STATUS_SUCCESS;
|
|
|
|
hex += board;
|
|
|
|
hex += interfaceValue << 8;
|
|
|
|
hex += platform << 16;
|
|
|
|
hex += 0xFF000000;
|
|
|
|
|
2015-03-01 16:17:09 +00:00
|
|
|
for (i = 0; i < ArrayLen; i += 2 ) {
|
2014-12-30 22:55:10 +00:00
|
|
|
u32 v1 = Array[i];
|
|
|
|
u32 v2 = Array[i+1];
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-02-20 00:51:33 +00:00
|
|
|
/* This (offset, data) pair meets the condition. */
|
2014-12-19 06:59:46 +00:00
|
|
|
if ( v1 < 0xCDCDCDCD )
|
|
|
|
{
|
2015-03-01 16:17:09 +00:00
|
|
|
odm_ConfigMAC_8188E(pDM_Odm, v1, (u8)v2);
|
|
|
|
continue;
|
|
|
|
} else { /* This line is the start line of branch. */
|
2014-12-19 06:59:46 +00:00
|
|
|
if ( !CheckCondition(Array[i], hex) )
|
2015-02-20 00:51:33 +00:00
|
|
|
{ /* Discard the following (offset, data) pairs. */
|
2014-12-19 06:59:46 +00:00
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
|
|
|
while ( v2 != 0xDEAD &&
|
|
|
|
v2 != 0xCDEF &&
|
|
|
|
v2 != 0xCDCD && i < ArrayLen -2)
|
|
|
|
{
|
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
|
|
|
}
|
2015-02-20 00:51:33 +00:00
|
|
|
i -= 2; /* prevent from for-loop += 2 */
|
2014-12-19 06:59:46 +00:00
|
|
|
}
|
2015-02-20 00:51:33 +00:00
|
|
|
else /* Configure matched pairs and skip to end of if-else. */
|
2014-12-19 06:59:46 +00:00
|
|
|
{
|
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
2015-03-01 16:17:09 +00:00
|
|
|
while (v2 != 0xDEAD &&
|
|
|
|
v2 != 0xCDEF &&
|
|
|
|
v2 != 0xCDCD && i < ArrayLen -2) {
|
|
|
|
odm_ConfigMAC_8188E(pDM_Odm, v1, (u8)v2);
|
2014-12-19 06:59:46 +00:00
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
|
|
|
}
|
|
|
|
while (v2 != 0xDEAD && i < ArrayLen -2)
|
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rst;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* MAC_REG_ICUT.TXT
|
|
|
|
******************************************************************************/
|
|
|
|
|
2015-01-29 21:27:28 +00:00
|
|
|
static u32 Array_MP_8188E_MAC_REG_ICUT[] = {
|
2014-12-19 06:59:46 +00:00
|
|
|
0x026, 0x00000041,
|
|
|
|
0x027, 0x00000035,
|
|
|
|
0x428, 0x0000000A,
|
|
|
|
0x429, 0x00000010,
|
|
|
|
0x430, 0x00000000,
|
|
|
|
0x431, 0x00000001,
|
|
|
|
0x432, 0x00000002,
|
|
|
|
0x433, 0x00000004,
|
|
|
|
0x434, 0x00000005,
|
|
|
|
0x435, 0x00000006,
|
|
|
|
0x436, 0x00000007,
|
|
|
|
0x437, 0x00000008,
|
|
|
|
0x438, 0x00000000,
|
|
|
|
0x439, 0x00000000,
|
|
|
|
0x43A, 0x00000001,
|
|
|
|
0x43B, 0x00000002,
|
|
|
|
0x43C, 0x00000004,
|
|
|
|
0x43D, 0x00000005,
|
|
|
|
0x43E, 0x00000006,
|
|
|
|
0x43F, 0x00000007,
|
|
|
|
0x440, 0x0000005D,
|
|
|
|
0x441, 0x00000001,
|
|
|
|
0x442, 0x00000000,
|
|
|
|
0x444, 0x00000015,
|
|
|
|
0x445, 0x000000F0,
|
|
|
|
0x446, 0x0000000F,
|
|
|
|
0x447, 0x00000000,
|
|
|
|
0x458, 0x00000041,
|
|
|
|
0x459, 0x000000A8,
|
|
|
|
0x45A, 0x00000072,
|
|
|
|
0x45B, 0x000000B9,
|
|
|
|
0x460, 0x00000066,
|
|
|
|
0x461, 0x00000066,
|
|
|
|
0x480, 0x00000008,
|
|
|
|
0x4C8, 0x000000FF,
|
|
|
|
0x4C9, 0x00000008,
|
|
|
|
0x4CC, 0x000000FF,
|
|
|
|
0x4CD, 0x000000FF,
|
|
|
|
0x4CE, 0x00000001,
|
|
|
|
0x4D3, 0x00000001,
|
|
|
|
0x500, 0x00000026,
|
|
|
|
0x501, 0x000000A2,
|
|
|
|
0x502, 0x0000002F,
|
|
|
|
0x503, 0x00000000,
|
|
|
|
0x504, 0x00000028,
|
|
|
|
0x505, 0x000000A3,
|
|
|
|
0x506, 0x0000005E,
|
|
|
|
0x507, 0x00000000,
|
|
|
|
0x508, 0x0000002B,
|
|
|
|
0x509, 0x000000A4,
|
|
|
|
0x50A, 0x0000005E,
|
|
|
|
0x50B, 0x00000000,
|
|
|
|
0x50C, 0x0000004F,
|
|
|
|
0x50D, 0x000000A4,
|
|
|
|
0x50E, 0x00000000,
|
|
|
|
0x50F, 0x00000000,
|
|
|
|
0x512, 0x0000001C,
|
|
|
|
0x514, 0x0000000A,
|
|
|
|
0x516, 0x0000000A,
|
|
|
|
0x525, 0x0000004F,
|
|
|
|
0x550, 0x00000010,
|
|
|
|
0x551, 0x00000010,
|
|
|
|
0x559, 0x00000002,
|
|
|
|
0x55D, 0x000000FF,
|
|
|
|
0x605, 0x00000030,
|
|
|
|
0x608, 0x0000000E,
|
|
|
|
0x609, 0x0000002A,
|
|
|
|
0x620, 0x000000FF,
|
|
|
|
0x621, 0x000000FF,
|
|
|
|
0x622, 0x000000FF,
|
|
|
|
0x623, 0x000000FF,
|
|
|
|
0x624, 0x000000FF,
|
|
|
|
0x625, 0x000000FF,
|
|
|
|
0x626, 0x000000FF,
|
|
|
|
0x627, 0x000000FF,
|
|
|
|
0x652, 0x00000020,
|
|
|
|
0x63C, 0x0000000A,
|
|
|
|
0x63D, 0x0000000A,
|
|
|
|
0x63E, 0x0000000E,
|
|
|
|
0x63F, 0x0000000E,
|
|
|
|
0x640, 0x00000040,
|
|
|
|
0x66E, 0x00000005,
|
|
|
|
0x700, 0x00000021,
|
|
|
|
0x701, 0x00000043,
|
|
|
|
0x702, 0x00000065,
|
|
|
|
0x703, 0x00000087,
|
|
|
|
0x708, 0x00000021,
|
|
|
|
0x709, 0x00000043,
|
|
|
|
0x70A, 0x00000065,
|
|
|
|
0x70B, 0x00000087,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
ODM_ReadAndConfig_MAC_REG_ICUT_8188E(
|
2015-03-13 17:06:38 +00:00
|
|
|
PDM_ODM_T pDM_Odm
|
2014-12-19 06:59:46 +00:00
|
|
|
)
|
|
|
|
{
|
2015-08-15 18:04:12 +00:00
|
|
|
#define READ_NEXT_PAIR(v1, v2, i) do { i += 2; v1 = Array[i]; v2 = Array[i+1]; } while (0)
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-30 22:55:10 +00:00
|
|
|
u32 hex = 0;
|
|
|
|
u32 i = 0;
|
2014-12-30 22:52:58 +00:00
|
|
|
u16 count = 0;
|
2014-12-30 22:55:10 +00:00
|
|
|
u32 * ptr_array = NULL;
|
2014-12-30 23:50:44 +00:00
|
|
|
u8 platform = pDM_Odm->SupportPlatform;
|
|
|
|
u8 _interface = pDM_Odm->SupportInterface;
|
|
|
|
u8 board = pDM_Odm->BoardType;
|
2014-12-30 22:55:10 +00:00
|
|
|
u32 ArrayLen = sizeof(Array_MP_8188E_MAC_REG_ICUT)/sizeof(u32);
|
|
|
|
u32 * Array = Array_MP_8188E_MAC_REG_ICUT;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
hex += board;
|
|
|
|
hex += _interface << 8;
|
|
|
|
hex += platform << 16;
|
|
|
|
hex += 0xFF000000;
|
|
|
|
ODM_RT_TRACE(pDM_Odm, ODM_COMP_INIT, ODM_DBG_TRACE, ("===> ODM_ReadAndConfig_MP_8188E_MAC_REG_ICUT, hex = 0x%X\n", hex));
|
|
|
|
|
2015-03-10 16:18:03 +00:00
|
|
|
for (i = 0; i < ArrayLen; i += 2 ) {
|
|
|
|
u32 v1 = Array[i];
|
|
|
|
u32 v2 = Array[i+1];
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-03-10 16:18:03 +00:00
|
|
|
/* This (offset, data) pair meets the condition. */
|
|
|
|
if ( v1 < 0xCDCDCDCD ) {
|
2014-12-30 23:50:44 +00:00
|
|
|
odm_ConfigMAC_8188E(pDM_Odm, v1, (u8)v2);
|
2015-03-10 16:18:03 +00:00
|
|
|
continue;
|
|
|
|
} else
|
2015-02-20 00:51:33 +00:00
|
|
|
{ /* This line is the start line of branch. */
|
2015-03-10 16:18:03 +00:00
|
|
|
if ( !CheckCondition(Array[i], hex) )
|
|
|
|
{ /* Discard the following (offset, data) pairs. */
|
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
|
|
|
while (v2 != 0xDEAD &&
|
|
|
|
v2 != 0xCDEF &&
|
|
|
|
v2 != 0xCDCD && i < ArrayLen -2)
|
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
|
|
|
i -= 2; /* prevent from for-loop += 2 */
|
|
|
|
} else /* Configure matched pairs and skip to end of if-else. */
|
|
|
|
{
|
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
|
|
|
while (v2 != 0xDEAD &&
|
|
|
|
v2 != 0xCDEF &&
|
|
|
|
v2 != 0xCDCD && i < ArrayLen -2) {
|
2014-12-30 23:50:44 +00:00
|
|
|
odm_ConfigMAC_8188E(pDM_Odm, v1, (u8)v2);
|
2015-03-10 16:18:03 +00:00
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
|
|
|
}
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-03-10 16:18:03 +00:00
|
|
|
while (v2 != 0xDEAD && i < ArrayLen -2)
|
|
|
|
READ_NEXT_PAIR(v1, v2, i);
|
|
|
|
}
|
2014-12-19 06:59:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|