bb_reg.cpp
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:8k
源码类别:

MTK

开发平台:

C++ Builder

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2005
  8. *
  9. *  BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
  10. *  THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
  11. *  RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
  12. *  AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
  13. *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
  14. *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
  15. *  NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
  16. *  SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
  17. *  SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
  18. *  THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
  19. *  NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
  20. *  SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
  21. *
  22. *  BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
  23. *  LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
  24. *  AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
  25. *  OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
  26. *  MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
  27. *
  28. *  THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
  29. *  WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
  30. *  LAWS PRINCIPLES.  ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
  31. *  RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
  32. *  THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
  33. *
  34. *****************************************************************************/
  35. /*****************************************************************************
  36.  *
  37.  * Filename:
  38.  * ---------
  39.  *   bb_reg.cpp
  40.  *
  41.  * Project:
  42.  * --------
  43.  *   Maui META APP
  44.  *
  45.  * Description:
  46.  * ------------
  47.  *  Baseband register source
  48.  *
  49.  * Author:
  50.  * -------
  51.  *  Andy Ueng (mtk00490)
  52.  *
  53.  *============================================================================
  54.  *             HISTORY
  55.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  56.  *------------------------------------------------------------------------------
  57.  * $Revision$
  58.  * $Modtime$
  59.  * $Log$
  60.  * 
  61.  *------------------------------------------------------------------------------
  62.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  63.  *============================================================================
  64.  ****************************************************************************/
  65. #pragma hdrstop
  66. #ifndef  _BB_COMMON_H_
  67. #include "bb_common.h"
  68. #endif
  69. #ifndef  _BB_REG_H_
  70. #include "bb_reg.h"
  71. #endif
  72. #ifndef  _MAN_ACTIVE_H_
  73. #include "man_active.h"
  74. #endif
  75. //===========================================================================
  76. static CBBREG*  bb_reg_ptr;
  77. static bool g_bIsRunning = false;
  78. //===========================================================================
  79. static void REQ_ReadRegister(void)
  80. {
  81.     bb_reg_ptr->REQ_ReadRegister();
  82. }
  83. //---------------------------------------------------------------------------
  84. static void __stdcall CNF_ReadRegister(const RegRead_Cnf *cnf, const short token, void *usrData)
  85. {
  86.     bb_reg_ptr->CNF_ReadRegister(cnf, token, usrData);
  87. }
  88. //---------------------------------------------------------------------------
  89. static void REQ_WriteRegister(void)
  90. {
  91.     bb_reg_ptr->REQ_WriteRegister();
  92. }
  93. //---------------------------------------------------------------------------
  94. static void __stdcall CNF_WriteRegister(const RegWrite_Cnf *cnf, const short token, void *usrData)
  95. {
  96.     bb_reg_ptr->CNF_WriteRegister(cnf, token, usrData);
  97. }
  98. //===========================================================================
  99. CBBREG::CBBREG(void)
  100. {
  101.     g_bIsRunning = false;
  102.     ConfirmCallback = NULL;
  103. }
  104. //---------------------------------------------------------------------------
  105. CBBREG::~CBBREG( )
  106. {
  107.     g_bIsRunning = false;
  108.     ConfirmCallback = 0;
  109. }
  110. //---------------------------------------------------------------------------
  111. void CBBREG::REQ_Stop(void)
  112. {
  113.     if (!g_bIsRunning)
  114.     {
  115.         return;
  116.     }
  117.     META_Cancel_r(m_META_HANDLE_Obj.Get_MainHandle(), m_sBBID_REG);
  118.     Confirm(METAAPP_STOP);
  119. }
  120. //---------------------------------------------------------------------------
  121. void CBBREG::Confirm(E_METAAPP_RESULT_T confirm_state)
  122. {
  123.     if (!g_bIsRunning)
  124.     {
  125.         return;
  126.     }
  127.     g_bIsRunning = false;
  128.     if (NULL == ConfirmCallback)
  129.     {
  130.         return;
  131.     }
  132.     m_eConfirmState = confirm_state;
  133.     ActiveMan->SetActiveFunction(ConfirmCallback);
  134. }
  135. //===========================================================================
  136. void  CBBREG::REQ_ReadRegister_Start(unsigned int addr)
  137. {
  138.     bb_reg_ptr = this;
  139.     g_bIsRunning  = true;
  140.     m_uiAddress = addr;
  141.     ActiveMan->SetActiveFunction(::REQ_ReadRegister);
  142. }
  143. //-------------------------------------
  144. void CBBREG::REQ_ReadRegister(void)
  145. {
  146.     if (!g_bIsRunning)
  147.     {
  148.         return;
  149.     }
  150.     RegRead_Req req;
  151.     req.addr  = m_uiAddress;
  152.     META_RESULT MetaResult = META_BB_RegRead_r(m_META_HANDLE_Obj.Get_MainHandle(), &req, ::CNF_ReadRegister, &m_sBBID_REG, NULL);
  153.     DWORD wait_result;
  154.     m_hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
  155.     ResetEvent( m_hEvent );
  156.     wait_result = WaitForSingleObject(m_hEvent, 5000);
  157.     if (WAIT_TIMEOUT == wait_result)
  158.     {
  159.         Confirm(METAAPP_TIMEOUT);
  160.         return;
  161.     }
  162.     if ((MetaResult != META_SUCCESS) || (!m_bCnfOk))
  163.     {
  164.         Confirm(METAAPP_FAIL);
  165.         return;
  166.     }
  167.     Confirm(METAAPP_SUCCESS);
  168. }
  169. //-------------------------------------
  170. void __stdcall CBBREG::CNF_ReadRegister(const RegRead_Cnf *cnf, const short token, void *usrData)
  171. {
  172.     if (!g_bIsRunning)
  173.     {
  174.         return;
  175.     }
  176.     if (cnf->status != BB_STATUS_SUCCESS)
  177.     {
  178.         m_bCnfOk = false;
  179.         return;
  180.     }
  181.     m_bCnfOk = true;
  182.     m_usValue = cnf->value;
  183.     SetEvent(m_hEvent);
  184. }
  185. //===========================================================================
  186. void  CBBREG::REQ_WriteRegister_Start(unsigned int addr, unsigned short value)
  187. {
  188.     bb_reg_ptr = this;
  189.     g_bIsRunning  = true;
  190.     m_uiAddress = addr;
  191.     m_usValue   = value;
  192.     ActiveMan->SetActiveFunction(::REQ_WriteRegister);
  193. }
  194. //-------------------------------------
  195. void CBBREG::REQ_WriteRegister(void)
  196. {
  197.     if (!g_bIsRunning)
  198.     {
  199.         return;
  200.     }
  201.     RegWrite_Req req;
  202.     req.addr  = m_uiAddress;
  203.     req.value = m_usValue;
  204.     META_RESULT MetaResult = META_BB_RegWrite_r(m_META_HANDLE_Obj.Get_MainHandle(), &req, ::CNF_WriteRegister, &m_sBBID_REG, NULL);
  205.     DWORD wait_result;
  206.     m_hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
  207.     ResetEvent( m_hEvent );
  208.     wait_result = WaitForSingleObject(m_hEvent, 5000);
  209.     if (WAIT_TIMEOUT == wait_result)
  210.     {
  211.         Confirm(METAAPP_TIMEOUT);
  212.         return;
  213.     }
  214.     if ((MetaResult != META_SUCCESS) || (!m_bCnfOk))
  215.     {
  216.         Confirm(METAAPP_FAIL);
  217.         return;
  218.     }
  219.     Confirm(METAAPP_SUCCESS);
  220. }
  221. //-------------------------------------
  222. void __stdcall CBBREG::CNF_WriteRegister(const RegWrite_Cnf *cnf, const short token, void *usrData)
  223. {
  224.     if (!g_bIsRunning)
  225.     {
  226.         return;
  227.     }
  228.     if (cnf->status != BB_STATUS_SUCCESS)
  229.     {
  230.         m_bCnfOk = false;
  231.         return;
  232.     }
  233.     m_bCnfOk = true;
  234.     SetEvent(m_hEvent);
  235. }
  236. //===========================================================================
  237. ////////////////////////////  Global information  ///////////////////////////
  238. //===========================================================================
  239. E_METAAPP_RESULT_T CBBREG::Get_ConfirmState(void)
  240. {
  241.     return  m_eConfirmState;
  242. }
  243. //---------------------------------------------------------------------------
  244. unsigned short CBBREG::Get_RegValue( void )
  245. {
  246.     return  m_usValue;
  247. }