Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / sh / kernel / cpu / sh4 / clock-sh4.c
blobdca9f87a12d68fa114cdc6bdbcc252e4caf722c3
1 /*
2 * arch/sh/kernel/cpu/sh4/clock-sh4.c
4 * Generic SH-4 support for the clock framework
6 * Copyright (C) 2005 Paul Mundt
8 * FRQCR parsing hacked out of arch/sh/kernel/time.c
10 * Copyright (C) 1999 Tetsuya Okada & Niibe Yutaka
11 * Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org>
12 * Copyright (C) 2002, 2003, 2004 Paul Mundt
13 * Copyright (C) 2002 M. R. Brown <mrbrown@linux-sh.org>
15 * This file is subject to the terms and conditions of the GNU General Public
16 * License. See the file "COPYING" in the main directory of this archive
17 * for more details.
19 #include <linux/init.h>
20 #include <linux/kernel.h>
21 #include <asm/clock.h>
22 #include <asm/freq.h>
23 #include <asm/io.h>
25 static int ifc_divisors[] = { 1, 2, 3, 4, 6, 8, 1, 1 };
26 #define bfc_divisors ifc_divisors /* Same */
27 static int pfc_divisors[] = { 2, 3, 4, 6, 8, 2, 2, 2 };
29 static void master_clk_init(struct clk *clk)
31 clk->rate *= pfc_divisors[ctrl_inw(FRQCR) & 0x0007];
34 static struct clk_ops sh4_master_clk_ops = {
35 .init = master_clk_init,
38 static void module_clk_recalc(struct clk *clk)
40 int idx = (ctrl_inw(FRQCR) & 0x0007);
41 clk->rate = clk->parent->rate / pfc_divisors[idx];
44 static struct clk_ops sh4_module_clk_ops = {
45 .recalc = module_clk_recalc,
48 static void bus_clk_recalc(struct clk *clk)
50 int idx = (ctrl_inw(FRQCR) >> 3) & 0x0007;
51 clk->rate = clk->parent->rate / bfc_divisors[idx];
54 static struct clk_ops sh4_bus_clk_ops = {
55 .recalc = bus_clk_recalc,
58 static void cpu_clk_recalc(struct clk *clk)
60 int idx = (ctrl_inw(FRQCR) >> 6) & 0x0007;
61 clk->rate = clk->parent->rate / ifc_divisors[idx];
64 static struct clk_ops sh4_cpu_clk_ops = {
65 .recalc = cpu_clk_recalc,
68 static struct clk_ops *sh4_clk_ops[] = {
69 &sh4_master_clk_ops,
70 &sh4_module_clk_ops,
71 &sh4_bus_clk_ops,
72 &sh4_cpu_clk_ops,
75 void __init arch_init_clk_ops(struct clk_ops **ops, int idx)
77 if (idx < ARRAY_SIZE(sh4_clk_ops))
78 *ops = sh4_clk_ops[idx];