2007-03-12 14:38:59 +09:00
|
|
|
/*
|
|
|
|
* arch/sh/kernel/cpu/sh4a/clock-sh7785.c
|
|
|
|
*
|
|
|
|
* SH7785 support for the clock framework
|
|
|
|
*
|
2009-05-13 17:55:00 +09:00
|
|
|
* Copyright (C) 2007 - 2009 Paul Mundt
|
2007-03-12 14:38:59 +09:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
2009-05-13 17:55:00 +09:00
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/io.h>
|
2007-03-12 14:38:59 +09:00
|
|
|
#include <asm/clock.h>
|
|
|
|
#include <asm/freq.h>
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static unsigned int div2[] = { 1, 2, 4, 6, 8, 12, 16, 18,
|
|
|
|
24, 32, 36, 48 };
|
|
|
|
struct clk_priv {
|
|
|
|
unsigned int shift;
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
#define FRQMR_CLK_DATA(_name, _shift) \
|
|
|
|
static struct clk_priv _name##_data = { .shift = _shift, }
|
2007-03-12 14:38:59 +09:00
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
FRQMR_CLK_DATA(pfc, 0);
|
|
|
|
FRQMR_CLK_DATA(s3fc, 4);
|
|
|
|
FRQMR_CLK_DATA(s2fc, 8);
|
|
|
|
FRQMR_CLK_DATA(mfc, 12);
|
|
|
|
FRQMR_CLK_DATA(bfc, 16);
|
|
|
|
FRQMR_CLK_DATA(sfc, 20);
|
|
|
|
FRQMR_CLK_DATA(ufc, 24);
|
|
|
|
FRQMR_CLK_DATA(ifc, 28);
|
2007-03-12 14:38:59 +09:00
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static unsigned long frqmr_clk_recalc(struct clk *clk)
|
2007-03-12 14:38:59 +09:00
|
|
|
{
|
2009-05-13 17:55:00 +09:00
|
|
|
struct clk_priv *data = clk->priv;
|
|
|
|
unsigned int idx;
|
2007-03-12 14:38:59 +09:00
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
idx = (__raw_readl(FRQMR1) >> data->shift) & 0x000f;
|
2007-03-12 14:38:59 +09:00
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
/*
|
|
|
|
* XXX: PLL1 multiplier is locked for the default clock mode,
|
|
|
|
* when mode pin detection and configuration support is added,
|
|
|
|
* select the multiplier dynamically.
|
|
|
|
*/
|
|
|
|
return clk->parent->rate * 36 / div2[idx];
|
2007-03-12 14:38:59 +09:00
|
|
|
}
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk_ops frqmr_clk_ops = {
|
|
|
|
.recalc = frqmr_clk_recalc,
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
/*
|
|
|
|
* Default rate for the root input clock, reset this with clk_set_rate()
|
|
|
|
* from the platform code.
|
|
|
|
*/
|
|
|
|
static struct clk extal_clk = {
|
|
|
|
.name = "extal",
|
|
|
|
.id = -1,
|
|
|
|
.rate = 33333333,
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk cpu_clk = {
|
|
|
|
.name = "cpu_clk", /* Ick */
|
|
|
|
.id = -1,
|
|
|
|
.ops = &frqmr_clk_ops,
|
|
|
|
.parent = &extal_clk,
|
|
|
|
.flags = CLK_ENABLE_ON_INIT,
|
|
|
|
.priv = &ifc_data,
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk shyway_clk = {
|
|
|
|
.name = "shyway_clk", /* SHck */
|
|
|
|
.id = -1,
|
|
|
|
.ops = &frqmr_clk_ops,
|
|
|
|
.parent = &extal_clk,
|
2009-05-12 05:14:53 +09:00
|
|
|
.flags = CLK_ENABLE_ON_INIT,
|
2009-05-13 17:55:00 +09:00
|
|
|
.priv = &sfc_data,
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk peripheral_clk = {
|
|
|
|
.name = "peripheral_clk", /* Pck */
|
|
|
|
.id = -1,
|
|
|
|
.ops = &frqmr_clk_ops,
|
|
|
|
.parent = &extal_clk,
|
|
|
|
.flags = CLK_ENABLE_ON_INIT,
|
|
|
|
.priv = &pfc_data,
|
|
|
|
};
|
2007-03-12 14:38:59 +09:00
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk ddr_clk = {
|
|
|
|
.name = "ddr_clk", /* DDRck */
|
|
|
|
.id = -1,
|
|
|
|
.ops = &frqmr_clk_ops,
|
|
|
|
.parent = &extal_clk,
|
|
|
|
.flags = CLK_ENABLE_ON_INIT,
|
|
|
|
.priv = &mfc_data,
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk bus_clk = {
|
|
|
|
.name = "bus_clk", /* Bck */
|
|
|
|
.id = -1,
|
|
|
|
.ops = &frqmr_clk_ops,
|
|
|
|
.parent = &extal_clk,
|
2009-05-12 05:14:53 +09:00
|
|
|
.flags = CLK_ENABLE_ON_INIT,
|
2009-05-13 17:55:00 +09:00
|
|
|
.priv = &bfc_data,
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk ga_clk = {
|
|
|
|
.name = "ga_clk", /* GAck */
|
|
|
|
.id = -1,
|
|
|
|
.ops = &frqmr_clk_ops,
|
|
|
|
.parent = &extal_clk,
|
|
|
|
.priv = &s2fc_data,
|
|
|
|
};
|
2007-03-12 14:38:59 +09:00
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk du_clk = {
|
|
|
|
.name = "du_clk", /* DUck */
|
|
|
|
.id = -1,
|
|
|
|
.ops = &frqmr_clk_ops,
|
|
|
|
.parent = &extal_clk,
|
|
|
|
.priv = &s3fc_data,
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk umem_clk = {
|
|
|
|
.name = "umem_clk", /* uck */
|
|
|
|
.id = -1,
|
|
|
|
.ops = &frqmr_clk_ops,
|
|
|
|
.parent = &extal_clk,
|
2009-05-12 05:14:53 +09:00
|
|
|
.flags = CLK_ENABLE_ON_INIT,
|
2009-05-13 17:55:00 +09:00
|
|
|
.priv = &ufc_data,
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
static struct clk *clks[] = {
|
|
|
|
&extal_clk,
|
|
|
|
&cpu_clk,
|
|
|
|
­way_clk,
|
|
|
|
&peripheral_clk,
|
|
|
|
&ddr_clk,
|
|
|
|
&bus_clk,
|
|
|
|
&ga_clk,
|
|
|
|
&du_clk,
|
|
|
|
&umem_clk,
|
2007-03-12 14:38:59 +09:00
|
|
|
};
|
|
|
|
|
2009-05-12 19:29:04 +09:00
|
|
|
int __init arch_clk_init(void)
|
2007-03-12 14:38:59 +09:00
|
|
|
{
|
2009-05-12 05:59:27 +09:00
|
|
|
int i, ret = 0;
|
2007-03-12 14:38:59 +09:00
|
|
|
|
2009-05-13 17:55:00 +09:00
|
|
|
for (i = 0; i < ARRAY_SIZE(clks); i++)
|
|
|
|
ret |= clk_register(clks[i]);
|
2007-03-12 14:38:59 +09:00
|
|
|
|
2009-05-12 05:59:27 +09:00
|
|
|
return ret;
|
2007-03-12 14:38:59 +09:00
|
|
|
}
|