/********************************************************************************************************* ** 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); }
int s3c64xx_sclk_ctrl(struct clk *clk, int enable) { return s3c64xx_gate(S3C_SCLK_GATE, clk, enable); }
/********************************************************************************************************* ** 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); }
static int s3c64xx_hclk_ctrl(struct clk *clk, int enable) { return s3c64xx_gate(S3C_HCLK_GATE, clk, enable); }