| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /*
- * Copyright (C) 2007 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /*******************************************************************************
- *
- * Filename:
- * ---------
- * AudDrv_Clk.h
- *
- * Project:
- * --------
- * MT6583 Audio Driver clock control
- *
- * Description:
- * ------------
- * Audio clcok control
- *
- * Author:
- * -------
- * Chipeng Chang (mtk02308)
- *
- *------------------------------------------------------------------------------
- *
- *
- *******************************************************************************/
- #ifndef _AUDDRV_CLK_H_
- #define _AUDDRV_CLK_H_
- /*****************************************************************************
- * C O M P I L E R F L A G S
- *****************************************************************************/
- /*****************************************************************************
- * E X T E R N A L R E F E R E N C E S
- *****************************************************************************/
- #include "AudDrv_Common.h"
- #include "AudDrv_Def.h"
- /*****************************************************************************
- * D A T A T Y P E S
- *****************************************************************************/
- /*****************************************************************************
- * M A C R O
- *****************************************************************************/
- /*****************************************************************************
- * FUNCTION D E F I N I T I O N
- *****************************************************************************/
- void AudDrv_Clk_AllOn(void);
- void Auddrv_Bus_Init(void);
- void AudDrv_Clk_Power_On(void);
- void AudDrv_Clk_Power_Off(void);
- void AudDrv_Clk_On(void);
- void AudDrv_Clk_Off(void);
- void AudDrv_ANA_Clk_On(void);
- void AudDrv_ANA_Clk_Off(void);
- void AudDrv_I2S_Clk_On(void);
- void AudDrv_I2S_Clk_Off(void);
- void AudDrv_Core_Clk_On(void);
- void AudDrv_Core_Clk_Off(void);
- void AudDrv_ADC_Clk_On(void);
- void AudDrv_ADC_Clk_Off(void);
- void AudDrv_ADC2_Clk_On(void);
- void AudDrv_ADC2_Clk_Off(void);
- void AudDrv_ADC3_Clk_On(void);
- void AudDrv_ADC3_Clk_Off(void);
- void AudDrv_HDMI_Clk_On(void);
- void AudDrv_HDMI_Clk_Off(void);
- void AudDrv_Suspend_Clk_On(void);
- void AudDrv_Suspend_Clk_Off(void);
- void AudDrv_APLL24M_Clk_On(void);
- void AudDrv_APLL24M_Clk_Off(void);
- void AudDrv_APLL22M_Clk_On(void);
- void AudDrv_APLL22M_Clk_Off(void);
- void AudDrv_APLL1Tuner_Clk_On(void);
- void AudDrv_APLL1Tuner_Clk_Off(void);
- void AudDrv_APLL2Tuner_Clk_On(void);
- void AudDrv_APLL2Tuner_Clk_Off(void);
- void AudDrv_Emi_Clk_On(void);
- void AudDrv_Emi_Clk_Off(void);
- void AudDrv_Clk_Reset(void);
- #endif
|