Commit 1fe9be82 authored by Paul Walmsley's avatar Paul Walmsley Committed by Tony Lindgren

ARM: OMAP: duplicate plat-omap/clock.c into mach-omap[12]/clock.c

Duplicate arch/arm/plat-omap/clock.c into arch/arm/mach-omap1/clock.c
and arch/arm/mach-omap2/clock.c.  This is to support people who are working
on the ARM single image kernel and the OMAP common clock framework
conversion.
Signed-off-by: default avatarPaul Walmsley <paul@pwsan.com>
Cc: Tony Lindgren <tony@atomide.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent f7a9b8a1
This diff is collapsed.
...@@ -766,14 +766,6 @@ static struct omap_clk omap_clks[] = { ...@@ -766,14 +766,6 @@ static struct omap_clk omap_clks[] = {
* init * init
*/ */
static struct clk_functions omap1_clk_functions = {
.clk_enable = omap1_clk_enable,
.clk_disable = omap1_clk_disable,
.clk_round_rate = omap1_clk_round_rate,
.clk_set_rate = omap1_clk_set_rate,
.clk_disable_unused = omap1_clk_disable_unused,
};
static void __init omap1_show_rates(void) static void __init omap1_show_rates(void)
{ {
pr_notice("Clocking rate (xtal/DPLL1/MPU): %ld.%01ld/%ld.%01ld/%ld.%01ld MHz\n", pr_notice("Clocking rate (xtal/DPLL1/MPU): %ld.%01ld/%ld.%01ld/%ld.%01ld MHz\n",
...@@ -804,8 +796,6 @@ int __init omap1_clk_init(void) ...@@ -804,8 +796,6 @@ int __init omap1_clk_init(void)
if (!cpu_is_omap15xx()) if (!cpu_is_omap15xx())
omap_writew(0, SOFT_REQ_REG2); omap_writew(0, SOFT_REQ_REG2);
clk_init(&omap1_clk_functions);
/* By default all idlect1 clocks are allowed to idle */ /* By default all idlect1 clocks are allowed to idle */
arm_idlect1_mask = ~0; arm_idlect1_mask = ~0;
......
This diff is collapsed.
...@@ -1935,8 +1935,6 @@ int __init omap2420_clk_init(void) ...@@ -1935,8 +1935,6 @@ int __init omap2420_clk_init(void)
cpu_mask = RATE_IN_242X; cpu_mask = RATE_IN_242X;
rate_table = omap2420_rate_table; rate_table = omap2420_rate_table;
clk_init(&omap2_clk_functions);
for (c = omap2420_clks; c < omap2420_clks + ARRAY_SIZE(omap2420_clks); for (c = omap2420_clks; c < omap2420_clks + ARRAY_SIZE(omap2420_clks);
c++) c++)
clk_preinit(c->lk.clk); clk_preinit(c->lk.clk);
......
...@@ -2034,8 +2034,6 @@ int __init omap2430_clk_init(void) ...@@ -2034,8 +2034,6 @@ int __init omap2430_clk_init(void)
cpu_mask = RATE_IN_243X; cpu_mask = RATE_IN_243X;
rate_table = omap2430_rate_table; rate_table = omap2430_rate_table;
clk_init(&omap2_clk_functions);
for (c = omap2430_clks; c < omap2430_clks + ARRAY_SIZE(omap2430_clks); for (c = omap2430_clks; c < omap2430_clks + ARRAY_SIZE(omap2430_clks);
c++) c++)
clk_preinit(c->lk.clk); clk_preinit(c->lk.clk);
......
...@@ -1085,8 +1085,6 @@ int __init am33xx_clk_init(void) ...@@ -1085,8 +1085,6 @@ int __init am33xx_clk_init(void)
cpu_clkflg = CK_AM33XX; cpu_clkflg = CK_AM33XX;
} }
clk_init(&omap2_clk_functions);
for (c = am33xx_clks; c < am33xx_clks + ARRAY_SIZE(am33xx_clks); c++) for (c = am33xx_clks; c < am33xx_clks + ARRAY_SIZE(am33xx_clks); c++)
clk_preinit(c->lk.clk); clk_preinit(c->lk.clk);
......
...@@ -3573,8 +3573,6 @@ int __init omap3xxx_clk_init(void) ...@@ -3573,8 +3573,6 @@ int __init omap3xxx_clk_init(void)
else else
dpll4_dd = dpll4_dd_34xx; dpll4_dd = dpll4_dd_34xx;
clk_init(&omap2_clk_functions);
for (c = omap3xxx_clks; c < omap3xxx_clks + ARRAY_SIZE(omap3xxx_clks); for (c = omap3xxx_clks; c < omap3xxx_clks + ARRAY_SIZE(omap3xxx_clks);
c++) c++)
clk_preinit(c->lk.clk); clk_preinit(c->lk.clk);
......
...@@ -3366,8 +3366,6 @@ int __init omap4xxx_clk_init(void) ...@@ -3366,8 +3366,6 @@ int __init omap4xxx_clk_init(void)
return 0; return 0;
} }
clk_init(&omap2_clk_functions);
/* /*
* Must stay commented until all OMAP SoC drivers are * Must stay commented until all OMAP SoC drivers are
* converted to runtime PM, or drivers may start crashing * converted to runtime PM, or drivers may start crashing
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# #
# Common support # Common support
obj-y := common.o sram.o clock.o dma.o fb.o counter_32k.o obj-y := common.o sram.o dma.o fb.o counter_32k.o
obj-m := obj-m :=
obj-n := obj-n :=
obj- := obj- :=
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment