11cca264ff
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25699 a1c6a512-1295-4272-9138-f99709370657
124 lines
3 KiB
C
124 lines
3 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (c) 2008 Michael Sevakis
|
|
*
|
|
* Clock control functions for IMX31 processor
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
#ifndef _CCM_IMX31_H_
|
|
#define _CCM_IMX31_H_
|
|
|
|
enum IMX31_CG_LIST
|
|
{
|
|
/* CGR0 */
|
|
CG_SD_MMC1 = 0,
|
|
CG_SD_MMC2,
|
|
CG_GPT,
|
|
CG_EPIT1,
|
|
CG_EPIT2,
|
|
CG_IIM,
|
|
CG_ATA,
|
|
CG_SDMA,
|
|
CG_CSPI3,
|
|
CG_RNG,
|
|
CG_UART1,
|
|
CG_UART2,
|
|
CG_SSI1,
|
|
CG_I2C1,
|
|
CG_I2C2,
|
|
CG_I2C3,
|
|
/* CGR1 */
|
|
CG_HANTRO,
|
|
CG_MEMSTICK1,
|
|
CG_MEMSTICK2,
|
|
CG_CSI,
|
|
CG_RTC,
|
|
CG_WDOG,
|
|
CG_PWM,
|
|
CG_SIM,
|
|
CG_ECT,
|
|
CG_USBOTG,
|
|
CG_KPP,
|
|
CG_IPU,
|
|
CG_UART3,
|
|
CG_UART4,
|
|
CG_UART5,
|
|
CG_1_WIRE,
|
|
/* CGR2 */
|
|
CG_SSI2,
|
|
CG_CSPI1,
|
|
CG_CSPI2,
|
|
CG_GACC,
|
|
CG_EMI,
|
|
CG_RTIC,
|
|
CG_FIR,
|
|
CG_NUM_CLOCKS
|
|
};
|
|
|
|
enum IMX31_CG_MODES
|
|
{
|
|
CGM_OFF = 0x0, /* Always off */
|
|
CGM_ON_RUN = 0x1, /* On in run mode, off in wait and doze */
|
|
CGM_ON_RUN_WAIT = 0x2, /* On in run and wait modes, off in doze */
|
|
CGM_ON_ALL = 0x3, /* Always on */
|
|
};
|
|
|
|
#define CG_MASK 0x3 /* bitmask */
|
|
|
|
/* Enable or disable module clocks independently - module must _not_ be
|
|
* active! */
|
|
void ccm_module_clock_gating(enum IMX31_CG_LIST cg,
|
|
enum IMX31_CG_MODES mode);
|
|
|
|
enum IMX31_PLLS
|
|
{
|
|
PLL_MCU = 0,
|
|
PLL_USB,
|
|
PLL_SERIAL,
|
|
NUM_PLLS,
|
|
};
|
|
|
|
|
|
/* Return the current source pll for MCU */
|
|
enum IMX31_PLLS ccm_get_src_pll(void);
|
|
|
|
/* Decode PLL output frequency from register value */
|
|
unsigned int ccm_calc_pll_rate(unsigned int infreq, unsigned long regval);
|
|
|
|
/* Get the PLL reference clock frequency in HZ */
|
|
unsigned int ccm_get_pll_ref_clk_rate(void);
|
|
|
|
/* Return PLL frequency in HZ */
|
|
unsigned int ccm_get_pll_rate(enum IMX31_PLLS pll);
|
|
|
|
/* Return MCU frequency in HZ */
|
|
unsigned int ccm_get_mcu_clk(void);
|
|
|
|
/* Return ipg_clk in HZ */
|
|
unsigned int ccm_get_ipg_clk(void);
|
|
|
|
/* Return ahb_clk in HZ */
|
|
unsigned int ccm_get_ahb_clk(void);
|
|
|
|
/* Return the ATA frequency in HZ */
|
|
unsigned int ccm_get_ata_clk(void);
|
|
|
|
/* Write new values to the current PLL and post-dividers */
|
|
void ccm_set_mcupll_and_pdr(unsigned long pllctl, unsigned long pdr);
|
|
|
|
#endif /* _CCM_IMX31_H_ */
|