From: Ben Dooks <ben-linux@fluff.org>
To: Kukjin Kim <kgene.kim@samsung.com>
Cc: linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org,
Thomas Abraham <thomas.ab@samsung.com>,
ben-linux@fluff.org
Subject: Re: [PATCH 04/11] ARM: S5P6440: Remove usage of clk_h and add clk_hclk clock
Date: Thu, 13 May 2010 02:38:28 +0100 [thread overview]
Message-ID: <20100513013828.GR6684@trinity.fluff.org> (raw)
In-Reply-To: <1273710429-14624-1-git-send-email-kgene.kim@samsung.com>
On Thu, May 13, 2010 at 09:27:09AM +0900, Kukjin Kim wrote:
> From: Thomas Abraham <thomas.ab@samsung.com>
>
> The clk_h clock is of type 'struct clk' whereas on S5P6440,
> the hclk is more suitable to be of type 'struct clksrc_clk'
> (since hclk clock is divided version of armclk)
ok, so we're replacing the old clk_h used by the s3c24xx style systems
and replacing it with a local definition.
> This patch modifies the following.
>
> 1. Adds the 'clk_hclk' clock which is of type 'struct clksrc_clk'.
> 2. Removes all references to the clk_h clock.
> 3. Addes clk_hclk into the list of sysclks.
> 4. The clock rate 'hclk' is modified to be derived from clk_hclk.
>
> Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> ---
> arch/arm/mach-s5p6440/clock.c | 14 ++++++++++++--
> 1 files changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mach-s5p6440/clock.c b/arch/arm/mach-s5p6440/clock.c
> index 2c6dd54..bc0458e 100644
> --- a/arch/arm/mach-s5p6440/clock.c
> +++ b/arch/arm/mach-s5p6440/clock.c
> @@ -266,6 +266,15 @@ static struct clksrc_clk clk_dout_mpll = {
> .reg_div = { .reg = S5P_CLK_DIV0, .shift = 4, .size = 1 },
> };
>
> +static struct clksrc_clk clk_hclk = {
> + .clk = {
> + .name = "clk_hclk",
> + .id = -1,
> + .parent = &clk_armclk.clk,
> + },
> + .reg_div = { .reg = S5P_CLK_DIV0, .shift = 8, .size = 4 },
> +};
> +
> int s5p6440_clk48m_ctrl(struct clk *clk, int enable)
> {
> unsigned long flags;
> @@ -321,7 +330,7 @@ static struct clk init_clocks_disable[] = {
> {
> .name = "nand",
> .id = -1,
> - .parent = &clk_h,
> + .parent = &clk_hclk.clk,
> .enable = s5p6440_mem_ctrl,
> .ctrlbit = S5P_CLKCON_MEM0_HCLK_NFCON,
> }, {
> @@ -580,6 +589,7 @@ static struct clksrc_clk *sysclks[] = {
> &clk_mout_mpll,
> &clk_dout_mpll,
> &clk_armclk,
> + &clk_hclk,
> };
>
> void __init_or_cpufreq s5p6440_setup_clocks(void)
> @@ -628,7 +638,7 @@ void __init_or_cpufreq s5p6440_setup_clocks(void)
> print_mhz(apll), print_mhz(mpll), print_mhz(epll));
>
> fclk = clk_get_rate(&clk_armclk.clk);
> - hclk = fclk / GET_DIV(clkdiv0, S5P_CLKDIV0_HCLK);
> + hclk = clk_get_rate(&clk_hclk.clk);
> pclk = hclk / GET_DIV(clkdiv0, S5P_CLKDIV0_PCLK);
>
> if (__raw_readl(S5P_OTHERS) & S5P_OTHERS_HCLK_LOW_SEL_MPLL) {
> --
> 1.6.2.5
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
WARNING: multiple messages have this Message-ID (diff)
From: ben-linux@fluff.org (Ben Dooks)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 04/11] ARM: S5P6440: Remove usage of clk_h and add clk_hclk clock
Date: Thu, 13 May 2010 02:38:28 +0100 [thread overview]
Message-ID: <20100513013828.GR6684@trinity.fluff.org> (raw)
In-Reply-To: <1273710429-14624-1-git-send-email-kgene.kim@samsung.com>
On Thu, May 13, 2010 at 09:27:09AM +0900, Kukjin Kim wrote:
> From: Thomas Abraham <thomas.ab@samsung.com>
>
> The clk_h clock is of type 'struct clk' whereas on S5P6440,
> the hclk is more suitable to be of type 'struct clksrc_clk'
> (since hclk clock is divided version of armclk)
ok, so we're replacing the old clk_h used by the s3c24xx style systems
and replacing it with a local definition.
> This patch modifies the following.
>
> 1. Adds the 'clk_hclk' clock which is of type 'struct clksrc_clk'.
> 2. Removes all references to the clk_h clock.
> 3. Addes clk_hclk into the list of sysclks.
> 4. The clock rate 'hclk' is modified to be derived from clk_hclk.
>
> Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> ---
> arch/arm/mach-s5p6440/clock.c | 14 ++++++++++++--
> 1 files changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mach-s5p6440/clock.c b/arch/arm/mach-s5p6440/clock.c
> index 2c6dd54..bc0458e 100644
> --- a/arch/arm/mach-s5p6440/clock.c
> +++ b/arch/arm/mach-s5p6440/clock.c
> @@ -266,6 +266,15 @@ static struct clksrc_clk clk_dout_mpll = {
> .reg_div = { .reg = S5P_CLK_DIV0, .shift = 4, .size = 1 },
> };
>
> +static struct clksrc_clk clk_hclk = {
> + .clk = {
> + .name = "clk_hclk",
> + .id = -1,
> + .parent = &clk_armclk.clk,
> + },
> + .reg_div = { .reg = S5P_CLK_DIV0, .shift = 8, .size = 4 },
> +};
> +
> int s5p6440_clk48m_ctrl(struct clk *clk, int enable)
> {
> unsigned long flags;
> @@ -321,7 +330,7 @@ static struct clk init_clocks_disable[] = {
> {
> .name = "nand",
> .id = -1,
> - .parent = &clk_h,
> + .parent = &clk_hclk.clk,
> .enable = s5p6440_mem_ctrl,
> .ctrlbit = S5P_CLKCON_MEM0_HCLK_NFCON,
> }, {
> @@ -580,6 +589,7 @@ static struct clksrc_clk *sysclks[] = {
> &clk_mout_mpll,
> &clk_dout_mpll,
> &clk_armclk,
> + &clk_hclk,
> };
>
> void __init_or_cpufreq s5p6440_setup_clocks(void)
> @@ -628,7 +638,7 @@ void __init_or_cpufreq s5p6440_setup_clocks(void)
> print_mhz(apll), print_mhz(mpll), print_mhz(epll));
>
> fclk = clk_get_rate(&clk_armclk.clk);
> - hclk = fclk / GET_DIV(clkdiv0, S5P_CLKDIV0_HCLK);
> + hclk = clk_get_rate(&clk_hclk.clk);
> pclk = hclk / GET_DIV(clkdiv0, S5P_CLKDIV0_PCLK);
>
> if (__raw_readl(S5P_OTHERS) & S5P_OTHERS_HCLK_LOW_SEL_MPLL) {
> --
> 1.6.2.5
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
next prev parent reply other threads:[~2010-05-13 1:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-13 0:27 [PATCH 04/11] ARM: S5P6440: Remove usage of clk_h and add clk_hclk clock Kukjin Kim
2010-05-13 0:27 ` Kukjin Kim
2010-05-13 1:38 ` Ben Dooks [this message]
2010-05-13 1:38 ` Ben Dooks
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100513013828.GR6684@trinity.fluff.org \
--to=ben-linux@fluff.org \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=thomas.ab@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.