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
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <asm/clock.h>
18 static int ifc_divisors
[] = { 2, 4 };
19 static int bfc_divisors
[] = { 1, 1, 1, 8, 12, 16, 24, 1 };
20 static int pfc_divisors
[] = { 1, 24, 24, 1 };
21 static int cfc_divisors
[] = { 1, 1, 4, 1, 6, 1, 1, 1 };
23 static void master_clk_init(struct clk
*clk
)
25 clk
->rate
*= pfc_divisors
[ctrl_inl(FRQCR
) & 0x0003];
28 static struct clk_ops sh7780_master_clk_ops
= {
29 .init
= master_clk_init
,
32 static void module_clk_recalc(struct clk
*clk
)
34 int idx
= (ctrl_inl(FRQCR
) & 0x0003);
35 clk
->rate
= clk
->parent
->rate
/ pfc_divisors
[idx
];
38 static struct clk_ops sh7780_module_clk_ops
= {
39 .recalc
= module_clk_recalc
,
42 static void bus_clk_recalc(struct clk
*clk
)
44 int idx
= ((ctrl_inl(FRQCR
) >> 16) & 0x0007);
45 clk
->rate
= clk
->parent
->rate
/ bfc_divisors
[idx
];
48 static struct clk_ops sh7780_bus_clk_ops
= {
49 .recalc
= bus_clk_recalc
,
52 static void cpu_clk_recalc(struct clk
*clk
)
54 int idx
= ((ctrl_inl(FRQCR
) >> 24) & 0x0001);
55 clk
->rate
= clk
->parent
->rate
/ ifc_divisors
[idx
];
58 static struct clk_ops sh7780_cpu_clk_ops
= {
59 .recalc
= cpu_clk_recalc
,
62 static struct clk_ops
*sh7780_clk_ops
[] = {
63 &sh7780_master_clk_ops
,
64 &sh7780_module_clk_ops
,
69 void __init
arch_init_clk_ops(struct clk_ops
**ops
, int idx
)
71 if (idx
< ARRAY_SIZE(sh7780_clk_ops
))
72 *ops
= sh7780_clk_ops
[idx
];
75 static void shyway_clk_recalc(struct clk
*clk
)
77 int idx
= ((ctrl_inl(FRQCR
) >> 20) & 0x0007);
78 clk
->rate
= clk
->parent
->rate
/ cfc_divisors
[idx
];
81 static struct clk_ops sh7780_shyway_clk_ops
= {
82 .recalc
= shyway_clk_recalc
,
85 static struct clk sh7780_shyway_clk
= {
87 .flags
= CLK_ALWAYS_ENABLED
,
88 .ops
= &sh7780_shyway_clk_ops
,
92 * Additional SH7780-specific on-chip clocks that aren't already part of the
95 static struct clk
*sh7780_onchip_clocks
[] = {
99 static int __init
sh7780_clk_init(void)
101 struct clk
*clk
= clk_get(NULL
, "master_clk");
104 for (i
= 0; i
< ARRAY_SIZE(sh7780_onchip_clocks
); i
++) {
105 struct clk
*clkp
= sh7780_onchip_clocks
[i
];
113 * Now that we have the rest of the clocks registered, we need to
114 * force the parent clock to propagate so that these clocks will
115 * automatically figure out their rate. We cheat by handing the
116 * parent clock its current rate and forcing child propagation.
118 clk_set_rate(clk
, clk_get_rate(clk
));
125 arch_initcall(sh7780_clk_init
);