Exemple #1
0
/*********************************************************************************************************
** Function name:           s3c_jpeg_sclk_disable
** Descriptions:            ���� JPEG ��������� SCLK
** input parameters:        NONE
** output parameters:       NONE
** Returned value:          NONE
** Created by:              WangDongfang
** Created Date:            2012-04-24
**--------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
**--------------------------------------------------------------------------------------------------------
*********************************************************************************************************/
void s3c_jpeg_sclk_disable (void)
{
    s3c64xx_gate((UINT32)S3C_SCLK_GATE, S3C_CLKCON_SCLK_JPEG, FALSE);
}
Exemple #2
0
int s3c64xx_sclk_ctrl(struct clk *clk, int enable)
{
	return s3c64xx_gate(S3C_SCLK_GATE, clk, enable);
}
Exemple #3
0
/*********************************************************************************************************
** Function name:           s3c_jpeg_sclk_enable
** Descriptions:            ʹ�� JPEG ��������� SCLK
** input parameters:        NONE
** output parameters:       NONE
** Returned value:          NONE
** Created by:              WangDongfang
** Created Date:            2012-04-24
**--------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
**--------------------------------------------------------------------------------------------------------
*********************************************************************************************************/
void s3c_jpeg_sclk_enable (void)
{
    s3c64xx_gate((UINT32)S3C_SCLK_GATE, S3C_CLKCON_SCLK_JPEG, TRUE);
}
Exemple #4
0
static int s3c64xx_hclk_ctrl(struct clk *clk, int enable)
{
	return s3c64xx_gate(S3C_HCLK_GATE, clk, enable);
}