2 * arch/sh/kernel/cpu/sh4/clock-shx3.c
4 * SH-X3 support for the clock framework
6 * Copyright (C) 2006-2007 Renesas Technology Corp.
7 * Copyright (C) 2006-2007 Renesas Solutions Corp.
8 * Copyright (C) 2006-2010 Paul Mundt
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
14 #include <linux/init.h>
15 #include <linux/kernel.h>
17 #include <linux/clkdev.h>
18 #include <asm/clock.h>
22 * Default rate for the root input clock, reset this with clk_set_rate()
23 * from the platform code.
25 static struct clk extal_clk
= {
29 static unsigned long pll_recalc(struct clk
*clk
)
31 /* PLL1 has a fixed x72 multiplier. */
32 return clk
->parent
->rate
* 72;
35 static struct clk_ops pll_clk_ops
= {
39 static struct clk pll_clk
= {
42 .flags
= CLK_ENABLE_ON_INIT
,
45 static struct clk
*clks
[] = {
50 static unsigned int div2
[] = { 1, 2, 4, 6, 8, 12, 16, 18,
53 static struct clk_div_mult_table div4_div_mult_table
= {
55 .nr_divisors
= ARRAY_SIZE(div2
),
58 static struct clk_div4_table div4_table
= {
59 .div_mult_table
= &div4_div_mult_table
,
62 enum { DIV4_I
, DIV4_SH
, DIV4_B
, DIV4_DDR
, DIV4_SHA
, DIV4_P
, DIV4_NR
};
64 #define DIV4(_bit, _mask, _flags) \
65 SH_CLK_DIV4(&pll_clk, FRQMR1, _bit, _mask, _flags)
67 struct clk div4_clks
[DIV4_NR
] = {
68 [DIV4_P
] = DIV4(0, 0x0f80, 0),
69 [DIV4_SHA
] = DIV4(4, 0x0ff0, 0),
70 [DIV4_DDR
] = DIV4(12, 0x000c, CLK_ENABLE_ON_INIT
),
71 [DIV4_B
] = DIV4(16, 0x0fe0, CLK_ENABLE_ON_INIT
),
72 [DIV4_SH
] = DIV4(20, 0x000c, CLK_ENABLE_ON_INIT
),
73 [DIV4_I
] = DIV4(28, 0x000e, CLK_ENABLE_ON_INIT
),
76 #define MSTPCR0 0xffc00030
77 #define MSTPCR1 0xffc00034
79 enum { MSTP027
, MSTP026
, MSTP025
, MSTP024
,
80 MSTP009
, MSTP008
, MSTP003
, MSTP002
,
81 MSTP001
, MSTP000
, MSTP119
, MSTP105
,
84 static struct clk mstp_clks
[MSTP_NR
] = {
86 [MSTP027
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 27, 0),
87 [MSTP026
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 26, 0),
88 [MSTP025
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 25, 0),
89 [MSTP024
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 24, 0),
90 [MSTP009
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 9, 0),
91 [MSTP008
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 8, 0),
92 [MSTP003
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 3, 0),
93 [MSTP002
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 2, 0),
94 [MSTP001
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 1, 0),
95 [MSTP000
] = SH_CLK_MSTP32(&div4_clks
[DIV4_P
], MSTPCR0
, 0, 0),
98 [MSTP119
] = SH_CLK_MSTP32(NULL
, MSTPCR1
, 19, 0),
99 [MSTP105
] = SH_CLK_MSTP32(NULL
, MSTPCR1
, 5, 0),
100 [MSTP104
] = SH_CLK_MSTP32(NULL
, MSTPCR1
, 4, 0),
103 #define CLKDEV_CON_ID(_id, _clk) { .con_id = _id, .clk = _clk }
105 static struct clk_lookup lookups
[] = {
107 CLKDEV_CON_ID("extal", &extal_clk
),
108 CLKDEV_CON_ID("pll_clk", &pll_clk
),
111 CLKDEV_CON_ID("peripheral_clk", &div4_clks
[DIV4_P
]),
112 CLKDEV_CON_ID("shywaya_clk", &div4_clks
[DIV4_SHA
]),
113 CLKDEV_CON_ID("ddr_clk", &div4_clks
[DIV4_DDR
]),
114 CLKDEV_CON_ID("bus_clk", &div4_clks
[DIV4_B
]),
115 CLKDEV_CON_ID("shyway_clk", &div4_clks
[DIV4_SH
]),
116 CLKDEV_CON_ID("cpu_clk", &div4_clks
[DIV4_I
]),
121 .dev_id
= "sh-sci.3",
123 .clk
= &mstp_clks
[MSTP027
],
126 .dev_id
= "sh-sci.2",
128 .clk
= &mstp_clks
[MSTP026
],
131 .dev_id
= "sh-sci.1",
133 .clk
= &mstp_clks
[MSTP025
],
136 .dev_id
= "sh-sci.0",
138 .clk
= &mstp_clks
[MSTP024
],
140 CLKDEV_CON_ID("h8ex_fck", &mstp_clks
[MSTP003
]),
141 CLKDEV_CON_ID("csm_fck", &mstp_clks
[MSTP002
]),
142 CLKDEV_CON_ID("fe1_fck", &mstp_clks
[MSTP001
]),
143 CLKDEV_CON_ID("fe0_fck", &mstp_clks
[MSTP000
]),
146 .dev_id
= "sh_tmu.0",
148 .clk
= &mstp_clks
[MSTP008
],
151 .dev_id
= "sh_tmu.1",
153 .clk
= &mstp_clks
[MSTP008
],
156 .dev_id
= "sh_tmu.2",
158 .clk
= &mstp_clks
[MSTP008
],
161 .dev_id
= "sh_tmu.3",
163 .clk
= &mstp_clks
[MSTP009
],
166 .dev_id
= "sh_tmu.4",
168 .clk
= &mstp_clks
[MSTP009
],
171 .dev_id
= "sh_tmu.5",
173 .clk
= &mstp_clks
[MSTP009
],
175 CLKDEV_CON_ID("hudi_fck", &mstp_clks
[MSTP119
]),
176 CLKDEV_CON_ID("dmac_11_6_fck", &mstp_clks
[MSTP105
]),
177 CLKDEV_CON_ID("dmac_5_0_fck", &mstp_clks
[MSTP104
]),
180 int __init
arch_clk_init(void)
184 for (i
= 0; i
< ARRAY_SIZE(clks
); i
++)
185 ret
|= clk_register(clks
[i
]);
186 for (i
= 0; i
< ARRAY_SIZE(lookups
); i
++)
187 clkdev_add(&lookups
[i
]);
190 ret
= sh_clk_div4_register(div4_clks
, ARRAY_SIZE(div4_clks
),
193 ret
= sh_clk_mstp32_register(mstp_clks
, MSTP_NR
);