mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
e80a9729b1
Rename the omap2_clk_init() in the OMAP2, 3, and 4 clock code to be omap2xxx_clk_init(), omap3xxx_clk_init(), etc. Remove all traces of the (commented) old virt_prcm_set code from omap3xxx_clk_init() and omap4xxx_clk_init(), since this will be handled with the OPP code that is cooking in the PM branch. After this patch, there should be very little else in the clock code that blocks a multi-OMAP 2+3 kernel. (OMAP2420+OMAP2430 still has some outstanding issues that need to be resolved; this is pending on some additions to the hwmod data.) Signed-off-by: Paul Walmsley <paul@pwsan.com>
45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
/*
|
|
* OMAP2 clock function prototypes and macros
|
|
*
|
|
* Copyright (C) 2005-2009 Texas Instruments, Inc.
|
|
* Copyright (C) 2004-2009 Nokia Corporation
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_MACH_OMAP2_CLOCK_24XX_H
|
|
#define __ARCH_ARM_MACH_OMAP2_CLOCK_24XX_H
|
|
|
|
unsigned long omap2_table_mpu_recalc(struct clk *clk);
|
|
int omap2_select_table_rate(struct clk *clk, unsigned long rate);
|
|
long omap2_round_to_table_rate(struct clk *clk, unsigned long rate);
|
|
unsigned long omap2xxx_sys_clk_recalc(struct clk *clk);
|
|
unsigned long omap2_osc_clk_recalc(struct clk *clk);
|
|
unsigned long omap2_dpllcore_recalc(struct clk *clk);
|
|
int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate);
|
|
unsigned long omap2xxx_clk_get_core_rate(struct clk *clk);
|
|
u32 omap2xxx_get_apll_clkin(void);
|
|
u32 omap2xxx_get_sysclkdiv(void);
|
|
void omap2xxx_clk_prepare_for_reboot(void);
|
|
int omap2xxx_clk_init(void);
|
|
|
|
/* REVISIT: These should be set dynamically for CONFIG_MULTI_OMAP2 */
|
|
#ifdef CONFIG_ARCH_OMAP2420
|
|
#define OMAP_CM_REGADDR OMAP2420_CM_REGADDR
|
|
#define OMAP24XX_PRCM_CLKOUT_CTRL OMAP2420_PRCM_CLKOUT_CTRL
|
|
#define OMAP24XX_PRCM_CLKEMUL_CTRL OMAP2420_PRCM_CLKEMUL_CTRL
|
|
#else
|
|
#define OMAP_CM_REGADDR OMAP2430_CM_REGADDR
|
|
#define OMAP24XX_PRCM_CLKOUT_CTRL OMAP2430_PRCM_CLKOUT_CTRL
|
|
#define OMAP24XX_PRCM_CLKEMUL_CTRL OMAP2430_PRCM_CLKEMUL_CTRL
|
|
#endif
|
|
|
|
extern void __iomem *prcm_clksrc_ctrl;
|
|
|
|
extern struct clk *dclk;
|
|
|
|
extern const struct clkops clkops_omap2430_i2chs_wait;
|
|
extern const struct clkops clkops_oscck;
|
|
extern const struct clkops clkops_apll96;
|
|
extern const struct clkops clkops_apll54;
|
|
|
|
#endif
|