bb_pmic_reg.cpp
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:10k
- /*****************************************************************************
- * 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_pmic_reg.cpp
- *
- * Project:
- * --------
- * Maui META APP
- *
- * Description:
- * ------------
- * PMIC register read/write 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!!
- *============================================================================
- ****************************************************************************/
- #include <IniFiles.hpp>
- #pragma hdrstop
- #ifndef META_DLL_H
- #include "meta.h"
- #endif
- #ifndef _BB_COMMON_H_
- #include "bb_common.h"
- #endif
- #ifndef _BB_PMIC_REG_H_
- #include "bb_pmic_reg.h"
- #endif
- #ifndef _MAN_ACTIVE_H_
- #include "man_active.h"
- #endif
- //===========================================================================
- static CBBPMICREG* g_pmic_reg_ptr;
- static bool g_bIsRunning;
- //===========================================================================
- static void REQ_ReadRegister(void)
- {
- g_pmic_reg_ptr->REQ_ReadRegister();
- }
- //---------------------------------------------------------------------------
- static void REQ_WriteRegister(void)
- {
- g_pmic_reg_ptr->REQ_WriteRegister();
- }
- //===========================================================================
- CBBPMICREG::CBBPMICREG(void)
- {
- g_bIsRunning = false;
- ConfirmCallback = 0;
- }
- //---------------------------------------------------------------------------
- CBBPMICREG::~CBBPMICREG()
- {
- g_bIsRunning = false;
- ConfirmCallback = 0;
- EraseVector();
- DeAllocateVector();
- }
- //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- void CBBPMICREG::AllocateVector(void)
- {
- if (NULL == m_pvPmicReg)
- {
- m_pvPmicReg = new vector<S_BB_PMIC_REG_T>;
- }
- }
- //--------------------------------------------------------------------------
- void CBBPMICREG::DeAllocateVector(void)
- {
- if (NULL != m_pvPmicReg)
- {
- delete m_pvPmicReg;
- }
- }
- //--------------------------------------------------------------------------
- void CBBPMICREG::EraseVector(void)
- {
- if (NULL != m_pvPmicReg)
- {
- if (! m_pvPmicReg->empty())
- { m_pvPmicReg->erase(m_pvPmicReg->begin(), m_pvPmicReg->end());
- }
- }
- }
- //---------------------------------------------------------------------------
- void CBBPMICREG::REQ_Finish(void)
- {
- if (!g_bIsRunning) return;
- Confirm(METAAPP_SUCCESS);
- g_bIsRunning = false;
- }
- //---------------------------------------------------------------------------
- void CBBPMICREG::REQ_Stop(void)
- {
- if (!g_bIsRunning) return;
- META_Cancel_r(m_META_HANDLE_Obj.Get_MainHandle(), m_sBBID_REG);
- Confirm(METAAPP_STOP);
- g_bIsRunning = false;
- }
- //---------------------------------------------------------------------------
- void CBBPMICREG::Confirm(E_METAAPP_RESULT_T confirm_state)
- {
- if (!g_bIsRunning) return;
- if(ConfirmCallback==0) return;
- m_eConfirmState = confirm_state;
- ActiveMan->SetActiveFunction(ConfirmCallback);
- }
- //===========================================================================
- void CBBPMICREG::REQ_ReadRegister_Start(unsigned int addr)
- {
- g_pmic_reg_ptr = this;
- g_bIsRunning = true;
- m_uiAddress = addr;
- ActiveMan->SetActiveFunction(::REQ_ReadRegister);
- }
- //-------------------------------------
- void CBBPMICREG::REQ_ReadRegister(void)
- {
- if (!g_bIsRunning)
- {
- return;
- }
- RegRead_Req req;
- RegRead_Cnf cnf;
- req.addr = m_uiAddress;
- META_RESULT MetaResult = META_PMIC_RegRead_r(m_META_HANDLE_Obj.Get_MainHandle(), 5000, &req, &cnf);
- m_usValue = cnf.value;
- if ((MetaResult != META_SUCCESS) || ((unsigned char)BB_STATUS_SUCCESS != cnf.status))
- {
- Confirm( METAAPP_FAIL );
- return;
- }
- Confirm(METAAPP_SUCCESS);
- }
- //===========================================================================
- void CBBPMICREG::REQ_WriteRegister_Start(unsigned int addr, unsigned short value)
- {
- g_pmic_reg_ptr = this;
- g_bIsRunning = true;
- m_uiAddress = addr;
- m_usValue = value;
- ActiveMan->SetActiveFunction(::REQ_WriteRegister);
- }
- //-------------------------------------
- void CBBPMICREG::REQ_WriteRegister(void)
- {
- if (!g_bIsRunning)
- {
- return;
- }
- RegWrite_Req req;
- RegWrite_Cnf cnf;
- req.addr = m_uiAddress;
- req.value = m_usValue;
- META_RESULT MetaResult = META_PMIC_RegWrite_r(m_META_HANDLE_Obj.Get_MainHandle(), 5000, &req, &cnf);
- if ((MetaResult!=META_SUCCESS) || ((unsigned char)BB_STATUS_SUCCESS != cnf.status))
- {
- Confirm(METAAPP_FAIL);
- return;
- }
- Confirm(METAAPP_SUCCESS);
- }
- //===========================================================================
- //////////////////////////// INI file ///////////////////////////
- //===========================================================================
- static AnsiString as_SECTION_NAME = "PMIC register";
- static AnsiString as_KEY_NAME_COUNT = "register count";
- //---------------------------------------------------------------------------
- bool CBBPMICREG::PMICRegisterSectionExist(char *filename)
- {
- TIniFile *ini_file;
- ini_file = new TIniFile( filename );
- if (NULL == ini_file) return false;
- if (ini_file->SectionExists(as_SECTION_NAME))
- {
- return true;
- }
- return false;
- }
- //---------------------------------------------------------------------------
- bool CBBPMICREG::REQ_Read_From_File(char *filename)
- {
- TIniFile *ini_file;
- ini_file = new TIniFile(filename);
- if (NULL == ini_file) return false;
- if (NULL == m_pvPmicReg)
- {
- AllocateVector();
- }
- EraseVector();
- AnsiString as;
- unsigned int ui_count;
- ui_count = ini_file->ReadInteger(as_SECTION_NAME, as_KEY_NAME_COUNT, 0);
- for (unsigned int i=0; i<ui_count; i++)
- {
- S_BB_PMIC_REG_T pmic_reg;
- as = "register " + IntToStr(i) + " index";
- pmic_reg.us_index = ini_file->ReadInteger(as_SECTION_NAME, as, 0);
- as = "register " + IntToStr(i) + " name";
- pmic_reg.as_name = ini_file->ReadString(as_SECTION_NAME, as, "");
- as = "register " + IntToStr(i) + " value";
- pmic_reg.uc_value = ini_file->ReadInteger(as_SECTION_NAME, as, 0);
- m_pvPmicReg->push_back(pmic_reg);
- }
- delete ini_file;
- return true;
- }
- //---------------------------------------------------------------------------
- bool CBBPMICREG::REQ_Write_To_File(char *filename)
- {
- return true;
- }
- //===========================================================================
- //////////////////////////// Query ///////////////////////////
- //===========================================================================
- bool CBBPMICREG::Query_PMIC_ID_Start(void)
- {
- META_RESULT MetaResult = META_QueryPMICID_r(m_META_HANDLE_Obj.Get_MainHandle(), 300, &m_sPmicId);
- if (META_SUCCESS != MetaResult)
- {
- return false;
- }
- return true;
- }
- //===========================================================================
- //////////////////////////// Global information ///////////////////////////
- //===========================================================================
- E_METAAPP_RESULT_T CBBPMICREG::Get_ConfirmState(void)
- {
- return m_eConfirmState;
- }
- //---------------------------------------------------------------------------
- unsigned short CBBPMICREG::Get_RegValue(void)
- {
- return m_usValue;
- }
- //---------------------------------------------------------------------------
- PMIC_ID* CBBPMICREG::Get_PMIC_ID(void)
- {
- return &m_sPmicId;
- }
- //---------------------------------------------------------------------------
- vector<S_BB_PMIC_REG_T>* CBBPMICREG::Get_PMICRegVector(void)
- {
- return m_pvPmicReg;
- }