bb_reg.cpp
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:8k
- /*****************************************************************************
- * Copyright Statement:
- * --------------------
- * This software is protected by Copyright and the information contained
- * herein is confidential. The software may not be copied and the information
- * contained herein may not be used or disclosed except with the written
- * permission of MediaTek Inc. (C) 2005
- *
- * BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
- * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
- * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
- * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
- * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
- * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
- * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
- * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
- * NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
- * SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
- *
- * BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
- * LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
- * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
- * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
- * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
- *
- * THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
- * WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
- * LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
- * RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
- * THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
- *
- *****************************************************************************/
- /*****************************************************************************
- *
- * Filename:
- * ---------
- * bb_reg.cpp
- *
- * Project:
- * --------
- * Maui META APP
- *
- * Description:
- * ------------
- * Baseband register source
- *
- * Author:
- * -------
- * Andy Ueng (mtk00490)
- *
- *============================================================================
- * HISTORY
- * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
- *------------------------------------------------------------------------------
- * $Revision$
- * $Modtime$
- * $Log$
- *
- *------------------------------------------------------------------------------
- * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
- *============================================================================
- ****************************************************************************/
- #pragma hdrstop
- #ifndef _BB_COMMON_H_
- #include "bb_common.h"
- #endif
- #ifndef _BB_REG_H_
- #include "bb_reg.h"
- #endif
- #ifndef _MAN_ACTIVE_H_
- #include "man_active.h"
- #endif
- //===========================================================================
- static CBBREG* bb_reg_ptr;
- static bool g_bIsRunning = false;
- //===========================================================================
- static void REQ_ReadRegister(void)
- {
- bb_reg_ptr->REQ_ReadRegister();
- }
- //---------------------------------------------------------------------------
- static void __stdcall CNF_ReadRegister(const RegRead_Cnf *cnf, const short token, void *usrData)
- {
- bb_reg_ptr->CNF_ReadRegister(cnf, token, usrData);
- }
- //---------------------------------------------------------------------------
- static void REQ_WriteRegister(void)
- {
- bb_reg_ptr->REQ_WriteRegister();
- }
- //---------------------------------------------------------------------------
- static void __stdcall CNF_WriteRegister(const RegWrite_Cnf *cnf, const short token, void *usrData)
- {
- bb_reg_ptr->CNF_WriteRegister(cnf, token, usrData);
- }
- //===========================================================================
- CBBREG::CBBREG(void)
- {
- g_bIsRunning = false;
- ConfirmCallback = NULL;
- }
- //---------------------------------------------------------------------------
- CBBREG::~CBBREG( )
- {
- g_bIsRunning = false;
- ConfirmCallback = 0;
- }
- //---------------------------------------------------------------------------
- void CBBREG::REQ_Stop(void)
- {
- if (!g_bIsRunning)
- {
- return;
- }
- META_Cancel_r(m_META_HANDLE_Obj.Get_MainHandle(), m_sBBID_REG);
- Confirm(METAAPP_STOP);
- }
- //---------------------------------------------------------------------------
- void CBBREG::Confirm(E_METAAPP_RESULT_T confirm_state)
- {
- if (!g_bIsRunning)
- {
- return;
- }
- g_bIsRunning = false;
- if (NULL == ConfirmCallback)
- {
- return;
- }
- m_eConfirmState = confirm_state;
- ActiveMan->SetActiveFunction(ConfirmCallback);
- }
- //===========================================================================
- void CBBREG::REQ_ReadRegister_Start(unsigned int addr)
- {
- bb_reg_ptr = this;
- g_bIsRunning = true;
- m_uiAddress = addr;
- ActiveMan->SetActiveFunction(::REQ_ReadRegister);
- }
- //-------------------------------------
- void CBBREG::REQ_ReadRegister(void)
- {
- if (!g_bIsRunning)
- {
- return;
- }
- RegRead_Req req;
- req.addr = m_uiAddress;
- META_RESULT MetaResult = META_BB_RegRead_r(m_META_HANDLE_Obj.Get_MainHandle(), &req, ::CNF_ReadRegister, &m_sBBID_REG, NULL);
- DWORD wait_result;
- m_hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
- ResetEvent( m_hEvent );
- wait_result = WaitForSingleObject(m_hEvent, 5000);
- if (WAIT_TIMEOUT == wait_result)
- {
- Confirm(METAAPP_TIMEOUT);
- return;
- }
- if ((MetaResult != META_SUCCESS) || (!m_bCnfOk))
- {
- Confirm(METAAPP_FAIL);
- return;
- }
- Confirm(METAAPP_SUCCESS);
- }
- //-------------------------------------
- void __stdcall CBBREG::CNF_ReadRegister(const RegRead_Cnf *cnf, const short token, void *usrData)
- {
- if (!g_bIsRunning)
- {
- return;
- }
- if (cnf->status != BB_STATUS_SUCCESS)
- {
- m_bCnfOk = false;
- return;
- }
- m_bCnfOk = true;
- m_usValue = cnf->value;
- SetEvent(m_hEvent);
- }
- //===========================================================================
- void CBBREG::REQ_WriteRegister_Start(unsigned int addr, unsigned short value)
- {
- bb_reg_ptr = this;
- g_bIsRunning = true;
- m_uiAddress = addr;
- m_usValue = value;
- ActiveMan->SetActiveFunction(::REQ_WriteRegister);
- }
- //-------------------------------------
- void CBBREG::REQ_WriteRegister(void)
- {
- if (!g_bIsRunning)
- {
- return;
- }
- RegWrite_Req req;
- req.addr = m_uiAddress;
- req.value = m_usValue;
- META_RESULT MetaResult = META_BB_RegWrite_r(m_META_HANDLE_Obj.Get_MainHandle(), &req, ::CNF_WriteRegister, &m_sBBID_REG, NULL);
- DWORD wait_result;
- m_hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
- ResetEvent( m_hEvent );
- wait_result = WaitForSingleObject(m_hEvent, 5000);
- if (WAIT_TIMEOUT == wait_result)
- {
- Confirm(METAAPP_TIMEOUT);
- return;
- }
- if ((MetaResult != META_SUCCESS) || (!m_bCnfOk))
- {
- Confirm(METAAPP_FAIL);
- return;
- }
- Confirm(METAAPP_SUCCESS);
- }
- //-------------------------------------
- void __stdcall CBBREG::CNF_WriteRegister(const RegWrite_Cnf *cnf, const short token, void *usrData)
- {
- if (!g_bIsRunning)
- {
- return;
- }
- if (cnf->status != BB_STATUS_SUCCESS)
- {
- m_bCnfOk = false;
- return;
- }
- m_bCnfOk = true;
- SetEvent(m_hEvent);
- }
- //===========================================================================
- //////////////////////////// Global information ///////////////////////////
- //===========================================================================
- E_METAAPP_RESULT_T CBBREG::Get_ConfirmState(void)
- {
- return m_eConfirmState;
- }
- //---------------------------------------------------------------------------
- unsigned short CBBREG::Get_RegValue( void )
- {
- return m_usValue;
- }