GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / sh / kernel / cpu / sh4a / clock-sh7780.c
blob62d706350060089add0e76aa4c1f3b5b3fd00dac
1 /*
2 * arch/sh/kernel/cpu/sh4a/clock-sh7780.c
4 * SH7780 support for the clock framework
6 * Copyright (C) 2005 Paul Mundt
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/io.h>
15 #include <asm/clkdev.h>
16 #include <asm/clock.h>
17 #include <asm/freq.h>
18 #include <asm/io.h>
20 static int ifc_divisors[] = { 2, 4 };
21 static int bfc_divisors[] = { 1, 1, 1, 8, 12, 16, 24, 1 };
22 static int pfc_divisors[] = { 1, 24, 24, 1 };
23 static int cfc_divisors[] = { 1, 1, 4, 1, 6, 1, 1, 1 };
25 static void master_clk_init(struct clk *clk)
27 clk->rate *= pfc_divisors[__raw_readl(FRQCR) & 0x0003];
30 static struct clk_ops sh7780_master_clk_ops = {
31 .init = master_clk_init,
34 static unsigned long module_clk_recalc(struct clk *clk)
36 int idx = (__raw_readl(FRQCR) & 0x0003);
37 return clk->parent->rate / pfc_divisors[idx];
40 static struct clk_ops sh7780_module_clk_ops = {
41 .recalc = module_clk_recalc,
44 static unsigned long bus_clk_recalc(struct clk *clk)
46 int idx = ((__raw_readl(FRQCR) >> 16) & 0x0007);
47 return clk->parent->rate / bfc_divisors[idx];
50 static struct clk_ops sh7780_bus_clk_ops = {
51 .recalc = bus_clk_recalc,
54 static unsigned long cpu_clk_recalc(struct clk *clk)
56 int idx = ((__raw_readl(FRQCR) >> 24) & 0x0001);
57 return clk->parent->rate / ifc_divisors[idx];
60 static struct clk_ops sh7780_cpu_clk_ops = {
61 .recalc = cpu_clk_recalc,
64 static struct clk_ops *sh7780_clk_ops[] = {
65 &sh7780_master_clk_ops,
66 &sh7780_module_clk_ops,
67 &sh7780_bus_clk_ops,
68 &sh7780_cpu_clk_ops,
71 void __init arch_init_clk_ops(struct clk_ops **ops, int idx)
73 if (idx < ARRAY_SIZE(sh7780_clk_ops))
74 *ops = sh7780_clk_ops[idx];
77 static unsigned long shyway_clk_recalc(struct clk *clk)
79 int idx = ((__raw_readl(FRQCR) >> 20) & 0x0007);
80 return clk->parent->rate / cfc_divisors[idx];
83 static struct clk_ops sh7780_shyway_clk_ops = {
84 .recalc = shyway_clk_recalc,
87 static struct clk sh7780_shyway_clk = {
88 .flags = CLK_ENABLE_ON_INIT,
89 .ops = &sh7780_shyway_clk_ops,
93 * Additional SH7780-specific on-chip clocks that aren't already part of the
94 * clock framework
96 static struct clk *sh7780_onchip_clocks[] = {
97 &sh7780_shyway_clk,
100 #define CLKDEV_CON_ID(_id, _clk) { .con_id = _id, .clk = _clk }
102 static struct clk_lookup lookups[] = {
103 /* main clocks */
104 CLKDEV_CON_ID("shyway_clk", &sh7780_shyway_clk),
107 int __init arch_clk_init(void)
109 struct clk *clk;
110 int i, ret = 0;
112 cpg_clk_init();
114 clk = clk_get(NULL, "master_clk");
115 for (i = 0; i < ARRAY_SIZE(sh7780_onchip_clocks); i++) {
116 struct clk *clkp = sh7780_onchip_clocks[i];
118 clkp->parent = clk;
119 ret |= clk_register(clkp);
122 clk_put(clk);
124 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
126 return ret;