2010-02-24 08:40:36 +01:00
|
|
|
/* linux/arch/arm/mach-s5pv210/clock.c
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
|
|
|
|
* http://www.samsung.com/
|
|
|
|
*
|
|
|
|
* S5PV210 - Clock support
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/sysdev.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
|
|
|
|
#include <mach/map.h>
|
|
|
|
|
|
|
|
#include <plat/cpu-freq.h>
|
|
|
|
#include <mach/regs-clock.h>
|
|
|
|
#include <plat/clock.h>
|
|
|
|
#include <plat/cpu.h>
|
|
|
|
#include <plat/pll.h>
|
|
|
|
#include <plat/s5p-clock.h>
|
|
|
|
#include <plat/clock-clksrc.h>
|
|
|
|
#include <plat/s5pv210.h>
|
|
|
|
|
2010-10-12 02:19:26 +02:00
|
|
|
static unsigned long xtal;
|
|
|
|
|
2010-05-17 02:38:01 +02:00
|
|
|
static struct clksrc_clk clk_mout_apll = {
|
|
|
|
.clk = {
|
|
|
|
.name = "mout_apll",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clk_src_apll,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC0, .shift = 0, .size = 1 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_mout_epll = {
|
|
|
|
.clk = {
|
|
|
|
.name = "mout_epll",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clk_src_epll,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC0, .shift = 8, .size = 1 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_mout_mpll = {
|
|
|
|
.clk = {
|
|
|
|
.name = "mout_mpll",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clk_src_mpll,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC0, .shift = 4, .size = 1 },
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:31 +02:00
|
|
|
static struct clk *clkset_armclk_list[] = {
|
|
|
|
[0] = &clk_mout_apll.clk,
|
|
|
|
[1] = &clk_mout_mpll.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_armclk = {
|
|
|
|
.sources = clkset_armclk_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_armclk_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_armclk = {
|
|
|
|
.clk = {
|
|
|
|
.name = "armclk",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clkset_armclk,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC0, .shift = 16, .size = 1 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV0, .shift = 0, .size = 3 },
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:34 +02:00
|
|
|
static struct clksrc_clk clk_hclk_msys = {
|
|
|
|
.clk = {
|
|
|
|
.name = "hclk_msys",
|
|
|
|
.id = -1,
|
|
|
|
.parent = &clk_armclk.clk,
|
|
|
|
},
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV0, .shift = 8, .size = 3 },
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:42 +02:00
|
|
|
static struct clksrc_clk clk_pclk_msys = {
|
|
|
|
.clk = {
|
|
|
|
.name = "pclk_msys",
|
|
|
|
.id = -1,
|
|
|
|
.parent = &clk_hclk_msys.clk,
|
|
|
|
},
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV0, .shift = 12, .size = 3 },
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:37 +02:00
|
|
|
static struct clksrc_clk clk_sclk_a2m = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_a2m",
|
|
|
|
.id = -1,
|
|
|
|
.parent = &clk_mout_apll.clk,
|
|
|
|
},
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV0, .shift = 4, .size = 3 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk *clkset_hclk_sys_list[] = {
|
|
|
|
[0] = &clk_mout_mpll.clk,
|
|
|
|
[1] = &clk_sclk_a2m.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_hclk_sys = {
|
|
|
|
.sources = clkset_hclk_sys_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_hclk_sys_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_hclk_dsys = {
|
|
|
|
.clk = {
|
|
|
|
.name = "hclk_dsys",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clkset_hclk_sys,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC0, .shift = 20, .size = 1 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV0, .shift = 16, .size = 4 },
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:48 +02:00
|
|
|
static struct clksrc_clk clk_pclk_dsys = {
|
|
|
|
.clk = {
|
|
|
|
.name = "pclk_dsys",
|
|
|
|
.id = -1,
|
|
|
|
.parent = &clk_hclk_dsys.clk,
|
|
|
|
},
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV0, .shift = 20, .size = 3 },
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:40 +02:00
|
|
|
static struct clksrc_clk clk_hclk_psys = {
|
|
|
|
.clk = {
|
|
|
|
.name = "hclk_psys",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clkset_hclk_sys,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC0, .shift = 24, .size = 1 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV0, .shift = 24, .size = 4 },
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:50 +02:00
|
|
|
static struct clksrc_clk clk_pclk_psys = {
|
|
|
|
.clk = {
|
|
|
|
.name = "pclk_psys",
|
|
|
|
.id = -1,
|
|
|
|
.parent = &clk_hclk_psys.clk,
|
|
|
|
},
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV0, .shift = 28, .size = 3 },
|
|
|
|
};
|
|
|
|
|
2010-02-24 08:40:36 +01:00
|
|
|
static int s5pv210_clk_ip0_ctrl(struct clk *clk, int enable)
|
|
|
|
{
|
|
|
|
return s5p_gatectrl(S5P_CLKGATE_IP0, clk, enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int s5pv210_clk_ip1_ctrl(struct clk *clk, int enable)
|
|
|
|
{
|
|
|
|
return s5p_gatectrl(S5P_CLKGATE_IP1, clk, enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int s5pv210_clk_ip2_ctrl(struct clk *clk, int enable)
|
|
|
|
{
|
|
|
|
return s5p_gatectrl(S5P_CLKGATE_IP2, clk, enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int s5pv210_clk_ip3_ctrl(struct clk *clk, int enable)
|
|
|
|
{
|
|
|
|
return s5p_gatectrl(S5P_CLKGATE_IP3, clk, enable);
|
|
|
|
}
|
|
|
|
|
2010-05-17 02:38:52 +02:00
|
|
|
static int s5pv210_clk_mask0_ctrl(struct clk *clk, int enable)
|
|
|
|
{
|
|
|
|
return s5p_gatectrl(S5P_CLK_SRC_MASK0, clk, enable);
|
|
|
|
}
|
|
|
|
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
static int s5pv210_clk_mask1_ctrl(struct clk *clk, int enable)
|
|
|
|
{
|
|
|
|
return s5p_gatectrl(S5P_CLK_SRC_MASK1, clk, enable);
|
|
|
|
}
|
|
|
|
|
2010-05-17 02:38:52 +02:00
|
|
|
static struct clk clk_sclk_hdmi27m = {
|
|
|
|
.name = "sclk_hdmi27m",
|
|
|
|
.id = -1,
|
|
|
|
.rate = 27000000,
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:55 +02:00
|
|
|
static struct clk clk_sclk_hdmiphy = {
|
|
|
|
.name = "sclk_hdmiphy",
|
|
|
|
.id = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk clk_sclk_usbphy0 = {
|
|
|
|
.name = "sclk_usbphy0",
|
|
|
|
.id = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk clk_sclk_usbphy1 = {
|
|
|
|
.name = "sclk_usbphy1",
|
|
|
|
.id = -1,
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:39:00 +02:00
|
|
|
static struct clk clk_pcmcdclk0 = {
|
|
|
|
.name = "pcmcdclk",
|
|
|
|
.id = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk clk_pcmcdclk1 = {
|
|
|
|
.name = "pcmcdclk",
|
|
|
|
.id = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk clk_pcmcdclk2 = {
|
|
|
|
.name = "pcmcdclk",
|
|
|
|
.id = -1,
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:52 +02:00
|
|
|
static struct clk *clkset_vpllsrc_list[] = {
|
|
|
|
[0] = &clk_fin_vpll,
|
|
|
|
[1] = &clk_sclk_hdmi27m,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_vpllsrc = {
|
|
|
|
.sources = clkset_vpllsrc_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_vpllsrc_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_vpllsrc = {
|
|
|
|
.clk = {
|
|
|
|
.name = "vpll_src",
|
|
|
|
.id = -1,
|
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 7),
|
|
|
|
},
|
|
|
|
.sources = &clkset_vpllsrc,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC1, .shift = 28, .size = 1 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk *clkset_sclk_vpll_list[] = {
|
|
|
|
[0] = &clk_vpllsrc.clk,
|
|
|
|
[1] = &clk_fout_vpll,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_sclk_vpll = {
|
|
|
|
.sources = clkset_sclk_vpll_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_sclk_vpll_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_sclk_vpll = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_vpll",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clkset_sclk_vpll,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC0, .shift = 12, .size = 1 },
|
|
|
|
};
|
|
|
|
|
2010-10-12 02:19:30 +02:00
|
|
|
static struct clk *clkset_moutdmc0src_list[] = {
|
|
|
|
[0] = &clk_sclk_a2m.clk,
|
|
|
|
[1] = &clk_mout_mpll.clk,
|
|
|
|
[2] = NULL,
|
|
|
|
[3] = NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_moutdmc0src = {
|
|
|
|
.sources = clkset_moutdmc0src_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_moutdmc0src_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_mout_dmc0 = {
|
|
|
|
.clk = {
|
|
|
|
.name = "mout_dmc0",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clkset_moutdmc0src,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC6, .shift = 24, .size = 2 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_sclk_dmc0 = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_dmc0",
|
|
|
|
.id = -1,
|
|
|
|
.parent = &clk_mout_dmc0.clk,
|
|
|
|
},
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV6, .shift = 28, .size = 4 },
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:44 +02:00
|
|
|
static unsigned long s5pv210_clk_imem_get_rate(struct clk *clk)
|
|
|
|
{
|
|
|
|
return clk_get_rate(clk->parent) / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct clk_ops clk_hclk_imem_ops = {
|
|
|
|
.get_rate = s5pv210_clk_imem_get_rate,
|
|
|
|
};
|
|
|
|
|
2010-10-12 02:19:26 +02:00
|
|
|
static unsigned long s5pv210_clk_fout_apll_get_rate(struct clk *clk)
|
|
|
|
{
|
|
|
|
return s5p_get_pll45xx(xtal, __raw_readl(S5P_APLL_CON), pll_4508);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct clk_ops clk_fout_apll_ops = {
|
|
|
|
.get_rate = s5pv210_clk_fout_apll_get_rate,
|
|
|
|
};
|
|
|
|
|
2010-02-24 08:40:36 +01:00
|
|
|
static struct clk init_clocks_disable[] = {
|
|
|
|
{
|
2010-10-19 11:10:53 +02:00
|
|
|
.name = "pdma",
|
|
|
|
.id = 0,
|
|
|
|
.parent = &clk_hclk_psys.clk,
|
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ctrlbit = (1 << 3),
|
|
|
|
}, {
|
|
|
|
.name = "pdma",
|
|
|
|
.id = 1,
|
|
|
|
.parent = &clk_hclk_psys.clk,
|
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ctrlbit = (1 << 4),
|
|
|
|
}, {
|
2010-02-24 08:40:36 +01:00
|
|
|
.name = "rot",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:37 +02:00
|
|
|
.parent = &clk_hclk_dsys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ctrlbit = (1<<29),
|
2010-09-10 12:43:12 +02:00
|
|
|
}, {
|
|
|
|
.name = "fimc",
|
|
|
|
.id = 0,
|
|
|
|
.parent = &clk_hclk_dsys.clk,
|
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ctrlbit = (1 << 24),
|
|
|
|
}, {
|
|
|
|
.name = "fimc",
|
|
|
|
.id = 1,
|
|
|
|
.parent = &clk_hclk_dsys.clk,
|
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ctrlbit = (1 << 25),
|
|
|
|
}, {
|
|
|
|
.name = "fimc",
|
|
|
|
.id = 2,
|
|
|
|
.parent = &clk_hclk_dsys.clk,
|
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ctrlbit = (1 << 26),
|
2010-02-24 08:40:36 +01:00
|
|
|
}, {
|
|
|
|
.name = "otg",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:40 +02:00
|
|
|
.parent = &clk_hclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip1_ctrl,
|
|
|
|
.ctrlbit = (1<<16),
|
|
|
|
}, {
|
|
|
|
.name = "usb-host",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:40 +02:00
|
|
|
.parent = &clk_hclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip1_ctrl,
|
|
|
|
.ctrlbit = (1<<17),
|
|
|
|
}, {
|
|
|
|
.name = "lcd",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:37 +02:00
|
|
|
.parent = &clk_hclk_dsys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip1_ctrl,
|
|
|
|
.ctrlbit = (1<<0),
|
|
|
|
}, {
|
|
|
|
.name = "cfcon",
|
|
|
|
.id = 0,
|
2010-05-17 02:38:40 +02:00
|
|
|
.parent = &clk_hclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip1_ctrl,
|
|
|
|
.ctrlbit = (1<<25),
|
|
|
|
}, {
|
|
|
|
.name = "hsmmc",
|
|
|
|
.id = 0,
|
2010-05-17 02:38:40 +02:00
|
|
|
.parent = &clk_hclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip2_ctrl,
|
|
|
|
.ctrlbit = (1<<16),
|
|
|
|
}, {
|
|
|
|
.name = "hsmmc",
|
|
|
|
.id = 1,
|
2010-05-17 02:38:40 +02:00
|
|
|
.parent = &clk_hclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip2_ctrl,
|
|
|
|
.ctrlbit = (1<<17),
|
|
|
|
}, {
|
|
|
|
.name = "hsmmc",
|
|
|
|
.id = 2,
|
2010-05-17 02:38:40 +02:00
|
|
|
.parent = &clk_hclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip2_ctrl,
|
|
|
|
.ctrlbit = (1<<18),
|
|
|
|
}, {
|
|
|
|
.name = "hsmmc",
|
|
|
|
.id = 3,
|
2010-05-17 02:38:40 +02:00
|
|
|
.parent = &clk_hclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip2_ctrl,
|
|
|
|
.ctrlbit = (1<<19),
|
|
|
|
}, {
|
|
|
|
.name = "systimer",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<16),
|
|
|
|
}, {
|
|
|
|
.name = "watchdog",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<22),
|
|
|
|
}, {
|
|
|
|
.name = "rtc",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<15),
|
|
|
|
}, {
|
|
|
|
.name = "i2c",
|
|
|
|
.id = 0,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<7),
|
|
|
|
}, {
|
|
|
|
.name = "i2c",
|
|
|
|
.id = 1,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
2010-08-21 02:18:19 +02:00
|
|
|
.ctrlbit = (1 << 10),
|
2010-02-24 08:40:36 +01:00
|
|
|
}, {
|
|
|
|
.name = "i2c",
|
|
|
|
.id = 2,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<9),
|
|
|
|
}, {
|
|
|
|
.name = "spi",
|
|
|
|
.id = 0,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<12),
|
|
|
|
}, {
|
|
|
|
.name = "spi",
|
|
|
|
.id = 1,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<13),
|
|
|
|
}, {
|
|
|
|
.name = "spi",
|
|
|
|
.id = 2,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<14),
|
|
|
|
}, {
|
|
|
|
.name = "timers",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<23),
|
|
|
|
}, {
|
|
|
|
.name = "adc",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<24),
|
|
|
|
}, {
|
|
|
|
.name = "keypad",
|
|
|
|
.id = -1,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<21),
|
|
|
|
}, {
|
|
|
|
.name = "i2s_v50",
|
|
|
|
.id = 0,
|
|
|
|
.parent = &clk_p,
|
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1<<4),
|
|
|
|
}, {
|
|
|
|
.name = "i2s_v32",
|
|
|
|
.id = 0,
|
|
|
|
.parent = &clk_p,
|
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.ctrlbit = (1 << 5),
|
2010-02-24 08:40:36 +01:00
|
|
|
}, {
|
|
|
|
.name = "i2s_v32",
|
|
|
|
.id = 1,
|
|
|
|
.parent = &clk_p,
|
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.ctrlbit = (1 << 6),
|
2010-10-14 03:35:24 +02:00
|
|
|
}, {
|
|
|
|
.name = "spdif",
|
|
|
|
.id = -1,
|
|
|
|
.parent = &clk_p,
|
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
|
|
|
.ctrlbit = (1 << 0),
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
},
|
2010-02-24 08:40:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk init_clocks[] = {
|
|
|
|
{
|
2010-05-17 02:38:44 +02:00
|
|
|
.name = "hclk_imem",
|
|
|
|
.id = -1,
|
|
|
|
.parent = &clk_hclk_msys.clk,
|
|
|
|
.ctrlbit = (1 << 5),
|
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ops = &clk_hclk_imem_ops,
|
|
|
|
}, {
|
2010-02-24 08:40:36 +01:00
|
|
|
.name = "uart",
|
|
|
|
.id = 0,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.ctrlbit = (1 << 17),
|
2010-02-24 08:40:36 +01:00
|
|
|
}, {
|
|
|
|
.name = "uart",
|
|
|
|
.id = 1,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.ctrlbit = (1 << 18),
|
2010-02-24 08:40:36 +01:00
|
|
|
}, {
|
|
|
|
.name = "uart",
|
|
|
|
.id = 2,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.ctrlbit = (1 << 19),
|
2010-02-24 08:40:36 +01:00
|
|
|
}, {
|
|
|
|
.name = "uart",
|
|
|
|
.id = 3,
|
2010-05-17 02:38:50 +02:00
|
|
|
.parent = &clk_pclk_psys.clk,
|
2010-02-24 08:40:36 +01:00
|
|
|
.enable = s5pv210_clk_ip3_ctrl,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.ctrlbit = (1 << 20),
|
2010-02-24 08:40:36 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk *clkset_uart_list[] = {
|
|
|
|
[6] = &clk_mout_mpll.clk,
|
|
|
|
[7] = &clk_mout_epll.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_uart = {
|
|
|
|
.sources = clkset_uart_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_uart_list),
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:55 +02:00
|
|
|
static struct clk *clkset_group1_list[] = {
|
|
|
|
[0] = &clk_sclk_a2m.clk,
|
|
|
|
[1] = &clk_mout_mpll.clk,
|
|
|
|
[2] = &clk_mout_epll.clk,
|
|
|
|
[3] = &clk_sclk_vpll.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_group1 = {
|
|
|
|
.sources = clkset_group1_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_group1_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk *clkset_sclk_onenand_list[] = {
|
|
|
|
[0] = &clk_hclk_psys.clk,
|
|
|
|
[1] = &clk_hclk_dsys.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_sclk_onenand = {
|
|
|
|
.sources = clkset_sclk_onenand_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_sclk_onenand_list),
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:38:57 +02:00
|
|
|
static struct clk *clkset_sclk_dac_list[] = {
|
|
|
|
[0] = &clk_sclk_vpll.clk,
|
|
|
|
[1] = &clk_sclk_hdmiphy,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_sclk_dac = {
|
|
|
|
.sources = clkset_sclk_dac_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_sclk_dac_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_sclk_dac = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_dac",
|
|
|
|
.id = -1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 2),
|
2010-05-17 02:38:57 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_sclk_dac,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC1, .shift = 8, .size = 1 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_sclk_pixel = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_pixel",
|
|
|
|
.id = -1,
|
|
|
|
.parent = &clk_sclk_vpll.clk,
|
|
|
|
},
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV1, .shift = 0, .size = 4},
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk *clkset_sclk_hdmi_list[] = {
|
|
|
|
[0] = &clk_sclk_pixel.clk,
|
|
|
|
[1] = &clk_sclk_hdmiphy,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_sclk_hdmi = {
|
|
|
|
.sources = clkset_sclk_hdmi_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_sclk_hdmi_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_sclk_hdmi = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_hdmi",
|
|
|
|
.id = -1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 0),
|
2010-05-17 02:38:57 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_sclk_hdmi,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC1, .shift = 0, .size = 1 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk *clkset_sclk_mixer_list[] = {
|
|
|
|
[0] = &clk_sclk_dac.clk,
|
|
|
|
[1] = &clk_sclk_hdmi.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_sclk_mixer = {
|
|
|
|
.sources = clkset_sclk_mixer_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_sclk_mixer_list),
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:39:00 +02:00
|
|
|
static struct clk *clkset_sclk_audio0_list[] = {
|
|
|
|
[0] = &clk_ext_xtal_mux,
|
|
|
|
[1] = &clk_pcmcdclk0,
|
|
|
|
[2] = &clk_sclk_hdmi27m,
|
|
|
|
[3] = &clk_sclk_usbphy0,
|
|
|
|
[4] = &clk_sclk_usbphy1,
|
|
|
|
[5] = &clk_sclk_hdmiphy,
|
|
|
|
[6] = &clk_mout_mpll.clk,
|
|
|
|
[7] = &clk_mout_epll.clk,
|
|
|
|
[8] = &clk_sclk_vpll.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_sclk_audio0 = {
|
|
|
|
.sources = clkset_sclk_audio0_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_sclk_audio0_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_sclk_audio0 = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_audio",
|
|
|
|
.id = 0,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 24),
|
2010-05-17 02:39:00 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_sclk_audio0,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC6, .shift = 0, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV6, .shift = 0, .size = 4 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk *clkset_sclk_audio1_list[] = {
|
|
|
|
[0] = &clk_ext_xtal_mux,
|
|
|
|
[1] = &clk_pcmcdclk1,
|
|
|
|
[2] = &clk_sclk_hdmi27m,
|
|
|
|
[3] = &clk_sclk_usbphy0,
|
|
|
|
[4] = &clk_sclk_usbphy1,
|
|
|
|
[5] = &clk_sclk_hdmiphy,
|
|
|
|
[6] = &clk_mout_mpll.clk,
|
|
|
|
[7] = &clk_mout_epll.clk,
|
|
|
|
[8] = &clk_sclk_vpll.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_sclk_audio1 = {
|
|
|
|
.sources = clkset_sclk_audio1_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_sclk_audio1_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_sclk_audio1 = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_audio",
|
|
|
|
.id = 1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 25),
|
2010-05-17 02:39:00 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_sclk_audio1,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC6, .shift = 4, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV6, .shift = 4, .size = 4 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk *clkset_sclk_audio2_list[] = {
|
|
|
|
[0] = &clk_ext_xtal_mux,
|
|
|
|
[1] = &clk_pcmcdclk0,
|
|
|
|
[2] = &clk_sclk_hdmi27m,
|
|
|
|
[3] = &clk_sclk_usbphy0,
|
|
|
|
[4] = &clk_sclk_usbphy1,
|
|
|
|
[5] = &clk_sclk_hdmiphy,
|
|
|
|
[6] = &clk_mout_mpll.clk,
|
|
|
|
[7] = &clk_mout_epll.clk,
|
|
|
|
[8] = &clk_sclk_vpll.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_sclk_audio2 = {
|
|
|
|
.sources = clkset_sclk_audio2_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_sclk_audio2_list),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_sclk_audio2 = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_audio",
|
|
|
|
.id = 2,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 26),
|
2010-05-17 02:39:00 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_sclk_audio2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC6, .shift = 8, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV6, .shift = 8, .size = 4 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk *clkset_sclk_spdif_list[] = {
|
|
|
|
[0] = &clk_sclk_audio0.clk,
|
|
|
|
[1] = &clk_sclk_audio1.clk,
|
|
|
|
[2] = &clk_sclk_audio2.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_sclk_spdif = {
|
|
|
|
.sources = clkset_sclk_spdif_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_sclk_spdif_list),
|
|
|
|
};
|
|
|
|
|
2010-10-14 03:35:24 +02:00
|
|
|
static int s5pv210_spdif_set_rate(struct clk *clk, unsigned long rate)
|
|
|
|
{
|
|
|
|
struct clk *pclk;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
pclk = clk_get_parent(clk);
|
|
|
|
if (IS_ERR(pclk))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
ret = pclk->ops->set_rate(pclk, rate);
|
|
|
|
clk_put(pclk);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long s5pv210_spdif_get_rate(struct clk *clk)
|
|
|
|
{
|
|
|
|
struct clk *pclk;
|
|
|
|
int rate;
|
|
|
|
|
|
|
|
pclk = clk_get_parent(clk);
|
|
|
|
if (IS_ERR(pclk))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
rate = pclk->ops->get_rate(clk);
|
|
|
|
clk_put(pclk);
|
|
|
|
|
|
|
|
return rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct clk_ops s5pv210_sclk_spdif_ops = {
|
|
|
|
.set_rate = s5pv210_spdif_set_rate,
|
|
|
|
.get_rate = s5pv210_spdif_get_rate,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_clk clk_sclk_spdif = {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_spdif",
|
|
|
|
.id = -1,
|
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 27),
|
|
|
|
.ops = &s5pv210_sclk_spdif_ops,
|
|
|
|
},
|
|
|
|
.sources = &clkset_sclk_spdif,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC6, .shift = 12, .size = 2 },
|
|
|
|
};
|
|
|
|
|
2010-05-17 02:39:03 +02:00
|
|
|
static struct clk *clkset_group2_list[] = {
|
|
|
|
[0] = &clk_ext_xtal_mux,
|
|
|
|
[1] = &clk_xusbxti,
|
|
|
|
[2] = &clk_sclk_hdmi27m,
|
|
|
|
[3] = &clk_sclk_usbphy0,
|
|
|
|
[4] = &clk_sclk_usbphy1,
|
|
|
|
[5] = &clk_sclk_hdmiphy,
|
|
|
|
[6] = &clk_mout_mpll.clk,
|
|
|
|
[7] = &clk_mout_epll.clk,
|
|
|
|
[8] = &clk_sclk_vpll.clk,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clksrc_sources clkset_group2 = {
|
|
|
|
.sources = clkset_group2_list,
|
|
|
|
.nr_sources = ARRAY_SIZE(clkset_group2_list),
|
|
|
|
};
|
|
|
|
|
2010-02-24 08:40:36 +01:00
|
|
|
static struct clksrc_clk clksrcs[] = {
|
|
|
|
{
|
2010-05-17 02:38:55 +02:00
|
|
|
.clk = {
|
|
|
|
.name = "sclk_dmc",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clkset_group1,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC6, .shift = 24, .size = 2 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV6, .shift = 28, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_onenand",
|
|
|
|
.id = -1,
|
|
|
|
},
|
|
|
|
.sources = &clkset_sclk_onenand,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC0, .shift = 28, .size = 1 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV6, .shift = 12, .size = 3 },
|
|
|
|
}, {
|
2010-02-24 08:40:36 +01:00
|
|
|
.clk = {
|
|
|
|
.name = "uclk1",
|
2010-05-17 02:39:03 +02:00
|
|
|
.id = 0,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 12),
|
2010-02-24 08:40:36 +01:00
|
|
|
},
|
|
|
|
.sources = &clkset_uart,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC4, .shift = 16, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV4, .shift = 16, .size = 4 },
|
2010-05-17 02:39:03 +02:00
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "uclk1",
|
|
|
|
.id = 1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 13),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_uart,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC4, .shift = 20, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV4, .shift = 20, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "uclk1",
|
|
|
|
.id = 2,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 14),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_uart,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC4, .shift = 24, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV4, .shift = 24, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "uclk1",
|
|
|
|
.id = 3,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 15),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_uart,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC4, .shift = 28, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV4, .shift = 28, .size = 4 },
|
2010-05-17 02:38:57 +02:00
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_mixer",
|
|
|
|
.id = -1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 1),
|
2010-05-17 02:38:57 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_sclk_mixer,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC1, .shift = 4, .size = 1 },
|
2010-05-17 02:39:03 +02:00
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_fimc",
|
|
|
|
.id = 0,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask1_ctrl,
|
|
|
|
.ctrlbit = (1 << 2),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC3, .shift = 12, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV3, .shift = 12, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_fimc",
|
|
|
|
.id = 1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask1_ctrl,
|
|
|
|
.ctrlbit = (1 << 3),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC3, .shift = 16, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV3, .shift = 16, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_fimc",
|
|
|
|
.id = 2,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask1_ctrl,
|
|
|
|
.ctrlbit = (1 << 4),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC3, .shift = 20, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV3, .shift = 20, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_cam",
|
|
|
|
.id = 0,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 3),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC1, .shift = 12, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV1, .shift = 12, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_cam",
|
|
|
|
.id = 1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 4),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC1, .shift = 16, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV1, .shift = 16, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_fimd",
|
|
|
|
.id = -1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 5),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC1, .shift = 20, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV1, .shift = 20, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_mmc",
|
|
|
|
.id = 0,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 8),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC4, .shift = 0, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV4, .shift = 0, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_mmc",
|
|
|
|
.id = 1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 9),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC4, .shift = 4, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV4, .shift = 4, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_mmc",
|
|
|
|
.id = 2,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 10),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC4, .shift = 8, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV4, .shift = 8, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_mmc",
|
|
|
|
.id = 3,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 11),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC4, .shift = 12, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV4, .shift = 12, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_mfc",
|
|
|
|
.id = -1,
|
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ctrlbit = (1 << 16),
|
|
|
|
},
|
|
|
|
.sources = &clkset_group1,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC2, .shift = 4, .size = 2 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV2, .shift = 4, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_g2d",
|
|
|
|
.id = -1,
|
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ctrlbit = (1 << 12),
|
|
|
|
},
|
|
|
|
.sources = &clkset_group1,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC2, .shift = 8, .size = 2 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV2, .shift = 8, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_g3d",
|
|
|
|
.id = -1,
|
|
|
|
.enable = s5pv210_clk_ip0_ctrl,
|
|
|
|
.ctrlbit = (1 << 8),
|
|
|
|
},
|
|
|
|
.sources = &clkset_group1,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC2, .shift = 0, .size = 2 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV2, .shift = 0, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_csis",
|
|
|
|
.id = -1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 6),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC1, .shift = 24, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV1, .shift = 28, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_spi",
|
|
|
|
.id = 0,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 16),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC5, .shift = 0, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV5, .shift = 0, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_spi",
|
|
|
|
.id = 1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 17),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC5, .shift = 4, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV5, .shift = 4, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_pwi",
|
|
|
|
.id = -1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 29),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC6, .shift = 20, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV6, .shift = 24, .size = 4 },
|
|
|
|
}, {
|
|
|
|
.clk = {
|
|
|
|
.name = "sclk_pwm",
|
|
|
|
.id = -1,
|
ARM: S5PV210: Correct clock register properties
1. Corrected shift values of I2S and UART clocks (CLK_GATE_IP3), which were
defined incorrectly.
2. Corrected shift values of sclk_audio, uclk1, sclk_fimd, sclk_mmc,
sclk_spi, sclk_pwm, which had duplicated .enable/.ctrlbit with their
twins defined in struct clk init_clocks_disable[] and struct clk
init_clocks[]. We've changed their .enable/.ctrlbit to use CLK_SRC_MASK
register to avoid the duplicated clock problem described below.
NOTE: Duplicated Clock Problem
Please note that each clock definition should access different control
register; otherwise, the system may suffer lockups. For example, if we
have two clock definitions "a" and "b" which access the same register
(and the shift value). Then, when we do:
module A
clk = clk_get("a");
clk->clk_enable(clk);
module B (context switch)
clk = clk_get("b");
clk->clk_enable(clk);
do something with clk.
clk->clk_disable(clk);
module A (context switch)
do something with clk
* At this point, the system may hang.
Therefore, there should be no clock definitions with the same contol
register/shift. If we need to create "aliases", then, creating child
clocks sharing the clock should be fine.
3. Corrected other sclk_* shift values and access registers.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
[kgene.kim@samsung.com: minor title and message fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2010-06-26 10:21:50 +02:00
|
|
|
.enable = s5pv210_clk_mask0_ctrl,
|
|
|
|
.ctrlbit = (1 << 19),
|
2010-05-17 02:39:03 +02:00
|
|
|
},
|
|
|
|
.sources = &clkset_group2,
|
|
|
|
.reg_src = { .reg = S5P_CLK_SRC5, .shift = 12, .size = 4 },
|
|
|
|
.reg_div = { .reg = S5P_CLK_DIV5, .shift = 12, .size = 4 },
|
2010-05-17 02:38:57 +02:00
|
|
|
},
|
2010-02-24 08:40:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Clock initialisation code */
|
2010-05-17 02:38:12 +02:00
|
|
|
static struct clksrc_clk *sysclks[] = {
|
2010-02-24 08:40:36 +01:00
|
|
|
&clk_mout_apll,
|
|
|
|
&clk_mout_epll,
|
|
|
|
&clk_mout_mpll,
|
2010-05-17 02:38:31 +02:00
|
|
|
&clk_armclk,
|
2010-05-17 02:38:34 +02:00
|
|
|
&clk_hclk_msys,
|
2010-05-17 02:38:37 +02:00
|
|
|
&clk_sclk_a2m,
|
|
|
|
&clk_hclk_dsys,
|
2010-05-17 02:38:40 +02:00
|
|
|
&clk_hclk_psys,
|
2010-05-17 02:38:42 +02:00
|
|
|
&clk_pclk_msys,
|
2010-05-17 02:38:48 +02:00
|
|
|
&clk_pclk_dsys,
|
2010-05-17 02:38:50 +02:00
|
|
|
&clk_pclk_psys,
|
2010-05-17 02:38:52 +02:00
|
|
|
&clk_vpllsrc,
|
|
|
|
&clk_sclk_vpll,
|
2010-05-17 02:38:57 +02:00
|
|
|
&clk_sclk_dac,
|
|
|
|
&clk_sclk_pixel,
|
|
|
|
&clk_sclk_hdmi,
|
2010-10-12 02:19:30 +02:00
|
|
|
&clk_mout_dmc0,
|
|
|
|
&clk_sclk_dmc0,
|
2010-10-14 03:35:24 +02:00
|
|
|
&clk_sclk_audio0,
|
|
|
|
&clk_sclk_audio1,
|
|
|
|
&clk_sclk_audio2,
|
|
|
|
&clk_sclk_spdif,
|
2010-02-24 08:40:36 +01:00
|
|
|
};
|
|
|
|
|
2010-10-14 03:39:28 +02:00
|
|
|
static u32 epll_div[][6] = {
|
|
|
|
{ 48000000, 0, 48, 3, 3, 0 },
|
|
|
|
{ 96000000, 0, 48, 3, 2, 0 },
|
|
|
|
{ 144000000, 1, 72, 3, 2, 0 },
|
|
|
|
{ 192000000, 0, 48, 3, 1, 0 },
|
|
|
|
{ 288000000, 1, 72, 3, 1, 0 },
|
|
|
|
{ 32750000, 1, 65, 3, 4, 35127 },
|
|
|
|
{ 32768000, 1, 65, 3, 4, 35127 },
|
|
|
|
{ 45158400, 0, 45, 3, 3, 10355 },
|
|
|
|
{ 45000000, 0, 45, 3, 3, 10355 },
|
|
|
|
{ 45158000, 0, 45, 3, 3, 10355 },
|
|
|
|
{ 49125000, 0, 49, 3, 3, 9961 },
|
|
|
|
{ 49152000, 0, 49, 3, 3, 9961 },
|
|
|
|
{ 67737600, 1, 67, 3, 3, 48366 },
|
|
|
|
{ 67738000, 1, 67, 3, 3, 48366 },
|
|
|
|
{ 73800000, 1, 73, 3, 3, 47710 },
|
|
|
|
{ 73728000, 1, 73, 3, 3, 47710 },
|
|
|
|
{ 36000000, 1, 32, 3, 4, 0 },
|
|
|
|
{ 60000000, 1, 60, 3, 3, 0 },
|
|
|
|
{ 72000000, 1, 72, 3, 3, 0 },
|
|
|
|
{ 80000000, 1, 80, 3, 3, 0 },
|
|
|
|
{ 84000000, 0, 42, 3, 2, 0 },
|
|
|
|
{ 50000000, 0, 50, 3, 3, 0 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static int s5pv210_epll_set_rate(struct clk *clk, unsigned long rate)
|
|
|
|
{
|
|
|
|
unsigned int epll_con, epll_con_k;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
/* Return if nothing changed */
|
|
|
|
if (clk->rate == rate)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
epll_con = __raw_readl(S5P_EPLL_CON);
|
|
|
|
epll_con_k = __raw_readl(S5P_EPLL_CON1);
|
|
|
|
|
|
|
|
epll_con_k &= ~PLL46XX_KDIV_MASK;
|
|
|
|
epll_con &= ~(1 << 27 |
|
|
|
|
PLL46XX_MDIV_MASK << PLL46XX_MDIV_SHIFT |
|
|
|
|
PLL46XX_PDIV_MASK << PLL46XX_PDIV_SHIFT |
|
|
|
|
PLL46XX_SDIV_MASK << PLL46XX_SDIV_SHIFT);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(epll_div); i++) {
|
|
|
|
if (epll_div[i][0] == rate) {
|
|
|
|
epll_con_k |= epll_div[i][5] << 0;
|
|
|
|
epll_con |= (epll_div[i][1] << 27 |
|
|
|
|
epll_div[i][2] << PLL46XX_MDIV_SHIFT |
|
|
|
|
epll_div[i][3] << PLL46XX_PDIV_SHIFT |
|
|
|
|
epll_div[i][4] << PLL46XX_SDIV_SHIFT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == ARRAY_SIZE(epll_div)) {
|
|
|
|
printk(KERN_ERR "%s: Invalid Clock EPLL Frequency\n",
|
|
|
|
__func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
__raw_writel(epll_con, S5P_EPLL_CON);
|
|
|
|
__raw_writel(epll_con_k, S5P_EPLL_CON1);
|
|
|
|
|
2010-10-14 03:39:33 +02:00
|
|
|
printk(KERN_WARNING "EPLL Rate changes from %lu to %lu\n",
|
|
|
|
clk->rate, rate);
|
|
|
|
|
2010-10-14 03:39:28 +02:00
|
|
|
clk->rate = rate;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct clk_ops s5pv210_epll_ops = {
|
|
|
|
.set_rate = s5pv210_epll_set_rate,
|
|
|
|
.get_rate = s5p_epll_get_rate,
|
|
|
|
};
|
|
|
|
|
2010-02-24 08:40:36 +01:00
|
|
|
void __init_or_cpufreq s5pv210_setup_clocks(void)
|
|
|
|
{
|
|
|
|
struct clk *xtal_clk;
|
2010-05-17 02:38:52 +02:00
|
|
|
unsigned long vpllsrc;
|
2010-02-24 08:40:36 +01:00
|
|
|
unsigned long armclk;
|
2010-05-17 02:38:34 +02:00
|
|
|
unsigned long hclk_msys;
|
2010-05-17 02:38:37 +02:00
|
|
|
unsigned long hclk_dsys;
|
2010-05-17 02:38:40 +02:00
|
|
|
unsigned long hclk_psys;
|
2010-05-17 02:38:42 +02:00
|
|
|
unsigned long pclk_msys;
|
2010-05-17 02:38:48 +02:00
|
|
|
unsigned long pclk_dsys;
|
2010-05-17 02:38:50 +02:00
|
|
|
unsigned long pclk_psys;
|
2010-02-24 08:40:36 +01:00
|
|
|
unsigned long apll;
|
|
|
|
unsigned long mpll;
|
|
|
|
unsigned long epll;
|
2010-05-17 02:38:52 +02:00
|
|
|
unsigned long vpll;
|
2010-02-24 08:40:36 +01:00
|
|
|
unsigned int ptr;
|
|
|
|
u32 clkdiv0, clkdiv1;
|
|
|
|
|
2010-10-14 03:39:28 +02:00
|
|
|
/* Set functions for clk_fout_epll */
|
|
|
|
clk_fout_epll.enable = s5p_epll_enable;
|
|
|
|
clk_fout_epll.ops = &s5pv210_epll_ops;
|
|
|
|
|
2010-02-24 08:40:36 +01:00
|
|
|
printk(KERN_DEBUG "%s: registering clocks\n", __func__);
|
|
|
|
|
|
|
|
clkdiv0 = __raw_readl(S5P_CLK_DIV0);
|
|
|
|
clkdiv1 = __raw_readl(S5P_CLK_DIV1);
|
|
|
|
|
|
|
|
printk(KERN_DEBUG "%s: clkdiv0 = %08x, clkdiv1 = %08x\n",
|
|
|
|
__func__, clkdiv0, clkdiv1);
|
|
|
|
|
|
|
|
xtal_clk = clk_get(NULL, "xtal");
|
|
|
|
BUG_ON(IS_ERR(xtal_clk));
|
|
|
|
|
|
|
|
xtal = clk_get_rate(xtal_clk);
|
|
|
|
clk_put(xtal_clk);
|
|
|
|
|
|
|
|
printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal);
|
|
|
|
|
|
|
|
apll = s5p_get_pll45xx(xtal, __raw_readl(S5P_APLL_CON), pll_4508);
|
|
|
|
mpll = s5p_get_pll45xx(xtal, __raw_readl(S5P_MPLL_CON), pll_4502);
|
2010-10-14 03:39:15 +02:00
|
|
|
epll = s5p_get_pll46xx(xtal, __raw_readl(S5P_EPLL_CON),
|
|
|
|
__raw_readl(S5P_EPLL_CON1), pll_4600);
|
2010-05-17 02:38:52 +02:00
|
|
|
vpllsrc = clk_get_rate(&clk_vpllsrc.clk);
|
|
|
|
vpll = s5p_get_pll45xx(vpllsrc, __raw_readl(S5P_VPLL_CON), pll_4502);
|
2010-02-24 08:40:36 +01:00
|
|
|
|
2010-10-12 02:19:26 +02:00
|
|
|
clk_fout_apll.ops = &clk_fout_apll_ops;
|
2010-05-17 02:38:28 +02:00
|
|
|
clk_fout_mpll.rate = mpll;
|
|
|
|
clk_fout_epll.rate = epll;
|
2010-05-17 02:38:52 +02:00
|
|
|
clk_fout_vpll.rate = vpll;
|
2010-05-17 02:38:28 +02:00
|
|
|
|
2010-05-17 02:38:52 +02:00
|
|
|
printk(KERN_INFO "S5PV210: PLL settings, A=%ld, M=%ld, E=%ld V=%ld",
|
|
|
|
apll, mpll, epll, vpll);
|
2010-02-24 08:40:36 +01:00
|
|
|
|
2010-05-17 02:38:31 +02:00
|
|
|
armclk = clk_get_rate(&clk_armclk.clk);
|
2010-05-17 02:38:34 +02:00
|
|
|
hclk_msys = clk_get_rate(&clk_hclk_msys.clk);
|
2010-05-17 02:38:37 +02:00
|
|
|
hclk_dsys = clk_get_rate(&clk_hclk_dsys.clk);
|
2010-05-17 02:38:40 +02:00
|
|
|
hclk_psys = clk_get_rate(&clk_hclk_psys.clk);
|
2010-05-17 02:38:42 +02:00
|
|
|
pclk_msys = clk_get_rate(&clk_pclk_msys.clk);
|
2010-05-17 02:38:48 +02:00
|
|
|
pclk_dsys = clk_get_rate(&clk_pclk_dsys.clk);
|
2010-05-17 02:38:50 +02:00
|
|
|
pclk_psys = clk_get_rate(&clk_pclk_psys.clk);
|
2010-02-24 08:40:36 +01:00
|
|
|
|
2010-05-17 02:38:40 +02:00
|
|
|
printk(KERN_INFO "S5PV210: ARMCLK=%ld, HCLKM=%ld, HCLKD=%ld\n"
|
|
|
|
"HCLKP=%ld, PCLKM=%ld, PCLKD=%ld, PCLKP=%ld\n",
|
|
|
|
armclk, hclk_msys, hclk_dsys, hclk_psys,
|
2010-05-17 02:38:50 +02:00
|
|
|
pclk_msys, pclk_dsys, pclk_psys);
|
2010-02-24 08:40:36 +01:00
|
|
|
|
|
|
|
clk_f.rate = armclk;
|
2010-05-17 02:38:40 +02:00
|
|
|
clk_h.rate = hclk_psys;
|
2010-05-17 02:38:50 +02:00
|
|
|
clk_p.rate = pclk_psys;
|
2010-02-24 08:40:36 +01:00
|
|
|
|
|
|
|
for (ptr = 0; ptr < ARRAY_SIZE(clksrcs); ptr++)
|
|
|
|
s3c_set_clksrc(&clksrcs[ptr], true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct clk *clks[] __initdata = {
|
2010-05-17 02:38:52 +02:00
|
|
|
&clk_sclk_hdmi27m,
|
2010-05-17 02:38:55 +02:00
|
|
|
&clk_sclk_hdmiphy,
|
|
|
|
&clk_sclk_usbphy0,
|
|
|
|
&clk_sclk_usbphy1,
|
2010-05-17 02:39:00 +02:00
|
|
|
&clk_pcmcdclk0,
|
|
|
|
&clk_pcmcdclk1,
|
|
|
|
&clk_pcmcdclk2,
|
2010-02-24 08:40:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void __init s5pv210_register_clocks(void)
|
|
|
|
{
|
|
|
|
struct clk *clkp;
|
|
|
|
int ret;
|
|
|
|
int ptr;
|
|
|
|
|
|
|
|
ret = s3c24xx_register_clocks(clks, ARRAY_SIZE(clks));
|
|
|
|
if (ret > 0)
|
|
|
|
printk(KERN_ERR "Failed to register %u clocks\n", ret);
|
|
|
|
|
2010-05-17 02:38:12 +02:00
|
|
|
for (ptr = 0; ptr < ARRAY_SIZE(sysclks); ptr++)
|
|
|
|
s3c_register_clksrc(sysclks[ptr], 1);
|
|
|
|
|
2010-02-24 08:40:36 +01:00
|
|
|
s3c_register_clksrc(clksrcs, ARRAY_SIZE(clksrcs));
|
|
|
|
s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks));
|
|
|
|
|
|
|
|
clkp = init_clocks_disable;
|
|
|
|
for (ptr = 0; ptr < ARRAY_SIZE(init_clocks_disable); ptr++, clkp++) {
|
|
|
|
ret = s3c24xx_register_clock(clkp);
|
|
|
|
if (ret < 0) {
|
|
|
|
printk(KERN_ERR "Failed to register clock %s (%d)\n",
|
|
|
|
clkp->name, ret);
|
|
|
|
}
|
|
|
|
(clkp->enable)(clkp, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
s3c_pwmclk_init();
|
|
|
|
}
|