Merge git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6
[linux-2.6-block.git] / arch / sh / kernel / cpu / sh4a / clock-shx3.c
CommitLineData
2b1bd1ac
PM
1/*
2 * arch/sh/kernel/cpu/sh4/clock-shx3.c
3 *
4 * SH-X3 support for the clock framework
5 *
6 * Copyright (C) 2006-2007 Renesas Technology Corp.
7 * Copyright (C) 2006-2007 Renesas Solutions Corp.
8 * Copyright (C) 2006-2007 Paul Mundt
9 *
10 * This file is subject to the terms and conditions of the GNU General Public
11 * License. See the file "COPYING" in the main directory of this archive
12 * for more details.
13 */
14#include <linux/init.h>
15#include <linux/kernel.h>
38803d76
MD
16#include <linux/io.h>
17#include <asm/clkdev.h>
2b1bd1ac
PM
18#include <asm/clock.h>
19#include <asm/freq.h>
2b1bd1ac
PM
20
21static int ifc_divisors[] = { 1, 2, 4 ,6 };
22static int bfc_divisors[] = { 1, 1, 1, 1, 1, 12, 16, 18, 24, 32, 36, 48 };
23static int pfc_divisors[] = { 1, 1, 1, 1, 1, 1, 1, 18, 24, 32, 36, 48 };
24static int cfc_divisors[] = { 1, 1, 4, 6 };
25
26#define IFC_POS 28
27#define IFC_MSK 0x0003
28#define BFC_MSK 0x000f
29#define PFC_MSK 0x000f
30#define CFC_MSK 0x0003
31#define BFC_POS 16
32#define PFC_POS 0
33#define CFC_POS 20
34
35static void master_clk_init(struct clk *clk)
36{
9d56dd3b 37 clk->rate *= pfc_divisors[(__raw_readl(FRQCR) >> PFC_POS) & PFC_MSK];
2b1bd1ac
PM
38}
39
40static struct clk_ops shx3_master_clk_ops = {
41 .init = master_clk_init,
42};
43
b68d8201 44static unsigned long module_clk_recalc(struct clk *clk)
2b1bd1ac 45{
9d56dd3b 46 int idx = ((__raw_readl(FRQCR) >> PFC_POS) & PFC_MSK);
b68d8201 47 return clk->parent->rate / pfc_divisors[idx];
2b1bd1ac
PM
48}
49
50static struct clk_ops shx3_module_clk_ops = {
51 .recalc = module_clk_recalc,
52};
53
b68d8201 54static unsigned long bus_clk_recalc(struct clk *clk)
2b1bd1ac 55{
9d56dd3b 56 int idx = ((__raw_readl(FRQCR) >> BFC_POS) & BFC_MSK);
b68d8201 57 return clk->parent->rate / bfc_divisors[idx];
2b1bd1ac
PM
58}
59
60static struct clk_ops shx3_bus_clk_ops = {
61 .recalc = bus_clk_recalc,
62};
63
b68d8201 64static unsigned long cpu_clk_recalc(struct clk *clk)
2b1bd1ac 65{
9d56dd3b 66 int idx = ((__raw_readl(FRQCR) >> IFC_POS) & IFC_MSK);
b68d8201 67 return clk->parent->rate / ifc_divisors[idx];
2b1bd1ac
PM
68}
69
70static struct clk_ops shx3_cpu_clk_ops = {
71 .recalc = cpu_clk_recalc,
72};
73
74static struct clk_ops *shx3_clk_ops[] = {
75 &shx3_master_clk_ops,
76 &shx3_module_clk_ops,
77 &shx3_bus_clk_ops,
78 &shx3_cpu_clk_ops,
79};
80
81void __init arch_init_clk_ops(struct clk_ops **ops, int idx)
82{
83 if (idx < ARRAY_SIZE(shx3_clk_ops))
84 *ops = shx3_clk_ops[idx];
85}
86
b68d8201 87static unsigned long shyway_clk_recalc(struct clk *clk)
2b1bd1ac 88{
9d56dd3b 89 int idx = ((__raw_readl(FRQCR) >> CFC_POS) & CFC_MSK);
b68d8201 90 return clk->parent->rate / cfc_divisors[idx];
2b1bd1ac
PM
91}
92
93static struct clk_ops shx3_shyway_clk_ops = {
94 .recalc = shyway_clk_recalc,
95};
96
97static struct clk shx3_shyway_clk = {
4ff29ff8 98 .flags = CLK_ENABLE_ON_INIT,
2b1bd1ac
PM
99 .ops = &shx3_shyway_clk_ops,
100};
101
102/*
103 * Additional SHx3-specific on-chip clocks that aren't already part of the
104 * clock framework
105 */
106static struct clk *shx3_onchip_clocks[] = {
107 &shx3_shyway_clk,
108};
109
38803d76
MD
110#define CLKDEV_CON_ID(_id, _clk) { .con_id = _id, .clk = _clk }
111
112static struct clk_lookup lookups[] = {
113 /* main clocks */
114 CLKDEV_CON_ID("shyway_clk", &shx3_shyway_clk),
115};
116
9fe5ee0e 117int __init arch_clk_init(void)
2b1bd1ac 118{
253b0887 119 struct clk *clk;
f5c84cf5 120 int i, ret = 0;
2b1bd1ac 121
253b0887
PM
122 cpg_clk_init();
123
124 clk = clk_get(NULL, "master_clk");
2b1bd1ac
PM
125 for (i = 0; i < ARRAY_SIZE(shx3_onchip_clocks); i++) {
126 struct clk *clkp = shx3_onchip_clocks[i];
127
128 clkp->parent = clk;
f5c84cf5 129 ret |= clk_register(clkp);
2b1bd1ac
PM
130 }
131
2b1bd1ac
PM
132 clk_put(clk);
133
38803d76
MD
134 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
135
f5c84cf5 136 return ret;
2b1bd1ac 137}