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 #ifndef __PHYDMIQK_H__ 22 #define __PHYDMIQK_H__ 23 24 /*--------------------------Define Parameters-------------------------------*/ 25 #define LOK_delay 1 26 #define WBIQK_delay 10 27 #define TX_IQK 0 28 #define RX_IQK 1 29 #define TXIQK 0 30 #define RXIQK1 1 31 #define RXIQK2 2 32 33 #define NUM 4 34 /*---------------------------End Define Parameters-------------------------------*/ 35 36 typedef struct _IQK_INFORMATION { 37 BOOLEAN LOK_fail[NUM]; 38 BOOLEAN IQK_fail[2][NUM]; 39 u4Byte IQC_Matrix[2][NUM]; 40 u1Byte IQKtimes; 41 u4Byte RFReg18; 42 u4Byte lna_idx; 43 // BOOLEAN rxiqk_finish[4]; 44 u1Byte rxiqk_step; 45 u1Byte tmp1bcc; 46 47 u4Byte IQK_Channel[2]; 48 BOOLEAN IQK_fail_report[2][4][2]; /*channel/path/TRX(TX:0, RX:1) */ 49 u4Byte IQK_CFIR_real[2][4][2][8]; /*channel / path / TRX(TX:0, RX:1) / CFIR_real*/ 50 u4Byte IQK_CFIR_imag[2][4][2][8]; /*channel / path / TRX(TX:0, RX:1) / CFIR_imag*/ 51 u1Byte retry_count[2][4][3]; /* channel / path / (TXK:0, RXK1:1, RXK2:2) */ 52 u1Byte gs_retry_count[2][4][2]; /* channel / path / (GSRXK1:0, GSRXK2:1) */ 53 u1Byte RXIQK_fail_code[2][4]; /* channel / path 0:SRXK1 fail, 1:RXK1 fail 2:RXK2 fail */ 54 u4Byte LOK_IDAC[2][4]; /*channel / path*/ 55 u4Byte RXIQK_AGC[2][4]; /*channel / path*/ 56 u4Byte bypassIQK[2][4]; /*channel / 0xc94/0xe94*/ 57 u4Byte tmp_GNTWL; 58 BOOLEAN is_BTG; 59 60 } IQK_INFO, *PIQK_INFO; 61 62 #endif 63