2012-03-07 20:01:28 +00:00
|
|
|
#ifndef __MACH_IMX_CLK_H
|
|
|
|
#define __MACH_IMX_CLK_H
|
|
|
|
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/clk-provider.h>
|
|
|
|
#include <mach/clock.h>
|
|
|
|
|
2012-03-09 08:11:55 +00:00
|
|
|
struct clk *imx_clk_pllv1(const char *name, const char *parent,
|
2012-03-07 20:01:28 +00:00
|
|
|
void __iomem *base);
|
|
|
|
|
|
|
|
static inline struct clk *imx_clk_fixed(const char *name, int rate)
|
|
|
|
{
|
|
|
|
return clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct clk *imx_clk_divider(const char *name, const char *parent,
|
|
|
|
void __iomem *reg, u8 shift, u8 width)
|
|
|
|
{
|
|
|
|
return clk_register_divider(NULL, name, parent, CLK_SET_RATE_PARENT,
|
|
|
|
reg, shift, width, 0, &imx_ccm_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct clk *imx_clk_gate(const char *name, const char *parent,
|
|
|
|
void __iomem *reg, u8 shift)
|
|
|
|
{
|
|
|
|
return clk_register_gate(NULL, name, parent, CLK_SET_RATE_PARENT, reg,
|
|
|
|
shift, 0, &imx_ccm_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct clk *imx_clk_mux(const char *name, void __iomem *reg,
|
|
|
|
u8 shift, u8 width, const char **parents, int num_parents)
|
|
|
|
{
|
|
|
|
return clk_register_mux(NULL, name, parents, num_parents, 0, reg, shift,
|
|
|
|
width, 0, &imx_ccm_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct clk *imx_clk_fixed_factor(const char *name,
|
|
|
|
const char *parent, unsigned int mult, unsigned int div)
|
|
|
|
{
|
|
|
|
return clk_register_fixed_factor(NULL, name, parent,
|
|
|
|
CLK_SET_RATE_PARENT, mult, div);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|