提交 90afd5cb 编写于 作者: T Tony Lindgren

ARM: OMAP: Sync clocks with linux-omap tree

Mostly clean up CONFIG_OMAP_RESET_CLOCKS. Also includes a
patch from Imre Deak to make McSPI clocks use id.
Signed-off-by: NTony Lindgren <tony@atomide.com>
上级 1630b52d
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include <linux/clk.h> #include <linux/clk.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/mach-types.h>
#include <asm/arch/cpu.h> #include <asm/arch/cpu.h>
#include <asm/arch/usb.h> #include <asm/arch/usb.h>
...@@ -586,77 +587,53 @@ static int omap1_clk_set_rate(struct clk *clk, unsigned long rate) ...@@ -586,77 +587,53 @@ static int omap1_clk_set_rate(struct clk *clk, unsigned long rate)
*-------------------------------------------------------------------------*/ *-------------------------------------------------------------------------*/
#ifdef CONFIG_OMAP_RESET_CLOCKS #ifdef CONFIG_OMAP_RESET_CLOCKS
/*
* Resets some clocks that may be left on from bootloader,
* but leaves serial clocks on. See also omap_late_clk_reset().
*/
static inline void omap1_early_clk_reset(void)
{
//omap_writel(0x3 << 29, MOD_CONF_CTRL_0);
}
static int __init omap1_late_clk_reset(void) static void __init omap1_clk_disable_unused(struct clk *clk)
{ {
/* Turn off all unused clocks */
struct clk *p;
__u32 regval32; __u32 regval32;
/* USB_REQ_EN will be disabled later if necessary (usb_dc_ck) */
regval32 = omap_readw(SOFT_REQ_REG) & (1 << 4);
omap_writew(regval32, SOFT_REQ_REG);
omap_writew(0, SOFT_REQ_REG2);
list_for_each_entry(p, &clocks, node) {
if (p->usecount > 0 || (p->flags & ALWAYS_ENABLED) ||
p->enable_reg == 0)
continue;
/* Clocks in the DSP domain need api_ck. Just assume bootloader /* Clocks in the DSP domain need api_ck. Just assume bootloader
* has not enabled any DSP clocks */ * has not enabled any DSP clocks */
if ((u32)p->enable_reg == DSP_IDLECT2) { if ((u32)clk->enable_reg == DSP_IDLECT2) {
printk(KERN_INFO "Skipping reset check for DSP domain " printk(KERN_INFO "Skipping reset check for DSP domain "
"clock \"%s\"\n", p->name); "clock \"%s\"\n", clk->name);
continue; return;
} }
/* Is the clock already disabled? */ /* Is the clock already disabled? */
if (p->flags & ENABLE_REG_32BIT) { if (clk->flags & ENABLE_REG_32BIT) {
if (p->flags & VIRTUAL_IO_ADDRESS) if (clk->flags & VIRTUAL_IO_ADDRESS)
regval32 = __raw_readl(p->enable_reg); regval32 = __raw_readl(clk->enable_reg);
else else
regval32 = omap_readl(p->enable_reg); regval32 = omap_readl(clk->enable_reg);
} else { } else {
if (p->flags & VIRTUAL_IO_ADDRESS) if (clk->flags & VIRTUAL_IO_ADDRESS)
regval32 = __raw_readw(p->enable_reg); regval32 = __raw_readw(clk->enable_reg);
else else
regval32 = omap_readw(p->enable_reg); regval32 = omap_readw(clk->enable_reg);
} }
if ((regval32 & (1 << p->enable_bit)) == 0) if ((regval32 & (1 << clk->enable_bit)) == 0)
continue; return;
/* FIXME: This clock seems to be necessary but no-one /* FIXME: This clock seems to be necessary but no-one
* has asked for its activation. */ * has asked for its activation. */
if (p == &tc2_ck // FIX: pm.c (SRAM), CCP, Camera if (clk == &tc2_ck // FIX: pm.c (SRAM), CCP, Camera
|| p == &ck_dpll1out.clk // FIX: SoSSI, SSR || clk == &ck_dpll1out.clk // FIX: SoSSI, SSR
|| p == &arm_gpio_ck // FIX: GPIO code for 1510 || clk == &arm_gpio_ck // FIX: GPIO code for 1510
) { ) {
printk(KERN_INFO "FIXME: Clock \"%s\" seems unused\n", printk(KERN_INFO "FIXME: Clock \"%s\" seems unused\n",
p->name); clk->name);
continue; return;
} }
printk(KERN_INFO "Disabling unused clock \"%s\"... ", p->name); printk(KERN_INFO "Disabling unused clock \"%s\"... ", clk->name);
p->disable(p); clk->disable(clk);
printk(" done\n"); printk(" done\n");
}
return 0;
} }
late_initcall(omap1_late_clk_reset);
#else #else
#define omap1_early_clk_reset() {} #define omap1_clk_disable_unused NULL
#endif #endif
static struct clk_functions omap1_clk_functions = { static struct clk_functions omap1_clk_functions = {
...@@ -664,6 +641,7 @@ static struct clk_functions omap1_clk_functions = { ...@@ -664,6 +641,7 @@ static struct clk_functions omap1_clk_functions = {
.clk_disable = omap1_clk_disable, .clk_disable = omap1_clk_disable,
.clk_round_rate = omap1_clk_round_rate, .clk_round_rate = omap1_clk_round_rate,
.clk_set_rate = omap1_clk_set_rate, .clk_set_rate = omap1_clk_set_rate,
.clk_disable_unused = omap1_clk_disable_unused,
}; };
int __init omap1_clk_init(void) int __init omap1_clk_init(void)
...@@ -671,8 +649,13 @@ int __init omap1_clk_init(void) ...@@ -671,8 +649,13 @@ int __init omap1_clk_init(void)
struct clk ** clkp; struct clk ** clkp;
const struct omap_clock_config *info; const struct omap_clock_config *info;
int crystal_type = 0; /* Default 12 MHz */ int crystal_type = 0; /* Default 12 MHz */
u32 reg;
/* USB_REQ_EN will be disabled later if necessary (usb_dc_ck) */
reg = omap_readw(SOFT_REQ_REG) & (1 << 4);
omap_writew(reg, SOFT_REQ_REG);
omap_writew(0, SOFT_REQ_REG2);
omap1_early_clk_reset();
clk_init(&omap1_clk_functions); clk_init(&omap1_clk_functions);
/* By default all idlect1 clocks are allowed to idle */ /* By default all idlect1 clocks are allowed to idle */
...@@ -772,6 +755,12 @@ int __init omap1_clk_init(void) ...@@ -772,6 +755,12 @@ int __init omap1_clk_init(void)
omap_writew(omap_readw(OMAP730_PCC_UPLD_CTRL) & ~0x1, OMAP730_PCC_UPLD_CTRL); omap_writew(omap_readw(OMAP730_PCC_UPLD_CTRL) & ~0x1, OMAP730_PCC_UPLD_CTRL);
#endif #endif
/* Amstrad Delta wants BCLK high when inactive */
if (machine_is_ams_delta())
omap_writel(omap_readl(ULPD_CLOCK_CTRL) |
(1 << SDW_MCLK_INV_BIT),
ULPD_CLOCK_CTRL);
/* Turn off DSP and ARM_TIMXO. Make sure ARM_INTHCK is not divided */ /* Turn off DSP and ARM_TIMXO. Make sure ARM_INTHCK is not divided */
/* (on 730, bit 13 must not be cleared) */ /* (on 730, bit 13 must not be cleared) */
if (cpu_is_omap730()) if (cpu_is_omap730())
......
...@@ -89,6 +89,7 @@ struct arm_idlect1_clk { ...@@ -89,6 +89,7 @@ struct arm_idlect1_clk {
#define EN_DSPTIMCK 5 #define EN_DSPTIMCK 5
/* Various register defines for clock controls scattered around OMAP chip */ /* Various register defines for clock controls scattered around OMAP chip */
#define SDW_MCLK_INV_BIT 2 /* In ULPD_CLKC_CTRL */
#define USB_MCLK_EN_BIT 4 /* In ULPD_CLKC_CTRL */ #define USB_MCLK_EN_BIT 4 /* In ULPD_CLKC_CTRL */
#define USB_HOST_HHC_UHOST_EN 9 /* In MOD_CONF_CTRL_0 */ #define USB_HOST_HHC_UHOST_EN 9 /* In MOD_CONF_CTRL_0 */
#define SWD_ULPD_PLL_CLK_REQ 1 /* In SWD_CLK_DIV_CTRL_SEL */ #define SWD_ULPD_PLL_CLK_REQ 1 /* In SWD_CLK_DIV_CTRL_SEL */
...@@ -741,6 +742,18 @@ static struct clk i2c_fck = { ...@@ -741,6 +742,18 @@ static struct clk i2c_fck = {
.disable = &omap1_clk_disable_generic, .disable = &omap1_clk_disable_generic,
}; };
static struct clk i2c_ick = {
.name = "i2c_ick",
.id = 1,
.flags = CLOCK_IN_OMAP16XX |
VIRTUAL_CLOCK | CLOCK_NO_IDLE_PARENT |
ALWAYS_ENABLED,
.parent = &armper_ck.clk,
.recalc = &followparent_recalc,
.enable = &omap1_clk_enable_generic,
.disable = &omap1_clk_disable_generic,
};
static struct clk * onchip_clks[] = { static struct clk * onchip_clks[] = {
/* non-ULPD clocks */ /* non-ULPD clocks */
&ck_ref, &ck_ref,
...@@ -790,6 +803,7 @@ static struct clk * onchip_clks[] = { ...@@ -790,6 +803,7 @@ static struct clk * onchip_clks[] = {
/* Virtual clocks */ /* Virtual clocks */
&virtual_ck_mpu, &virtual_ck_mpu,
&i2c_fck, &i2c_fck,
&i2c_ick,
}; };
#endif #endif
...@@ -1025,12 +1025,29 @@ static int omap2_select_table_rate(struct clk * clk, unsigned long rate) ...@@ -1025,12 +1025,29 @@ static int omap2_select_table_rate(struct clk * clk, unsigned long rate)
* Omap2 clock reset and init functions * Omap2 clock reset and init functions
*-------------------------------------------------------------------------*/ *-------------------------------------------------------------------------*/
#ifdef CONFIG_OMAP_RESET_CLOCKS
static void __init omap2_clk_disable_unused(struct clk *clk)
{
u32 regval32;
regval32 = __raw_readl(clk->enable_reg);
if ((regval32 & (1 << clk->enable_bit)) == 0)
return;
printk(KERN_INFO "Disabling unused clock \"%s\"\n", clk->name);
_omap2_clk_disable(clk);
}
#else
#define omap2_clk_disable_unused NULL
#endif
static struct clk_functions omap2_clk_functions = { static struct clk_functions omap2_clk_functions = {
.clk_enable = omap2_clk_enable, .clk_enable = omap2_clk_enable,
.clk_disable = omap2_clk_disable, .clk_disable = omap2_clk_disable,
.clk_round_rate = omap2_clk_round_rate, .clk_round_rate = omap2_clk_round_rate,
.clk_set_rate = omap2_clk_set_rate, .clk_set_rate = omap2_clk_set_rate,
.clk_set_parent = omap2_clk_set_parent, .clk_set_parent = omap2_clk_set_parent,
.clk_disable_unused = omap2_clk_disable_unused,
}; };
static void __init omap2_get_crystal_rate(struct clk *osc, struct clk *sys) static void __init omap2_get_crystal_rate(struct clk *osc, struct clk *sys)
...@@ -1070,28 +1087,6 @@ void omap2_clk_prepare_for_reboot(void) ...@@ -1070,28 +1087,6 @@ void omap2_clk_prepare_for_reboot(void)
clk_set_rate(vclk, rate); clk_set_rate(vclk, rate);
} }
#ifdef CONFIG_OMAP_RESET_CLOCKS
static void __init omap2_disable_unused_clocks(void)
{
struct clk *ck;
u32 regval32;
list_for_each_entry(ck, &clocks, node) {
if (ck->usecount > 0 || (ck->flags & ALWAYS_ENABLED) ||
ck->enable_reg == 0)
continue;
regval32 = __raw_readl(ck->enable_reg);
if ((regval32 & (1 << ck->enable_bit)) == 0)
continue;
printk(KERN_INFO "Disabling unused clock \"%s\"\n", ck->name);
_omap2_clk_disable(ck);
}
}
late_initcall(omap2_disable_unused_clocks);
#endif
/* /*
* Switch the MPU rate if specified on cmdline. * Switch the MPU rate if specified on cmdline.
* We cannot do this early until cmdline is parsed. * We cannot do this early until cmdline is parsed.
......
...@@ -1368,7 +1368,8 @@ static struct clk mcbsp5_fck = { ...@@ -1368,7 +1368,8 @@ static struct clk mcbsp5_fck = {
}; };
static struct clk mcspi1_ick = { static struct clk mcspi1_ick = {
.name = "mcspi1_ick", .name = "mcspi_ick",
.id = 1,
.parent = &l4_ck, .parent = &l4_ck,
.flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X,
.enable_reg = (void __iomem *)&CM_ICLKEN1_CORE, .enable_reg = (void __iomem *)&CM_ICLKEN1_CORE,
...@@ -1377,7 +1378,8 @@ static struct clk mcspi1_ick = { ...@@ -1377,7 +1378,8 @@ static struct clk mcspi1_ick = {
}; };
static struct clk mcspi1_fck = { static struct clk mcspi1_fck = {
.name = "mcspi1_fck", .name = "mcspi_fck",
.id = 1,
.parent = &func_48m_ck, .parent = &func_48m_ck,
.flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X,
.enable_reg = (void __iomem *)&CM_FCLKEN1_CORE, .enable_reg = (void __iomem *)&CM_FCLKEN1_CORE,
...@@ -1386,7 +1388,8 @@ static struct clk mcspi1_fck = { ...@@ -1386,7 +1388,8 @@ static struct clk mcspi1_fck = {
}; };
static struct clk mcspi2_ick = { static struct clk mcspi2_ick = {
.name = "mcspi2_ick", .name = "mcspi_ick",
.id = 2,
.parent = &l4_ck, .parent = &l4_ck,
.flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X,
.enable_reg = (void __iomem *)&CM_ICLKEN1_CORE, .enable_reg = (void __iomem *)&CM_ICLKEN1_CORE,
...@@ -1395,7 +1398,8 @@ static struct clk mcspi2_ick = { ...@@ -1395,7 +1398,8 @@ static struct clk mcspi2_ick = {
}; };
static struct clk mcspi2_fck = { static struct clk mcspi2_fck = {
.name = "mcspi2_fck", .name = "mcspi_fck",
.id = 2,
.parent = &func_48m_ck, .parent = &func_48m_ck,
.flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X, .flags = CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X,
.enable_reg = (void __iomem *)&CM_FCLKEN1_CORE, .enable_reg = (void __iomem *)&CM_FCLKEN1_CORE,
...@@ -1404,7 +1408,8 @@ static struct clk mcspi2_fck = { ...@@ -1404,7 +1408,8 @@ static struct clk mcspi2_fck = {
}; };
static struct clk mcspi3_ick = { static struct clk mcspi3_ick = {
.name = "mcspi3_ick", .name = "mcspi_ick",
.id = 3,
.parent = &l4_ck, .parent = &l4_ck,
.flags = CLOCK_IN_OMAP243X, .flags = CLOCK_IN_OMAP243X,
.enable_reg = (void __iomem *)&CM_ICLKEN2_CORE, .enable_reg = (void __iomem *)&CM_ICLKEN2_CORE,
...@@ -1413,7 +1418,8 @@ static struct clk mcspi3_ick = { ...@@ -1413,7 +1418,8 @@ static struct clk mcspi3_ick = {
}; };
static struct clk mcspi3_fck = { static struct clk mcspi3_fck = {
.name = "mcspi3_fck", .name = "mcspi_fck",
.id = 3,
.parent = &func_48m_ck, .parent = &func_48m_ck,
.flags = CLOCK_IN_OMAP243X, .flags = CLOCK_IN_OMAP243X,
.enable_reg = (void __iomem *)&CM_FCLKEN2_CORE, .enable_reg = (void __iomem *)&CM_FCLKEN2_CORE,
......
...@@ -323,6 +323,31 @@ EXPORT_SYMBOL(clk_allow_idle); ...@@ -323,6 +323,31 @@ EXPORT_SYMBOL(clk_allow_idle);
/*-------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------*/
#ifdef CONFIG_OMAP_RESET_CLOCKS
/*
* Disable any unused clocks left on by the bootloader
*/
static int __init clk_disable_unused(void)
{
struct clk *ck;
unsigned long flags;
list_for_each_entry(ck, &clocks, node) {
if (ck->usecount > 0 || (ck->flags & ALWAYS_ENABLED) ||
ck->enable_reg == 0)
continue;
spin_lock_irqsave(&clockfw_lock, flags);
if (arch_clock->clk_disable_unused)
arch_clock->clk_disable_unused(ck);
spin_unlock_irqrestore(&clockfw_lock, flags);
}
return 0;
}
late_initcall(clk_disable_unused);
#endif
int __init clk_init(struct clk_functions * custom_clocks) int __init clk_init(struct clk_functions * custom_clocks)
{ {
if (!custom_clocks) { if (!custom_clocks) {
......
...@@ -45,6 +45,7 @@ struct clk_functions { ...@@ -45,6 +45,7 @@ struct clk_functions {
struct clk * (*clk_get_parent)(struct clk *clk); struct clk * (*clk_get_parent)(struct clk *clk);
void (*clk_allow_idle)(struct clk *clk); void (*clk_allow_idle)(struct clk *clk);
void (*clk_deny_idle)(struct clk *clk); void (*clk_deny_idle)(struct clk *clk);
void (*clk_disable_unused)(struct clk *clk);
}; };
extern unsigned int mpurate; extern unsigned int mpurate;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册